diff --git a/build_data.js b/build_data.js
index 9c9b1cbfe..98278e527 100644
--- a/build_data.js
+++ b/build_data.js
@@ -7,13 +7,14 @@ const _isEmpty = requireESM('lodash-es/isEmpty').default;
const _merge = requireESM('lodash-es/merge').default;
const _toPairs = requireESM('lodash-es/toPairs').default;
+const colors = require('colors/safe');
const fs = require('fs');
const glob = require('glob');
const jsonschema = require('jsonschema');
const path = require('path');
+const prettyStringify = require('json-stringify-pretty-compact');
const shell = require('shelljs');
const YAML = require('js-yaml');
-const colors = require('colors/safe');
const fieldSchema = require('./data/presets/schema/field.json');
const presetSchema = require('./data/presets/schema/preset.json');
@@ -89,18 +90,18 @@ module.exports = function buildData() {
var tasks = [
writeFileProm(
'data/presets/categories.json',
- JSON.stringify({ categories: categories }, null, 4)
+ prettyStringify({ categories: categories })
),
writeFileProm(
'data/presets/fields.json',
- JSON.stringify({ fields: fields }, null, 4)
+ prettyStringify({ fields: fields }, { maxLength: 9999 })
),
writeFileProm(
'data/presets/presets.json',
- JSON.stringify({ presets: presets }, null, 4)
+ prettyStringify({ presets: presets }, { maxLength: 9999 })
),
writeFileProm('data/presets.yaml', translationsToYAML(translations)),
- writeFileProm('data/taginfo.json', JSON.stringify(taginfo, null, 4)),
+ writeFileProm('data/taginfo.json', prettyStringify(taginfo), { maxLength: 9999 }),
writeEnJson(tstrings),
writeFaIcons(faIcons)
];
diff --git a/data/address-formats.json b/data/address-formats.json
index 32b1c3cb0..7bad0ef5a 100644
--- a/data/address-formats.json
+++ b/data/address-formats.json
@@ -1,144 +1,145 @@
{
- "dataAddressFormats": [
- {
- "format": [
- ["housenumber", "street"],
- ["city", "postcode"]
- ]
- },
- {
- "countryCodes": ["au"],
- "format": [
- ["unit", "housenumber", "street"],
- ["suburb", "state", "postcode"]
- ]
- },
- {
- "countryCodes": ["gb"],
- "format": [
- ["housename"],
- ["housenumber", "street"],
- ["city", "postcode"]
- ]
- },
- {
- "countryCodes": ["ie"],
- "format": [
- ["housename"],
- ["housenumber", "street"],
- ["city"],
- ["postcode"]
- ]
- },
- {
- "countryCodes": ["at", "ch", "de", "si", "pl"],
- "format": [
- ["street", "housenumber"],
- ["postcode", "city"]
- ]
- },
- {
- "countryCodes": [
- "ad", "ba", "be", "cz", "dk", "es",
- "fi", "gr", "hr", "is", "it", "li",
- "nl", "no", "pt", "se", "sk", "sm",
- "va"
- ],
- "format": [
- ["street", "housenumber", "unit"],
- ["postcode", "city"]
- ]
- },
- {
- "countryCodes": ["fr", "lu", "mo"],
- "format": [
- ["housenumber", "street"],
- ["postcode", "city"]
- ]
- },
- {
- "countryCodes": ["br"],
- "format": [
- ["street"],
- ["housenumber", "suburb"],
- ["city", "postcode"]
- ]
- },
- {
- "countryCodes": ["vn"],
- "format": [
- ["housenumber", "street"],
- ["subdistrict"],
- ["district"],
- ["city"],
- ["province", "postcode"]
- ]
- },
- {
- "countryCodes": ["ca"],
- "format": [
- ["housenumber", "street", "unit"],
- ["city", "province", "postcode"]
- ]
- },
- {
- "countryCodes": ["us"],
- "format": [
- ["housenumber", "street", "unit"],
- ["city", "state", "postcode"]
- ]
- },
- {
- "countryCodes": ["tw"],
- "format": [
- ["postcode", "city", "district"],
- ["place", "street"],
- ["housenumber", "floor","unit"]
- ]
- },
- {
- "countryCodes": ["jp"],
- "format": [
- ["postcode", "province", "county"],
- ["city", "suburb"],
- ["quarter", "neighbourhood"],
- ["block_number", "housenumber"]
- ],
- "dropdowns": [
- "postcode", "province", "county",
- "city", "suburb",
- "quarter", "neighbourhood",
- "block_number"
- ],
- "widths": {
- "postcode": 0.3, "province": 0.35, "county": 0.35,
- "city": 0.65, "suburb": 0.35,
- "quarter": 0.5, "neighbourhood": 0.5,
- "block_number": 0.5, "housenumber": 0.5
- }
- },
- {
- "countryCodes": ["tr"],
- "format": [
- ["neighbourhood"],
- ["street", "housenumber"],
- ["postcode", "district", "city"]
- ]
- },
- {
- "countryCodes": ["ua"],
- "format": [
- ["housenumber", "postcode"],
- ["street"]
- ]
- },
- {
- "countryCodes": ["cn"],
- "format": [
- ["postcode", "province"],
- ["city", "district"],
- ["street", "housenumber"]
- ]
- }
- ]
+ "dataAddressFormats": [
+ {
+ "format": [
+ ["housenumber", "street"],
+ ["city", "postcode"]
+ ]
+ },
+ {
+ "countryCodes": ["au"],
+ "format": [
+ ["unit","housenumber", "street"],
+ ["suburb", "state", "postcode"]
+ ]
+ },
+ {
+ "countryCodes": ["gb"],
+ "format": [
+ ["housename"],
+ ["housenumber", "street"],
+ ["city", "postcode"]
+ ]
+ },
+ {
+ "countryCodes": ["ie"],
+ "format": [
+ ["housename"],
+ ["housenumber", "street"],
+ ["city"],
+ ["postcode"]
+ ]
+ },
+ {
+ "countryCodes": ["at", "ch", "de", "si", "pl"],
+ "format": [
+ ["street", "housenumber"],
+ ["postcode", "city"]
+ ]
+ },
+ {
+ "countryCodes": [
+ "ad", "ba", "be", "cz", "dk", "es", "fi", "gr", "hr", "is",
+ "it", "li", "nl", "no", "pt", "se", "sk", "sm", "va"
+ ],
+ "format": [
+ ["street", "housenumber", "unit"],
+ ["postcode", "city"]
+ ]
+ },
+ {
+ "countryCodes": ["fr", "lu", "mo"],
+ "format": [
+ ["housenumber", "street"],
+ ["postcode", "city"]
+ ]
+ },
+ {
+ "countryCodes": ["br"],
+ "format": [
+ ["street"],
+ ["housenumber", "suburb"],
+ ["city", "postcode"]
+ ]
+ },
+ {
+ "countryCodes": ["vn"],
+ "format": [
+ ["housenumber", "street"],
+ ["subdistrict"],
+ ["district"],
+ ["city"],
+ ["province", "postcode"]
+ ]
+ },
+ {
+ "countryCodes": ["ca"],
+ "format": [
+ ["housenumber", "street", "unit"],
+ ["city", "province", "postcode"]
+ ]
+ },
+ {
+ "countryCodes": ["us"],
+ "format": [
+ ["housenumber", "street", "unit"],
+ ["city", "state", "postcode"]
+ ]
+ },
+ {
+ "countryCodes": ["tw"],
+ "format": [
+ ["postcode", "city", "district"],
+ ["place", "street"],
+ ["housenumber", "floor", "unit"]
+ ]
+ },
+ {
+ "countryCodes": ["jp"],
+ "format": [
+ ["postcode", "province", "county"],
+ ["city", "suburb"],
+ ["quarter", "neighbourhood"],
+ ["block_number", "housenumber"]
+ ],
+ "dropdowns": [
+ "postcode", "province", "county", "city", "suburb",
+ "quarter", "neighbourhood", "block_number"
+ ],
+ "widths": {
+ "postcode": 0.3,
+ "province": 0.35,
+ "county": 0.35,
+ "city": 0.65,
+ "suburb": 0.35,
+ "quarter": 0.5,
+ "neighbourhood": 0.5,
+ "block_number": 0.5,
+ "housenumber": 0.5
+ }
+ },
+ {
+ "countryCodes": ["tr"],
+ "format": [
+ ["neighbourhood"],
+ ["street", "housenumber"],
+ ["postcode", "district", "city"]
+ ]
+ },
+ {
+ "countryCodes": ["ua"],
+ "format": [
+ ["housenumber", "postcode"],
+ ["street"]
+ ]
+ },
+ {
+ "countryCodes": ["cn"],
+ "format": [
+ ["postcode", "province"],
+ ["city", "district"],
+ ["street", "housenumber"]
+ ]
+ }
+ ]
}
diff --git a/data/deprecated.json b/data/deprecated.json
index b38b1e29c..bd05fe8c2 100644
--- a/data/deprecated.json
+++ b/data/deprecated.json
@@ -1,90 +1,56 @@
{
- "dataDeprecated": [
- {
- "old": { "amenity": "firepit" },
- "replace": {
- "leisure": "firepit"
- }
- },
- {
- "old": { "barrier": "wire_fence" },
- "replace": {
- "barrier": "fence",
- "fence_type": "chain"
- }
- },
- {
- "old": { "barrier": "wood_fence" },
- "replace": {
- "barrier": "fence",
- "fence_type": "wood"
- }
- },
- {
- "old": { "highway": "ford" },
- "replace": {
- "ford": "yes"
- }
- },
- {
- "old": { "highway": "stile" },
- "replace": {
- "barrier": "stile"
- }
- },
- {
- "old": { "highway": "incline" },
- "replace": {
- "highway": "road",
- "incline": "up"
- }
- },
- {
- "old": { "highway": "incline_steep" },
- "replace": {
- "highway": "road",
- "incline": "up"
- }
- },
- {
- "old": { "highway": "unsurfaced" },
- "replace": {
- "highway": "road",
- "incline": "unpaved"
- }
- },
- {
- "old": { "landuse": "wood" },
- "replace": {
- "landuse": "forest",
- "natural": "wood"
- }
- },
- {
- "old": { "natural": "marsh" },
- "replace": {
- "natural": "wetland",
- "wetland": "marsh"
- }
- },
- {
- "old": { "power_source": "*" },
- "replace": {
- "generator:source": "$1"
- }
- },
- {
- "old": { "power_rating": "*" },
- "replace": {
- "generator:output": "$1"
- }
- },
- {
- "old": { "shop": "organic" },
- "replace": {
- "shop": "supermarket",
- "organic": "only"
- }
- }
- ]
+ "dataDeprecated": [
+ {
+ "old": {"amenity": "firepit"},
+ "replace": {"leisure": "firepit"}
+ },
+ {
+ "old": {"barrier": "wire_fence"},
+ "replace": {"barrier": "fence", "fence_type": "chain"}
+ },
+ {
+ "old": {"barrier": "wood_fence"},
+ "replace": {"barrier": "fence", "fence_type": "wood"}
+ },
+ {
+ "old": {"highway": "ford"},
+ "replace": {"ford": "yes"}
+ },
+ {
+ "old": {"highway": "stile"},
+ "replace": {"barrier": "stile"}
+ },
+ {
+ "old": {"highway": "incline"},
+ "replace": {"highway": "road", "incline": "up"}
+ },
+ {
+ "old": {"highway": "incline_steep"},
+ "replace": {"highway": "road", "incline": "up"}
+ },
+ {
+ "old": {"highway": "unsurfaced"},
+ "replace": {"highway": "road", "incline": "unpaved"}
+ },
+ {
+ "old": {"landuse": "wood"},
+ "replace": {"landuse": "forest", "natural": "wood"}
+ },
+ {
+ "old": {"natural": "marsh"},
+ "replace": {"natural": "wetland", "wetland": "marsh"}
+ },
+ {
+ "old": {"power_source": "*"},
+ "replace": {"generator:source": "$1"}
+ },
+ {
+ "old": {"power_rating": "*"},
+ "replace": {"generator:output": "$1"}
+ },
+ {
+ "old": {"shop": "organic"},
+ "replace": {"shop": "supermarket", "organic": "only"}
+ }
+ ]
}
diff --git a/data/discarded.json b/data/discarded.json
index 61dc16815..81d540d9c 100644
--- a/data/discarded.json
+++ b/data/discarded.json
@@ -1,51 +1,53 @@
{
- "dataDiscarded": {
- "created_by": true,
- "odbl": true,
- "odbl:note": true,
+ "dataDiscarded": {
+ "created_by": true,
- "tiger:upload_uuid": true,
- "tiger:tlid": true,
- "tiger:source": true,
- "tiger:separated": true,
+ "odbl": true,
+ "odbl:note": true,
- "geobase:datasetName": true,
- "geobase:uuid": true,
- "sub_sea:type": true,
+ "tiger:upload_uuid": true,
+ "tiger:tlid": true,
+ "tiger:source": true,
+ "tiger:separated": true,
- "KSJ2:ADS": true,
- "KSJ2:ARE": true,
- "KSJ2:AdminArea": true,
- "KSJ2:COP_label": true,
- "KSJ2:DFD": true,
- "KSJ2:INT": true,
- "KSJ2:INT_label": true,
- "KSJ2:LOC": true,
- "KSJ2:LPN": true,
- "KSJ2:OPC": true,
- "KSJ2:PubFacAdmin": true,
- "KSJ2:RAC": true,
- "KSJ2:RAC_label": true,
- "KSJ2:RIC": true,
- "KSJ2:RIN": true,
- "KSJ2:WSC": true,
- "KSJ2:coordinate": true,
- "KSJ2:curve_id": true,
- "KSJ2:curve_type": true,
- "KSJ2:filename": true,
- "KSJ2:lake_id": true,
- "KSJ2:lat": true,
- "KSJ2:long": true,
- "KSJ2:river_id": true,
+ "geobase:datasetName": true,
+ "geobase:uuid": true,
- "yh:LINE_NAME": true,
- "yh:LINE_NUM": true,
- "yh:STRUCTURE": true,
- "yh:TOTYUMONO": true,
- "yh:TYPE": true,
- "yh:WIDTH": true,
- "yh:WIDTH_RANK": true,
+ "sub_sea:type": true,
- "SK53_bulk:load": true
- }
+ "KSJ2:ADS": true,
+ "KSJ2:ARE": true,
+ "KSJ2:AdminArea": true,
+ "KSJ2:COP_label": true,
+ "KSJ2:DFD": true,
+ "KSJ2:INT": true,
+ "KSJ2:INT_label": true,
+ "KSJ2:LOC": true,
+ "KSJ2:LPN": true,
+ "KSJ2:OPC": true,
+ "KSJ2:PubFacAdmin": true,
+ "KSJ2:RAC": true,
+ "KSJ2:RAC_label": true,
+ "KSJ2:RIC": true,
+ "KSJ2:RIN": true,
+ "KSJ2:WSC": true,
+ "KSJ2:coordinate": true,
+ "KSJ2:curve_id": true,
+ "KSJ2:curve_type": true,
+ "KSJ2:filename": true,
+ "KSJ2:lake_id": true,
+ "KSJ2:lat": true,
+ "KSJ2:long": true,
+ "KSJ2:river_id": true,
+
+ "SK53_bulk:load": true,
+
+ "yh:LINE_NAME": true,
+ "yh:LINE_NUM": true,
+ "yh:STRUCTURE": true,
+ "yh:TOTYUMONO": true,
+ "yh:TYPE": true,
+ "yh:WIDTH": true,
+ "yh:WIDTH_RANK": true
+ }
}
diff --git a/data/drive-left.json b/data/drive-left.json
index a4ee544c4..2ccd00952 100644
--- a/data/drive-left.json
+++ b/data/drive-left.json
@@ -8,290 +8,207 @@
"type": "Polygon",
"coordinates": [
[
- [
- 113.573,
- 22.186
- ],
- [
- 114,
- 22.5
- ],
- [
- 114.05534,
- 22.503
- ],
- [
- 114.0595,
- 22.51422
- ],
- [
- 114.07345,
- 22.51934
- ],
- [
- 114.0786,
- 22.53012
- ],
- [
- 114.08512,
- 22.53228
- ],
- [
- 114.09034,
- 22.53717
- ],
- [
- 114.09611,
- 22.53486
- ],
- [
- 114.10602,
- 22.53472
- ],
- [
- 114.1115,
- 22.52929
- ],
- [
- 114.11522,
- 22.5308
- ],
- [
- 114.11649,
- 22.53418
- ],
- [
- 114.11979,
- 22.53511
- ],
- [
- 114.1244,
- 22.5393
- ],
- [
- 114.12729,
- 22.53947
- ],
- [
- 114.13018,
- 22.54132
- ],
- [
- 114.13807,
- 22.5432
- ],
- [
- 114.14429,
- 22.54176
- ],
- [
- 114.14441,
- 22.54114
- ],
- [
- 114.14846,
- 22.54179
- ],
- [
- 114.14855,
- 22.54397
- ],
- [
- 114.15042,
- 22.54593
- ],
- [
- 114.14964,
- 22.54954
- ],
- [
- 114.15166,
- 22.55168
- ],
- [
- 114.15192,
- 22.55438
- ],
- [
- 114.15642,
- 22.55495
- ],
- [
- 114.15841,
- 22.55909
- ],
- [
- 114.16032,
- 22.56153
- ],
- [
- 114.16162,
- 22.56187
- ],
- [
- 114.1634,
- 22.55931
- ],
- [
- 114.16553,
- 22.5593
- ],
- [
- 114.16733,
- 22.56119
- ],
- [
- 114.16934,
- 22.56093
- ],
- [
- 114.17061,
- 22.5597
- ],
- [
- 114.17702,
- 22.56
- ],
- [
- 114.17798,
- 22.55546
- ],
- [
- 114.18401,
- 22.5552
- ],
- [
- 114.18673,
- 22.55468
- ],
- [
- 114.1878,
- 22.55545
- ],
- [
- 114.18979,
- 22.55446
- ],
- [
- 114.1955,
- 22.55564
- ],
- [
- 114.19674,
- 22.55691
- ],
- [
- 114.20005,
- 22.55717
- ],
- [
- 114.20376,
- 22.55623
- ],
- [
- 114.20884,
- 22.55672
- ],
- [
- 114.22438,
- 22.55055
- ],
- [
- 114.2264,
- 22.5476
- ],
- [
- 114.22545,
- 22.54528
- ],
- [
- 114.22661,
- 22.54339
- ],
- [
- 114.32,
- 22.576
- ],
- [
- 114.45,
- 22.43
- ],
- [
- 114.45,
- 22.14
- ],
- [
- 113.9,
- 22.14
- ],
- [
- 113.75,
- 22.22
- ],
- [
- 113.553,
- 22.095
- ],
- [
- 113.54678,
- 22.1207
- ],
- [
- 113.5456,
- 22.1207
- ],
- [
- 113.54076,
- 22.12373
- ],
- [
- 113.54016,
- 22.13618
- ],
- [
- 113.54701,
- 22.13651
- ],
- [
- 113.5475,
- 22.14583
- ],
- [
- 113.52456,
- 22.17978
- ],
- [
- 113.53623,
- 22.20191
- ],
- [
- 113.53299,
- 22.21232
- ],
- [
- 113.53497,
- 22.21351
- ],
- [
- 113.53735,
- 22.21377
- ],
- [
- 113.54156,
- 22.21315
- ],
- [
- 113.54385,
- 22.21709
- ],
- [
- 113.55849,
- 22.21565
- ],
- [
- 113.573,
- 22.186
- ]
+ [113.573, 22.186],
+ [114, 22.5],
+ [114.05534, 22.503],
+ [114.0595, 22.51422],
+ [114.07345, 22.51934],
+ [114.0786, 22.53012],
+ [114.08512, 22.53228],
+ [114.09034, 22.53717],
+ [114.09611, 22.53486],
+ [114.10602, 22.53472],
+ [114.1115, 22.52929],
+ [114.11522, 22.5308],
+ [114.11649, 22.53418],
+ [114.11979, 22.53511],
+ [114.1244, 22.5393],
+ [114.12729, 22.53947],
+ [114.13018, 22.54132],
+ [114.13807, 22.5432],
+ [114.14429, 22.54176],
+ [114.14441, 22.54114],
+ [114.14846, 22.54179],
+ [114.14855, 22.54397],
+ [114.15042, 22.54593],
+ [114.14964, 22.54954],
+ [114.15166, 22.55168],
+ [114.15192, 22.55438],
+ [114.15642, 22.55495],
+ [114.15841, 22.55909],
+ [114.16032, 22.56153],
+ [114.16162, 22.56187],
+ [114.1634, 22.55931],
+ [114.16553, 22.5593],
+ [114.16733, 22.56119],
+ [114.16934, 22.56093],
+ [114.17061, 22.5597],
+ [114.17702, 22.56],
+ [114.17798, 22.55546],
+ [114.18401, 22.5552],
+ [114.18673, 22.55468],
+ [114.1878, 22.55545],
+ [114.18979, 22.55446],
+ [114.1955, 22.55564],
+ [114.19674, 22.55691],
+ [114.20005, 22.55717],
+ [114.20376, 22.55623],
+ [114.20884, 22.55672],
+ [114.22438, 22.55055],
+ [114.2264, 22.5476],
+ [114.22545, 22.54528],
+ [114.22661, 22.54339],
+ [114.32, 22.576],
+ [114.45, 22.43],
+ [114.45, 22.14],
+ [113.9, 22.14],
+ [113.75, 22.22],
+ [113.553, 22.095],
+ [113.54678, 22.1207],
+ [113.5456, 22.1207],
+ [113.54076, 22.12373],
+ [113.54016, 22.13618],
+ [113.54701, 22.13651],
+ [113.5475, 22.14583],
+ [113.52456, 22.17978],
+ [113.53623, 22.20191],
+ [113.53299, 22.21232],
+ [113.53497, 22.21351],
+ [113.53735, 22.21377],
+ [113.54156, 22.21315],
+ [113.54385, 22.21709],
+ [113.55849, 22.21565],
+ [113.573, 22.186]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [[-75, 18], [-80, 20.5], [-83, 19], [-77, 16], [-75, 18]]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-64.33594, 32.86113],
+ [-79.39819, 27.21067],
+ [-80.63965, 23.71998],
+ [-73.39966, 20.40642],
+ [-65.1709, 19.20743],
+ [-65.09399, 16.23577],
+ [-59.13391, 16.80454],
+ [-62.64404, 15.16228],
+ [-59.43054, 14.85985],
+ [-62.83081, 13.64599],
+ [-61.80359, 10.73752],
+ [-62.08649, 10.04729],
+ [-61.06201, 9.85522],
+ [-59.81369, 8.31274],
+ [-59.8027, 8.27469],
+ [-59.83498, 8.22712],
+ [-59.94141, 8.21149],
+ [-59.99771, 8.15576],
+ [-59.97986, 8.13265],
+ [-59.99771, 8.12041],
+ [-60.00183, 8.07147],
+ [-60.05127, 8.02524],
+ [-60.09933, 8.03747],
+ [-60.12268, 8.02388],
+ [-60.14053, 7.98988],
+ [-60.36163, 7.83345],
+ [-60.53467, 7.81713],
+ [-60.5896, 7.6375],
+ [-60.72144, 7.54493],
+ [-60.5896, 7.31888],
+ [-60.63904, 7.24532],
+ [-60.54703, 7.12542],
+ [-60.46875, 7.20309],
+ [-60.37262, 7.18401],
+ [-60.29984, 7.1445],
+ [-60.2916, 7.06819],
+ [-60.39871, 6.95097],
+ [-60.66513, 6.83235],
+ [-60.71869, 6.75053],
+ [-60.91232, 6.81735],
+ [-60.94254, 6.72053],
+ [-61.14441, 6.72326],
+ [-61.23093, 6.5773],
+ [-61.1554, 6.45314],
+ [-61.14441, 6.20199],
+ [-61.39709, 5.95619],
+ [-60.71045, 5.20036],
+ [-60.21606, 5.23319],
+ [-59.99634, 5.06906],
+ [-60.13916, 4.51071],
+ [-59.69971, 4.40118],
+ [-59.5459, 3.93002],
+ [-59.87549, 3.56825],
+ [-59.7876, 3.37086],
+ [-60.01831, 2.83332],
+ [-59.90845, 2.38335],
+ [-59.69971, 2.2626],
+ [-59.77661, 1.87833],
+ [-59.65302, 1.85087],
+ [-59.69147, 1.75754],
+ [-59.61456, 1.71361],
+ [-59.55139, 1.73283],
+ [-59.36188, 1.49123],
+ [-59.26575, 1.39238],
+ [-58.92242, 1.30726],
+ [-58.83728, 1.17271],
+ [-58.71918, 1.23037],
+ [-58.71094, 1.29902],
+ [-58.49121, 1.26058],
+ [-58.461, 1.37591],
+ [-58.50494, 1.38689],
+ [-58.51044, 1.46102],
+ [-58.38135, 1.4775],
+ [-58.32642, 1.57359],
+ [-58.00507, 1.49946],
+ [-57.99133, 1.65321],
+ [-57.79907, 1.69165],
+ [-57.70844, 1.71087],
+ [-57.54364, 1.68341],
+ [-57.41455, 1.94421],
+ [-57.10693, 1.97715],
+ [-56.8103, 1.85636],
+ [-56.48071, 1.92225],
+ [-55.90942, 1.81244],
+ [-55.90942, 2.04302],
+ [-56.14014, 2.26534],
+ [-55.94788, 2.53701],
+ [-55.70892, 2.39981],
+ [-55.37933, 2.43274],
+ [-55.19257, 2.53976],
+ [-54.98108, 2.57268],
+ [-54.88495, 2.43548],
+ [-54.71191, 2.46293],
+ [-54.69543, 2.34767],
+ [-54.58832, 2.32846],
+ [-54.43451, 2.43548],
+ [-54.20654, 2.76748],
+ [-54.17358, 3.12955],
+ [-53.96484, 3.57921],
+ [-54.33838, 4.00674],
+ [-54.44412, 4.52577],
+ [-54.46884, 4.91036],
+ [-54.36653, 5.13061],
+ [-54.27727, 5.26191],
+ [-54.19968, 5.3084],
+ [-54.01222, 5.54457],
+ [-54.0239, 5.64605],
+ [-53.86322, 5.94936],
+ [-64.33594, 32.86113]
]
]
}
@@ -303,26 +220,189 @@
"type": "Polygon",
"coordinates": [
[
- [
- -75,
- 18
- ],
- [
- -80,
- 20.5
- ],
- [
- -83,
- 19
- ],
- [
- -77,
- 16
- ],
- [
- -75,
- 18
- ]
+ [-14.5, -6],
+ [11.79657, -17.27197],
+ [12.03415, -17.14866],
+ [12.38159, -17.22213],
+ [12.58484, -17.22476],
+ [13.01193, -16.97405],
+ [13.24951, -17.00098],
+ [13.38135, -16.98522],
+ [13.93341, -17.38734],
+ [18.42476, -17.38996],
+ [18.47763, -17.46857],
+ [18.62663, -17.64599],
+ [18.79211, -17.76177],
+ [18.92944, -17.82061],
+ [19.33044, -17.84806],
+ [19.66278, -17.8644],
+ [19.74792, -17.90557],
+ [19.85161, -17.87486],
+ [20.10361, -17.90296],
+ [20.18394, -17.88401],
+ [20.34737, -17.88466],
+ [20.44693, -17.91733],
+ [20.51697, -17.96698],
+ [20.83008, -18.03032],
+ [20.95711, -17.97285],
+ [21.16997, -17.93497],
+ [21.42677, -18.0264],
+ [23.45032, -17.63879],
+ [22.00012, -16.38866],
+ [21.99944, -13.00523],
+ [24.03809, -12.99118],
+ [24.03809, -10.91962],
+ [24.43359, -11.09217],
+ [24.45557, -11.48002],
+ [25.37842, -11.19996],
+ [25.42236, -11.60919],
+ [26.96045, -11.97484],
+ [27.18018, -11.60919],
+ [28.125, -12.42048],
+ [29.11377, -13.36824],
+ [29.1687, -13.43771],
+ [29.55872, -13.19716],
+ [29.68506, -13.2239],
+ [29.62463, -13.41099],
+ [29.80591, -13.44305],
+ [29.81415, -12.14809],
+ [29.31152, -12.55456],
+ [28.41064, -11.78133],
+ [28.63037, -10.70379],
+ [28.65234, -9.73071],
+ [28.37219, -9.24309],
+ [28.89748, -8.47916],
+ [30.78644, -8.26857],
+ [29.39941, -6.05316],
+ [29.4873, -4.45595],
+ [29.75922, -4.46759],
+ [29.81415, -4.36421],
+ [29.88007, -4.36832],
+ [30.04074, -4.26699],
+ [30.07919, -4.1629],
+ [30.18356, -4.08311],
+ [30.1918, -4.05126],
+ [30.21566, -4.04595],
+ [30.22923, -4.01136],
+ [30.21326, -3.99612],
+ [30.25978, -3.88755],
+ [30.29274, -3.86288],
+ [30.34424, -3.77245],
+ [30.39848, -3.79095],
+ [30.40878, -3.76765],
+ [30.39548, -3.7304],
+ [30.39054, -3.72821],
+ [30.3896, -3.71918],
+ [30.39093, -3.7101],
+ [30.39514, -3.70444],
+ [30.42028, -3.64963],
+ [30.46886, -3.53501],
+ [30.67108, -3.41335],
+ [30.63297, -3.34892],
+ [30.84206, -3.25535],
+ [30.84549, -3.16108],
+ [30.83485, -3.09698],
+ [30.7933, -3.06235],
+ [30.82111, -3.02258],
+ [30.84515, -2.9739],
+ [30.74764, -2.99618],
+ [30.7037, -2.97013],
+ [30.66422, -2.98967],
+ [30.57632, -2.90738],
+ [30.49393, -2.94441],
+ [30.41016, -2.87172],
+ [30.52002, -2.39432],
+ [30.77545, -2.38883],
+ [30.8606, -2.31199],
+ [30.84961, -2.19398],
+ [30.89081, -2.07322],
+ [30.81116, -1.96068],
+ [30.83862, -1.6587],
+ [30.73425, -1.4418],
+ [30.56259, -1.33884],
+ [30.4541, -1.05737],
+ [30.35797, -1.06287],
+ [30.34149, -1.13152],
+ [30.16571, -1.34296],
+ [29.91852, -1.48024],
+ [29.83887, -1.31824],
+ [29.58344, -1.39238],
+ [29.729, 0.05493],
+ [29.96796, 0.5136],
+ [29.9707, 0.8569],
+ [30.22339, 0.92281],
+ [30.24536, 1.15349],
+ [30.47745, 1.20772],
+ [31.30966, 2.15693],
+ [31.20255, 2.22211],
+ [31.20255, 2.29278],
+ [31.16409, 2.27906],
+ [31.13937, 2.28318],
+ [31.13113, 2.26534],
+ [31.07826, 2.30033],
+ [31.0714, 2.34767],
+ [31.00479, 2.4005],
+ [30.97183, 2.40461],
+ [30.94711, 2.38746],
+ [30.94849, 2.36276],
+ [30.9375, 2.33532],
+ [30.88531, 2.34012],
+ [30.83038, 2.42176],
+ [30.74112, 2.43274],
+ [30.76035, 2.5864],
+ [30.90179, 2.88132],
+ [30.76447, 3.04178],
+ [30.93613, 3.40239],
+ [30.94059, 3.50588],
+ [30.85236, 3.48601],
+ [30.90866, 3.5936],
+ [30.95055, 3.63918],
+ [30.94677, 3.65391],
+ [30.9866, 3.70187],
+ [31.00582, 3.70701],
+ [31.02058, 3.69708],
+ [31.16547, 3.7954],
+ [31.28838, 3.79643],
+ [31.52699, 3.66282],
+ [31.7038, 3.72449],
+ [31.82671, 3.82794],
+ [31.96198, 3.65596],
+ [31.95854, 3.57099],
+ [32.04987, 3.59155],
+ [32.07733, 3.57099],
+ [32.0842, 3.53672],
+ [32.20093, 3.50657],
+ [32.21672, 3.56448],
+ [32.19578, 3.59977],
+ [32.41516, 3.74504],
+ [32.72055, 3.76782],
+ [32.89307, 3.81219],
+ [33.02782, 3.89371],
+ [33.18146, 3.7793],
+ [33.51173, 3.75258],
+ [33.98758, 4.23309],
+ [34.05762, 4.28342],
+ [34.38721, 4.61065],
+ [35.94452, 4.62023],
+ [35.95688, 4.53467],
+ [36.04134, 4.44568],
+ [36.89621, 4.4491],
+ [38.14728, 3.62992],
+ [38.55927, 3.62033],
+ [38.92181, 3.51068],
+ [39.56039, 3.43392],
+ [39.87076, 3.87522],
+ [40.76752, 4.28753],
+ [41.16371, 3.94372],
+ [41.89774, 3.97797],
+ [41.31271, 3.14463],
+ [40.98896, 2.82869],
+ [40.99548, -0.84042],
+ [41.7, -1.8],
+ [41.7, -49],
+ [-27, -60],
+ [-65.7, -52.5],
+ [-14.5, -6]
]
]
}
@@ -334,442 +414,386 @@
"type": "Polygon",
"coordinates": [
[
- [
- -64.33594,
- 32.86113
- ],
- [
- -79.39819,
- 27.21067
- ],
- [
- -80.63965,
- 23.71998
- ],
- [
- -73.39966,
- 20.40642
- ],
- [
- -65.1709,
- 19.20743
- ],
- [
- -65.09399,
- 16.23577
- ],
- [
- -59.13391,
- 16.80454
- ],
- [
- -62.64404,
- 15.16228
- ],
- [
- -59.43054,
- 14.85985
- ],
- [
- -62.83081,
- 13.64599
- ],
- [
- -61.80359,
- 10.73752
- ],
- [
- -62.08649,
- 10.04729
- ],
- [
- -61.06201,
- 9.85522
- ],
- [
- -59.81369,
- 8.31274
- ],
- [
- -59.8027,
- 8.27469
- ],
- [
- -59.83498,
- 8.22712
- ],
- [
- -59.94141,
- 8.21149
- ],
- [
- -59.99771,
- 8.15576
- ],
- [
- -59.97986,
- 8.13265
- ],
- [
- -59.99771,
- 8.12041
- ],
- [
- -60.00183,
- 8.07147
- ],
- [
- -60.05127,
- 8.02524
- ],
- [
- -60.09933,
- 8.03747
- ],
- [
- -60.12268,
- 8.02388
- ],
- [
- -60.14053,
- 7.98988
- ],
- [
- -60.36163,
- 7.83345
- ],
- [
- -60.53467,
- 7.81713
- ],
- [
- -60.5896,
- 7.6375
- ],
- [
- -60.72144,
- 7.54493
- ],
- [
- -60.5896,
- 7.31888
- ],
- [
- -60.63904,
- 7.24532
- ],
- [
- -60.54703,
- 7.12542
- ],
- [
- -60.46875,
- 7.20309
- ],
- [
- -60.37262,
- 7.18401
- ],
- [
- -60.29984,
- 7.1445
- ],
- [
- -60.2916,
- 7.06819
- ],
- [
- -60.39871,
- 6.95097
- ],
- [
- -60.66513,
- 6.83235
- ],
- [
- -60.71869,
- 6.75053
- ],
- [
- -60.91232,
- 6.81735
- ],
- [
- -60.94254,
- 6.72053
- ],
- [
- -61.14441,
- 6.72326
- ],
- [
- -61.23093,
- 6.5773
- ],
- [
- -61.1554,
- 6.45314
- ],
- [
- -61.14441,
- 6.20199
- ],
- [
- -61.39709,
- 5.95619
- ],
- [
- -60.71045,
- 5.20036
- ],
- [
- -60.21606,
- 5.23319
- ],
- [
- -59.99634,
- 5.06906
- ],
- [
- -60.13916,
- 4.51071
- ],
- [
- -59.69971,
- 4.40118
- ],
- [
- -59.5459,
- 3.93002
- ],
- [
- -59.87549,
- 3.56825
- ],
- [
- -59.7876,
- 3.37086
- ],
- [
- -60.01831,
- 2.83332
- ],
- [
- -59.90845,
- 2.38335
- ],
- [
- -59.69971,
- 2.2626
- ],
- [
- -59.77661,
- 1.87833
- ],
- [
- -59.65302,
- 1.85087
- ],
- [
- -59.69147,
- 1.75754
- ],
- [
- -59.61456,
- 1.71361
- ],
- [
- -59.55139,
- 1.73283
- ],
- [
- -59.36188,
- 1.49123
- ],
- [
- -59.26575,
- 1.39238
- ],
- [
- -58.92242,
- 1.30726
- ],
- [
- -58.83728,
- 1.17271
- ],
- [
- -58.71918,
- 1.23037
- ],
- [
- -58.71094,
- 1.29902
- ],
- [
- -58.49121,
- 1.26058
- ],
- [
- -58.461,
- 1.37591
- ],
- [
- -58.50494,
- 1.38689
- ],
- [
- -58.51044,
- 1.46102
- ],
- [
- -58.38135,
- 1.4775
- ],
- [
- -58.32642,
- 1.57359
- ],
- [
- -58.00507,
- 1.49946
- ],
- [
- -57.99133,
- 1.65321
- ],
- [
- -57.79907,
- 1.69165
- ],
- [
- -57.70844,
- 1.71087
- ],
- [
- -57.54364,
- 1.68341
- ],
- [
- -57.41455,
- 1.94421
- ],
- [
- -57.10693,
- 1.97715
- ],
- [
- -56.8103,
- 1.85636
- ],
- [
- -56.48071,
- 1.92225
- ],
- [
- -55.90942,
- 1.81244
- ],
- [
- -55.90942,
- 2.04302
- ],
- [
- -56.14014,
- 2.26534
- ],
- [
- -55.94788,
- 2.53701
- ],
- [
- -55.70892,
- 2.39981
- ],
- [
- -55.37933,
- 2.43274
- ],
- [
- -55.19257,
- 2.53976
- ],
- [
- -54.98108,
- 2.57268
- ],
- [
- -54.88495,
- 2.43548
- ],
- [
- -54.71191,
- 2.46293
- ],
- [
- -54.69543,
- 2.34767
- ],
- [
- -54.58832,
- 2.32846
- ],
- [
- -54.43451,
- 2.43548
- ],
- [
- -54.20654,
- 2.76748
- ],
- [
- -54.17358,
- 3.12955
- ],
- [
- -53.96484,
- 3.57921
- ],
- [
- -54.33838,
- 4.00674
- ],
- [
- -54.44412,
- 4.52577
- ],
- [
- -54.46884,
- 4.91036
- ],
- [
- -54.36653,
- 5.13061
- ],
- [
- -54.27727,
- 5.26191
- ],
- [
- -54.19968,
- 5.3084
- ],
- [
- -54.01222,
- 5.54457
- ],
- [
- -54.0239,
- 5.64605
- ],
- [
- -53.86322,
- 5.94936
- ],
- [
- -64.33594,
- 32.86113
- ]
+ [31.33301, 35.47856],
+ [33.0249, 33.75175],
+ [35.44189, 36.02245],
+ [31.33301, 35.47856]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[14, 36.5], [15, 36], [14, 35], [14, 36.5]]]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [[0, 62], [2.5, 51.3], [-2, 50], [-1.9, 49], [-20, 53], [0, 62]]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [180, -35],
+ [161, -19],
+ [167, -12],
+ [180, -22],
+ [180, 4],
+ [170, 3.7],
+ [127, 5.7],
+ [118, 2.7],
+ [119.5, 5.4],
+ [117.2, 7.5],
+ [102.6, 8],
+ [102.9158, 11.74099],
+ [102.76268, 12.07357],
+ [102.70226, 12.17158],
+ [102.74139, 12.46474],
+ [102.53128, 12.68857],
+ [102.49557, 12.9256],
+ [102.49763, 13.0064],
+ [102.4597, 13.08199],
+ [102.43412, 13.09026],
+ [102.39155, 13.16407],
+ [102.35481, 13.29341],
+ [102.35893, 13.30945],
+ [102.34503, 13.34837],
+ [102.35928, 13.39797],
+ [102.3567, 13.48095],
+ [102.36168, 13.50582],
+ [102.33559, 13.53787],
+ [102.33971, 13.56023],
+ [102.35498, 13.5649],
+ [102.36511, 13.5785],
+ [102.40047, 13.5679],
+ [102.42537, 13.56891],
+ [102.44614, 13.56123],
+ [102.48047, 13.57091],
+ [102.53849, 13.56757],
+ [102.5699, 13.58526],
+ [102.57806, 13.60486],
+ [102.62501, 13.60845],
+ [102.62132, 13.61295],
+ [102.60767, 13.61562],
+ [102.57231, 13.63331],
+ [102.56922, 13.64082],
+ [102.54879, 13.658],
+ [102.56252, 13.68552],
+ [102.5972, 13.70803],
+ [102.67084, 13.74472],
+ [102.68818, 13.75172],
+ [102.7014, 13.7684],
+ [102.73161, 13.77082],
+ [102.76543, 13.85541],
+ [102.78397, 13.93207],
+ [102.80388, 13.94406],
+ [102.81607, 13.96639],
+ [102.90705, 14.02119],
+ [102.89726, 14.0535],
+ [102.90095, 14.0838],
+ [102.92421, 14.10744],
+ [102.92378, 14.12838],
+ [102.94147, 14.15035],
+ [102.92953, 14.17952],
+ [103.17535, 14.33774],
+ [103.19939, 14.32992],
+ [103.68553, 14.44],
+ [103.94508, 14.34157],
+ [104.05756, 14.34589],
+ [104.06636, 14.3419],
+ [104.26025, 14.37749],
+ [104.50058, 14.36984],
+ [104.57817, 14.36019],
+ [104.6422, 14.42387],
+ [104.66632, 14.40234],
+ [104.68357, 14.39877],
+ [104.71138, 14.43169],
+ [104.72305, 14.42188],
+ [104.71687, 14.40043],
+ [104.75344, 14.40459],
+ [104.80408, 14.43867],
+ [104.83429, 14.41573],
+ [104.99239, 14.3838],
+ [105.05402, 14.19783],
+ [105.47905, 14.49186],
+ [105.60883, 15.0005],
+ [105.46703, 15.13005],
+ [105.48866, 15.20237],
+ [105.59269, 15.2716],
+ [105.58617, 15.32823],
+ [105.50308, 15.31912],
+ [105.46703, 15.33948],
+ [105.49175, 15.37921],
+ [105.59372, 15.42869],
+ [105.59372, 15.50927],
+ [105.60986, 15.54871],
+ [105.62616, 15.56492],
+ [105.62702, 15.59129],
+ [105.63518, 15.62742],
+ [105.63612, 15.66056],
+ [105.5975, 15.72088],
+ [105.49965, 15.76681],
+ [105.46291, 15.74517],
+ [105.43819, 15.75459],
+ [105.40489, 15.79424],
+ [105.34241, 15.92039],
+ [105.37811, 15.98344],
+ [105.39167, 15.99136],
+ [105.41931, 15.98608],
+ [105.42652, 15.99764],
+ [105.41468, 16.01661],
+ [105.21263, 16.05076],
+ [105.04955, 16.10552],
+ [105.01316, 16.24401],
+ [104.88235, 16.37812],
+ [104.8391, 16.45782],
+ [104.77936, 16.49041],
+ [104.73919, 16.53287],
+ [104.74228, 16.62205],
+ [104.76391, 16.70953],
+ [104.73953, 16.80323],
+ [104.76425, 16.85088],
+ [104.73782, 16.90968],
+ [104.744, 17.0128],
+ [104.81266, 17.21853],
+ [104.79841, 17.39274],
+ [104.70348, 17.52833],
+ [104.46384, 17.65515],
+ [104.34368, 17.83564],
+ [104.27776, 17.8559],
+ [104.22661, 17.98069],
+ [104.1116, 18.10735],
+ [104.06525, 18.21174],
+ [103.97392, 18.33823],
+ [103.9286, 18.33237],
+ [103.88809, 18.29456],
+ [103.85582, 18.28673],
+ [103.83659, 18.32715],
+ [103.79128, 18.3467],
+ [103.70201, 18.34214],
+ [103.60931, 18.40405],
+ [103.57292, 18.40437],
+ [103.51593, 18.42978],
+ [103.45963, 18.42587],
+ [103.41568, 18.44802],
+ [103.30479, 18.43206],
+ [103.24265, 18.37082],
+ [103.24333, 18.34133],
+ [103.29123, 18.32357],
+ [103.28899, 18.29521],
+ [103.23595, 18.28299],
+ [103.16608, 18.25511],
+ [103.02429, 17.98135],
+ [102.6535, 17.83237],
+ [102.40631, 17.99963],
+ [102.10968, 18.22413],
+ [101.548, 17.81538],
+ [101.30493, 17.64991],
+ [101.14563, 17.46595],
+ [100.95886, 17.61654],
+ [101.01757, 17.88858],
+ [101.18752, 18.05121],
+ [101.16863, 18.10409],
+ [101.18134, 18.33595],
+ [101.08727, 18.38287],
+ [101.05499, 18.43988],
+ [101.23215, 18.73015],
+ [101.35265, 19.04524],
+ [101.25927, 19.12733],
+ [101.2373, 19.32637],
+ [101.25824, 19.58438],
+ [101.11954, 19.56836],
+ [101.08898, 19.58777],
+ [101.08624, 19.59715],
+ [101.03165, 19.6185],
+ [100.89844, 19.62125],
+ [100.77827, 19.49249],
+ [100.63751, 19.56432],
+ [100.58258, 19.49313],
+ [100.47478, 19.5944],
+ [100.42929, 19.67152],
+ [100.43341, 19.7024],
+ [100.4147, 19.7255],
+ [100.40525, 19.7646],
+ [100.43907, 19.80345],
+ [100.45555, 19.84843],
+ [100.50636, 19.87264],
+ [100.51709, 19.93027],
+ [100.58653, 20.1599],
+ [100.56576, 20.1757],
+ [100.54945, 20.17473],
+ [100.52731, 20.14379],
+ [100.51065, 20.14895],
+ [100.48697, 20.17956],
+ [100.46774, 20.196],
+ [100.45246, 20.20147],
+ [100.45521, 20.22129],
+ [100.44783, 20.23546],
+ [100.41607, 20.25286],
+ [100.40594, 20.28184],
+ [100.38397, 20.31082],
+ [100.37556, 20.35187],
+ [100.36165, 20.35638],
+ [100.35736, 20.37408],
+ [100.33195, 20.39902],
+ [100.27805, 20.40224],
+ [100.25917, 20.39677],
+ [100.2475, 20.37263],
+ [100.22535, 20.35509],
+ [100.22346, 20.31839],
+ [100.16579, 20.29988],
+ [100.17162, 20.24545],
+ [100.10845, 20.25221],
+ [100.09266, 20.2696],
+ [100.09798, 20.31485],
+ [100.07961, 20.3678],
+ [99.9567, 20.46417],
+ [99.91636, 20.44925],
+ [99.90765, 20.44977],
+ [99.89121, 20.44511],
+ [99.87276, 20.44406],
+ [99.86212, 20.44326],
+ [99.80186, 20.33948],
+ [99.46472, 20.3884],
+ [99.56085, 20.20035],
+ [99.43691, 20.08882],
+ [99.27727, 20.11623],
+ [99.06921, 20.1101],
+ [98.97789, 19.74538],
+ [98.24387, 19.68656],
+ [97.85934, 19.57014],
+ [97.76733, 18.57336],
+ [97.39655, 18.47179],
+ [97.62451, 18.30238],
+ [97.73849, 17.97743],
+ [97.66502, 17.87943],
+ [97.90947, 17.56745],
+ [98.52951, 16.82557],
+ [98.51303, 16.69276],
+ [98.69293, 16.26873],
+ [98.87421, 16.43609],
+ [98.93394, 16.3353],
+ [98.84743, 16.13356],
+ [98.74512, 16.12037],
+ [98.58307, 16.07287],
+ [98.5762, 15.79754],
+ [98.54736, 15.37557],
+ [98.17383, 15.15167],
+ [98.3606, 14.63674],
+ [99.08295, 13.89208],
+ [99.16534, 13.72204],
+ [99.18182, 13.00723],
+ [99.39331, 12.56797],
+ [99.64153, 11.78973],
+ [99.32156, 11.30266],
+ [98.77859, 10.67849],
+ [98.80597, 10.47642],
+ [98.76657, 10.40459],
+ [98.74924, 10.34194],
+ [96.85547, 6.40265],
+ [92.42523, 20.54794],
+ [92.2728, 20.96272],
+ [92.187, 21.16],
+ [92.26, 21.36],
+ [92.27, 21.4328],
+ [92.62, 21.43],
+ [92.6, 22],
+ [93.22, 22.25],
+ [93.4, 23.7],
+ [93.34, 23.95],
+ [94.155, 23.847],
+ [94.17, 23.92],
+ [94.25171, 24.07405],
+ [94.28, 24.23],
+ [94.30175, 24.2371],
+ [94.3256, 24.2731],
+ [94.6, 24.7],
+ [94.78, 25.47],
+ [95.2, 26],
+ [95.1, 26.6],
+ [97.3, 27.9],
+ [96.14, 29.38],
+ [95.4, 29.1],
+ [94.8, 29.2],
+ [92.5, 27.8],
+ [91.64, 27.76],
+ [91.4, 28],
+ [89.58, 28.18],
+ [88.9, 27.32],
+ [88.74, 27.47],
+ [88.9, 27.86],
+ [88.7, 28.1],
+ [88.1, 27.87],
+ [85.93, 27.942],
+ [81.6, 30.5],
+ [81.2, 30],
+ [78.73, 31.5],
+ [78.77, 31.99],
+ [78.4, 32.5],
+ [79.3, 32.5],
+ [79, 34.3],
+ [78.3, 34.6],
+ [78, 35.5],
+ [76.1, 35.8],
+ [76, 36.55],
+ [75.15, 37],
+ [72.5, 36.9],
+ [71.1, 36.1],
+ [71.65, 35.44],
+ [71.45, 35],
+ [70.985, 34.54],
+ [71.18, 34.36],
+ [71.092, 34.118],
+ [70.88, 33.97],
+ [70.5, 33.94],
+ [69.908, 34.04],
+ [69.869, 33.96],
+ [70, 33.75],
+ [70.13, 33.73],
+ [70.34, 33.34],
+ [70.013, 33.14],
+ [69.57, 33.09],
+ [69.24, 32.45],
+ [69.3, 31.9],
+ [68.1, 31.6],
+ [66.393, 30.934],
+ [66.2, 29.8],
+ [62.5, 29.4],
+ [60.87, 29.86],
+ [61.53, 29.0165],
+ [61.66, 28.77],
+ [61.96, 28.54],
+ [62.43, 28.42],
+ [62.6, 28.25],
+ [62.795, 28.28],
+ [62.86, 27.25],
+ [63.24, 27.25],
+ [63.327, 27.13],
+ [63.25, 27.1],
+ [63.25, 26.84],
+ [63.18, 26.83],
+ [63.18, 26.65],
+ [62.3, 26.5],
+ [62.2, 26.28],
+ [61.85, 26.22],
+ [61.84, 25.75],
+ [61.68, 25.67],
+ [56.5, -21],
+ [180, -65],
+ [180, -35]
]
]
}
@@ -781,738 +805,13 @@
"type": "Polygon",
"coordinates": [
[
- [
- -14.5,
- -6
- ],
- [
- 11.79657,
- -17.27197
- ],
- [
- 12.03415,
- -17.14866
- ],
- [
- 12.38159,
- -17.22213
- ],
- [
- 12.58484,
- -17.22476
- ],
- [
- 13.01193,
- -16.97405
- ],
- [
- 13.24951,
- -17.00098
- ],
- [
- 13.38135,
- -16.98522
- ],
- [
- 13.93341,
- -17.38734
- ],
- [
- 18.42476,
- -17.38996
- ],
- [
- 18.47763,
- -17.46857
- ],
- [
- 18.62663,
- -17.64599
- ],
- [
- 18.79211,
- -17.76177
- ],
- [
- 18.92944,
- -17.82061
- ],
- [
- 19.33044,
- -17.84806
- ],
- [
- 19.66278,
- -17.8644
- ],
- [
- 19.74792,
- -17.90557
- ],
- [
- 19.85161,
- -17.87486
- ],
- [
- 20.10361,
- -17.90296
- ],
- [
- 20.18394,
- -17.88401
- ],
- [
- 20.34737,
- -17.88466
- ],
- [
- 20.44693,
- -17.91733
- ],
- [
- 20.51697,
- -17.96698
- ],
- [
- 20.83008,
- -18.03032
- ],
- [
- 20.95711,
- -17.97285
- ],
- [
- 21.16997,
- -17.93497
- ],
- [
- 21.42677,
- -18.0264
- ],
- [
- 23.45032,
- -17.63879
- ],
- [
- 22.00012,
- -16.38866
- ],
- [
- 21.99944,
- -13.00523
- ],
- [
- 24.03809,
- -12.99118
- ],
- [
- 24.03809,
- -10.91962
- ],
- [
- 24.43359,
- -11.09217
- ],
- [
- 24.45557,
- -11.48002
- ],
- [
- 25.37842,
- -11.19996
- ],
- [
- 25.42236,
- -11.60919
- ],
- [
- 26.96045,
- -11.97484
- ],
- [
- 27.18018,
- -11.60919
- ],
- [
- 28.125,
- -12.42048
- ],
- [
- 29.11377,
- -13.36824
- ],
- [
- 29.1687,
- -13.43771
- ],
- [
- 29.55872,
- -13.19716
- ],
- [
- 29.68506,
- -13.2239
- ],
- [
- 29.62463,
- -13.41099
- ],
- [
- 29.80591,
- -13.44305
- ],
- [
- 29.81415,
- -12.14809
- ],
- [
- 29.31152,
- -12.55456
- ],
- [
- 28.41064,
- -11.78133
- ],
- [
- 28.63037,
- -10.70379
- ],
- [
- 28.65234,
- -9.73071
- ],
- [
- 28.37219,
- -9.24309
- ],
- [
- 28.89748,
- -8.47916
- ],
- [
- 30.78644,
- -8.26857
- ],
- [
- 29.39941,
- -6.05316
- ],
- [
- 29.4873,
- -4.45595
- ],
- [
- 29.75922,
- -4.46759
- ],
- [
- 29.81415,
- -4.36421
- ],
- [
- 29.88007,
- -4.36832
- ],
- [
- 30.04074,
- -4.26699
- ],
- [
- 30.07919,
- -4.1629
- ],
- [
- 30.18356,
- -4.08311
- ],
- [
- 30.1918,
- -4.05126
- ],
- [
- 30.21566,
- -4.04595
- ],
- [
- 30.22923,
- -4.01136
- ],
- [
- 30.21326,
- -3.99612
- ],
- [
- 30.25978,
- -3.88755
- ],
- [
- 30.29274,
- -3.86288
- ],
- [
- 30.34424,
- -3.77245
- ],
- [
- 30.39848,
- -3.79095
- ],
- [
- 30.40878,
- -3.76765
- ],
- [
- 30.39548,
- -3.7304
- ],
- [
- 30.39054,
- -3.72821
- ],
- [
- 30.3896,
- -3.71918
- ],
- [
- 30.39093,
- -3.7101
- ],
- [
- 30.39514,
- -3.70444
- ],
- [
- 30.42028,
- -3.64963
- ],
- [
- 30.46886,
- -3.53501
- ],
- [
- 30.67108,
- -3.41335
- ],
- [
- 30.63297,
- -3.34892
- ],
- [
- 30.84206,
- -3.25535
- ],
- [
- 30.84549,
- -3.16108
- ],
- [
- 30.83485,
- -3.09698
- ],
- [
- 30.7933,
- -3.06235
- ],
- [
- 30.82111,
- -3.02258
- ],
- [
- 30.84515,
- -2.9739
- ],
- [
- 30.74764,
- -2.99618
- ],
- [
- 30.7037,
- -2.97013
- ],
- [
- 30.66422,
- -2.98967
- ],
- [
- 30.57632,
- -2.90738
- ],
- [
- 30.49393,
- -2.94441
- ],
- [
- 30.41016,
- -2.87172
- ],
- [
- 30.52002,
- -2.39432
- ],
- [
- 30.77545,
- -2.38883
- ],
- [
- 30.8606,
- -2.31199
- ],
- [
- 30.84961,
- -2.19398
- ],
- [
- 30.89081,
- -2.07322
- ],
- [
- 30.81116,
- -1.96068
- ],
- [
- 30.83862,
- -1.6587
- ],
- [
- 30.73425,
- -1.4418
- ],
- [
- 30.56259,
- -1.33884
- ],
- [
- 30.4541,
- -1.05737
- ],
- [
- 30.35797,
- -1.06287
- ],
- [
- 30.34149,
- -1.13152
- ],
- [
- 30.16571,
- -1.34296
- ],
- [
- 29.91852,
- -1.48024
- ],
- [
- 29.83887,
- -1.31824
- ],
- [
- 29.58344,
- -1.39238
- ],
- [
- 29.729,
- 0.05493
- ],
- [
- 29.96796,
- 0.5136
- ],
- [
- 29.9707,
- 0.8569
- ],
- [
- 30.22339,
- 0.92281
- ],
- [
- 30.24536,
- 1.15349
- ],
- [
- 30.47745,
- 1.20772
- ],
- [
- 31.30966,
- 2.15693
- ],
- [
- 31.20255,
- 2.22211
- ],
- [
- 31.20255,
- 2.29278
- ],
- [
- 31.16409,
- 2.27906
- ],
- [
- 31.13937,
- 2.28318
- ],
- [
- 31.13113,
- 2.26534
- ],
- [
- 31.07826,
- 2.30033
- ],
- [
- 31.0714,
- 2.34767
- ],
- [
- 31.00479,
- 2.4005
- ],
- [
- 30.97183,
- 2.40461
- ],
- [
- 30.94711,
- 2.38746
- ],
- [
- 30.94849,
- 2.36276
- ],
- [
- 30.9375,
- 2.33532
- ],
- [
- 30.88531,
- 2.34012
- ],
- [
- 30.83038,
- 2.42176
- ],
- [
- 30.74112,
- 2.43274
- ],
- [
- 30.76035,
- 2.5864
- ],
- [
- 30.90179,
- 2.88132
- ],
- [
- 30.76447,
- 3.04178
- ],
- [
- 30.93613,
- 3.40239
- ],
- [
- 30.94059,
- 3.50588
- ],
- [
- 30.85236,
- 3.48601
- ],
- [
- 30.90866,
- 3.5936
- ],
- [
- 30.95055,
- 3.63918
- ],
- [
- 30.94677,
- 3.65391
- ],
- [
- 30.9866,
- 3.70187
- ],
- [
- 31.00582,
- 3.70701
- ],
- [
- 31.02058,
- 3.69708
- ],
- [
- 31.16547,
- 3.7954
- ],
- [
- 31.28838,
- 3.79643
- ],
- [
- 31.52699,
- 3.66282
- ],
- [
- 31.7038,
- 3.72449
- ],
- [
- 31.82671,
- 3.82794
- ],
- [
- 31.96198,
- 3.65596
- ],
- [
- 31.95854,
- 3.57099
- ],
- [
- 32.04987,
- 3.59155
- ],
- [
- 32.07733,
- 3.57099
- ],
- [
- 32.0842,
- 3.53672
- ],
- [
- 32.20093,
- 3.50657
- ],
- [
- 32.21672,
- 3.56448
- ],
- [
- 32.19578,
- 3.59977
- ],
- [
- 32.41516,
- 3.74504
- ],
- [
- 32.72055,
- 3.76782
- ],
- [
- 32.89307,
- 3.81219
- ],
- [
- 33.02782,
- 3.89371
- ],
- [
- 33.18146,
- 3.7793
- ],
- [
- 33.51173,
- 3.75258
- ],
- [
- 33.98758,
- 4.23309
- ],
- [
- 34.05762,
- 4.28342
- ],
- [
- 34.38721,
- 4.61065
- ],
- [
- 35.94452,
- 4.62023
- ],
- [
- 35.95688,
- 4.53467
- ],
- [
- 36.04134,
- 4.44568
- ],
- [
- 36.89621,
- 4.4491
- ],
- [
- 38.14728,
- 3.62992
- ],
- [
- 38.55927,
- 3.62033
- ],
- [
- 38.92181,
- 3.51068
- ],
- [
- 39.56039,
- 3.43392
- ],
- [
- 39.87076,
- 3.87522
- ],
- [
- 40.76752,
- 4.28753
- ],
- [
- 41.16371,
- 3.94372
- ],
- [
- 41.89774,
- 3.97797
- ],
- [
- 41.31271,
- 3.14463
- ],
- [
- 40.98896,
- 2.82869
- ],
- [
- 40.99548,
- -0.84042
- ],
- [
- 41.7,
- -1.8
- ],
- [
- 41.7,
- -49
- ],
- [
- -27,
- -60
- ],
- [
- -65.7,
- -52.5
- ],
- [
- -14.5,
- -6
- ]
+ [138.7, 46.7],
+ [145.5, 44.5],
+ [145.2, 43.7],
+ [146, 43.3],
+ [142, 18],
+ [122, 24.3],
+ [138.7, 46.7]
]
]
}
@@ -1524,1568 +823,17 @@
"type": "Polygon",
"coordinates": [
[
- [
- 31.33301,
- 35.47856
- ],
- [
- 33.0249,
- 33.75175
- ],
- [
- 35.44189,
- 36.02245
- ],
- [
- 31.33301,
- 35.47856
- ]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "properties": {},
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- 14,
- 36.5
- ],
- [
- 15,
- 36
- ],
- [
- 14,
- 35
- ],
- [
- 14,
- 36.5
- ]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "properties": {},
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- 0,
- 62
- ],
- [
- 2.5,
- 51.3
- ],
- [
- -2,
- 50
- ],
- [
- -1.9,
- 49
- ],
- [
- -20,
- 53
- ],
- [
- 0,
- 62
- ]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "properties": {},
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- 180,
- -35
- ],
- [
- 161,
- -19
- ],
- [
- 167,
- -12
- ],
- [
- 180,
- -22
- ],
- [
- 180,
- 4
- ],
- [
- 170,
- 3.7
- ],
- [
- 127,
- 5.7
- ],
- [
- 118,
- 2.7
- ],
- [
- 119.5,
- 5.4
- ],
- [
- 117.2,
- 7.5
- ],
- [
- 102.6,
- 8
- ],
- [
- 102.9158,
- 11.74099
- ],
- [
- 102.76268,
- 12.07357
- ],
- [
- 102.70226,
- 12.17158
- ],
- [
- 102.74139,
- 12.46474
- ],
- [
- 102.53128,
- 12.68857
- ],
- [
- 102.49557,
- 12.9256
- ],
- [
- 102.49763,
- 13.0064
- ],
- [
- 102.4597,
- 13.08199
- ],
- [
- 102.43412,
- 13.09026
- ],
- [
- 102.39155,
- 13.16407
- ],
- [
- 102.35481,
- 13.29341
- ],
- [
- 102.35893,
- 13.30945
- ],
- [
- 102.34503,
- 13.34837
- ],
- [
- 102.35928,
- 13.39797
- ],
- [
- 102.3567,
- 13.48095
- ],
- [
- 102.36168,
- 13.50582
- ],
- [
- 102.33559,
- 13.53787
- ],
- [
- 102.33971,
- 13.56023
- ],
- [
- 102.35498,
- 13.5649
- ],
- [
- 102.36511,
- 13.5785
- ],
- [
- 102.40047,
- 13.5679
- ],
- [
- 102.42537,
- 13.56891
- ],
- [
- 102.44614,
- 13.56123
- ],
- [
- 102.48047,
- 13.57091
- ],
- [
- 102.53849,
- 13.56757
- ],
- [
- 102.5699,
- 13.58526
- ],
- [
- 102.57806,
- 13.60486
- ],
- [
- 102.62501,
- 13.60845
- ],
- [
- 102.62132,
- 13.61295
- ],
- [
- 102.60767,
- 13.61562
- ],
- [
- 102.57231,
- 13.63331
- ],
- [
- 102.56922,
- 13.64082
- ],
- [
- 102.54879,
- 13.658
- ],
- [
- 102.56252,
- 13.68552
- ],
- [
- 102.5972,
- 13.70803
- ],
- [
- 102.67084,
- 13.74472
- ],
- [
- 102.68818,
- 13.75172
- ],
- [
- 102.7014,
- 13.7684
- ],
- [
- 102.73161,
- 13.77082
- ],
- [
- 102.76543,
- 13.85541
- ],
- [
- 102.78397,
- 13.93207
- ],
- [
- 102.80388,
- 13.94406
- ],
- [
- 102.81607,
- 13.96639
- ],
- [
- 102.90705,
- 14.02119
- ],
- [
- 102.89726,
- 14.0535
- ],
- [
- 102.90095,
- 14.0838
- ],
- [
- 102.92421,
- 14.10744
- ],
- [
- 102.92378,
- 14.12838
- ],
- [
- 102.94147,
- 14.15035
- ],
- [
- 102.92953,
- 14.17952
- ],
- [
- 103.17535,
- 14.33774
- ],
- [
- 103.19939,
- 14.32992
- ],
- [
- 103.68553,
- 14.44
- ],
- [
- 103.94508,
- 14.34157
- ],
- [
- 104.05756,
- 14.34589
- ],
- [
- 104.06636,
- 14.3419
- ],
- [
- 104.26025,
- 14.37749
- ],
- [
- 104.50058,
- 14.36984
- ],
- [
- 104.57817,
- 14.36019
- ],
- [
- 104.6422,
- 14.42387
- ],
- [
- 104.66632,
- 14.40234
- ],
- [
- 104.68357,
- 14.39877
- ],
- [
- 104.71138,
- 14.43169
- ],
- [
- 104.72305,
- 14.42188
- ],
- [
- 104.71687,
- 14.40043
- ],
- [
- 104.75344,
- 14.40459
- ],
- [
- 104.80408,
- 14.43867
- ],
- [
- 104.83429,
- 14.41573
- ],
- [
- 104.99239,
- 14.3838
- ],
- [
- 105.05402,
- 14.19783
- ],
- [
- 105.47905,
- 14.49186
- ],
- [
- 105.60883,
- 15.0005
- ],
- [
- 105.46703,
- 15.13005
- ],
- [
- 105.48866,
- 15.20237
- ],
- [
- 105.59269,
- 15.2716
- ],
- [
- 105.58617,
- 15.32823
- ],
- [
- 105.50308,
- 15.31912
- ],
- [
- 105.46703,
- 15.33948
- ],
- [
- 105.49175,
- 15.37921
- ],
- [
- 105.59372,
- 15.42869
- ],
- [
- 105.59372,
- 15.50927
- ],
- [
- 105.60986,
- 15.54871
- ],
- [
- 105.62616,
- 15.56492
- ],
- [
- 105.62702,
- 15.59129
- ],
- [
- 105.63518,
- 15.62742
- ],
- [
- 105.63612,
- 15.66056
- ],
- [
- 105.5975,
- 15.72088
- ],
- [
- 105.49965,
- 15.76681
- ],
- [
- 105.46291,
- 15.74517
- ],
- [
- 105.43819,
- 15.75459
- ],
- [
- 105.40489,
- 15.79424
- ],
- [
- 105.34241,
- 15.92039
- ],
- [
- 105.37811,
- 15.98344
- ],
- [
- 105.39167,
- 15.99136
- ],
- [
- 105.41931,
- 15.98608
- ],
- [
- 105.42652,
- 15.99764
- ],
- [
- 105.41468,
- 16.01661
- ],
- [
- 105.21263,
- 16.05076
- ],
- [
- 105.04955,
- 16.10552
- ],
- [
- 105.01316,
- 16.24401
- ],
- [
- 104.88235,
- 16.37812
- ],
- [
- 104.8391,
- 16.45782
- ],
- [
- 104.77936,
- 16.49041
- ],
- [
- 104.73919,
- 16.53287
- ],
- [
- 104.74228,
- 16.62205
- ],
- [
- 104.76391,
- 16.70953
- ],
- [
- 104.73953,
- 16.80323
- ],
- [
- 104.76425,
- 16.85088
- ],
- [
- 104.73782,
- 16.90968
- ],
- [
- 104.744,
- 17.0128
- ],
- [
- 104.81266,
- 17.21853
- ],
- [
- 104.79841,
- 17.39274
- ],
- [
- 104.70348,
- 17.52833
- ],
- [
- 104.46384,
- 17.65515
- ],
- [
- 104.34368,
- 17.83564
- ],
- [
- 104.27776,
- 17.8559
- ],
- [
- 104.22661,
- 17.98069
- ],
- [
- 104.1116,
- 18.10735
- ],
- [
- 104.06525,
- 18.21174
- ],
- [
- 103.97392,
- 18.33823
- ],
- [
- 103.9286,
- 18.33237
- ],
- [
- 103.88809,
- 18.29456
- ],
- [
- 103.85582,
- 18.28673
- ],
- [
- 103.83659,
- 18.32715
- ],
- [
- 103.79128,
- 18.3467
- ],
- [
- 103.70201,
- 18.34214
- ],
- [
- 103.60931,
- 18.40405
- ],
- [
- 103.57292,
- 18.40437
- ],
- [
- 103.51593,
- 18.42978
- ],
- [
- 103.45963,
- 18.42587
- ],
- [
- 103.41568,
- 18.44802
- ],
- [
- 103.30479,
- 18.43206
- ],
- [
- 103.24265,
- 18.37082
- ],
- [
- 103.24333,
- 18.34133
- ],
- [
- 103.29123,
- 18.32357
- ],
- [
- 103.28899,
- 18.29521
- ],
- [
- 103.23595,
- 18.28299
- ],
- [
- 103.16608,
- 18.25511
- ],
- [
- 103.02429,
- 17.98135
- ],
- [
- 102.6535,
- 17.83237
- ],
- [
- 102.40631,
- 17.99963
- ],
- [
- 102.10968,
- 18.22413
- ],
- [
- 101.548,
- 17.81538
- ],
- [
- 101.30493,
- 17.64991
- ],
- [
- 101.14563,
- 17.46595
- ],
- [
- 100.95886,
- 17.61654
- ],
- [
- 101.01757,
- 17.88858
- ],
- [
- 101.18752,
- 18.05121
- ],
- [
- 101.16863,
- 18.10409
- ],
- [
- 101.18134,
- 18.33595
- ],
- [
- 101.08727,
- 18.38287
- ],
- [
- 101.05499,
- 18.43988
- ],
- [
- 101.23215,
- 18.73015
- ],
- [
- 101.35265,
- 19.04524
- ],
- [
- 101.25927,
- 19.12733
- ],
- [
- 101.2373,
- 19.32637
- ],
- [
- 101.25824,
- 19.58438
- ],
- [
- 101.11954,
- 19.56836
- ],
- [
- 101.08898,
- 19.58777
- ],
- [
- 101.08624,
- 19.59715
- ],
- [
- 101.03165,
- 19.6185
- ],
- [
- 100.89844,
- 19.62125
- ],
- [
- 100.77827,
- 19.49249
- ],
- [
- 100.63751,
- 19.56432
- ],
- [
- 100.58258,
- 19.49313
- ],
- [
- 100.47478,
- 19.5944
- ],
- [
- 100.42929,
- 19.67152
- ],
- [
- 100.43341,
- 19.7024
- ],
- [
- 100.4147,
- 19.7255
- ],
- [
- 100.40525,
- 19.7646
- ],
- [
- 100.43907,
- 19.80345
- ],
- [
- 100.45555,
- 19.84843
- ],
- [
- 100.50636,
- 19.87264
- ],
- [
- 100.51709,
- 19.93027
- ],
- [
- 100.58653,
- 20.1599
- ],
- [
- 100.56576,
- 20.1757
- ],
- [
- 100.54945,
- 20.17473
- ],
- [
- 100.52731,
- 20.14379
- ],
- [
- 100.51065,
- 20.14895
- ],
- [
- 100.48697,
- 20.17956
- ],
- [
- 100.46774,
- 20.196
- ],
- [
- 100.45246,
- 20.20147
- ],
- [
- 100.45521,
- 20.22129
- ],
- [
- 100.44783,
- 20.23546
- ],
- [
- 100.41607,
- 20.25286
- ],
- [
- 100.40594,
- 20.28184
- ],
- [
- 100.38397,
- 20.31082
- ],
- [
- 100.37556,
- 20.35187
- ],
- [
- 100.36165,
- 20.35638
- ],
- [
- 100.35736,
- 20.37408
- ],
- [
- 100.33195,
- 20.39902
- ],
- [
- 100.27805,
- 20.40224
- ],
- [
- 100.25917,
- 20.39677
- ],
- [
- 100.2475,
- 20.37263
- ],
- [
- 100.22535,
- 20.35509
- ],
- [
- 100.22346,
- 20.31839
- ],
- [
- 100.16579,
- 20.29988
- ],
- [
- 100.17162,
- 20.24545
- ],
- [
- 100.10845,
- 20.25221
- ],
- [
- 100.09266,
- 20.2696
- ],
- [
- 100.09798,
- 20.31485
- ],
- [
- 100.07961,
- 20.3678
- ],
- [
- 99.9567,
- 20.46417
- ],
- [
- 99.91636,
- 20.44925
- ],
- [
- 99.90765,
- 20.44977
- ],
- [
- 99.89121,
- 20.44511
- ],
- [
- 99.87276,
- 20.44406
- ],
- [
- 99.86212,
- 20.44326
- ],
- [
- 99.80186,
- 20.33948
- ],
- [
- 99.46472,
- 20.3884
- ],
- [
- 99.56085,
- 20.20035
- ],
- [
- 99.43691,
- 20.08882
- ],
- [
- 99.27727,
- 20.11623
- ],
- [
- 99.06921,
- 20.1101
- ],
- [
- 98.97789,
- 19.74538
- ],
- [
- 98.24387,
- 19.68656
- ],
- [
- 97.85934,
- 19.57014
- ],
- [
- 97.76733,
- 18.57336
- ],
- [
- 97.39655,
- 18.47179
- ],
- [
- 97.62451,
- 18.30238
- ],
- [
- 97.73849,
- 17.97743
- ],
- [
- 97.66502,
- 17.87943
- ],
- [
- 97.90947,
- 17.56745
- ],
- [
- 98.52951,
- 16.82557
- ],
- [
- 98.51303,
- 16.69276
- ],
- [
- 98.69293,
- 16.26873
- ],
- [
- 98.87421,
- 16.43609
- ],
- [
- 98.93394,
- 16.3353
- ],
- [
- 98.84743,
- 16.13356
- ],
- [
- 98.74512,
- 16.12037
- ],
- [
- 98.58307,
- 16.07287
- ],
- [
- 98.5762,
- 15.79754
- ],
- [
- 98.54736,
- 15.37557
- ],
- [
- 98.17383,
- 15.15167
- ],
- [
- 98.3606,
- 14.63674
- ],
- [
- 99.08295,
- 13.89208
- ],
- [
- 99.16534,
- 13.72204
- ],
- [
- 99.18182,
- 13.00723
- ],
- [
- 99.39331,
- 12.56797
- ],
- [
- 99.64153,
- 11.78973
- ],
- [
- 99.32156,
- 11.30266
- ],
- [
- 98.77859,
- 10.67849
- ],
- [
- 98.80597,
- 10.47642
- ],
- [
- 98.76657,
- 10.40459
- ],
- [
- 98.74924,
- 10.34194
- ],
- [
- 96.85547,
- 6.40265
- ],
- [
- 92.42523,
- 20.54794
- ],
- [
- 92.2728,
- 20.96272
- ],
- [
- 92.187,
- 21.16
- ],
- [
- 92.26,
- 21.36
- ],
- [
- 92.27,
- 21.4328
- ],
- [
- 92.62,
- 21.43
- ],
- [
- 92.6,
- 22
- ],
- [
- 93.22,
- 22.25
- ],
- [
- 93.4,
- 23.7
- ],
- [
- 93.34,
- 23.95
- ],
- [
- 94.155,
- 23.847
- ],
- [
- 94.17,
- 23.92
- ],
- [
- 94.25171,
- 24.07405
- ],
- [
- 94.28,
- 24.23
- ],
- [
- 94.30175,
- 24.2371
- ],
- [
- 94.3256,
- 24.2731
- ],
- [
- 94.6,
- 24.7
- ],
- [
- 94.78,
- 25.47
- ],
- [
- 95.2,
- 26
- ],
- [
- 95.1,
- 26.6
- ],
- [
- 97.3,
- 27.9
- ],
- [
- 96.14,
- 29.38
- ],
- [
- 95.4,
- 29.1
- ],
- [
- 94.8,
- 29.2
- ],
- [
- 92.5,
- 27.8
- ],
- [
- 91.64,
- 27.76
- ],
- [
- 91.4,
- 28
- ],
- [
- 89.58,
- 28.18
- ],
- [
- 88.9,
- 27.32
- ],
- [
- 88.74,
- 27.47
- ],
- [
- 88.9,
- 27.86
- ],
- [
- 88.7,
- 28.1
- ],
- [
- 88.1,
- 27.87
- ],
- [
- 85.93,
- 27.942
- ],
- [
- 81.6,
- 30.5
- ],
- [
- 81.2,
- 30
- ],
- [
- 78.73,
- 31.5
- ],
- [
- 78.77,
- 31.99
- ],
- [
- 78.4,
- 32.5
- ],
- [
- 79.3,
- 32.5
- ],
- [
- 79,
- 34.3
- ],
- [
- 78.3,
- 34.6
- ],
- [
- 78,
- 35.5
- ],
- [
- 76.1,
- 35.8
- ],
- [
- 76,
- 36.55
- ],
- [
- 75.15,
- 37
- ],
- [
- 72.5,
- 36.9
- ],
- [
- 71.1,
- 36.1
- ],
- [
- 71.65,
- 35.44
- ],
- [
- 71.45,
- 35
- ],
- [
- 70.985,
- 34.54
- ],
- [
- 71.18,
- 34.36
- ],
- [
- 71.092,
- 34.118
- ],
- [
- 70.88,
- 33.97
- ],
- [
- 70.5,
- 33.94
- ],
- [
- 69.908,
- 34.04
- ],
- [
- 69.869,
- 33.96
- ],
- [
- 70,
- 33.75
- ],
- [
- 70.13,
- 33.73
- ],
- [
- 70.34,
- 33.34
- ],
- [
- 70.013,
- 33.14
- ],
- [
- 69.57,
- 33.09
- ],
- [
- 69.24,
- 32.45
- ],
- [
- 69.3,
- 31.9
- ],
- [
- 68.1,
- 31.6
- ],
- [
- 66.393,
- 30.934
- ],
- [
- 66.2,
- 29.8
- ],
- [
- 62.5,
- 29.4
- ],
- [
- 60.87,
- 29.86
- ],
- [
- 61.53,
- 29.0165
- ],
- [
- 61.66,
- 28.77
- ],
- [
- 61.96,
- 28.54
- ],
- [
- 62.43,
- 28.42
- ],
- [
- 62.6,
- 28.25
- ],
- [
- 62.795,
- 28.28
- ],
- [
- 62.86,
- 27.25
- ],
- [
- 63.24,
- 27.25
- ],
- [
- 63.327,
- 27.13
- ],
- [
- 63.25,
- 27.1
- ],
- [
- 63.25,
- 26.84
- ],
- [
- 63.18,
- 26.83
- ],
- [
- 63.18,
- 26.65
- ],
- [
- 62.3,
- 26.5
- ],
- [
- 62.2,
- 26.28
- ],
- [
- 61.85,
- 26.22
- ],
- [
- 61.84,
- 25.75
- ],
- [
- 61.68,
- 25.67
- ],
- [
- 56.5,
- -21
- ],
- [
- 180,
- -65
- ],
- [
- 180,
- -35
- ]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "properties": {},
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- 138.7,
- 46.7
- ],
- [
- 145.5,
- 44.5
- ],
- [
- 145.2,
- 43.7
- ],
- [
- 146,
- 43.3
- ],
- [
- 142,
- 18
- ],
- [
- 122,
- 24.3
- ],
- [
- 138.7,
- 46.7
- ]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "properties": {},
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- -180,
- 7
- ],
- [
- -148,
- 7
- ],
- [
- -151,
- -12
- ],
- [
- -171.5,
- -10.75
- ],
- [
- -171,
- -16
- ],
- [
- -152,
- -19
- ],
- [
- -180,
- -55
- ],
- [
- -180,
- 7
- ]
+ [-180, 7],
+ [-148, 7],
+ [-151, -12],
+ [-171.5, -10.75],
+ [-171, -16],
+ [-152, -19],
+ [-180, -55],
+ [-180, 7]
]
]
}
}
]
-}
+}
\ No newline at end of file
diff --git a/data/imagery.json b/data/imagery.json
index d89eae353..08c72a62b 100644
--- a/data/imagery.json
+++ b/data/imagery.json
@@ -1,177375 +1,48372 @@
{
- "dataImagery": [
- {
- "id": "sjcgis.org-Aerials_2013_WM",
- "name": "2013 aerial imagery for San Juan County WA",
- "type": "tms",
- "template": "https://sjcgis.org/arcgis/rest/services/Basemaps/Aerials_2013_WM/MapServer/tile/{zoom}/{y}/{x}",
- "endDate": "2013-06-01T00:00:00.000Z",
- "startDate": "2013-05-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 19
- ],
- "polygon": [
- [
- [
- -123.02167,
- 48.44667
- ],
- [
- -122.94666,
- 48.44781
- ],
- [
- -122.90151,
- 48.41307
- ],
- [
- -122.80263,
- 48.40771
- ],
- [
- -122.79199,
- 48.4428
- ],
- [
- -122.80881,
- 48.47866
- ],
- [
- -122.73912,
- 48.49572
- ],
- [
- -122.78547,
- 48.62161
- ],
- [
- -122.73088,
- 48.63613
- ],
- [
- -122.7556,
- 48.71208
- ],
- [
- -122.95747,
- 48.71593
- ],
- [
- -122.97086,
- 48.69577
- ],
- [
- -122.9997,
- 48.6978
- ],
- [
- -123.00348,
- 48.73427
- ],
- [
- -123.0433,
- 48.7431
- ],
- [
- -123.07626,
- 48.70528
- ],
- [
- -123.08485,
- 48.66335
- ],
- [
- -123.12845,
- 48.6638
- ],
- [
- -123.22698,
- 48.70302
- ],
- [
- -123.24655,
- 48.68353
- ],
- [
- -123.17445,
- 48.64702
- ],
- [
- -123.21514,
- 48.60107
- ],
- [
- -123.21393,
- 48.57336
- ],
- [
- -123.1808,
- 48.56575
- ],
- [
- -123.16621,
- 48.52006
- ],
- [
- -123.10235,
- 48.47684
- ],
- [
- -123.02167,
- 48.44667
- ]
- ],
- [
- [
- -122.98339,
- 48.78214
- ],
- [
- -122.93498,
- 48.76653
- ],
- [
- -122.91181,
- 48.73858
- ],
- [
- -122.80229,
- 48.73982
- ],
- [
- -122.81946,
- 48.75499
- ],
- [
- -122.9343,
- 48.79572
- ],
- [
- -122.98374,
- 48.79436
- ],
- [
- -122.98339,
- 48.78214
- ]
- ]
- ],
- "terms_url": "https://www.arcgis.com/home/item.html?id=7bf69831861d438d8365cf9f46662523",
- "terms_text": "Pictometry Inc, San Juan County GIS",
- "description": "Public domain aerial imagery taken in May/June 2013 from San Juan County, WA. Resolution is 9 inch."
- },
- {
- "id": "sjcgis.org-Aerials_2016_WM",
- "name": "2016 aerial imagery for San Juan County WA",
- "type": "tms",
- "template": "https://sjcgis.org/arcgis/rest/services/Basemaps/Aerials_2016_WM/MapServer/tile/{zoom}/{y}/{x}",
- "endDate": "2016-07-01T00:00:00.000Z",
- "startDate": "2016-05-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 19
- ],
- "polygon": [
- [
- [
- -123.02167,
- 48.44667
- ],
- [
- -122.94666,
- 48.44781
- ],
- [
- -122.90151,
- 48.41307
- ],
- [
- -122.80263,
- 48.40771
- ],
- [
- -122.79199,
- 48.4428
- ],
- [
- -122.80881,
- 48.47866
- ],
- [
- -122.73912,
- 48.49572
- ],
- [
- -122.78547,
- 48.62161
- ],
- [
- -122.73088,
- 48.63613
- ],
- [
- -122.7556,
- 48.71208
- ],
- [
- -122.95747,
- 48.71593
- ],
- [
- -122.97086,
- 48.69577
- ],
- [
- -122.9997,
- 48.6978
- ],
- [
- -123.00348,
- 48.73427
- ],
- [
- -123.0433,
- 48.7431
- ],
- [
- -123.07626,
- 48.70528
- ],
- [
- -123.08485,
- 48.66335
- ],
- [
- -123.12845,
- 48.6638
- ],
- [
- -123.22698,
- 48.70302
- ],
- [
- -123.24655,
- 48.68353
- ],
- [
- -123.17445,
- 48.64702
- ],
- [
- -123.21514,
- 48.60107
- ],
- [
- -123.21393,
- 48.57336
- ],
- [
- -123.1808,
- 48.56575
- ],
- [
- -123.16621,
- 48.52006
- ],
- [
- -123.10235,
- 48.47684
- ],
- [
- -123.02167,
- 48.44667
- ]
- ],
- [
- [
- -122.98339,
- 48.78214
- ],
- [
- -122.93498,
- 48.76653
- ],
- [
- -122.91181,
- 48.73858
- ],
- [
- -122.80229,
- 48.73982
- ],
- [
- -122.81946,
- 48.75499
- ],
- [
- -122.9343,
- 48.79572
- ],
- [
- -122.98374,
- 48.79436
- ],
- [
- -122.98339,
- 48.78214
- ]
- ]
- ],
- "best": true,
- "description": "Public domain aerial imagery taken in May, June, and July from San Juan County, WA. Resolution is 6 inch countywide."
- },
- {
- "id": "OS7",
- "name": "7th Series (OS7)",
- "type": "tms",
- "template": "https://ooc.openstreetmap.org/os7/{zoom}/{x}/{y}.jpg",
- "polygon": [
- [
- [
- -3.04697,
- 54.83947
- ],
- [
- -3.05864,
- 55.24157
- ],
- [
- -4.04466,
- 55.23296
- ],
- [
- -4.07076,
- 55.63654
- ],
- [
- -4.61904,
- 55.6253
- ],
- [
- -4.64926,
- 56.02834
- ],
- [
- -4.48961,
- 56.03217
- ],
- [
- -4.52394,
- 56.4367
- ],
- [
- -3.86751,
- 56.44581
- ],
- [
- -3.84176,
- 56.04944
- ],
- [
- -3.44591,
- 56.04982
- ],
- [
- -3.43492,
- 55.64429
- ],
- [
- -2.79497,
- 55.65049
- ],
- [
- -2.80802,
- 56.05749
- ],
- [
- -3.20661,
- 56.05327
- ],
- [
- -3.21417,
- 56.45682
- ],
- [
- -3.73808,
- 56.45075
- ],
- [
- -3.74185,
- 56.86175
- ],
- [
- -5.07669,
- 56.83171
- ],
- [
- -5.03652,
- 56.42949
- ],
- [
- -5.16012,
- 56.42493
- ],
- [
- -5.12991,
- 56.01798
- ],
- [
- -5.92607,
- 55.99456
- ],
- [
- -5.85518,
- 55.23335
- ],
- [
- -5.2281,
- 55.25136
- ],
- [
- -5.21024,
- 55.02765
- ],
- [
- -4.65956,
- 55.04181
- ],
- [
- -4.64548,
- 54.81633
- ],
- [
- -3.04697,
- 54.83947
- ]
- ],
- [
- [
- -1.74835,
- 57.76428
- ],
- [
- -1.74065,
- 57.36
- ],
- [
- -2.58022,
- 57.35537
- ],
- [
- -2.57437,
- 57.04526
- ],
- [
- -2.08408,
- 57.04799
- ],
- [
- -2.07651,
- 56.64276
- ],
- [
- -2.7345,
- 56.63906
- ],
- [
- -2.73781,
- 56.81718
- ],
- [
- -3.23885,
- 56.81437
- ],
- [
- -3.24896,
- 57.35168
- ],
- [
- -3.75629,
- 57.34889
- ],
- [
- -3.76219,
- 57.65868
- ],
- [
- -4.76587,
- 57.64473
- ],
- [
- -4.81008,
- 58.26984
- ],
- [
- -5.2511,
- 58.26547
- ],
- [
- -5.27376,
- 58.66767
- ],
- [
- -3.55818,
- 58.69887
- ],
- [
- -3.56607,
- 58.9316
- ],
- [
- -3.37656,
- 58.93444
- ],
- [
- -3.38584,
- 59.20171
- ],
- [
- -3.18713,
- 59.20215
- ],
- [
- -3.18747,
- 59.24176
- ],
- [
- -3.06757,
- 59.24203
- ],
- [
- -3.07855,
- 59.42135
- ],
- [
- -2.37131,
- 59.42763
- ],
- [
- -2.36856,
- 59.0222
- ],
- [
- -2.67893,
- 59.02078
- ],
- [
- -2.67343,
- 58.83935
- ],
- [
- -2.86569,
- 58.83651
- ],
- [
- -2.8602,
- 58.53531
- ],
- [
- -3.03461,
- 58.53316
- ],
- [
- -3.0195,
- 58.13159
- ],
- [
- -3.6156,
- 58.11982
- ],
- [
- -3.61276,
- 57.97754
- ],
- [
- -3.71092,
- 57.97562
- ],
- [
- -3.69932,
- 57.75364
- ],
- [
- -1.74835,
- 57.76428
- ]
- ],
- [
- [
- -7.07492,
- 56.76319
- ],
- [
- -7.73471,
- 56.73566
- ],
- [
- -7.7911,
- 57.13994
- ],
- [
- -7.70662,
- 57.14343
- ],
- [
- -7.76299,
- 57.54311
- ],
- [
- -7.60218,
- 57.54968
- ],
- [
- -7.62134,
- 57.68452
- ],
- [
- -7.72499,
- 57.6803
- ],
- [
- -7.73017,
- 57.71673
- ],
- [
- -7.60264,
- 57.72191
- ],
- [
- -7.59964,
- 57.70083
- ],
- [
- -7.48634,
- 57.70544
- ],
- [
- -7.49528,
- 57.76813
- ],
- [
- -7.37493,
- 57.77301
- ],
- [
- -7.39337,
- 57.90201
- ],
- [
- -7.23591,
- 57.90838
- ],
- [
- -7.24323,
- 57.95948
- ],
- [
- -7.13916,
- 57.96369
- ],
- [
- -7.14508,
- 58.00495
- ],
- [
- -7.23742,
- 58.00122
- ],
- [
- -7.23297,
- 57.97018
- ],
- [
- -7.31133,
- 57.96702
- ],
- [
- -7.31538,
- 57.99525
- ],
- [
- -7.24904,
- 57.99792
- ],
- [
- -7.28082,
- 58.21856
- ],
- [
- -7.07355,
- 58.22687
- ],
- [
- -7.0827,
- 58.29018
- ],
- [
- -6.80743,
- 58.30119
- ],
- [
- -6.82768,
- 58.44074
- ],
- [
- -6.50305,
- 58.45366
- ],
- [
- -6.51532,
- 58.53792
- ],
- [
- -6.16474,
- 58.55184
- ],
- [
- -6.10631,
- 58.14894
- ],
- [
- -6.33469,
- 58.13976
- ],
- [
- -6.27759,
- 57.74145
- ],
- [
- -6.96138,
- 57.71366
- ],
- [
- -6.93332,
- 57.51615
- ],
- [
- -7.10017,
- 57.50933
- ],
- [
- -7.05218,
- 57.169
- ],
- [
- -7.13111,
- 57.16575
- ],
- [
- -7.07492,
- 56.76319
- ]
- ],
- [
- [
- 0.41076,
- 50.82087
- ],
- [
- 0.98102,
- 50.80612
- ],
- [
- 0.99437,
- 51.01173
- ],
- [
- 1.45062,
- 50.99998
- ],
- [
- 1.47712,
- 51.40552
- ],
- [
- 0.89619,
- 51.42035
- ],
- [
- 0.88243,
- 51.21039
- ],
- [
- 0.505,
- 51.22007
- ],
- [
- 0.52273,
- 51.49042
- ],
- [
- -0.63397,
- 51.51063
- ],
- [
- -0.63671,
- 51.44563
- ],
- [
- -1.09951,
- 51.45248
- ],
- [
- -1.11485,
- 51.04814
- ],
- [
- -0.52987,
- 51.0394
- ],
- [
- -0.52751,
- 51.10203
- ],
- [
- 0.42806,
- 51.08778
- ],
- [
- 0.41076,
- 50.82087
- ]
- ],
- [
- [
- -5.39457,
- 51.9619
- ],
- [
- -4.79581,
- 51.98051
- ],
- [
- -4.78873,
- 51.89403
- ],
- [
- -4.20265,
- 51.91228
- ],
- [
- -4.22941,
- 52.23828
- ],
- [
- -3.6552,
- 52.25602
- ],
- [
- -3.62228,
- 51.85483
- ],
- [
- -4.21342,
- 51.8364
- ],
- [
- -4.18551,
- 51.49342
- ],
- [
- -4.77661,
- 51.47485
- ],
- [
- -4.78476,
- 51.57525
- ],
- [
- -5.08799,
- 51.56574
- ],
- [
- -5.09422,
- 51.64242
- ],
- [
- -5.3678,
- 51.63385
- ],
- [
- -5.39457,
- 51.9619
- ]
- ],
- [
- [
- -1.2389,
- 54.03537
- ],
- [
- -0.62779,
- 54.02811
- ],
- [
- -0.62004,
- 54.25257
- ],
- [
- -0.57268,
- 54.25201
- ],
- [
- -0.55865,
- 54.65542
- ],
- [
- -1.17998,
- 54.66269
- ],
- [
- -1.18782,
- 54.43788
- ],
- [
- -1.23221,
- 54.4384
- ],
- [
- -1.2389,
- 54.03537
- ]
- ],
- [
- [
- -2.67227,
- 50.97677
- ],
- [
- -2.09961,
- 50.98023
- ],
- [
- -2.10572,
- 51.37949
- ],
- [
- -1.58877,
- 51.38259
- ],
- [
- -1.59499,
- 51.78589
- ],
- [
- -2.17563,
- 51.78891
- ],
- [
- -2.17154,
- 51.38392
- ],
- [
- -2.67846,
- 51.38088
- ],
- [
- -2.67227,
- 50.97677
- ]
- ],
- [
- [
- -2.60155,
- 53.27155
- ],
- [
- -3.22973,
- 53.2685
- ],
- [
- -3.23522,
- 53.67231
- ],
- [
- -2.60704,
- 53.67533
- ],
- [
- -2.60155,
- 53.27155
- ]
- ],
- [
- [
- -0.03942,
- 51.7728
- ],
- [
- -0.61563,
- 51.77577
- ],
- [
- -0.60465,
- 52.58414
- ],
- [
- -0.02843,
- 52.58122
- ],
- [
- -0.03942,
- 51.7728
- ]
- ],
- [
- [
- -2.91529,
- 54.03523
- ],
- [
- -3.53229,
- 54.02866
- ],
- [
- -3.54484,
- 54.43397
- ],
- [
- -2.92785,
- 54.44047
- ],
- [
- -2.91529,
- 54.03523
- ]
- ],
- [
- [
- -6.30583,
- 57.19689
- ],
- [
- -6.3539,
- 57.60015
- ],
- [
- -5.69111,
- 57.62295
- ],
- [
- -5.64305,
- 57.21995
- ],
- [
- -6.30583,
- 57.19689
- ]
- ],
- [
- [
- 1.17115,
- 52.57236
- ],
- [
- 1.19865,
- 52.97594
- ],
- [
- 1.79788,
- 52.96106
- ],
- [
- 1.77037,
- 52.55734
- ],
- [
- 1.17115,
- 52.57236
- ]
- ],
- [
- [
- -2.40225,
- 55.56317
- ],
- [
- -2.40088,
- 55.9657
- ],
- [
- -1.76084,
- 55.96501
- ],
- [
- -1.76222,
- 55.56248
- ],
- [
- -2.40225,
- 55.56317
- ]
- ],
- [
- [
- -6.32574,
- 56.38537
- ],
- [
- -7.0196,
- 56.35747
- ],
- [
- -7.07316,
- 56.76384
- ],
- [
- -6.3793,
- 56.79145
- ],
- [
- -6.32574,
- 56.38537
- ]
- ],
- [
- [
- -2.42258,
- 54.4431
- ],
- [
- -2.42574,
- 54.84188
- ],
- [
- -1.79931,
- 54.84354
- ],
- [
- -1.79614,
- 54.44477
- ],
- [
- -2.42258,
- 54.4431
- ]
- ],
- [
- [
- -3.02701,
- 51.37935
- ],
- [
- -3.60589,
- 51.37017
- ],
- [
- -3.62237,
- 51.77304
- ],
- [
- -3.04349,
- 51.78215
- ],
- [
- -3.02701,
- 51.37935
- ]
- ],
- [
- [
- -3.05379,
- 52.18979
- ],
- [
- -3.06615,
- 52.59374
- ],
- [
- -2.48364,
- 52.60034
- ],
- [
- -2.47128,
- 52.19646
- ],
- [
- -3.05379,
- 52.18979
- ]
- ],
- [
- [
- -5.67673,
- 51.70425
- ],
- [
- -5.67886,
- 51.73101
- ],
- [
- -5.4636,
- 51.7376
- ],
- [
- -5.46146,
- 51.71084
- ],
- [
- -5.67673,
- 51.70425
- ]
- ],
- [
- [
- -5.84427,
- 59.10882
- ],
- [
- -5.8469,
- 59.13578
- ],
- [
- -5.79558,
- 59.1371
- ],
- [
- -5.79294,
- 59.11014
- ],
- [
- -5.84427,
- 59.10882
- ]
- ],
- [
- [
- -8.64844,
- 57.77861
- ],
- [
- -8.66597,
- 57.87717
- ],
- [
- -8.46649,
- 57.88721
- ],
- [
- -8.44897,
- 57.78867
- ],
- [
- -8.64844,
- 57.77861
- ]
- ],
- [
- [
- -4.52711,
- 59.01532
- ],
- [
- -4.52859,
- 59.03319
- ],
- [
- -4.47623,
- 59.03434
- ],
- [
- -4.47475,
- 59.01646
- ],
- [
- -4.52711,
- 59.01532
- ]
- ],
- [
- [
- -7.68062,
- 58.25838
- ],
- [
- -7.68655,
- 58.2938
- ],
- [
- -7.53445,
- 58.30084
- ],
- [
- -7.52852,
- 58.26542
- ],
- [
- -7.68062,
- 58.25838
- ]
- ],
- [
- [
- -6.19102,
- 59.08009
- ],
- [
- -6.19546,
- 59.11586
- ],
- [
- -6.12542,
- 59.11815
- ],
- [
- -6.12099,
- 59.08238
- ],
- [
- -6.19102,
- 59.08009
- ]
- ],
- [
- [
- -4.42669,
- 59.07112
- ],
- [
- -4.42805,
- 59.0887
- ],
- [
- -4.37621,
- 59.08976
- ],
- [
- -4.37485,
- 59.07218
- ],
- [
- -4.42669,
- 59.07112
- ]
- ]
- ]
- },
- {
- "id": "ACT2017",
- "name": "ACTmapi Imagery 2017",
- "type": "wms",
- "template": "https://data.actmapi.act.gov.au/arcgis/services/actmapi/imagery2017mga/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:4326",
- "endDate": "2017-05-01T00:00:00.000Z",
- "startDate": "2017-05-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 21
- ],
- "polygon": [
- [
- [
- 149.085,
- -35.1171
- ],
- [
- 149.1509,
- -35.1157
- ],
- [
- 149.1509,
- -35.1335
- ],
- [
- 149.1736,
- -35.1335
- ],
- [
- 149.1739,
- -35.1512
- ],
- [
- 149.1957,
- -35.1512
- ],
- [
- 149.1962,
- -35.1689
- ],
- [
- 149.2177,
- -35.1683
- ],
- [
- 149.2192,
- -35.2048
- ],
- [
- 149.241,
- -35.2043
- ],
- [
- 149.2419,
- -35.2223
- ],
- [
- 149.2632,
- -35.2222
- ],
- [
- 149.2644,
- -35.2575
- ],
- [
- 149.3085,
- -35.2571
- ],
- [
- 149.309,
- -35.2751
- ],
- [
- 149.3531,
- -35.2742
- ],
- [
- 149.3536,
- -35.2921
- ],
- [
- 149.3974,
- -35.2917
- ],
- [
- 149.3988,
- -35.3452
- ],
- [
- 149.3777,
- -35.3457
- ],
- [
- 149.3772,
- -35.3641
- ],
- [
- 149.3341,
- -35.3648
- ],
- [
- 149.3385,
- -35.5451
- ],
- [
- 149.1624,
- -35.5487
- ],
- [
- 149.1727,
- -35.9271
- ],
- [
- 149.0175,
- -35.9294
- ],
- [
- 149.0172,
- -35.9113
- ],
- [
- 148.9506,
- -35.9125
- ],
- [
- 148.9499,
- -35.8946
- ],
- [
- 148.9277,
- -35.8949
- ],
- [
- 148.9272,
- -35.8768
- ],
- [
- 148.9053,
- -35.8768
- ],
- [
- 148.9042,
- -35.8586
- ],
- [
- 148.8826,
- -35.859
- ],
- [
- 148.8805,
- -35.7695
- ],
- [
- 148.8361,
- -35.7698
- ],
- [
- 148.8359,
- -35.7521
- ],
- [
- 148.8138,
- -35.7524
- ],
- [
- 148.8131,
- -35.7343
- ],
- [
- 148.7909,
- -35.7347
- ],
- [
- 148.7911,
- -35.7167
- ],
- [
- 148.7688,
- -35.7167
- ],
- [
- 148.7617,
- -35.3924
- ],
- [
- 148.7839,
- -35.3921
- ],
- [
- 148.7822,
- -35.3022
- ],
- [
- 148.8041,
- -35.302
- ],
- [
- 148.8033,
- -35.2836
- ],
- [
- 148.8474,
- -35.2832
- ],
- [
- 148.8469,
- -35.2652
- ],
- [
- 148.8689,
- -35.2643
- ],
- [
- 148.8687,
- -35.2466
- ],
- [
- 148.9128,
- -35.246
- ],
- [
- 148.9123,
- -35.2282
- ],
- [
- 148.9341,
- -35.228
- ],
- [
- 148.9329,
- -35.1919
- ],
- [
- 148.999,
- -35.1904
- ],
- [
- 148.9986,
- -35.1724
- ],
- [
- 149.0206,
- -35.172
- ],
- [
- 149.0204,
- -35.154
- ],
- [
- 149.0637,
- -35.1532
- ],
- [
- 149.0635,
- -35.1355
- ],
- [
- 149.0857,
- -35.1348
- ],
- [
- 149.085,
- -35.1171
- ]
- ]
- ],
- "terms_url": "https://actmapi-actgov.opendata.arcgis.com/datasets/884456bde6fd46d68e0c05479f55d548",
- "terms_text": "© Jacobs Group (Australia) Pty Ltd and Australian Capital Territory",
- "best": true
- },
- {
- "id": "AGIV10cm",
- "name": "AGIV Flanders 2013-2015 aerial imagery 10cm",
- "type": "wms",
- "template": "https://geoservices.informatievlaanderen.be/raadpleegdiensten/OGW/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OGWRGB13_15VL&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2015-01-01T00:00:00.000Z",
- "startDate": "2013-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 5.98494,
- 50.70723
- ],
- [
- 5.98494,
- 50.7672
- ],
- [
- 5.91079,
- 50.82275
- ],
- [
- 5.75561,
- 50.83533
- ],
- [
- 5.75423,
- 50.86264
- ],
- [
- 5.8332,
- 50.93323
- ],
- [
- 5.85517,
- 51.02661
- ],
- [
- 5.90941,
- 51.07754
- ],
- [
- 5.91216,
- 51.18225
- ],
- [
- 5.87851,
- 51.20807
- ],
- [
- 5.77414,
- 51.23689
- ],
- [
- 5.68419,
- 51.24075
- ],
- [
- 5.62308,
- 51.26998
- ],
- [
- 5.62308,
- 51.29789
- ],
- [
- 5.54,
- 51.34724
- ],
- [
- 5.4473,
- 51.34853
- ],
- [
- 5.39855,
- 51.32107
- ],
- [
- 5.31203,
- 51.32322
- ],
- [
- 5.26671,
- 51.36182
- ],
- [
- 5.19942,
- 51.37254
- ],
- [
- 5.18294,
- 51.39611
- ],
- [
- 5.15891,
- 51.4924
- ],
- [
- 5.08338,
- 51.53086
- ],
- [
- 5.03257,
- 51.53983
- ],
- [
- 4.95566,
- 51.50522
- ],
- [
- 4.90142,
- 51.50565
- ],
- [
- 4.83825,
- 51.54367
- ],
- [
- 4.77096,
- 51.55862
- ],
- [
- 4.7119,
- 51.54709
- ],
- [
- 4.64049,
- 51.49667
- ],
- [
- 4.6144,
- 51.4971
- ],
- [
- 4.56565,
- 51.53171
- ],
- [
- 4.48256,
- 51.53043
- ],
- [
- 4.42626,
- 51.52189
- ],
- [
- 4.3006,
- 51.46974
- ],
- [
- 4.29511,
- 51.42566
- ],
- [
- 4.18113,
- 51.42437
- ],
- [
- 4.13718,
- 51.39525
- ],
- [
- 4.13856,
- 51.35067
- ],
- [
- 4.05204,
- 51.30047
- ],
- [
- 3.93325,
- 51.27298
- ],
- [
- 3.86527,
- 51.27084
- ],
- [
- 3.86321,
- 51.29016
- ],
- [
- 3.76296,
- 51.32407
- ],
- [
- 3.59336,
- 51.35925
- ],
- [
- 3.47732,
- 51.33137
- ],
- [
- 3.42582,
- 51.39739
- ],
- [
- 3.23562,
- 51.35153
- ],
- [
- 3.226,
- 51.36568
- ],
- [
- 3.17794,
- 51.36182
- ],
- [
- 3.16009,
- 51.33223
- ],
- [
- 3.06258,
- 51.30219
- ],
- [
- 2.75084,
- 51.1702
- ],
- [
- 2.47001,
- 51.07452
- ],
- [
- 2.49267,
- 50.99378
- ],
- [
- 2.53112,
- 50.95573
- ],
- [
- 2.50915,
- 50.91159
- ],
- [
- 2.53043,
- 50.82145
- ],
- [
- 2.5991,
- 50.76416
- ],
- [
- 2.66501,
- 50.76459
- ],
- [
- 2.77007,
- 50.66677
- ],
- [
- 2.8971,
- 50.65894
- ],
- [
- 2.99186,
- 50.72549
- ],
- [
- 3.11339,
- 50.72636
- ],
- [
- 3.23699,
- 50.70592
- ],
- [
- 3.36265,
- 50.6585
- ],
- [
- 3.47114,
- 50.70201
- ],
- [
- 3.63936,
- 50.66721
- ],
- [
- 3.69842,
- 50.68156
- ],
- [
- 3.72794,
- 50.71245
- ],
- [
- 3.81858,
- 50.68418
- ],
- [
- 3.87488,
- 50.64152
- ],
- [
- 4.09255,
- 50.64283
- ],
- [
- 4.15023,
- 50.66329
- ],
- [
- 4.20653,
- 50.64413
- ],
- [
- 4.31365,
- 50.64283
- ],
- [
- 4.45235,
- 50.68766
- ],
- [
- 4.53475,
- 50.67808
- ],
- [
- 4.61303,
- 50.69549
- ],
- [
- 4.67689,
- 50.69592
- ],
- [
- 4.72701,
- 50.73201
- ],
- [
- 4.78057,
- 50.73201
- ],
- [
- 4.79979,
- 50.71288
- ],
- [
- 4.86228,
- 50.71288
- ],
- [
- 4.88563,
- 50.69549
- ],
- [
- 4.96116,
- 50.69549
- ],
- [
- 5.03119,
- 50.65763
- ],
- [
- 5.10741,
- 50.65023
- ],
- [
- 5.2008,
- 50.64892
- ],
- [
- 5.23581,
- 50.66546
- ],
- [
- 5.32508,
- 50.6659
- ],
- [
- 5.36696,
- 50.682
- ],
- [
- 5.42121,
- 50.66416
- ],
- [
- 5.52215,
- 50.6746
- ],
- [
- 5.6224,
- 50.72418
- ],
- [
- 5.67527,
- 50.69853
- ],
- [
- 5.73981,
- 50.69723
- ],
- [
- 5.77277,
- 50.67199
- ],
- [
- 5.8126,
- 50.66024
- ],
- [
- 5.90804,
- 50.65981
- ],
- [
- 5.98494,
- 50.70723
- ]
- ]
- ],
- "terms_text": "Orthophoto Flanders © AGIV",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsSAAALEgHS3X78AAABm0lEQVQ4y6WTPUgCYRjHf5oFJVfRUZKVHYFBoBAUFLZE0FBD0NQHRENESzS019LSFNHWx1DQEhGRg0JFREM11FJuLWem4GB5HULdwdkgHprn5LO97/O8v+fj/7y2bDabpQKzFx5S6ntlgE81xvHtclHAbuSNloNT5q/uywP021cAvO4hAPYu5/hI5e6GWpsBCEfjxNSMNUALPvJ7eA3AQPcML3KIzbNhlvdEWmu+6RCcAISiCWtA3fosPztBfrYvAGgX/QCIggdR8DDe6Qbg5E0uAdjyKhhykq+uBeySi9qVCfSAB61HRBQ8RFJpRs6vALiZHMUnNpYO0Ujn+jPkJJnVfbTBNeqfFQB8YqP56H8VJqBKcuHcWsQuuXIOyUX1sN8MnPJKlnOwWS2SIScx0hkcvV3mXUzN0HcSAuBoNMBYZxsADittVXcT/XcPKE/PltqHowkTYLcMkOMoml52+wr9jnIZAJZ8XjYGe0vaUDSdsBxnulsqrUDRdMLReNHg8tYhOAs2M2HdQiSVBqChprpI7/9q5JPYKv3OfxL1n52ATYYBAAAAAElFTkSuQmCC"
- },
- {
- "id": "AGIVFlandersGRB",
- "name": "AGIV Flanders GRB",
- "type": "tms",
- "template": "https://tile.informatievlaanderen.be/ws/raadpleegdiensten/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=grb_bsk&STYLE=&FORMAT=image/png&tileMatrixSet=GoogleMapsVL&tileMatrix={zoom}&tileRow={y}&tileCol={x}",
- "scaleExtent": [
- 0,
- 21
- ],
- "polygon": [
- [
- [
- 4.40434,
- 50.78177
- ],
- [
- 4.45538,
- 50.79328
- ],
- [
- 4.40268,
- 50.8961
- ],
- [
- 4.331,
- 50.90094
- ],
- [
- 4.27142,
- 50.82002
- ],
- [
- 4.30648,
- 50.81244
- ],
- [
- 4.36348,
- 50.77251
- ],
- [
- 4.40434,
- 50.78177
- ],
- [
- 4.43104,
- 50.73831
- ],
- [
- 4.31859,
- 50.72022
- ],
- [
- 4.29031,
- 50.69402
- ],
- [
- 4.14853,
- 50.72834
- ],
- [
- 3.95877,
- 50.68947
- ],
- [
- 3.9097,
- 50.69245
- ],
- [
- 3.89113,
- 50.74333
- ],
- [
- 3.77568,
- 50.74789
- ],
- [
- 3.75857,
- 50.78045
- ],
- [
- 3.67752,
- 50.77062
- ],
- [
- 3.64047,
- 50.72242
- ],
- [
- 3.54139,
- 50.73377
- ],
- [
- 3.54062,
- 50.76307
- ],
- [
- 3.46005,
- 50.76556
- ],
- [
- 3.3522,
- 50.70614
- ],
- [
- 3.30562,
- 50.75466
- ],
- [
- 3.17839,
- 50.75609
- ],
- [
- 3.15329,
- 50.78564
- ],
- [
- 3.02008,
- 50.77312
- ],
- [
- 2.99943,
- 50.81035
- ],
- [
- 2.91648,
- 50.75356
- ],
- [
- 2.85476,
- 50.75745
- ],
- [
- 2.86521,
- 50.70565
- ],
- [
- 2.78473,
- 50.7369
- ],
- [
- 2.713,
- 50.81534
- ],
- [
- 2.63518,
- 50.8129
- ],
- [
- 2.59909,
- 50.85306
- ],
- [
- 2.59031,
- 50.91893
- ],
- [
- 2.63262,
- 50.94575
- ],
- [
- 2.57372,
- 51.00842
- ],
- [
- 2.54165,
- 51.09345
- ],
- [
- 3.15582,
- 51.32714
- ],
- [
- 3.18307,
- 51.37128
- ],
- [
- 3.23443,
- 51.34669
- ],
- [
- 3.36356,
- 51.37228
- ],
- [
- 3.38101,
- 51.27446
- ],
- [
- 3.44201,
- 51.24313
- ],
- [
- 3.52759,
- 51.24604
- ],
- [
- 3.51511,
- 51.28753
- ],
- [
- 3.58984,
- 51.30577
- ],
- [
- 3.7783,
- 51.26235
- ],
- [
- 3.79088,
- 51.21429
- ],
- [
- 3.92412,
- 51.21938
- ],
- [
- 4.16613,
- 51.2929
- ],
- [
- 4.26163,
- 51.37647
- ],
- [
- 4.42065,
- 51.36473
- ],
- [
- 4.39108,
- 51.45149
- ],
- [
- 4.54747,
- 51.48571
- ],
- [
- 4.53541,
- 51.42303
- ],
- [
- 4.64953,
- 51.42758
- ],
- [
- 4.76359,
- 51.5088
- ],
- [
- 4.84188,
- 51.48074
- ],
- [
- 4.8383,
- 51.42174
- ],
- [
- 4.89366,
- 51.41698
- ],
- [
- 4.92785,
- 51.39544
- ],
- [
- 5.02894,
- 51.48789
- ],
- [
- 5.08018,
- 51.46948
- ],
- [
- 5.10202,
- 51.42892
- ],
- [
- 5.07117,
- 51.3935
- ],
- [
- 5.13109,
- 51.35137
- ],
- [
- 5.13448,
- 51.31547
- ],
- [
- 5.20031,
- 51.32172
- ],
- [
- 5.24189,
- 51.30534
- ],
- [
- 5.23036,
- 51.26436
- ],
- [
- 5.34828,
- 51.27492
- ],
- [
- 5.41741,
- 51.26229
- ],
- [
- 5.4863,
- 51.30197
- ],
- [
- 5.5556,
- 51.26986
- ],
- [
- 5.56045,
- 51.22233
- ],
- [
- 5.76027,
- 51.18505
- ],
- [
- 5.85578,
- 51.14463
- ],
- [
- 5.75909,
- 51.03588
- ],
- [
- 5.72665,
- 50.91307
- ],
- [
- 5.64522,
- 50.8372
- ],
- [
- 5.68732,
- 50.804
- ],
- [
- 5.47863,
- 50.72352
- ],
- [
- 5.41196,
- 50.72368
- ],
- [
- 5.38908,
- 50.74775
- ],
- [
- 5.30912,
- 50.71802
- ],
- [
- 5.16984,
- 50.72257
- ],
- [
- 5.16508,
- 50.6957
- ],
- [
- 5.05642,
- 50.71567
- ],
- [
- 5.00339,
- 50.76594
- ],
- [
- 4.92545,
- 50.74275
- ],
- [
- 4.90869,
- 50.76968
- ],
- [
- 4.83106,
- 50.77028
- ],
- [
- 4.76014,
- 50.80544
- ],
- [
- 4.64309,
- 50.79755
- ],
- [
- 4.65486,
- 50.7552
- ],
- [
- 4.62021,
- 50.74348
- ],
- [
- 4.59727,
- 50.76359
- ],
- [
- 4.52399,
- 50.72724
- ],
- [
- 4.49455,
- 50.75679
- ],
- [
- 4.43104,
- 50.73831
- ],
- [
- 4.40434,
- 50.78177
- ]
- ],
- [
- [
- 5.67393,
- 50.75373
- ],
- [
- 5.88438,
- 50.70114
- ],
- [
- 5.94172,
- 50.76524
- ],
- [
- 5.76662,
- 50.78761
- ],
- [
- 5.67393,
- 50.75373
- ]
- ],
- [
- [
- 4.91171,
- 51.43492
- ],
- [
- 4.93711,
- 51.42614
- ],
- [
- 4.95891,
- 51.45471
- ],
- [
- 4.92801,
- 51.46049
- ],
- [
- 4.91171,
- 51.43492
- ]
- ]
- ],
- "terms_text": "GRB Flanders © AGIV",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsSAAALEgHS3X78AAABm0lEQVQ4y6WTPUgCYRjHf5oFJVfRUZKVHYFBoBAUFLZE0FBD0NQHRENESzS019LSFNHWx1DQEhGRg0JFREM11FJuLWem4GB5HULdwdkgHprn5LO97/O8v+fj/7y2bDabpQKzFx5S6ntlgE81xvHtclHAbuSNloNT5q/uywP021cAvO4hAPYu5/hI5e6GWpsBCEfjxNSMNUALPvJ7eA3AQPcML3KIzbNhlvdEWmu+6RCcAISiCWtA3fosPztBfrYvAGgX/QCIggdR8DDe6Qbg5E0uAdjyKhhykq+uBeySi9qVCfSAB61HRBQ8RFJpRs6vALiZHMUnNpYO0Ujn+jPkJJnVfbTBNeqfFQB8YqP56H8VJqBKcuHcWsQuuXIOyUX1sN8MnPJKlnOwWS2SIScx0hkcvV3mXUzN0HcSAuBoNMBYZxsADittVXcT/XcPKE/PltqHowkTYLcMkOMoml52+wr9jnIZAJZ8XjYGe0vaUDSdsBxnulsqrUDRdMLReNHg8tYhOAs2M2HdQiSVBqChprpI7/9q5JPYKv3OfxL1n52ATYYBAAAAAElFTkSuQmCC"
- },
- {
- "id": "AGIV",
- "name": "AGIV Flanders most recent aerial imagery",
- "type": "tms",
- "template": "https://tile.informatievlaanderen.be/ws/raadpleegdiensten/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=omwrgbmrvl&STYLE=&FORMAT=image/png&tileMatrixSet=GoogleMapsVL&tileMatrix={zoom}&tileRow={y}&tileCol={x}",
- "scaleExtent": [
- 0,
- 21
- ],
- "polygon": [
- [
- [
- 4.7737,
- 50.79368
- ],
- [
- 4.8379,
- 50.75916
- ],
- [
- 4.92511,
- 50.73483
- ],
- [
- 4.98862,
- 50.76264
- ],
- [
- 5.036,
- 50.73527
- ],
- [
- 5.0645,
- 50.69875
- ],
- [
- 5.1644,
- 50.69005
- ],
- [
- 5.19393,
- 50.71179
- ],
- [
- 5.3086,
- 50.71245
- ],
- [
- 5.36422,
- 50.74396
- ],
- [
- 5.43391,
- 50.70766
- ],
- [
- 5.54378,
- 50.74396
- ],
- [
- 5.61141,
- 50.73527
- ],
- [
- 5.71166,
- 50.73505
- ],
- [
- 5.77105,
- 50.74092
- ],
- [
- 5.81946,
- 50.70484
- ],
- [
- 5.89568,
- 50.70614
- ],
- [
- 5.9204,
- 50.72831
- ],
- [
- 5.91971,
- 50.74504
- ],
- [
- 5.89843,
- 50.77675
- ],
- [
- 5.81569,
- 50.76351
- ],
- [
- 5.77517,
- 50.79216
- ],
- [
- 5.69552,
- 50.79737
- ],
- [
- 5.69072,
- 50.82319
- ],
- [
- 5.66325,
- 50.82904
- ],
- [
- 5.65467,
- 50.86481
- ],
- [
- 5.72368,
- 50.9012
- ],
- [
- 5.77174,
- 50.95443
- ],
- [
- 5.75114,
- 50.97368
- ],
- [
- 5.78273,
- 51.00048
- ],
- [
- 5.78032,
- 51.0523
- ],
- [
- 5.80848,
- 51.05338
- ],
- [
- 5.80951,
- 51.07668
- ],
- [
- 5.84315,
- 51.09372
- ],
- [
- 5.84418,
- 51.1101
- ],
- [
- 5.82599,
- 51.11851
- ],
- [
- 5.86959,
- 51.14953
- ],
- [
- 5.8277,
- 51.17365
- ],
- [
- 5.792,
- 51.16891
- ],
- [
- 5.7738,
- 51.19344
- ],
- [
- 5.666,
- 51.1928
- ],
- [
- 5.64059,
- 51.21065
- ],
- [
- 5.5709,
- 51.22829
- ],
- [
- 5.56231,
- 51.27535
- ],
- [
- 5.49811,
- 51.30605
- ],
- [
- 5.47099,
- 51.30219
- ],
- [
- 5.45794,
- 51.2893
- ],
- [
- 5.43048,
- 51.28823
- ],
- [
- 5.41434,
- 51.27363
- ],
- [
- 5.36593,
- 51.282
- ],
- [
- 5.33641,
- 51.28265
- ],
- [
- 5.32577,
- 51.26718
- ],
- [
- 5.24337,
- 51.27406
- ],
- [
- 5.24989,
- 51.31335
- ],
- [
- 5.20972,
- 51.32794
- ],
- [
- 5.14174,
- 51.31914
- ],
- [
- 5.14209,
- 51.35367
- ],
- [
- 5.08647,
- 51.39482
- ],
- [
- 5.11565,
- 51.43615
- ],
- [
- 5.08853,
- 51.47508
- ],
- [
- 5.05214,
- 51.47636
- ],
- [
- 5.04561,
- 51.4939
- ],
- [
- 5.02364,
- 51.4939
- ],
- [
- 5.01609,
- 51.48663
- ],
- [
- 4.82966,
- 51.48663
- ],
- [
- 4.83001,
- 51.50009
- ],
- [
- 4.76855,
- 51.51099
- ],
- [
- 4.74727,
- 51.50394
- ],
- [
- 4.658,
- 51.4492
- ],
- [
- 4.65663,
- 51.43144
- ],
- [
- 4.53956,
- 51.43379
- ],
- [
- 4.55466,
- 51.48171
- ],
- [
- 4.5296,
- 51.48748
- ],
- [
- 4.46368,
- 51.48235
- ],
- [
- 4.37167,
- 51.45562
- ],
- [
- 4.37751,
- 51.40553
- ],
- [
- 4.4139,
- 51.37511
- ],
- [
- 4.39776,
- 51.36118
- ],
- [
- 4.34798,
- 51.36675
- ],
- [
- 4.34627,
- 51.38497
- ],
- [
- 4.20344,
- 51.38111
- ],
- [
- 4.2213,
- 51.3511
- ],
- [
- 4.15641,
- 51.29832
- ],
- [
- 4.05101,
- 51.25193
- ],
- [
- 4.00638,
- 51.25279
- ],
- [
- 3.95144,
- 51.22205
- ],
- [
- 3.88484,
- 51.22936
- ],
- [
- 3.81926,
- 51.21797
- ],
- [
- 3.80038,
- 51.22872
- ],
- [
- 3.80107,
- 51.26074
- ],
- [
- 3.74442,
- 51.28007
- ],
- [
- 3.63593,
- 51.29746
- ],
- [
- 3.58615,
- 51.31378
- ],
- [
- 3.5065,
- 51.28308
- ],
- [
- 3.51371,
- 51.25021
- ],
- [
- 3.43921,
- 51.25064
- ],
- [
- 3.39766,
- 51.27513
- ],
- [
- 3.37329,
- 51.31678
- ],
- [
- 3.39114,
- 51.34274
- ],
- [
- 3.3623,
- 51.37961
- ],
- [
- 3.24283,
- 51.35474
- ],
- [
- 3.20266,
- 51.37039
- ],
- [
- 3.15631,
- 51.35196
- ],
- [
- 3.14223,
- 51.33051
- ],
- [
- 2.53318,
- 51.09092
- ],
- [
- 2.56476,
- 50.9968
- ],
- [
- 2.61832,
- 50.9527
- ],
- [
- 2.57781,
- 50.91852
- ],
- [
- 2.5936,
- 50.88431
- ],
- [
- 2.58948,
- 50.85051
- ],
- [
- 2.6245,
- 50.80757
- ],
- [
- 2.71033,
- 50.8054
- ],
- [
- 2.78449,
- 50.71853
- ],
- [
- 2.87375,
- 50.69983
- ],
- [
- 2.86483,
- 50.74765
- ],
- [
- 2.92525,
- 50.75156
- ],
- [
- 2.97263,
- 50.77024
- ],
- [
- 2.97332,
- 50.79889
- ],
- [
- 3.00078,
- 50.79759
- ],
- [
- 3.01383,
- 50.76676
- ],
- [
- 3.09863,
- 50.76611
- ],
- [
- 3.13537,
- 50.78196
- ],
- [
- 3.16832,
- 50.75004
- ],
- [
- 3.30428,
- 50.74613
- ],
- [
- 3.31561,
- 50.71484
- ],
- [
- 3.3678,
- 50.70179
- ],
- [
- 3.44848,
- 50.75091
- ],
- [
- 3.53293,
- 50.75156
- ],
- [
- 3.53328,
- 50.72549
- ],
- [
- 3.63902,
- 50.7131
- ],
- [
- 3.69086,
- 50.7672
- ],
- [
- 3.75163,
- 50.76177
- ],
- [
- 3.7712,
- 50.73874
- ],
- [
- 3.87729,
- 50.73983
- ],
- [
- 3.87969,
- 50.70418
- ],
- [
- 3.9202,
- 50.68352
- ],
- [
- 3.99951,
- 50.682
- ],
- [
- 4.06749,
- 50.68961
- ],
- [
- 4.16018,
- 50.72049
- ],
- [
- 4.17632,
- 50.70331
- ],
- [
- 4.24739,
- 50.68222
- ],
- [
- 4.31708,
- 50.69418
- ],
- [
- 4.31846,
- 50.70962
- ],
- [
- 4.38403,
- 50.71027
- ],
- [
- 4.38437,
- 50.72353
- ],
- [
- 4.47226,
- 50.74743
- ],
- [
- 4.52617,
- 50.71853
- ],
- [
- 4.55226,
- 50.73766
- ],
- [
- 4.64908,
- 50.73722
- ],
- [
- 4.6532,
- 50.78717
- ],
- [
- 4.72426,
- 50.78218
- ],
- [
- 4.73731,
- 50.79585
- ],
- [
- 4.7737,
- 50.79368
- ]
- ]
- ],
- "terms_text": "Orthophoto Flanders most recent © AGIV",
- "best": true,
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsSAAALEgHS3X78AAABm0lEQVQ4y6WTPUgCYRjHf5oFJVfRUZKVHYFBoBAUFLZE0FBD0NQHRENESzS019LSFNHWx1DQEhGRg0JFREM11FJuLWem4GB5HULdwdkgHprn5LO97/O8v+fj/7y2bDabpQKzFx5S6ntlgE81xvHtclHAbuSNloNT5q/uywP021cAvO4hAPYu5/hI5e6GWpsBCEfjxNSMNUALPvJ7eA3AQPcML3KIzbNhlvdEWmu+6RCcAISiCWtA3fosPztBfrYvAGgX/QCIggdR8DDe6Qbg5E0uAdjyKhhykq+uBeySi9qVCfSAB61HRBQ8RFJpRs6vALiZHMUnNpYO0Ujn+jPkJJnVfbTBNeqfFQB8YqP56H8VJqBKcuHcWsQuuXIOyUX1sN8MnPJKlnOwWS2SIScx0hkcvV3mXUzN0HcSAuBoNMBYZxsADittVXcT/XcPKE/PltqHowkTYLcMkOMoml52+wr9jnIZAJZ8XjYGe0vaUDSdsBxnulsqrUDRdMLReNHg8tYhOAs2M2HdQiSVBqChprpI7/9q5JPYKv3OfxL1n52ATYYBAAAAAElFTkSuQmCC"
- },
- {
- "id": "AGRI-black_and_white-2.5m",
- "name": "AGRI black-and-white 2.5m",
- "type": "tms",
- "template": "https://{switch:a,b,c}.agri.openstreetmap.org/layer/au_ga_agri/{zoom}/{x}/{y}.png",
- "endDate": "2011-01-01T00:00:00.000Z",
- "startDate": "2006-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 112.28778,
- -28.78459
- ],
- [
- 112.71488,
- -31.13894
- ],
- [
- 114.11263,
- -34.17829
- ],
- [
- 113.60788,
- -37.39012
- ],
- [
- 117.17992,
- -37.45179
- ],
- [
- 119.31538,
- -37.42096
- ],
- [
- 121.72262,
- -36.70839
- ],
- [
- 123.81925,
- -35.76893
- ],
- [
- 125.9547,
- -34.3066
- ],
- [
- 127.97368,
- -33.7274
- ],
- [
- 130.07031,
- -33.24166
- ],
- [
- 130.10913,
- -33.8887
- ],
- [
- 131.00214,
- -34.04971
- ],
- [
- 131.0798,
- -34.72257
- ],
- [
- 132.28342,
- -35.39
- ],
- [
- 134.18591,
- -35.61126
- ],
- [
- 133.8753,
- -37.1119
- ],
- [
- 134.8459,
- -37.6365
- ],
- [
- 139.7769,
- -37.82075
- ],
- [
- 139.93223,
- -39.4283
- ],
- [
- 141.6017,
- -39.8767
- ],
- [
- 142.3783,
- -39.36829
- ],
- [
- 142.3783,
- -40.64702
- ],
- [
- 142.49478,
- -42.07487
- ],
- [
- 144.009,
- -44.06013
- ],
- [
- 147.23161,
- -44.03222
- ],
- [
- 149.05645,
- -42.53431
- ],
- [
- 149.52237,
- -40.99959
- ],
- [
- 149.9494,
- -40.85292
- ],
- [
- 150.8036,
- -38.09627
- ],
- [
- 151.81313,
- -38.12682
- ],
- [
- 156.20052,
- -22.66771
- ],
- [
- 156.20052,
- -20.10109
- ],
- [
- 156.62761,
- -17.41763
- ],
- [
- 155.26869,
- -17.19521
- ],
- [
- 154.14272,
- -19.51662
- ],
- [
- 153.5215,
- -18.34139
- ],
- [
- 153.05558,
- -16.5636
- ],
- [
- 152.78379,
- -15.25677
- ],
- [
- 152.27905,
- -13.4135
- ],
- [
- 151.3472,
- -12.39177
- ],
- [
- 149.48354,
- -12.05024
- ],
- [
- 146.9598,
- -9.99241
- ],
- [
- 135.9719,
- -9.99241
- ],
- [
- 130.3032,
- -10.33636
- ],
- [
- 128.09016,
- -12.16414
- ],
- [
- 125.91588,
- -12.31591
- ],
- [
- 124.3239,
- -11.86033
- ],
- [
- 122.03323,
- -11.97429
- ],
- [
- 118.26706,
- -16.9353
- ],
- [
- 115.93747,
- -19.11357
- ],
- [
- 114.0738,
- -21.11863
- ],
- [
- 113.49141,
- -22.59603
- ],
- [
- 112.28778,
- -28.78459
- ]
- ]
- ],
- "terms_url": "https://data.gov.au/dataset/agri-the-australian-geographic-reference-image",
- "terms_text": "AGRI, Geoscience Australia"
- },
- {
- "id": "alagoas_litoral",
- "name": "Alagoas Litoral 2006",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Ortofotos%202006&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -35.52384,
- -9.48089
- ],
- [
- -35.5236,
- -9.44515
- ],
- [
- -35.51572,
- -9.44518
- ],
- [
- -35.51584,
- -9.44229
- ],
- [
- -35.50542,
- -9.44238
- ],
- [
- -35.50518,
- -9.43064
- ],
- [
- -35.49334,
- -9.43073
- ],
- [
- -35.49304,
- -9.3982
- ],
- [
- -35.4893,
- -9.39817
- ],
- [
- -35.48921,
- -9.38628
- ],
- [
- -35.4854,
- -9.38634
- ],
- [
- -35.48525,
- -9.37809
- ],
- [
- -35.48127,
- -9.37812
- ],
- [
- -35.48114,
- -9.36987
- ],
- [
- -35.47698,
- -9.36996
- ],
- [
- -35.47686,
- -9.36385
- ],
- [
- -35.47459,
- -9.36388
- ],
- [
- -35.47447,
- -9.36153
- ],
- [
- -35.47212,
- -9.36141
- ],
- [
- -35.47206,
- -9.35917
- ],
- [
- -35.46976,
- -9.3592
- ],
- [
- -35.46967,
- -9.35682
- ],
- [
- -35.46653,
- -9.35676
- ],
- [
- -35.46641,
- -9.35289
- ],
- [
- -35.46387,
- -9.35277
- ],
- [
- -35.46387,
- -9.35119
- ],
- [
- -35.44135,
- -9.35131
- ],
- [
- -35.44125,
- -9.34541
- ],
- [
- -35.43177,
- -9.34538
- ],
- [
- -35.43171,
- -9.33602
- ],
- [
- -35.39463,
- -9.33632
- ],
- [
- -35.39442,
- -9.30125
- ],
- [
- -35.38165,
- -9.30143
- ],
- [
- -35.38147,
- -9.28638
- ],
- [
- -35.37799,
- -9.28626
- ],
- [
- -35.37796,
- -9.2811
- ],
- [
- -35.36942,
- -9.28122
- ],
- [
- -35.36921,
- -9.27261
- ],
- [
- -35.35966,
- -9.27276
- ],
- [
- -35.35969,
- -9.26465
- ],
- [
- -35.35051,
- -9.26474
- ],
- [
- -35.35036,
- -9.25562
- ],
- [
- -35.34115,
- -9.25565
- ],
- [
- -35.34118,
- -9.24501
- ],
- [
- -35.31775,
- -9.24519
- ],
- [
- -35.3176,
- -9.22567
- ],
- [
- -35.30292,
- -9.22579
- ],
- [
- -35.30283,
- -9.2113
- ],
- [
- -35.30794,
- -9.21136
- ],
- [
- -35.30785,
- -9.19979
- ],
- [
- -35.29103,
- -9.19988
- ],
- [
- -35.29091,
- -9.1966
- ],
- [
- -35.29018,
- -9.19669
- ],
- [
- -35.28997,
- -9.16516
- ],
- [
- -35.27759,
- -9.16522
- ],
- [
- -35.2775,
- -9.16417
- ],
- [
- -35.27541,
- -9.1642
- ],
- [
- -35.27535,
- -9.16152
- ],
- [
- -35.27375,
- -9.16149
- ],
- [
- -35.27366,
- -9.15839
- ],
- [
- -35.27182,
- -9.15842
- ],
- [
- -35.27185,
- -9.15729
- ],
- [
- -35.27149,
- -9.15729
- ],
- [
- -35.27143,
- -9.15469
- ],
- [
- -35.26965,
- -9.15463
- ],
- [
- -35.26959,
- -9.15362
- ],
- [
- -35.26919,
- -9.15362
- ],
- [
- -35.26907,
- -9.13159
- ],
- [
- -35.26403,
- -9.13165
- ],
- [
- -35.264,
- -9.12318
- ],
- [
- -35.26056,
- -9.12321
- ],
- [
- -35.26053,
- -9.11781
- ],
- [
- -35.256,
- -9.11784
- ],
- [
- -35.25573,
- -9.08946
- ],
- [
- -35.25114,
- -9.08955
- ],
- [
- -35.25108,
- -9.08651
- ],
- [
- -35.25026,
- -9.08648
- ],
- [
- -35.25029,
- -9.08475
- ],
- [
- -35.24449,
- -9.08478
- ],
- [
- -35.24449,
- -9.07989
- ],
- [
- -35.24093,
- -9.07997
- ],
- [
- -35.24081,
- -9.07312
- ],
- [
- -35.23734,
- -9.07312
- ],
- [
- -35.23719,
- -9.06322
- ],
- [
- -35.23655,
- -9.06322
- ],
- [
- -35.23652,
- -9.04655
- ],
- [
- -35.23323,
- -9.04652
- ],
- [
- -35.23332,
- -9.04345
- ],
- [
- -35.2306,
- -9.04348
- ],
- [
- -35.2306,
- -9.04014
- ],
- [
- -35.22897,
- -9.04008
- ],
- [
- -35.229,
- -9.03835
- ],
- [
- -35.22505,
- -9.03826
- ],
- [
- -35.22502,
- -9.03167
- ],
- [
- -35.2223,
- -9.03161
- ],
- [
- -35.22233,
- -9.02012
- ],
- [
- -35.21834,
- -9.02009
- ],
- [
- -35.21831,
- -9.01341
- ],
- [
- -35.21671,
- -9.01341
- ],
- [
- -35.21668,
- -9.00998
- ],
- [
- -35.21176,
- -9.00998
- ],
- [
- -35.21173,
- -9.00647
- ],
- [
- -35.20971,
- -9.00653
- ],
- [
- -35.20974,
- -9.00438
- ],
- [
- -35.20765,
- -9.00432
- ],
- [
- -35.20768,
- -9.00226
- ],
- [
- -35.20566,
- -9.00226
- ],
- [
- -35.20563,
- -8.99987
- ],
- [
- -35.20391,
- -8.99987
- ],
- [
- -35.20394,
- -8.99785
- ],
- [
- -35.20213,
- -8.99791
- ],
- [
- -35.20213,
- -8.99579
- ],
- [
- -35.19844,
- -8.99582
- ],
- [
- -35.19844,
- -8.99361
- ],
- [
- -35.19434,
- -8.99361
- ],
- [
- -35.19428,
- -8.99122
- ],
- [
- -35.19065,
- -8.99131
- ],
- [
- -35.19062,
- -8.98833
- ],
- [
- -35.18766,
- -8.98842
- ],
- [
- -35.18763,
- -8.98544
- ],
- [
- -35.18473,
- -8.98541
- ],
- [
- -35.18467,
- -8.98255
- ],
- [
- -35.18238,
- -8.98252
- ],
- [
- -35.18235,
- -8.98052
- ],
- [
- -35.17951,
- -8.98061
- ],
- [
- -35.17948,
- -8.97742
- ],
- [
- -35.17809,
- -8.97745
- ],
- [
- -35.17803,
- -8.97306
- ],
- [
- -35.17558,
- -8.97303
- ],
- [
- -35.17549,
- -8.96912
- ],
- [
- -35.17293,
- -8.96909
- ],
- [
- -35.17284,
- -8.96292
- ],
- [
- -35.17063,
- -8.96289
- ],
- [
- -35.17048,
- -8.95579
- ],
- [
- -35.16852,
- -8.95564
- ],
- [
- -35.16852,
- -8.94806
- ],
- [
- -35.16794,
- -8.948
- ],
- [
- -35.16791,
- -8.93995
- ],
- [
- -35.16245,
- -8.93995
- ],
- [
- -35.16242,
- -8.92978
- ],
- [
- -35.1587,
- -8.92981
- ],
- [
- -35.15873,
- -8.92662
- ],
- [
- -35.15547,
- -8.92668
- ],
- [
- -35.1555,
- -8.92378
- ],
- [
- -35.15348,
- -8.92381
- ],
- [
- -35.15339,
- -8.92065
- ],
- [
- -35.15131,
- -8.92062
- ],
- [
- -35.15122,
- -8.91194
- ],
- [
- -35.15263,
- -8.91194
- ],
- [
- -35.15263,
- -8.90821
- ],
- [
- -35.15439,
- -8.90824
- ],
- [
- -35.1543,
- -8.90215
- ],
- [
- -35.15593,
- -8.90212
- ],
- [
- -35.15593,
- -8.90051
- ],
- [
- -35.15768,
- -8.90048
- ],
- [
- -35.15774,
- -8.89905
- ],
- [
- -35.15958,
- -8.89908
- ],
- [
- -35.15955,
- -8.89747
- ],
- [
- -35.16139,
- -8.8975
- ],
- [
- -35.16133,
- -8.89625
- ],
- [
- -35.16363,
- -8.89625
- ],
- [
- -35.1636,
- -8.89526
- ],
- [
- -35.16553,
- -8.89526
- ],
- [
- -35.1655,
- -8.89315
- ],
- [
- -35.16794,
- -8.89315
- ],
- [
- -35.16791,
- -8.89147
- ],
- [
- -35.17024,
- -8.89153
- ],
- [
- -35.17027,
- -8.8904
- ],
- [
- -35.17302,
- -8.89043
- ],
- [
- -35.17302,
- -8.88876
- ],
- [
- -35.17791,
- -8.88876
- ],
- [
- -35.17794,
- -8.88795
- ],
- [
- -35.17894,
- -8.88792
- ],
- [
- -35.17894,
- -8.88891
- ],
- [
- -35.17966,
- -8.88894
- ],
- [
- -35.17978,
- -8.88858
- ],
- [
- -35.18099,
- -8.88861
- ],
- [
- -35.18099,
- -8.88816
- ],
- [
- -35.18519,
- -8.88816
- ],
- [
- -35.18519,
- -8.88897
- ],
- [
- -35.18591,
- -8.889
- ],
- [
- -35.18591,
- -8.88971
- ],
- [
- -35.18932,
- -8.88971
- ],
- [
- -35.18947,
- -8.8893
- ],
- [
- -35.19014,
- -8.88927
- ],
- [
- -35.19017,
- -8.88831
- ],
- [
- -35.19071,
- -8.88831
- ],
- [
- -35.19077,
- -8.88789
- ],
- [
- -35.19153,
- -8.88792
- ],
- [
- -35.19156,
- -8.88619
- ],
- [
- -35.19754,
- -8.88607
- ],
- [
- -35.19757,
- -8.8873
- ],
- [
- -35.19968,
- -8.8873
- ],
- [
- -35.19974,
- -8.88777
- ],
- [
- -35.2008,
- -8.88777
- ],
- [
- -35.2008,
- -8.88822
- ],
- [
- -35.2033,
- -8.88822
- ],
- [
- -35.20337,
- -8.8887
- ],
- [
- -35.20563,
- -8.88861
- ],
- [
- -35.20557,
- -8.88983
- ],
- [
- -35.20741,
- -8.8898
- ],
- [
- -35.20744,
- -8.89022
- ],
- [
- -35.21125,
- -8.89025
- ],
- [
- -35.21128,
- -8.88769
- ],
- [
- -35.21245,
- -8.88777
- ],
- [
- -35.21248,
- -8.88861
- ],
- [
- -35.21623,
- -8.88858
- ],
- [
- -35.21623,
- -8.88748
- ],
- [
- -35.21871,
- -8.88745
- ],
- [
- -35.21871,
- -8.88897
- ],
- [
- -35.22136,
- -8.88897
- ],
- [
- -35.22263,
- -8.88792
- ],
- [
- -35.22402,
- -8.88748
- ],
- [
- -35.22453,
- -8.88763
- ],
- [
- -35.22644,
- -8.88718
- ],
- [
- -35.22707,
- -8.88598
- ],
- [
- -35.23311,
- -8.88446
- ],
- [
- -35.23933,
- -8.88339
- ],
- [
- -35.24129,
- -8.88416
- ],
- [
- -35.25011,
- -8.88515
- ],
- [
- -35.25624,
- -8.88506
- ],
- [
- -35.26168,
- -8.88294
- ],
- [
- -35.26161,
- -8.88094
- ],
- [
- -35.26406,
- -8.88109
- ],
- [
- -35.26877,
- -8.8793
- ],
- [
- -35.27421,
- -8.87748
- ],
- [
- -35.2781,
- -8.87518
- ],
- [
- -35.28499,
- -8.87507
- ],
- [
- -35.28502,
- -8.87581
- ],
- [
- -35.2881,
- -8.87578
- ],
- [
- -35.29405,
- -8.87545
- ],
- [
- -35.30782,
- -8.87208
- ],
- [
- -35.31757,
- -8.86961
- ],
- [
- -35.32784,
- -8.86716
- ],
- [
- -35.33206,
- -8.86614
- ],
- [
- -35.34103,
- -8.86376
- ],
- [
- -35.3471,
- -8.86244
- ],
- [
- -35.3522,
- -8.86113
- ],
- [
- -35.35257,
- -8.86391
- ],
- [
- -35.34903,
- -8.86611
- ],
- [
- -35.34496,
- -8.87205
- ],
- [
- -35.34327,
- -8.87489
- ],
- [
- -35.34318,
- -8.87569
- ],
- [
- -35.34381,
- -8.87668
- ],
- [
- -35.34481,
- -8.8768
- ],
- [
- -35.34888,
- -8.87721
- ],
- [
- -35.35042,
- -8.87781
- ],
- [
- -35.35254,
- -8.87891
- ],
- [
- -35.35399,
- -8.88011
- ],
- [
- -35.35577,
- -8.88252
- ],
- [
- -35.35755,
- -8.88396
- ],
- [
- -35.36036,
- -8.88512
- ],
- [
- -35.36114,
- -8.88509
- ],
- [
- -35.3612,
- -8.88587
- ],
- [
- -35.36175,
- -8.8859
- ],
- [
- -35.36178,
- -8.88777
- ],
- [
- -35.36253,
- -8.88783
- ],
- [
- -35.36247,
- -8.891
- ],
- [
- -35.36311,
- -8.89112
- ],
- [
- -35.36311,
- -8.89482
- ],
- [
- -35.3644,
- -8.89488
- ],
- [
- -35.36507,
- -8.8967
- ],
- [
- -35.36637,
- -8.90022
- ],
- [
- -35.36754,
- -8.90427
- ],
- [
- -35.36794,
- -8.90782
- ],
- [
- -35.36863,
- -8.90917
- ],
- [
- -35.37207,
- -8.91155
- ],
- [
- -35.3741,
- -8.91349
- ],
- [
- -35.37277,
- -8.916
- ],
- [
- -35.37262,
- -8.91817
- ],
- [
- -35.37084,
- -8.92229
- ],
- [
- -35.37062,
- -8.92486
- ],
- [
- -35.37235,
- -8.93038
- ],
- [
- -35.37153,
- -8.93193
- ],
- [
- -35.37153,
- -8.93363
- ],
- [
- -35.37171,
- -8.93387
- ],
- [
- -35.37171,
- -8.94362
- ],
- [
- -35.36818,
- -8.94377
- ],
- [
- -35.36815,
- -8.94505
- ],
- [
- -35.36927,
- -8.94511
- ],
- [
- -35.36921,
- -8.94863
- ],
- [
- -35.37078,
- -8.94872
- ],
- [
- -35.37081,
- -8.95182
- ],
- [
- -35.37219,
- -8.95176
- ],
- [
- -35.37222,
- -8.95528
- ],
- [
- -35.37319,
- -8.95531
- ],
- [
- -35.37313,
- -8.95737
- ],
- [
- -35.3744,
- -8.95737
- ],
- [
- -35.37446,
- -8.96012
- ],
- [
- -35.37567,
- -8.96018
- ],
- [
- -35.3757,
- -8.96205
- ],
- [
- -35.37688,
- -8.96208
- ],
- [
- -35.37694,
- -8.96444
- ],
- [
- -35.37781,
- -8.96444
- ],
- [
- -35.37775,
- -8.96617
- ],
- [
- -35.38074,
- -8.96617
- ],
- [
- -35.38074,
- -8.96331
- ],
- [
- -35.38288,
- -8.96328
- ],
- [
- -35.38291,
- -8.95982
- ],
- [
- -35.38542,
- -8.95985
- ],
- [
- -35.38542,
- -8.95722
- ],
- [
- -35.38723,
- -8.95722
- ],
- [
- -35.3872,
- -8.95406
- ],
- [
- -35.38947,
- -8.95409
- ],
- [
- -35.38947,
- -8.95084
- ],
- [
- -35.39158,
- -8.95087
- ],
- [
- -35.39158,
- -8.94792
- ],
- [
- -35.39587,
- -8.94792
- ],
- [
- -35.39581,
- -8.94651
- ],
- [
- -35.3972,
- -8.94654
- ],
- [
- -35.39711,
- -8.94472
- ],
- [
- -35.39838,
- -8.94469
- ],
- [
- -35.39838,
- -8.93915
- ],
- [
- -35.40107,
- -8.93915
- ],
- [
- -35.40106,
- -8.93895
- ],
- [
- -35.40167,
- -8.93894
- ],
- [
- -35.40173,
- -8.93688
- ],
- [
- -35.40236,
- -8.93688
- ],
- [
- -35.40236,
- -8.93628
- ],
- [
- -35.40324,
- -8.9364
- ],
- [
- -35.4033,
- -8.93583
- ],
- [
- -35.40426,
- -8.9358
- ],
- [
- -35.4042,
- -8.93363
- ],
- [
- -35.40574,
- -8.9336
- ],
- [
- -35.40577,
- -8.93124
- ],
- [
- -35.4081,
- -8.93133
- ],
- [
- -35.40804,
- -8.92927
- ],
- [
- -35.40937,
- -8.9293
- ],
- [
- -35.40928,
- -8.92739
- ],
- [
- -35.41085,
- -8.92742
- ],
- [
- -35.41085,
- -8.92542
- ],
- [
- -35.41239,
- -8.92545
- ],
- [
- -35.41236,
- -8.9239
- ],
- [
- -35.41335,
- -8.92387
- ],
- [
- -35.41329,
- -8.92193
- ],
- [
- -35.41523,
- -8.92196
- ],
- [
- -35.41523,
- -8.91999
- ],
- [
- -35.41655,
- -8.92002
- ],
- [
- -35.41655,
- -8.91755
- ],
- [
- -35.4196,
- -8.91755
- ],
- [
- -35.41966,
- -8.91964
- ],
- [
- -35.42184,
- -8.91964
- ],
- [
- -35.42187,
- -8.92265
- ],
- [
- -35.42389,
- -8.92268
- ],
- [
- -35.42392,
- -8.92513
- ],
- [
- -35.42537,
- -8.92513
- ],
- [
- -35.42537,
- -8.92766
- ],
- [
- -35.42724,
- -8.92766
- ],
- [
- -35.42727,
- -8.92987
- ],
- [
- -35.42815,
- -8.92984
- ],
- [
- -35.42818,
- -8.9316
- ],
- [
- -35.42987,
- -8.93154
- ],
- [
- -35.4299,
- -8.93407
- ],
- [
- -35.43141,
- -8.93407
- ],
- [
- -35.43141,
- -8.9356
- ],
- [
- -35.43226,
- -8.93557
- ],
- [
- -35.43229,
- -8.93586
- ],
- [
- -35.4334,
- -8.93583
- ],
- [
- -35.4334,
- -8.94001
- ],
- [
- -35.43434,
- -8.94004
- ],
- [
- -35.43434,
- -8.94097
- ],
- [
- -35.43531,
- -8.94097
- ],
- [
- -35.43534,
- -8.94261
- ],
- [
- -35.43567,
- -8.94264
- ],
- [
- -35.4357,
- -8.94329
- ],
- [
- -35.43627,
- -8.94332
- ],
- [
- -35.43624,
- -8.94422
- ],
- [
- -35.4373,
- -8.94422
- ],
- [
- -35.43727,
- -8.9452
- ],
- [
- -35.43823,
- -8.9452
- ],
- [
- -35.43827,
- -8.94684
- ],
- [
- -35.43902,
- -8.94687
- ],
- [
- -35.43902,
- -8.94798
- ],
- [
- -35.44026,
- -8.94798
- ],
- [
- -35.44032,
- -8.94953
- ],
- [
- -35.44159,
- -8.94956
- ],
- [
- -35.44165,
- -8.95152
- ],
- [
- -35.44273,
- -8.95152
- ],
- [
- -35.44273,
- -8.95334
- ],
- [
- -35.44436,
- -8.95334
- ],
- [
- -35.44436,
- -8.95498
- ],
- [
- -35.44569,
- -8.95501
- ],
- [
- -35.44563,
- -8.95674
- ],
- [
- -35.4472,
- -8.9568
- ],
- [
- -35.44717,
- -8.95865
- ],
- [
- -35.44895,
- -8.95871
- ],
- [
- -35.44892,
- -8.96
- ],
- [
- -35.45101,
- -8.95994
- ],
- [
- -35.45098,
- -8.96101
- ],
- [
- -35.45469,
- -8.96095
- ],
- [
- -35.45466,
- -8.96235
- ],
- [
- -35.46049,
- -8.96235
- ],
- [
- -35.46055,
- -8.96557
- ],
- [
- -35.46653,
- -8.96548
- ],
- [
- -35.46659,
- -8.96885
- ],
- [
- -35.46771,
- -8.96883
- ],
- [
- -35.46774,
- -8.97053
- ],
- [
- -35.4739,
- -8.97053
- ],
- [
- -35.47399,
- -8.9753
- ],
- [
- -35.47791,
- -8.97521
- ],
- [
- -35.47797,
- -8.97816
- ],
- [
- -35.4841,
- -8.97813
- ],
- [
- -35.48416,
- -8.98201
- ],
- [
- -35.49084,
- -8.98195
- ],
- [
- -35.49084,
- -8.98562
- ],
- [
- -35.49721,
- -8.98562
- ],
- [
- -35.49721,
- -8.99069
- ],
- [
- -35.50225,
- -8.99057
- ],
- [
- -35.50234,
- -8.99567
- ],
- [
- -35.50648,
- -8.99567
- ],
- [
- -35.50651,
- -8.99856
- ],
- [
- -35.51204,
- -8.9985
- ],
- [
- -35.51207,
- -9.00163
- ],
- [
- -35.51663,
- -9.00166
- ],
- [
- -35.51666,
- -9.00617
- ],
- [
- -35.52119,
- -9.00614
- ],
- [
- -35.52122,
- -9.00739
- ],
- [
- -35.53127,
- -9.00733
- ],
- [
- -35.53127,
- -9.01064
- ],
- [
- -35.54818,
- -9.01049
- ],
- [
- -35.54818,
- -9.01359
- ],
- [
- -35.56968,
- -9.01344
- ],
- [
- -35.56974,
- -9.01738
- ],
- [
- -35.58575,
- -9.01732
- ],
- [
- -35.58578,
- -9.01995
- ],
- [
- -35.60957,
- -9.01983
- ],
- [
- -35.60954,
- -9.02302
- ],
- [
- -35.62911,
- -9.02287
- ],
- [
- -35.62905,
- -9.02508
- ],
- [
- -35.65221,
- -9.0249
- ],
- [
- -35.65224,
- -9.02758
- ],
- [
- -35.67552,
- -9.0274
- ],
- [
- -35.67555,
- -9.03056
- ],
- [
- -35.68295,
- -9.03056
- ],
- [
- -35.68298,
- -9.03435
- ],
- [
- -35.69128,
- -9.03432
- ],
- [
- -35.69128,
- -9.03766
- ],
- [
- -35.6995,
- -9.0376
- ],
- [
- -35.6995,
- -9.04034
- ],
- [
- -35.70668,
- -9.04031
- ],
- [
- -35.70671,
- -9.04518
- ],
- [
- -35.71115,
- -9.04518
- ],
- [
- -35.71133,
- -9.06691
- ],
- [
- -35.70871,
- -9.06691
- ],
- [
- -35.70877,
- -9.07869
- ],
- [
- -35.70656,
- -9.07872
- ],
- [
- -35.70656,
- -9.08653
- ],
- [
- -35.7043,
- -9.08653
- ],
- [
- -35.70433,
- -9.09104
- ],
- [
- -35.69992,
- -9.09107
- ],
- [
- -35.69989,
- -9.0956
- ],
- [
- -35.69536,
- -9.09557
- ],
- [
- -35.69542,
- -9.10001
- ],
- [
- -35.69092,
- -9.10013
- ],
- [
- -35.69101,
- -9.10207
- ],
- [
- -35.63367,
- -9.10246
- ],
- [
- -35.6337,
- -9.10541
- ],
- [
- -35.62585,
- -9.10553
- ],
- [
- -35.62591,
- -9.10964
- ],
- [
- -35.62231,
- -9.10964
- ],
- [
- -35.62234,
- -9.11203
- ],
- [
- -35.6199,
- -9.112
- ],
- [
- -35.6199,
- -9.11501
- ],
- [
- -35.61473,
- -9.11507
- ],
- [
- -35.61473,
- -9.11707
- ],
- [
- -35.61177,
- -9.11701
- ],
- [
- -35.61181,
- -9.1182
- ],
- [
- -35.6096,
- -9.11826
- ],
- [
- -35.60963,
- -9.12571
- ],
- [
- -35.59976,
- -9.12583
- ],
- [
- -35.59979,
- -9.12923
- ],
- [
- -35.59634,
- -9.12926
- ],
- [
- -35.5964,
- -9.13502
- ],
- [
- -35.59197,
- -9.13507
- ],
- [
- -35.59209,
- -9.149
- ],
- [
- -35.59018,
- -9.14897
- ],
- [
- -35.59015,
- -9.15108
- ],
- [
- -35.6016,
- -9.15105
- ],
- [
- -35.60154,
- -9.14912
- ],
- [
- -35.60552,
- -9.14912
- ],
- [
- -35.60549,
- -9.14557
- ],
- [
- -35.61184,
- -9.14554
- ],
- [
- -35.61184,
- -9.14235
- ],
- [
- -35.6176,
- -9.14238
- ],
- [
- -35.61757,
- -9.13853
- ],
- [
- -35.624,
- -9.13853
- ],
- [
- -35.62397,
- -9.13466
- ],
- [
- -35.63177,
- -9.13466
- ],
- [
- -35.63164,
- -9.13063
- ],
- [
- -35.63922,
- -9.1306
- ],
- [
- -35.63919,
- -9.12878
- ],
- [
- -35.66386,
- -9.12869
- ],
- [
- -35.6638,
- -9.1261
- ],
- [
- -35.71278,
- -9.12577
- ],
- [
- -35.71275,
- -9.12407
- ],
- [
- -35.72426,
- -9.12401
- ],
- [
- -35.71964,
- -9.15323
- ],
- [
- -35.72112,
- -9.1532
- ],
- [
- -35.72124,
- -9.17258
- ],
- [
- -35.72066,
- -9.17255
- ],
- [
- -35.72082,
- -9.18558
- ],
- [
- -35.71212,
- -9.18566
- ],
- [
- -35.7133,
- -9.34416
- ],
- [
- -35.69041,
- -9.34433
- ],
- [
- -35.69065,
- -9.37189
- ],
- [
- -35.68899,
- -9.37189
- ],
- [
- -35.68902,
- -9.37598
- ],
- [
- -35.68757,
- -9.37598
- ],
- [
- -35.68766,
- -9.38232
- ],
- [
- -35.68497,
- -9.38235
- ],
- [
- -35.68503,
- -9.39093
- ],
- [
- -35.68168,
- -9.39099
- ],
- [
- -35.68177,
- -9.39936
- ],
- [
- -35.67715,
- -9.39933
- ],
- [
- -35.67724,
- -9.4089
- ],
- [
- -35.67292,
- -9.40893
- ],
- [
- -35.67301,
- -9.41754
- ],
- [
- -35.66972,
- -9.4176
- ],
- [
- -35.66978,
- -9.42498
- ],
- [
- -35.66722,
- -9.42498
- ],
- [
- -35.66728,
- -9.4327
- ],
- [
- -35.66075,
- -9.43288
- ],
- [
- -35.66075,
- -9.43705
- ],
- [
- -35.6513,
- -9.43708
- ],
- [
- -35.65142,
- -9.44211
- ],
- [
- -35.64514,
- -9.44217
- ],
- [
- -35.64523,
- -9.44652
- ],
- [
- -35.63645,
- -9.44661
- ],
- [
- -35.63645,
- -9.44992
- ],
- [
- -35.62711,
- -9.45
- ],
- [
- -35.62727,
- -9.46505
- ],
- [
- -35.62086,
- -9.46511
- ],
- [
- -35.62092,
- -9.4722
- ],
- [
- -35.60939,
- -9.47222
- ],
- [
- -35.60939,
- -9.47529
- ],
- [
- -35.59674,
- -9.47535
- ],
- [
- -35.59674,
- -9.47351
- ],
- [
- -35.57844,
- -9.47371
- ],
- [
- -35.57847,
- -9.47595
- ],
- [
- -35.57267,
- -9.47604
- ],
- [
- -35.5727,
- -9.48042
- ],
- [
- -35.56823,
- -9.48048
- ],
- [
- -35.56826,
- -9.48881
- ],
- [
- -35.54169,
- -9.48893
- ],
- [
- -35.54163,
- -9.48071
- ],
- [
- -35.52384,
- -9.48089
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "arapiraca_al",
- "name": "Arapiraca AL",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Arapiraca&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -36.60875,
- -9.83072
- ],
- [
- -36.60784,
- -9.74047
- ],
- [
- -36.61718,
- -9.74051
- ],
- [
- -36.61631,
- -9.65075
- ],
- [
- -36.70737,
- -9.64977
- ],
- [
- -36.70832,
- -9.74043
- ],
- [
- -36.69898,
- -9.74047
- ],
- [
- -36.69997,
- -9.82968
- ],
- [
- -36.60875,
- -9.83072
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "CRAIG-Auvergne-2013",
- "name": "Auvergne 2013 25cm CRAIG",
- "type": "tms",
- "template": "https://tiles.craig.fr/osm/wmts/1.0.0/ortho_2013/webmercator/{zoom}/{x}/{y}.jpeg",
- "endDate": "2013-01-01T00:00:00.000Z",
- "startDate": "2013-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 2.94012,
- 44.63388
- ],
- [
- 2.99719,
- 44.63393
- ],
- [
- 2.99717,
- 44.64734
- ],
- [
- 3.01597,
- 44.64735
- ],
- [
- 3.01593,
- 44.67412
- ],
- [
- 3.03495,
- 44.67413
- ],
- [
- 3.0349,
- 44.70152
- ],
- [
- 3.05363,
- 44.70154
- ],
- [
- 3.05357,
- 44.7419
- ],
- [
- 3.07233,
- 44.74191
- ],
- [
- 3.07222,
- 44.80917
- ],
- [
- 3.09216,
- 44.80919
- ],
- [
- 3.09214,
- 44.82213
- ],
- [
- 3.13014,
- 44.82216
- ],
- [
- 3.13005,
- 44.87707
- ],
- [
- 3.14856,
- 44.87709
- ],
- [
- 3.14858,
- 44.8637
- ],
- [
- 3.16823,
- 44.86371
- ],
- [
- 3.16825,
- 44.85003
- ],
- [
- 3.2064,
- 44.85006
- ],
- [
- 3.20638,
- 44.86284
- ],
- [
- 3.24395,
- 44.86287
- ],
- [
- 3.24393,
- 44.87679
- ],
- [
- 3.26315,
- 44.87681
- ],
- [
- 3.26308,
- 44.91752
- ],
- [
- 3.32004,
- 44.91757
- ],
- [
- 3.32002,
- 44.93033
- ],
- [
- 3.33908,
- 44.93035
- ],
- [
- 3.33906,
- 44.9442
- ],
- [
- 3.377,
- 44.94423
- ],
- [
- 3.37702,
- 44.93029
- ],
- [
- 3.39603,
- 44.9303
- ],
- [
- 3.39612,
- 44.87627
- ],
- [
- 3.41483,
- 44.87629
- ],
- [
- 3.41489,
- 44.83553
- ],
- [
- 3.43334,
- 44.83554
- ],
- [
- 3.43338,
- 44.80828
- ],
- [
- 3.45255,
- 44.80829
- ],
- [
- 3.45258,
- 44.79463
- ],
- [
- 3.50893,
- 44.79468
- ],
- [
- 3.5089,
- 44.80815
- ],
- [
- 3.60426,
- 44.80823
- ],
- [
- 3.60422,
- 44.83482
- ],
- [
- 3.62361,
- 44.83484
- ],
- [
- 3.62357,
- 44.86166
- ],
- [
- 3.64248,
- 44.86167
- ],
- [
- 3.64255,
- 44.8211
- ],
- [
- 3.66101,
- 44.82112
- ],
- [
- 3.66103,
- 44.80777
- ],
- [
- 3.6993,
- 44.8078
- ],
- [
- 3.69928,
- 44.82099
- ],
- [
- 3.73611,
- 44.82102
- ],
- [
- 3.73618,
- 44.77971
- ],
- [
- 3.77511,
- 44.77974
- ],
- [
- 3.77515,
- 44.75223
- ],
- [
- 3.81184,
- 44.75226
- ],
- [
- 3.81186,
- 44.7392
- ],
- [
- 3.83118,
- 44.73922
- ],
- [
- 3.83121,
- 44.72468
- ],
- [
- 3.88782,
- 44.72472
- ],
- [
- 3.8878,
- 44.73818
- ],
- [
- 3.92563,
- 44.73821
- ],
- [
- 3.9256,
- 44.75167
- ],
- [
- 3.94541,
- 44.75168
- ],
- [
- 3.94537,
- 44.77847
- ],
- [
- 3.96437,
- 44.77848
- ],
- [
- 3.96435,
- 44.79193
- ],
- [
- 4.00332,
- 44.79196
- ],
- [
- 4.0033,
- 44.80526
- ],
- [
- 4.02169,
- 44.80527
- ],
- [
- 4.02167,
- 44.81857
- ],
- [
- 4.05965,
- 44.8186
- ],
- [
- 4.05961,
- 44.84492
- ],
- [
- 4.07981,
- 44.84494
- ],
- [
- 4.07979,
- 44.85735
- ],
- [
- 4.17388,
- 44.85743
- ],
- [
- 4.17386,
- 44.87055
- ],
- [
- 4.19326,
- 44.87056
- ],
- [
- 4.19323,
- 44.88427
- ],
- [
- 4.21404,
- 44.88429
- ],
- [
- 4.214,
- 44.91002
- ],
- [
- 4.23241,
- 44.91004
- ],
- [
- 4.23237,
- 44.93731
- ],
- [
- 4.27155,
- 44.93734
- ],
- [
- 4.27153,
- 44.9503
- ],
- [
- 4.32887,
- 44.95034
- ],
- [
- 4.32878,
- 45.00367
- ],
- [
- 4.34893,
- 45.00368
- ],
- [
- 4.3489,
- 45.01707
- ],
- [
- 4.40608,
- 45.01711
- ],
- [
- 4.40599,
- 45.071
- ],
- [
- 4.38847,
- 45.07099
- ],
- [
- 4.38845,
- 45.0846
- ],
- [
- 4.40794,
- 45.08461
- ],
- [
- 4.40792,
- 45.09663
- ],
- [
- 4.48436,
- 45.09669
- ],
- [
- 4.48429,
- 45.13705
- ],
- [
- 4.46636,
- 45.13703
- ],
- [
- 4.46634,
- 45.1502
- ],
- [
- 4.48645,
- 45.15022
- ],
- [
- 4.4864,
- 45.17724
- ],
- [
- 4.50655,
- 45.17726
- ],
- [
- 4.50644,
- 45.24501
- ],
- [
- 4.48813,
- 45.24499
- ],
- [
- 4.48811,
- 45.25921
- ],
- [
- 4.46986,
- 45.25919
- ],
- [
- 4.46984,
- 45.27298
- ],
- [
- 4.45088,
- 45.27297
- ],
- [
- 4.45086,
- 45.28642
- ],
- [
- 4.39368,
- 45.28637
- ],
- [
- 4.39363,
- 45.31352
- ],
- [
- 4.37509,
- 45.3135
- ],
- [
- 4.37507,
- 45.32741
- ],
- [
- 4.39507,
- 45.32742
- ],
- [
- 4.39503,
- 45.35458
- ],
- [
- 4.37679,
- 45.35457
- ],
- [
- 4.37676,
- 45.36855
- ],
- [
- 4.35766,
- 45.36853
- ],
- [
- 4.35763,
- 45.38234
- ],
- [
- 4.28146,
- 45.38227
- ],
- [
- 4.28143,
- 45.39688
- ],
- [
- 4.24446,
- 45.39685
- ],
- [
- 4.24443,
- 45.41079
- ],
- [
- 4.14812,
- 45.41071
- ],
- [
- 4.14814,
- 45.39807
- ],
- [
- 4.12919,
- 45.39805
- ],
- [
- 4.12921,
- 45.38409
- ],
- [
- 4.09021,
- 45.38406
- ],
- [
- 4.09024,
- 45.37121
- ],
- [
- 4.01355,
- 45.37115
- ],
- [
- 4.01353,
- 45.3861
- ],
- [
- 3.91709,
- 45.38602
- ],
- [
- 3.91707,
- 45.39974
- ],
- [
- 3.93757,
- 45.39975
- ],
- [
- 3.93755,
- 45.41311
- ],
- [
- 3.97528,
- 45.41315
- ],
- [
- 3.97526,
- 45.42621
- ],
- [
- 3.99537,
- 45.42622
- ],
- [
- 3.9957,
- 45.52096
- ],
- [
- 3.97778,
- 45.52094
- ],
- [
- 3.97769,
- 45.57439
- ],
- [
- 3.95818,
- 45.57437
- ],
- [
- 3.95815,
- 45.58837
- ],
- [
- 3.9396,
- 45.58835
- ],
- [
- 3.93958,
- 45.60262
- ],
- [
- 3.92023,
- 45.60261
- ],
- [
- 3.9202,
- 45.61646
- ],
- [
- 3.88189,
- 45.61643
- ],
- [
- 3.88185,
- 45.64328
- ],
- [
- 3.84413,
- 45.64325
- ],
- [
- 3.84411,
- 45.65709
- ],
- [
- 3.82617,
- 45.65707
- ],
- [
- 3.82612,
- 45.68389
- ],
- [
- 3.80722,
- 45.68387
- ],
- [
- 3.80713,
- 45.73758
- ],
- [
- 3.78821,
- 45.73756
- ],
- [
- 3.78819,
- 45.7518
- ],
- [
- 3.76885,
- 45.75178
- ],
- [
- 3.7688,
- 45.77897
- ],
- [
- 3.75072,
- 45.77895
- ],
- [
- 3.75058,
- 45.86066
- ],
- [
- 3.76967,
- 45.86067
- ],
- [
- 3.76958,
- 45.91433
- ],
- [
- 3.75166,
- 45.91432
- ],
- [
- 3.75164,
- 45.92809
- ],
- [
- 3.7329,
- 45.92807
- ],
- [
- 3.73285,
- 45.95472
- ],
- [
- 3.81018,
- 45.95478
- ],
- [
- 3.81016,
- 45.96823
- ],
- [
- 3.8496,
- 45.96826
- ],
- [
- 3.84951,
- 46.02162
- ],
- [
- 3.83188,
- 46.0216
- ],
- [
- 3.83179,
- 46.07591
- ],
- [
- 3.8505,
- 46.07592
- ],
- [
- 3.85046,
- 46.10295
- ],
- [
- 3.83247,
- 46.10294
- ],
- [
- 3.83234,
- 46.18456
- ],
- [
- 3.81422,
- 46.18455
- ],
- [
- 3.81415,
- 46.22442
- ],
- [
- 3.83369,
- 46.22444
- ],
- [
- 3.83366,
- 46.2381
- ],
- [
- 3.85289,
- 46.23812
- ],
- [
- 3.85287,
- 46.25147
- ],
- [
- 3.89314,
- 46.25151
- ],
- [
- 3.89312,
- 46.26447
- ],
- [
- 3.91306,
- 46.26448
- ],
- [
- 3.91303,
- 46.27793
- ],
- [
- 3.95189,
- 46.27796
- ],
- [
- 3.95187,
- 46.29082
- ],
- [
- 3.97152,
- 46.29084
- ],
- [
- 3.9715,
- 46.30369
- ],
- [
- 4.0105,
- 46.30373
- ],
- [
- 4.01048,
- 46.31776
- ],
- [
- 4.02983,
- 46.31778
- ],
- [
- 4.02978,
- 46.34428
- ],
- [
- 4.0116,
- 46.34427
- ],
- [
- 4.01146,
- 46.42534
- ],
- [
- 4.03153,
- 46.42536
- ],
- [
- 4.03146,
- 46.4658
- ],
- [
- 4.01324,
- 46.46578
- ],
- [
- 4.01322,
- 46.47938
- ],
- [
- 3.99437,
- 46.47936
- ],
- [
- 3.99435,
- 46.49361
- ],
- [
- 3.9746,
- 46.4936
- ],
- [
- 3.97457,
- 46.50753
- ],
- [
- 3.87754,
- 46.50745
- ],
- [
- 3.8775,
- 46.53478
- ],
- [
- 3.85836,
- 46.53476
- ],
- [
- 3.85833,
- 46.54832
- ],
- [
- 3.81869,
- 46.54828
- ],
- [
- 3.81871,
- 46.53553
- ],
- [
- 3.79924,
- 46.53552
- ],
- [
- 3.79922,
- 46.54907
- ],
- [
- 3.76104,
- 46.54904
- ],
- [
- 3.76092,
- 46.61681
- ],
- [
- 3.74233,
- 46.61679
- ],
- [
- 3.74228,
- 46.64396
- ],
- [
- 3.72286,
- 46.64395
- ],
- [
- 3.72281,
- 46.67104
- ],
- [
- 3.70387,
- 46.67102
- ],
- [
- 3.70385,
- 46.68467
- ],
- [
- 3.68411,
- 46.68466
- ],
- [
- 3.68406,
- 46.712
- ],
- [
- 3.66484,
- 46.71198
- ],
- [
- 3.66479,
- 46.73904
- ],
- [
- 3.64576,
- 46.73902
- ],
- [
- 3.64572,
- 46.76634
- ],
- [
- 3.62575,
- 46.76632
- ],
- [
- 3.62573,
- 46.77971
- ],
- [
- 3.56723,
- 46.77966
- ],
- [
- 3.56725,
- 46.76631
- ],
- [
- 3.54715,
- 46.76629
- ],
- [
- 3.54719,
- 46.73928
- ],
- [
- 3.52716,
- 46.73927
- ],
- [
- 3.52723,
- 46.6989
- ],
- [
- 3.48774,
- 46.69887
- ],
- [
- 3.48776,
- 46.68594
- ],
- [
- 3.46796,
- 46.68593
- ],
- [
- 3.46794,
- 46.69941
- ],
- [
- 3.46792,
- 46.71279
- ],
- [
- 3.44865,
- 46.71278
- ],
- [
- 3.44863,
- 46.72679
- ],
- [
- 3.35043,
- 46.72671
- ],
- [
- 3.35048,
- 46.6999
- ],
- [
- 3.33039,
- 46.69988
- ],
- [
- 3.33034,
- 46.7272
- ],
- [
- 3.23272,
- 46.72712
- ],
- [
- 3.23274,
- 46.71351
- ],
- [
- 3.2129,
- 46.7135
- ],
- [
- 3.21293,
- 46.70013
- ],
- [
- 3.17354,
- 46.7001
- ],
- [
- 3.1735,
- 46.72751
- ],
- [
- 3.15412,
- 46.72749
- ],
- [
- 3.1541,
- 46.74073
- ],
- [
- 3.11478,
- 46.7407
- ],
- [
- 3.11475,
- 46.75428
- ],
- [
- 3.07534,
- 46.75424
- ],
- [
- 3.0753,
- 46.78135
- ],
- [
- 3.05597,
- 46.78134
- ],
- [
- 3.05592,
- 46.80831
- ],
- [
- 2.99704,
- 46.80826
- ],
- [
- 2.99702,
- 46.82196
- ],
- [
- 2.93794,
- 46.82191
- ],
- [
- 2.93797,
- 46.80826
- ],
- [
- 2.89866,
- 46.80823
- ],
- [
- 2.89869,
- 46.79424
- ],
- [
- 2.87899,
- 46.79422
- ],
- [
- 2.87901,
- 46.78104
- ],
- [
- 2.85942,
- 46.78103
- ],
- [
- 2.85944,
- 46.76771
- ],
- [
- 2.84004,
- 46.76769
- ],
- [
- 2.84007,
- 46.75447
- ],
- [
- 2.7414,
- 46.75439
- ],
- [
- 2.74138,
- 46.76682
- ],
- [
- 2.70234,
- 46.76679
- ],
- [
- 2.70236,
- 46.75389
- ],
- [
- 2.68266,
- 46.75387
- ],
- [
- 2.68268,
- 46.74048
- ],
- [
- 2.66349,
- 46.74046
- ],
- [
- 2.66351,
- 46.7259
- ],
- [
- 2.64342,
- 46.72588
- ],
- [
- 2.64344,
- 46.71309
- ],
- [
- 2.62414,
- 46.71308
- ],
- [
- 2.62417,
- 46.69981
- ],
- [
- 2.60397,
- 46.69979
- ],
- [
- 2.60399,
- 46.68584
- ],
- [
- 2.56512,
- 46.68581
- ],
- [
- 2.56515,
- 46.67261
- ],
- [
- 2.54593,
- 46.6726
- ],
- [
- 2.546,
- 46.63215
- ],
- [
- 2.56592,
- 46.63217
- ],
- [
- 2.56595,
- 46.61811
- ],
- [
- 2.54564,
- 46.61809
- ],
- [
- 2.54569,
- 46.59072
- ],
- [
- 2.56642,
- 46.59074
- ],
- [
- 2.56644,
- 46.57754
- ],
- [
- 2.5855,
- 46.57756
- ],
- [
- 2.58552,
- 46.56472
- ],
- [
- 2.56613,
- 46.5647
- ],
- [
- 2.56616,
- 46.55062
- ],
- [
- 2.46828,
- 46.55055
- ],
- [
- 2.4683,
- 46.53582
- ],
- [
- 2.33212,
- 46.53571
- ],
- [
- 2.33217,
- 46.50886
- ],
- [
- 2.31265,
- 46.50884
- ],
- [
- 2.31267,
- 46.49534
- ],
- [
- 2.29288,
- 46.49533
- ],
- [
- 2.2929,
- 46.48182
- ],
- [
- 2.27487,
- 46.4818
- ],
- [
- 2.27492,
- 46.45442
- ],
- [
- 2.25539,
- 46.4544
- ],
- [
- 2.25553,
- 46.37349
- ],
- [
- 2.27595,
- 46.37351
- ],
- [
- 2.27604,
- 46.32087
- ],
- [
- 2.31456,
- 46.32091
- ],
- [
- 2.31458,
- 46.30704
- ],
- [
- 2.35371,
- 46.30707
- ],
- [
- 2.35373,
- 46.29297
- ],
- [
- 2.39384,
- 46.293
- ],
- [
- 2.39389,
- 46.26729
- ],
- [
- 2.45157,
- 46.26733
- ],
- [
- 2.4516,
- 46.25349
- ],
- [
- 2.47094,
- 46.25351
- ],
- [
- 2.47098,
- 46.22656
- ],
- [
- 2.49151,
- 46.22657
- ],
- [
- 2.49155,
- 46.19933
- ],
- [
- 2.51088,
- 46.19934
- ],
- [
- 2.51093,
- 46.17278
- ],
- [
- 2.53117,
- 46.1728
- ],
- [
- 2.53138,
- 46.05135
- ],
- [
- 2.55163,
- 46.05137
- ],
- [
- 2.55166,
- 46.03777
- ],
- [
- 2.57056,
- 46.03778
- ],
- [
- 2.57068,
- 45.96994
- ],
- [
- 2.55144,
- 45.96993
- ],
- [
- 2.55146,
- 45.95662
- ],
- [
- 2.53226,
- 45.9566
- ],
- [
- 2.53228,
- 45.94301
- ],
- [
- 2.51307,
- 45.94299
- ],
- [
- 2.51313,
- 45.90203
- ],
- [
- 2.47494,
- 45.902
- ],
- [
- 2.47496,
- 45.88882
- ],
- [
- 2.43619,
- 45.88879
- ],
- [
- 2.43622,
- 45.87533
- ],
- [
- 2.41721,
- 45.87531
- ],
- [
- 2.41725,
- 45.84794
- ],
- [
- 2.37847,
- 45.84791
- ],
- [
- 2.3785,
- 45.83397
- ],
- [
- 2.35952,
- 45.83396
- ],
- [
- 2.35956,
- 45.80708
- ],
- [
- 2.37873,
- 45.8071
- ],
- [
- 2.37875,
- 45.79358
- ],
- [
- 2.3987,
- 45.79359
- ],
- [
- 2.39872,
- 45.78035
- ],
- [
- 2.41825,
- 45.78036
- ],
- [
- 2.41832,
- 45.74
- ],
- [
- 2.45722,
- 45.74003
- ],
- [
- 2.45724,
- 45.7267
- ],
- [
- 2.47589,
- 45.72671
- ],
- [
- 2.47591,
- 45.71324
- ],
- [
- 2.49533,
- 45.71325
- ],
- [
- 2.49542,
- 45.65913
- ],
- [
- 2.45769,
- 45.6591
- ],
- [
- 2.45776,
- 45.61834
- ],
- [
- 2.43912,
- 45.61833
- ],
- [
- 2.43919,
- 45.57766
- ],
- [
- 2.4585,
- 45.57768
- ],
- [
- 2.45855,
- 45.55053
- ],
- [
- 2.47809,
- 45.55055
- ],
- [
- 2.47811,
- 45.53725
- ],
- [
- 2.49755,
- 45.53726
- ],
- [
- 2.49759,
- 45.51068
- ],
- [
- 2.47855,
- 45.51066
- ],
- [
- 2.47864,
- 45.45613
- ],
- [
- 2.45978,
- 45.45612
- ],
- [
- 2.45987,
- 45.40176
- ],
- [
- 2.42249,
- 45.40173
- ],
- [
- 2.42247,
- 45.41528
- ],
- [
- 2.40232,
- 45.41527
- ],
- [
- 2.40229,
- 45.42882
- ],
- [
- 2.3256,
- 45.42876
- ],
- [
- 2.32567,
- 45.38796
- ],
- [
- 2.34562,
- 45.38798
- ],
- [
- 2.34566,
- 45.36111
- ],
- [
- 2.32626,
- 45.36109
- ],
- [
- 2.32628,
- 45.34721
- ],
- [
- 2.30738,
- 45.3472
- ],
- [
- 2.3074,
- 45.3336
- ],
- [
- 2.28811,
- 45.33358
- ],
- [
- 2.28813,
- 45.32082
- ],
- [
- 2.26963,
- 45.3208
- ],
- [
- 2.26966,
- 45.30621
- ],
- [
- 2.25066,
- 45.3062
- ],
- [
- 2.25068,
- 45.29251
- ],
- [
- 2.23169,
- 45.2925
- ],
- [
- 2.23171,
- 45.27924
- ],
- [
- 2.213,
- 45.27922
- ],
- [
- 2.21305,
- 45.25204
- ],
- [
- 2.19374,
- 45.25202
- ],
- [
- 2.19376,
- 45.23811
- ],
- [
- 2.17561,
- 45.2381
- ],
- [
- 2.17574,
- 45.15768
- ],
- [
- 2.15735,
- 45.15767
- ],
- [
- 2.15744,
- 45.10295
- ],
- [
- 2.12024,
- 45.10292
- ],
- [
- 2.12026,
- 45.08955
- ],
- [
- 2.10067,
- 45.08953
- ],
- [
- 2.10069,
- 45.07544
- ],
- [
- 2.08246,
- 45.07543
- ],
- [
- 2.08255,
- 45.0216
- ],
- [
- 2.10255,
- 45.02161
- ],
- [
- 2.1026,
- 44.99445
- ],
- [
- 2.04574,
- 44.99441
- ],
- [
- 2.04585,
- 44.92753
- ],
- [
- 2.06578,
- 44.92755
- ],
- [
- 2.06589,
- 44.85969
- ],
- [
- 2.0857,
- 44.8597
- ],
- [
- 2.08572,
- 44.84581
- ],
- [
- 2.10556,
- 44.84583
- ],
- [
- 2.1056,
- 44.81933
- ],
- [
- 2.12474,
- 44.81934
- ],
- [
- 2.12477,
- 44.80551
- ],
- [
- 2.14351,
- 44.80553
- ],
- [
- 2.14355,
- 44.7786
- ],
- [
- 2.12561,
- 44.77858
- ],
- [
- 2.1257,
- 44.72427
- ],
- [
- 2.10665,
- 44.72426
- ],
- [
- 2.10671,
- 44.68423
- ],
- [
- 2.12634,
- 44.68424
- ],
- [
- 2.12636,
- 44.67074
- ],
- [
- 2.14598,
- 44.67075
- ],
- [
- 2.14607,
- 44.61644
- ],
- [
- 2.18396,
- 44.61648
- ],
- [
- 2.18398,
- 44.60378
- ],
- [
- 2.24042,
- 44.60383
- ],
- [
- 2.24037,
- 44.63095
- ],
- [
- 2.25948,
- 44.63097
- ],
- [
- 2.25946,
- 44.64493
- ],
- [
- 2.31668,
- 44.64498
- ],
- [
- 2.3167,
- 44.63088
- ],
- [
- 2.33615,
- 44.6309
- ],
- [
- 2.33617,
- 44.61758
- ],
- [
- 2.37242,
- 44.61761
- ],
- [
- 2.3724,
- 44.63158
- ],
- [
- 2.41105,
- 44.63161
- ],
- [
- 2.41107,
- 44.61907
- ],
- [
- 2.44922,
- 44.61911
- ],
- [
- 2.4492,
- 44.63232
- ],
- [
- 2.50486,
- 44.63237
- ],
- [
- 2.50481,
- 44.65976
- ],
- [
- 2.52461,
- 44.65977
- ],
- [
- 2.52457,
- 44.68717
- ],
- [
- 2.54225,
- 44.68719
- ],
- [
- 2.54223,
- 44.70122
- ],
- [
- 2.58071,
- 44.70125
- ],
- [
- 2.5806,
- 44.76834
- ],
- [
- 2.61769,
- 44.76837
- ],
- [
- 2.61762,
- 44.80884
- ],
- [
- 2.63676,
- 44.80885
- ],
- [
- 2.63669,
- 44.84929
- ],
- [
- 2.67331,
- 44.84933
- ],
- [
- 2.67329,
- 44.86252
- ],
- [
- 2.69338,
- 44.86253
- ],
- [
- 2.69333,
- 44.88943
- ],
- [
- 2.73052,
- 44.88946
- ],
- [
- 2.73048,
- 44.91645
- ],
- [
- 2.74992,
- 44.91646
- ],
- [
- 2.75005,
- 44.83647
- ],
- [
- 2.80733,
- 44.83652
- ],
- [
- 2.80731,
- 44.8491
- ],
- [
- 2.82638,
- 44.84912
- ],
- [
- 2.8264,
- 44.83628
- ],
- [
- 2.8457,
- 44.8363
- ],
- [
- 2.84577,
- 44.79571
- ],
- [
- 2.86422,
- 44.79573
- ],
- [
- 2.86426,
- 44.76865
- ],
- [
- 2.88399,
- 44.76866
- ],
- [
- 2.88403,
- 44.74197
- ],
- [
- 2.90203,
- 44.74198
- ],
- [
- 2.90214,
- 44.67432
- ],
- [
- 2.92198,
- 44.67434
- ],
- [
- 2.92202,
- 44.6473
- ],
- [
- 2.9401,
- 44.64731
- ],
- [
- 2.94012,
- 44.63388
- ]
- ]
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/WikiProject_France/CRAIG",
- "terms_text": "Orthophotographie CRAIG/Sintegra/IGN 2013"
- },
- {
- "id": "CRAIG-Auvergne-2016",
- "name": "Auvergne 2016 25cm CRAIG",
- "type": "tms",
- "template": "https://tiles.craig.fr/ortho/wmts/1.0.0/ortho_2016/webmercator/{zoom}/{x}/{y}.jpeg",
- "endDate": "2016-01-01T00:00:00.000Z",
- "startDate": "2016-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 2.49389,
- 46.66829
- ],
- [
- 2.71362,
- 46.84141
- ],
- [
- 3.64746,
- 46.80758
- ],
- [
- 4.04846,
- 46.48327
- ],
- [
- 4.03747,
- 46.24825
- ],
- [
- 4.46044,
- 46.25965
- ],
- [
- 4.4934,
- 46.14559
- ],
- [
- 4.38354,
- 46.09229
- ],
- [
- 4.45495,
- 45.69084
- ],
- [
- 4.76257,
- 45.57176
- ],
- [
- 4.81201,
- 45.34443
- ],
- [
- 4.22424,
- 44.84419
- ],
- [
- 3.86169,
- 44.696
- ],
- [
- 3.37829,
- 44.80523
- ],
- [
- 3.33435,
- 44.89091
- ],
- [
- 3.18054,
- 44.82471
- ],
- [
- 3.03222,
- 44.60612
- ],
- [
- 2.92785,
- 44.60221
- ],
- [
- 2.71911,
- 44.85198
- ],
- [
- 2.51037,
- 44.60221
- ],
- [
- 2.12585,
- 44.58265
- ],
- [
- 2.005,
- 44.97257
- ],
- [
- 2.30712,
- 45.46784
- ],
- [
- 2.43347,
- 45.44087
- ],
- [
- 2.41149,
- 45.72919
- ],
- [
- 2.34558,
- 45.82402
- ],
- [
- 2.54882,
- 45.97979
- ],
- [
- 2.46093,
- 46.22166
- ],
- [
- 2.21374,
- 46.33935
- ],
- [
- 2.27828,
- 46.53903
- ],
- [
- 2.54882,
- 46.56642
- ],
- [
- 2.49389,
- 46.66829
- ]
- ]
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/WikiProject_France/CRAIG",
- "terms_text": "CRAIG - IGN -TopoGEODIS - Feder Auvergne-Rhône-Alpes 2016"
- },
- {
- "id": "BANO",
- "name": "BANO",
- "type": "tms",
- "template": "https://{switch:a,b,c}.layers.openstreetmap.fr/bano/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 12,
- 20
- ],
- "polygon": [
- [
- [
- -2.7,
- 43.9
- ],
- [
- -6.3,
- 48.98
- ],
- [
- -2.25,
- 50.09
- ],
- [
- 1.31,
- 50.88
- ],
- [
- 2.35816,
- 51.32937
- ],
- [
- 2.5488,
- 51.09759
- ],
- [
- 2.57048,
- 51.07409
- ],
- [
- 2.58741,
- 51.01763
- ],
- [
- 2.59845,
- 51.0051
- ],
- [
- 2.61558,
- 50.99749
- ],
- [
- 2.63986,
- 50.95766
- ],
- [
- 2.64225,
- 50.94578
- ],
- [
- 2.62452,
- 50.9256
- ],
- [
- 2.61962,
- 50.91067
- ],
- [
- 2.62396,
- 50.86071
- ],
- [
- 2.62781,
- 50.85054
- ],
- [
- 2.63786,
- 50.83696
- ],
- [
- 2.6511,
- 50.82906
- ],
- [
- 2.73267,
- 50.81738
- ],
- [
- 2.79995,
- 50.73795
- ],
- [
- 2.81655,
- 50.73092
- ],
- [
- 2.85265,
- 50.73335
- ],
- [
- 2.89072,
- 50.7162
- ],
- [
- 2.90492,
- 50.71536
- ],
- [
- 2.9161,
- 50.72418
- ],
- [
- 2.93508,
- 50.75592
- ],
- [
- 3.00718,
- 50.78377
- ],
- [
- 3.08218,
- 50.78749
- ],
- [
- 3.09244,
- 50.79092
- ],
- [
- 3.11412,
- 50.80566
- ],
- [
- 3.14877,
- 50.80195
- ],
- [
- 3.2154,
- 50.73111
- ],
- [
- 3.22149,
- 50.7267
- ],
- [
- 3.27051,
- 50.70375
- ],
- [
- 3.27545,
- 50.67757
- ],
- [
- 3.26576,
- 50.6604
- ],
- [
- 3.26588,
- 50.64054
- ],
- [
- 3.28922,
- 50.60028
- ],
- [
- 3.29219,
- 50.55037
- ],
- [
- 3.3056,
- 50.53267
- ],
- [
- 3.37551,
- 50.50839
- ],
- [
- 3.3898,
- 50.50884
- ],
- [
- 3.4748,
- 50.54445
- ],
- [
- 3.52173,
- 50.53459
- ],
- [
- 3.53266,
- 50.51873
- ],
- [
- 3.54779,
- 50.51012
- ],
- [
- 3.61523,
- 50.50558
- ],
- [
- 3.67378,
- 50.45642
- ],
- [
- 3.68415,
- 50.35277
- ],
- [
- 3.6901,
- 50.34044
- ],
- [
- 3.70258,
- 50.33482
- ],
- [
- 3.71576,
- 50.33854
- ],
- [
- 3.74935,
- 50.36279
- ],
- [
- 3.84109,
- 50.36558
- ],
- [
- 3.90189,
- 50.3436
- ],
- [
- 3.91317,
- 50.34291
- ],
- [
- 4.02672,
- 50.36904
- ],
- [
- 4.13761,
- 50.29984
- ],
- [
- 4.14388,
- 50.29727
- ],
- [
- 4.21444,
- 50.28167
- ],
- [
- 4.22904,
- 50.26664
- ],
- [
- 4.23078,
- 50.25233
- ],
- [
- 4.17084,
- 50.18579
- ],
- [
- 4.16601,
- 50.16888
- ],
- [
- 4.1764,
- 50.1547
- ],
- [
- 4.21195,
- 50.13602
- ],
- [
- 4.24074,
- 50.07102
- ],
- [
- 4.23193,
- 50.05551
- ],
- [
- 4.18164,
- 50.03436
- ],
- [
- 4.17177,
- 50.02537
- ],
- [
- 4.16976,
- 50.01217
- ],
- [
- 4.1765,
- 50.00065
- ],
- [
- 4.20633,
- 49.97546
- ],
- [
- 4.22164,
- 49.97089
- ],
- [
- 4.30877,
- 49.98145
- ],
- [
- 4.44542,
- 49.9523
- ],
- [
- 4.45469,
- 49.95251
- ],
- [
- 4.6581,
- 50.00609
- ],
- [
- 4.66936,
- 50.01392
- ],
- [
- 4.67293,
- 50.02716
- ],
- [
- 4.66924,
- 50.06972
- ],
- [
- 4.69517,
- 50.10472
- ],
- [
- 4.83123,
- 50.17941
- ],
- [
- 4.8815,
- 50.16436
- ],
- [
- 4.90479,
- 50.14451
- ],
- [
- 4.90426,
- 50.12639
- ],
- [
- 4.88076,
- 50.0815
- ],
- [
- 4.86277,
- 50.0745
- ],
- [
- 4.85104,
- 50.06216
- ],
- [
- 4.84331,
- 50.03884
- ],
- [
- 4.84331,
- 50.03883
- ],
- [
- 4.8433,
- 50.03881
- ],
- [
- 4.82678,
- 49.989
- ],
- [
- 4.82662,
- 49.97692
- ],
- [
- 4.83343,
- 49.96696
- ],
- [
- 4.89654,
- 49.91753
- ],
- [
- 4.89755,
- 49.89424
- ],
- [
- 4.87913,
- 49.86942
- ],
- [
- 4.87625,
- 49.85111
- ],
- [
- 4.88924,
- 49.81266
- ],
- [
- 4.89769,
- 49.80204
- ],
- [
- 4.91098,
- 49.79926
- ],
- [
- 4.99534,
- 49.81116
- ],
- [
- 5.01867,
- 49.79272
- ],
- [
- 5.02686,
- 49.78886
- ],
- [
- 5.09944,
- 49.77323
- ],
- [
- 5.13458,
- 49.73462
- ],
- [
- 5.1412,
- 49.72984
- ],
- [
- 5.18761,
- 49.70906
- ],
- [
- 5.19602,
- 49.70732
- ],
- [
- 5.28157,
- 49.70836
- ],
- [
- 5.33363,
- 49.67308
- ],
- [
- 5.344,
- 49.65049
- ],
- [
- 5.3544,
- 49.64041
- ],
- [
- 5.43141,
- 49.60791
- ],
- [
- 5.48205,
- 49.52815
- ],
- [
- 5.49294,
- 49.51979
- ],
- [
- 5.50666,
- 49.52042
- ],
- [
- 5.55401,
- 49.54025
- ],
- [
- 5.59311,
- 49.53424
- ],
- [
- 5.6076,
- 49.53761
- ],
- [
- 5.641,
- 49.56095
- ],
- [
- 5.70676,
- 49.55267
- ],
- [
- 5.71578,
- 49.55361
- ],
- [
- 5.77526,
- 49.57414
- ],
- [
- 5.8399,
- 49.55321
- ],
- [
- 5.86126,
- 49.52038
- ],
- [
- 5.876,
- 49.5114
- ],
- [
- 5.97516,
- 49.50129
- ],
- [
- 5.99801,
- 49.47317
- ],
- [
- 6.01627,
- 49.46597
- ],
- [
- 6.08635,
- 49.47562
- ],
- [
- 6.09319,
- 49.47787
- ],
- [
- 6.17397,
- 49.52187
- ],
- [
- 6.24643,
- 49.52511
- ],
- [
- 6.334,
- 49.48235
- ],
- [
- 6.34423,
- 49.48037
- ],
- [
- 6.43515,
- 49.487
- ],
- [
- 6.5451,
- 49.44384
- ],
- [
- 6.60639,
- 49.37868
- ],
- [
- 6.60497,
- 49.33739
- ],
- [
- 6.61627,
- 49.31869
- ],
- [
- 6.67013,
- 49.29269
- ],
- [
- 6.72996,
- 49.22917
- ],
- [
- 6.74328,
- 49.19086
- ],
- [
- 6.76026,
- 49.17752
- ],
- [
- 6.80904,
- 49.17284
- ],
- [
- 6.82473,
- 49.17826
- ],
- [
- 6.83093,
- 49.19366
- ],
- [
- 6.82982,
- 49.21802
- ],
- [
- 6.85119,
- 49.23136
- ],
- [
- 6.88453,
- 49.2239
- ],
- [
- 6.89322,
- 49.22389
- ],
- [
- 6.93753,
- 49.23369
- ],
- [
- 7.04055,
- 49.19794
- ],
- [
- 7.0463,
- 49.17503
- ],
- [
- 7.05478,
- 49.16313
- ],
- [
- 7.06908,
- 49.16018
- ],
- [
- 7.10494,
- 49.16634
- ],
- [
- 7.14315,
- 49.14159
- ],
- [
- 7.1535,
- 49.13839
- ],
- [
- 7.28683,
- 49.13488
- ],
- [
- 7.29893,
- 49.13856
- ],
- [
- 7.36095,
- 49.18259
- ],
- [
- 7.45012,
- 49.19517
- ],
- [
- 7.50113,
- 49.17672
- ],
- [
- 7.54379,
- 49.10572
- ],
- [
- 7.5579,
- 49.09626
- ],
- [
- 7.6296,
- 49.08527
- ],
- [
- 7.64722,
- 49.06722
- ],
- [
- 7.6612,
- 49.06119
- ],
- [
- 7.75401,
- 49.05963
- ],
- [
- 7.76073,
- 49.06067
- ],
- [
- 7.80291,
- 49.07489
- ],
- [
- 7.85525,
- 49.05329
- ],
- [
- 7.8673,
- 49.05227
- ],
- [
- 7.93826,
- 49.06832
- ],
- [
- 8.08069,
- 49.00688
- ],
- [
- 8.2225,
- 48.98787
- ],
- [
- 8.23704,
- 48.97683
- ],
- [
- 8.23589,
- 48.95817
- ],
- [
- 8.20888,
- 48.94863
- ],
- [
- 8.20089,
- 48.94339
- ],
- [
- 8.15824,
- 48.89753
- ],
- [
- 8.10087,
- 48.7993
- ],
- [
- 7.99071,
- 48.74478
- ],
- [
- 7.98534,
- 48.7409
- ],
- [
- 7.90422,
- 48.65865
- ],
- [
- 7.85605,
- 48.63606
- ],
- [
- 7.8484,
- 48.62977
- ],
- [
- 7.81842,
- 48.58883
- ],
- [
- 7.81456,
- 48.57704
- ],
- [
- 7.81449,
- 48.50968
- ],
- [
- 7.78547,
- 48.48337
- ],
- [
- 7.78055,
- 48.47652
- ],
- [
- 7.74506,
- 48.39484
- ],
- [
- 7.74357,
- 48.38427
- ],
- [
- 7.75159,
- 48.32322
- ],
- [
- 7.71085,
- 48.29841
- ],
- [
- 7.70241,
- 48.28803
- ],
- [
- 7.67661,
- 48.21555
- ],
- [
- 7.59605,
- 48.11698
- ],
- [
- 7.59165,
- 48.10648
- ],
- [
- 7.58522,
- 48.04694
- ],
- [
- 7.59127,
- 48.03035
- ],
- [
- 7.62437,
- 47.99865
- ],
- [
- 7.63205,
- 47.97081
- ],
- [
- 7.57554,
- 47.87436
- ],
- [
- 7.5728,
- 47.86435
- ],
- [
- 7.57267,
- 47.83631
- ],
- [
- 7.54581,
- 47.78793
- ],
- [
- 7.54418,
- 47.77232
- ],
- [
- 7.55758,
- 47.72899
- ],
- [
- 7.53526,
- 47.6989
- ],
- [
- 7.53136,
- 47.68564
- ],
- [
- 7.537,
- 47.67302
- ],
- [
- 7.60016,
- 47.60822
- ],
- [
- 7.58967,
- 47.56755
- ],
- [
- 7.55424,
- 47.55128
- ],
- [
- 7.54511,
- 47.54283
- ],
- [
- 7.51256,
- 47.48439
- ],
- [
- 7.38747,
- 47.42111
- ],
- [
- 7.32653,
- 47.4273
- ],
- [
- 7.24435,
- 47.40939
- ],
- [
- 7.16708,
- 47.4335
- ],
- [
- 7.15212,
- 47.47612
- ],
- [
- 7.14279,
- 47.48707
- ],
- [
- 7.12853,
- 47.48893
- ],
- [
- 7.0801,
- 47.47718
- ],
- [
- 7.03557,
- 47.48695
- ],
- [
- 7.02102,
- 47.48458
- ],
- [
- 7.01205,
- 47.47287
- ],
- [
- 7.003,
- 47.44095
- ],
- [
- 6.9551,
- 47.40808
- ],
- [
- 6.94716,
- 47.39698
- ],
- [
- 6.94818,
- 47.38337
- ],
- [
- 6.95769,
- 47.37359
- ],
- [
- 6.97126,
- 47.37218
- ],
- [
- 7.018,
- 47.38386
- ],
- [
- 7.05623,
- 47.37035
- ],
- [
- 7.07007,
- 47.35005
- ],
- [
- 7.05958,
- 47.32257
- ],
- [
- 6.97424,
- 47.27856
- ],
- [
- 6.96347,
- 47.26233
- ],
- [
- 6.96134,
- 47.23479
- ],
- [
- 6.89443,
- 47.19393
- ],
- [
- 6.88913,
- 47.18922
- ],
- [
- 6.85545,
- 47.14636
- ],
- [
- 6.76907,
- 47.10751
- ],
- [
- 6.76011,
- 47.09953
- ],
- [
- 6.72561,
- 47.0418
- ],
- [
- 6.62355,
- 46.9811
- ],
- [
- 6.4812,
- 46.9445
- ],
- [
- 6.46892,
- 46.93522
- ],
- [
- 6.46686,
- 46.91997
- ],
- [
- 6.47548,
- 46.88771
- ],
- [
- 6.4535,
- 46.8239
- ],
- [
- 6.45644,
- 46.80534
- ],
- [
- 6.46722,
- 46.79104
- ],
- [
- 6.46098,
- 46.76887
- ],
- [
- 6.15817,
- 46.59343
- ],
- [
- 6.14872,
- 46.58069
- ],
- [
- 6.15152,
- 46.56508
- ],
- [
- 6.16549,
- 46.54399
- ],
- [
- 6.15811,
- 46.52456
- ],
- [
- 6.10174,
- 46.46979
- ],
- [
- 6.09572,
- 46.45418
- ],
- [
- 6.09704,
- 46.43317
- ],
- [
- 6.10829,
- 46.41643
- ],
- [
- 6.16622,
- 46.38839
- ],
- [
- 6.17817,
- 46.36922
- ],
- [
- 6.13748,
- 46.31297
- ],
- [
- 6.13371,
- 46.30227
- ],
- [
- 6.13038,
- 46.23737
- ],
- [
- 6.1103,
- 46.22344
- ],
- [
- 6.08865,
- 46.23081
- ],
- [
- 6.07717,
- 46.23123
- ],
- [
- 6.01857,
- 46.21601
- ],
- [
- 6.00681,
- 46.20752
- ],
- [
- 6.00388,
- 46.19332
- ],
- [
- 6.00787,
- 46.16977
- ],
- [
- 6.01783,
- 46.15564
- ],
- [
- 6.03509,
- 46.15456
- ],
- [
- 6.05564,
- 46.16288
- ],
- [
- 6.12468,
- 46.15415
- ],
- [
- 6.13778,
- 46.15702
- ],
- [
- 6.24026,
- 46.22094
- ],
- [
- 6.24906,
- 46.23299
- ],
- [
- 6.24707,
- 46.24777
- ],
- [
- 6.21148,
- 46.31057
- ],
- [
- 6.21219,
- 46.32485
- ],
- [
- 6.23946,
- 46.36705
- ],
- [
- 6.31648,
- 46.41557
- ],
- [
- 6.41083,
- 46.42495
- ],
- [
- 6.41748,
- 46.42682
- ],
- [
- 6.50498,
- 46.46871
- ],
- [
- 6.63047,
- 46.47435
- ],
- [
- 6.74665,
- 46.45695
- ],
- [
- 6.82244,
- 46.42925
- ],
- [
- 6.81832,
- 46.38181
- ],
- [
- 6.80484,
- 46.36179
- ],
- [
- 6.80189,
- 46.34639
- ],
- [
- 6.81095,
- 46.33359
- ],
- [
- 6.86491,
- 46.30038
- ],
- [
- 6.87504,
- 46.28007
- ],
- [
- 6.86092,
- 46.2439
- ],
- [
- 6.82698,
- 46.21188
- ],
- [
- 6.82075,
- 46.19862
- ],
- [
- 6.81863,
- 46.16592
- ],
- [
- 6.82259,
- 46.15261
- ],
- [
- 6.83427,
- 46.14509
- ],
- [
- 6.90382,
- 46.12971
- ],
- [
- 6.90491,
- 46.09595
- ],
- [
- 6.90932,
- 46.08406
- ],
- [
- 6.92001,
- 46.07721
- ],
- [
- 6.94898,
- 46.0699
- ],
- [
- 7.01556,
- 46.00883
- ],
- [
- 7.05191,
- 45.93066
- ],
- [
- 7.04533,
- 45.92217
- ],
- [
- 7.04497,
- 45.92064
- ],
- [
- 7.04394,
- 45.92036
- ],
- [
- 6.99582,
- 45.85822
- ],
- [
- 6.94097,
- 45.83551
- ],
- [
- 6.84376,
- 45.82387
- ],
- [
- 6.83102,
- 45.81711
- ],
- [
- 6.82614,
- 45.80353
- ],
- [
- 6.82787,
- 45.73217
- ],
- [
- 6.83174,
- 45.72082
- ],
- [
- 6.8414,
- 45.71373
- ],
- [
- 6.90729,
- 45.69124
- ],
- [
- 6.92419,
- 45.66935
- ],
- [
- 6.94247,
- 45.66172
- ],
- [
- 6.97131,
- 45.66528
- ],
- [
- 7.00597,
- 45.64945
- ],
- [
- 7.01151,
- 45.63652
- ],
- [
- 6.9978,
- 45.60877
- ],
- [
- 6.99643,
- 45.59465
- ],
- [
- 7.0158,
- 45.52354
- ],
- [
- 7.02774,
- 45.5102
- ],
- [
- 7.1072,
- 45.47877
- ],
- [
- 7.1228,
- 45.44924
- ],
- [
- 7.13304,
- 45.44001
- ],
- [
- 7.1856,
- 45.41894
- ],
- [
- 7.19515,
- 45.40409
- ],
- [
- 7.17075,
- 45.35069
- ],
- [
- 7.14232,
- 45.32298
- ],
- [
- 7.13649,
- 45.30576
- ],
- [
- 7.14458,
- 45.25048
- ],
- [
- 7.08417,
- 45.20279
- ],
- [
- 6.99279,
- 45.19823
- ],
- [
- 6.98106,
- 45.19368
- ],
- [
- 6.90009,
- 45.12689
- ],
- [
- 6.85843,
- 45.11699
- ],
- [
- 6.78283,
- 45.14228
- ],
- [
- 6.77056,
- 45.14242
- ],
- [
- 6.67751,
- 45.11356
- ],
- [
- 6.6653,
- 45.10289
- ],
- [
- 6.66501,
- 45.08667
- ],
- [
- 6.68237,
- 45.04558
- ],
- [
- 6.69602,
- 45.03395
- ],
- [
- 6.75744,
- 45.01884
- ],
- [
- 6.78375,
- 44.9146
- ],
- [
- 6.7942,
- 44.90161
- ],
- [
- 6.86698,
- 44.86519
- ],
- [
- 6.8798,
- 44.86346
- ],
- [
- 6.93633,
- 44.87461
- ],
- [
- 7.01795,
- 44.84402
- ],
- [
- 7.03453,
- 44.82282
- ],
- [
- 7.03711,
- 44.75009
- ],
- [
- 7.0496,
- 44.73226
- ],
- [
- 7.07224,
- 44.72311
- ],
- [
- 7.08651,
- 44.6968
- ],
- [
- 7.08666,
- 44.68085
- ],
- [
- 7.07671,
- 44.67134
- ],
- [
- 6.99007,
- 44.67203
- ],
- [
- 6.97413,
- 44.66431
- ],
- [
- 6.97056,
- 44.64696
- ],
- [
- 6.97819,
- 44.61784
- ],
- [
- 6.94659,
- 44.57124
- ],
- [
- 6.88235,
- 44.53479
- ],
- [
- 6.87233,
- 44.5195
- ],
- [
- 6.87892,
- 44.50245
- ],
- [
- 6.95894,
- 44.43129
- ],
- [
- 6.95872,
- 44.42908
- ],
- [
- 6.92167,
- 44.41436
- ],
- [
- 6.91223,
- 44.40659
- ],
- [
- 6.90907,
- 44.39477
- ],
- [
- 6.90972,
- 44.38195
- ],
- [
- 6.91637,
- 44.36804
- ],
- [
- 6.99909,
- 44.29414
- ],
- [
- 7.01181,
- 44.256
- ],
- [
- 7.01983,
- 44.24558
- ],
- [
- 7.03259,
- 44.2424
- ],
- [
- 7.07312,
- 44.2461
- ],
- [
- 7.1651,
- 44.22112
- ],
- [
- 7.24533,
- 44.18544
- ],
- [
- 7.26053,
- 44.16682
- ],
- [
- 7.27537,
- 44.15947
- ],
- [
- 7.33878,
- 44.1574
- ],
- [
- 7.36278,
- 44.13834
- ],
- [
- 7.37776,
- 44.13416
- ],
- [
- 7.56283,
- 44.15792
- ],
- [
- 7.5642,
- 44.15836
- ],
- [
- 7.56478,
- 44.15817
- ],
- [
- 7.60548,
- 44.1634
- ],
- [
- 7.6162,
- 44.16827
- ],
- [
- 7.63989,
- 44.18928
- ],
- [
- 7.68608,
- 44.1861
- ],
- [
- 7.69422,
- 44.17795
- ],
- [
- 7.68937,
- 44.13869
- ],
- [
- 7.69445,
- 44.12276
- ],
- [
- 7.72786,
- 44.08615
- ],
- [
- 7.72403,
- 44.05704
- ],
- [
- 7.68603,
- 44.02371
- ],
- [
- 7.68077,
- 44.0164
- ],
- [
- 7.66016,
- 43.9672
- ],
- [
- 7.59624,
- 43.94466
- ],
- [
- 7.58419,
- 43.93287
- ],
- [
- 7.56858,
- 43.89159
- ],
- [
- 7.5271,
- 43.87434
- ],
- [
- 7.51649,
- 43.86397
- ],
- [
- 7.51594,
- 43.84915
- ],
- [
- 7.53622,
- 43.79234
- ],
- [
- 9.8,
- 43.1
- ],
- [
- 9.63227,
- 41.43244
- ],
- [
- 9.36968,
- 41.35052
- ],
- [
- 9.27311,
- 41.29196
- ],
- [
- 8.94186,
- 41.27688
- ],
- [
- 5.8,
- 41.64
- ],
- [
- 3.17358,
- 42.41768
- ],
- [
- 3.16081,
- 42.42757
- ],
- [
- 3.0944,
- 42.41457
- ],
- [
- 3.03402,
- 42.45331
- ],
- [
- 3.02214,
- 42.45645
- ],
- [
- 2.87822,
- 42.4487
- ],
- [
- 2.87019,
- 42.44653
- ],
- [
- 2.78424,
- 42.40256
- ],
- [
- 2.7413,
- 42.41128
- ],
- [
- 2.72928,
- 42.40998
- ],
- [
- 2.69331,
- 42.39417
- ],
- [
- 2.68378,
- 42.3854
- ],
- [
- 2.68162,
- 42.37263
- ],
- [
- 2.68585,
- 42.34679
- ],
- [
- 2.66719,
- 42.33008
- ],
- [
- 2.58106,
- 42.34418
- ],
- [
- 2.56777,
- 42.34173
- ],
- [
- 2.5338,
- 42.32197
- ],
- [
- 2.47795,
- 42.32986
- ],
- [
- 2.41933,
- 42.37658
- ],
- [
- 2.41222,
- 42.38021
- ],
- [
- 2.26719,
- 42.42055
- ],
- [
- 2.25973,
- 42.42117
- ],
- [
- 2.20694,
- 42.41558
- ],
- [
- 2.20653,
- 42.41526
- ],
- [
- 2.20526,
- 42.41541
- ],
- [
- 2.16028,
- 42.41065
- ],
- [
- 2.14881,
- 42.40545
- ],
- [
- 2.09393,
- 42.35474
- ],
- [
- 2.00861,
- 42.33818
- ],
- [
- 1.965,
- 42.36473
- ],
- [
- 1.93076,
- 42.42442
- ],
- [
- 1.92089,
- 42.43302
- ],
- [
- 1.88467,
- 42.44761
- ],
- [
- 1.88459,
- 42.44762
- ],
- [
- 1.88444,
- 42.4477
- ],
- [
- 1.82774,
- 42.47056
- ],
- [
- 1.72567,
- 42.48452
- ],
- [
- 1.71561,
- 42.50125
- ],
- [
- 1.7272,
- 42.56103
- ],
- [
- 1.72479,
- 42.57499
- ],
- [
- 1.71011,
- 42.59992
- ],
- [
- 1.69377,
- 42.60975
- ],
- [
- 1.60283,
- 42.61382
- ],
- [
- 1.56069,
- 42.6392
- ],
- [
- 1.54636,
- 42.64166
- ],
- [
- 1.50444,
- 42.6331
- ],
- [
- 1.4921,
- 42.62502
- ],
- [
- 1.47238,
- 42.59703
- ],
- [
- 1.43792,
- 42.59264
- ],
- [
- 1.41936,
- 42.60643
- ],
- [
- 1.38032,
- 42.67415
- ],
- [
- 1.37335,
- 42.68127
- ],
- [
- 1.33313,
- 42.70563
- ],
- [
- 1.32364,
- 42.7085
- ],
- [
- 1.23221,
- 42.71248
- ],
- [
- 1.16554,
- 42.69928
- ],
- [
- 1.08546,
- 42.76635
- ],
- [
- 1.07564,
- 42.77079
- ],
- [
- 0.95937,
- 42.78852
- ],
- [
- 0.95073,
- 42.78794
- ],
- [
- 0.92265,
- 42.7797
- ],
- [
- 0.84606,
- 42.8157
- ],
- [
- 0.71511,
- 42.8464
- ],
- [
- 0.70017,
- 42.84402
- ],
- [
- 0.69117,
- 42.83186
- ],
- [
- 0.67409,
- 42.76479
- ],
- [
- 0.67474,
- 42.75286
- ],
- [
- 0.69192,
- 42.70684
- ],
- [
- 0.669,
- 42.67901
- ],
- [
- 0.43024,
- 42.67863
- ],
- [
- 0.3715,
- 42.70308
- ],
- [
- 0.35954,
- 42.70415
- ],
- [
- 0.34912,
- 42.69817
- ],
- [
- 0.32567,
- 42.67274
- ],
- [
- 0.29571,
- 42.66388
- ],
- [
- 0.24594,
- 42.70175
- ],
- [
- 0.23972,
- 42.70494
- ],
- [
- 0.18967,
- 42.72039
- ],
- [
- 0.17919,
- 42.72075
- ],
- [
- -0.01993,
- 42.67389
- ],
- [
- -0.06726,
- 42.6848
- ],
- [
- -0.16949,
- 42.77157
- ],
- [
- -0.29987,
- 42.82697
- ],
- [
- -0.31683,
- 42.82635
- ],
- [
- -0.39208,
- 42.78766
- ],
- [
- -0.44354,
- 42.78453
- ],
- [
- -0.48842,
- 42.80255
- ],
- [
- -0.50868,
- 42.79935
- ],
- [
- -0.54499,
- 42.76906
- ],
- [
- -0.56721,
- 42.76937
- ],
- [
- -0.67446,
- 42.86392
- ],
- [
- -0.68094,
- 42.86775
- ],
- [
- -0.73372,
- 42.88666
- ],
- [
- -0.7476,
- 42.93879
- ],
- [
- -0.75711,
- 42.95107
- ],
- [
- -0.77253,
- 42.95284
- ],
- [
- -0.82114,
- 42.93865
- ],
- [
- -0.94508,
- 42.94192
- ],
- [
- -1.02313,
- 42.98206
- ],
- [
- -1.10852,
- 43.00409
- ],
- [
- -1.1156,
- 43.00461
- ],
- [
- -1.14775,
- 43.00124
- ],
- [
- -1.15845,
- 43.01452
- ],
- [
- -1.16736,
- 43.02083
- ],
- [
- -1.21622,
- 43.0381
- ],
- [
- -1.22612,
- 43.03898
- ],
- [
- -1.26236,
- 43.03303
- ],
- [
- -1.30643,
- 43.05531
- ],
- [
- -1.31992,
- 43.05696
- ],
- [
- -1.33135,
- 43.0496
- ],
- [
- -1.3542,
- 43.0197
- ],
- [
- -1.43868,
- 43.03371
- ],
- [
- -1.4775,
- 43.06889
- ],
- [
- -1.48311,
- 43.08561
- ],
- [
- -1.47641,
- 43.10248
- ],
- [
- -1.43479,
- 43.13087
- ],
- [
- -1.42732,
- 43.1404
- ],
- [
- -1.39411,
- 43.22935
- ],
- [
- -1.39531,
- 43.24596
- ],
- [
- -1.40868,
- 43.25591
- ],
- [
- -1.52629,
- 43.28099
- ],
- [
- -1.54626,
- 43.2737
- ],
- [
- -1.57149,
- 43.2412
- ],
- [
- -1.61053,
- 43.24223
- ],
- [
- -1.65,
- 43.29323
- ],
- [
- -1.66953,
- 43.30065
- ],
- [
- -1.73359,
- 43.28856
- ],
- [
- -1.75606,
- 43.31966
- ],
- [
- -1.76297,
- 43.32565
- ],
- [
- -1.79156,
- 43.34067
- ],
- [
- -1.80099,
- 43.37017
- ],
- [
- -1.78509,
- 43.39037
- ],
- [
- -1.7835,
- 43.39686
- ],
- [
- -2.7,
- 43.9
- ]
- ]
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/FR:WikiProject_France/WikiProject_Base_Adresses_Nationale_Ouverte_(BANO)#Licence_du_r.C3.A9sultat",
- "terms_text": "Tiles © cquest@Openstreetmap France, data © OpenStreetMap contributors, ODBL",
- "description": "French address registry or Base Adresses Nationale Ouverte",
- "overlay": true
- },
- {
- "id": "lu.geoportail.opendata.basemap",
- "name": "Basemap geoportail.lu",
- "type": "tms",
- "template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/basemap/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png",
- "endDate": "2010-07-20T00:00:00.000Z",
- "startDate": "2013-07-19T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- 5.96175,
- 50.17631
- ],
- [
- 6.02627,
- 50.18496
- ],
- [
- 6.03318,
- 50.16395
- ],
- [
- 6.06069,
- 50.15536
- ],
- [
- 6.07668,
- 50.15913
- ],
- [
- 6.07824,
- 50.17255
- ],
- [
- 6.10176,
- 50.17199
- ],
- [
- 6.1225,
- 50.16437
- ],
- [
- 6.1201,
- 50.15594
- ],
- [
- 6.1277,
- 50.14993
- ],
- [
- 6.11323,
- 50.13739
- ],
- [
- 6.12369,
- 50.13719
- ],
- [
- 6.14093,
- 50.1305
- ],
- [
- 6.13555,
- 50.11899
- ],
- [
- 6.13808,
- 50.10263
- ],
- [
- 6.13108,
- 50.09964
- ],
- [
- 6.13547,
- 50.09119
- ],
- [
- 6.12194,
- 50.09059
- ],
- [
- 6.12634,
- 50.07817
- ],
- [
- 6.13186,
- 50.07348
- ],
- [
- 6.12117,
- 50.064
- ],
- [
- 6.11444,
- 50.06139
- ],
- [
- 6.11563,
- 50.05817
- ],
- [
- 6.12361,
- 50.06323
- ],
- [
- 6.13661,
- 50.04178
- ],
- [
- 6.13034,
- 50.02975
- ],
- [
- 6.14821,
- 50.02307
- ],
- [
- 6.13868,
- 50.01572
- ],
- [
- 6.13594,
- 50.01485
- ],
- [
- 6.13138,
- 50.01905
- ],
- [
- 6.13024,
- 50.01819
- ],
- [
- 6.13934,
- 50.01116
- ],
- [
- 6.1517,
- 50.01058
- ],
- [
- 6.14546,
- 49.99689
- ],
- [
- 6.13966,
- 49.9994
- ],
- [
- 6.13852,
- 49.99829
- ],
- [
- 6.14218,
- 49.99535
- ],
- [
- 6.15023,
- 49.99518
- ],
- [
- 6.15625,
- 49.98867
- ],
- [
- 6.17305,
- 49.98589
- ],
- [
- 6.17348,
- 49.98344
- ],
- [
- 6.17035,
- 49.98376
- ],
- [
- 6.16549,
- 49.97115
- ],
- [
- 6.17151,
- 49.96298
- ],
- [
- 6.1763,
- 49.962
- ],
- [
- 6.17995,
- 49.95386
- ],
- [
- 6.18339,
- 49.9548
- ],
- [
- 6.17983,
- 49.96307
- ],
- [
- 6.18331,
- 49.9686
- ],
- [
- 6.19277,
- 49.97158
- ],
- [
- 6.19978,
- 49.95352
- ],
- [
- 6.20707,
- 49.95672
- ],
- [
- 6.21269,
- 49.9514
- ],
- [
- 6.22502,
- 49.95039
- ],
- [
- 6.22044,
- 49.94369
- ],
- [
- 6.22824,
- 49.93726
- ],
- [
- 6.22635,
- 49.92766
- ],
- [
- 6.21913,
- 49.92354
- ],
- [
- 6.22986,
- 49.92125
- ],
- [
- 6.23603,
- 49.91355
- ],
- [
- 6.23187,
- 49.91064
- ],
- [
- 6.22769,
- 49.91062
- ],
- [
- 6.23229,
- 49.9072
- ],
- [
- 6.23381,
- 49.90028
- ],
- [
- 6.24692,
- 49.89535
- ],
- [
- 6.25781,
- 49.88724
- ],
- [
- 6.26301,
- 49.88101
- ],
- [
- 6.27646,
- 49.87725
- ],
- [
- 6.28113,
- 49.87957
- ],
- [
- 6.29166,
- 49.87548
- ],
- [
- 6.2977,
- 49.86673
- ],
- [
- 6.30989,
- 49.87107
- ],
- [
- 6.31532,
- 49.8673
- ],
- [
- 6.31465,
- 49.86057
- ],
- [
- 6.32361,
- 49.85188
- ],
- [
- 6.32158,
- 49.8409
- ],
- [
- 6.32741,
- 49.83673
- ],
- [
- 6.33656,
- 49.83998
- ],
- [
- 6.33937,
- 49.8507
- ],
- [
- 6.36465,
- 49.85164
- ],
- [
- 6.4022,
- 49.82098
- ],
- [
- 6.42643,
- 49.81629
- ],
- [
- 6.42807,
- 49.81186
- ],
- [
- 6.43097,
- 49.81129
- ],
- [
- 6.44161,
- 49.81547
- ],
- [
- 6.44344,
- 49.81233
- ],
- [
- 6.45366,
- 49.81275
- ],
- [
- 6.46454,
- 49.81975
- ],
- [
- 6.47057,
- 49.82385
- ],
- [
- 6.49681,
- 49.81277
- ],
- [
- 6.50669,
- 49.80993
- ],
- [
- 6.51155,
- 49.80238
- ],
- [
- 6.51485,
- 49.80513
- ],
- [
- 6.5196,
- 49.81446
- ],
- [
- 6.52981,
- 49.81048
- ],
- [
- 6.53225,
- 49.80686
- ],
- [
- 6.53083,
- 49.80116
- ],
- [
- 6.50622,
- 49.78899
- ],
- [
- 6.51917,
- 49.78344
- ],
- [
- 6.51105,
- 49.77422
- ],
- [
- 6.52056,
- 49.76818
- ],
- [
- 6.52052,
- 49.76134
- ],
- [
- 6.50373,
- 49.75086
- ],
- [
- 6.50263,
- 49.73298
- ],
- [
- 6.50727,
- 49.72938
- ],
- [
- 6.51809,
- 49.7242
- ],
- [
- 6.51642,
- 49.72129
- ],
- [
- 6.51176,
- 49.72016
- ],
- [
- 6.50479,
- 49.725
- ],
- [
- 6.49891,
- 49.72639
- ],
- [
- 6.49558,
- 49.72443
- ],
- [
- 6.50712,
- 49.71655
- ],
- [
- 6.50788,
- 49.71215
- ],
- [
- 6.5046,
- 49.71227
- ],
- [
- 6.42714,
- 49.66237
- ],
- [
- 6.4399,
- 49.66025
- ],
- [
- 6.44251,
- 49.65591
- ],
- [
- 6.42178,
- 49.61809
- ],
- [
- 6.39898,
- 49.60094
- ],
- [
- 6.37941,
- 49.59526
- ],
- [
- 6.37551,
- 49.58809
- ],
- [
- 6.38443,
- 49.5801
- ],
- [
- 6.38119,
- 49.57509
- ],
- [
- 6.36909,
- 49.5783
- ],
- [
- 6.35791,
- 49.57166
- ],
- [
- 6.3849,
- 49.55817
- ],
- [
- 6.38009,
- 49.54856
- ],
- [
- 6.35855,
- 49.53296
- ],
- [
- 6.35932,
- 49.52481
- ],
- [
- 6.37076,
- 49.50545
- ],
- [
- 6.37056,
- 49.45732
- ],
- [
- 6.3334,
- 49.46493
- ],
- [
- 6.32189,
- 49.47244
- ],
- [
- 6.29503,
- 49.47928
- ],
- [
- 6.28789,
- 49.48379
- ],
- [
- 6.27191,
- 49.49995
- ],
- [
- 6.24133,
- 49.50693
- ],
- [
- 6.19669,
- 49.50331
- ],
- [
- 6.17337,
- 49.50577
- ],
- [
- 6.16086,
- 49.50085
- ],
- [
- 6.1671,
- 49.49006
- ],
- [
- 6.14018,
- 49.48525
- ],
- [
- 6.12937,
- 49.48803
- ],
- [
- 6.12725,
- 49.47081
- ],
- [
- 6.1014,
- 49.46726
- ],
- [
- 6.10483,
- 49.45076
- ],
- [
- 6.08167,
- 49.45417
- ],
- [
- 6.07722,
- 49.46139
- ],
- [
- 6.05917,
- 49.46306
- ],
- [
- 6.05222,
- 49.46028
- ],
- [
- 6.04421,
- 49.44553
- ],
- [
- 6.02529,
- 49.44703
- ],
- [
- 6.02154,
- 49.45127
- ],
- [
- 6.01574,
- 49.44885
- ],
- [
- 5.99412,
- 49.45301
- ],
- [
- 5.97657,
- 49.44885
- ],
- [
- 5.97773,
- 49.45955
- ],
- [
- 5.97232,
- 49.46087
- ],
- [
- 5.96891,
- 49.48202
- ],
- [
- 5.9616,
- 49.49026
- ],
- [
- 5.91578,
- 49.49835
- ],
- [
- 5.89033,
- 49.4948
- ],
- [
- 5.86332,
- 49.50006
- ],
- [
- 5.84897,
- 49.50826
- ],
- [
- 5.84828,
- 49.51397
- ],
- [
- 5.83641,
- 49.51817
- ],
- [
- 5.83187,
- 49.52639
- ],
- [
- 5.84308,
- 49.53081
- ],
- [
- 5.83562,
- 49.54114
- ],
- [
- 5.81625,
- 49.53325
- ],
- [
- 5.8052,
- 49.54272
- ],
- [
- 5.85943,
- 49.57158
- ],
- [
- 5.86866,
- 49.587
- ],
- [
- 5.86289,
- 49.58525
- ],
- [
- 5.8511,
- 49.58379
- ],
- [
- 5.84712,
- 49.58961
- ],
- [
- 5.84565,
- 49.5981
- ],
- [
- 5.8694,
- 49.6106
- ],
- [
- 5.88182,
- 49.63815
- ],
- [
- 5.89998,
- 49.63907
- ],
- [
- 5.89934,
- 49.66239
- ],
- [
- 5.85656,
- 49.67628
- ],
- [
- 5.85628,
- 49.68211
- ],
- [
- 5.8757,
- 49.71118
- ],
- [
- 5.86481,
- 49.72331
- ],
- [
- 5.84325,
- 49.71822
- ],
- [
- 5.82191,
- 49.72128
- ],
- [
- 5.82489,
- 49.73767
- ],
- [
- 5.82073,
- 49.74878
- ],
- [
- 5.78626,
- 49.79079
- ],
- [
- 5.76517,
- 49.78961
- ],
- [
- 5.75094,
- 49.79094
- ],
- [
- 5.74159,
- 49.82126
- ],
- [
- 5.74581,
- 49.82435
- ],
- [
- 5.7372,
- 49.83353
- ],
- [
- 5.74053,
- 49.84142
- ],
- [
- 5.74701,
- 49.84048
- ],
- [
- 5.74624,
- 49.84783
- ],
- [
- 5.75399,
- 49.84878
- ],
- [
- 5.74066,
- 49.85152
- ],
- [
- 5.75229,
- 49.85922
- ],
- [
- 5.74955,
- 49.87554
- ],
- [
- 5.77567,
- 49.87438
- ],
- [
- 5.77505,
- 49.88057
- ],
- [
- 5.7346,
- 49.89341
- ],
- [
- 5.73303,
- 49.90285
- ],
- [
- 5.75783,
- 49.91737
- ],
- [
- 5.76039,
- 49.93252
- ],
- [
- 5.77073,
- 49.93711
- ],
- [
- 5.76878,
- 49.94239
- ],
- [
- 5.7688,
- 49.96104
- ],
- [
- 5.78672,
- 49.96816
- ],
- [
- 5.80524,
- 49.96677
- ],
- [
- 5.80652,
- 49.97321
- ],
- [
- 5.83129,
- 49.97995
- ],
- [
- 5.83462,
- 49.98656
- ],
- [
- 5.81806,
- 49.99936
- ],
- [
- 5.81561,
- 50.01437
- ],
- [
- 5.84792,
- 50.02809
- ],
- [
- 5.86189,
- 50.04581
- ],
- [
- 5.85087,
- 50.0563
- ],
- [
- 5.85781,
- 50.07186
- ],
- [
- 5.881,
- 50.08069
- ],
- [
- 5.89196,
- 50.12041
- ],
- [
- 5.95286,
- 50.13384
- ],
- [
- 5.96175,
- 50.17631
- ]
- ]
- ],
- "terms_url": "https://data.public.lu/en/datasets/carte-de-base-webservices-wms-et-wmts",
- "terms_text": "Administration du Cadastre et de la Topographie",
- "icon": "https://www.geoportail.lu/static/img/lion.png"
- },
- {
- "id": "basemap.at",
- "name": "basemap.at",
- "type": "tms",
- "template": "https://maps{switch:1,2,3,4}.wien.gv.at/basemap/geolandbasemap/normal/google3857/{zoom}/{y}/{x}.png",
- "scaleExtent": [
- 0,
- 19
- ],
- "polygon": [
- [
- [
- 16.50733,
- 46.99293
- ],
- [
- 16.28342,
- 46.99293
- ],
- [
- 16.13584,
- 46.8713
- ],
- [
- 15.98317,
- 46.81909
- ],
- [
- 16.04933,
- 46.65517
- ],
- [
- 15.86104,
- 46.71801
- ],
- [
- 15.75926,
- 46.69009
- ],
- [
- 15.56079,
- 46.67962
- ],
- [
- 15.57606,
- 46.63421
- ],
- [
- 15.47937,
- 46.60276
- ],
- [
- 15.43357,
- 46.65168
- ],
- [
- 15.22493,
- 46.63421
- ],
- [
- 15.04682,
- 46.64819
- ],
- [
- 14.99084,
- 46.58877
- ],
- [
- 14.9603,
- 46.62373
- ],
- [
- 14.85344,
- 46.60276
- ],
- [
- 14.83308,
- 46.50127
- ],
- [
- 14.75166,
- 46.49776
- ],
- [
- 14.68041,
- 46.43818
- ],
- [
- 14.61426,
- 46.43818
- ],
- [
- 14.57864,
- 46.37853
- ],
- [
- 14.44124,
- 46.43116
- ],
- [
- 14.16135,
- 46.42766
- ],
- [
- 14.12573,
- 46.47674
- ],
- [
- 14.01886,
- 46.47674
- ],
- [
- 13.91199,
- 46.52578
- ],
- [
- 13.82548,
- 46.50477
- ],
- [
- 13.44381,
- 46.56078
- ],
- [
- 13.30641,
- 46.55028
- ],
- [
- 13.1283,
- 46.58877
- ],
- [
- 12.84332,
- 46.61324
- ],
- [
- 12.72628,
- 46.6412
- ],
- [
- 12.51255,
- 46.66565
- ],
- [
- 12.35988,
- 46.70405
- ],
- [
- 12.36497,
- 46.77032
- ],
- [
- 12.28863,
- 46.77729
- ],
- [
- 12.27337,
- 46.88522
- ],
- [
- 12.20721,
- 46.87478
- ],
- [
- 12.13088,
- 46.90261
- ],
- [
- 12.11561,
- 46.99987
- ],
- [
- 12.25301,
- 47.06577
- ],
- [
- 12.2123,
- 47.0935
- ],
- [
- 11.9833,
- 47.04497
- ],
- [
- 11.73394,
- 46.96168
- ],
- [
- 11.63217,
- 47.01028
- ],
- [
- 11.54057,
- 46.97557
- ],
- [
- 11.49986,
- 47.00681
- ],
- [
- 11.41843,
- 46.96515
- ],
- [
- 11.25559,
- 46.97557
- ],
- [
- 11.1131,
- 46.91304
- ],
- [
- 11.04185,
- 46.76335
- ],
- [
- 10.88919,
- 46.75986
- ],
- [
- 10.74161,
- 46.78426
- ],
- [
- 10.70599,
- 46.86435
- ],
- [
- 10.57877,
- 46.83998
- ],
- [
- 10.45663,
- 46.85043
- ],
- [
- 10.47699,
- 46.92694
- ],
- [
- 10.38539,
- 46.98946
- ],
- [
- 10.23272,
- 46.86435
- ],
- [
- 10.12076,
- 46.83302
- ],
- [
- 9.86632,
- 46.94084
- ],
- [
- 9.90194,
- 47.00334
- ],
- [
- 9.68312,
- 47.05884
- ],
- [
- 9.61188,
- 47.03804
- ],
- [
- 9.63223,
- 47.12813
- ],
- [
- 9.58134,
- 47.1662
- ],
- [
- 9.54063,
- 47.26644
- ],
- [
- 9.60679,
- 47.34926
- ],
- [
- 9.67294,
- 47.36994
- ],
- [
- 9.64241,
- 47.44571
- ],
- [
- 9.56608,
- 47.48011
- ],
- [
- 9.71365,
- 47.52824
- ],
- [
- 9.7849,
- 47.59692
- ],
- [
- 9.83579,
- 47.54542
- ],
- [
- 9.94774,
- 47.53855
- ],
- [
- 10.09023,
- 47.44915
- ],
- [
- 10.11059,
- 47.36649
- ],
- [
- 10.2429,
- 47.38717
- ],
- [
- 10.18692,
- 47.2699
- ],
- [
- 10.32432,
- 47.29751
- ],
- [
- 10.48208,
- 47.44915
- ],
- [
- 10.43119,
- 47.48699
- ],
- [
- 10.44137,
- 47.59005
- ],
- [
- 10.48717,
- 47.55229
- ],
- [
- 10.54823,
- 47.53511
- ],
- [
- 10.59912,
- 47.56602
- ],
- [
- 10.75688,
- 47.53168
- ],
- [
- 10.88919,
- 47.54542
- ],
- [
- 10.94008,
- 47.48699
- ],
- [
- 10.99605,
- 47.39061
- ],
- [
- 11.23523,
- 47.44227
- ],
- [
- 11.28103,
- 47.3975
- ],
- [
- 11.42352,
- 47.51449
- ],
- [
- 11.57619,
- 47.50762
- ],
- [
- 11.60672,
- 47.59005
- ],
- [
- 11.83572,
- 47.58662
- ],
- [
- 12.00366,
- 47.62436
- ],
- [
- 12.20721,
- 47.60378
- ],
- [
- 12.16141,
- 47.69634
- ],
- [
- 12.2581,
- 47.74427
- ],
- [
- 12.25301,
- 47.67921
- ],
- [
- 12.43112,
- 47.71004
- ],
- [
- 12.49219,
- 47.63122
- ],
- [
- 12.56852,
- 47.62779
- ],
- [
- 12.62959,
- 47.68949
- ],
- [
- 12.77208,
- 47.66893
- ],
- [
- 12.83315,
- 47.54198
- ],
- [
- 12.97564,
- 47.47323
- ],
- [
- 13.04179,
- 47.49387
- ],
- [
- 13.0367,
- 47.55572
- ],
- [
- 13.09777,
- 47.64151
- ],
- [
- 13.03161,
- 47.71004
- ],
- [
- 12.90439,
- 47.72031
- ],
- [
- 13.00617,
- 47.84683
- ],
- [
- 12.9451,
- 47.93555
- ],
- [
- 12.86368,
- 47.95941
- ],
- [
- 12.86368,
- 48.00369
- ],
- [
- 12.75172,
- 48.09894
- ],
- [
- 12.87386,
- 48.21097
- ],
- [
- 12.96037,
- 48.21097
- ],
- [
- 13.04179,
- 48.2652
- ],
- [
- 13.18428,
- 48.29907
- ],
- [
- 13.26061,
- 48.2923
- ],
- [
- 13.39801,
- 48.35659
- ],
- [
- 13.44381,
- 48.41742
- ],
- [
- 13.43872,
- 48.55234
- ],
- [
- 13.50997,
- 48.58601
- ],
- [
- 13.61175,
- 48.57255
- ],
- [
- 13.72879,
- 48.5119
- ],
- [
- 13.78477,
- 48.57255
- ],
- [
- 13.82039,
- 48.62639
- ],
- [
- 13.79495,
- 48.71713
- ],
- [
- 13.85093,
- 48.77417
- ],
- [
- 14.05957,
- 48.66338
- ],
- [
- 14.01377,
- 48.63312
- ],
- [
- 14.07484,
- 48.59274
- ],
- [
- 14.21733,
- 48.59611
- ],
- [
- 14.3649,
- 48.54897
- ],
- [
- 14.46668,
- 48.64993
- ],
- [
- 14.55828,
- 48.59611
- ],
- [
- 14.59899,
- 48.62639
- ],
- [
- 14.72113,
- 48.57591
- ],
- [
- 14.72113,
- 48.6869
- ],
- [
- 14.8229,
- 48.7272
- ],
- [
- 14.81782,
- 48.77753
- ],
- [
- 14.96472,
- 48.78518
- ],
- [
- 14.98936,
- 49.01266
- ],
- [
- 15.14859,
- 48.99503
- ],
- [
- 15.19439,
- 48.93155
- ],
- [
- 15.30635,
- 48.98501
- ],
- [
- 15.39286,
- 48.98501
- ],
- [
- 15.48446,
- 48.92821
- ],
- [
- 15.74908,
- 48.8546
- ],
- [
- 15.84068,
- 48.88807
- ],
- [
- 16.00862,
- 48.78088
- ],
- [
- 16.20708,
- 48.73391
- ],
- [
- 16.39537,
- 48.73727
- ],
- [
- 16.49206,
- 48.81105
- ],
- [
- 16.69053,
- 48.77417
- ],
- [
- 16.7058,
- 48.73391
- ],
- [
- 16.89917,
- 48.71377
- ],
- [
- 16.97551,
- 48.51527
- ],
- [
- 16.84828,
- 48.45118
- ],
- [
- 16.85337,
- 48.34644
- ],
- [
- 16.95515,
- 48.25165
- ],
- [
- 16.99077,
- 48.1499
- ],
- [
- 17.09255,
- 48.13971
- ],
- [
- 17.08237,
- 48.02412
- ],
- [
- 17.17397,
- 48.02071
- ],
- [
- 17.08237,
- 47.87414
- ],
- [
- 16.98568,
- 47.86732
- ],
- [
- 17.08237,
- 47.80925
- ],
- [
- 17.09255,
- 47.70319
- ],
- [
- 16.74142,
- 47.67921
- ],
- [
- 16.7058,
- 47.75112
- ],
- [
- 16.53786,
- 47.75454
- ],
- [
- 16.54804,
- 47.70662
- ],
- [
- 16.42082,
- 47.66893
- ],
- [
- 16.57348,
- 47.6175
- ],
- [
- 16.67017,
- 47.63122
- ],
- [
- 16.71088,
- 47.53855
- ],
- [
- 16.66,
- 47.44915
- ],
- [
- 16.54295,
- 47.39406
- ],
- [
- 16.46153,
- 47.39406
- ],
- [
- 16.49206,
- 47.2768
- ],
- [
- 16.42591,
- 47.19733
- ],
- [
- 16.47171,
- 47.1489
- ],
- [
- 16.54804,
- 47.1489
- ],
- [
- 16.47679,
- 47.07964
- ],
- [
- 16.52768,
- 47.05884
- ],
- [
- 16.50733,
- 46.99293
- ]
- ]
- ],
- "terms_url": "https://basemap.at",
- "terms_text": "basemap.at",
- "description": "Basemap of Austria, based on government data.",
- "icon": "https://www.basemap.at/images/logo_basemap.jpg"
- },
- {
- "id": "basemap.at-orthofoto",
- "name": "basemap.at Orthofoto",
- "type": "tms",
- "template": "https://maps{switch:1,2,3,4}.wien.gv.at/basemap/bmaporthofoto30cm/normal/google3857/{zoom}/{y}/{x}.jpeg",
- "scaleExtent": [
- 0,
- 19
- ],
- "polygon": [
- [
- [
- 16.50733,
- 46.99293
- ],
- [
- 16.28342,
- 46.99293
- ],
- [
- 16.13584,
- 46.8713
- ],
- [
- 15.98317,
- 46.81909
- ],
- [
- 16.04933,
- 46.65517
- ],
- [
- 15.86104,
- 46.71801
- ],
- [
- 15.75926,
- 46.69009
- ],
- [
- 15.56079,
- 46.67962
- ],
- [
- 15.57606,
- 46.63421
- ],
- [
- 15.47937,
- 46.60276
- ],
- [
- 15.43357,
- 46.65168
- ],
- [
- 15.22493,
- 46.63421
- ],
- [
- 15.04682,
- 46.64819
- ],
- [
- 14.99084,
- 46.58877
- ],
- [
- 14.9603,
- 46.62373
- ],
- [
- 14.85344,
- 46.60276
- ],
- [
- 14.83308,
- 46.50127
- ],
- [
- 14.75166,
- 46.49776
- ],
- [
- 14.68041,
- 46.43818
- ],
- [
- 14.61426,
- 46.43818
- ],
- [
- 14.57864,
- 46.37853
- ],
- [
- 14.44124,
- 46.43116
- ],
- [
- 14.16135,
- 46.42766
- ],
- [
- 14.12573,
- 46.47674
- ],
- [
- 14.01886,
- 46.47674
- ],
- [
- 13.91199,
- 46.52578
- ],
- [
- 13.82548,
- 46.50477
- ],
- [
- 13.44381,
- 46.56078
- ],
- [
- 13.30641,
- 46.55028
- ],
- [
- 13.1283,
- 46.58877
- ],
- [
- 12.84332,
- 46.61324
- ],
- [
- 12.72628,
- 46.6412
- ],
- [
- 12.51255,
- 46.66565
- ],
- [
- 12.35988,
- 46.70405
- ],
- [
- 12.36497,
- 46.77032
- ],
- [
- 12.28863,
- 46.77729
- ],
- [
- 12.27337,
- 46.88522
- ],
- [
- 12.20721,
- 46.87478
- ],
- [
- 12.13088,
- 46.90261
- ],
- [
- 12.11561,
- 46.99987
- ],
- [
- 12.25301,
- 47.06577
- ],
- [
- 12.2123,
- 47.0935
- ],
- [
- 11.9833,
- 47.04497
- ],
- [
- 11.73394,
- 46.96168
- ],
- [
- 11.63217,
- 47.01028
- ],
- [
- 11.54057,
- 46.97557
- ],
- [
- 11.49986,
- 47.00681
- ],
- [
- 11.41843,
- 46.96515
- ],
- [
- 11.25559,
- 46.97557
- ],
- [
- 11.1131,
- 46.91304
- ],
- [
- 11.04185,
- 46.76335
- ],
- [
- 10.88919,
- 46.75986
- ],
- [
- 10.74161,
- 46.78426
- ],
- [
- 10.70599,
- 46.86435
- ],
- [
- 10.57877,
- 46.83998
- ],
- [
- 10.45663,
- 46.85043
- ],
- [
- 10.47699,
- 46.92694
- ],
- [
- 10.38539,
- 46.98946
- ],
- [
- 10.23272,
- 46.86435
- ],
- [
- 10.12076,
- 46.83302
- ],
- [
- 9.86632,
- 46.94084
- ],
- [
- 9.90194,
- 47.00334
- ],
- [
- 9.68312,
- 47.05884
- ],
- [
- 9.61188,
- 47.03804
- ],
- [
- 9.63223,
- 47.12813
- ],
- [
- 9.58134,
- 47.1662
- ],
- [
- 9.54063,
- 47.26644
- ],
- [
- 9.60679,
- 47.34926
- ],
- [
- 9.67294,
- 47.36994
- ],
- [
- 9.64241,
- 47.44571
- ],
- [
- 9.56608,
- 47.48011
- ],
- [
- 9.71365,
- 47.52824
- ],
- [
- 9.7849,
- 47.59692
- ],
- [
- 9.83579,
- 47.54542
- ],
- [
- 9.94774,
- 47.53855
- ],
- [
- 10.09023,
- 47.44915
- ],
- [
- 10.11059,
- 47.36649
- ],
- [
- 10.2429,
- 47.38717
- ],
- [
- 10.18692,
- 47.2699
- ],
- [
- 10.32432,
- 47.29751
- ],
- [
- 10.48208,
- 47.44915
- ],
- [
- 10.43119,
- 47.48699
- ],
- [
- 10.44137,
- 47.59005
- ],
- [
- 10.48717,
- 47.55229
- ],
- [
- 10.54823,
- 47.53511
- ],
- [
- 10.59912,
- 47.56602
- ],
- [
- 10.75688,
- 47.53168
- ],
- [
- 10.88919,
- 47.54542
- ],
- [
- 10.94008,
- 47.48699
- ],
- [
- 10.99605,
- 47.39061
- ],
- [
- 11.23523,
- 47.44227
- ],
- [
- 11.28103,
- 47.3975
- ],
- [
- 11.42352,
- 47.51449
- ],
- [
- 11.57619,
- 47.50762
- ],
- [
- 11.60672,
- 47.59005
- ],
- [
- 11.83572,
- 47.58662
- ],
- [
- 12.00366,
- 47.62436
- ],
- [
- 12.20721,
- 47.60378
- ],
- [
- 12.16141,
- 47.69634
- ],
- [
- 12.2581,
- 47.74427
- ],
- [
- 12.25301,
- 47.67921
- ],
- [
- 12.43112,
- 47.71004
- ],
- [
- 12.49219,
- 47.63122
- ],
- [
- 12.56852,
- 47.62779
- ],
- [
- 12.62959,
- 47.68949
- ],
- [
- 12.77208,
- 47.66893
- ],
- [
- 12.83315,
- 47.54198
- ],
- [
- 12.97564,
- 47.47323
- ],
- [
- 13.04179,
- 47.49387
- ],
- [
- 13.0367,
- 47.55572
- ],
- [
- 13.09777,
- 47.64151
- ],
- [
- 13.03161,
- 47.71004
- ],
- [
- 12.90439,
- 47.72031
- ],
- [
- 13.00617,
- 47.84683
- ],
- [
- 12.9451,
- 47.93555
- ],
- [
- 12.86368,
- 47.95941
- ],
- [
- 12.86368,
- 48.00369
- ],
- [
- 12.75172,
- 48.09894
- ],
- [
- 12.87386,
- 48.21097
- ],
- [
- 12.96037,
- 48.21097
- ],
- [
- 13.04179,
- 48.2652
- ],
- [
- 13.18428,
- 48.29907
- ],
- [
- 13.26061,
- 48.2923
- ],
- [
- 13.39801,
- 48.35659
- ],
- [
- 13.44381,
- 48.41742
- ],
- [
- 13.43872,
- 48.55234
- ],
- [
- 13.50997,
- 48.58601
- ],
- [
- 13.61175,
- 48.57255
- ],
- [
- 13.72879,
- 48.5119
- ],
- [
- 13.78477,
- 48.57255
- ],
- [
- 13.82039,
- 48.62639
- ],
- [
- 13.79495,
- 48.71713
- ],
- [
- 13.85093,
- 48.77417
- ],
- [
- 14.05957,
- 48.66338
- ],
- [
- 14.01377,
- 48.63312
- ],
- [
- 14.07484,
- 48.59274
- ],
- [
- 14.21733,
- 48.59611
- ],
- [
- 14.3649,
- 48.54897
- ],
- [
- 14.46668,
- 48.64993
- ],
- [
- 14.55828,
- 48.59611
- ],
- [
- 14.59899,
- 48.62639
- ],
- [
- 14.72113,
- 48.57591
- ],
- [
- 14.72113,
- 48.6869
- ],
- [
- 14.8229,
- 48.7272
- ],
- [
- 14.81782,
- 48.77753
- ],
- [
- 14.96472,
- 48.78518
- ],
- [
- 14.98936,
- 49.01266
- ],
- [
- 15.14859,
- 48.99503
- ],
- [
- 15.19439,
- 48.93155
- ],
- [
- 15.30635,
- 48.98501
- ],
- [
- 15.39286,
- 48.98501
- ],
- [
- 15.48446,
- 48.92821
- ],
- [
- 15.74908,
- 48.8546
- ],
- [
- 15.84068,
- 48.88807
- ],
- [
- 16.00862,
- 48.78088
- ],
- [
- 16.20708,
- 48.73391
- ],
- [
- 16.39537,
- 48.73727
- ],
- [
- 16.49206,
- 48.81105
- ],
- [
- 16.69053,
- 48.77417
- ],
- [
- 16.7058,
- 48.73391
- ],
- [
- 16.89917,
- 48.71377
- ],
- [
- 16.97551,
- 48.51527
- ],
- [
- 16.84828,
- 48.45118
- ],
- [
- 16.85337,
- 48.34644
- ],
- [
- 16.95515,
- 48.25165
- ],
- [
- 16.99077,
- 48.1499
- ],
- [
- 17.09255,
- 48.13971
- ],
- [
- 17.08237,
- 48.02412
- ],
- [
- 17.17397,
- 48.02071
- ],
- [
- 17.08237,
- 47.87414
- ],
- [
- 16.98568,
- 47.86732
- ],
- [
- 17.08237,
- 47.80925
- ],
- [
- 17.09255,
- 47.70319
- ],
- [
- 16.74142,
- 47.67921
- ],
- [
- 16.7058,
- 47.75112
- ],
- [
- 16.53786,
- 47.75454
- ],
- [
- 16.54804,
- 47.70662
- ],
- [
- 16.42082,
- 47.66893
- ],
- [
- 16.57348,
- 47.6175
- ],
- [
- 16.67017,
- 47.63122
- ],
- [
- 16.71088,
- 47.53855
- ],
- [
- 16.66,
- 47.44915
- ],
- [
- 16.54295,
- 47.39406
- ],
- [
- 16.46153,
- 47.39406
- ],
- [
- 16.49206,
- 47.2768
- ],
- [
- 16.42591,
- 47.19733
- ],
- [
- 16.47171,
- 47.1489
- ],
- [
- 16.54804,
- 47.1489
- ],
- [
- 16.47679,
- 47.07964
- ],
- [
- 16.52768,
- 47.05884
- ],
- [
- 16.50733,
- 46.99293
- ]
- ]
- ],
- "terms_url": "https://basemap.at",
- "terms_text": "basemap.at",
- "best": true,
- "description": "Orthofoto layer provided by basemap.at. \"Successor\" of geoimage.at imagery.",
- "icon": "https://www.basemap.at/images/logo_basemap.jpg"
- },
- {
- "id": "bavaria-2m",
- "name": "Bavaria (2 m)",
- "type": "wms",
- "template": "https://geodaten.bayern.de/ogc/ogc_dop200_oa.cgi?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=adv_dop200c&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:4326",
- "scaleExtent": [
- 8,
- 18
- ],
- "polygon": [
- [
- [
- 10.12359,
- 50.56846
- ],
- [
- 10.14286,
- 50.55078
- ],
- [
- 10.20281,
- 50.55742
- ],
- [
- 10.25205,
- 50.51796
- ],
- [
- 10.32698,
- 50.49345
- ],
- [
- 10.41048,
- 50.41848
- ],
- [
- 10.60317,
- 50.33109
- ],
- [
- 10.62244,
- 50.2271
- ],
- [
- 10.72521,
- 50.21066
- ],
- [
- 10.72949,
- 50.24765
- ],
- [
- 10.85153,
- 50.24354
- ],
- [
- 10.71879,
- 50.32015
- ],
- [
- 10.71236,
- 50.36524
- ],
- [
- 10.85581,
- 50.39664
- ],
- [
- 10.93717,
- 50.39664
- ],
- [
- 10.99069,
- 50.36661
- ],
- [
- 11.12772,
- 50.36661
- ],
- [
- 11.1791,
- 50.31332
- ],
- [
- 11.16197,
- 50.29417
- ],
- [
- 11.24119,
- 50.2928
- ],
- [
- 11.24975,
- 50.37344
- ],
- [
- 11.24119,
- 50.47982
- ],
- [
- 11.35895,
- 50.5234
- ],
- [
- 11.43816,
- 50.50979
- ],
- [
- 11.44244,
- 50.48936
- ],
- [
- 11.42532,
- 50.4771
- ],
- [
- 11.42532,
- 50.44166
- ],
- [
- 11.48955,
- 50.42257
- ],
- [
- 11.49169,
- 50.39801
- ],
- [
- 11.51952,
- 50.39801
- ],
- [
- 11.52594,
- 50.37617
- ],
- [
- 11.59874,
- 50.40347
- ],
- [
- 11.63727,
- 50.38845
- ],
- [
- 11.79357,
- 50.4212
- ],
- [
- 11.83639,
- 50.39255
- ],
- [
- 11.92203,
- 50.42802
- ],
- [
- 11.98626,
- 50.38709
- ],
- [
- 11.98412,
- 50.35705
- ],
- [
- 12.04835,
- 50.33109
- ],
- [
- 12.09331,
- 50.32972
- ],
- [
- 12.1297,
- 50.29828
- ],
- [
- 12.14041,
- 50.27228
- ],
- [
- 12.10615,
- 50.25586
- ],
- [
- 12.11258,
- 50.23532
- ],
- [
- 12.14897,
- 50.23669
- ],
- [
- 12.19822,
- 50.20107
- ],
- [
- 12.22391,
- 50.16406
- ],
- [
- 12.20464,
- 50.14348
- ],
- [
- 12.20678,
- 50.10779
- ],
- [
- 12.24318,
- 50.09955
- ],
- [
- 12.27743,
- 50.07208
- ],
- [
- 12.49367,
- 49.98543
- ],
- [
- 12.49796,
- 49.94136
- ],
- [
- 12.55576,
- 49.92206
- ],
- [
- 12.54934,
- 49.86827
- ],
- [
- 12.48083,
- 49.78817
- ],
- [
- 12.41018,
- 49.75775
- ],
- [
- 12.46156,
- 49.70655
- ],
- [
- 12.5472,
- 49.68023
- ],
- [
- 12.58788,
- 49.55261
- ],
- [
- 12.65425,
- 49.53455
- ],
- [
- 12.66281,
- 49.43302
- ],
- [
- 12.75274,
- 49.41073
- ],
- [
- 12.7977,
- 49.34661
- ],
- [
- 12.90475,
- 49.35638
- ],
- [
- 12.99681,
- 49.33685
- ],
- [
- 13.05462,
- 49.27543
- ],
- [
- 13.13169,
- 49.21952
- ],
- [
- 13.19164,
- 49.14395
- ],
- [
- 13.2366,
- 49.12153
- ],
- [
- 13.29655,
- 49.12293
- ],
- [
- 13.37148,
- 49.08088
- ],
- [
- 13.4143,
- 49.02897
- ],
- [
- 13.4143,
- 48.97981
- ],
- [
- 13.57916,
- 48.96997
- ],
- [
- 13.63483,
- 48.94326
- ],
- [
- 13.67765,
- 48.88698
- ],
- [
- 13.73759,
- 48.89261
- ],
- [
- 13.7847,
- 48.83346
- ],
- [
- 13.84036,
- 48.77423
- ],
- [
- 13.81681,
- 48.70646
- ],
- [
- 13.84464,
- 48.70081
- ],
- [
- 13.8425,
- 48.60038
- ],
- [
- 13.76543,
- 48.5423
- ],
- [
- 13.75258,
- 48.50401
- ],
- [
- 13.67122,
- 48.50543
- ],
- [
- 13.64339,
- 48.54371
- ],
- [
- 13.45712,
- 48.5508
- ],
- [
- 13.45712,
- 48.41598
- ],
- [
- 13.40574,
- 48.36053
- ],
- [
- 13.2837,
- 48.27511
- ],
- [
- 13.09315,
- 48.26941
- ],
- [
- 12.95827,
- 48.19097
- ],
- [
- 12.87691,
- 48.18526
- ],
- [
- 12.772,
- 48.09382
- ],
- [
- 12.86407,
- 48.01368
- ],
- [
- 12.89832,
- 47.95492
- ],
- [
- 12.94543,
- 47.95636
- ],
- [
- 12.99681,
- 47.88461
- ],
- [
- 13.01394,
- 47.83434
- ],
- [
- 12.93472,
- 47.7322
- ],
- [
- 13.0589,
- 47.72499
- ],
- [
- 13.11885,
- 47.63851
- ],
- [
- 13.06532,
- 47.56922
- ],
- [
- 13.05676,
- 47.47379
- ],
- [
- 13.00323,
- 47.45208
- ],
- [
- 12.76772,
- 47.55044
- ],
- [
- 12.76986,
- 47.63274
- ],
- [
- 12.73989,
- 47.67312
- ],
- [
- 12.6671,
- 47.67024
- ],
- [
- 12.57503,
- 47.6212
- ],
- [
- 12.48083,
- 47.61975
- ],
- [
- 12.41446,
- 47.67024
- ],
- [
- 12.24318,
- 47.67745
- ],
- [
- 12.2132,
- 47.69186
- ],
- [
- 12.19179,
- 47.68177
- ],
- [
- 12.2132,
- 47.66591
- ],
- [
- 12.21106,
- 47.60388
- ],
- [
- 12.17467,
- 47.59521
- ],
- [
- 12.13827,
- 47.60388
- ],
- [
- 11.89205,
- 47.60388
- ],
- [
- 11.85137,
- 47.57933
- ],
- [
- 11.63942,
- 47.58222
- ],
- [
- 11.59445,
- 47.54899
- ],
- [
- 11.59017,
- 47.51285
- ],
- [
- 11.51738,
- 47.49839
- ],
- [
- 11.4403,
- 47.50417
- ],
- [
- 11.39534,
- 47.47524
- ],
- [
- 11.42746,
- 47.44484
- ],
- [
- 11.3461,
- 47.44339
- ],
- [
- 11.27973,
- 47.39559
- ],
- [
- 11.21336,
- 47.38834
- ],
- [
- 11.24761,
- 47.43181
- ],
- [
- 11.10203,
- 47.39269
- ],
- [
- 10.965,
- 47.38979
- ],
- [
- 10.97785,
- 47.43615
- ],
- [
- 10.9179,
- 47.47524
- ],
- [
- 10.8708,
- 47.47524
- ],
- [
- 10.85581,
- 47.49405
- ],
- [
- 10.90077,
- 47.5143
- ],
- [
- 10.87294,
- 47.53598
- ],
- [
- 10.81085,
- 47.51285
- ],
- [
- 10.64385,
- 47.54899
- ],
- [
- 10.59461,
- 47.55477
- ],
- [
- 10.57962,
- 47.52876
- ],
- [
- 10.46187,
- 47.54032
- ],
- [
- 10.46615,
- 47.48392
- ],
- [
- 10.48756,
- 47.47813
- ],
- [
- 10.48756,
- 47.41298
- ],
- [
- 10.45973,
- 47.40283
- ],
- [
- 10.45973,
- 47.37529
- ],
- [
- 10.41048,
- 47.37384
- ],
- [
- 10.40834,
- 47.34339
- ],
- [
- 10.32056,
- 47.28678
- ],
- [
- 10.28202,
- 47.27806
- ],
- [
- 10.28416,
- 47.26208
- ],
- [
- 10.14714,
- 47.26208
- ],
- [
- 10.1921,
- 47.30275
- ],
- [
- 10.19424,
- 47.37384
- ],
- [
- 10.16641,
- 47.37384
- ],
- [
- 10.16641,
- 47.34629
- ],
- [
- 10.10004,
- 47.34339
- ],
- [
- 10.0615,
- 47.36369
- ],
- [
- 10.06792,
- 47.41877
- ],
- [
- 10.09361,
- 47.42601
- ],
- [
- 10.09576,
- 47.44194
- ],
- [
- 9.978,
- 47.48537
- ],
- [
- 9.95659,
- 47.52731
- ],
- [
- 9.8945,
- 47.52876
- ],
- [
- 9.85596,
- 47.50851
- ],
- [
- 9.81743,
- 47.54465
- ],
- [
- 9.82171,
- 47.57644
- ],
- [
- 9.77461,
- 47.58222
- ],
- [
- 9.73821,
- 47.52586
- ],
- [
- 9.67398,
- 47.53454
- ],
- [
- 9.58406,
- 47.56488
- ],
- [
- 9.63972,
- 47.60532
- ],
- [
- 9.7168,
- 47.60388
- ],
- [
- 9.85596,
- 47.676
- ],
- [
- 9.978,
- 47.65582
- ],
- [
- 10.02938,
- 47.68177
- ],
- [
- 10.10004,
- 47.66735
- ],
- [
- 10.13215,
- 47.676
- ],
- [
- 10.14286,
- 47.70195
- ],
- [
- 10.0615,
- 47.7725
- ],
- [
- 10.11288,
- 47.8099
- ],
- [
- 10.08291,
- 47.85302
- ],
- [
- 10.1086,
- 47.90902
- ],
- [
- 10.07649,
- 47.96496
- ],
- [
- 10.13001,
- 48.02084
- ],
- [
- 10.13429,
- 48.10669
- ],
- [
- 10.10004,
- 48.12813
- ],
- [
- 10.05508,
- 48.26228
- ],
- [
- 9.96944,
- 48.36765
- ],
- [
- 10.03153,
- 48.42593
- ],
- [
- 10.02938,
- 48.46144
- ],
- [
- 10.12359,
- 48.47705
- ],
- [
- 10.15356,
- 48.4515
- ],
- [
- 10.23492,
- 48.51252
- ],
- [
- 10.31628,
- 48.51678
- ],
- [
- 10.29915,
- 48.61878
- ],
- [
- 10.24563,
- 48.6683
- ],
- [
- 10.27346,
- 48.70646
- ],
- [
- 10.3698,
- 48.68385
- ],
- [
- 10.43189,
- 48.69939
- ],
- [
- 10.45116,
- 48.72765
- ],
- [
- 10.40192,
- 48.746
- ],
- [
- 10.44046,
- 48.84896
- ],
- [
- 10.43403,
- 48.95873
- ],
- [
- 10.33769,
- 49.02055
- ],
- [
- 10.24991,
- 49.03599
- ],
- [
- 10.24991,
- 49.07387
- ],
- [
- 10.20066,
- 49.10331
- ],
- [
- 10.25205,
- 49.13274
- ],
- [
- 10.12359,
- 49.19714
- ],
- [
- 10.11931,
- 49.26285
- ],
- [
- 10.15142,
- 49.28939
- ],
- [
- 10.10432,
- 49.34522
- ],
- [
- 10.14072,
- 49.39401
- ],
- [
- 10.1086,
- 49.44555
- ],
- [
- 10.11074,
- 49.50537
- ],
- [
- 10.0722,
- 49.53316
- ],
- [
- 10.01654,
- 49.47616
- ],
- [
- 9.92662,
- 49.47894
- ],
- [
- 9.92448,
- 49.55678
- ],
- [
- 9.89878,
- 49.58177
- ],
- [
- 9.85596,
- 49.53872
- ],
- [
- 9.80672,
- 49.55678
- ],
- [
- 9.86667,
- 49.60675
- ],
- [
- 9.85382,
- 49.6442
- ],
- [
- 9.81743,
- 49.66083
- ],
- [
- 9.83455,
- 49.68993
- ],
- [
- 9.79602,
- 49.72039
- ],
- [
- 9.75748,
- 49.70793
- ],
- [
- 9.74035,
- 49.68577
- ],
- [
- 9.70609,
- 49.71624
- ],
- [
- 9.67826,
- 49.71624
- ],
- [
- 9.68254,
- 49.68854
- ],
- [
- 9.62045,
- 49.69131
- ],
- [
- 9.64615,
- 49.78955
- ],
- [
- 9.55836,
- 49.77434
- ],
- [
- 9.57121,
- 49.73561
- ],
- [
- 9.50698,
- 49.75222
- ],
- [
- 9.49199,
- 49.77987
- ],
- [
- 9.46844,
- 49.76051
- ],
- [
- 9.42562,
- 49.77849
- ],
- [
- 9.40421,
- 49.76466
- ],
- [
- 9.33356,
- 49.7702
- ],
- [
- 9.32928,
- 49.73423
- ],
- [
- 9.4085,
- 49.72593
- ],
- [
- 9.42776,
- 49.69824
- ],
- [
- 9.41492,
- 49.6442
- ],
- [
- 9.38066,
- 49.63865
- ],
- [
- 9.35925,
- 49.64974
- ],
- [
- 9.33998,
- 49.63727
- ],
- [
- 9.31215,
- 49.64836
- ],
- [
- 9.27789,
- 49.62617
- ],
- [
- 9.28432,
- 49.60814
- ],
- [
- 9.2415,
- 49.57483
- ],
- [
- 9.09805,
- 49.57205
- ],
- [
- 9.06594,
- 49.60814
- ],
- [
- 9.10019,
- 49.65113
- ],
- [
- 9.09163,
- 49.6927
- ],
- [
- 9.13017,
- 49.71208
- ],
- [
- 9.13873,
- 49.74253
- ],
- [
- 9.10876,
- 49.75637
- ],
- [
- 9.13659,
- 49.79093
- ],
- [
- 9.10019,
- 49.78955
- ],
- [
- 9.07236,
- 49.82824
- ],
- [
- 9.03596,
- 49.83514
- ],
- [
- 9.01669,
- 50.02671
- ],
- [
- 8.96317,
- 50.03084
- ],
- [
- 8.95674,
- 50.05971
- ],
- [
- 9.00171,
- 50.0707
- ],
- [
- 9.02097,
- 50.11054
- ],
- [
- 9.1216,
- 50.12289
- ],
- [
- 9.15586,
- 50.11328
- ],
- [
- 9.19654,
- 50.11878
- ],
- [
- 9.18583,
- 50.13525
- ],
- [
- 9.23507,
- 50.1476
- ],
- [
- 9.37638,
- 50.12701
- ],
- [
- 9.4085,
- 50.0817
- ],
- [
- 9.52197,
- 50.09543
- ],
- [
- 9.50484,
- 50.14211
- ],
- [
- 9.53267,
- 50.16406
- ],
- [
- 9.48985,
- 50.16954
- ],
- [
- 9.49413,
- 50.24354
- ],
- [
- 9.61403,
- 50.22163
- ],
- [
- 9.66541,
- 50.23532
- ],
- [
- 9.63544,
- 50.24901
- ],
- [
- 9.66756,
- 50.27228
- ],
- [
- 9.74249,
- 50.30922
- ],
- [
- 9.72964,
- 50.35841
- ],
- [
- 9.77032,
- 50.42939
- ],
- [
- 9.86881,
- 50.40074
- ],
- [
- 9.91805,
- 50.40893
- ],
- [
- 10.03581,
- 50.47982
- ],
- [
- 10.03795,
- 50.51115
- ],
- [
- 10.12359,
- 50.56846
- ]
- ]
- ],
- "terms_url": "https://www.ldbv.bayern.de/",
- "terms_text": "Bayerische Vermessungsverwaltung"
- },
- {
- "id": "bavaria-DOP80",
- "name": "Bavaria DOP 80cm",
- "type": "tms",
- "template": "https://mapproxy.osm.ch/tiles/BAYERNDOP80/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
- "scaleExtent": [
- 7,
- 18
- ],
- "polygon": [
- [
- [
- 10.12359,
- 50.56846
- ],
- [
- 10.14286,
- 50.55078
- ],
- [
- 10.20281,
- 50.55742
- ],
- [
- 10.25205,
- 50.51796
- ],
- [
- 10.32698,
- 50.49345
- ],
- [
- 10.41048,
- 50.41848
- ],
- [
- 10.60317,
- 50.33109
- ],
- [
- 10.62244,
- 50.2271
- ],
- [
- 10.72521,
- 50.21066
- ],
- [
- 10.72949,
- 50.24765
- ],
- [
- 10.85153,
- 50.24354
- ],
- [
- 10.71879,
- 50.32015
- ],
- [
- 10.71236,
- 50.36524
- ],
- [
- 10.85581,
- 50.39664
- ],
- [
- 10.93717,
- 50.39664
- ],
- [
- 10.99069,
- 50.36661
- ],
- [
- 11.12772,
- 50.36661
- ],
- [
- 11.1791,
- 50.31332
- ],
- [
- 11.16197,
- 50.29417
- ],
- [
- 11.24119,
- 50.2928
- ],
- [
- 11.24975,
- 50.37344
- ],
- [
- 11.24119,
- 50.47982
- ],
- [
- 11.35895,
- 50.5234
- ],
- [
- 11.43816,
- 50.50979
- ],
- [
- 11.44244,
- 50.48936
- ],
- [
- 11.42532,
- 50.4771
- ],
- [
- 11.42532,
- 50.44166
- ],
- [
- 11.48955,
- 50.42257
- ],
- [
- 11.49169,
- 50.39801
- ],
- [
- 11.51952,
- 50.39801
- ],
- [
- 11.52594,
- 50.37617
- ],
- [
- 11.59874,
- 50.40347
- ],
- [
- 11.63727,
- 50.38845
- ],
- [
- 11.79357,
- 50.4212
- ],
- [
- 11.83639,
- 50.39255
- ],
- [
- 11.92203,
- 50.42802
- ],
- [
- 11.98626,
- 50.38709
- ],
- [
- 11.98412,
- 50.35705
- ],
- [
- 12.04835,
- 50.33109
- ],
- [
- 12.09331,
- 50.32972
- ],
- [
- 12.1297,
- 50.29828
- ],
- [
- 12.14041,
- 50.27228
- ],
- [
- 12.10615,
- 50.25586
- ],
- [
- 12.11258,
- 50.23532
- ],
- [
- 12.14897,
- 50.23669
- ],
- [
- 12.19822,
- 50.20107
- ],
- [
- 12.22391,
- 50.16406
- ],
- [
- 12.20464,
- 50.14348
- ],
- [
- 12.20678,
- 50.10779
- ],
- [
- 12.24318,
- 50.09955
- ],
- [
- 12.27743,
- 50.07208
- ],
- [
- 12.49367,
- 49.98543
- ],
- [
- 12.49796,
- 49.94136
- ],
- [
- 12.55576,
- 49.92206
- ],
- [
- 12.54934,
- 49.86827
- ],
- [
- 12.48083,
- 49.78817
- ],
- [
- 12.41018,
- 49.75775
- ],
- [
- 12.46156,
- 49.70655
- ],
- [
- 12.5472,
- 49.68023
- ],
- [
- 12.58788,
- 49.55261
- ],
- [
- 12.65425,
- 49.53455
- ],
- [
- 12.66281,
- 49.43302
- ],
- [
- 12.75274,
- 49.41073
- ],
- [
- 12.7977,
- 49.34661
- ],
- [
- 12.90475,
- 49.35638
- ],
- [
- 12.99681,
- 49.33685
- ],
- [
- 13.05462,
- 49.27543
- ],
- [
- 13.13169,
- 49.21952
- ],
- [
- 13.19164,
- 49.14395
- ],
- [
- 13.2366,
- 49.12153
- ],
- [
- 13.29655,
- 49.12293
- ],
- [
- 13.37148,
- 49.08088
- ],
- [
- 13.4143,
- 49.02897
- ],
- [
- 13.4143,
- 48.97981
- ],
- [
- 13.57916,
- 48.96997
- ],
- [
- 13.63483,
- 48.94326
- ],
- [
- 13.67765,
- 48.88698
- ],
- [
- 13.73759,
- 48.89261
- ],
- [
- 13.7847,
- 48.83346
- ],
- [
- 13.84036,
- 48.77423
- ],
- [
- 13.81681,
- 48.70646
- ],
- [
- 13.84464,
- 48.70081
- ],
- [
- 13.8425,
- 48.60038
- ],
- [
- 13.76543,
- 48.5423
- ],
- [
- 13.75258,
- 48.50401
- ],
- [
- 13.67122,
- 48.50543
- ],
- [
- 13.64339,
- 48.54371
- ],
- [
- 13.45712,
- 48.5508
- ],
- [
- 13.45712,
- 48.41598
- ],
- [
- 13.40574,
- 48.36053
- ],
- [
- 13.2837,
- 48.27511
- ],
- [
- 13.09315,
- 48.26941
- ],
- [
- 12.95827,
- 48.19097
- ],
- [
- 12.87691,
- 48.18526
- ],
- [
- 12.772,
- 48.09382
- ],
- [
- 12.86407,
- 48.01368
- ],
- [
- 12.89832,
- 47.95492
- ],
- [
- 12.94543,
- 47.95636
- ],
- [
- 12.99681,
- 47.88461
- ],
- [
- 13.01394,
- 47.83434
- ],
- [
- 12.93472,
- 47.7322
- ],
- [
- 13.0589,
- 47.72499
- ],
- [
- 13.11885,
- 47.63851
- ],
- [
- 13.06532,
- 47.56922
- ],
- [
- 13.05676,
- 47.47379
- ],
- [
- 13.00323,
- 47.45208
- ],
- [
- 12.76772,
- 47.55044
- ],
- [
- 12.76986,
- 47.63274
- ],
- [
- 12.73989,
- 47.67312
- ],
- [
- 12.6671,
- 47.67024
- ],
- [
- 12.57503,
- 47.6212
- ],
- [
- 12.48083,
- 47.61975
- ],
- [
- 12.41446,
- 47.67024
- ],
- [
- 12.24318,
- 47.67745
- ],
- [
- 12.2132,
- 47.69186
- ],
- [
- 12.19179,
- 47.68177
- ],
- [
- 12.2132,
- 47.66591
- ],
- [
- 12.21106,
- 47.60388
- ],
- [
- 12.17467,
- 47.59521
- ],
- [
- 12.13827,
- 47.60388
- ],
- [
- 11.89205,
- 47.60388
- ],
- [
- 11.85137,
- 47.57933
- ],
- [
- 11.63942,
- 47.58222
- ],
- [
- 11.59445,
- 47.54899
- ],
- [
- 11.59017,
- 47.51285
- ],
- [
- 11.51738,
- 47.49839
- ],
- [
- 11.4403,
- 47.50417
- ],
- [
- 11.39534,
- 47.47524
- ],
- [
- 11.42746,
- 47.44484
- ],
- [
- 11.3461,
- 47.44339
- ],
- [
- 11.27973,
- 47.39559
- ],
- [
- 11.21336,
- 47.38834
- ],
- [
- 11.24761,
- 47.43181
- ],
- [
- 11.10203,
- 47.39269
- ],
- [
- 10.965,
- 47.38979
- ],
- [
- 10.97785,
- 47.43615
- ],
- [
- 10.9179,
- 47.47524
- ],
- [
- 10.8708,
- 47.47524
- ],
- [
- 10.85581,
- 47.49405
- ],
- [
- 10.90077,
- 47.5143
- ],
- [
- 10.87294,
- 47.53598
- ],
- [
- 10.81085,
- 47.51285
- ],
- [
- 10.64385,
- 47.54899
- ],
- [
- 10.59461,
- 47.55477
- ],
- [
- 10.57962,
- 47.52876
- ],
- [
- 10.46187,
- 47.54032
- ],
- [
- 10.46615,
- 47.48392
- ],
- [
- 10.48756,
- 47.47813
- ],
- [
- 10.48756,
- 47.41298
- ],
- [
- 10.45973,
- 47.40283
- ],
- [
- 10.45973,
- 47.37529
- ],
- [
- 10.41048,
- 47.37384
- ],
- [
- 10.40834,
- 47.34339
- ],
- [
- 10.32056,
- 47.28678
- ],
- [
- 10.28202,
- 47.27806
- ],
- [
- 10.28416,
- 47.26208
- ],
- [
- 10.14714,
- 47.26208
- ],
- [
- 10.1921,
- 47.30275
- ],
- [
- 10.19424,
- 47.37384
- ],
- [
- 10.16641,
- 47.37384
- ],
- [
- 10.16641,
- 47.34629
- ],
- [
- 10.10004,
- 47.34339
- ],
- [
- 10.0615,
- 47.36369
- ],
- [
- 10.06792,
- 47.41877
- ],
- [
- 10.09361,
- 47.42601
- ],
- [
- 10.09576,
- 47.44194
- ],
- [
- 9.978,
- 47.48537
- ],
- [
- 9.95659,
- 47.52731
- ],
- [
- 9.8945,
- 47.52876
- ],
- [
- 9.85596,
- 47.50851
- ],
- [
- 9.81743,
- 47.54465
- ],
- [
- 9.82171,
- 47.57644
- ],
- [
- 9.77461,
- 47.58222
- ],
- [
- 9.73821,
- 47.52586
- ],
- [
- 9.67398,
- 47.53454
- ],
- [
- 9.58406,
- 47.56488
- ],
- [
- 9.63972,
- 47.60532
- ],
- [
- 9.7168,
- 47.60388
- ],
- [
- 9.85596,
- 47.676
- ],
- [
- 9.978,
- 47.65582
- ],
- [
- 10.02938,
- 47.68177
- ],
- [
- 10.10004,
- 47.66735
- ],
- [
- 10.13215,
- 47.676
- ],
- [
- 10.14286,
- 47.70195
- ],
- [
- 10.0615,
- 47.7725
- ],
- [
- 10.11288,
- 47.8099
- ],
- [
- 10.08291,
- 47.85302
- ],
- [
- 10.1086,
- 47.90902
- ],
- [
- 10.07649,
- 47.96496
- ],
- [
- 10.13001,
- 48.02084
- ],
- [
- 10.13429,
- 48.10669
- ],
- [
- 10.10004,
- 48.12813
- ],
- [
- 10.05508,
- 48.26228
- ],
- [
- 9.96944,
- 48.36765
- ],
- [
- 10.03153,
- 48.42593
- ],
- [
- 10.02938,
- 48.46144
- ],
- [
- 10.12359,
- 48.47705
- ],
- [
- 10.15356,
- 48.4515
- ],
- [
- 10.23492,
- 48.51252
- ],
- [
- 10.31628,
- 48.51678
- ],
- [
- 10.29915,
- 48.61878
- ],
- [
- 10.24563,
- 48.6683
- ],
- [
- 10.27346,
- 48.70646
- ],
- [
- 10.3698,
- 48.68385
- ],
- [
- 10.43189,
- 48.69939
- ],
- [
- 10.45116,
- 48.72765
- ],
- [
- 10.40192,
- 48.746
- ],
- [
- 10.44046,
- 48.84896
- ],
- [
- 10.43403,
- 48.95873
- ],
- [
- 10.33769,
- 49.02055
- ],
- [
- 10.24991,
- 49.03599
- ],
- [
- 10.24991,
- 49.07387
- ],
- [
- 10.20066,
- 49.10331
- ],
- [
- 10.25205,
- 49.13274
- ],
- [
- 10.12359,
- 49.19714
- ],
- [
- 10.11931,
- 49.26285
- ],
- [
- 10.15142,
- 49.28939
- ],
- [
- 10.10432,
- 49.34522
- ],
- [
- 10.14072,
- 49.39401
- ],
- [
- 10.1086,
- 49.44555
- ],
- [
- 10.11074,
- 49.50537
- ],
- [
- 10.0722,
- 49.53316
- ],
- [
- 10.01654,
- 49.47616
- ],
- [
- 9.92662,
- 49.47894
- ],
- [
- 9.92448,
- 49.55678
- ],
- [
- 9.89878,
- 49.58177
- ],
- [
- 9.85596,
- 49.53872
- ],
- [
- 9.80672,
- 49.55678
- ],
- [
- 9.86667,
- 49.60675
- ],
- [
- 9.85382,
- 49.6442
- ],
- [
- 9.81743,
- 49.66083
- ],
- [
- 9.83455,
- 49.68993
- ],
- [
- 9.79602,
- 49.72039
- ],
- [
- 9.75748,
- 49.70793
- ],
- [
- 9.74035,
- 49.68577
- ],
- [
- 9.70609,
- 49.71624
- ],
- [
- 9.67826,
- 49.71624
- ],
- [
- 9.68254,
- 49.68854
- ],
- [
- 9.62045,
- 49.69131
- ],
- [
- 9.64615,
- 49.78955
- ],
- [
- 9.55836,
- 49.77434
- ],
- [
- 9.57121,
- 49.73561
- ],
- [
- 9.50698,
- 49.75222
- ],
- [
- 9.49199,
- 49.77987
- ],
- [
- 9.46844,
- 49.76051
- ],
- [
- 9.42562,
- 49.77849
- ],
- [
- 9.40421,
- 49.76466
- ],
- [
- 9.33356,
- 49.7702
- ],
- [
- 9.32928,
- 49.73423
- ],
- [
- 9.4085,
- 49.72593
- ],
- [
- 9.42776,
- 49.69824
- ],
- [
- 9.41492,
- 49.6442
- ],
- [
- 9.38066,
- 49.63865
- ],
- [
- 9.35925,
- 49.64974
- ],
- [
- 9.33998,
- 49.63727
- ],
- [
- 9.31215,
- 49.64836
- ],
- [
- 9.27789,
- 49.62617
- ],
- [
- 9.28432,
- 49.60814
- ],
- [
- 9.2415,
- 49.57483
- ],
- [
- 9.09805,
- 49.57205
- ],
- [
- 9.06594,
- 49.60814
- ],
- [
- 9.10019,
- 49.65113
- ],
- [
- 9.09163,
- 49.6927
- ],
- [
- 9.13017,
- 49.71208
- ],
- [
- 9.13873,
- 49.74253
- ],
- [
- 9.10876,
- 49.75637
- ],
- [
- 9.13659,
- 49.79093
- ],
- [
- 9.10019,
- 49.78955
- ],
- [
- 9.07236,
- 49.82824
- ],
- [
- 9.03596,
- 49.83514
- ],
- [
- 9.01669,
- 50.02671
- ],
- [
- 8.96317,
- 50.03084
- ],
- [
- 8.95674,
- 50.05971
- ],
- [
- 9.00171,
- 50.0707
- ],
- [
- 9.02097,
- 50.11054
- ],
- [
- 9.1216,
- 50.12289
- ],
- [
- 9.15586,
- 50.11328
- ],
- [
- 9.19654,
- 50.11878
- ],
- [
- 9.18583,
- 50.13525
- ],
- [
- 9.23507,
- 50.1476
- ],
- [
- 9.37638,
- 50.12701
- ],
- [
- 9.4085,
- 50.0817
- ],
- [
- 9.52197,
- 50.09543
- ],
- [
- 9.50484,
- 50.14211
- ],
- [
- 9.53267,
- 50.16406
- ],
- [
- 9.48985,
- 50.16954
- ],
- [
- 9.49413,
- 50.24354
- ],
- [
- 9.61403,
- 50.22163
- ],
- [
- 9.66541,
- 50.23532
- ],
- [
- 9.63544,
- 50.24901
- ],
- [
- 9.66756,
- 50.27228
- ],
- [
- 9.74249,
- 50.30922
- ],
- [
- 9.72964,
- 50.35841
- ],
- [
- 9.77032,
- 50.42939
- ],
- [
- 9.86881,
- 50.40074
- ],
- [
- 9.91805,
- 50.40893
- ],
- [
- 10.03581,
- 50.47982
- ],
- [
- 10.03795,
- 50.51115
- ],
- [
- 10.12359,
- 50.56846
- ]
- ]
- ],
- "terms_url": "https://www.ldbv.bayern.de/",
- "terms_text": "Bayerische Vermessungsverwaltung",
- "best": true
- },
- {
- "id": "route500hydro",
- "name": "BD Carthage",
- "type": "tms",
- "template": "https://{switch:a,b,c}.tile.openstreetmap.fr/route500hydro/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 6,
- 20
- ],
- "polygon": [
- [
- [
- -2.7,
- 43.9
- ],
- [
- -6.3,
- 48.98
- ],
- [
- -2.25,
- 50.09
- ],
- [
- 1.31,
- 50.88
- ],
- [
- 2.35816,
- 51.32937
- ],
- [
- 2.5488,
- 51.09759
- ],
- [
- 2.57048,
- 51.07409
- ],
- [
- 2.58741,
- 51.01763
- ],
- [
- 2.59845,
- 51.0051
- ],
- [
- 2.61558,
- 50.99749
- ],
- [
- 2.63986,
- 50.95766
- ],
- [
- 2.64225,
- 50.94578
- ],
- [
- 2.62452,
- 50.9256
- ],
- [
- 2.61962,
- 50.91067
- ],
- [
- 2.62396,
- 50.86071
- ],
- [
- 2.62781,
- 50.85054
- ],
- [
- 2.63786,
- 50.83696
- ],
- [
- 2.6511,
- 50.82906
- ],
- [
- 2.73267,
- 50.81738
- ],
- [
- 2.79995,
- 50.73795
- ],
- [
- 2.81655,
- 50.73092
- ],
- [
- 2.85265,
- 50.73335
- ],
- [
- 2.89072,
- 50.7162
- ],
- [
- 2.90492,
- 50.71536
- ],
- [
- 2.9161,
- 50.72418
- ],
- [
- 2.93508,
- 50.75592
- ],
- [
- 3.00718,
- 50.78377
- ],
- [
- 3.08218,
- 50.78749
- ],
- [
- 3.09244,
- 50.79092
- ],
- [
- 3.11412,
- 50.80566
- ],
- [
- 3.14877,
- 50.80195
- ],
- [
- 3.2154,
- 50.73111
- ],
- [
- 3.22149,
- 50.7267
- ],
- [
- 3.27051,
- 50.70375
- ],
- [
- 3.27545,
- 50.67757
- ],
- [
- 3.26576,
- 50.6604
- ],
- [
- 3.26588,
- 50.64054
- ],
- [
- 3.28922,
- 50.60028
- ],
- [
- 3.29219,
- 50.55037
- ],
- [
- 3.3056,
- 50.53267
- ],
- [
- 3.37551,
- 50.50839
- ],
- [
- 3.3898,
- 50.50884
- ],
- [
- 3.4748,
- 50.54445
- ],
- [
- 3.52173,
- 50.53459
- ],
- [
- 3.53266,
- 50.51873
- ],
- [
- 3.54779,
- 50.51012
- ],
- [
- 3.61523,
- 50.50558
- ],
- [
- 3.67378,
- 50.45642
- ],
- [
- 3.68415,
- 50.35277
- ],
- [
- 3.6901,
- 50.34044
- ],
- [
- 3.70258,
- 50.33482
- ],
- [
- 3.71576,
- 50.33854
- ],
- [
- 3.74935,
- 50.36279
- ],
- [
- 3.84109,
- 50.36558
- ],
- [
- 3.90189,
- 50.3436
- ],
- [
- 3.91317,
- 50.34291
- ],
- [
- 4.02672,
- 50.36904
- ],
- [
- 4.13761,
- 50.29984
- ],
- [
- 4.14388,
- 50.29727
- ],
- [
- 4.21444,
- 50.28167
- ],
- [
- 4.22904,
- 50.26664
- ],
- [
- 4.23078,
- 50.25233
- ],
- [
- 4.17084,
- 50.18579
- ],
- [
- 4.16601,
- 50.16888
- ],
- [
- 4.1764,
- 50.1547
- ],
- [
- 4.21195,
- 50.13602
- ],
- [
- 4.24074,
- 50.07102
- ],
- [
- 4.23193,
- 50.05551
- ],
- [
- 4.18164,
- 50.03436
- ],
- [
- 4.17177,
- 50.02537
- ],
- [
- 4.16976,
- 50.01217
- ],
- [
- 4.1765,
- 50.00065
- ],
- [
- 4.20633,
- 49.97546
- ],
- [
- 4.22164,
- 49.97089
- ],
- [
- 4.30877,
- 49.98145
- ],
- [
- 4.44542,
- 49.9523
- ],
- [
- 4.45469,
- 49.95251
- ],
- [
- 4.6581,
- 50.00609
- ],
- [
- 4.66936,
- 50.01392
- ],
- [
- 4.67293,
- 50.02716
- ],
- [
- 4.66924,
- 50.06972
- ],
- [
- 4.69517,
- 50.10472
- ],
- [
- 4.83123,
- 50.17941
- ],
- [
- 4.8815,
- 50.16436
- ],
- [
- 4.90479,
- 50.14451
- ],
- [
- 4.90426,
- 50.12639
- ],
- [
- 4.88076,
- 50.0815
- ],
- [
- 4.86277,
- 50.0745
- ],
- [
- 4.85104,
- 50.06216
- ],
- [
- 4.84331,
- 50.03884
- ],
- [
- 4.84331,
- 50.03883
- ],
- [
- 4.8433,
- 50.03881
- ],
- [
- 4.82678,
- 49.989
- ],
- [
- 4.82662,
- 49.97692
- ],
- [
- 4.83343,
- 49.96696
- ],
- [
- 4.89654,
- 49.91753
- ],
- [
- 4.89755,
- 49.89424
- ],
- [
- 4.87913,
- 49.86942
- ],
- [
- 4.87625,
- 49.85111
- ],
- [
- 4.88924,
- 49.81266
- ],
- [
- 4.89769,
- 49.80204
- ],
- [
- 4.91098,
- 49.79926
- ],
- [
- 4.99534,
- 49.81116
- ],
- [
- 5.01867,
- 49.79272
- ],
- [
- 5.02686,
- 49.78886
- ],
- [
- 5.09944,
- 49.77323
- ],
- [
- 5.13458,
- 49.73462
- ],
- [
- 5.1412,
- 49.72984
- ],
- [
- 5.18761,
- 49.70906
- ],
- [
- 5.19602,
- 49.70732
- ],
- [
- 5.28157,
- 49.70836
- ],
- [
- 5.33363,
- 49.67308
- ],
- [
- 5.344,
- 49.65049
- ],
- [
- 5.3544,
- 49.64041
- ],
- [
- 5.43141,
- 49.60791
- ],
- [
- 5.48205,
- 49.52815
- ],
- [
- 5.49294,
- 49.51979
- ],
- [
- 5.50666,
- 49.52042
- ],
- [
- 5.55401,
- 49.54025
- ],
- [
- 5.59311,
- 49.53424
- ],
- [
- 5.6076,
- 49.53761
- ],
- [
- 5.641,
- 49.56095
- ],
- [
- 5.70676,
- 49.55267
- ],
- [
- 5.71578,
- 49.55361
- ],
- [
- 5.77526,
- 49.57414
- ],
- [
- 5.8399,
- 49.55321
- ],
- [
- 5.86126,
- 49.52038
- ],
- [
- 5.876,
- 49.5114
- ],
- [
- 5.97516,
- 49.50129
- ],
- [
- 5.99801,
- 49.47317
- ],
- [
- 6.01627,
- 49.46597
- ],
- [
- 6.08635,
- 49.47562
- ],
- [
- 6.09319,
- 49.47787
- ],
- [
- 6.17397,
- 49.52187
- ],
- [
- 6.24643,
- 49.52511
- ],
- [
- 6.334,
- 49.48235
- ],
- [
- 6.34423,
- 49.48037
- ],
- [
- 6.43515,
- 49.487
- ],
- [
- 6.5451,
- 49.44384
- ],
- [
- 6.60639,
- 49.37868
- ],
- [
- 6.60497,
- 49.33739
- ],
- [
- 6.61627,
- 49.31869
- ],
- [
- 6.67013,
- 49.29269
- ],
- [
- 6.72996,
- 49.22917
- ],
- [
- 6.74328,
- 49.19086
- ],
- [
- 6.76026,
- 49.17752
- ],
- [
- 6.80904,
- 49.17284
- ],
- [
- 6.82473,
- 49.17826
- ],
- [
- 6.83093,
- 49.19366
- ],
- [
- 6.82982,
- 49.21802
- ],
- [
- 6.85119,
- 49.23136
- ],
- [
- 6.88453,
- 49.2239
- ],
- [
- 6.89322,
- 49.22389
- ],
- [
- 6.93753,
- 49.23369
- ],
- [
- 7.04055,
- 49.19794
- ],
- [
- 7.0463,
- 49.17503
- ],
- [
- 7.05478,
- 49.16313
- ],
- [
- 7.06908,
- 49.16018
- ],
- [
- 7.10494,
- 49.16634
- ],
- [
- 7.14315,
- 49.14159
- ],
- [
- 7.1535,
- 49.13839
- ],
- [
- 7.28683,
- 49.13488
- ],
- [
- 7.29893,
- 49.13856
- ],
- [
- 7.36095,
- 49.18259
- ],
- [
- 7.45012,
- 49.19517
- ],
- [
- 7.50113,
- 49.17672
- ],
- [
- 7.54379,
- 49.10572
- ],
- [
- 7.5579,
- 49.09626
- ],
- [
- 7.6296,
- 49.08527
- ],
- [
- 7.64722,
- 49.06722
- ],
- [
- 7.6612,
- 49.06119
- ],
- [
- 7.75401,
- 49.05963
- ],
- [
- 7.76073,
- 49.06067
- ],
- [
- 7.80291,
- 49.07489
- ],
- [
- 7.85525,
- 49.05329
- ],
- [
- 7.8673,
- 49.05227
- ],
- [
- 7.93826,
- 49.06832
- ],
- [
- 8.08069,
- 49.00688
- ],
- [
- 8.2225,
- 48.98787
- ],
- [
- 8.23704,
- 48.97683
- ],
- [
- 8.23589,
- 48.95817
- ],
- [
- 8.20888,
- 48.94863
- ],
- [
- 8.20089,
- 48.94339
- ],
- [
- 8.15824,
- 48.89753
- ],
- [
- 8.10087,
- 48.7993
- ],
- [
- 7.99071,
- 48.74478
- ],
- [
- 7.98534,
- 48.7409
- ],
- [
- 7.90422,
- 48.65865
- ],
- [
- 7.85605,
- 48.63606
- ],
- [
- 7.8484,
- 48.62977
- ],
- [
- 7.81842,
- 48.58883
- ],
- [
- 7.81456,
- 48.57704
- ],
- [
- 7.81449,
- 48.50968
- ],
- [
- 7.78547,
- 48.48337
- ],
- [
- 7.78055,
- 48.47652
- ],
- [
- 7.74506,
- 48.39484
- ],
- [
- 7.74357,
- 48.38427
- ],
- [
- 7.75159,
- 48.32322
- ],
- [
- 7.71085,
- 48.29841
- ],
- [
- 7.70241,
- 48.28803
- ],
- [
- 7.67661,
- 48.21555
- ],
- [
- 7.59605,
- 48.11698
- ],
- [
- 7.59165,
- 48.10648
- ],
- [
- 7.58522,
- 48.04694
- ],
- [
- 7.59127,
- 48.03035
- ],
- [
- 7.62437,
- 47.99865
- ],
- [
- 7.63205,
- 47.97081
- ],
- [
- 7.57554,
- 47.87436
- ],
- [
- 7.5728,
- 47.86435
- ],
- [
- 7.57267,
- 47.83631
- ],
- [
- 7.54581,
- 47.78793
- ],
- [
- 7.54418,
- 47.77232
- ],
- [
- 7.55758,
- 47.72899
- ],
- [
- 7.53526,
- 47.6989
- ],
- [
- 7.53136,
- 47.68564
- ],
- [
- 7.537,
- 47.67302
- ],
- [
- 7.60016,
- 47.60822
- ],
- [
- 7.58967,
- 47.56755
- ],
- [
- 7.55424,
- 47.55128
- ],
- [
- 7.54511,
- 47.54283
- ],
- [
- 7.51256,
- 47.48439
- ],
- [
- 7.38747,
- 47.42111
- ],
- [
- 7.32653,
- 47.4273
- ],
- [
- 7.24435,
- 47.40939
- ],
- [
- 7.16708,
- 47.4335
- ],
- [
- 7.15212,
- 47.47612
- ],
- [
- 7.14279,
- 47.48707
- ],
- [
- 7.12853,
- 47.48893
- ],
- [
- 7.0801,
- 47.47718
- ],
- [
- 7.03557,
- 47.48695
- ],
- [
- 7.02102,
- 47.48458
- ],
- [
- 7.01205,
- 47.47287
- ],
- [
- 7.003,
- 47.44095
- ],
- [
- 6.9551,
- 47.40808
- ],
- [
- 6.94716,
- 47.39698
- ],
- [
- 6.94818,
- 47.38337
- ],
- [
- 6.95769,
- 47.37359
- ],
- [
- 6.97126,
- 47.37218
- ],
- [
- 7.018,
- 47.38386
- ],
- [
- 7.05623,
- 47.37035
- ],
- [
- 7.07007,
- 47.35005
- ],
- [
- 7.05958,
- 47.32257
- ],
- [
- 6.97424,
- 47.27856
- ],
- [
- 6.96347,
- 47.26233
- ],
- [
- 6.96134,
- 47.23479
- ],
- [
- 6.89443,
- 47.19393
- ],
- [
- 6.88913,
- 47.18922
- ],
- [
- 6.85545,
- 47.14636
- ],
- [
- 6.76907,
- 47.10751
- ],
- [
- 6.76011,
- 47.09953
- ],
- [
- 6.72561,
- 47.0418
- ],
- [
- 6.62355,
- 46.9811
- ],
- [
- 6.4812,
- 46.9445
- ],
- [
- 6.46892,
- 46.93522
- ],
- [
- 6.46686,
- 46.91997
- ],
- [
- 6.47548,
- 46.88771
- ],
- [
- 6.4535,
- 46.8239
- ],
- [
- 6.45644,
- 46.80534
- ],
- [
- 6.46722,
- 46.79104
- ],
- [
- 6.46098,
- 46.76887
- ],
- [
- 6.15817,
- 46.59343
- ],
- [
- 6.14872,
- 46.58069
- ],
- [
- 6.15152,
- 46.56508
- ],
- [
- 6.16549,
- 46.54399
- ],
- [
- 6.15811,
- 46.52456
- ],
- [
- 6.10174,
- 46.46979
- ],
- [
- 6.09572,
- 46.45418
- ],
- [
- 6.09704,
- 46.43317
- ],
- [
- 6.10829,
- 46.41643
- ],
- [
- 6.16622,
- 46.38839
- ],
- [
- 6.17817,
- 46.36922
- ],
- [
- 6.13748,
- 46.31297
- ],
- [
- 6.13371,
- 46.30227
- ],
- [
- 6.13038,
- 46.23737
- ],
- [
- 6.1103,
- 46.22344
- ],
- [
- 6.08865,
- 46.23081
- ],
- [
- 6.07717,
- 46.23123
- ],
- [
- 6.01857,
- 46.21601
- ],
- [
- 6.00681,
- 46.20752
- ],
- [
- 6.00388,
- 46.19332
- ],
- [
- 6.00787,
- 46.16977
- ],
- [
- 6.01783,
- 46.15564
- ],
- [
- 6.03509,
- 46.15456
- ],
- [
- 6.05564,
- 46.16288
- ],
- [
- 6.12468,
- 46.15415
- ],
- [
- 6.13778,
- 46.15702
- ],
- [
- 6.24026,
- 46.22094
- ],
- [
- 6.24906,
- 46.23299
- ],
- [
- 6.24707,
- 46.24777
- ],
- [
- 6.21148,
- 46.31057
- ],
- [
- 6.21219,
- 46.32485
- ],
- [
- 6.23946,
- 46.36705
- ],
- [
- 6.31648,
- 46.41557
- ],
- [
- 6.41083,
- 46.42495
- ],
- [
- 6.41748,
- 46.42682
- ],
- [
- 6.50498,
- 46.46871
- ],
- [
- 6.63047,
- 46.47435
- ],
- [
- 6.74665,
- 46.45695
- ],
- [
- 6.82244,
- 46.42925
- ],
- [
- 6.81832,
- 46.38181
- ],
- [
- 6.80484,
- 46.36179
- ],
- [
- 6.80189,
- 46.34639
- ],
- [
- 6.81095,
- 46.33359
- ],
- [
- 6.86491,
- 46.30038
- ],
- [
- 6.87504,
- 46.28007
- ],
- [
- 6.86092,
- 46.2439
- ],
- [
- 6.82698,
- 46.21188
- ],
- [
- 6.82075,
- 46.19862
- ],
- [
- 6.81863,
- 46.16592
- ],
- [
- 6.82259,
- 46.15261
- ],
- [
- 6.83427,
- 46.14509
- ],
- [
- 6.90382,
- 46.12971
- ],
- [
- 6.90491,
- 46.09595
- ],
- [
- 6.90932,
- 46.08406
- ],
- [
- 6.92001,
- 46.07721
- ],
- [
- 6.94898,
- 46.0699
- ],
- [
- 7.01556,
- 46.00883
- ],
- [
- 7.05191,
- 45.93066
- ],
- [
- 7.04533,
- 45.92217
- ],
- [
- 7.04497,
- 45.92064
- ],
- [
- 7.04394,
- 45.92036
- ],
- [
- 6.99582,
- 45.85822
- ],
- [
- 6.94097,
- 45.83551
- ],
- [
- 6.84376,
- 45.82387
- ],
- [
- 6.83102,
- 45.81711
- ],
- [
- 6.82614,
- 45.80353
- ],
- [
- 6.82787,
- 45.73217
- ],
- [
- 6.83174,
- 45.72082
- ],
- [
- 6.8414,
- 45.71373
- ],
- [
- 6.90729,
- 45.69124
- ],
- [
- 6.92419,
- 45.66935
- ],
- [
- 6.94247,
- 45.66172
- ],
- [
- 6.97131,
- 45.66528
- ],
- [
- 7.00597,
- 45.64945
- ],
- [
- 7.01151,
- 45.63652
- ],
- [
- 6.9978,
- 45.60877
- ],
- [
- 6.99643,
- 45.59465
- ],
- [
- 7.0158,
- 45.52354
- ],
- [
- 7.02774,
- 45.5102
- ],
- [
- 7.1072,
- 45.47877
- ],
- [
- 7.1228,
- 45.44924
- ],
- [
- 7.13304,
- 45.44001
- ],
- [
- 7.1856,
- 45.41894
- ],
- [
- 7.19515,
- 45.40409
- ],
- [
- 7.17075,
- 45.35069
- ],
- [
- 7.14232,
- 45.32298
- ],
- [
- 7.13649,
- 45.30576
- ],
- [
- 7.14458,
- 45.25048
- ],
- [
- 7.08417,
- 45.20279
- ],
- [
- 6.99279,
- 45.19823
- ],
- [
- 6.98106,
- 45.19368
- ],
- [
- 6.90009,
- 45.12689
- ],
- [
- 6.85843,
- 45.11699
- ],
- [
- 6.78283,
- 45.14228
- ],
- [
- 6.77056,
- 45.14242
- ],
- [
- 6.67751,
- 45.11356
- ],
- [
- 6.6653,
- 45.10289
- ],
- [
- 6.66501,
- 45.08667
- ],
- [
- 6.68237,
- 45.04558
- ],
- [
- 6.69602,
- 45.03395
- ],
- [
- 6.75744,
- 45.01884
- ],
- [
- 6.78375,
- 44.9146
- ],
- [
- 6.7942,
- 44.90161
- ],
- [
- 6.86698,
- 44.86519
- ],
- [
- 6.8798,
- 44.86346
- ],
- [
- 6.93633,
- 44.87461
- ],
- [
- 7.01795,
- 44.84402
- ],
- [
- 7.03453,
- 44.82282
- ],
- [
- 7.03711,
- 44.75009
- ],
- [
- 7.0496,
- 44.73226
- ],
- [
- 7.07224,
- 44.72311
- ],
- [
- 7.08651,
- 44.6968
- ],
- [
- 7.08666,
- 44.68085
- ],
- [
- 7.07671,
- 44.67134
- ],
- [
- 6.99007,
- 44.67203
- ],
- [
- 6.97413,
- 44.66431
- ],
- [
- 6.97056,
- 44.64696
- ],
- [
- 6.97819,
- 44.61784
- ],
- [
- 6.94659,
- 44.57124
- ],
- [
- 6.88235,
- 44.53479
- ],
- [
- 6.87233,
- 44.5195
- ],
- [
- 6.87892,
- 44.50245
- ],
- [
- 6.95894,
- 44.43129
- ],
- [
- 6.95872,
- 44.42908
- ],
- [
- 6.92167,
- 44.41436
- ],
- [
- 6.91223,
- 44.40659
- ],
- [
- 6.90907,
- 44.39477
- ],
- [
- 6.90972,
- 44.38195
- ],
- [
- 6.91637,
- 44.36804
- ],
- [
- 6.99909,
- 44.29414
- ],
- [
- 7.01181,
- 44.256
- ],
- [
- 7.01983,
- 44.24558
- ],
- [
- 7.03259,
- 44.2424
- ],
- [
- 7.07312,
- 44.2461
- ],
- [
- 7.1651,
- 44.22112
- ],
- [
- 7.24533,
- 44.18544
- ],
- [
- 7.26053,
- 44.16682
- ],
- [
- 7.27537,
- 44.15947
- ],
- [
- 7.33878,
- 44.1574
- ],
- [
- 7.36278,
- 44.13834
- ],
- [
- 7.37776,
- 44.13416
- ],
- [
- 7.56283,
- 44.15792
- ],
- [
- 7.5642,
- 44.15836
- ],
- [
- 7.56478,
- 44.15817
- ],
- [
- 7.60548,
- 44.1634
- ],
- [
- 7.6162,
- 44.16827
- ],
- [
- 7.63989,
- 44.18928
- ],
- [
- 7.68608,
- 44.1861
- ],
- [
- 7.69422,
- 44.17795
- ],
- [
- 7.68937,
- 44.13869
- ],
- [
- 7.69445,
- 44.12276
- ],
- [
- 7.72786,
- 44.08615
- ],
- [
- 7.72403,
- 44.05704
- ],
- [
- 7.68603,
- 44.02371
- ],
- [
- 7.68077,
- 44.0164
- ],
- [
- 7.66016,
- 43.9672
- ],
- [
- 7.59624,
- 43.94466
- ],
- [
- 7.58419,
- 43.93287
- ],
- [
- 7.56858,
- 43.89159
- ],
- [
- 7.5271,
- 43.87434
- ],
- [
- 7.51649,
- 43.86397
- ],
- [
- 7.51594,
- 43.84915
- ],
- [
- 7.53622,
- 43.79234
- ],
- [
- 9.8,
- 43.1
- ],
- [
- 9.63227,
- 41.43244
- ],
- [
- 9.36968,
- 41.35052
- ],
- [
- 9.27311,
- 41.29196
- ],
- [
- 8.94186,
- 41.27688
- ],
- [
- 5.8,
- 41.64
- ],
- [
- 3.17358,
- 42.41768
- ],
- [
- 3.16081,
- 42.42757
- ],
- [
- 3.0944,
- 42.41457
- ],
- [
- 3.03402,
- 42.45331
- ],
- [
- 3.02214,
- 42.45645
- ],
- [
- 2.87822,
- 42.4487
- ],
- [
- 2.87019,
- 42.44653
- ],
- [
- 2.78424,
- 42.40256
- ],
- [
- 2.7413,
- 42.41128
- ],
- [
- 2.72928,
- 42.40998
- ],
- [
- 2.69331,
- 42.39417
- ],
- [
- 2.68378,
- 42.3854
- ],
- [
- 2.68162,
- 42.37263
- ],
- [
- 2.68585,
- 42.34679
- ],
- [
- 2.66719,
- 42.33008
- ],
- [
- 2.58106,
- 42.34418
- ],
- [
- 2.56777,
- 42.34173
- ],
- [
- 2.5338,
- 42.32197
- ],
- [
- 2.47795,
- 42.32986
- ],
- [
- 2.41933,
- 42.37658
- ],
- [
- 2.41222,
- 42.38021
- ],
- [
- 2.26719,
- 42.42055
- ],
- [
- 2.25973,
- 42.42117
- ],
- [
- 2.20694,
- 42.41558
- ],
- [
- 2.20653,
- 42.41526
- ],
- [
- 2.20526,
- 42.41541
- ],
- [
- 2.16028,
- 42.41065
- ],
- [
- 2.14881,
- 42.40545
- ],
- [
- 2.09393,
- 42.35474
- ],
- [
- 2.00861,
- 42.33818
- ],
- [
- 1.965,
- 42.36473
- ],
- [
- 1.93076,
- 42.42442
- ],
- [
- 1.92089,
- 42.43302
- ],
- [
- 1.88467,
- 42.44761
- ],
- [
- 1.88459,
- 42.44762
- ],
- [
- 1.88444,
- 42.4477
- ],
- [
- 1.82774,
- 42.47056
- ],
- [
- 1.72567,
- 42.48452
- ],
- [
- 1.71561,
- 42.50125
- ],
- [
- 1.7272,
- 42.56103
- ],
- [
- 1.72479,
- 42.57499
- ],
- [
- 1.71011,
- 42.59992
- ],
- [
- 1.69377,
- 42.60975
- ],
- [
- 1.60283,
- 42.61382
- ],
- [
- 1.56069,
- 42.6392
- ],
- [
- 1.54636,
- 42.64166
- ],
- [
- 1.50444,
- 42.6331
- ],
- [
- 1.4921,
- 42.62502
- ],
- [
- 1.47238,
- 42.59703
- ],
- [
- 1.43792,
- 42.59264
- ],
- [
- 1.41936,
- 42.60643
- ],
- [
- 1.38032,
- 42.67415
- ],
- [
- 1.37335,
- 42.68127
- ],
- [
- 1.33313,
- 42.70563
- ],
- [
- 1.32364,
- 42.7085
- ],
- [
- 1.23221,
- 42.71248
- ],
- [
- 1.16554,
- 42.69928
- ],
- [
- 1.08546,
- 42.76635
- ],
- [
- 1.07564,
- 42.77079
- ],
- [
- 0.95937,
- 42.78852
- ],
- [
- 0.95073,
- 42.78794
- ],
- [
- 0.92265,
- 42.7797
- ],
- [
- 0.84606,
- 42.8157
- ],
- [
- 0.71511,
- 42.8464
- ],
- [
- 0.70017,
- 42.84402
- ],
- [
- 0.69117,
- 42.83186
- ],
- [
- 0.67409,
- 42.76479
- ],
- [
- 0.67474,
- 42.75286
- ],
- [
- 0.69192,
- 42.70684
- ],
- [
- 0.669,
- 42.67901
- ],
- [
- 0.43024,
- 42.67863
- ],
- [
- 0.3715,
- 42.70308
- ],
- [
- 0.35954,
- 42.70415
- ],
- [
- 0.34912,
- 42.69817
- ],
- [
- 0.32567,
- 42.67274
- ],
- [
- 0.29571,
- 42.66388
- ],
- [
- 0.24594,
- 42.70175
- ],
- [
- 0.23972,
- 42.70494
- ],
- [
- 0.18967,
- 42.72039
- ],
- [
- 0.17919,
- 42.72075
- ],
- [
- -0.01993,
- 42.67389
- ],
- [
- -0.06726,
- 42.6848
- ],
- [
- -0.16949,
- 42.77157
- ],
- [
- -0.29987,
- 42.82697
- ],
- [
- -0.31683,
- 42.82635
- ],
- [
- -0.39208,
- 42.78766
- ],
- [
- -0.44354,
- 42.78453
- ],
- [
- -0.48842,
- 42.80255
- ],
- [
- -0.50868,
- 42.79935
- ],
- [
- -0.54499,
- 42.76906
- ],
- [
- -0.56721,
- 42.76937
- ],
- [
- -0.67446,
- 42.86392
- ],
- [
- -0.68094,
- 42.86775
- ],
- [
- -0.73372,
- 42.88666
- ],
- [
- -0.7476,
- 42.93879
- ],
- [
- -0.75711,
- 42.95107
- ],
- [
- -0.77253,
- 42.95284
- ],
- [
- -0.82114,
- 42.93865
- ],
- [
- -0.94508,
- 42.94192
- ],
- [
- -1.02313,
- 42.98206
- ],
- [
- -1.10852,
- 43.00409
- ],
- [
- -1.1156,
- 43.00461
- ],
- [
- -1.14775,
- 43.00124
- ],
- [
- -1.15845,
- 43.01452
- ],
- [
- -1.16736,
- 43.02083
- ],
- [
- -1.21622,
- 43.0381
- ],
- [
- -1.22612,
- 43.03898
- ],
- [
- -1.26236,
- 43.03303
- ],
- [
- -1.30643,
- 43.05531
- ],
- [
- -1.31992,
- 43.05696
- ],
- [
- -1.33135,
- 43.0496
- ],
- [
- -1.3542,
- 43.0197
- ],
- [
- -1.43868,
- 43.03371
- ],
- [
- -1.4775,
- 43.06889
- ],
- [
- -1.48311,
- 43.08561
- ],
- [
- -1.47641,
- 43.10248
- ],
- [
- -1.43479,
- 43.13087
- ],
- [
- -1.42732,
- 43.1404
- ],
- [
- -1.39411,
- 43.22935
- ],
- [
- -1.39531,
- 43.24596
- ],
- [
- -1.40868,
- 43.25591
- ],
- [
- -1.52629,
- 43.28099
- ],
- [
- -1.54626,
- 43.2737
- ],
- [
- -1.57149,
- 43.2412
- ],
- [
- -1.61053,
- 43.24223
- ],
- [
- -1.65,
- 43.29323
- ],
- [
- -1.66953,
- 43.30065
- ],
- [
- -1.73359,
- 43.28856
- ],
- [
- -1.75606,
- 43.31966
- ],
- [
- -1.76297,
- 43.32565
- ],
- [
- -1.79156,
- 43.34067
- ],
- [
- -1.80099,
- 43.37017
- ],
- [
- -1.78509,
- 43.39037
- ],
- [
- -1.7835,
- 43.39686
- ],
- [
- -2.7,
- 43.9
- ]
- ]
- ],
- "terms_url": "http://www.sandre.eaufrance.fr/actualite/la-bd-carthage-en-licence-ouverte-open-licence",
- "terms_text": "Tiles © cquest@Openstreetmap France, data © Onema - IGN, LO/OL",
- "description": "Réseau hydrographique: cours et plans d'eau et POI",
- "overlay": true
- },
- {
- "id": "fr.ign.bdortho",
- "name": "BDOrtho IGN",
- "type": "tms",
- "template": "https://proxy-ign.openstreetmap.fr/94GjiyqD/bdortho/{zoom}/{x}/{y}.jpg",
- "scaleExtent": [
- 2,
- 21
- ],
- "polygon": [
- [
- [
- -2.7,
- 43.9
- ],
- [
- -6.3,
- 48.98
- ],
- [
- -2.25,
- 50.09
- ],
- [
- 1.31,
- 50.88
- ],
- [
- 2.35816,
- 51.32937
- ],
- [
- 2.5488,
- 51.09759
- ],
- [
- 2.57048,
- 51.07409
- ],
- [
- 2.58741,
- 51.01763
- ],
- [
- 2.59845,
- 51.0051
- ],
- [
- 2.61558,
- 50.99749
- ],
- [
- 2.63986,
- 50.95766
- ],
- [
- 2.64225,
- 50.94578
- ],
- [
- 2.62452,
- 50.9256
- ],
- [
- 2.61962,
- 50.91067
- ],
- [
- 2.62396,
- 50.86071
- ],
- [
- 2.62781,
- 50.85054
- ],
- [
- 2.63786,
- 50.83696
- ],
- [
- 2.6511,
- 50.82906
- ],
- [
- 2.73267,
- 50.81738
- ],
- [
- 2.79995,
- 50.73795
- ],
- [
- 2.81655,
- 50.73092
- ],
- [
- 2.85265,
- 50.73335
- ],
- [
- 2.89072,
- 50.7162
- ],
- [
- 2.90492,
- 50.71536
- ],
- [
- 2.9161,
- 50.72418
- ],
- [
- 2.93508,
- 50.75592
- ],
- [
- 3.00718,
- 50.78377
- ],
- [
- 3.08218,
- 50.78749
- ],
- [
- 3.09244,
- 50.79092
- ],
- [
- 3.11412,
- 50.80566
- ],
- [
- 3.14877,
- 50.80195
- ],
- [
- 3.2154,
- 50.73111
- ],
- [
- 3.22149,
- 50.7267
- ],
- [
- 3.27051,
- 50.70375
- ],
- [
- 3.27545,
- 50.67757
- ],
- [
- 3.26576,
- 50.6604
- ],
- [
- 3.26588,
- 50.64054
- ],
- [
- 3.28922,
- 50.60028
- ],
- [
- 3.29219,
- 50.55037
- ],
- [
- 3.3056,
- 50.53267
- ],
- [
- 3.37551,
- 50.50839
- ],
- [
- 3.3898,
- 50.50884
- ],
- [
- 3.4748,
- 50.54445
- ],
- [
- 3.52173,
- 50.53459
- ],
- [
- 3.53266,
- 50.51873
- ],
- [
- 3.54779,
- 50.51012
- ],
- [
- 3.61523,
- 50.50558
- ],
- [
- 3.67378,
- 50.45642
- ],
- [
- 3.68415,
- 50.35277
- ],
- [
- 3.6901,
- 50.34044
- ],
- [
- 3.70258,
- 50.33482
- ],
- [
- 3.71576,
- 50.33854
- ],
- [
- 3.74935,
- 50.36279
- ],
- [
- 3.84109,
- 50.36558
- ],
- [
- 3.90189,
- 50.3436
- ],
- [
- 3.91317,
- 50.34291
- ],
- [
- 4.02672,
- 50.36904
- ],
- [
- 4.13761,
- 50.29984
- ],
- [
- 4.14388,
- 50.29727
- ],
- [
- 4.21444,
- 50.28167
- ],
- [
- 4.22904,
- 50.26664
- ],
- [
- 4.23078,
- 50.25233
- ],
- [
- 4.17084,
- 50.18579
- ],
- [
- 4.16601,
- 50.16888
- ],
- [
- 4.1764,
- 50.1547
- ],
- [
- 4.21195,
- 50.13602
- ],
- [
- 4.24074,
- 50.07102
- ],
- [
- 4.23193,
- 50.05551
- ],
- [
- 4.18164,
- 50.03436
- ],
- [
- 4.17177,
- 50.02537
- ],
- [
- 4.16976,
- 50.01217
- ],
- [
- 4.1765,
- 50.00065
- ],
- [
- 4.20633,
- 49.97546
- ],
- [
- 4.22164,
- 49.97089
- ],
- [
- 4.30877,
- 49.98145
- ],
- [
- 4.44542,
- 49.9523
- ],
- [
- 4.45469,
- 49.95251
- ],
- [
- 4.6581,
- 50.00609
- ],
- [
- 4.66936,
- 50.01392
- ],
- [
- 4.67293,
- 50.02716
- ],
- [
- 4.66924,
- 50.06972
- ],
- [
- 4.69517,
- 50.10472
- ],
- [
- 4.83123,
- 50.17941
- ],
- [
- 4.8815,
- 50.16436
- ],
- [
- 4.90479,
- 50.14451
- ],
- [
- 4.90426,
- 50.12639
- ],
- [
- 4.88076,
- 50.0815
- ],
- [
- 4.86277,
- 50.0745
- ],
- [
- 4.85104,
- 50.06216
- ],
- [
- 4.84331,
- 50.03884
- ],
- [
- 4.84331,
- 50.03883
- ],
- [
- 4.8433,
- 50.03881
- ],
- [
- 4.82678,
- 49.989
- ],
- [
- 4.82662,
- 49.97692
- ],
- [
- 4.83343,
- 49.96696
- ],
- [
- 4.89654,
- 49.91753
- ],
- [
- 4.89755,
- 49.89424
- ],
- [
- 4.87913,
- 49.86942
- ],
- [
- 4.87625,
- 49.85111
- ],
- [
- 4.88924,
- 49.81266
- ],
- [
- 4.89769,
- 49.80204
- ],
- [
- 4.91098,
- 49.79926
- ],
- [
- 4.99534,
- 49.81116
- ],
- [
- 5.01867,
- 49.79272
- ],
- [
- 5.02686,
- 49.78886
- ],
- [
- 5.09944,
- 49.77323
- ],
- [
- 5.13458,
- 49.73462
- ],
- [
- 5.1412,
- 49.72984
- ],
- [
- 5.18761,
- 49.70906
- ],
- [
- 5.19602,
- 49.70732
- ],
- [
- 5.28157,
- 49.70836
- ],
- [
- 5.33363,
- 49.67308
- ],
- [
- 5.344,
- 49.65049
- ],
- [
- 5.3544,
- 49.64041
- ],
- [
- 5.43141,
- 49.60791
- ],
- [
- 5.48205,
- 49.52815
- ],
- [
- 5.49294,
- 49.51979
- ],
- [
- 5.50666,
- 49.52042
- ],
- [
- 5.55401,
- 49.54025
- ],
- [
- 5.59311,
- 49.53424
- ],
- [
- 5.6076,
- 49.53761
- ],
- [
- 5.641,
- 49.56095
- ],
- [
- 5.70676,
- 49.55267
- ],
- [
- 5.71578,
- 49.55361
- ],
- [
- 5.77526,
- 49.57414
- ],
- [
- 5.8399,
- 49.55321
- ],
- [
- 5.86126,
- 49.52038
- ],
- [
- 5.876,
- 49.5114
- ],
- [
- 5.97516,
- 49.50129
- ],
- [
- 5.99801,
- 49.47317
- ],
- [
- 6.01627,
- 49.46597
- ],
- [
- 6.08635,
- 49.47562
- ],
- [
- 6.09319,
- 49.47787
- ],
- [
- 6.17397,
- 49.52187
- ],
- [
- 6.24643,
- 49.52511
- ],
- [
- 6.334,
- 49.48235
- ],
- [
- 6.34423,
- 49.48037
- ],
- [
- 6.43515,
- 49.487
- ],
- [
- 6.5451,
- 49.44384
- ],
- [
- 6.60639,
- 49.37868
- ],
- [
- 6.60497,
- 49.33739
- ],
- [
- 6.61627,
- 49.31869
- ],
- [
- 6.67013,
- 49.29269
- ],
- [
- 6.72996,
- 49.22917
- ],
- [
- 6.74328,
- 49.19086
- ],
- [
- 6.76026,
- 49.17752
- ],
- [
- 6.80904,
- 49.17284
- ],
- [
- 6.82473,
- 49.17826
- ],
- [
- 6.83093,
- 49.19366
- ],
- [
- 6.82982,
- 49.21802
- ],
- [
- 6.85119,
- 49.23136
- ],
- [
- 6.88453,
- 49.2239
- ],
- [
- 6.89322,
- 49.22389
- ],
- [
- 6.93753,
- 49.23369
- ],
- [
- 7.04055,
- 49.19794
- ],
- [
- 7.0463,
- 49.17503
- ],
- [
- 7.05478,
- 49.16313
- ],
- [
- 7.06908,
- 49.16018
- ],
- [
- 7.10494,
- 49.16634
- ],
- [
- 7.14315,
- 49.14159
- ],
- [
- 7.1535,
- 49.13839
- ],
- [
- 7.28683,
- 49.13488
- ],
- [
- 7.29893,
- 49.13856
- ],
- [
- 7.36095,
- 49.18259
- ],
- [
- 7.45012,
- 49.19517
- ],
- [
- 7.50113,
- 49.17672
- ],
- [
- 7.54379,
- 49.10572
- ],
- [
- 7.5579,
- 49.09626
- ],
- [
- 7.6296,
- 49.08527
- ],
- [
- 7.64722,
- 49.06722
- ],
- [
- 7.6612,
- 49.06119
- ],
- [
- 7.75401,
- 49.05963
- ],
- [
- 7.76073,
- 49.06067
- ],
- [
- 7.80291,
- 49.07489
- ],
- [
- 7.85525,
- 49.05329
- ],
- [
- 7.8673,
- 49.05227
- ],
- [
- 7.93826,
- 49.06832
- ],
- [
- 8.08069,
- 49.00688
- ],
- [
- 8.2225,
- 48.98787
- ],
- [
- 8.23704,
- 48.97683
- ],
- [
- 8.23589,
- 48.95817
- ],
- [
- 8.20888,
- 48.94863
- ],
- [
- 8.20089,
- 48.94339
- ],
- [
- 8.15824,
- 48.89753
- ],
- [
- 8.10087,
- 48.7993
- ],
- [
- 7.99071,
- 48.74478
- ],
- [
- 7.98534,
- 48.7409
- ],
- [
- 7.90422,
- 48.65865
- ],
- [
- 7.85605,
- 48.63606
- ],
- [
- 7.8484,
- 48.62977
- ],
- [
- 7.81842,
- 48.58883
- ],
- [
- 7.81456,
- 48.57704
- ],
- [
- 7.81449,
- 48.50968
- ],
- [
- 7.78547,
- 48.48337
- ],
- [
- 7.78055,
- 48.47652
- ],
- [
- 7.74506,
- 48.39484
- ],
- [
- 7.74357,
- 48.38427
- ],
- [
- 7.75159,
- 48.32322
- ],
- [
- 7.71085,
- 48.29841
- ],
- [
- 7.70241,
- 48.28803
- ],
- [
- 7.67661,
- 48.21555
- ],
- [
- 7.59605,
- 48.11698
- ],
- [
- 7.59165,
- 48.10648
- ],
- [
- 7.58522,
- 48.04694
- ],
- [
- 7.59127,
- 48.03035
- ],
- [
- 7.62437,
- 47.99865
- ],
- [
- 7.63205,
- 47.97081
- ],
- [
- 7.57554,
- 47.87436
- ],
- [
- 7.5728,
- 47.86435
- ],
- [
- 7.57267,
- 47.83631
- ],
- [
- 7.54581,
- 47.78793
- ],
- [
- 7.54418,
- 47.77232
- ],
- [
- 7.55758,
- 47.72899
- ],
- [
- 7.53526,
- 47.6989
- ],
- [
- 7.53136,
- 47.68564
- ],
- [
- 7.537,
- 47.67302
- ],
- [
- 7.60016,
- 47.60822
- ],
- [
- 7.58967,
- 47.56755
- ],
- [
- 7.55424,
- 47.55128
- ],
- [
- 7.54511,
- 47.54283
- ],
- [
- 7.51256,
- 47.48439
- ],
- [
- 7.38747,
- 47.42111
- ],
- [
- 7.32653,
- 47.4273
- ],
- [
- 7.24435,
- 47.40939
- ],
- [
- 7.16708,
- 47.4335
- ],
- [
- 7.15212,
- 47.47612
- ],
- [
- 7.14279,
- 47.48707
- ],
- [
- 7.12853,
- 47.48893
- ],
- [
- 7.0801,
- 47.47718
- ],
- [
- 7.03557,
- 47.48695
- ],
- [
- 7.02102,
- 47.48458
- ],
- [
- 7.01205,
- 47.47287
- ],
- [
- 7.003,
- 47.44095
- ],
- [
- 6.9551,
- 47.40808
- ],
- [
- 6.94716,
- 47.39698
- ],
- [
- 6.94818,
- 47.38337
- ],
- [
- 6.95769,
- 47.37359
- ],
- [
- 6.97126,
- 47.37218
- ],
- [
- 7.018,
- 47.38386
- ],
- [
- 7.05623,
- 47.37035
- ],
- [
- 7.07007,
- 47.35005
- ],
- [
- 7.05958,
- 47.32257
- ],
- [
- 6.97424,
- 47.27856
- ],
- [
- 6.96347,
- 47.26233
- ],
- [
- 6.96134,
- 47.23479
- ],
- [
- 6.89443,
- 47.19393
- ],
- [
- 6.88913,
- 47.18922
- ],
- [
- 6.85545,
- 47.14636
- ],
- [
- 6.76907,
- 47.10751
- ],
- [
- 6.76011,
- 47.09953
- ],
- [
- 6.72561,
- 47.0418
- ],
- [
- 6.62355,
- 46.9811
- ],
- [
- 6.4812,
- 46.9445
- ],
- [
- 6.46892,
- 46.93522
- ],
- [
- 6.46686,
- 46.91997
- ],
- [
- 6.47548,
- 46.88771
- ],
- [
- 6.4535,
- 46.8239
- ],
- [
- 6.45644,
- 46.80534
- ],
- [
- 6.46722,
- 46.79104
- ],
- [
- 6.46098,
- 46.76887
- ],
- [
- 6.15817,
- 46.59343
- ],
- [
- 6.14872,
- 46.58069
- ],
- [
- 6.15152,
- 46.56508
- ],
- [
- 6.16549,
- 46.54399
- ],
- [
- 6.15811,
- 46.52456
- ],
- [
- 6.10174,
- 46.46979
- ],
- [
- 6.09572,
- 46.45418
- ],
- [
- 6.09704,
- 46.43317
- ],
- [
- 6.10829,
- 46.41643
- ],
- [
- 6.16622,
- 46.38839
- ],
- [
- 6.17817,
- 46.36922
- ],
- [
- 6.13748,
- 46.31297
- ],
- [
- 6.13371,
- 46.30227
- ],
- [
- 6.13038,
- 46.23737
- ],
- [
- 6.1103,
- 46.22344
- ],
- [
- 6.08865,
- 46.23081
- ],
- [
- 6.07717,
- 46.23123
- ],
- [
- 6.01857,
- 46.21601
- ],
- [
- 6.00681,
- 46.20752
- ],
- [
- 6.00388,
- 46.19332
- ],
- [
- 6.00787,
- 46.16977
- ],
- [
- 6.01783,
- 46.15564
- ],
- [
- 6.03509,
- 46.15456
- ],
- [
- 6.05564,
- 46.16288
- ],
- [
- 6.12468,
- 46.15415
- ],
- [
- 6.13778,
- 46.15702
- ],
- [
- 6.24026,
- 46.22094
- ],
- [
- 6.24906,
- 46.23299
- ],
- [
- 6.24707,
- 46.24777
- ],
- [
- 6.21148,
- 46.31057
- ],
- [
- 6.21219,
- 46.32485
- ],
- [
- 6.23946,
- 46.36705
- ],
- [
- 6.31648,
- 46.41557
- ],
- [
- 6.41083,
- 46.42495
- ],
- [
- 6.41748,
- 46.42682
- ],
- [
- 6.50498,
- 46.46871
- ],
- [
- 6.63047,
- 46.47435
- ],
- [
- 6.74665,
- 46.45695
- ],
- [
- 6.82244,
- 46.42925
- ],
- [
- 6.81832,
- 46.38181
- ],
- [
- 6.80484,
- 46.36179
- ],
- [
- 6.80189,
- 46.34639
- ],
- [
- 6.81095,
- 46.33359
- ],
- [
- 6.86491,
- 46.30038
- ],
- [
- 6.87504,
- 46.28007
- ],
- [
- 6.86092,
- 46.2439
- ],
- [
- 6.82698,
- 46.21188
- ],
- [
- 6.82075,
- 46.19862
- ],
- [
- 6.81863,
- 46.16592
- ],
- [
- 6.82259,
- 46.15261
- ],
- [
- 6.83427,
- 46.14509
- ],
- [
- 6.90382,
- 46.12971
- ],
- [
- 6.90491,
- 46.09595
- ],
- [
- 6.90932,
- 46.08406
- ],
- [
- 6.92001,
- 46.07721
- ],
- [
- 6.94898,
- 46.0699
- ],
- [
- 7.01556,
- 46.00883
- ],
- [
- 7.05191,
- 45.93066
- ],
- [
- 7.04533,
- 45.92217
- ],
- [
- 7.04497,
- 45.92064
- ],
- [
- 7.04394,
- 45.92036
- ],
- [
- 6.99582,
- 45.85822
- ],
- [
- 6.94097,
- 45.83551
- ],
- [
- 6.84376,
- 45.82387
- ],
- [
- 6.83102,
- 45.81711
- ],
- [
- 6.82614,
- 45.80353
- ],
- [
- 6.82787,
- 45.73217
- ],
- [
- 6.83174,
- 45.72082
- ],
- [
- 6.8414,
- 45.71373
- ],
- [
- 6.90729,
- 45.69124
- ],
- [
- 6.92419,
- 45.66935
- ],
- [
- 6.94247,
- 45.66172
- ],
- [
- 6.97131,
- 45.66528
- ],
- [
- 7.00597,
- 45.64945
- ],
- [
- 7.01151,
- 45.63652
- ],
- [
- 6.9978,
- 45.60877
- ],
- [
- 6.99643,
- 45.59465
- ],
- [
- 7.0158,
- 45.52354
- ],
- [
- 7.02774,
- 45.5102
- ],
- [
- 7.1072,
- 45.47877
- ],
- [
- 7.1228,
- 45.44924
- ],
- [
- 7.13304,
- 45.44001
- ],
- [
- 7.1856,
- 45.41894
- ],
- [
- 7.19515,
- 45.40409
- ],
- [
- 7.17075,
- 45.35069
- ],
- [
- 7.14232,
- 45.32298
- ],
- [
- 7.13649,
- 45.30576
- ],
- [
- 7.14458,
- 45.25048
- ],
- [
- 7.08417,
- 45.20279
- ],
- [
- 6.99279,
- 45.19823
- ],
- [
- 6.98106,
- 45.19368
- ],
- [
- 6.90009,
- 45.12689
- ],
- [
- 6.85843,
- 45.11699
- ],
- [
- 6.78283,
- 45.14228
- ],
- [
- 6.77056,
- 45.14242
- ],
- [
- 6.67751,
- 45.11356
- ],
- [
- 6.6653,
- 45.10289
- ],
- [
- 6.66501,
- 45.08667
- ],
- [
- 6.68237,
- 45.04558
- ],
- [
- 6.69602,
- 45.03395
- ],
- [
- 6.75744,
- 45.01884
- ],
- [
- 6.78375,
- 44.9146
- ],
- [
- 6.7942,
- 44.90161
- ],
- [
- 6.86698,
- 44.86519
- ],
- [
- 6.8798,
- 44.86346
- ],
- [
- 6.93633,
- 44.87461
- ],
- [
- 7.01795,
- 44.84402
- ],
- [
- 7.03453,
- 44.82282
- ],
- [
- 7.03711,
- 44.75009
- ],
- [
- 7.0496,
- 44.73226
- ],
- [
- 7.07224,
- 44.72311
- ],
- [
- 7.08651,
- 44.6968
- ],
- [
- 7.08666,
- 44.68085
- ],
- [
- 7.07671,
- 44.67134
- ],
- [
- 6.99007,
- 44.67203
- ],
- [
- 6.97413,
- 44.66431
- ],
- [
- 6.97056,
- 44.64696
- ],
- [
- 6.97819,
- 44.61784
- ],
- [
- 6.94659,
- 44.57124
- ],
- [
- 6.88235,
- 44.53479
- ],
- [
- 6.87233,
- 44.5195
- ],
- [
- 6.87892,
- 44.50245
- ],
- [
- 6.95894,
- 44.43129
- ],
- [
- 6.95872,
- 44.42908
- ],
- [
- 6.92167,
- 44.41436
- ],
- [
- 6.91223,
- 44.40659
- ],
- [
- 6.90907,
- 44.39477
- ],
- [
- 6.90972,
- 44.38195
- ],
- [
- 6.91637,
- 44.36804
- ],
- [
- 6.99909,
- 44.29414
- ],
- [
- 7.01181,
- 44.256
- ],
- [
- 7.01983,
- 44.24558
- ],
- [
- 7.03259,
- 44.2424
- ],
- [
- 7.07312,
- 44.2461
- ],
- [
- 7.1651,
- 44.22112
- ],
- [
- 7.24533,
- 44.18544
- ],
- [
- 7.26053,
- 44.16682
- ],
- [
- 7.27537,
- 44.15947
- ],
- [
- 7.33878,
- 44.1574
- ],
- [
- 7.36278,
- 44.13834
- ],
- [
- 7.37776,
- 44.13416
- ],
- [
- 7.56283,
- 44.15792
- ],
- [
- 7.5642,
- 44.15836
- ],
- [
- 7.56478,
- 44.15817
- ],
- [
- 7.60548,
- 44.1634
- ],
- [
- 7.6162,
- 44.16827
- ],
- [
- 7.63989,
- 44.18928
- ],
- [
- 7.68608,
- 44.1861
- ],
- [
- 7.69422,
- 44.17795
- ],
- [
- 7.68937,
- 44.13869
- ],
- [
- 7.69445,
- 44.12276
- ],
- [
- 7.72786,
- 44.08615
- ],
- [
- 7.72403,
- 44.05704
- ],
- [
- 7.68603,
- 44.02371
- ],
- [
- 7.68077,
- 44.0164
- ],
- [
- 7.66016,
- 43.9672
- ],
- [
- 7.59624,
- 43.94466
- ],
- [
- 7.58419,
- 43.93287
- ],
- [
- 7.56858,
- 43.89159
- ],
- [
- 7.5271,
- 43.87434
- ],
- [
- 7.51649,
- 43.86397
- ],
- [
- 7.51594,
- 43.84915
- ],
- [
- 7.53622,
- 43.79234
- ],
- [
- 9.8,
- 43.1
- ],
- [
- 9.63227,
- 41.43244
- ],
- [
- 9.36968,
- 41.35052
- ],
- [
- 9.27311,
- 41.29196
- ],
- [
- 8.94186,
- 41.27688
- ],
- [
- 5.8,
- 41.64
- ],
- [
- 3.17358,
- 42.41768
- ],
- [
- 3.16081,
- 42.42757
- ],
- [
- 3.0944,
- 42.41457
- ],
- [
- 3.03402,
- 42.45331
- ],
- [
- 3.02214,
- 42.45645
- ],
- [
- 2.87822,
- 42.4487
- ],
- [
- 2.87019,
- 42.44653
- ],
- [
- 2.78424,
- 42.40256
- ],
- [
- 2.7413,
- 42.41128
- ],
- [
- 2.72928,
- 42.40998
- ],
- [
- 2.69331,
- 42.39417
- ],
- [
- 2.68378,
- 42.3854
- ],
- [
- 2.68162,
- 42.37263
- ],
- [
- 2.68585,
- 42.34679
- ],
- [
- 2.66719,
- 42.33008
- ],
- [
- 2.58106,
- 42.34418
- ],
- [
- 2.56777,
- 42.34173
- ],
- [
- 2.5338,
- 42.32197
- ],
- [
- 2.47795,
- 42.32986
- ],
- [
- 2.41933,
- 42.37658
- ],
- [
- 2.41222,
- 42.38021
- ],
- [
- 2.26719,
- 42.42055
- ],
- [
- 2.25973,
- 42.42117
- ],
- [
- 2.20694,
- 42.41558
- ],
- [
- 2.20653,
- 42.41526
- ],
- [
- 2.20526,
- 42.41541
- ],
- [
- 2.16028,
- 42.41065
- ],
- [
- 2.14881,
- 42.40545
- ],
- [
- 2.09393,
- 42.35474
- ],
- [
- 2.00861,
- 42.33818
- ],
- [
- 1.965,
- 42.36473
- ],
- [
- 1.93076,
- 42.42442
- ],
- [
- 1.92089,
- 42.43302
- ],
- [
- 1.88467,
- 42.44761
- ],
- [
- 1.88459,
- 42.44762
- ],
- [
- 1.88444,
- 42.4477
- ],
- [
- 1.82774,
- 42.47056
- ],
- [
- 1.72567,
- 42.48452
- ],
- [
- 1.71561,
- 42.50125
- ],
- [
- 1.7272,
- 42.56103
- ],
- [
- 1.72479,
- 42.57499
- ],
- [
- 1.71011,
- 42.59992
- ],
- [
- 1.69377,
- 42.60975
- ],
- [
- 1.60283,
- 42.61382
- ],
- [
- 1.56069,
- 42.6392
- ],
- [
- 1.54636,
- 42.64166
- ],
- [
- 1.50444,
- 42.6331
- ],
- [
- 1.4921,
- 42.62502
- ],
- [
- 1.47238,
- 42.59703
- ],
- [
- 1.43792,
- 42.59264
- ],
- [
- 1.41936,
- 42.60643
- ],
- [
- 1.38032,
- 42.67415
- ],
- [
- 1.37335,
- 42.68127
- ],
- [
- 1.33313,
- 42.70563
- ],
- [
- 1.32364,
- 42.7085
- ],
- [
- 1.23221,
- 42.71248
- ],
- [
- 1.16554,
- 42.69928
- ],
- [
- 1.08546,
- 42.76635
- ],
- [
- 1.07564,
- 42.77079
- ],
- [
- 0.95937,
- 42.78852
- ],
- [
- 0.95073,
- 42.78794
- ],
- [
- 0.92265,
- 42.7797
- ],
- [
- 0.84606,
- 42.8157
- ],
- [
- 0.71511,
- 42.8464
- ],
- [
- 0.70017,
- 42.84402
- ],
- [
- 0.69117,
- 42.83186
- ],
- [
- 0.67409,
- 42.76479
- ],
- [
- 0.67474,
- 42.75286
- ],
- [
- 0.69192,
- 42.70684
- ],
- [
- 0.669,
- 42.67901
- ],
- [
- 0.43024,
- 42.67863
- ],
- [
- 0.3715,
- 42.70308
- ],
- [
- 0.35954,
- 42.70415
- ],
- [
- 0.34912,
- 42.69817
- ],
- [
- 0.32567,
- 42.67274
- ],
- [
- 0.29571,
- 42.66388
- ],
- [
- 0.24594,
- 42.70175
- ],
- [
- 0.23972,
- 42.70494
- ],
- [
- 0.18967,
- 42.72039
- ],
- [
- 0.17919,
- 42.72075
- ],
- [
- -0.01993,
- 42.67389
- ],
- [
- -0.06726,
- 42.6848
- ],
- [
- -0.16949,
- 42.77157
- ],
- [
- -0.29987,
- 42.82697
- ],
- [
- -0.31683,
- 42.82635
- ],
- [
- -0.39208,
- 42.78766
- ],
- [
- -0.44354,
- 42.78453
- ],
- [
- -0.48842,
- 42.80255
- ],
- [
- -0.50868,
- 42.79935
- ],
- [
- -0.54499,
- 42.76906
- ],
- [
- -0.56721,
- 42.76937
- ],
- [
- -0.67446,
- 42.86392
- ],
- [
- -0.68094,
- 42.86775
- ],
- [
- -0.73372,
- 42.88666
- ],
- [
- -0.7476,
- 42.93879
- ],
- [
- -0.75711,
- 42.95107
- ],
- [
- -0.77253,
- 42.95284
- ],
- [
- -0.82114,
- 42.93865
- ],
- [
- -0.94508,
- 42.94192
- ],
- [
- -1.02313,
- 42.98206
- ],
- [
- -1.10852,
- 43.00409
- ],
- [
- -1.1156,
- 43.00461
- ],
- [
- -1.14775,
- 43.00124
- ],
- [
- -1.15845,
- 43.01452
- ],
- [
- -1.16736,
- 43.02083
- ],
- [
- -1.21622,
- 43.0381
- ],
- [
- -1.22612,
- 43.03898
- ],
- [
- -1.26236,
- 43.03303
- ],
- [
- -1.30643,
- 43.05531
- ],
- [
- -1.31992,
- 43.05696
- ],
- [
- -1.33135,
- 43.0496
- ],
- [
- -1.3542,
- 43.0197
- ],
- [
- -1.43868,
- 43.03371
- ],
- [
- -1.4775,
- 43.06889
- ],
- [
- -1.48311,
- 43.08561
- ],
- [
- -1.47641,
- 43.10248
- ],
- [
- -1.43479,
- 43.13087
- ],
- [
- -1.42732,
- 43.1404
- ],
- [
- -1.39411,
- 43.22935
- ],
- [
- -1.39531,
- 43.24596
- ],
- [
- -1.40868,
- 43.25591
- ],
- [
- -1.52629,
- 43.28099
- ],
- [
- -1.54626,
- 43.2737
- ],
- [
- -1.57149,
- 43.2412
- ],
- [
- -1.61053,
- 43.24223
- ],
- [
- -1.65,
- 43.29323
- ],
- [
- -1.66953,
- 43.30065
- ],
- [
- -1.73359,
- 43.28856
- ],
- [
- -1.75606,
- 43.31966
- ],
- [
- -1.76297,
- 43.32565
- ],
- [
- -1.79156,
- 43.34067
- ],
- [
- -1.80099,
- 43.37017
- ],
- [
- -1.78509,
- 43.39037
- ],
- [
- -1.7835,
- 43.39686
- ],
- [
- -2.7,
- 43.9
- ]
- ],
- [
- [
- -61.27501,
- 14.90218
- ],
- [
- -60.72368,
- 14.90101
- ],
- [
- -60.72489,
- 14.36686
- ],
- [
- -61.27622,
- 14.36803
- ],
- [
- -61.27501,
- 14.90218
- ]
- ],
- [
- [
- -61.92802,
- 16.58618
- ],
- [
- -61.92686,
- 15.7394
- ],
- [
- -60.88128,
- 15.74072
- ],
- [
- -60.88243,
- 16.5875
- ],
- [
- -61.92802,
- 16.58618
- ]
- ],
- [
- [
- -53.89344,
- 6.004
- ],
- [
- -52.46522,
- 5.4465
- ],
- [
- -51.52039,
- 4.51072
- ],
- [
- -51.53687,
- 4.11633
- ],
- [
- -52.2345,
- 3.10213
- ],
- [
- -52.641,
- 2.25162
- ],
- [
- -52.92664,
- 2.07597
- ],
- [
- -53.72864,
- 2.21869
- ],
- [
- -54.20106,
- 2.03205
- ],
- [
- -54.8053,
- 2.27358
- ],
- [
- -54.31092,
- 2.80589
- ],
- [
- -54.31641,
- 3.20085
- ],
- [
- -54.12415,
- 3.46408
- ],
- [
- -54.12964,
- 3.59567
- ],
- [
- -54.42078,
- 4.00127
- ],
- [
- -54.58008,
- 4.95962
- ],
- [
- -53.89344,
- 6.004
- ]
- ],
- [
- [
- 55.08816,
- -20.77935
- ],
- [
- 55.95959,
- -20.77281
- ],
- [
- 55.96576,
- -21.49
- ],
- [
- 55.09434,
- -21.49651
- ],
- [
- 55.08816,
- -20.77935
- ]
- ],
- [
- [
- 44.92054,
- -12.57363
- ],
- [
- 45.34826,
- -12.57029
- ],
- [
- 45.35274,
- -13.1163
- ],
- [
- 44.92502,
- -13.11963
- ],
- [
- 44.92054,
- -12.57363
- ]
- ],
- [
- [
- -178.57728,
- -14.70582
- ],
- [
- -178.42568,
- -14.00334
- ],
- [
- -176.34156,
- -12.83858
- ],
- [
- -175.71534,
- -12.9189
- ],
- [
- -175.91858,
- -13.58726
- ],
- [
- -177.84638,
- -14.64983
- ],
- [
- -178.57728,
- -14.70582
- ]
- ]
- ],
- "terms_url": "https://openstreetmap.fr/bdortho",
- "terms_text": "BDOrtho IGN",
- "best": true,
- "icon": "http://www.ign.fr/institut/sites/all/themes/ign_institut/logo.png"
- },
- {
- "id": "Benin_cotonou_pleiade_2016",
- "name": "Benin: Cotonou Pleiade 2016",
- "type": "tms",
- "template": "https://geoxxx.agrocampus-ouest.fr/owsifl/gwc/service/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=Benin:cotonou_pleiade_2016&STYLE=&FORMAT=image/jpeg&tileMatrixSet=EPSG:3857&tileMatrix=EPSG:3857:{zoom}&tileRow={y}&tileCol={x}",
- "endDate": "2016-01-01T00:00:00.000Z",
- "startDate": "2016-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 21
- ],
- "polygon": [
- [
- [
- 2.31954,
- 6.55745
- ],
- [
- 2.33645,
- 6.56024
- ],
- [
- 2.36377,
- 6.56211
- ],
- [
- 2.36738,
- 6.56068
- ],
- [
- 2.37777,
- 6.5494
- ],
- [
- 2.37779,
- 6.53485
- ],
- [
- 2.36994,
- 6.49332
- ],
- [
- 2.37038,
- 6.45527
- ],
- [
- 2.36958,
- 6.45269
- ],
- [
- 2.36188,
- 6.44177
- ],
- [
- 2.35392,
- 6.40545
- ],
- [
- 2.36749,
- 6.4015
- ],
- [
- 2.39526,
- 6.40072
- ],
- [
- 2.40128,
- 6.40374
- ],
- [
- 2.40588,
- 6.40341
- ],
- [
- 2.42046,
- 6.39383
- ],
- [
- 2.42485,
- 6.39794
- ],
- [
- 2.42949,
- 6.39887
- ],
- [
- 2.43625,
- 6.39628
- ],
- [
- 2.43958,
- 6.40042
- ],
- [
- 2.44439,
- 6.40189
- ],
- [
- 2.45376,
- 6.39899
- ],
- [
- 2.47145,
- 6.39632
- ],
- [
- 2.48162,
- 6.39106
- ],
- [
- 2.49453,
- 6.3874
- ],
- [
- 2.50893,
- 6.38888
- ],
- [
- 2.50719,
- 6.39229
- ],
- [
- 2.5012,
- 6.39162
- ],
- [
- 2.4963,
- 6.39521
- ],
- [
- 2.4951,
- 6.40123
- ],
- [
- 2.49543,
- 6.40401
- ],
- [
- 2.4983,
- 6.41022
- ],
- [
- 2.50191,
- 6.41282
- ],
- [
- 2.51087,
- 6.41321
- ],
- [
- 2.52219,
- 6.40849
- ],
- [
- 2.53352,
- 6.40517
- ],
- [
- 2.5381,
- 6.40961
- ],
- [
- 2.54111,
- 6.4109
- ],
- [
- 2.54651,
- 6.41099
- ],
- [
- 2.54654,
- 6.40651
- ],
- [
- 2.57639,
- 6.40724
- ],
- [
- 2.57642,
- 6.41177
- ],
- [
- 2.58576,
- 6.41196
- ],
- [
- 2.58868,
- 6.41095
- ],
- [
- 2.60877,
- 6.39414
- ],
- [
- 2.6257,
- 6.39488
- ],
- [
- 2.64555,
- 6.39729
- ],
- [
- 2.65039,
- 6.39339
- ],
- [
- 2.65367,
- 6.36823
- ],
- [
- 2.64312,
- 6.36659
- ],
- [
- 2.61251,
- 6.36289
- ],
- [
- 2.56868,
- 6.3607
- ],
- [
- 2.54683,
- 6.36055
- ],
- [
- 2.54687,
- 6.35546
- ],
- [
- 2.50207,
- 6.35461
- ],
- [
- 2.47064,
- 6.35596
- ],
- [
- 2.46777,
- 6.35203
- ],
- [
- 2.46423,
- 6.3502
- ],
- [
- 2.45254,
- 6.35006
- ],
- [
- 2.45113,
- 6.34813
- ],
- [
- 2.44737,
- 6.34629
- ],
- [
- 2.43757,
- 6.34654
- ],
- [
- 2.43298,
- 6.33841
- ],
- [
- 2.43016,
- 6.33707
- ],
- [
- 2.42245,
- 6.33707
- ],
- [
- 2.39236,
- 6.34115
- ],
- [
- 2.39315,
- 6.34115
- ],
- [
- 2.36528,
- 6.34445
- ],
- [
- 2.35386,
- 6.3453
- ],
- [
- 2.34377,
- 6.34458
- ],
- [
- 2.34094,
- 6.34534
- ],
- [
- 2.31086,
- 6.36567
- ],
- [
- 2.28435,
- 6.37465
- ],
- [
- 2.28147,
- 6.37762
- ],
- [
- 2.27599,
- 6.39517
- ],
- [
- 2.27612,
- 6.3982
- ],
- [
- 2.31529,
- 6.49261
- ],
- [
- 2.3158,
- 6.55307
- ],
- [
- 2.31954,
- 6.55745
- ]
- ],
- [
- [
- 1.69563,
- 6.25076
- ],
- [
- 1.7001,
- 6.24712
- ],
- [
- 1.70418,
- 6.24697
- ],
- [
- 1.75875,
- 6.25836
- ],
- [
- 1.77079,
- 6.25995
- ],
- [
- 1.81712,
- 6.27161
- ],
- [
- 1.84457,
- 6.27657
- ],
- [
- 1.85768,
- 6.27945
- ],
- [
- 1.88843,
- 6.28326
- ],
- [
- 1.90482,
- 6.28595
- ],
- [
- 1.90618,
- 6.29435
- ],
- [
- 1.90083,
- 6.29721
- ],
- [
- 1.89881,
- 6.29954
- ],
- [
- 1.89404,
- 6.30085
- ],
- [
- 1.89048,
- 6.2997
- ],
- [
- 1.88748,
- 6.29636
- ],
- [
- 1.88344,
- 6.29622
- ],
- [
- 1.8697,
- 6.29227
- ],
- [
- 1.8564,
- 6.29198
- ],
- [
- 1.85207,
- 6.28675
- ],
- [
- 1.84991,
- 6.28906
- ],
- [
- 1.84691,
- 6.29203
- ],
- [
- 1.84353,
- 6.29333
- ],
- [
- 1.84041,
- 6.29315
- ],
- [
- 1.83627,
- 6.29129
- ],
- [
- 1.8341,
- 6.28733
- ],
- [
- 1.83417,
- 6.2852
- ],
- [
- 1.8323,
- 6.28456
- ],
- [
- 1.82786,
- 6.28644
- ],
- [
- 1.82182,
- 6.29084
- ],
- [
- 1.81563,
- 6.28998
- ],
- [
- 1.81211,
- 6.29143
- ],
- [
- 1.80758,
- 6.29571
- ],
- [
- 1.80472,
- 6.29693
- ],
- [
- 1.80074,
- 6.2971
- ],
- [
- 1.79776,
- 6.29612
- ],
- [
- 1.79625,
- 6.29492
- ],
- [
- 1.7949,
- 6.28965
- ],
- [
- 1.79641,
- 6.28608
- ],
- [
- 1.80098,
- 6.28338
- ],
- [
- 1.79567,
- 6.28013
- ],
- [
- 1.79156,
- 6.28174
- ],
- [
- 1.78499,
- 6.28122
- ],
- [
- 1.78092,
- 6.27753
- ],
- [
- 1.77588,
- 6.2755
- ],
- [
- 1.76745,
- 6.27696
- ],
- [
- 1.75653,
- 6.27496
- ],
- [
- 1.74833,
- 6.27239
- ],
- [
- 1.74762,
- 6.27726
- ],
- [
- 1.74572,
- 6.27938
- ],
- [
- 1.73948,
- 6.27985
- ],
- [
- 1.7368,
- 6.27761
- ],
- [
- 1.73572,
- 6.27892
- ],
- [
- 1.72902,
- 6.27911
- ],
- [
- 1.72435,
- 6.27422
- ],
- [
- 1.72449,
- 6.26786
- ],
- [
- 1.72556,
- 6.26683
- ],
- [
- 1.69934,
- 6.26159
- ],
- [
- 1.69573,
- 6.25726
- ],
- [
- 1.69563,
- 6.25076
- ]
- ]
- ],
- "best": true
- },
- {
- "id": "Bing",
- "name": "Bing aerial imagery",
- "type": "bing",
- "template": "https://www.bing.com/maps",
- "scaleExtent": [
- 0,
- 22
- ],
- "default": true,
- "description": "Satellite and aerial imagery.",
- "icon": "data:image/png;base64,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"
- },
- {
- "id": "Bologna-Orthophoto-2017",
- "name": "Bologna ortofoto 2017",
- "type": "tms",
- "template": "https://sitmappe.comune.bologna.it/tms/tileserver/Ortofoto2017/{zoom}/{x}/{y}.png",
- "endDate": "2017-01-01T00:00:00.000Z",
- "startDate": "2017-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 19
- ],
- "polygon": [
- [
- [
- 11.24485,
- 44.555
- ],
- [
- 11.23043,
- 44.5298
- ],
- [
- 11.23215,
- 44.52442
- ],
- [
- 11.23627,
- 44.52466
- ],
- [
- 11.24176,
- 44.52246
- ],
- [
- 11.23867,
- 44.51218
- ],
- [
- 11.23386,
- 44.51071
- ],
- [
- 11.2373,
- 44.50263
- ],
- [
- 11.25069,
- 44.50189
- ],
- [
- 11.24897,
- 44.49602
- ],
- [
- 11.25755,
- 44.49724
- ],
- [
- 11.25687,
- 44.49357
- ],
- [
- 11.28262,
- 44.48842
- ],
- [
- 11.29463,
- 44.48965
- ],
- [
- 11.29738,
- 44.48328
- ],
- [
- 11.2912,
- 44.4801
- ],
- [
- 11.29292,
- 44.46074
- ],
- [
- 11.28639,
- 44.45829
- ],
- [
- 11.28193,
- 44.42593
- ],
- [
- 11.2936,
- 44.42716
- ],
- [
- 11.29463,
- 44.4328
- ],
- [
- 11.31248,
- 44.42201
- ],
- [
- 11.31695,
- 44.42103
- ],
- [
- 11.33686,
- 44.42741
- ],
- [
- 11.33686,
- 44.43059
- ],
- [
- 11.33102,
- 44.43206
- ],
- [
- 11.33343,
- 44.4377
- ],
- [
- 11.34338,
- 44.43672
- ],
- [
- 11.36192,
- 44.4502
- ],
- [
- 11.37016,
- 44.44824
- ],
- [
- 11.37394,
- 44.44922
- ],
- [
- 11.37394,
- 44.45829
- ],
- [
- 11.39351,
- 44.46221
- ],
- [
- 11.40003,
- 44.4605
- ],
- [
- 11.40278,
- 44.46246
- ],
- [
- 11.39488,
- 44.46736
- ],
- [
- 11.41514,
- 44.48377
- ],
- [
- 11.42406,
- 44.48524
- ],
- [
- 11.42578,
- 44.48916
- ],
- [
- 11.41685,
- 44.49063
- ],
- [
- 11.43196,
- 44.51413
- ],
- [
- 11.40862,
- 44.52809
- ],
- [
- 11.41273,
- 44.53983
- ],
- [
- 11.36467,
- 44.55427
- ],
- [
- 11.34407,
- 44.55231
- ],
- [
- 11.33617,
- 44.54473
- ],
- [
- 11.31317,
- 44.54669
- ],
- [
- 11.30888,
- 44.53604
- ],
- [
- 11.30854,
- 44.52992
- ],
- [
- 11.28965,
- 44.5358
- ],
- [
- 11.29257,
- 44.53898
- ],
- [
- 11.28021,
- 44.54779
- ],
- [
- 11.26923,
- 44.53225
- ],
- [
- 11.25172,
- 44.55427
- ],
- [
- 11.24485,
- 44.555
- ]
- ]
- ],
- "terms_url": "http://dati.comune.bologna.it/node/3449",
- "terms_text": "© Comune di Bologna cc-by 4.0 ODbL compliant",
- "best": true
- },
- {
- "id": "Bonvillars-2013",
- "name": "Bonvillars Orthophoto 2013",
- "type": "tms",
- "template": "http://osmdata.asitvd.ch/tiles/bonvillars2013/{zoom}/{x}/{y}.png",
- "endDate": "2013-01-01T00:00:00.000Z",
- "startDate": "2013-01-01T00:00:00.000Z",
- "scaleExtent": [
- 14,
- 20
- ],
- "polygon": [
- [
- [
- 6.66713,
- 46.83358
- ],
- [
- 6.66313,
- 46.83833
- ],
- [
- 6.67213,
- 46.84191
- ],
- [
- 6.6749,
- 46.84226
- ],
- [
- 6.67843,
- 46.83807
- ],
- [
- 6.66713,
- 46.83358
- ]
- ]
- ],
- "terms_url": "http://osmdata.asitvd.ch/",
- "terms_text": "Bonvillars - Orthophoto technique 2013"
- },
- {
- "id": "Bordeaux_2012",
- "name": "Bordeaux - 2012",
- "type": "tms",
- "template": "http://wms.openstreetmap.fr/tms/1.0.0/bordeaux_2012/{zoom}/{x}/{y}",
- "endDate": "2012-01-01T00:00:00.000Z",
- "startDate": "2012-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- -0.59923,
- 45.04193
- ],
- [
- -0.54231,
- 45.02757
- ],
- [
- -0.50979,
- 45.00601
- ],
- [
- -0.47727,
- 45.00206
- ],
- [
- -0.47066,
- 44.97367
- ],
- [
- -0.45542,
- 44.95102
- ],
- [
- -0.46456,
- 44.91792
- ],
- [
- -0.4732,
- 44.91936
- ],
- [
- -0.48794,
- 44.90928
- ],
- [
- -0.4981,
- 44.89057
- ],
- [
- -0.48946,
- 44.87797
- ],
- [
- -0.4666,
- 44.87076
- ],
- [
- -0.47625,
- 44.84735
- ],
- [
- -0.49505,
- 44.83978
- ],
- [
- -0.49099,
- 44.83186
- ],
- [
- -0.46965,
- 44.82537
- ],
- [
- -0.49709,
- 44.80446
- ],
- [
- -0.52453,
- 44.80013
- ],
- [
- -0.5103,
- 44.76767
- ],
- [
- -0.53469,
- 44.76515
- ],
- [
- -0.56213,
- 44.75107
- ],
- [
- -0.5601,
- 44.74169
- ],
- [
- -0.5728,
- 44.74133
- ],
- [
- -0.59465,
- 44.7601
- ],
- [
- -0.63429,
- 44.73989
- ],
- [
- -0.65004,
- 44.77705
- ],
- [
- -0.67901,
- 44.77489
- ],
- [
- -0.68816,
- 44.77922
- ],
- [
- -0.71509,
- 44.76839
- ],
- [
- -0.75168,
- 44.7471
- ],
- [
- -0.76336,
- 44.75577
- ],
- [
- -0.73846,
- 44.77561
- ],
- [
- -0.74202,
- 44.78571
- ],
- [
- -0.72779,
- 44.81239
- ],
- [
- -0.73999,
- 44.82861
- ],
- [
- -0.76438,
- 44.82933
- ],
- [
- -0.803,
- 44.82176
- ],
- [
- -0.8401,
- 44.82753
- ],
- [
- -0.83908,
- 44.84014
- ],
- [
- -0.87567,
- 44.85023
- ],
- [
- -0.88532,
- 44.85852
- ],
- [
- -0.88685,
- 44.88769
- ],
- [
- -0.86601,
- 44.88697
- ],
- [
- -0.84569,
- 44.89669
- ],
- [
- -0.83349,
- 44.92764
- ],
- [
- -0.81825,
- 44.92764
- ],
- [
- -0.80198,
- 44.92224
- ],
- [
- -0.79843,
- 44.9485
- ],
- [
- -0.78725,
- 44.94814
- ],
- [
- -0.75574,
- 44.97007
- ],
- [
- -0.72169,
- 44.95785
- ],
- [
- -0.69578,
- 44.93087
- ],
- [
- -0.68866,
- 44.93447
- ],
- [
- -0.67139,
- 44.93267
- ],
- [
- -0.66935,
- 44.94095
- ],
- [
- -0.62514,
- 44.95066
- ],
- [
- -0.63226,
- 44.95893
- ],
- [
- -0.63124,
- 44.9672
- ],
- [
- -0.60024,
- 44.96756
- ],
- [
- -0.55146,
- 44.97834
- ],
- [
- -0.54079,
- 44.97726
- ],
- [
- -0.55451,
- 44.99739
- ],
- [
- -0.59364,
- 45.01751
- ],
- [
- -0.60787,
- 45.03403
- ],
- [
- -0.59923,
- 45.04193
- ]
- ]
- ],
- "terms_text": "Communauté urbaine de Bordeaux - 2012"
- },
- {
- "id": "Bordeaux_2016",
- "name": "Bordeaux 2016",
- "type": "tms",
- "template": "http://tms.bordeaux.inria.fr/bdx2016/{zoom}/{x}/{y}.jpg",
- "endDate": "2016-01-01T00:00:00.000Z",
- "startDate": "2016-01-01T00:00:00.000Z",
- "scaleExtent": [
- 14,
- 20
- ],
- "polygon": [
- [
- [
- -0.59923,
- 45.04193
- ],
- [
- -0.54231,
- 45.02757
- ],
- [
- -0.50979,
- 45.00601
- ],
- [
- -0.47727,
- 45.00206
- ],
- [
- -0.47066,
- 44.97367
- ],
- [
- -0.45542,
- 44.95102
- ],
- [
- -0.46456,
- 44.91792
- ],
- [
- -0.4732,
- 44.91936
- ],
- [
- -0.48794,
- 44.90928
- ],
- [
- -0.4981,
- 44.89057
- ],
- [
- -0.48946,
- 44.87797
- ],
- [
- -0.4666,
- 44.87076
- ],
- [
- -0.47625,
- 44.84735
- ],
- [
- -0.49505,
- 44.83978
- ],
- [
- -0.49099,
- 44.83186
- ],
- [
- -0.46965,
- 44.82537
- ],
- [
- -0.49709,
- 44.80446
- ],
- [
- -0.52453,
- 44.80013
- ],
- [
- -0.5103,
- 44.76767
- ],
- [
- -0.53469,
- 44.76515
- ],
- [
- -0.56213,
- 44.75107
- ],
- [
- -0.5601,
- 44.74169
- ],
- [
- -0.5728,
- 44.74133
- ],
- [
- -0.59465,
- 44.7601
- ],
- [
- -0.63429,
- 44.73989
- ],
- [
- -0.65004,
- 44.77705
- ],
- [
- -0.67901,
- 44.77489
- ],
- [
- -0.68816,
- 44.77922
- ],
- [
- -0.71509,
- 44.76839
- ],
- [
- -0.75168,
- 44.7471
- ],
- [
- -0.76336,
- 44.75577
- ],
- [
- -0.73846,
- 44.77561
- ],
- [
- -0.74202,
- 44.78571
- ],
- [
- -0.72779,
- 44.81239
- ],
- [
- -0.73999,
- 44.82861
- ],
- [
- -0.76438,
- 44.82933
- ],
- [
- -0.803,
- 44.82176
- ],
- [
- -0.8401,
- 44.82753
- ],
- [
- -0.83908,
- 44.84014
- ],
- [
- -0.87567,
- 44.85023
- ],
- [
- -0.88532,
- 44.85852
- ],
- [
- -0.88685,
- 44.88769
- ],
- [
- -0.86601,
- 44.88697
- ],
- [
- -0.84569,
- 44.89669
- ],
- [
- -0.83349,
- 44.92764
- ],
- [
- -0.81825,
- 44.92764
- ],
- [
- -0.80198,
- 44.92224
- ],
- [
- -0.79843,
- 44.9485
- ],
- [
- -0.78725,
- 44.94814
- ],
- [
- -0.75574,
- 44.97007
- ],
- [
- -0.72169,
- 44.95785
- ],
- [
- -0.69578,
- 44.93087
- ],
- [
- -0.68866,
- 44.93447
- ],
- [
- -0.67139,
- 44.93267
- ],
- [
- -0.66935,
- 44.94095
- ],
- [
- -0.62514,
- 44.95066
- ],
- [
- -0.63226,
- 44.95893
- ],
- [
- -0.63124,
- 44.9672
- ],
- [
- -0.60024,
- 44.96756
- ],
- [
- -0.55146,
- 44.97834
- ],
- [
- -0.54079,
- 44.97726
- ],
- [
- -0.55451,
- 44.99739
- ],
- [
- -0.59364,
- 45.01751
- ],
- [
- -0.60787,
- 45.03403
- ],
- [
- -0.59923,
- 45.04193
- ]
- ]
- ],
- "terms_text": "Bordeaux Métropole - 2016"
- },
- {
- "id": "branquinha_al",
- "name": "Branquinha AL",
- "type": "wms",
- "template": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?service=WMS&version=1.1.0&request=GetMap&layers=Branquinha&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -35.96968,
- -9.2928
- ],
- [
- -35.97063,
- -9.20261
- ],
- [
- -35.97727,
- -9.20264
- ],
- [
- -35.98365,
- -9.2027
- ],
- [
- -35.98765,
- -9.20266
- ],
- [
- -35.99159,
- -9.20274
- ],
- [
- -36.00498,
- -9.20284
- ],
- [
- -36.01473,
- -9.20293
- ],
- [
- -36.01651,
- -9.20296
- ],
- [
- -36.01871,
- -9.20293
- ],
- [
- -36.02487,
- -9.20286
- ],
- [
- -36.02892,
- -9.20297
- ],
- [
- -36.03308,
- -9.20289
- ],
- [
- -36.03769,
- -9.20294
- ],
- [
- -36.04581,
- -9.203
- ],
- [
- -36.05161,
- -9.20305
- ],
- [
- -36.05457,
- -9.20301
- ],
- [
- -36.06022,
- -9.20304
- ],
- [
- -36.06191,
- -9.20304
- ],
- [
- -36.0618,
- -9.21319
- ],
- [
- -36.06167,
- -9.21806
- ],
- [
- -36.06156,
- -9.21915
- ],
- [
- -36.06163,
- -9.22156
- ],
- [
- -36.06144,
- -9.22277
- ],
- [
- -36.06139,
- -9.22716
- ],
- [
- -36.06134,
- -9.23227
- ],
- [
- -36.0614,
- -9.23391
- ],
- [
- -36.06145,
- -9.23494
- ],
- [
- -36.06131,
- -9.23646
- ],
- [
- -36.06133,
- -9.23773
- ],
- [
- -36.06142,
- -9.23905
- ],
- [
- -36.06145,
- -9.24133
- ],
- [
- -36.06136,
- -9.2423
- ],
- [
- -36.06141,
- -9.24358
- ],
- [
- -36.06139,
- -9.2453
- ],
- [
- -36.06126,
- -9.24726
- ],
- [
- -36.06123,
- -9.24949
- ],
- [
- -36.06127,
- -9.25107
- ],
- [
- -36.06121,
- -9.25517
- ],
- [
- -36.06119,
- -9.25795
- ],
- [
- -36.06107,
- -9.25945
- ],
- [
- -36.06109,
- -9.26183
- ],
- [
- -36.06106,
- -9.26493
- ],
- [
- -36.06086,
- -9.27146
- ],
- [
- -36.06083,
- -9.2751
- ],
- [
- -36.06074,
- -9.28274
- ],
- [
- -36.0608,
- -9.29234
- ],
- [
- -36.06074,
- -9.29363
- ],
- [
- -36.05477,
- -9.29357
- ],
- [
- -36.04621,
- -9.29349
- ],
- [
- -36.03941,
- -9.29348
- ],
- [
- -36.03501,
- -9.29339
- ],
- [
- -36.02979,
- -9.29341
- ],
- [
- -36.02167,
- -9.29332
- ],
- [
- -36.01278,
- -9.29328
- ],
- [
- -36.00468,
- -9.29321
- ],
- [
- -35.99678,
- -9.29314
- ],
- [
- -35.98969,
- -9.29312
- ],
- [
- -35.98483,
- -9.29305
- ],
- [
- -35.98305,
- -9.29289
- ],
- [
- -35.98173,
- -9.29294
- ],
- [
- -35.97884,
- -9.29282
- ],
- [
- -35.96968,
- -9.2928
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "British_Columbia_Mosaic",
- "name": "British Columbia Mosaic",
- "type": "tms",
- "template": "http://{switch:a,b,c,d}.imagery.paulnorman.ca/tiles/bc_mosaic/{zoom}/{x}/{y}.png",
- "endDate": "2013-06-01T00:00:00.000Z",
- "startDate": "2009-01-01T00:00:00.000Z",
- "scaleExtent": [
- 9,
- 20
- ],
- "polygon": [
- [
- [
- -123.3176,
- 49.32726
- ],
- [
- -123.44053,
- 49.32682
- ],
- [
- -123.44072,
- 49.33844
- ],
- [
- -123.43984,
- 49.34304
- ],
- [
- -123.44013,
- 49.34354
- ],
- [
- -123.44011,
- 49.34399
- ],
- [
- -123.44063,
- 49.34445
- ],
- [
- -123.44047,
- 49.34558
- ],
- [
- -123.43978,
- 49.34606
- ],
- [
- -123.43897,
- 49.34613
- ],
- [
- -123.43729,
- 49.35672
- ],
- [
- -123.43748,
- 49.37108
- ],
- [
- -123.43353,
- 49.37094
- ],
- [
- -123.43304,
- 49.37373
- ],
- [
- -123.43327,
- 49.37512
- ],
- [
- -123.43228,
- 49.3761
- ],
- [
- -123.43175,
- 49.37917
- ],
- [
- -123.43143,
- 49.37959
- ],
- [
- -123.43078,
- 49.38239
- ],
- [
- -123.43134,
- 49.38274
- ],
- [
- -123.43121,
- 49.38385
- ],
- [
- -123.43004,
- 49.38459
- ],
- [
- -123.41899,
- 49.38471
- ],
- [
- -123.41922,
- 49.41352
- ],
- [
- -123.39725,
- 49.41357
- ],
- [
- -123.39728,
- 49.42435
- ],
- [
- -123.40069,
- 49.42433
- ],
- [
- -123.40077,
- 49.57035
- ],
- [
- -123.40008,
- 49.57035
- ],
- [
- -123.40108,
- 49.59338
- ],
- [
- -123.37604,
- 49.59328
- ],
- [
- -123.37698,
- 49.67561
- ],
- [
- -123.35073,
- 49.67564
- ],
- [
- -123.3508,
- 49.70868
- ],
- [
- -123.33289,
- 49.70872
- ],
- [
- -123.33279,
- 49.72563
- ],
- [
- -123.30071,
- 49.72556
- ],
- [
- -123.30092,
- 49.73754
- ],
- [
- -123.2886,
- 49.73764
- ],
- [
- -123.28878,
- 49.82492
- ],
- [
- -123.2998,
- 49.82492
- ],
- [
- -123.30117,
- 49.84978
- ],
- [
- -123.32182,
- 49.85067
- ],
- [
- -123.32733,
- 49.85777
- ],
- [
- -123.32767,
- 49.97589
- ],
- [
- -123.30083,
- 49.97522
- ],
- [
- -123.30072,
- 50.0997
- ],
- [
- -123.25017,
- 50.10074
- ],
- [
- -123.25091,
- 50.27549
- ],
- [
- -123.02243,
- 50.27556
- ],
- [
- -123.02249,
- 50.32549
- ],
- [
- -123.00093,
- 50.32547
- ],
- [
- -123.00078,
- 50.34239
- ],
- [
- -122.9775,
- 50.34234
- ],
- [
- -122.97748,
- 50.35043
- ],
- [
- -122.95081,
- 50.3505
- ],
- [
- -122.95079,
- 50.3712
- ],
- [
- -122.93252,
- 50.37115
- ],
- [
- -122.9321,
- 50.39979
- ],
- [
- -122.88742,
- 50.39997
- ],
- [
- -122.88734,
- 50.42561
- ],
- [
- -122.66202,
- 50.4257
- ],
- [
- -122.66231,
- 50.39945
- ],
- [
- -122.59903,
- 50.39924
- ],
- [
- -122.59883,
- 50.37552
- ],
- [
- -122.57248,
- 50.37537
- ],
- [
- -122.57356,
- 50.24939
- ],
- [
- -122.59904,
- 50.24946
- ],
- [
- -122.59915,
- 50.22657
- ],
- [
- -122.6185,
- 50.22664
- ],
- [
- -122.61857,
- 50.22441
- ],
- [
- -122.64906,
- 50.22451
- ],
- [
- -122.64922,
- 50.19935
- ],
- [
- -122.73086,
- 50.19938
- ],
- [
- -122.73116,
- 50.12443
- ],
- [
- -122.74904,
- 50.12451
- ],
- [
- -122.74905,
- 50.0903
- ],
- [
- -122.76878,
- 50.09034
- ],
- [
- -122.76898,
- 49.94945
- ],
- [
- -122.99905,
- 49.94947
- ],
- [
- -122.99912,
- 49.87546
- ],
- [
- -122.97759,
- 49.87546
- ],
- [
- -122.97781,
- 49.69951
- ],
- [
- -122.99924,
- 49.69948
- ],
- [
- -122.99925,
- 49.65165
- ],
- [
- -123.02215,
- 49.65165
- ],
- [
- -123.02212,
- 49.59951
- ],
- [
- -123.04919,
- 49.59946
- ],
- [
- -123.04919,
- 49.59405
- ],
- [
- -123.06646,
- 49.59404
- ],
- [
- -123.06636,
- 49.54519
- ],
- [
- -123.06999,
- 49.54512
- ],
- [
- -123.0699,
- 49.54132
- ],
- [
- -123.07068,
- 49.53928
- ],
- [
- -123.07089,
- 49.53799
- ],
- [
- -123.07115,
- 49.53688
- ],
- [
- -123.07111,
- 49.53581
- ],
- [
- -123.07138,
- 49.53282
- ],
- [
- -123.07165,
- 49.53211
- ],
- [
- -123.07171,
- 49.53139
- ],
- [
- -123.07203,
- 49.53042
- ],
- [
- -123.07396,
- 49.53035
- ],
- [
- -123.0748,
- 49.5295
- ],
- [
- -123.07482,
- 49.52881
- ],
- [
- -123.07434,
- 49.52806
- ],
- [
- -123.07353,
- 49.52746
- ],
- [
- -123.07337,
- 49.52704
- ],
- [
- -123.07329,
- 49.52559
- ],
- [
- -123.07371,
- 49.52496
- ],
- [
- -123.07362,
- 49.52449
- ],
- [
- -123.09926,
- 49.52449
- ],
- [
- -123.09916,
- 49.47545
- ],
- [
- -123.07105,
- 49.47553
- ],
- [
- -123.07109,
- 49.4663
- ],
- [
- -123.07392,
- 49.46631
- ],
- [
- -123.07422,
- 49.4505
- ],
- [
- -123.07463,
- 49.45009
- ],
- [
- -123.07465,
- 49.44933
- ],
- [
- -123.0746,
- 49.44902
- ],
- [
- -123.07446,
- 49.44869
- ],
- [
- -123.07433,
- 49.44799
- ],
- [
- -123.07424,
- 49.44777
- ],
- [
- -123.07431,
- 49.44475
- ],
- [
- -123.07471,
- 49.44476
- ],
- [
- -123.07464,
- 49.43773
- ],
- [
- -122.99965,
- 49.43774
- ],
- [
- -122.99965,
- 49.43692
- ],
- [
- -122.86062,
- 49.44153
- ],
- [
- -122.81026,
- 49.4424
- ],
- [
- -122.8099,
- 49.37667
- ],
- [
- -122.40361,
- 49.37666
- ],
- [
- -122.40363,
- 49.37719
- ],
- [
- -122.26474,
- 49.3773
- ],
- [
- -122.26354,
- 49.23601
- ],
- [
- -122.21557,
- 49.23614
- ],
- [
- -122.0581,
- 49.23588
- ],
- [
- -121.95383,
- 49.29665
- ],
- [
- -121.94009,
- 49.30454
- ],
- [
- -121.92358,
- 49.31423
- ],
- [
- -121.89909,
- 49.32254
- ],
- [
- -121.88834,
- 49.32598
- ],
- [
- -121.8553,
- 49.33636
- ],
- [
- -121.8327,
- 49.34415
- ],
- [
- -121.76713,
- 49.36544
- ],
- [
- -121.67367,
- 49.36546
- ],
- [
- -121.64042,
- 49.37438
- ],
- [
- -121.5962,
- 49.38605
- ],
- [
- -121.58612,
- 49.38792
- ],
- [
- -121.52137,
- 49.39946
- ],
- [
- -121.51174,
- 49.40384
- ],
- [
- -121.46793,
- 49.4229
- ],
- [
- -121.44168,
- 49.43456
- ],
- [
- -121.42243,
- 49.43458
- ],
- [
- -121.34629,
- 49.39323
- ],
- [
- -121.34801,
- 49.34124
- ],
- [
- -121.5135,
- 49.32058
- ],
- [
- -121.60317,
- 49.27717
- ],
- [
- -121.65841,
- 49.18561
- ],
- [
- -121.67995,
- 49.16541
- ],
- [
- -121.78158,
- 49.07026
- ],
- [
- -121.80762,
- 49.06225
- ],
- [
- -121.9394,
- 49.06362
- ],
- [
- -121.97255,
- 49.04242
- ],
- [
- -121.99214,
- 49.03329
- ],
- [
- -122.00353,
- 49.02734
- ],
- [
- -122.01786,
- 49.02411
- ],
- [
- -122.11086,
- 48.99928
- ],
- [
- -122.14931,
- 48.99953
- ],
- [
- -122.14927,
- 48.99915
- ],
- [
- -122.19914,
- 48.9996
- ],
- [
- -122.19918,
- 48.9992
- ],
- [
- -122.23436,
- 48.99948
- ],
- [
- -122.23436,
- 49.00017
- ],
- [
- -122.39947,
- 49.00124
- ],
- [
- -122.45213,
- 49.00163
- ],
- [
- -122.45213,
- 49.00088
- ],
- [
- -122.45841,
- 49.00093
- ],
- [
- -122.45848,
- 48.99931
- ],
- [
- -122.49925,
- 48.9995
- ],
- [
- -122.49925,
- 48.99929
- ],
- [
- -122.54926,
- 48.99951
- ],
- [
- -122.54926,
- 48.99932
- ],
- [
- -122.65808,
- 48.99942
- ],
- [
- -122.65811,
- 48.9954
- ],
- [
- -122.70676,
- 48.99553
- ],
- [
- -122.75198,
- 48.99564
- ],
- [
- -122.79221,
- 48.99572
- ],
- [
- -122.79219,
- 48.99943
- ],
- [
- -123.03504,
- 48.99957
- ],
- [
- -123.03504,
- 49.0001
- ],
- [
- -123.03971,
- 49.00005
- ],
- [
- -123.03974,
- 49.00018
- ],
- [
- -123.04855,
- 49.00013
- ],
- [
- -123.04853,
- 49.00047
- ],
- [
- -123.05571,
- 49.00045
- ],
- [
- -123.05563,
- 49.00023
- ],
- [
- -123.06414,
- 49.00013
- ],
- [
- -123.06416,
- 48.99994
- ],
- [
- -123.0749,
- 48.99969
- ],
- [
- -123.07507,
- 49.00062
- ],
- [
- -123.08996,
- 49.00037
- ],
- [
- -123.10923,
- 48.99994
- ],
- [
- -123.12712,
- 49.0003
- ],
- [
- -123.136,
- 48.99987
- ],
- [
- -123.13627,
- 49.00058
- ],
- [
- -123.15385,
- 48.99981
- ],
- [
- -123.15405,
- 49.00068
- ],
- [
- -123.171,
- 49.00013
- ],
- [
- -123.20009,
- 48.99968
- ],
- [
- -123.20034,
- 49.04978
- ],
- [
- -123.21088,
- 49.04972
- ],
- [
- -123.21122,
- 49.05199
- ],
- [
- -123.20705,
- 49.05209
- ],
- [
- -123.20789,
- 49.06079
- ],
- [
- -123.21917,
- 49.0601
- ],
- [
- -123.21896,
- 49.06127
- ],
- [
- -123.22518,
- 49.06127
- ],
- [
- -123.22539,
- 49.06224
- ],
- [
- -123.22971,
- 49.06203
- ],
- [
- -123.22981,
- 49.06859
- ],
- [
- -123.23319,
- 49.06873
- ],
- [
- -123.2335,
- 49.07059
- ],
- [
- -123.24931,
- 49.07025
- ],
- [
- -123.24973,
- 49.08026
- ],
- [
- -123.27514,
- 49.0804
- ],
- [
- -123.27514,
- 49.08709
- ],
- [
- -123.29948,
- 49.0873
- ],
- [
- -123.29944,
- 49.08025
- ],
- [
- -123.32545,
- 49.08039
- ],
- [
- -123.32544,
- 49.11547
- ],
- [
- -123.2751,
- 49.15033
- ],
- [
- -123.27518,
- 49.18733
- ],
- [
- -123.27881,
- 49.18711
- ],
- [
- -123.27889,
- 49.19107
- ],
- [
- -123.30048,
- 49.19107
- ],
- [
- -123.30042,
- 49.26229
- ],
- [
- -123.31262,
- 49.26224
- ],
- [
- -123.3126,
- 49.27149
- ],
- [
- -123.31543,
- 49.27147
- ],
- [
- -123.31566,
- 49.28189
- ],
- [
- -123.31747,
- 49.28188
- ],
- [
- -123.3175,
- 49.29185
- ],
- [
- -123.31904,
- 49.29185
- ],
- [
- -123.31907,
- 49.2986
- ],
- [
- -123.32023,
- 49.29857
- ],
- [
- -123.32028,
- 49.30197
- ],
- [
- -123.32227,
- 49.30196
- ],
- [
- -123.32239,
- 49.31183
- ],
- [
- -123.3254,
- 49.31181
- ],
- [
- -123.32539,
- 49.32017
- ],
- [
- -123.31927,
- 49.3202
- ],
- [
- -123.31922,
- 49.32467
- ],
- [
- -123.31794,
- 49.32466
- ],
- [
- -123.31799,
- 49.32541
- ],
- [
- -123.3176,
- 49.32726
- ]
- ]
- ],
- "terms_url": "http://imagery.paulnorman.ca/tiles/about.html",
- "terms_text": "Copyright Province of British Columbia, City of Surrey"
- },
- {
- "id": "Budapest_XI_2015",
- "name": "Budapest district XI orthophoto 2015",
- "type": "wms",
- "template": "http://terinfo.ujbuda.hu/mapproxy/service?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=orto2015_20160304&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:4326",
- "endDate": "2015-01-01T00:00:00.000Z",
- "startDate": "2015-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 19.04767,
- 47.48789
- ],
- [
- 19.05157,
- 47.4899
- ],
- [
- 19.06434,
- 47.4792
- ],
- [
- 19.0665,
- 47.47632
- ],
- [
- 19.06766,
- 47.47343
- ],
- [
- 19.06837,
- 47.47077
- ],
- [
- 19.06846,
- 47.46876
- ],
- [
- 19.06722,
- 47.46501
- ],
- [
- 19.05683,
- 47.45259
- ],
- [
- 19.0549,
- 47.44906
- ],
- [
- 19.05176,
- 47.43499
- ],
- [
- 19.04863,
- 47.429
- ],
- [
- 19.04384,
- 47.42968
- ],
- [
- 19.04023,
- 47.42932
- ],
- [
- 19.03509,
- 47.43818
- ],
- [
- 19.03221,
- 47.43779
- ],
- [
- 19.0252,
- 47.442
- ],
- [
- 19.0207,
- 47.44576
- ],
- [
- 19.01915,
- 47.44658
- ],
- [
- 19.01545,
- 47.44759
- ],
- [
- 19.01347,
- 47.44361
- ],
- [
- 19.01266,
- 47.44271
- ],
- [
- 19.01178,
- 47.44247
- ],
- [
- 19.0119,
- 47.44188
- ],
- [
- 19.0098,
- 47.43944
- ],
- [
- 19.0057,
- 47.43111
- ],
- [
- 19.00046,
- 47.43097
- ],
- [
- 18.99534,
- 47.42821
- ],
- [
- 18.97545,
- 47.42818
- ],
- [
- 18.97343,
- 47.42904
- ],
- [
- 18.97361,
- 47.42998
- ],
- [
- 18.97548,
- 47.43067
- ],
- [
- 18.97719,
- 47.43402
- ],
- [
- 18.97823,
- 47.43817
- ],
- [
- 18.97733,
- 47.44657
- ],
- [
- 18.97004,
- 47.44988
- ],
- [
- 18.96861,
- 47.45142
- ],
- [
- 18.97568,
- 47.45506
- ],
- [
- 18.97586,
- 47.45556
- ],
- [
- 18.97625,
- 47.45584
- ],
- [
- 18.97658,
- 47.45594
- ],
- [
- 18.97763,
- 47.45597
- ],
- [
- 18.98017,
- 47.45605
- ],
- [
- 18.98162,
- 47.46067
- ],
- [
- 18.97793,
- 47.46857
- ],
- [
- 18.96867,
- 47.47643
- ],
- [
- 18.97745,
- 47.48194
- ],
- [
- 18.98035,
- 47.48169
- ],
- [
- 18.98565,
- 47.4782
- ],
- [
- 18.98907,
- 47.47838
- ],
- [
- 18.99117,
- 47.47898
- ],
- [
- 18.99177,
- 47.48102
- ],
- [
- 18.99288,
- 47.48182
- ],
- [
- 18.99836,
- 47.48238
- ],
- [
- 18.99902,
- 47.483
- ],
- [
- 19.004,
- 47.48189
- ],
- [
- 19.00416,
- 47.48399
- ],
- [
- 19.01027,
- 47.48535
- ],
- [
- 19.01237,
- 47.48404
- ],
- [
- 19.0138,
- 47.48351
- ],
- [
- 19.01674,
- 47.48465
- ],
- [
- 19.0163,
- 47.48539
- ],
- [
- 19.01689,
- 47.48595
- ],
- [
- 19.01808,
- 47.48605
- ],
- [
- 19.02108,
- 47.48492
- ],
- [
- 19.02124,
- 47.48612
- ],
- [
- 19.02301,
- 47.48741
- ],
- [
- 19.02637,
- 47.48885
- ],
- [
- 19.02995,
- 47.48904
- ],
- [
- 19.03135,
- 47.48855
- ],
- [
- 19.03189,
- 47.48759
- ],
- [
- 19.03286,
- 47.48712
- ],
- [
- 19.03364,
- 47.48702
- ],
- [
- 19.03514,
- 47.48725
- ],
- [
- 19.03585,
- 47.48729
- ],
- [
- 19.03616,
- 47.48751
- ],
- [
- 19.03665,
- 47.48767
- ],
- [
- 19.03748,
- 47.48774
- ],
- [
- 19.03847,
- 47.48737
- ],
- [
- 19.03918,
- 47.48679
- ],
- [
- 19.04105,
- 47.48649
- ],
- [
- 19.04181,
- 47.48737
- ],
- [
- 19.04387,
- 47.4881
- ],
- [
- 19.04542,
- 47.48817
- ],
- [
- 19.04695,
- 47.4881
- ],
- [
- 19.04767,
- 47.48789
- ]
- ]
- ],
- "terms_url": "http://terinfo.ujbuda.hu",
- "terms_text": "Budapest XI. kerület önkormányzata",
- "description": "5 cm resolution bald image"
- },
- {
- "id": "Budapest_XI_2017",
- "name": "Budapest district XI orthophoto 2017",
- "type": "wms",
- "template": "http://terinfo.ujbuda.hu/mapproxy/service?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=orto_2017&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:4326",
- "endDate": "2017-03-01T00:00:00.000Z",
- "startDate": "2017-03-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 19.04767,
- 47.48789
- ],
- [
- 19.05157,
- 47.4899
- ],
- [
- 19.06434,
- 47.4792
- ],
- [
- 19.0665,
- 47.47632
- ],
- [
- 19.06766,
- 47.47343
- ],
- [
- 19.06837,
- 47.47077
- ],
- [
- 19.06846,
- 47.46876
- ],
- [
- 19.06722,
- 47.46501
- ],
- [
- 19.05683,
- 47.45259
- ],
- [
- 19.0549,
- 47.44906
- ],
- [
- 19.05176,
- 47.43499
- ],
- [
- 19.04863,
- 47.429
- ],
- [
- 19.04384,
- 47.42968
- ],
- [
- 19.04023,
- 47.42932
- ],
- [
- 19.03509,
- 47.43818
- ],
- [
- 19.03221,
- 47.43779
- ],
- [
- 19.0252,
- 47.442
- ],
- [
- 19.0207,
- 47.44576
- ],
- [
- 19.01915,
- 47.44658
- ],
- [
- 19.01545,
- 47.44759
- ],
- [
- 19.01347,
- 47.44361
- ],
- [
- 19.01266,
- 47.44271
- ],
- [
- 19.01178,
- 47.44247
- ],
- [
- 19.0119,
- 47.44188
- ],
- [
- 19.0098,
- 47.43944
- ],
- [
- 19.0057,
- 47.43111
- ],
- [
- 19.00046,
- 47.43097
- ],
- [
- 18.99534,
- 47.42821
- ],
- [
- 18.97545,
- 47.42818
- ],
- [
- 18.97343,
- 47.42904
- ],
- [
- 18.97361,
- 47.42998
- ],
- [
- 18.97548,
- 47.43067
- ],
- [
- 18.97719,
- 47.43402
- ],
- [
- 18.97823,
- 47.43817
- ],
- [
- 18.97733,
- 47.44657
- ],
- [
- 18.97004,
- 47.44988
- ],
- [
- 18.96861,
- 47.45142
- ],
- [
- 18.97568,
- 47.45506
- ],
- [
- 18.97586,
- 47.45556
- ],
- [
- 18.97625,
- 47.45584
- ],
- [
- 18.97658,
- 47.45594
- ],
- [
- 18.97763,
- 47.45597
- ],
- [
- 18.98017,
- 47.45605
- ],
- [
- 18.98162,
- 47.46067
- ],
- [
- 18.97793,
- 47.46857
- ],
- [
- 18.96867,
- 47.47643
- ],
- [
- 18.97745,
- 47.48194
- ],
- [
- 18.98035,
- 47.48169
- ],
- [
- 18.98565,
- 47.4782
- ],
- [
- 18.98907,
- 47.47838
- ],
- [
- 18.99117,
- 47.47898
- ],
- [
- 18.99177,
- 47.48102
- ],
- [
- 18.99288,
- 47.48182
- ],
- [
- 18.99836,
- 47.48238
- ],
- [
- 18.99902,
- 47.483
- ],
- [
- 19.004,
- 47.48189
- ],
- [
- 19.00416,
- 47.48399
- ],
- [
- 19.01027,
- 47.48535
- ],
- [
- 19.01237,
- 47.48404
- ],
- [
- 19.0138,
- 47.48351
- ],
- [
- 19.01674,
- 47.48465
- ],
- [
- 19.0163,
- 47.48539
- ],
- [
- 19.01689,
- 47.48595
- ],
- [
- 19.01808,
- 47.48605
- ],
- [
- 19.02108,
- 47.48492
- ],
- [
- 19.02124,
- 47.48612
- ],
- [
- 19.02301,
- 47.48741
- ],
- [
- 19.02637,
- 47.48885
- ],
- [
- 19.02995,
- 47.48904
- ],
- [
- 19.03135,
- 47.48855
- ],
- [
- 19.03189,
- 47.48759
- ],
- [
- 19.03286,
- 47.48712
- ],
- [
- 19.03364,
- 47.48702
- ],
- [
- 19.03514,
- 47.48725
- ],
- [
- 19.03585,
- 47.48729
- ],
- [
- 19.03616,
- 47.48751
- ],
- [
- 19.03665,
- 47.48767
- ],
- [
- 19.03748,
- 47.48774
- ],
- [
- 19.03847,
- 47.48737
- ],
- [
- 19.03918,
- 47.48679
- ],
- [
- 19.04105,
- 47.48649
- ],
- [
- 19.04181,
- 47.48737
- ],
- [
- 19.04387,
- 47.4881
- ],
- [
- 19.04542,
- 47.48817
- ],
- [
- 19.04695,
- 47.4881
- ],
- [
- 19.04767,
- 47.48789
- ]
- ]
- ],
- "terms_url": "http://terinfo.ujbuda.hu",
- "terms_text": "Budapest XI. kerület önkormányzata",
- "best": true,
- "description": "5 cm resolution bald image"
- },
- {
- "id": "Cadastre",
- "name": "Cadastre",
- "type": "tms",
- "template": "http://tms.cadastre.openstreetmap.fr/*/tout/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 12,
- 22
- ],
- "polygon": [
- [
- [
- -2.7,
- 43.9
- ],
- [
- -6.3,
- 48.98
- ],
- [
- -2.25,
- 50.09
- ],
- [
- 1.31,
- 50.88
- ],
- [
- 2.35816,
- 51.32937
- ],
- [
- 2.5488,
- 51.09759
- ],
- [
- 2.57048,
- 51.07409
- ],
- [
- 2.58741,
- 51.01763
- ],
- [
- 2.59845,
- 51.0051
- ],
- [
- 2.61558,
- 50.99749
- ],
- [
- 2.63986,
- 50.95766
- ],
- [
- 2.64225,
- 50.94578
- ],
- [
- 2.62452,
- 50.9256
- ],
- [
- 2.61962,
- 50.91067
- ],
- [
- 2.62396,
- 50.86071
- ],
- [
- 2.62781,
- 50.85054
- ],
- [
- 2.63786,
- 50.83696
- ],
- [
- 2.6511,
- 50.82906
- ],
- [
- 2.73267,
- 50.81738
- ],
- [
- 2.79995,
- 50.73795
- ],
- [
- 2.81655,
- 50.73092
- ],
- [
- 2.85265,
- 50.73335
- ],
- [
- 2.89072,
- 50.7162
- ],
- [
- 2.90492,
- 50.71536
- ],
- [
- 2.9161,
- 50.72418
- ],
- [
- 2.93508,
- 50.75592
- ],
- [
- 3.00718,
- 50.78377
- ],
- [
- 3.08218,
- 50.78749
- ],
- [
- 3.09244,
- 50.79092
- ],
- [
- 3.11412,
- 50.80566
- ],
- [
- 3.14877,
- 50.80195
- ],
- [
- 3.2154,
- 50.73111
- ],
- [
- 3.22149,
- 50.7267
- ],
- [
- 3.27051,
- 50.70375
- ],
- [
- 3.27545,
- 50.67757
- ],
- [
- 3.26576,
- 50.6604
- ],
- [
- 3.26588,
- 50.64054
- ],
- [
- 3.28922,
- 50.60028
- ],
- [
- 3.29219,
- 50.55037
- ],
- [
- 3.3056,
- 50.53267
- ],
- [
- 3.37551,
- 50.50839
- ],
- [
- 3.3898,
- 50.50884
- ],
- [
- 3.4748,
- 50.54445
- ],
- [
- 3.52173,
- 50.53459
- ],
- [
- 3.53266,
- 50.51873
- ],
- [
- 3.54779,
- 50.51012
- ],
- [
- 3.61523,
- 50.50558
- ],
- [
- 3.67378,
- 50.45642
- ],
- [
- 3.68415,
- 50.35277
- ],
- [
- 3.6901,
- 50.34044
- ],
- [
- 3.70258,
- 50.33482
- ],
- [
- 3.71576,
- 50.33854
- ],
- [
- 3.74935,
- 50.36279
- ],
- [
- 3.84109,
- 50.36558
- ],
- [
- 3.90189,
- 50.3436
- ],
- [
- 3.91317,
- 50.34291
- ],
- [
- 4.02672,
- 50.36904
- ],
- [
- 4.13761,
- 50.29984
- ],
- [
- 4.14388,
- 50.29727
- ],
- [
- 4.21444,
- 50.28167
- ],
- [
- 4.22904,
- 50.26664
- ],
- [
- 4.23078,
- 50.25233
- ],
- [
- 4.17084,
- 50.18579
- ],
- [
- 4.16601,
- 50.16888
- ],
- [
- 4.1764,
- 50.1547
- ],
- [
- 4.21195,
- 50.13602
- ],
- [
- 4.24074,
- 50.07102
- ],
- [
- 4.23193,
- 50.05551
- ],
- [
- 4.18164,
- 50.03436
- ],
- [
- 4.17177,
- 50.02537
- ],
- [
- 4.16976,
- 50.01217
- ],
- [
- 4.1765,
- 50.00065
- ],
- [
- 4.20633,
- 49.97546
- ],
- [
- 4.22164,
- 49.97089
- ],
- [
- 4.30877,
- 49.98145
- ],
- [
- 4.44542,
- 49.9523
- ],
- [
- 4.45469,
- 49.95251
- ],
- [
- 4.6581,
- 50.00609
- ],
- [
- 4.66936,
- 50.01392
- ],
- [
- 4.67293,
- 50.02716
- ],
- [
- 4.66924,
- 50.06972
- ],
- [
- 4.69517,
- 50.10472
- ],
- [
- 4.83123,
- 50.17941
- ],
- [
- 4.8815,
- 50.16436
- ],
- [
- 4.90479,
- 50.14451
- ],
- [
- 4.90426,
- 50.12639
- ],
- [
- 4.88076,
- 50.0815
- ],
- [
- 4.86277,
- 50.0745
- ],
- [
- 4.85104,
- 50.06216
- ],
- [
- 4.84331,
- 50.03884
- ],
- [
- 4.84331,
- 50.03883
- ],
- [
- 4.8433,
- 50.03881
- ],
- [
- 4.82678,
- 49.989
- ],
- [
- 4.82662,
- 49.97692
- ],
- [
- 4.83343,
- 49.96696
- ],
- [
- 4.89654,
- 49.91753
- ],
- [
- 4.89755,
- 49.89424
- ],
- [
- 4.87913,
- 49.86942
- ],
- [
- 4.87625,
- 49.85111
- ],
- [
- 4.88924,
- 49.81266
- ],
- [
- 4.89769,
- 49.80204
- ],
- [
- 4.91098,
- 49.79926
- ],
- [
- 4.99534,
- 49.81116
- ],
- [
- 5.01867,
- 49.79272
- ],
- [
- 5.02686,
- 49.78886
- ],
- [
- 5.09944,
- 49.77323
- ],
- [
- 5.13458,
- 49.73462
- ],
- [
- 5.1412,
- 49.72984
- ],
- [
- 5.18761,
- 49.70906
- ],
- [
- 5.19602,
- 49.70732
- ],
- [
- 5.28157,
- 49.70836
- ],
- [
- 5.33363,
- 49.67308
- ],
- [
- 5.344,
- 49.65049
- ],
- [
- 5.3544,
- 49.64041
- ],
- [
- 5.43141,
- 49.60791
- ],
- [
- 5.48205,
- 49.52815
- ],
- [
- 5.49294,
- 49.51979
- ],
- [
- 5.50666,
- 49.52042
- ],
- [
- 5.55401,
- 49.54025
- ],
- [
- 5.59311,
- 49.53424
- ],
- [
- 5.6076,
- 49.53761
- ],
- [
- 5.641,
- 49.56095
- ],
- [
- 5.70676,
- 49.55267
- ],
- [
- 5.71578,
- 49.55361
- ],
- [
- 5.77526,
- 49.57414
- ],
- [
- 5.8399,
- 49.55321
- ],
- [
- 5.86126,
- 49.52038
- ],
- [
- 5.876,
- 49.5114
- ],
- [
- 5.97516,
- 49.50129
- ],
- [
- 5.99801,
- 49.47317
- ],
- [
- 6.01627,
- 49.46597
- ],
- [
- 6.08635,
- 49.47562
- ],
- [
- 6.09319,
- 49.47787
- ],
- [
- 6.17397,
- 49.52187
- ],
- [
- 6.24643,
- 49.52511
- ],
- [
- 6.334,
- 49.48235
- ],
- [
- 6.34423,
- 49.48037
- ],
- [
- 6.43515,
- 49.487
- ],
- [
- 6.5451,
- 49.44384
- ],
- [
- 6.60639,
- 49.37868
- ],
- [
- 6.60497,
- 49.33739
- ],
- [
- 6.61627,
- 49.31869
- ],
- [
- 6.67013,
- 49.29269
- ],
- [
- 6.72996,
- 49.22917
- ],
- [
- 6.74328,
- 49.19086
- ],
- [
- 6.76026,
- 49.17752
- ],
- [
- 6.80904,
- 49.17284
- ],
- [
- 6.82473,
- 49.17826
- ],
- [
- 6.83093,
- 49.19366
- ],
- [
- 6.82982,
- 49.21802
- ],
- [
- 6.85119,
- 49.23136
- ],
- [
- 6.88453,
- 49.2239
- ],
- [
- 6.89322,
- 49.22389
- ],
- [
- 6.93753,
- 49.23369
- ],
- [
- 7.04055,
- 49.19794
- ],
- [
- 7.0463,
- 49.17503
- ],
- [
- 7.05478,
- 49.16313
- ],
- [
- 7.06908,
- 49.16018
- ],
- [
- 7.10494,
- 49.16634
- ],
- [
- 7.14315,
- 49.14159
- ],
- [
- 7.1535,
- 49.13839
- ],
- [
- 7.28683,
- 49.13488
- ],
- [
- 7.29893,
- 49.13856
- ],
- [
- 7.36095,
- 49.18259
- ],
- [
- 7.45012,
- 49.19517
- ],
- [
- 7.50113,
- 49.17672
- ],
- [
- 7.54379,
- 49.10572
- ],
- [
- 7.5579,
- 49.09626
- ],
- [
- 7.6296,
- 49.08527
- ],
- [
- 7.64722,
- 49.06722
- ],
- [
- 7.6612,
- 49.06119
- ],
- [
- 7.75401,
- 49.05963
- ],
- [
- 7.76073,
- 49.06067
- ],
- [
- 7.80291,
- 49.07489
- ],
- [
- 7.85525,
- 49.05329
- ],
- [
- 7.8673,
- 49.05227
- ],
- [
- 7.93826,
- 49.06832
- ],
- [
- 8.08069,
- 49.00688
- ],
- [
- 8.2225,
- 48.98787
- ],
- [
- 8.23704,
- 48.97683
- ],
- [
- 8.23589,
- 48.95817
- ],
- [
- 8.20888,
- 48.94863
- ],
- [
- 8.20089,
- 48.94339
- ],
- [
- 8.15824,
- 48.89753
- ],
- [
- 8.10087,
- 48.7993
- ],
- [
- 7.99071,
- 48.74478
- ],
- [
- 7.98534,
- 48.7409
- ],
- [
- 7.90422,
- 48.65865
- ],
- [
- 7.85605,
- 48.63606
- ],
- [
- 7.8484,
- 48.62977
- ],
- [
- 7.81842,
- 48.58883
- ],
- [
- 7.81456,
- 48.57704
- ],
- [
- 7.81449,
- 48.50968
- ],
- [
- 7.78547,
- 48.48337
- ],
- [
- 7.78055,
- 48.47652
- ],
- [
- 7.74506,
- 48.39484
- ],
- [
- 7.74357,
- 48.38427
- ],
- [
- 7.75159,
- 48.32322
- ],
- [
- 7.71085,
- 48.29841
- ],
- [
- 7.70241,
- 48.28803
- ],
- [
- 7.67661,
- 48.21555
- ],
- [
- 7.59605,
- 48.11698
- ],
- [
- 7.59165,
- 48.10648
- ],
- [
- 7.58522,
- 48.04694
- ],
- [
- 7.59127,
- 48.03035
- ],
- [
- 7.62437,
- 47.99865
- ],
- [
- 7.63205,
- 47.97081
- ],
- [
- 7.57554,
- 47.87436
- ],
- [
- 7.5728,
- 47.86435
- ],
- [
- 7.57267,
- 47.83631
- ],
- [
- 7.54581,
- 47.78793
- ],
- [
- 7.54418,
- 47.77232
- ],
- [
- 7.55758,
- 47.72899
- ],
- [
- 7.53526,
- 47.6989
- ],
- [
- 7.53136,
- 47.68564
- ],
- [
- 7.537,
- 47.67302
- ],
- [
- 7.60016,
- 47.60822
- ],
- [
- 7.58967,
- 47.56755
- ],
- [
- 7.55424,
- 47.55128
- ],
- [
- 7.54511,
- 47.54283
- ],
- [
- 7.51256,
- 47.48439
- ],
- [
- 7.38747,
- 47.42111
- ],
- [
- 7.32653,
- 47.4273
- ],
- [
- 7.24435,
- 47.40939
- ],
- [
- 7.16708,
- 47.4335
- ],
- [
- 7.15212,
- 47.47612
- ],
- [
- 7.14279,
- 47.48707
- ],
- [
- 7.12853,
- 47.48893
- ],
- [
- 7.0801,
- 47.47718
- ],
- [
- 7.03557,
- 47.48695
- ],
- [
- 7.02102,
- 47.48458
- ],
- [
- 7.01205,
- 47.47287
- ],
- [
- 7.003,
- 47.44095
- ],
- [
- 6.9551,
- 47.40808
- ],
- [
- 6.94716,
- 47.39698
- ],
- [
- 6.94818,
- 47.38337
- ],
- [
- 6.95769,
- 47.37359
- ],
- [
- 6.97126,
- 47.37218
- ],
- [
- 7.018,
- 47.38386
- ],
- [
- 7.05623,
- 47.37035
- ],
- [
- 7.07007,
- 47.35005
- ],
- [
- 7.05958,
- 47.32257
- ],
- [
- 6.97424,
- 47.27856
- ],
- [
- 6.96347,
- 47.26233
- ],
- [
- 6.96134,
- 47.23479
- ],
- [
- 6.89443,
- 47.19393
- ],
- [
- 6.88913,
- 47.18922
- ],
- [
- 6.85545,
- 47.14636
- ],
- [
- 6.76907,
- 47.10751
- ],
- [
- 6.76011,
- 47.09953
- ],
- [
- 6.72561,
- 47.0418
- ],
- [
- 6.62355,
- 46.9811
- ],
- [
- 6.4812,
- 46.9445
- ],
- [
- 6.46892,
- 46.93522
- ],
- [
- 6.46686,
- 46.91997
- ],
- [
- 6.47548,
- 46.88771
- ],
- [
- 6.4535,
- 46.8239
- ],
- [
- 6.45644,
- 46.80534
- ],
- [
- 6.46722,
- 46.79104
- ],
- [
- 6.46098,
- 46.76887
- ],
- [
- 6.15817,
- 46.59343
- ],
- [
- 6.14872,
- 46.58069
- ],
- [
- 6.15152,
- 46.56508
- ],
- [
- 6.16549,
- 46.54399
- ],
- [
- 6.15811,
- 46.52456
- ],
- [
- 6.10174,
- 46.46979
- ],
- [
- 6.09572,
- 46.45418
- ],
- [
- 6.09704,
- 46.43317
- ],
- [
- 6.10829,
- 46.41643
- ],
- [
- 6.16622,
- 46.38839
- ],
- [
- 6.17817,
- 46.36922
- ],
- [
- 6.13748,
- 46.31297
- ],
- [
- 6.13371,
- 46.30227
- ],
- [
- 6.13038,
- 46.23737
- ],
- [
- 6.1103,
- 46.22344
- ],
- [
- 6.08865,
- 46.23081
- ],
- [
- 6.07717,
- 46.23123
- ],
- [
- 6.01857,
- 46.21601
- ],
- [
- 6.00681,
- 46.20752
- ],
- [
- 6.00388,
- 46.19332
- ],
- [
- 6.00787,
- 46.16977
- ],
- [
- 6.01783,
- 46.15564
- ],
- [
- 6.03509,
- 46.15456
- ],
- [
- 6.05564,
- 46.16288
- ],
- [
- 6.12468,
- 46.15415
- ],
- [
- 6.13778,
- 46.15702
- ],
- [
- 6.24026,
- 46.22094
- ],
- [
- 6.24906,
- 46.23299
- ],
- [
- 6.24707,
- 46.24777
- ],
- [
- 6.21148,
- 46.31057
- ],
- [
- 6.21219,
- 46.32485
- ],
- [
- 6.23946,
- 46.36705
- ],
- [
- 6.31648,
- 46.41557
- ],
- [
- 6.41083,
- 46.42495
- ],
- [
- 6.41748,
- 46.42682
- ],
- [
- 6.50498,
- 46.46871
- ],
- [
- 6.63047,
- 46.47435
- ],
- [
- 6.74665,
- 46.45695
- ],
- [
- 6.82244,
- 46.42925
- ],
- [
- 6.81832,
- 46.38181
- ],
- [
- 6.80484,
- 46.36179
- ],
- [
- 6.80189,
- 46.34639
- ],
- [
- 6.81095,
- 46.33359
- ],
- [
- 6.86491,
- 46.30038
- ],
- [
- 6.87504,
- 46.28007
- ],
- [
- 6.86092,
- 46.2439
- ],
- [
- 6.82698,
- 46.21188
- ],
- [
- 6.82075,
- 46.19862
- ],
- [
- 6.81863,
- 46.16592
- ],
- [
- 6.82259,
- 46.15261
- ],
- [
- 6.83427,
- 46.14509
- ],
- [
- 6.90382,
- 46.12971
- ],
- [
- 6.90491,
- 46.09595
- ],
- [
- 6.90932,
- 46.08406
- ],
- [
- 6.92001,
- 46.07721
- ],
- [
- 6.94898,
- 46.0699
- ],
- [
- 7.01556,
- 46.00883
- ],
- [
- 7.05191,
- 45.93066
- ],
- [
- 7.04533,
- 45.92217
- ],
- [
- 7.04497,
- 45.92064
- ],
- [
- 7.04394,
- 45.92036
- ],
- [
- 6.99582,
- 45.85822
- ],
- [
- 6.94097,
- 45.83551
- ],
- [
- 6.84376,
- 45.82387
- ],
- [
- 6.83102,
- 45.81711
- ],
- [
- 6.82614,
- 45.80353
- ],
- [
- 6.82787,
- 45.73217
- ],
- [
- 6.83174,
- 45.72082
- ],
- [
- 6.8414,
- 45.71373
- ],
- [
- 6.90729,
- 45.69124
- ],
- [
- 6.92419,
- 45.66935
- ],
- [
- 6.94247,
- 45.66172
- ],
- [
- 6.97131,
- 45.66528
- ],
- [
- 7.00597,
- 45.64945
- ],
- [
- 7.01151,
- 45.63652
- ],
- [
- 6.9978,
- 45.60877
- ],
- [
- 6.99643,
- 45.59465
- ],
- [
- 7.0158,
- 45.52354
- ],
- [
- 7.02774,
- 45.5102
- ],
- [
- 7.1072,
- 45.47877
- ],
- [
- 7.1228,
- 45.44924
- ],
- [
- 7.13304,
- 45.44001
- ],
- [
- 7.1856,
- 45.41894
- ],
- [
- 7.19515,
- 45.40409
- ],
- [
- 7.17075,
- 45.35069
- ],
- [
- 7.14232,
- 45.32298
- ],
- [
- 7.13649,
- 45.30576
- ],
- [
- 7.14458,
- 45.25048
- ],
- [
- 7.08417,
- 45.20279
- ],
- [
- 6.99279,
- 45.19823
- ],
- [
- 6.98106,
- 45.19368
- ],
- [
- 6.90009,
- 45.12689
- ],
- [
- 6.85843,
- 45.11699
- ],
- [
- 6.78283,
- 45.14228
- ],
- [
- 6.77056,
- 45.14242
- ],
- [
- 6.67751,
- 45.11356
- ],
- [
- 6.6653,
- 45.10289
- ],
- [
- 6.66501,
- 45.08667
- ],
- [
- 6.68237,
- 45.04558
- ],
- [
- 6.69602,
- 45.03395
- ],
- [
- 6.75744,
- 45.01884
- ],
- [
- 6.78375,
- 44.9146
- ],
- [
- 6.7942,
- 44.90161
- ],
- [
- 6.86698,
- 44.86519
- ],
- [
- 6.8798,
- 44.86346
- ],
- [
- 6.93633,
- 44.87461
- ],
- [
- 7.01795,
- 44.84402
- ],
- [
- 7.03453,
- 44.82282
- ],
- [
- 7.03711,
- 44.75009
- ],
- [
- 7.0496,
- 44.73226
- ],
- [
- 7.07224,
- 44.72311
- ],
- [
- 7.08651,
- 44.6968
- ],
- [
- 7.08666,
- 44.68085
- ],
- [
- 7.07671,
- 44.67134
- ],
- [
- 6.99007,
- 44.67203
- ],
- [
- 6.97413,
- 44.66431
- ],
- [
- 6.97056,
- 44.64696
- ],
- [
- 6.97819,
- 44.61784
- ],
- [
- 6.94659,
- 44.57124
- ],
- [
- 6.88235,
- 44.53479
- ],
- [
- 6.87233,
- 44.5195
- ],
- [
- 6.87892,
- 44.50245
- ],
- [
- 6.95894,
- 44.43129
- ],
- [
- 6.95872,
- 44.42908
- ],
- [
- 6.92167,
- 44.41436
- ],
- [
- 6.91223,
- 44.40659
- ],
- [
- 6.90907,
- 44.39477
- ],
- [
- 6.90972,
- 44.38195
- ],
- [
- 6.91637,
- 44.36804
- ],
- [
- 6.99909,
- 44.29414
- ],
- [
- 7.01181,
- 44.256
- ],
- [
- 7.01983,
- 44.24558
- ],
- [
- 7.03259,
- 44.2424
- ],
- [
- 7.07312,
- 44.2461
- ],
- [
- 7.1651,
- 44.22112
- ],
- [
- 7.24533,
- 44.18544
- ],
- [
- 7.26053,
- 44.16682
- ],
- [
- 7.27537,
- 44.15947
- ],
- [
- 7.33878,
- 44.1574
- ],
- [
- 7.36278,
- 44.13834
- ],
- [
- 7.37776,
- 44.13416
- ],
- [
- 7.56283,
- 44.15792
- ],
- [
- 7.5642,
- 44.15836
- ],
- [
- 7.56478,
- 44.15817
- ],
- [
- 7.60548,
- 44.1634
- ],
- [
- 7.6162,
- 44.16827
- ],
- [
- 7.63989,
- 44.18928
- ],
- [
- 7.68608,
- 44.1861
- ],
- [
- 7.69422,
- 44.17795
- ],
- [
- 7.68937,
- 44.13869
- ],
- [
- 7.69445,
- 44.12276
- ],
- [
- 7.72786,
- 44.08615
- ],
- [
- 7.72403,
- 44.05704
- ],
- [
- 7.68603,
- 44.02371
- ],
- [
- 7.68077,
- 44.0164
- ],
- [
- 7.66016,
- 43.9672
- ],
- [
- 7.59624,
- 43.94466
- ],
- [
- 7.58419,
- 43.93287
- ],
- [
- 7.56858,
- 43.89159
- ],
- [
- 7.5271,
- 43.87434
- ],
- [
- 7.51649,
- 43.86397
- ],
- [
- 7.51594,
- 43.84915
- ],
- [
- 7.53622,
- 43.79234
- ],
- [
- 9.8,
- 43.1
- ],
- [
- 9.63227,
- 41.43244
- ],
- [
- 9.36968,
- 41.35052
- ],
- [
- 9.27311,
- 41.29196
- ],
- [
- 8.94186,
- 41.27688
- ],
- [
- 5.8,
- 41.64
- ],
- [
- 3.17358,
- 42.41768
- ],
- [
- 3.16081,
- 42.42757
- ],
- [
- 3.0944,
- 42.41457
- ],
- [
- 3.03402,
- 42.45331
- ],
- [
- 3.02214,
- 42.45645
- ],
- [
- 2.87822,
- 42.4487
- ],
- [
- 2.87019,
- 42.44653
- ],
- [
- 2.78424,
- 42.40256
- ],
- [
- 2.7413,
- 42.41128
- ],
- [
- 2.72928,
- 42.40998
- ],
- [
- 2.69331,
- 42.39417
- ],
- [
- 2.68378,
- 42.3854
- ],
- [
- 2.68162,
- 42.37263
- ],
- [
- 2.68585,
- 42.34679
- ],
- [
- 2.66719,
- 42.33008
- ],
- [
- 2.58106,
- 42.34418
- ],
- [
- 2.56777,
- 42.34173
- ],
- [
- 2.5338,
- 42.32197
- ],
- [
- 2.47795,
- 42.32986
- ],
- [
- 2.41933,
- 42.37658
- ],
- [
- 2.41222,
- 42.38021
- ],
- [
- 2.26719,
- 42.42055
- ],
- [
- 2.25973,
- 42.42117
- ],
- [
- 2.20694,
- 42.41558
- ],
- [
- 2.20653,
- 42.41526
- ],
- [
- 2.20526,
- 42.41541
- ],
- [
- 2.16028,
- 42.41065
- ],
- [
- 2.14881,
- 42.40545
- ],
- [
- 2.09393,
- 42.35474
- ],
- [
- 2.00861,
- 42.33818
- ],
- [
- 1.965,
- 42.36473
- ],
- [
- 1.93076,
- 42.42442
- ],
- [
- 1.92089,
- 42.43302
- ],
- [
- 1.88467,
- 42.44761
- ],
- [
- 1.88459,
- 42.44762
- ],
- [
- 1.88444,
- 42.4477
- ],
- [
- 1.82774,
- 42.47056
- ],
- [
- 1.72567,
- 42.48452
- ],
- [
- 1.71561,
- 42.50125
- ],
- [
- 1.7272,
- 42.56103
- ],
- [
- 1.72479,
- 42.57499
- ],
- [
- 1.71011,
- 42.59992
- ],
- [
- 1.69377,
- 42.60975
- ],
- [
- 1.60283,
- 42.61382
- ],
- [
- 1.56069,
- 42.6392
- ],
- [
- 1.54636,
- 42.64166
- ],
- [
- 1.50444,
- 42.6331
- ],
- [
- 1.4921,
- 42.62502
- ],
- [
- 1.47238,
- 42.59703
- ],
- [
- 1.43792,
- 42.59264
- ],
- [
- 1.41936,
- 42.60643
- ],
- [
- 1.38032,
- 42.67415
- ],
- [
- 1.37335,
- 42.68127
- ],
- [
- 1.33313,
- 42.70563
- ],
- [
- 1.32364,
- 42.7085
- ],
- [
- 1.23221,
- 42.71248
- ],
- [
- 1.16554,
- 42.69928
- ],
- [
- 1.08546,
- 42.76635
- ],
- [
- 1.07564,
- 42.77079
- ],
- [
- 0.95937,
- 42.78852
- ],
- [
- 0.95073,
- 42.78794
- ],
- [
- 0.92265,
- 42.7797
- ],
- [
- 0.84606,
- 42.8157
- ],
- [
- 0.71511,
- 42.8464
- ],
- [
- 0.70017,
- 42.84402
- ],
- [
- 0.69117,
- 42.83186
- ],
- [
- 0.67409,
- 42.76479
- ],
- [
- 0.67474,
- 42.75286
- ],
- [
- 0.69192,
- 42.70684
- ],
- [
- 0.669,
- 42.67901
- ],
- [
- 0.43024,
- 42.67863
- ],
- [
- 0.3715,
- 42.70308
- ],
- [
- 0.35954,
- 42.70415
- ],
- [
- 0.34912,
- 42.69817
- ],
- [
- 0.32567,
- 42.67274
- ],
- [
- 0.29571,
- 42.66388
- ],
- [
- 0.24594,
- 42.70175
- ],
- [
- 0.23972,
- 42.70494
- ],
- [
- 0.18967,
- 42.72039
- ],
- [
- 0.17919,
- 42.72075
- ],
- [
- -0.01993,
- 42.67389
- ],
- [
- -0.06726,
- 42.6848
- ],
- [
- -0.16949,
- 42.77157
- ],
- [
- -0.29987,
- 42.82697
- ],
- [
- -0.31683,
- 42.82635
- ],
- [
- -0.39208,
- 42.78766
- ],
- [
- -0.44354,
- 42.78453
- ],
- [
- -0.48842,
- 42.80255
- ],
- [
- -0.50868,
- 42.79935
- ],
- [
- -0.54499,
- 42.76906
- ],
- [
- -0.56721,
- 42.76937
- ],
- [
- -0.67446,
- 42.86392
- ],
- [
- -0.68094,
- 42.86775
- ],
- [
- -0.73372,
- 42.88666
- ],
- [
- -0.7476,
- 42.93879
- ],
- [
- -0.75711,
- 42.95107
- ],
- [
- -0.77253,
- 42.95284
- ],
- [
- -0.82114,
- 42.93865
- ],
- [
- -0.94508,
- 42.94192
- ],
- [
- -1.02313,
- 42.98206
- ],
- [
- -1.10852,
- 43.00409
- ],
- [
- -1.1156,
- 43.00461
- ],
- [
- -1.14775,
- 43.00124
- ],
- [
- -1.15845,
- 43.01452
- ],
- [
- -1.16736,
- 43.02083
- ],
- [
- -1.21622,
- 43.0381
- ],
- [
- -1.22612,
- 43.03898
- ],
- [
- -1.26236,
- 43.03303
- ],
- [
- -1.30643,
- 43.05531
- ],
- [
- -1.31992,
- 43.05696
- ],
- [
- -1.33135,
- 43.0496
- ],
- [
- -1.3542,
- 43.0197
- ],
- [
- -1.43868,
- 43.03371
- ],
- [
- -1.4775,
- 43.06889
- ],
- [
- -1.48311,
- 43.08561
- ],
- [
- -1.47641,
- 43.10248
- ],
- [
- -1.43479,
- 43.13087
- ],
- [
- -1.42732,
- 43.1404
- ],
- [
- -1.39411,
- 43.22935
- ],
- [
- -1.39531,
- 43.24596
- ],
- [
- -1.40868,
- 43.25591
- ],
- [
- -1.52629,
- 43.28099
- ],
- [
- -1.54626,
- 43.2737
- ],
- [
- -1.57149,
- 43.2412
- ],
- [
- -1.61053,
- 43.24223
- ],
- [
- -1.65,
- 43.29323
- ],
- [
- -1.66953,
- 43.30065
- ],
- [
- -1.73359,
- 43.28856
- ],
- [
- -1.75606,
- 43.31966
- ],
- [
- -1.76297,
- 43.32565
- ],
- [
- -1.79156,
- 43.34067
- ],
- [
- -1.80099,
- 43.37017
- ],
- [
- -1.78509,
- 43.39037
- ],
- [
- -1.7835,
- 43.39686
- ],
- [
- -2.7,
- 43.9
- ]
- ]
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/WikiProject_Cadastre_Fran%C3%A7ais/Conditions_d%27utilisation",
- "terms_text": "cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2018",
- "description": "French land registry",
- "icon": "https://svn.openstreetmap.org/applications/editors/josm/plugins/cadastre-fr/images/cadastre_small.png"
- },
- {
- "id": "lu.geoportail.opendata.cadastre",
- "name": "Cadastre geoportail.lu",
- "type": "tms",
- "template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/cadastre/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- 5.96175,
- 50.17631
- ],
- [
- 6.02627,
- 50.18496
- ],
- [
- 6.03318,
- 50.16395
- ],
- [
- 6.06069,
- 50.15536
- ],
- [
- 6.07668,
- 50.15913
- ],
- [
- 6.07824,
- 50.17255
- ],
- [
- 6.10176,
- 50.17199
- ],
- [
- 6.1225,
- 50.16437
- ],
- [
- 6.1201,
- 50.15594
- ],
- [
- 6.1277,
- 50.14993
- ],
- [
- 6.11323,
- 50.13739
- ],
- [
- 6.12369,
- 50.13719
- ],
- [
- 6.14093,
- 50.1305
- ],
- [
- 6.13555,
- 50.11899
- ],
- [
- 6.13808,
- 50.10263
- ],
- [
- 6.13108,
- 50.09964
- ],
- [
- 6.13547,
- 50.09119
- ],
- [
- 6.12194,
- 50.09059
- ],
- [
- 6.12634,
- 50.07817
- ],
- [
- 6.13186,
- 50.07348
- ],
- [
- 6.12117,
- 50.064
- ],
- [
- 6.11444,
- 50.06139
- ],
- [
- 6.11563,
- 50.05817
- ],
- [
- 6.12361,
- 50.06323
- ],
- [
- 6.13661,
- 50.04178
- ],
- [
- 6.13034,
- 50.02975
- ],
- [
- 6.14821,
- 50.02307
- ],
- [
- 6.13868,
- 50.01572
- ],
- [
- 6.13594,
- 50.01485
- ],
- [
- 6.13138,
- 50.01905
- ],
- [
- 6.13024,
- 50.01819
- ],
- [
- 6.13934,
- 50.01116
- ],
- [
- 6.1517,
- 50.01058
- ],
- [
- 6.14546,
- 49.99689
- ],
- [
- 6.13966,
- 49.9994
- ],
- [
- 6.13852,
- 49.99829
- ],
- [
- 6.14218,
- 49.99535
- ],
- [
- 6.15023,
- 49.99518
- ],
- [
- 6.15625,
- 49.98867
- ],
- [
- 6.17305,
- 49.98589
- ],
- [
- 6.17348,
- 49.98344
- ],
- [
- 6.17035,
- 49.98376
- ],
- [
- 6.16549,
- 49.97115
- ],
- [
- 6.17151,
- 49.96298
- ],
- [
- 6.1763,
- 49.962
- ],
- [
- 6.17995,
- 49.95386
- ],
- [
- 6.18339,
- 49.9548
- ],
- [
- 6.17983,
- 49.96307
- ],
- [
- 6.18331,
- 49.9686
- ],
- [
- 6.19277,
- 49.97158
- ],
- [
- 6.19978,
- 49.95352
- ],
- [
- 6.20707,
- 49.95672
- ],
- [
- 6.21269,
- 49.9514
- ],
- [
- 6.22502,
- 49.95039
- ],
- [
- 6.22044,
- 49.94369
- ],
- [
- 6.22824,
- 49.93726
- ],
- [
- 6.22635,
- 49.92766
- ],
- [
- 6.21913,
- 49.92354
- ],
- [
- 6.22986,
- 49.92125
- ],
- [
- 6.23603,
- 49.91355
- ],
- [
- 6.23187,
- 49.91064
- ],
- [
- 6.22769,
- 49.91062
- ],
- [
- 6.23229,
- 49.9072
- ],
- [
- 6.23381,
- 49.90028
- ],
- [
- 6.24692,
- 49.89535
- ],
- [
- 6.25781,
- 49.88724
- ],
- [
- 6.26301,
- 49.88101
- ],
- [
- 6.27646,
- 49.87725
- ],
- [
- 6.28113,
- 49.87957
- ],
- [
- 6.29166,
- 49.87548
- ],
- [
- 6.2977,
- 49.86673
- ],
- [
- 6.30989,
- 49.87107
- ],
- [
- 6.31532,
- 49.8673
- ],
- [
- 6.31465,
- 49.86057
- ],
- [
- 6.32361,
- 49.85188
- ],
- [
- 6.32158,
- 49.8409
- ],
- [
- 6.32741,
- 49.83673
- ],
- [
- 6.33656,
- 49.83998
- ],
- [
- 6.33937,
- 49.8507
- ],
- [
- 6.36465,
- 49.85164
- ],
- [
- 6.4022,
- 49.82098
- ],
- [
- 6.42643,
- 49.81629
- ],
- [
- 6.42807,
- 49.81186
- ],
- [
- 6.43097,
- 49.81129
- ],
- [
- 6.44161,
- 49.81547
- ],
- [
- 6.44344,
- 49.81233
- ],
- [
- 6.45366,
- 49.81275
- ],
- [
- 6.46454,
- 49.81975
- ],
- [
- 6.47057,
- 49.82385
- ],
- [
- 6.49681,
- 49.81277
- ],
- [
- 6.50669,
- 49.80993
- ],
- [
- 6.51155,
- 49.80238
- ],
- [
- 6.51485,
- 49.80513
- ],
- [
- 6.5196,
- 49.81446
- ],
- [
- 6.52981,
- 49.81048
- ],
- [
- 6.53225,
- 49.80686
- ],
- [
- 6.53083,
- 49.80116
- ],
- [
- 6.50622,
- 49.78899
- ],
- [
- 6.51917,
- 49.78344
- ],
- [
- 6.51105,
- 49.77422
- ],
- [
- 6.52056,
- 49.76818
- ],
- [
- 6.52052,
- 49.76134
- ],
- [
- 6.50373,
- 49.75086
- ],
- [
- 6.50263,
- 49.73298
- ],
- [
- 6.50727,
- 49.72938
- ],
- [
- 6.51809,
- 49.7242
- ],
- [
- 6.51642,
- 49.72129
- ],
- [
- 6.51176,
- 49.72016
- ],
- [
- 6.50479,
- 49.725
- ],
- [
- 6.49891,
- 49.72639
- ],
- [
- 6.49558,
- 49.72443
- ],
- [
- 6.50712,
- 49.71655
- ],
- [
- 6.50788,
- 49.71215
- ],
- [
- 6.5046,
- 49.71227
- ],
- [
- 6.42714,
- 49.66237
- ],
- [
- 6.4399,
- 49.66025
- ],
- [
- 6.44251,
- 49.65591
- ],
- [
- 6.42178,
- 49.61809
- ],
- [
- 6.39898,
- 49.60094
- ],
- [
- 6.37941,
- 49.59526
- ],
- [
- 6.37551,
- 49.58809
- ],
- [
- 6.38443,
- 49.5801
- ],
- [
- 6.38119,
- 49.57509
- ],
- [
- 6.36909,
- 49.5783
- ],
- [
- 6.35791,
- 49.57166
- ],
- [
- 6.3849,
- 49.55817
- ],
- [
- 6.38009,
- 49.54856
- ],
- [
- 6.35855,
- 49.53296
- ],
- [
- 6.35932,
- 49.52481
- ],
- [
- 6.37076,
- 49.50545
- ],
- [
- 6.37056,
- 49.45732
- ],
- [
- 6.3334,
- 49.46493
- ],
- [
- 6.32189,
- 49.47244
- ],
- [
- 6.29503,
- 49.47928
- ],
- [
- 6.28789,
- 49.48379
- ],
- [
- 6.27191,
- 49.49995
- ],
- [
- 6.24133,
- 49.50693
- ],
- [
- 6.19669,
- 49.50331
- ],
- [
- 6.17337,
- 49.50577
- ],
- [
- 6.16086,
- 49.50085
- ],
- [
- 6.1671,
- 49.49006
- ],
- [
- 6.14018,
- 49.48525
- ],
- [
- 6.12937,
- 49.48803
- ],
- [
- 6.12725,
- 49.47081
- ],
- [
- 6.1014,
- 49.46726
- ],
- [
- 6.10483,
- 49.45076
- ],
- [
- 6.08167,
- 49.45417
- ],
- [
- 6.07722,
- 49.46139
- ],
- [
- 6.05917,
- 49.46306
- ],
- [
- 6.05222,
- 49.46028
- ],
- [
- 6.04421,
- 49.44553
- ],
- [
- 6.02529,
- 49.44703
- ],
- [
- 6.02154,
- 49.45127
- ],
- [
- 6.01574,
- 49.44885
- ],
- [
- 5.99412,
- 49.45301
- ],
- [
- 5.97657,
- 49.44885
- ],
- [
- 5.97773,
- 49.45955
- ],
- [
- 5.97232,
- 49.46087
- ],
- [
- 5.96891,
- 49.48202
- ],
- [
- 5.9616,
- 49.49026
- ],
- [
- 5.91578,
- 49.49835
- ],
- [
- 5.89033,
- 49.4948
- ],
- [
- 5.86332,
- 49.50006
- ],
- [
- 5.84897,
- 49.50826
- ],
- [
- 5.84828,
- 49.51397
- ],
- [
- 5.83641,
- 49.51817
- ],
- [
- 5.83187,
- 49.52639
- ],
- [
- 5.84308,
- 49.53081
- ],
- [
- 5.83562,
- 49.54114
- ],
- [
- 5.81625,
- 49.53325
- ],
- [
- 5.8052,
- 49.54272
- ],
- [
- 5.85943,
- 49.57158
- ],
- [
- 5.86866,
- 49.587
- ],
- [
- 5.86289,
- 49.58525
- ],
- [
- 5.8511,
- 49.58379
- ],
- [
- 5.84712,
- 49.58961
- ],
- [
- 5.84565,
- 49.5981
- ],
- [
- 5.8694,
- 49.6106
- ],
- [
- 5.88182,
- 49.63815
- ],
- [
- 5.89998,
- 49.63907
- ],
- [
- 5.89934,
- 49.66239
- ],
- [
- 5.85656,
- 49.67628
- ],
- [
- 5.85628,
- 49.68211
- ],
- [
- 5.8757,
- 49.71118
- ],
- [
- 5.86481,
- 49.72331
- ],
- [
- 5.84325,
- 49.71822
- ],
- [
- 5.82191,
- 49.72128
- ],
- [
- 5.82489,
- 49.73767
- ],
- [
- 5.82073,
- 49.74878
- ],
- [
- 5.78626,
- 49.79079
- ],
- [
- 5.76517,
- 49.78961
- ],
- [
- 5.75094,
- 49.79094
- ],
- [
- 5.74159,
- 49.82126
- ],
- [
- 5.74581,
- 49.82435
- ],
- [
- 5.7372,
- 49.83353
- ],
- [
- 5.74053,
- 49.84142
- ],
- [
- 5.74701,
- 49.84048
- ],
- [
- 5.74624,
- 49.84783
- ],
- [
- 5.75399,
- 49.84878
- ],
- [
- 5.74066,
- 49.85152
- ],
- [
- 5.75229,
- 49.85922
- ],
- [
- 5.74955,
- 49.87554
- ],
- [
- 5.77567,
- 49.87438
- ],
- [
- 5.77505,
- 49.88057
- ],
- [
- 5.7346,
- 49.89341
- ],
- [
- 5.73303,
- 49.90285
- ],
- [
- 5.75783,
- 49.91737
- ],
- [
- 5.76039,
- 49.93252
- ],
- [
- 5.77073,
- 49.93711
- ],
- [
- 5.76878,
- 49.94239
- ],
- [
- 5.7688,
- 49.96104
- ],
- [
- 5.78672,
- 49.96816
- ],
- [
- 5.80524,
- 49.96677
- ],
- [
- 5.80652,
- 49.97321
- ],
- [
- 5.83129,
- 49.97995
- ],
- [
- 5.83462,
- 49.98656
- ],
- [
- 5.81806,
- 49.99936
- ],
- [
- 5.81561,
- 50.01437
- ],
- [
- 5.84792,
- 50.02809
- ],
- [
- 5.86189,
- 50.04581
- ],
- [
- 5.85087,
- 50.0563
- ],
- [
- 5.85781,
- 50.07186
- ],
- [
- 5.881,
- 50.08069
- ],
- [
- 5.89196,
- 50.12041
- ],
- [
- 5.95286,
- 50.13384
- ],
- [
- 5.96175,
- 50.17631
- ]
- ]
- ],
- "terms_url": "https://data.public.lu/en/datasets/plan-cadastral-numerise-pcn-webservices-wms-et-wmts",
- "terms_text": "Administration du Cadastre et de la Topographie",
- "icon": "https://www.geoportail.lu/static/img/lion.png"
- },
- {
- "id": "cajueiro_al",
- "name": "Cajueiro AL",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Cajueiro&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -36.10753,
- -9.43884
- ],
- [
- -36.10752,
- -9.43421
- ],
- [
- -36.10767,
- -9.42959
- ],
- [
- -36.10779,
- -9.42361
- ],
- [
- -36.10769,
- -9.41927
- ],
- [
- -36.10781,
- -9.41391
- ],
- [
- -36.10803,
- -9.41094
- ],
- [
- -36.1081,
- -9.40965
- ],
- [
- -36.10811,
- -9.40747
- ],
- [
- -36.10816,
- -9.40693
- ],
- [
- -36.10819,
- -9.40418
- ],
- [
- -36.10811,
- -9.40176
- ],
- [
- -36.10817,
- -9.40002
- ],
- [
- -36.10827,
- -9.39952
- ],
- [
- -36.10827,
- -9.39646
- ],
- [
- -36.10833,
- -9.39475
- ],
- [
- -36.10832,
- -9.39273
- ],
- [
- -36.10836,
- -9.3904
- ],
- [
- -36.10841,
- -9.38447
- ],
- [
- -36.10847,
- -9.38165
- ],
- [
- -36.10846,
- -9.37767
- ],
- [
- -36.10835,
- -9.37573
- ],
- [
- -36.10845,
- -9.37432
- ],
- [
- -36.10849,
- -9.37234
- ],
- [
- -36.10845,
- -9.3697
- ],
- [
- -36.10867,
- -9.36278
- ],
- [
- -36.10863,
- -9.36102
- ],
- [
- -36.10873,
- -9.35928
- ],
- [
- -36.10874,
- -9.35736
- ],
- [
- -36.10855,
- -9.35479
- ],
- [
- -36.1087,
- -9.3523
- ],
- [
- -36.10871,
- -9.34996
- ],
- [
- -36.10873,
- -9.34893
- ],
- [
- -36.11269,
- -9.34908
- ],
- [
- -36.11726,
- -9.34912
- ],
- [
- -36.12138,
- -9.34905
- ],
- [
- -36.12806,
- -9.3491
- ],
- [
- -36.13217,
- -9.34906
- ],
- [
- -36.13694,
- -9.34915
- ],
- [
- -36.14025,
- -9.34914
- ],
- [
- -36.14134,
- -9.34932
- ],
- [
- -36.14458,
- -9.34916
- ],
- [
- -36.14684,
- -9.34914
- ],
- [
- -36.14842,
- -9.34905
- ],
- [
- -36.15276,
- -9.34907
- ],
- [
- -36.154,
- -9.34922
- ],
- [
- -36.15627,
- -9.34923
- ],
- [
- -36.16026,
- -9.34921
- ],
- [
- -36.16086,
- -9.34929
- ],
- [
- -36.166,
- -9.34933
- ],
- [
- -36.16938,
- -9.34942
- ],
- [
- -36.17176,
- -9.34936
- ],
- [
- -36.17628,
- -9.34945
- ],
- [
- -36.18028,
- -9.34937
- ],
- [
- -36.18227,
- -9.34946
- ],
- [
- -36.18826,
- -9.34938
- ],
- [
- -36.19039,
- -9.34945
- ],
- [
- -36.19354,
- -9.34946
- ],
- [
- -36.19552,
- -9.34941
- ],
- [
- -36.19918,
- -9.34951
- ],
- [
- -36.19926,
- -9.35146
- ],
- [
- -36.19913,
- -9.35234
- ],
- [
- -36.19912,
- -9.35353
- ],
- [
- -36.19919,
- -9.35646
- ],
- [
- -36.19922,
- -9.35771
- ],
- [
- -36.1993,
- -9.35832
- ],
- [
- -36.19933,
- -9.36112
- ],
- [
- -36.19922,
- -9.36177
- ],
- [
- -36.19918,
- -9.36258
- ],
- [
- -36.19931,
- -9.364
- ],
- [
- -36.19926,
- -9.36499
- ],
- [
- -36.19922,
- -9.36563
- ],
- [
- -36.19928,
- -9.3666
- ],
- [
- -36.19917,
- -9.36796
- ],
- [
- -36.19917,
- -9.36868
- ],
- [
- -36.19922,
- -9.36911
- ],
- [
- -36.19912,
- -9.37017
- ],
- [
- -36.19887,
- -9.37149
- ],
- [
- -36.19886,
- -9.37264
- ],
- [
- -36.19902,
- -9.37322
- ],
- [
- -36.19915,
- -9.37504
- ],
- [
- -36.19911,
- -9.37688
- ],
- [
- -36.19896,
- -9.37747
- ],
- [
- -36.19899,
- -9.37915
- ],
- [
- -36.19917,
- -9.38053
- ],
- [
- -36.19919,
- -9.38124
- ],
- [
- -36.19926,
- -9.38175
- ],
- [
- -36.19928,
- -9.38302
- ],
- [
- -36.19913,
- -9.38374
- ],
- [
- -36.19908,
- -9.38592
- ],
- [
- -36.19879,
- -9.38787
- ],
- [
- -36.19881,
- -9.38935
- ],
- [
- -36.19902,
- -9.39092
- ],
- [
- -36.19904,
- -9.392
- ],
- [
- -36.19899,
- -9.39348
- ],
- [
- -36.1988,
- -9.39451
- ],
- [
- -36.19867,
- -9.39705
- ],
- [
- -36.19845,
- -9.39949
- ],
- [
- -36.19864,
- -9.40313
- ],
- [
- -36.19866,
- -9.40476
- ],
- [
- -36.19865,
- -9.40836
- ],
- [
- -36.19875,
- -9.40902
- ],
- [
- -36.19857,
- -9.41058
- ],
- [
- -36.19859,
- -9.41273
- ],
- [
- -36.19874,
- -9.41446
- ],
- [
- -36.19868,
- -9.41711
- ],
- [
- -36.1986,
- -9.41902
- ],
- [
- -36.19846,
- -9.41965
- ],
- [
- -36.1985,
- -9.42235
- ],
- [
- -36.19871,
- -9.42429
- ],
- [
- -36.19858,
- -9.42697
- ],
- [
- -36.1984,
- -9.42895
- ],
- [
- -36.19857,
- -9.43412
- ],
- [
- -36.19871,
- -9.4347
- ],
- [
- -36.19865,
- -9.43595
- ],
- [
- -36.19857,
- -9.43626
- ],
- [
- -36.19859,
- -9.43667
- ],
- [
- -36.19876,
- -9.43749
- ],
- [
- -36.19889,
- -9.43905
- ],
- [
- -36.19882,
- -9.43995
- ],
- [
- -36.1785,
- -9.43977
- ],
- [
- -36.17718,
- -9.43968
- ],
- [
- -36.17265,
- -9.43967
- ],
- [
- -36.17099,
- -9.43971
- ],
- [
- -36.16396,
- -9.43963
- ],
- [
- -36.15386,
- -9.4395
- ],
- [
- -36.13983,
- -9.4393
- ],
- [
- -36.12875,
- -9.43913
- ],
- [
- -36.11497,
- -9.43892
- ],
- [
- -36.10753,
- -9.43884
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "osm-cambodia_laos_thailand_vietnam-bilingual",
- "name": "Cambodia, Laos, Thailand, Vietnam, Malaysia, Myanmar bilingual",
- "type": "tms",
- "template": "https://{switch:a,b,c,d}.tile.osm-tools.org/osm/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- 92.10238,
- 20.81356
- ],
- [
- 93.56905,
- 24.09755
- ],
- [
- 94.1733,
- 23.92695
- ],
- [
- 95.19503,
- 26.70727
- ],
- [
- 96.75509,
- 27.52867
- ],
- [
- 97.58456,
- 28.5806
- ],
- [
- 98.73812,
- 27.51405
- ],
- [
- 98.74362,
- 25.87992
- ],
- [
- 97.67794,
- 24.75774
- ],
- [
- 97.96359,
- 24.04238
- ],
- [
- 98.82052,
- 24.16272
- ],
- [
- 99.52364,
- 22.95934
- ],
- [
- 100.36959,
- 21.50514
- ],
- [
- 101.79232,
- 22.48305
- ],
- [
- 105.36288,
- 23.33311
- ],
- [
- 106.81857,
- 22.84801
- ],
- [
- 108.19735,
- 21.36197
- ],
- [
- 107.43895,
- 18.85398
- ],
- [
- 117.14537,
- 7.46562
- ],
- [
- 119.6173,
- 5.28754
- ],
- [
- 118.12315,
- 4.05023
- ],
- [
- 117.25523,
- 4.36249
- ],
- [
- 115.86546,
- 4.34606
- ],
- [
- 115.50841,
- 3.02498
- ],
- [
- 114.5526,
- 1.5101
- ],
- [
- 113.54186,
- 1.25748
- ],
- [
- 112.96507,
- 1.5705
- ],
- [
- 112.24547,
- 1.5101
- ],
- [
- 111.67418,
- 1.01583
- ],
- [
- 110.4547,
- 0.90049
- ],
- [
- 109.49889,
- 1.9219
- ],
- [
- 103.22569,
- 1.12568
- ],
- [
- 100.46263,
- 3.23889
- ],
- [
- 97.6721,
- 8.05888
- ],
- [
- 93.89281,
- 15.93987
- ],
- [
- 92.10238,
- 20.81356
- ]
- ]
- ],
- "terms_url": "http://www.osm-tools.org",
- "terms_text": "© osm-tools.org & OpenStreetMap contributors, CC-BY-SA"
- },
- {
- "id": "campo_alegre_al",
- "name": "Campo Alegre AL",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Campo%20Alegre&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -36.30643,
- -9.82332
- ],
- [
- -36.30603,
- -9.78597
- ],
- [
- -36.30602,
- -9.78263
- ],
- [
- -36.30609,
- -9.78168
- ],
- [
- -36.30604,
- -9.78081
- ],
- [
- -36.3059,
- -9.77531
- ],
- [
- -36.30586,
- -9.76496
- ],
- [
- -36.30545,
- -9.73336
- ],
- [
- -36.39634,
- -9.73248
- ],
- [
- -36.39627,
- -9.73744
- ],
- [
- -36.39636,
- -9.74336
- ],
- [
- -36.39644,
- -9.75535
- ],
- [
- -36.3966,
- -9.75856
- ],
- [
- -36.39665,
- -9.75979
- ],
- [
- -36.39655,
- -9.76244
- ],
- [
- -36.39661,
- -9.76489
- ],
- [
- -36.39658,
- -9.76648
- ],
- [
- -36.39661,
- -9.76684
- ],
- [
- -36.39659,
- -9.7696
- ],
- [
- -36.3967,
- -9.77896
- ],
- [
- -36.39675,
- -9.78464
- ],
- [
- -36.39684,
- -9.79067
- ],
- [
- -36.39693,
- -9.79681
- ],
- [
- -36.39703,
- -9.80298
- ],
- [
- -36.39719,
- -9.82033
- ],
- [
- -36.39722,
- -9.82234
- ],
- [
- -36.39392,
- -9.82233
- ],
- [
- -36.35375,
- -9.82279
- ],
- [
- -36.34822,
- -9.82286
- ],
- [
- -36.31697,
- -9.82317
- ],
- [
- -36.31191,
- -9.82324
- ],
- [
- -36.30879,
- -9.82327
- ],
- [
- -36.30643,
- -9.82332
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "canaan_drone_red_cross_201712",
- "name": "Canaan - American Red Cross, Dec-2017",
- "type": "tms",
- "template": "https://tiles.openaerialmap.org/5ac65a9f91b5310010e0d489/0/5ac65a9f91b5310010e0d48a/{zoom}/{x}/{y}.png",
- "endDate": "2017-12-20T00:00:00.000Z",
- "startDate": "2017-12-11T00:00:00.000Z",
- "polygon": [
- [
- [
- -72.26734,
- 18.63561
- ],
- [
- -72.2636,
- 18.6373
- ],
- [
- -72.26116,
- 18.64141
- ],
- [
- -72.25983,
- 18.64588
- ],
- [
- -72.25811,
- 18.64742
- ],
- [
- -72.24502,
- 18.64795
- ],
- [
- -72.23433,
- 18.64807
- ],
- [
- -72.22734,
- 18.6482
- ],
- [
- -72.21953,
- 18.65438
- ],
- [
- -72.2161,
- 18.65446
- ],
- [
- -72.21584,
- 18.66222
- ],
- [
- -72.21725,
- 18.66739
- ],
- [
- -72.21889,
- 18.67019
- ],
- [
- -72.22309,
- 18.66958
- ],
- [
- -72.22343,
- 18.67312
- ],
- [
- -72.22502,
- 18.6732
- ],
- [
- -72.22545,
- 18.67609
- ],
- [
- -72.23288,
- 18.67597
- ],
- [
- -72.23339,
- 18.67877
- ],
- [
- -72.23674,
- 18.67857
- ],
- [
- -72.23854,
- 18.67975
- ],
- [
- -72.24,
- 18.68129
- ],
- [
- -72.24463,
- 18.68207
- ],
- [
- -72.24682,
- 18.6817
- ],
- [
- -72.24605,
- 18.67698
- ],
- [
- -72.25094,
- 18.67698
- ],
- [
- -72.25511,
- 18.67902
- ],
- [
- -72.25961,
- 18.67898
- ],
- [
- -72.26081,
- 18.67743
- ],
- [
- -72.27038,
- 18.67711
- ],
- [
- -72.27901,
- 18.67682
- ],
- [
- -72.28373,
- 18.67893
- ],
- [
- -72.28613,
- 18.68154
- ],
- [
- -72.29665,
- 18.68178
- ],
- [
- -72.30184,
- 18.68568
- ],
- [
- -72.3012,
- 18.68824
- ],
- [
- -72.30802,
- 18.69324
- ],
- [
- -72.30948,
- 18.69308
- ],
- [
- -72.31699,
- 18.69682
- ],
- [
- -72.32806,
- 18.70528
- ],
- [
- -72.3384,
- 18.69902
- ],
- [
- -72.34012,
- 18.69666
- ],
- [
- -72.33961,
- 18.69426
- ],
- [
- -72.33377,
- 18.68357
- ],
- [
- -72.33135,
- 18.68192
- ],
- [
- -72.32551,
- 18.68093
- ],
- [
- -72.32027,
- 18.67741
- ],
- [
- -72.31626,
- 18.67477
- ],
- [
- -72.31167,
- 18.672
- ],
- [
- -72.308,
- 18.66995
- ],
- [
- -72.30534,
- 18.66926
- ],
- [
- -72.30068,
- 18.66499
- ],
- [
- -72.29796,
- 18.66479
- ],
- [
- -72.29609,
- 18.66129
- ],
- [
- -72.29315,
- 18.65999
- ],
- [
- -72.29519,
- 18.65497
- ],
- [
- -72.28414,
- 18.64962
- ],
- [
- -72.27804,
- 18.64523
- ],
- [
- -72.27487,
- 18.64212
- ],
- [
- -72.27352,
- 18.64057
- ],
- [
- -72.2706,
- 18.63901
- ],
- [
- -72.26734,
- 18.63561
- ]
- ]
- ],
- "terms_url": "http://americanredcross.github.io/",
- "terms_text": "American Red Cross",
- "description": "Drone imagery collected December 2017 for Canaan, Haiti by American Red Cross in coordination with the Haitian Red Cross."
- },
- {
- "id": "Geneve-SITG-2011",
- "name": "Canton de Génève 5cm (SITG 2011)",
- "type": "wms",
- "template": "https://ge.ch/ags2/services/Orthophotos_2011/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2011-01-01T00:00:00.000Z",
- "startDate": "2011-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 6.18221,
- 46.22618
- ],
- [
- 6.18348,
- 46.22772
- ],
- [
- 6.18929,
- 46.23329
- ],
- [
- 6.19196,
- 46.23858
- ],
- [
- 6.19253,
- 46.24239
- ],
- [
- 6.19061,
- 46.24397
- ],
- [
- 6.19046,
- 46.24654
- ],
- [
- 6.19256,
- 46.25045
- ],
- [
- 6.19186,
- 46.25262
- ],
- [
- 6.19325,
- 46.256
- ],
- [
- 6.19287,
- 46.25776
- ],
- [
- 6.19543,
- 46.26181
- ],
- [
- 6.1979,
- 46.26454
- ],
- [
- 6.20045,
- 46.26569
- ],
- [
- 6.20917,
- 46.26634
- ],
- [
- 6.21716,
- 46.27388
- ],
- [
- 6.22046,
- 46.27895
- ],
- [
- 6.2275,
- 46.28649
- ],
- [
- 6.23433,
- 46.28955
- ],
- [
- 6.23643,
- 46.2932
- ],
- [
- 6.24074,
- 46.29774
- ],
- [
- 6.23958,
- 46.30396
- ],
- [
- 6.2413,
- 46.30529
- ],
- [
- 6.2432,
- 46.30453
- ],
- [
- 6.24513,
- 46.30492
- ],
- [
- 6.24627,
- 46.30372
- ],
- [
- 6.24983,
- 46.3027
- ],
- [
- 6.25032,
- 46.3014
- ],
- [
- 6.24938,
- 46.30018
- ],
- [
- 6.25146,
- 46.29647
- ],
- [
- 6.25063,
- 46.29451
- ],
- [
- 6.25223,
- 46.29382
- ],
- [
- 6.25429,
- 46.2907
- ],
- [
- 6.25231,
- 46.28735
- ],
- [
- 6.25032,
- 46.2868
- ],
- [
- 6.24974,
- 46.28574
- ],
- [
- 6.24636,
- 46.28433
- ],
- [
- 6.24323,
- 46.28428
- ],
- [
- 6.23985,
- 46.28098
- ],
- [
- 6.23934,
- 46.27627
- ],
- [
- 6.24372,
- 46.27356
- ],
- [
- 6.25113,
- 46.26258
- ],
- [
- 6.26244,
- 46.2553
- ],
- [
- 6.26301,
- 46.25457
- ],
- [
- 6.262,
- 46.25215
- ],
- [
- 6.26736,
- 46.24887
- ],
- [
- 6.27732,
- 46.25211
- ],
- [
- 6.27725,
- 46.25298
- ],
- [
- 6.2832,
- 46.25503
- ],
- [
- 6.28231,
- 46.25568
- ],
- [
- 6.28278,
- 46.25677
- ],
- [
- 6.28868,
- 46.26046
- ],
- [
- 6.29154,
- 46.2644
- ],
- [
- 6.29457,
- 46.26556
- ],
- [
- 6.29729,
- 46.26489
- ],
- [
- 6.29783,
- 46.2631
- ],
- [
- 6.29541,
- 46.25827
- ],
- [
- 6.29663,
- 46.2566
- ],
- [
- 6.3024,
- 46.2558
- ],
- [
- 6.30678,
- 46.25753
- ],
- [
- 6.311,
- 46.25666
- ],
- [
- 6.30768,
- 46.25184
- ],
- [
- 6.31046,
- 46.25057
- ],
- [
- 6.31011,
- 46.24749
- ],
- [
- 6.31156,
- 46.24386
- ],
- [
- 6.29606,
- 46.22501
- ],
- [
- 6.29012,
- 46.22241
- ],
- [
- 6.27773,
- 46.21493
- ],
- [
- 6.26707,
- 46.21276
- ],
- [
- 6.25668,
- 46.20926
- ],
- [
- 6.25089,
- 46.20574
- ],
- [
- 6.25076,
- 46.20456
- ],
- [
- 6.2495,
- 46.20404
- ],
- [
- 6.24643,
- 46.20454
- ],
- [
- 6.24251,
- 46.20364
- ],
- [
- 6.23594,
- 46.20541
- ],
- [
- 6.23347,
- 46.20509
- ],
- [
- 6.22889,
- 46.20172
- ],
- [
- 6.22323,
- 46.20005
- ],
- [
- 6.22355,
- 46.19881
- ],
- [
- 6.22257,
- 46.19791
- ],
- [
- 6.21935,
- 46.19765
- ],
- [
- 6.21688,
- 46.19448
- ],
- [
- 6.21259,
- 46.19189
- ],
- [
- 6.20727,
- 46.19137
- ],
- [
- 6.20588,
- 46.18908
- ],
- [
- 6.2034,
- 46.18806
- ],
- [
- 6.20282,
- 46.18642
- ],
- [
- 6.20035,
- 46.18504
- ],
- [
- 6.19905,
- 46.18296
- ],
- [
- 6.19615,
- 46.18288
- ],
- [
- 6.1885,
- 46.17967
- ],
- [
- 6.18751,
- 46.17539
- ],
- [
- 6.18982,
- 46.16584
- ],
- [
- 6.1748,
- 46.15694
- ],
- [
- 6.1688,
- 46.15624
- ],
- [
- 6.15829,
- 46.15195
- ],
- [
- 6.15434,
- 46.15141
- ],
- [
- 6.14952,
- 46.14933
- ],
- [
- 6.14805,
- 46.14748
- ],
- [
- 6.14832,
- 46.14619
- ],
- [
- 6.14561,
- 46.14417
- ],
- [
- 6.14244,
- 46.14493
- ],
- [
- 6.13768,
- 46.14217
- ],
- [
- 6.13692,
- 46.14071
- ],
- [
- 6.13074,
- 46.13946
- ],
- [
- 6.12598,
- 46.13966
- ],
- [
- 6.12014,
- 46.14181
- ],
- [
- 6.1077,
- 46.14203
- ],
- [
- 6.10537,
- 46.14313
- ],
- [
- 6.09746,
- 46.14325
- ],
- [
- 6.09151,
- 46.15095
- ],
- [
- 6.07476,
- 46.14795
- ],
- [
- 6.07188,
- 46.14908
- ],
- [
- 6.05295,
- 46.15046
- ],
- [
- 6.04973,
- 46.1468
- ],
- [
- 6.04862,
- 46.14153
- ],
- [
- 6.04571,
- 46.13916
- ],
- [
- 6.04287,
- 46.14006
- ],
- [
- 6.04013,
- 46.13894
- ],
- [
- 6.03783,
- 46.13716
- ],
- [
- 6.03647,
- 46.13381
- ],
- [
- 6.03531,
- 46.13344
- ],
- [
- 6.03,
- 46.13816
- ],
- [
- 6.02079,
- 46.14024
- ],
- [
- 6.01693,
- 46.14191
- ],
- [
- 6.01282,
- 46.14119
- ],
- [
- 6.00814,
- 46.14171
- ],
- [
- 6.00364,
- 46.14088
- ],
- [
- 5.99338,
- 46.1432
- ],
- [
- 5.98728,
- 46.14171
- ],
- [
- 5.98464,
- 46.14232
- ],
- [
- 5.98309,
- 46.13712
- ],
- [
- 5.97603,
- 46.1319
- ],
- [
- 5.97314,
- 46.13081
- ],
- [
- 5.97037,
- 46.13108
- ],
- [
- 5.96536,
- 46.12882
- ],
- [
- 5.96163,
- 46.12976
- ],
- [
- 5.9573,
- 46.12767
- ],
- [
- 5.95575,
- 46.12836
- ],
- [
- 5.95484,
- 46.13214
- ],
- [
- 5.9589,
- 46.13553
- ],
- [
- 5.96446,
- 46.13738
- ],
- [
- 5.96517,
- 46.13845
- ],
- [
- 5.9631,
- 46.14241
- ],
- [
- 5.96383,
- 46.14656
- ],
- [
- 5.97157,
- 46.1558
- ],
- [
- 5.97884,
- 46.16721
- ],
- [
- 5.98022,
- 46.17354
- ],
- [
- 5.98322,
- 46.17507
- ],
- [
- 5.98537,
- 46.17478
- ],
- [
- 5.98754,
- 46.17306
- ],
- [
- 5.99029,
- 46.17955
- ],
- [
- 5.9936,
- 46.18203
- ],
- [
- 5.98976,
- 46.18692
- ],
- [
- 5.98287,
- 46.18822
- ],
- [
- 5.98068,
- 46.1904
- ],
- [
- 5.96282,
- 46.1963
- ],
- [
- 5.96225,
- 46.19719
- ],
- [
- 5.96465,
- 46.20022
- ],
- [
- 5.97164,
- 46.20302
- ],
- [
- 5.96985,
- 46.20383
- ],
- [
- 5.96794,
- 46.20675
- ],
- [
- 5.97227,
- 46.21418
- ],
- [
- 5.97364,
- 46.21563
- ],
- [
- 5.97897,
- 46.21821
- ],
- [
- 6.00857,
- 46.24444
- ],
- [
- 6.01422,
- 46.24855
- ],
- [
- 6.06593,
- 46.28345
- ],
- [
- 6.11511,
- 46.31511
- ],
- [
- 6.12573,
- 46.31843
- ],
- [
- 6.12972,
- 46.31568
- ],
- [
- 6.12978,
- 46.31407
- ],
- [
- 6.13604,
- 46.30896
- ],
- [
- 6.14179,
- 46.30555
- ],
- [
- 6.15393,
- 46.30014
- ],
- [
- 6.17157,
- 46.29507
- ],
- [
- 6.17125,
- 46.29223
- ],
- [
- 6.17277,
- 46.28629
- ],
- [
- 6.17018,
- 46.28533
- ],
- [
- 6.16834,
- 46.28109
- ],
- [
- 6.17201,
- 46.27554
- ],
- [
- 6.1722,
- 46.27301
- ],
- [
- 6.1691,
- 46.26785
- ],
- [
- 6.16746,
- 46.26217
- ],
- [
- 6.16531,
- 46.26195
- ],
- [
- 6.16455,
- 46.26274
- ],
- [
- 6.15943,
- 46.25898
- ],
- [
- 6.15532,
- 46.25216
- ],
- [
- 6.15387,
- 46.25212
- ],
- [
- 6.15273,
- 46.25037
- ],
- [
- 6.15311,
- 46.2477
- ],
- [
- 6.15494,
- 46.24591
- ],
- [
- 6.1521,
- 46.23878
- ],
- [
- 6.15217,
- 46.23273
- ],
- [
- 6.15034,
- 46.22659
- ],
- [
- 6.15454,
- 46.22191
- ],
- [
- 6.15483,
- 46.22044
- ],
- [
- 6.15296,
- 46.21738
- ],
- [
- 6.154,
- 46.21355
- ],
- [
- 6.1571,
- 46.21097
- ],
- [
- 6.16263,
- 46.21043
- ],
- [
- 6.16387,
- 46.2097
- ],
- [
- 6.16911,
- 46.21191
- ],
- [
- 6.16867,
- 46.21318
- ],
- [
- 6.17073,
- 46.21478
- ],
- [
- 6.17471,
- 46.21603
- ],
- [
- 6.18221,
- 46.22618
- ]
- ],
- [
- [
- 6.18834,
- 46.34901
- ],
- [
- 6.18696,
- 46.34862
- ],
- [
- 6.18195,
- 46.35015
- ],
- [
- 6.17961,
- 46.352
- ],
- [
- 6.17142,
- 46.35444
- ],
- [
- 6.17022,
- 46.35911
- ],
- [
- 6.17415,
- 46.36036
- ],
- [
- 6.17272,
- 46.36189
- ],
- [
- 6.17348,
- 46.36288
- ],
- [
- 6.17999,
- 46.36547
- ],
- [
- 6.1877,
- 46.36132
- ],
- [
- 6.19447,
- 46.36175
- ],
- [
- 6.19905,
- 46.36086
- ],
- [
- 6.20113,
- 46.35634
- ],
- [
- 6.20258,
- 46.35567
- ],
- [
- 6.20791,
- 46.35583
- ],
- [
- 6.21374,
- 46.35379
- ],
- [
- 6.21247,
- 46.35085
- ],
- [
- 6.20846,
- 46.34665
- ],
- [
- 6.2086,
- 46.33991
- ],
- [
- 6.20659,
- 46.33792
- ],
- [
- 6.20493,
- 46.33861
- ],
- [
- 6.20348,
- 46.33793
- ],
- [
- 6.19181,
- 46.34333
- ],
- [
- 6.19318,
- 46.34787
- ],
- [
- 6.19076,
- 46.3477
- ],
- [
- 6.18834,
- 46.34901
- ]
- ],
- [
- [
- 6.18182,
- 46.34281
- ],
- [
- 6.18016,
- 46.34318
- ],
- [
- 6.1752,
- 46.34532
- ],
- [
- 6.17341,
- 46.34398
- ],
- [
- 6.17324,
- 46.34054
- ],
- [
- 6.1714,
- 46.33952
- ],
- [
- 6.16588,
- 46.34254
- ],
- [
- 6.16564,
- 46.34339
- ],
- [
- 6.17091,
- 46.35054
- ],
- [
- 6.17341,
- 46.35029
- ],
- [
- 6.17458,
- 46.35192
- ],
- [
- 6.17587,
- 46.35205
- ],
- [
- 6.18579,
- 46.34593
- ],
- [
- 6.18182,
- 46.34281
- ]
- ]
- ],
- "terms_url": "http://ge.ch/sitg/donnees/conditions-d-utilisation/open-data",
- "terms_text": "Orthophotos du SITG 2011"
- },
- {
- "id": "CTFRIBOURG2016",
- "name": "Canton Fribourg 2016",
- "type": "tms",
- "template": "https://mapproxy.osm.ch/tiles/fribourg_2016/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
- "endDate": "2016-01-01T00:00:00.000Z",
- "startDate": "2016-01-01T00:00:00.000Z",
- "scaleExtent": [
- 1,
- 21
- ],
- "polygon": [
- [
- [
- 6.79478,
- 46.57542
- ],
- [
- 6.79949,
- 46.57407
- ],
- [
- 6.80256,
- 46.57491
- ],
- [
- 6.80336,
- 46.57687
- ],
- [
- 6.80427,
- 46.57664
- ],
- [
- 6.80489,
- 46.57792
- ],
- [
- 6.80794,
- 46.57761
- ],
- [
- 6.8094,
- 46.57885
- ],
- [
- 6.81084,
- 46.57896
- ],
- [
- 6.81322,
- 46.57823
- ],
- [
- 6.81153,
- 46.58099
- ],
- [
- 6.8142,
- 46.58396
- ],
- [
- 6.81411,
- 46.58567
- ],
- [
- 6.8206,
- 46.58368
- ],
- [
- 6.82371,
- 46.57747
- ],
- [
- 6.82693,
- 46.57796
- ],
- [
- 6.82927,
- 46.57637
- ],
- [
- 6.83485,
- 46.57533
- ],
- [
- 6.83744,
- 46.57677
- ],
- [
- 6.83691,
- 46.57748
- ],
- [
- 6.83982,
- 46.57896
- ],
- [
- 6.84239,
- 46.58244
- ],
- [
- 6.84532,
- 46.58276
- ],
- [
- 6.84644,
- 46.58394
- ],
- [
- 6.84857,
- 46.58331
- ],
- [
- 6.85087,
- 46.58113
- ],
- [
- 6.85262,
- 46.58197
- ],
- [
- 6.85996,
- 46.57987
- ],
- [
- 6.86554,
- 46.57725
- ],
- [
- 6.86507,
- 46.57623
- ],
- [
- 6.8679,
- 46.57515
- ],
- [
- 6.87446,
- 46.56497
- ],
- [
- 6.8845,
- 46.56195
- ],
- [
- 6.88686,
- 46.56341
- ],
- [
- 6.89214,
- 46.5679
- ],
- [
- 6.89918,
- 46.56671
- ],
- [
- 6.89885,
- 46.56499
- ],
- [
- 6.89393,
- 46.55991
- ],
- [
- 6.88822,
- 46.55815
- ],
- [
- 6.86839,
- 46.54164
- ],
- [
- 6.86498,
- 46.53896
- ],
- [
- 6.86015,
- 46.53597
- ],
- [
- 6.85563,
- 46.54086
- ],
- [
- 6.85501,
- 46.54144
- ],
- [
- 6.85087,
- 46.54111
- ],
- [
- 6.8407,
- 46.53819
- ],
- [
- 6.83032,
- 46.53744
- ],
- [
- 6.82783,
- 46.54298
- ],
- [
- 6.82553,
- 46.54357
- ],
- [
- 6.81278,
- 46.52707
- ],
- [
- 6.81088,
- 46.52513
- ],
- [
- 6.81534,
- 46.52139
- ],
- [
- 6.8181,
- 46.5165
- ],
- [
- 6.82263,
- 46.51411
- ],
- [
- 6.82429,
- 46.51207
- ],
- [
- 6.83034,
- 46.51246
- ],
- [
- 6.83239,
- 46.50544
- ],
- [
- 6.83503,
- 46.50231
- ],
- [
- 6.84126,
- 46.49706
- ],
- [
- 6.84294,
- 46.49632
- ],
- [
- 6.84554,
- 46.49667
- ],
- [
- 6.84775,
- 46.49369
- ],
- [
- 6.84891,
- 46.49337
- ],
- [
- 6.85729,
- 46.49305
- ],
- [
- 6.86276,
- 46.49384
- ],
- [
- 6.86634,
- 46.50079
- ],
- [
- 6.87244,
- 46.50431
- ],
- [
- 6.88168,
- 46.51257
- ],
- [
- 6.8967,
- 46.52044
- ],
- [
- 6.89773,
- 46.52005
- ],
- [
- 6.89711,
- 46.51766
- ],
- [
- 6.89767,
- 46.51483
- ],
- [
- 6.89522,
- 46.51079
- ],
- [
- 6.89572,
- 46.50773
- ],
- [
- 6.89974,
- 46.51039
- ],
- [
- 6.90142,
- 46.51233
- ],
- [
- 6.92517,
- 46.50769
- ],
- [
- 6.92759,
- 46.50467
- ],
- [
- 6.93363,
- 46.50167
- ],
- [
- 6.93674,
- 46.50096
- ],
- [
- 6.95614,
- 46.49949
- ],
- [
- 6.97239,
- 46.48879
- ],
- [
- 6.97581,
- 46.4784
- ],
- [
- 6.97783,
- 46.47289
- ],
- [
- 6.97815,
- 46.46833
- ],
- [
- 6.97906,
- 46.46107
- ],
- [
- 6.98016,
- 46.45896
- ],
- [
- 6.99212,
- 46.44891
- ],
- [
- 6.98361,
- 46.43873
- ],
- [
- 6.98394,
- 46.43799
- ],
- [
- 6.98746,
- 46.43794
- ],
- [
- 7.01786,
- 46.44707
- ],
- [
- 7.02103,
- 46.45729
- ],
- [
- 7.06583,
- 46.48904
- ],
- [
- 7.0724,
- 46.4864
- ],
- [
- 7.10037,
- 46.48699
- ],
- [
- 7.12279,
- 46.49869
- ],
- [
- 7.1264,
- 46.50317
- ],
- [
- 7.13096,
- 46.50466
- ],
- [
- 7.13624,
- 46.50861
- ],
- [
- 7.13704,
- 46.51308
- ],
- [
- 7.14005,
- 46.51688
- ],
- [
- 7.14044,
- 46.51988
- ],
- [
- 7.14318,
- 46.52183
- ],
- [
- 7.1437,
- 46.52475
- ],
- [
- 7.1453,
- 46.52701
- ],
- [
- 7.14835,
- 46.52846
- ],
- [
- 7.15834,
- 46.52681
- ],
- [
- 7.16346,
- 46.52855
- ],
- [
- 7.16709,
- 46.53101
- ],
- [
- 7.18234,
- 46.53837
- ],
- [
- 7.19218,
- 46.54656
- ],
- [
- 7.20081,
- 46.54169
- ],
- [
- 7.20108,
- 46.543
- ],
- [
- 7.20765,
- 46.53291
- ],
- [
- 7.21417,
- 46.53762
- ],
- [
- 7.21811,
- 46.54211
- ],
- [
- 7.22171,
- 46.54481
- ],
- [
- 7.22311,
- 46.5476
- ],
- [
- 7.22543,
- 46.54923
- ],
- [
- 7.2322,
- 46.55123
- ],
- [
- 7.23614,
- 46.554
- ],
- [
- 7.24047,
- 46.55424
- ],
- [
- 7.24705,
- 46.55623
- ],
- [
- 7.25574,
- 46.56029
- ],
- [
- 7.26385,
- 46.56752
- ],
- [
- 7.2681,
- 46.57369
- ],
- [
- 7.28136,
- 46.58411
- ],
- [
- 7.2992,
- 46.5791
- ],
- [
- 7.30805,
- 46.58132
- ],
- [
- 7.31254,
- 46.58917
- ],
- [
- 7.3207,
- 46.59183
- ],
- [
- 7.31479,
- 46.60042
- ],
- [
- 7.3162,
- 46.60937
- ],
- [
- 7.31826,
- 46.61615
- ],
- [
- 7.3178,
- 46.61856
- ],
- [
- 7.31213,
- 46.6217
- ],
- [
- 7.31327,
- 46.63662
- ],
- [
- 7.32284,
- 46.63731
- ],
- [
- 7.32684,
- 46.63873
- ],
- [
- 7.32975,
- 46.64171
- ],
- [
- 7.32787,
- 46.64616
- ],
- [
- 7.321,
- 46.65465
- ],
- [
- 7.32345,
- 46.65526
- ],
- [
- 7.32914,
- 46.65459
- ],
- [
- 7.33116,
- 46.65522
- ],
- [
- 7.33403,
- 46.65471
- ],
- [
- 7.34549,
- 46.6553
- ],
- [
- 7.34756,
- 46.65307
- ],
- [
- 7.35063,
- 46.65164
- ],
- [
- 7.35079,
- 46.64799
- ],
- [
- 7.35456,
- 46.64669
- ],
- [
- 7.3558,
- 46.64533
- ],
- [
- 7.35528,
- 46.64193
- ],
- [
- 7.35714,
- 46.63927
- ],
- [
- 7.35877,
- 46.64418
- ],
- [
- 7.36209,
- 46.64683
- ],
- [
- 7.36229,
- 46.64791
- ],
- [
- 7.36608,
- 46.64898
- ],
- [
- 7.37747,
- 46.65636
- ],
- [
- 7.36933,
- 46.65564
- ],
- [
- 7.36953,
- 46.65748
- ],
- [
- 7.37103,
- 46.65907
- ],
- [
- 7.37083,
- 46.66085
- ],
- [
- 7.37187,
- 46.66283
- ],
- [
- 7.37122,
- 46.66375
- ],
- [
- 7.37252,
- 46.66757
- ],
- [
- 7.37108,
- 46.66942
- ],
- [
- 7.37649,
- 46.67503
- ],
- [
- 7.37293,
- 46.68012
- ],
- [
- 7.37777,
- 46.68357
- ],
- [
- 7.37587,
- 46.68645
- ],
- [
- 7.376,
- 46.6878
- ],
- [
- 7.38027,
- 46.69018
- ],
- [
- 7.37693,
- 46.69272
- ],
- [
- 7.3686,
- 46.69265
- ],
- [
- 7.3649,
- 46.69505
- ],
- [
- 7.36261,
- 46.69928
- ],
- [
- 7.3598,
- 46.69802
- ],
- [
- 7.34598,
- 46.69895
- ],
- [
- 7.34604,
- 46.7019
- ],
- [
- 7.34939,
- 46.70555
- ],
- [
- 7.35037,
- 46.70874
- ],
- [
- 7.35021,
- 46.71119
- ],
- [
- 7.34903,
- 46.71249
- ],
- [
- 7.34065,
- 46.71464
- ],
- [
- 7.33277,
- 46.71491
- ],
- [
- 7.32868,
- 46.71641
- ],
- [
- 7.31011,
- 46.71815
- ],
- [
- 7.30785,
- 46.71717
- ],
- [
- 7.30002,
- 46.72247
- ],
- [
- 7.29683,
- 46.72737
- ],
- [
- 7.29685,
- 46.73565
- ],
- [
- 7.29834,
- 46.74013
- ],
- [
- 7.30304,
- 46.74517
- ],
- [
- 7.30454,
- 46.74816
- ],
- [
- 7.30486,
- 46.75026
- ],
- [
- 7.30335,
- 46.7514
- ],
- [
- 7.30309,
- 46.75261
- ],
- [
- 7.30359,
- 46.75919
- ],
- [
- 7.29987,
- 46.76375
- ],
- [
- 7.29881,
- 46.76513
- ],
- [
- 7.29307,
- 46.77136
- ],
- [
- 7.29532,
- 46.77537
- ],
- [
- 7.29639,
- 46.77729
- ],
- [
- 7.30081,
- 46.77905
- ],
- [
- 7.30053,
- 46.78064
- ],
- [
- 7.30113,
- 46.78134
- ],
- [
- 7.30447,
- 46.78321
- ],
- [
- 7.30447,
- 46.78415
- ],
- [
- 7.30207,
- 46.78638
- ],
- [
- 7.30351,
- 46.78887
- ],
- [
- 7.30201,
- 46.79079
- ],
- [
- 7.30159,
- 46.79283
- ],
- [
- 7.30732,
- 46.79872
- ],
- [
- 7.31044,
- 46.80823
- ],
- [
- 7.31537,
- 46.81246
- ],
- [
- 7.32028,
- 46.8149
- ],
- [
- 7.32047,
- 46.81564
- ],
- [
- 7.32072,
- 46.82011
- ],
- [
- 7.31981,
- 46.82515
- ],
- [
- 7.32891,
- 46.829
- ],
- [
- 7.3302,
- 46.82968
- ],
- [
- 7.33123,
- 46.83177
- ],
- [
- 7.33103,
- 46.8328
- ],
- [
- 7.32926,
- 46.83563
- ],
- [
- 7.32333,
- 46.84041
- ],
- [
- 7.30755,
- 46.84704
- ],
- [
- 7.30775,
- 46.84808
- ],
- [
- 7.30613,
- 46.84999
- ],
- [
- 7.31207,
- 46.85557
- ],
- [
- 7.31351,
- 46.85936
- ],
- [
- 7.31739,
- 46.8606
- ],
- [
- 7.32087,
- 46.86154
- ],
- [
- 7.32576,
- 46.85681
- ],
- [
- 7.323,
- 46.85476
- ],
- [
- 7.32603,
- 46.85163
- ],
- [
- 7.33181,
- 46.8512
- ],
- [
- 7.33536,
- 46.85043
- ],
- [
- 7.33678,
- 46.84979
- ],
- [
- 7.33821,
- 46.84946
- ],
- [
- 7.34726,
- 46.85375
- ],
- [
- 7.34934,
- 46.85331
- ],
- [
- 7.35167,
- 46.85502
- ],
- [
- 7.35444,
- 46.85875
- ],
- [
- 7.35772,
- 46.86065
- ],
- [
- 7.35925,
- 46.86311
- ],
- [
- 7.35794,
- 46.86513
- ],
- [
- 7.35838,
- 46.8688
- ],
- [
- 7.35738,
- 46.8701
- ],
- [
- 7.35386,
- 46.87129
- ],
- [
- 7.35253,
- 46.87555
- ],
- [
- 7.35339,
- 46.88676
- ],
- [
- 7.34843,
- 46.88934
- ],
- [
- 7.32573,
- 46.89373
- ],
- [
- 7.30935,
- 46.89152
- ],
- [
- 7.29618,
- 46.89377
- ],
- [
- 7.28938,
- 46.89377
- ],
- [
- 7.28639,
- 46.89269
- ],
- [
- 7.28245,
- 46.8898
- ],
- [
- 7.2802,
- 46.8896
- ],
- [
- 7.27259,
- 46.89249
- ],
- [
- 7.26634,
- 46.89361
- ],
- [
- 7.25931,
- 46.89797
- ],
- [
- 7.24433,
- 46.90037
- ],
- [
- 7.24314,
- 46.89792
- ],
- [
- 7.23633,
- 46.89809
- ],
- [
- 7.23203,
- 46.90029
- ],
- [
- 7.2309,
- 46.9024
- ],
- [
- 7.23032,
- 46.90394
- ],
- [
- 7.22351,
- 46.90276
- ],
- [
- 7.21755,
- 46.89735
- ],
- [
- 7.21244,
- 46.90173
- ],
- [
- 7.2088,
- 46.9026
- ],
- [
- 7.20781,
- 46.90913
- ],
- [
- 7.20578,
- 46.91477
- ],
- [
- 7.20692,
- 46.92481
- ],
- [
- 7.2111,
- 46.92527
- ],
- [
- 7.21854,
- 46.92434
- ],
- [
- 7.2342,
- 46.92939
- ],
- [
- 7.23411,
- 46.93669
- ],
- [
- 7.23477,
- 46.93827
- ],
- [
- 7.2302,
- 46.93995
- ],
- [
- 7.2282,
- 46.93881
- ],
- [
- 7.22555,
- 46.93633
- ],
- [
- 7.2174,
- 46.93307
- ],
- [
- 7.2093,
- 46.93334
- ],
- [
- 7.20823,
- 46.93323
- ],
- [
- 7.2058,
- 46.94023
- ],
- [
- 7.2055,
- 46.94112
- ],
- [
- 7.20951,
- 46.94188
- ],
- [
- 7.21027,
- 46.94302
- ],
- [
- 7.21044,
- 46.94569
- ],
- [
- 7.21011,
- 46.94781
- ],
- [
- 7.20885,
- 46.95435
- ],
- [
- 7.21102,
- 46.95652
- ],
- [
- 7.20838,
- 46.95768
- ],
- [
- 7.20742,
- 46.95967
- ],
- [
- 7.19764,
- 46.96065
- ],
- [
- 7.19459,
- 46.96135
- ],
- [
- 7.19463,
- 46.9629
- ],
- [
- 7.19552,
- 46.96416
- ],
- [
- 7.19633,
- 46.96365
- ],
- [
- 7.19794,
- 46.96445
- ],
- [
- 7.1993,
- 46.9638
- ],
- [
- 7.20646,
- 46.96413
- ],
- [
- 7.20745,
- 46.96751
- ],
- [
- 7.21422,
- 46.96692
- ],
- [
- 7.21467,
- 46.97133
- ],
- [
- 7.21739,
- 46.97147
- ],
- [
- 7.21686,
- 46.97271
- ],
- [
- 7.22247,
- 46.97454
- ],
- [
- 7.22163,
- 46.97556
- ],
- [
- 7.22821,
- 46.97836
- ],
- [
- 7.23569,
- 46.98456
- ],
- [
- 7.23486,
- 46.98675
- ],
- [
- 7.22594,
- 46.9924
- ],
- [
- 7.22625,
- 46.99868
- ],
- [
- 7.22575,
- 46.99915
- ],
- [
- 7.21779,
- 47.00641
- ],
- [
- 7.21299,
- 47.0068
- ],
- [
- 7.09058,
- 46.978
- ],
- [
- 7.03295,
- 46.98265
- ],
- [
- 6.73785,
- 46.81195
- ],
- [
- 6.73908,
- 46.71021
- ],
- [
- 6.81908,
- 46.65533
- ],
- [
- 6.82741,
- 46.65982
- ],
- [
- 6.82089,
- 46.65179
- ],
- [
- 6.81729,
- 46.64923
- ],
- [
- 6.81851,
- 46.6478
- ],
- [
- 6.81458,
- 46.64747
- ],
- [
- 6.81344,
- 46.64953
- ],
- [
- 6.81194,
- 46.6492
- ],
- [
- 6.81081,
- 46.65038
- ],
- [
- 6.80674,
- 46.65059
- ],
- [
- 6.80203,
- 46.64889
- ],
- [
- 6.79891,
- 46.64914
- ],
- [
- 6.79879,
- 46.64781
- ],
- [
- 6.80367,
- 46.64567
- ],
- [
- 6.80325,
- 46.6448
- ],
- [
- 6.8038,
- 46.64451
- ],
- [
- 6.80321,
- 46.64376
- ],
- [
- 6.80171,
- 46.64421
- ],
- [
- 6.79895,
- 46.63959
- ],
- [
- 6.79692,
- 46.63314
- ],
- [
- 6.79838,
- 46.63016
- ],
- [
- 6.80043,
- 46.62991
- ],
- [
- 6.80065,
- 46.62843
- ],
- [
- 6.80172,
- 46.62854
- ],
- [
- 6.80228,
- 46.62775
- ],
- [
- 6.80197,
- 46.62507
- ],
- [
- 6.80355,
- 46.62124
- ],
- [
- 6.80244,
- 46.61877
- ],
- [
- 6.80296,
- 46.61615
- ],
- [
- 6.80185,
- 46.61555
- ],
- [
- 6.80389,
- 46.60903
- ],
- [
- 6.80239,
- 46.60142
- ],
- [
- 6.79833,
- 46.59986
- ],
- [
- 6.8002,
- 46.59362
- ],
- [
- 6.80124,
- 46.5925
- ],
- [
- 6.79848,
- 46.58616
- ],
- [
- 6.79948,
- 46.58559
- ],
- [
- 6.79894,
- 46.58205
- ],
- [
- 6.79611,
- 46.57932
- ],
- [
- 6.79626,
- 46.57728
- ],
- [
- 6.79478,
- 46.57542
- ]
- ]
- ],
- "terms_text": "Canton Fribourg 2016 'orthophoto technique'"
- },
- {
- "id": "Canvec",
- "name": "Canvec - English",
- "type": "wms",
- "template": "https://maps.geogratis.gc.ca/wms/canvec_en?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=canvec&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -141.0678,
- 60.2442
- ],
- [
- -139.3842,
- 60.10331
- ],
- [
- -137.4746,
- 58.82791
- ],
- [
- -135.4766,
- 59.65971
- ],
- [
- -134.399,
- 58.86279
- ],
- [
- -132.5239,
- 57.08342
- ],
- [
- -130.1435,
- 55.27452
- ],
- [
- -130.7734,
- 54.75597
- ],
- [
- -132.4355,
- 54.71514
- ],
- [
- -134.5711,
- 54.38827
- ],
- [
- -141.7761,
- 53.58405
- ],
- [
- -128.9768,
- 46.41459
- ],
- [
- -124.8087,
- 48.42976
- ],
- [
- -123.4286,
- 48.17889
- ],
- [
- -123.0256,
- 48.40444
- ],
- [
- -123.19237,
- 48.65504
- ],
- [
- -122.99582,
- 48.51065
- ],
- [
- -122.4869,
- 48.4098
- ],
- [
- -122.32915,
- 48.4528
- ],
- [
- -122.22939,
- 48.50649
- ],
- [
- -122.17908,
- 48.52965
- ],
- [
- -122.1842,
- 48.5669
- ],
- [
- -121.77833,
- 48.57593
- ],
- [
- -121.66578,
- 48.42791
- ],
- [
- -121.33068,
- 48.35714
- ],
- [
- -121.02713,
- 48.34977
- ],
- [
- -121.03054,
- 48.49406
- ],
- [
- -120.698,
- 48.51497
- ],
- [
- -120.51041,
- 48.8718
- ],
- [
- -119.97579,
- 48.88134
- ],
- [
- -119.95447,
- 48.51497
- ],
- [
- -119.90758,
- 48.29421
- ],
- [
- -119.73193,
- 48.15503
- ],
- [
- -119.74386,
- 48.07419
- ],
- [
- -119.62279,
- 48.10951
- ],
- [
- -119.60232,
- 48.14707
- ],
- [
- -119.25273,
- 48.16243
- ],
- [
- -114.1499,
- 48.99487
- ],
- [
- -95.12094,
- 48.98405
- ],
- [
- -95.13419,
- 49.35564
- ],
- [
- -94.94415,
- 49.34356
- ],
- [
- -94.8839,
- 49.29522
- ],
- [
- -94.71704,
- 48.87631
- ],
- [
- -94.71791,
- 48.7485
- ],
- [
- -93.83204,
- 48.49765
- ],
- [
- -93.43778,
- 48.53066
- ],
- [
- -93.38216,
- 48.59507
- ],
- [
- -92.98471,
- 48.60312
- ],
- [
- -92.73847,
- 48.50725
- ],
- [
- -92.7095,
- 48.42081
- ],
- [
- -92.54293,
- 48.40158
- ],
- [
- -92.38361,
- 48.20406
- ],
- [
- -92.11564,
- 48.27641
- ],
- [
- -91.58697,
- 48.02516
- ],
- [
- -91.24658,
- 48.05422
- ],
- [
- -90.86275,
- 48.20889
- ],
- [
- -90.78308,
- 48.0639
- ],
- [
- -90.0774,
- 48.07435
- ],
- [
- -89.93835,
- 47.96584
- ],
- [
- -89.75469,
- 47.99609
- ],
- [
- -89.32745,
- 47.93943
- ],
- [
- -88.41489,
- 48.26677
- ],
- [
- -84.9566,
- 46.86086
- ],
- [
- -84.84795,
- 46.6762
- ],
- [
- -84.55904,
- 46.45441
- ],
- [
- -84.47642,
- 46.44972
- ],
- [
- -84.43758,
- 46.48872
- ],
- [
- -84.3669,
- 46.5055
- ],
- [
- -84.34899,
- 46.5055
- ],
- [
- -84.29026,
- 46.49077
- ],
- [
- -84.25742,
- 46.49386
- ],
- [
- -84.22507,
- 46.53187
- ],
- [
- -84.1962,
- 46.53804
- ],
- [
- -84.18027,
- 46.52468
- ],
- [
- -84.15987,
- 46.52468
- ],
- [
- -84.13449,
- 46.52879
- ],
- [
- -84.11558,
- 46.50653
- ],
- [
- -84.15944,
- 46.42769
- ],
- [
- -84.10024,
- 46.20338
- ],
- [
- -83.95558,
- 46.05132
- ],
- [
- -83.8864,
- 46.06125
- ],
- [
- -83.8203,
- 46.11181
- ],
- [
- -83.76975,
- 46.09563
- ],
- [
- -83.67498,
- 46.11391
- ],
- [
- -83.58084,
- 46.09921
- ],
- [
- -83.44747,
- 45.99521
- ],
- [
- -83.60888,
- 45.81772
- ],
- [
- -82.14271,
- 43.57905
- ],
- [
- -82.39133,
- 43.06666
- ],
- [
- -82.41252,
- 43.01127
- ],
- [
- -82.42522,
- 42.99864
- ],
- [
- -82.42618,
- 42.99374
- ],
- [
- -82.42363,
- 42.98536
- ],
- [
- -82.41503,
- 42.97697
- ],
- [
- -82.41853,
- 42.96578
- ],
- [
- -82.43064,
- 42.95203
- ],
- [
- -82.44911,
- 42.93711
- ],
- [
- -82.45739,
- 42.92568
- ],
- [
- -82.46472,
- 42.90562
- ],
- [
- -82.47228,
- 42.8877
- ],
- [
- -82.47228,
- 42.84743
- ],
- [
- -82.48536,
- 42.80967
- ],
- [
- -82.46844,
- 42.76365
- ],
- [
- -82.48586,
- 42.73697
- ],
- [
- -82.49155,
- 42.71168
- ],
- [
- -82.51488,
- 42.66652
- ],
- [
- -82.51224,
- 42.63893
- ],
- [
- -82.52421,
- 42.61103
- ],
- [
- -82.56854,
- 42.58184
- ],
- [
- -82.59498,
- 42.55148
- ],
- [
- -82.61286,
- 42.56409
- ],
- [
- -82.65158,
- 42.55707
- ],
- [
- -82.83439,
- 42.3763
- ],
- [
- -83.01489,
- 42.33457
- ],
- [
- -83.07244,
- 42.31502
- ],
- [
- -83.09647,
- 42.29542
- ],
- [
- -83.12823,
- 42.24126
- ],
- [
- -83.14167,
- 42.18582
- ],
- [
- -83.12799,
- 42.12172
- ],
- [
- -83.16266,
- 42.04963
- ],
- [
- -83.05136,
- 41.70911
- ],
- [
- -82.41932,
- 41.6377
- ],
- [
- -81.22563,
- 42.19633
- ],
- [
- -80.06688,
- 42.37121
- ],
- [
- -78.86642,
- 42.825
- ],
- [
- -78.90301,
- 42.92307
- ],
- [
- -78.92063,
- 42.95234
- ],
- [
- -78.93331,
- 42.95708
- ],
- [
- -78.96058,
- 42.9595
- ],
- [
- -78.98479,
- 42.9761
- ],
- [
- -79.01825,
- 42.9964
- ],
- [
- -79.01969,
- 43.01561
- ],
- [
- -79.00695,
- 43.0333
- ],
- [
- -78.99599,
- 43.06448
- ],
- [
- -79.07335,
- 43.07876
- ],
- [
- -79.07286,
- 43.083
- ],
- [
- -79.0652,
- 43.0917
- ],
- [
- -79.05623,
- 43.10825
- ],
- [
- -79.05982,
- 43.11563
- ],
- [
- -79.06764,
- 43.11992
- ],
- [
- -79.05411,
- 43.12801
- ],
- [
- -79.04112,
- 43.13986
- ],
- [
- -79.04465,
- 43.16192
- ],
- [
- -79.05101,
- 43.17037
- ],
- [
- -79.04758,
- 43.19974
- ],
- [
- -79.05511,
- 43.25682
- ],
- [
- -79.18688,
- 43.44858
- ],
- [
- -78.68836,
- 43.62502
- ],
- [
- -76.77647,
- 43.61369
- ],
- [
- -76.41665,
- 44.08498
- ],
- [
- -75.49023,
- 44.70772
- ],
- [
- -75.29544,
- 44.82587
- ],
- [
- -75.16845,
- 44.88548
- ],
- [
- -75.1275,
- 44.8975
- ],
- [
- -75.00499,
- 44.95265
- ],
- [
- -74.98159,
- 44.97728
- ],
- [
- -74.90496,
- 44.98222
- ],
- [
- -74.8313,
- 45.01108
- ],
- [
- -74.77954,
- 45.00158
- ],
- [
- -74.74562,
- 44.98526
- ],
- [
- -74.70475,
- 44.99877
- ],
- [
- -74.49079,
- 44.99343
- ],
- [
- -74.23203,
- 44.98552
- ],
- [
- -73.93713,
- 44.99512
- ],
- [
- -73.01809,
- 45.0121
- ],
- [
- -72.63177,
- 45.0121
- ],
- [
- -72.54779,
- 45.00506
- ],
- [
- -72.32259,
- 45.00286
- ],
- [
- -71.49404,
- 45.01093
- ],
- [
- -71.48648,
- 45.06221
- ],
- [
- -71.42303,
- 45.12765
- ],
- [
- -71.43112,
- 45.14037
- ],
- [
- -71.37175,
- 45.22117
- ],
- [
- -71.28959,
- 45.28578
- ],
- [
- -71.23613,
- 45.24302
- ],
- [
- -71.11683,
- 45.22933
- ],
- [
- -71.0531,
- 45.29866
- ],
- [
- -70.98936,
- 45.31088
- ],
- [
- -70.90246,
- 45.22525
- ],
- [
- -70.82473,
- 45.22714
- ],
- [
- -70.77626,
- 45.40013
- ],
- [
- -70.7119,
- 45.3754
- ],
- [
- -70.63387,
- 45.37346
- ],
- [
- -70.60302,
- 45.41179
- ],
- [
- -70.67659,
- 45.56319
- ],
- [
- -70.3752,
- 45.73075
- ],
- [
- -70.36334,
- 45.82013
- ],
- [
- -70.25417,
- 45.87468
- ],
- [
- -70.22569,
- 45.94403
- ],
- [
- -70.27316,
- 45.99022
- ],
- [
- -70.17586,
- 46.33538
- ],
- [
- -70.06195,
- 46.4107
- ],
- [
- -69.98891,
- 46.69363
- ],
- [
- -69.22424,
- 47.44463
- ],
- [
- -69.06999,
- 47.41092
- ],
- [
- -69.07473,
- 47.24202
- ],
- [
- -68.89684,
- 47.17469
- ],
- [
- -68.78685,
- 47.21493
- ],
- [
- -68.72415,
- 47.23217
- ],
- [
- -68.68583,
- 47.24028
- ],
- [
- -68.66044,
- 47.23183
- ],
- [
- -68.62162,
- 47.24028
- ],
- [
- -68.59425,
- 47.24974
- ],
- [
- -68.59226,
- 47.27001
- ],
- [
- -68.57385,
- 47.28486
- ],
- [
- -68.55941,
- 47.2798
- ],
- [
- -68.542,
- 47.2798
- ],
- [
- -68.51214,
- 47.29195
- ],
- [
- -68.47381,
- 47.29229
- ],
- [
- -68.46038,
- 47.28149
- ],
- [
- -68.43898,
- 47.27777
- ],
- [
- -68.37229,
- 47.2825
- ],
- [
- -68.3703,
- 47.34796
- ],
- [
- -68.33173,
- 47.35822
- ],
- [
- -68.29664,
- 47.352
- ],
- [
- -68.2399,
- 47.34897
- ],
- [
- -68.0906,
- 47.26798
- ],
- [
- -68.00002,
- 47.21223
- ],
- [
- -67.96344,
- 47.19753
- ],
- [
- -67.93582,
- 47.15947
- ],
- [
- -67.88619,
- 47.10424
- ],
- [
- -67.80218,
- 47.06386
- ],
- [
- -67.79415,
- 45.93923
- ],
- [
- -67.82753,
- 45.8489
- ],
- [
- -67.82753,
- 45.6704
- ],
- [
- -67.54943,
- 45.57445
- ],
- [
- -67.45302,
- 45.58742
- ],
- [
- -67.44189,
- 45.52251
- ],
- [
- -67.54201,
- 45.49393
- ],
- [
- -67.4456,
- 45.38726
- ],
- [
- -67.51605,
- 45.29343
- ],
- [
- -67.38257,
- 45.11839
- ],
- [
- -67.3047,
- 45.11316
- ],
- [
- -67.26762,
- 45.18116
- ],
- [
- -67.12671,
- 45.09484
- ],
- [
- -66.94835,
- 44.78406
- ],
- [
- -66.52283,
- 43.61294
- ],
- [
- -65.02339,
- 42.10691
- ],
- [
- -42.53366,
- 47.50263
- ],
- [
- -75.90901,
- 77.3176
- ],
- [
- -71.86482,
- 78.7359
- ],
- [
- -67.20011,
- 80.66812
- ],
- [
- -66.20727,
- 80.78637
- ],
- [
- -54.82473,
- 83.07464
- ],
- [
- -57.62518,
- 85.04043
- ],
- [
- -106.7949,
- 85.04625
- ],
- [
- -141.3957,
- 79.2514
- ],
- [
- -141.0678,
- 60.2442
- ]
- ]
- ]
- },
- {
- "id": "Canvec_French",
- "name": "Canvec - French",
- "type": "wms",
- "template": "https://maps.geogratis.gc.ca/wms/canvec_fr?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=canvec&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -141.0678,
- 60.2442
- ],
- [
- -139.3842,
- 60.10331
- ],
- [
- -137.4746,
- 58.82791
- ],
- [
- -135.4766,
- 59.65971
- ],
- [
- -134.399,
- 58.86279
- ],
- [
- -132.5239,
- 57.08342
- ],
- [
- -130.1435,
- 55.27452
- ],
- [
- -130.7734,
- 54.75597
- ],
- [
- -132.4355,
- 54.71514
- ],
- [
- -134.5711,
- 54.38827
- ],
- [
- -141.7761,
- 53.58405
- ],
- [
- -128.9768,
- 46.41459
- ],
- [
- -124.8087,
- 48.42976
- ],
- [
- -123.4286,
- 48.17889
- ],
- [
- -123.0256,
- 48.40444
- ],
- [
- -123.19237,
- 48.65504
- ],
- [
- -122.99582,
- 48.51065
- ],
- [
- -122.4869,
- 48.4098
- ],
- [
- -122.32915,
- 48.4528
- ],
- [
- -122.22939,
- 48.50649
- ],
- [
- -122.17908,
- 48.52965
- ],
- [
- -122.1842,
- 48.5669
- ],
- [
- -121.77833,
- 48.57593
- ],
- [
- -121.66578,
- 48.42791
- ],
- [
- -121.33068,
- 48.35714
- ],
- [
- -121.02713,
- 48.34977
- ],
- [
- -121.03054,
- 48.49406
- ],
- [
- -120.698,
- 48.51497
- ],
- [
- -120.51041,
- 48.8718
- ],
- [
- -119.97579,
- 48.88134
- ],
- [
- -119.95447,
- 48.51497
- ],
- [
- -119.90758,
- 48.29421
- ],
- [
- -119.73193,
- 48.15503
- ],
- [
- -119.74386,
- 48.07419
- ],
- [
- -119.62279,
- 48.10951
- ],
- [
- -119.60232,
- 48.14707
- ],
- [
- -119.25273,
- 48.16243
- ],
- [
- -114.1499,
- 48.99487
- ],
- [
- -95.12094,
- 48.98405
- ],
- [
- -95.13419,
- 49.35564
- ],
- [
- -94.94415,
- 49.34356
- ],
- [
- -94.8839,
- 49.29522
- ],
- [
- -94.71704,
- 48.87631
- ],
- [
- -94.71791,
- 48.7485
- ],
- [
- -93.83204,
- 48.49765
- ],
- [
- -93.43778,
- 48.53066
- ],
- [
- -93.38216,
- 48.59507
- ],
- [
- -92.98471,
- 48.60312
- ],
- [
- -92.73847,
- 48.50725
- ],
- [
- -92.7095,
- 48.42081
- ],
- [
- -92.54293,
- 48.40158
- ],
- [
- -92.38361,
- 48.20406
- ],
- [
- -92.11564,
- 48.27641
- ],
- [
- -91.58697,
- 48.02516
- ],
- [
- -91.24658,
- 48.05422
- ],
- [
- -90.86275,
- 48.20889
- ],
- [
- -90.78308,
- 48.0639
- ],
- [
- -90.0774,
- 48.07435
- ],
- [
- -89.93835,
- 47.96584
- ],
- [
- -89.75469,
- 47.99609
- ],
- [
- -89.32745,
- 47.93943
- ],
- [
- -88.41489,
- 48.26677
- ],
- [
- -84.9566,
- 46.86086
- ],
- [
- -84.84795,
- 46.6762
- ],
- [
- -84.55904,
- 46.45441
- ],
- [
- -84.47642,
- 46.44972
- ],
- [
- -84.43758,
- 46.48872
- ],
- [
- -84.3669,
- 46.5055
- ],
- [
- -84.34899,
- 46.5055
- ],
- [
- -84.29026,
- 46.49077
- ],
- [
- -84.25742,
- 46.49386
- ],
- [
- -84.22507,
- 46.53187
- ],
- [
- -84.1962,
- 46.53804
- ],
- [
- -84.18027,
- 46.52468
- ],
- [
- -84.15987,
- 46.52468
- ],
- [
- -84.13449,
- 46.52879
- ],
- [
- -84.11558,
- 46.50653
- ],
- [
- -84.15944,
- 46.42769
- ],
- [
- -84.10024,
- 46.20338
- ],
- [
- -83.95558,
- 46.05132
- ],
- [
- -83.8864,
- 46.06125
- ],
- [
- -83.8203,
- 46.11181
- ],
- [
- -83.76975,
- 46.09563
- ],
- [
- -83.67498,
- 46.11391
- ],
- [
- -83.58084,
- 46.09921
- ],
- [
- -83.44747,
- 45.99521
- ],
- [
- -83.60888,
- 45.81772
- ],
- [
- -82.14271,
- 43.57905
- ],
- [
- -82.39133,
- 43.06666
- ],
- [
- -82.41252,
- 43.01127
- ],
- [
- -82.42522,
- 42.99864
- ],
- [
- -82.42618,
- 42.99374
- ],
- [
- -82.42363,
- 42.98536
- ],
- [
- -82.41503,
- 42.97697
- ],
- [
- -82.41853,
- 42.96578
- ],
- [
- -82.43064,
- 42.95203
- ],
- [
- -82.44911,
- 42.93711
- ],
- [
- -82.45739,
- 42.92568
- ],
- [
- -82.46472,
- 42.90562
- ],
- [
- -82.47228,
- 42.8877
- ],
- [
- -82.47228,
- 42.84743
- ],
- [
- -82.48536,
- 42.80967
- ],
- [
- -82.46844,
- 42.76365
- ],
- [
- -82.48586,
- 42.73697
- ],
- [
- -82.49155,
- 42.71168
- ],
- [
- -82.51488,
- 42.66652
- ],
- [
- -82.51224,
- 42.63893
- ],
- [
- -82.52421,
- 42.61103
- ],
- [
- -82.56854,
- 42.58184
- ],
- [
- -82.59498,
- 42.55148
- ],
- [
- -82.61286,
- 42.56409
- ],
- [
- -82.65158,
- 42.55707
- ],
- [
- -82.83439,
- 42.3763
- ],
- [
- -83.01489,
- 42.33457
- ],
- [
- -83.07244,
- 42.31502
- ],
- [
- -83.09647,
- 42.29542
- ],
- [
- -83.12823,
- 42.24126
- ],
- [
- -83.14167,
- 42.18582
- ],
- [
- -83.12799,
- 42.12172
- ],
- [
- -83.16266,
- 42.04963
- ],
- [
- -83.05136,
- 41.70911
- ],
- [
- -82.41932,
- 41.6377
- ],
- [
- -81.22563,
- 42.19633
- ],
- [
- -80.06688,
- 42.37121
- ],
- [
- -78.86642,
- 42.825
- ],
- [
- -78.90301,
- 42.92307
- ],
- [
- -78.92063,
- 42.95234
- ],
- [
- -78.93331,
- 42.95708
- ],
- [
- -78.96058,
- 42.9595
- ],
- [
- -78.98479,
- 42.9761
- ],
- [
- -79.01825,
- 42.9964
- ],
- [
- -79.01969,
- 43.01561
- ],
- [
- -79.00695,
- 43.0333
- ],
- [
- -78.99599,
- 43.06448
- ],
- [
- -79.07335,
- 43.07876
- ],
- [
- -79.07286,
- 43.083
- ],
- [
- -79.0652,
- 43.0917
- ],
- [
- -79.05623,
- 43.10825
- ],
- [
- -79.05982,
- 43.11563
- ],
- [
- -79.06764,
- 43.11992
- ],
- [
- -79.05411,
- 43.12801
- ],
- [
- -79.04112,
- 43.13986
- ],
- [
- -79.04465,
- 43.16192
- ],
- [
- -79.05101,
- 43.17037
- ],
- [
- -79.04758,
- 43.19974
- ],
- [
- -79.05511,
- 43.25682
- ],
- [
- -79.18688,
- 43.44858
- ],
- [
- -78.68836,
- 43.62502
- ],
- [
- -76.77647,
- 43.61369
- ],
- [
- -76.41665,
- 44.08498
- ],
- [
- -75.49023,
- 44.70772
- ],
- [
- -75.29544,
- 44.82587
- ],
- [
- -75.16845,
- 44.88548
- ],
- [
- -75.1275,
- 44.8975
- ],
- [
- -75.00499,
- 44.95265
- ],
- [
- -74.98159,
- 44.97728
- ],
- [
- -74.90496,
- 44.98222
- ],
- [
- -74.8313,
- 45.01108
- ],
- [
- -74.77954,
- 45.00158
- ],
- [
- -74.74562,
- 44.98526
- ],
- [
- -74.70475,
- 44.99877
- ],
- [
- -74.49079,
- 44.99343
- ],
- [
- -74.23203,
- 44.98552
- ],
- [
- -73.93713,
- 44.99512
- ],
- [
- -73.01809,
- 45.0121
- ],
- [
- -72.63177,
- 45.0121
- ],
- [
- -72.54779,
- 45.00506
- ],
- [
- -72.32259,
- 45.00286
- ],
- [
- -71.49404,
- 45.01093
- ],
- [
- -71.48648,
- 45.06221
- ],
- [
- -71.42303,
- 45.12765
- ],
- [
- -71.43112,
- 45.14037
- ],
- [
- -71.37175,
- 45.22117
- ],
- [
- -71.28959,
- 45.28578
- ],
- [
- -71.23613,
- 45.24302
- ],
- [
- -71.11683,
- 45.22933
- ],
- [
- -71.0531,
- 45.29866
- ],
- [
- -70.98936,
- 45.31088
- ],
- [
- -70.90246,
- 45.22525
- ],
- [
- -70.82473,
- 45.22714
- ],
- [
- -70.77626,
- 45.40013
- ],
- [
- -70.7119,
- 45.3754
- ],
- [
- -70.63387,
- 45.37346
- ],
- [
- -70.60302,
- 45.41179
- ],
- [
- -70.67659,
- 45.56319
- ],
- [
- -70.3752,
- 45.73075
- ],
- [
- -70.36334,
- 45.82013
- ],
- [
- -70.25417,
- 45.87468
- ],
- [
- -70.22569,
- 45.94403
- ],
- [
- -70.27316,
- 45.99022
- ],
- [
- -70.17586,
- 46.33538
- ],
- [
- -70.06195,
- 46.4107
- ],
- [
- -69.98891,
- 46.69363
- ],
- [
- -69.22424,
- 47.44463
- ],
- [
- -69.06999,
- 47.41092
- ],
- [
- -69.07473,
- 47.24202
- ],
- [
- -68.89684,
- 47.17469
- ],
- [
- -68.78685,
- 47.21493
- ],
- [
- -68.72415,
- 47.23217
- ],
- [
- -68.68583,
- 47.24028
- ],
- [
- -68.66044,
- 47.23183
- ],
- [
- -68.62162,
- 47.24028
- ],
- [
- -68.59425,
- 47.24974
- ],
- [
- -68.59226,
- 47.27001
- ],
- [
- -68.57385,
- 47.28486
- ],
- [
- -68.55941,
- 47.2798
- ],
- [
- -68.542,
- 47.2798
- ],
- [
- -68.51214,
- 47.29195
- ],
- [
- -68.47381,
- 47.29229
- ],
- [
- -68.46038,
- 47.28149
- ],
- [
- -68.43898,
- 47.27777
- ],
- [
- -68.37229,
- 47.2825
- ],
- [
- -68.3703,
- 47.34796
- ],
- [
- -68.33173,
- 47.35822
- ],
- [
- -68.29664,
- 47.352
- ],
- [
- -68.2399,
- 47.34897
- ],
- [
- -68.0906,
- 47.26798
- ],
- [
- -68.00002,
- 47.21223
- ],
- [
- -67.96344,
- 47.19753
- ],
- [
- -67.93582,
- 47.15947
- ],
- [
- -67.88619,
- 47.10424
- ],
- [
- -67.80218,
- 47.06386
- ],
- [
- -67.79415,
- 45.93923
- ],
- [
- -67.82753,
- 45.8489
- ],
- [
- -67.82753,
- 45.6704
- ],
- [
- -67.54943,
- 45.57445
- ],
- [
- -67.45302,
- 45.58742
- ],
- [
- -67.44189,
- 45.52251
- ],
- [
- -67.54201,
- 45.49393
- ],
- [
- -67.4456,
- 45.38726
- ],
- [
- -67.51605,
- 45.29343
- ],
- [
- -67.38257,
- 45.11839
- ],
- [
- -67.3047,
- 45.11316
- ],
- [
- -67.26762,
- 45.18116
- ],
- [
- -67.12671,
- 45.09484
- ],
- [
- -66.94835,
- 44.78406
- ],
- [
- -66.52283,
- 43.61294
- ],
- [
- -65.02339,
- 42.10691
- ],
- [
- -42.53366,
- 47.50263
- ],
- [
- -75.90901,
- 77.3176
- ],
- [
- -71.86482,
- 78.7359
- ],
- [
- -67.20011,
- 80.66812
- ],
- [
- -66.20727,
- 80.78637
- ],
- [
- -54.82473,
- 83.07464
- ],
- [
- -57.62518,
- 85.04043
- ],
- [
- -106.7949,
- 85.04625
- ],
- [
- -141.3957,
- 79.2514
- ],
- [
- -141.0678,
- 60.2442
- ]
- ]
- ]
- },
- {
- "id": "capela_al",
- "name": "Capela AL",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Capela&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -36.03321,
- -9.45741
- ],
- [
- -36.03322,
- -9.45581
- ],
- [
- -36.03336,
- -9.45483
- ],
- [
- -36.0334,
- -9.45291
- ],
- [
- -36.03327,
- -9.45141
- ],
- [
- -36.03336,
- -9.44287
- ],
- [
- -36.0335,
- -9.43821
- ],
- [
- -36.03353,
- -9.42881
- ],
- [
- -36.03363,
- -9.42027
- ],
- [
- -36.03389,
- -9.41091
- ],
- [
- -36.03389,
- -9.40032
- ],
- [
- -36.03401,
- -9.3888
- ],
- [
- -36.03413,
- -9.38528
- ],
- [
- -36.03428,
- -9.38265
- ],
- [
- -36.03417,
- -9.37849
- ],
- [
- -36.03444,
- -9.36688
- ],
- [
- -36.05246,
- -9.3671
- ],
- [
- -36.05791,
- -9.36711
- ],
- [
- -36.0716,
- -9.36727
- ],
- [
- -36.08622,
- -9.36731
- ],
- [
- -36.103,
- -9.3675
- ],
- [
- -36.11652,
- -9.36755
- ],
- [
- -36.12515,
- -9.36768
- ],
- [
- -36.12522,
- -9.37473
- ],
- [
- -36.12521,
- -9.37721
- ],
- [
- -36.12511,
- -9.38038
- ],
- [
- -36.12514,
- -9.38529
- ],
- [
- -36.12505,
- -9.39026
- ],
- [
- -36.12504,
- -9.39477
- ],
- [
- -36.12506,
- -9.40172
- ],
- [
- -36.12499,
- -9.40382
- ],
- [
- -36.1248,
- -9.40679
- ],
- [
- -36.12463,
- -9.41123
- ],
- [
- -36.12474,
- -9.4136
- ],
- [
- -36.12456,
- -9.4163
- ],
- [
- -36.12459,
- -9.42461
- ],
- [
- -36.12466,
- -9.42691
- ],
- [
- -36.12465,
- -9.42925
- ],
- [
- -36.12457,
- -9.4297
- ],
- [
- -36.12464,
- -9.43538
- ],
- [
- -36.12438,
- -9.44109
- ],
- [
- -36.12446,
- -9.44387
- ],
- [
- -36.12452,
- -9.44579
- ],
- [
- -36.12438,
- -9.44736
- ],
- [
- -36.12448,
- -9.44856
- ],
- [
- -36.12448,
- -9.45095
- ],
- [
- -36.12436,
- -9.45392
- ],
- [
- -36.12434,
- -9.45791
- ],
- [
- -36.11758,
- -9.45783
- ],
- [
- -36.1089,
- -9.45778
- ],
- [
- -36.10419,
- -9.4578
- ],
- [
- -36.10116,
- -9.45773
- ],
- [
- -36.0953,
- -9.45773
- ],
- [
- -36.08461,
- -9.45767
- ],
- [
- -36.07361,
- -9.45757
- ],
- [
- -36.05726,
- -9.45741
- ],
- [
- -36.04816,
- -9.45747
- ],
- [
- -36.04177,
- -9.45739
- ],
- [
- -36.03767,
- -9.45739
- ],
- [
- -36.03321,
- -9.45741
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "Cartoriviera-2012",
- "name": "Cartoriviera - Orthophoto 2012",
- "type": "tms",
- "template": "http://osmdata.asitvd.ch/tiles/cartoriviera2012/{zoom}/{x}/{y}.png",
- "endDate": "2012-01-01T00:00:00.000Z",
- "startDate": "2012-01-01T00:00:00.000Z",
- "scaleExtent": [
- 14,
- 20
- ],
- "polygon": [
- [
- [
- 7.02235,
- 46.42856
- ],
- [
- 7.0224,
- 46.42045
- ],
- [
- 7.02176,
- 46.41955
- ],
- [
- 7.02225,
- 46.41954
- ],
- [
- 7.02161,
- 46.41749
- ],
- [
- 7.02242,
- 46.4174
- ],
- [
- 7.02242,
- 46.41681
- ],
- [
- 7.02113,
- 46.41443
- ],
- [
- 7.02164,
- 46.41259
- ],
- [
- 7.0216,
- 46.41188
- ],
- [
- 7.01918,
- 46.41055
- ],
- [
- 7.01896,
- 46.41004
- ],
- [
- 7.01757,
- 46.40826
- ],
- [
- 7.01426,
- 46.40696
- ],
- [
- 7.00948,
- 46.40695
- ],
- [
- 7.00952,
- 46.40451
- ],
- [
- 7.00368,
- 46.40153
- ],
- [
- 6.97052,
- 46.40139
- ],
- [
- 6.97056,
- 46.39354
- ],
- [
- 6.96507,
- 46.38333
- ],
- [
- 6.89379,
- 46.383
- ],
- [
- 6.89327,
- 46.39209
- ],
- [
- 6.8968,
- 46.4
- ],
- [
- 6.89678,
- 46.40097
- ],
- [
- 6.89395,
- 46.401
- ],
- [
- 6.89768,
- 46.40888
- ],
- [
- 6.89246,
- 46.41386
- ],
- [
- 6.89237,
- 46.41807
- ],
- [
- 6.8949,
- 46.4193
- ],
- [
- 6.89285,
- 46.41948
- ],
- [
- 6.89395,
- 46.42312
- ],
- [
- 6.89225,
- 46.42339
- ],
- [
- 6.89219,
- 46.42802
- ],
- [
- 6.88743,
- 46.428
- ],
- [
- 6.87652,
- 46.43163
- ],
- [
- 6.86624,
- 46.43633
- ],
- [
- 6.84003,
- 46.44591
- ],
- [
- 6.83504,
- 46.44934
- ],
- [
- 6.827,
- 46.45204
- ],
- [
- 6.82695,
- 46.45379
- ],
- [
- 6.81953,
- 46.45655
- ],
- [
- 6.80361,
- 46.45993
- ],
- [
- 6.78775,
- 46.46253
- ],
- [
- 6.78697,
- 46.5246
- ],
- [
- 6.82604,
- 46.5248
- ],
- [
- 6.82609,
- 46.52662
- ],
- [
- 6.83907,
- 46.5267
- ],
- [
- 6.83888,
- 46.55006
- ],
- [
- 6.90658,
- 46.55042
- ],
- [
- 6.912,
- 46.54301
- ],
- [
- 6.91083,
- 46.53983
- ],
- [
- 6.90979,
- 46.53512
- ],
- [
- 6.90931,
- 46.53517
- ],
- [
- 6.90867,
- 46.53373
- ],
- [
- 6.91195,
- 46.53297
- ],
- [
- 6.91335,
- 46.53604
- ],
- [
- 6.9268,
- 46.53364
- ],
- [
- 6.92723,
- 46.5349
- ],
- [
- 6.93714,
- 46.53311
- ],
- [
- 6.93691,
- 46.5327
- ],
- [
- 6.94028,
- 46.53196
- ],
- [
- 6.94164,
- 46.53477
- ],
- [
- 6.94309,
- 46.53455
- ],
- [
- 6.94345,
- 46.53528
- ],
- [
- 6.95641,
- 46.53003
- ],
- [
- 6.95632,
- 46.52733
- ],
- [
- 6.95111,
- 46.52725
- ],
- [
- 6.95301,
- 46.52611
- ],
- [
- 6.94341,
- 46.52605
- ],
- [
- 6.94343,
- 46.52546
- ],
- [
- 7.01629,
- 46.52568
- ],
- [
- 7.02158,
- 46.52211
- ],
- [
- 7.02196,
- 46.47355
- ],
- [
- 7.07099,
- 46.47368
- ],
- [
- 7.07402,
- 46.4719
- ],
- [
- 7.07383,
- 46.4326
- ],
- [
- 7.05947,
- 46.43233
- ],
- [
- 7.05278,
- 46.42879
- ],
- [
- 7.02235,
- 46.42856
- ]
- ]
- ],
- "terms_url": "https://map.cartoriviera.ch/?baselayer_ref=orthos_2012_mobile&baselayer_opacity=100",
- "terms_text": "Cartoriviera"
- },
- {
- "id": "Catastro-Spain",
- "name": "Catastro Spain",
- "type": "wms",
- "template": "http://ovc.catastro.meh.es/Cartografia/WMS/ServidorWMS.aspx?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=Catastro&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -17.88463,
- 28.44606
- ],
- [
- -17.89395,
- 28.52255
- ],
- [
- -18.02125,
- 28.74819
- ],
- [
- -18.02241,
- 28.80384
- ],
- [
- -17.9424,
- 28.87261
- ],
- [
- -17.89118,
- 28.87371
- ],
- [
- -17.89033,
- 28.85151
- ],
- [
- -17.76759,
- 28.85378
- ],
- [
- -17.76698,
- 28.83122
- ],
- [
- -17.74127,
- 28.832
- ],
- [
- -17.73949,
- 28.76422
- ],
- [
- -17.71398,
- 28.76497
- ],
- [
- -17.71293,
- 28.73037
- ],
- [
- -17.75744,
- 28.69318
- ],
- [
- -17.75708,
- 28.67413
- ],
- [
- -17.74579,
- 28.67435
- ],
- [
- -17.74573,
- 28.61656
- ],
- [
- -17.75197,
- 28.58337
- ],
- [
- -17.76225,
- 28.5592
- ],
- [
- -17.78331,
- 28.54167
- ],
- [
- -17.78316,
- 28.49366
- ],
- [
- -17.80861,
- 28.4925
- ],
- [
- -17.80601,
- 28.4469
- ],
- [
- -17.88463,
- 28.44606
- ]
- ],
- [
- [
- -18.1661,
- 27.78516
- ],
- [
- -18.16349,
- 27.69492
- ],
- [
- -18.08898,
- 27.69634
- ],
- [
- -18.08734,
- 27.67387
- ],
- [
- -18.03641,
- 27.67537
- ],
- [
- -18.03501,
- 27.63026
- ],
- [
- -17.959,
- 27.6324
- ],
- [
- -17.86033,
- 27.7926
- ],
- [
- -17.86303,
- 27.83688
- ],
- [
- -17.8884,
- 27.83649
- ],
- [
- -17.88913,
- 27.85905
- ],
- [
- -17.99065,
- 27.85675
- ],
- [
- -18.03868,
- 27.76558
- ],
- [
- -18.11464,
- 27.76379
- ],
- [
- -18.11546,
- 27.78636
- ],
- [
- -18.1661,
- 27.78516
- ]
- ],
- [
- [
- -17.36038,
- 28.06398
- ],
- [
- -17.36297,
- 28.17572
- ],
- [
- -17.33756,
- 28.17637
- ],
- [
- -17.33846,
- 28.2213
- ],
- [
- -17.18579,
- 28.22388
- ],
- [
- -17.08208,
- 28.13518
- ],
- [
- -17.08084,
- 28.068
- ],
- [
- -17.13154,
- 28.06681
- ],
- [
- -17.15633,
- 28.02146
- ],
- [
- -17.23211,
- 28.02037
- ],
- [
- -17.23199,
- 27.99804
- ],
- [
- -17.25768,
- 27.99784
- ],
- [
- -17.25785,
- 28.01997
- ],
- [
- -17.30867,
- 28.01923
- ],
- [
- -17.36038,
- 28.06398
- ]
- ],
- [
- [
- -16.92782,
- 28.32758
- ],
- [
- -16.92866,
- 28.37219
- ],
- [
- -16.87767,
- 28.37293
- ],
- [
- -16.87807,
- 28.39542
- ],
- [
- -16.52143,
- 28.42261
- ],
- [
- -16.44571,
- 28.49113
- ],
- [
- -16.44625,
- 28.53597
- ],
- [
- -16.42059,
- 28.53627
- ],
- [
- -16.42092,
- 28.55884
- ],
- [
- -16.34433,
- 28.55976
- ],
- [
- -16.3446,
- 28.58221
- ],
- [
- -16.19125,
- 28.58372
- ],
- [
- -16.19162,
- 28.60684
- ],
- [
- -16.12793,
- 28.60782
- ],
- [
- -16.1278,
- 28.59218
- ],
- [
- -16.09951,
- 28.5925
- ],
- [
- -16.09934,
- 28.51638
- ],
- [
- -16.16481,
- 28.51612
- ],
- [
- -16.16475,
- 28.49386
- ],
- [
- -16.23858,
- 28.44847
- ],
- [
- -16.26535,
- 28.44761
- ],
- [
- -16.26586,
- 28.403
- ],
- [
- -16.31675,
- 28.40176
- ],
- [
- -16.31631,
- 28.38019
- ],
- [
- -16.34208,
- 28.37951
- ],
- [
- -16.34083,
- 28.2893
- ],
- [
- -16.41584,
- 28.19761
- ],
- [
- -16.4151,
- 28.13113
- ],
- [
- -16.51533,
- 28.01648
- ],
- [
- -16.61684,
- 28.01532
- ],
- [
- -16.61681,
- 27.99305
- ],
- [
- -16.71842,
- 27.99192
- ],
- [
- -16.7191,
- 28.03714
- ],
- [
- -16.7447,
- 28.03679
- ],
- [
- -16.74534,
- 28.08181
- ],
- [
- -16.7707,
- 28.08161
- ],
- [
- -16.8224,
- 28.1259
- ],
- [
- -16.82317,
- 28.17087
- ],
- [
- -16.8487,
- 28.17075
- ],
- [
- -16.85028,
- 28.26079
- ],
- [
- -16.87565,
- 28.26055
- ],
- [
- -16.87608,
- 28.28322
- ],
- [
- -16.90151,
- 28.28277
- ],
- [
- -16.90239,
- 28.32793
- ],
- [
- -16.92782,
- 28.32758
- ]
- ],
- [
- [
- -15.85374,
- 27.90089
- ],
- [
- -15.8542,
- 27.99018
- ],
- [
- -15.82895,
- 27.99066
- ],
- [
- -15.82911,
- 28.03558
- ],
- [
- -15.7783,
- 28.03632
- ],
- [
- -15.75328,
- 28.08143
- ],
- [
- -15.72788,
- 28.08157
- ],
- [
- -15.72826,
- 28.17186
- ],
- [
- -15.49897,
- 28.1728
- ],
- [
- -15.49874,
- 28.15041
- ],
- [
- -15.44978,
- 28.15075
- ],
- [
- -15.45016,
- 28.19614
- ],
- [
- -15.39728,
- 28.19614
- ],
- [
- -15.39644,
- 28.03836
- ],
- [
- -15.37103,
- 28.03802
- ],
- [
- -15.37065,
- 28.01532
- ],
- [
- -15.34578,
- 28.01532
- ],
- [
- -15.34548,
- 27.92544
- ],
- [
- -15.3708,
- 27.92524
- ],
- [
- -15.37057,
- 27.83521
- ],
- [
- -15.39598,
- 27.83474
- ],
- [
- -15.421,
- 27.78797
- ],
- [
- -15.47181,
- 27.78939
- ],
- [
- -15.47188,
- 27.76665
- ],
- [
- -15.52277,
- 27.76678
- ],
- [
- -15.54771,
- 27.72161
- ],
- [
- -15.62361,
- 27.72134
- ],
- [
- -15.62415,
- 27.74199
- ],
- [
- -15.70075,
- 27.74335
- ],
- [
- -15.80167,
- 27.81105
- ],
- [
- -15.85374,
- 27.90089
- ]
- ],
- [
- [
- -14.52156,
- 28.04678
- ],
- [
- -14.52244,
- 28.11841
- ],
- [
- -14.41575,
- 28.11561
- ],
- [
- -14.21688,
- 28.22788
- ],
- [
- -14.21537,
- 28.33903
- ],
- [
- -14.16417,
- 28.45283
- ],
- [
- -14.11151,
- 28.4748
- ],
- [
- -14.03358,
- 28.72267
- ],
- [
- -13.95652,
- 28.74494
- ],
- [
- -13.95617,
- 28.76659
- ],
- [
- -13.82902,
- 28.76643
- ],
- [
- -13.82896,
- 28.78798
- ],
- [
- -13.80007,
- 28.78793
- ],
- [
- -13.8013,
- 28.71899
- ],
- [
- -13.82757,
- 28.71935
- ],
- [
- -13.82786,
- 28.6518
- ],
- [
- -13.80258,
- 28.6519
- ],
- [
- -13.80339,
- 28.53842
- ],
- [
- -13.82885,
- 28.53847
- ],
- [
- -13.83151,
- 28.39702
- ],
- [
- -13.91582,
- 28.22414
- ],
- [
- -13.98564,
- 28.22357
- ],
- [
- -14.03696,
- 28.17958
- ],
- [
- -14.13871,
- 28.17999
- ],
- [
- -14.13866,
- 28.15791
- ],
- [
- -14.21537,
- 28.15781
- ],
- [
- -14.21472,
- 28.11189
- ],
- [
- -14.29132,
- 28.04524
- ],
- [
- -14.33197,
- 28.03687
- ],
- [
- -14.44578,
- 28.04698
- ],
- [
- -14.44666,
- 28.0658
- ],
- [
- -14.49628,
- 28.06826
- ],
- [
- -14.49593,
- 28.04585
- ],
- [
- -14.52156,
- 28.04678
- ]
- ],
- [
- [
- -13.80066,
- 28.84566
- ],
- [
- -13.80093,
- 28.82311
- ],
- [
- -13.77569,
- 28.82305
- ],
- [
- -13.69729,
- 28.88982
- ],
- [
- -13.69729,
- 28.91277
- ],
- [
- -13.60725,
- 28.9118
- ],
- [
- -13.43886,
- 29.00024
- ],
- [
- -13.43746,
- 29.13513
- ],
- [
- -13.4117,
- 29.13499
- ],
- [
- -13.41056,
- 29.22298
- ],
- [
- -13.45928,
- 29.25559
- ],
- [
- -13.45974,
- 29.2942
- ],
- [
- -13.50913,
- 29.29456
- ],
- [
- -13.51006,
- 29.31635
- ],
- [
- -13.56354,
- 29.31729
- ],
- [
- -13.56406,
- 29.27138
- ],
- [
- -13.53892,
- 29.2712
- ],
- [
- -13.53897,
- 29.25004
- ],
- [
- -13.56613,
- 29.25013
- ],
- [
- -13.5666,
- 29.203
- ],
- [
- -13.51565,
- 29.20223
- ],
- [
- -13.51565,
- 29.18206
- ],
- [
- -13.5398,
- 29.18278
- ],
- [
- -13.54089,
- 29.13753
- ],
- [
- -13.65782,
- 29.13685
- ],
- [
- -13.71322,
- 29.09351
- ],
- [
- -13.76634,
- 29.09345
- ],
- [
- -13.85025,
- 29.01659
- ],
- [
- -13.85182,
- 28.98343
- ],
- [
- -13.85244,
- 28.91486
- ],
- [
- -13.90131,
- 28.89245
- ],
- [
- -13.9024,
- 28.84698
- ],
- [
- -13.80066,
- 28.84566
- ]
- ],
- [
- [
- 1.64799,
- 38.99907
- ],
- [
- 1.73217,
- 38.99936
- ],
- [
- 1.73147,
- 39.04417
- ],
- [
- 1.64895,
- 39.04319
- ],
- [
- 1.64816,
- 39.12764
- ],
- [
- 1.39486,
- 39.12657
- ],
- [
- 1.39544,
- 39.08642
- ],
- [
- 1.22811,
- 39.08526
- ],
- [
- 1.22911,
- 39.0029
- ],
- [
- 1.14487,
- 39.0018
- ],
- [
- 1.14528,
- 38.832
- ],
- [
- 1.31136,
- 38.83316
- ],
- [
- 1.31219,
- 38.79065
- ],
- [
- 1.39469,
- 38.79162
- ],
- [
- 1.39519,
- 38.75296
- ],
- [
- 1.31128,
- 38.75193
- ],
- [
- 1.31259,
- 38.62388
- ],
- [
- 1.6489,
- 38.62511
- ],
- [
- 1.64807,
- 38.71115
- ],
- [
- 1.58456,
- 38.71012
- ],
- [
- 1.58116,
- 38.70054
- ],
- [
- 1.54915,
- 38.70028
- ],
- [
- 1.51972,
- 38.70921
- ],
- [
- 1.50355,
- 38.72532
- ],
- [
- 1.48133,
- 38.91551
- ],
- [
- 1.55189,
- 38.92544
- ],
- [
- 1.56673,
- 38.95666
- ],
- [
- 1.64874,
- 38.95833
- ],
- [
- 1.64799,
- 38.99907
- ]
- ],
- [
- [
- 2.54507,
- 39.41667
- ],
- [
- 2.43933,
- 39.41611
- ],
- [
- 2.43871,
- 39.48469
- ],
- [
- 2.43902,
- 39.49934
- ],
- [
- 2.31223,
- 39.49934
- ],
- [
- 2.31192,
- 39.54179
- ],
- [
- 2.22907,
- 39.541
- ],
- [
- 2.22835,
- 39.62606
- ],
- [
- 2.34601,
- 39.62709
- ],
- [
- 2.92704,
- 39.96016
- ],
- [
- 3.14566,
- 39.96005
- ],
- [
- 3.14608,
- 40.00198
- ],
- [
- 3.23139,
- 40.00198
- ],
- [
- 3.23129,
- 39.83292
- ],
- [
- 3.14823,
- 39.83316
- ],
- [
- 3.14844,
- 39.79357
- ],
- [
- 3.48148,
- 39.79318
- ],
- [
- 3.48035,
- 39.5959
- ],
- [
- 3.31506,
- 39.47846
- ],
- [
- 3.31462,
- 39.37855
- ],
- [
- 3.08302,
- 39.24994
- ],
- [
- 2.97986,
- 39.25015
- ],
- [
- 2.97904,
- 39.3335
- ],
- [
- 2.72874,
- 39.33342
- ],
- [
- 2.72885,
- 39.45814
- ],
- [
- 2.64569,
- 39.45774
- ],
- [
- 2.64538,
- 39.49966
- ],
- [
- 2.54528,
- 39.49942
- ],
- [
- 2.54507,
- 39.41667
- ]
- ],
- [
- [
- 3.81204,
- 40.04344
- ],
- [
- 3.72908,
- 40.0438
- ],
- [
- 3.72862,
- 39.95842
- ],
- [
- 3.81266,
- 39.9576
- ],
- [
- 3.81228,
- 39.91644
- ],
- [
- 3.9609,
- 39.91598
- ],
- [
- 4.19381,
- 39.79131
- ],
- [
- 4.31503,
- 39.79058
- ],
- [
- 4.31599,
- 39.83293
- ],
- [
- 4.39874,
- 39.83204
- ],
- [
- 4.39737,
- 39.91858
- ],
- [
- 4.3158,
- 39.91933
- ],
- [
- 4.31619,
- 40.0434
- ],
- [
- 4.2319,
- 40.04436
- ],
- [
- 4.23248,
- 40.08478
- ],
- [
- 4.14915,
- 40.08611
- ],
- [
- 4.14906,
- 40.12552
- ],
- [
- 4.0628,
- 40.12722
- ],
- [
- 4.06242,
- 40.08499
- ],
- [
- 3.81287,
- 40.08529
- ],
- [
- 3.81204,
- 40.04344
- ]
- ],
- [
- [
- -8.89106,
- 41.82289
- ],
- [
- -9.1092,
- 42.57511
- ],
- [
- -9.03655,
- 42.73066
- ],
- [
- -9.08834,
- 42.72696
- ],
- [
- -9.14661,
- 42.77503
- ],
- [
- -9.21855,
- 42.90163
- ],
- [
- -9.2761,
- 42.86051
- ],
- [
- -9.30991,
- 42.93113
- ],
- [
- -9.27898,
- 42.9822
- ],
- [
- -9.30991,
- 43.06004
- ],
- [
- -9.25236,
- 43.10417
- ],
- [
- -9.2315,
- 43.17032
- ],
- [
- -9.14733,
- 43.21018
- ],
- [
- -9.06748,
- 43.19916
- ],
- [
- -9.03367,
- 43.24267
- ],
- [
- -8.99842,
- 43.24477
- ],
- [
- -8.99986,
- 43.29558
- ],
- [
- -8.93727,
- 43.30553
- ],
- [
- -8.92936,
- 43.32699
- ],
- [
- -8.8639,
- 43.32908
- ],
- [
- -8.87613,
- 43.37407
- ],
- [
- -8.82217,
- 43.37354
- ],
- [
- -8.78548,
- 43.31914
- ],
- [
- -8.70635,
- 43.305
- ],
- [
- -8.60996,
- 43.3296
- ],
- [
- -8.55097,
- 43.32332
- ],
- [
- -8.52435,
- 43.3364
- ],
- [
- -8.52507,
- 43.36465
- ],
- [
- -8.45745,
- 43.39184
- ],
- [
- -8.36105,
- 43.41118
- ],
- [
- -8.36033,
- 43.46342
- ],
- [
- -8.33444,
- 43.57974
- ],
- [
- -8.27761,
- 43.57088
- ],
- [
- -8.06467,
- 43.72392
- ],
- [
- -7.99921,
- 43.7234
- ],
- [
- -7.9172,
- 43.78264
- ],
- [
- -7.85605,
- 43.79146
- ],
- [
- -7.83591,
- 43.73743
- ],
- [
- -7.66284,
- 43.80982
- ],
- [
- -7.31889,
- 43.67827
- ],
- [
- -7.19975,
- 43.58308
- ],
- [
- -6.24882,
- 43.6075
- ],
- [
- -6.12293,
- 43.57901
- ],
- [
- -5.85204,
- 43.6799
- ],
- [
- -5.60363,
- 43.57087
- ],
- [
- -5.28553,
- 43.56191
- ],
- [
- -5.17875,
- 43.49916
- ],
- [
- -4.90899,
- 43.48367
- ],
- [
- -4.61562,
- 43.4192
- ],
- [
- -4.18399,
- 43.42492
- ],
- [
- -3.80295,
- 43.51954
- ],
- [
- -3.74,
- 43.48693
- ],
- [
- -3.56128,
- 43.54236
- ],
- [
- -3.1083,
- 43.38163
- ],
- [
- -2.93857,
- 43.46246
- ],
- [
- -2.74524,
- 43.47551
- ],
- [
- -2.30462,
- 43.31706
- ],
- [
- -1.9854,
- 43.3563
- ],
- [
- -1.85528,
- 43.39725
- ],
- [
- -1.7698,
- 43.39644
- ],
- [
- -1.77005,
- 43.37605
- ],
- [
- -1.71005,
- 43.37569
- ],
- [
- -1.71135,
- 43.33125
- ],
- [
- -1.72259,
- 43.31318
- ],
- [
- -1.68904,
- 43.31291
- ],
- [
- -1.68811,
- 43.33413
- ],
- [
- -1.64467,
- 43.33372
- ],
- [
- -1.64498,
- 43.31332
- ],
- [
- -1.60299,
- 43.31295
- ],
- [
- -1.60344,
- 43.29266
- ],
- [
- -1.56359,
- 43.29212
- ],
- [
- -1.56305,
- 43.31338
- ],
- [
- -1.47799,
- 43.31284
- ],
- [
- -1.36677,
- 43.27614
- ],
- [
- -1.35688,
- 43.23815
- ],
- [
- -1.37037,
- 43.1713
- ],
- [
- -1.44231,
- 43.08336
- ],
- [
- -1.41983,
- 43.06036
- ],
- [
- -1.37307,
- 43.05117
- ],
- [
- -1.36407,
- 43.11159
- ],
- [
- -1.30203,
- 43.13522
- ],
- [
- -1.23549,
- 43.13325
- ],
- [
- -1.27955,
- 43.07744
- ],
- [
- -1.19232,
- 43.06496
- ],
- [
- -1.00619,
- 43.00778
- ],
- [
- -0.94234,
- 42.9749
- ],
- [
- -0.7562,
- 42.98213
- ],
- [
- -0.71484,
- 42.96108
- ],
- [
- -0.69685,
- 42.90314
- ],
- [
- -0.55118,
- 42.82207
- ],
- [
- -0.50442,
- 42.84845
- ],
- [
- -0.42889,
- 42.82009
- ],
- [
- -0.31648,
- 42.86558
- ],
- [
- -0.14563,
- 42.81086
- ],
- [
- -0.03143,
- 42.71249
- ],
- [
- 0.18618,
- 42.7541
- ],
- [
- 0.30218,
- 42.71777
- ],
- [
- 0.36422,
- 42.74287
- ],
- [
- 0.44875,
- 42.71447
- ],
- [
- 0.62769,
- 42.7224
- ],
- [
- 0.64118,
- 42.85767
- ],
- [
- 0.71492,
- 42.88272
- ],
- [
- 0.9676,
- 42.81811
- ],
- [
- 1.10878,
- 42.79898
- ],
- [
- 1.17532,
- 42.73429
- ],
- [
- 1.36326,
- 42.74155
- ],
- [
- 1.41137,
- 42.70939
- ],
- [
- 1.48061,
- 42.71034
- ],
- [
- 1.4813,
- 42.50107
- ],
- [
- 1.64436,
- 42.50203
- ],
- [
- 1.64328,
- 42.54245
- ],
- [
- 1.73041,
- 42.54342
- ],
- [
- 1.73164,
- 42.50118
- ],
- [
- 2.06386,
- 42.50164
- ],
- [
- 2.06456,
- 42.45902
- ],
- [
- 2.39693,
- 42.45994
- ],
- [
- 2.39768,
- 42.41784
- ],
- [
- 2.48048,
- 42.41797
- ],
- [
- 2.48098,
- 42.37594
- ],
- [
- 2.64479,
- 42.37626
- ],
- [
- 2.64448,
- 42.45924
- ],
- [
- 2.81133,
- 42.45961
- ],
- [
- 2.81126,
- 42.50104
- ],
- [
- 3.06388,
- 42.50085
- ],
- [
- 3.06388,
- 42.45915
- ],
- [
- 3.23078,
- 42.45934
- ],
- [
- 3.23049,
- 42.37644
- ],
- [
- 3.31415,
- 42.37604
- ],
- [
- 3.31412,
- 42.33399
- ],
- [
- 3.39785,
- 42.33404
- ],
- [
- 3.39739,
- 42.29009
- ],
- [
- 3.31389,
- 42.29084
- ],
- [
- 3.31397,
- 42.20702
- ],
- [
- 3.14759,
- 42.2073
- ],
- [
- 3.14759,
- 42.12606
- ],
- [
- 3.23055,
- 42.126
- ],
- [
- 3.24668,
- 41.95294
- ],
- [
- 3.19452,
- 41.85589
- ],
- [
- 3.06054,
- 41.76474
- ],
- [
- 2.78358,
- 41.63718
- ],
- [
- 2.26293,
- 41.42716
- ],
- [
- 2.16492,
- 41.29893
- ],
- [
- 1.86008,
- 41.22322
- ],
- [
- 1.3763,
- 41.11627
- ],
- [
- 1.17937,
- 41.04646
- ],
- [
- 1.08585,
- 41.04849
- ],
- [
- 0.75854,
- 40.81956
- ],
- [
- 0.9114,
- 40.73376
- ],
- [
- 0.87813,
- 40.67514
- ],
- [
- 0.66502,
- 40.53587
- ],
- [
- 0.55801,
- 40.55022
- ],
- [
- 0.43392,
- 40.37576
- ],
- [
- 0.26756,
- 40.19192
- ],
- [
- 0.16415,
- 40.06472
- ],
- [
- 0.07513,
- 40.01447
- ],
- [
- 0.01039,
- 39.89522
- ],
- [
- -0.09392,
- 39.81169
- ],
- [
- -0.18474,
- 39.63117
- ],
- [
- -0.29085,
- 39.50363
- ],
- [
- -0.28636,
- 39.33343
- ],
- [
- -0.18564,
- 39.17746
- ],
- [
- -0.21352,
- 39.15585
- ],
- [
- -0.11101,
- 38.97222
- ],
- [
- 0.00949,
- 38.88268
- ],
- [
- 0.12189,
- 38.87218
- ],
- [
- 0.23429,
- 38.79864
- ],
- [
- 0.25587,
- 38.72642
- ],
- [
- 0.09581,
- 38.61338
- ],
- [
- -0.0022,
- 38.60706
- ],
- [
- -0.05705,
- 38.52691
- ],
- [
- -0.27197,
- 38.47624
- ],
- [
- -0.37987,
- 38.39312
- ],
- [
- -0.38347,
- 38.33813
- ],
- [
- -0.45091,
- 38.33108
- ],
- [
- -0.50487,
- 38.28309
- ],
- [
- -0.48238,
- 38.19481
- ],
- [
- -0.42933,
- 38.16583
- ],
- [
- -0.45451,
- 38.14886
- ],
- [
- -0.584,
- 38.17219
- ],
- [
- -0.61367,
- 38.11986
- ],
- [
- -0.63705,
- 37.96122
- ],
- [
- -0.68111,
- 37.94562
- ],
- [
- -0.73237,
- 37.88107
- ],
- [
- -0.72158,
- 37.78306
- ],
- [
- -0.68831,
- 37.734
- ],
- [
- -0.66415,
- 37.62315
- ],
- [
- -0.71939,
- 37.58784
- ],
- [
- -0.91963,
- 37.53758
- ],
- [
- -1.11071,
- 37.51641
- ],
- [
- -1.33832,
- 37.52867
- ],
- [
- -1.44089,
- 37.39037
- ],
- [
- -1.6767,
- 37.27652
- ],
- [
- -1.85408,
- 36.91229
- ],
- [
- -2.06835,
- 36.69291
- ],
- [
- -2.21588,
- 36.66192
- ],
- [
- -2.37219,
- 36.78018
- ],
- [
- -2.68129,
- 36.65911
- ],
- [
- -2.92015,
- 36.66756
- ],
- [
- -3.09402,
- 36.71263
- ],
- [
- -3.46108,
- 36.65488
- ],
- [
- -3.72804,
- 36.69291
- ],
- [
- -4.37435,
- 36.66333
- ],
- [
- -4.65712,
- 36.44042
- ],
- [
- -4.9188,
- 36.45313
- ],
- [
- -5.16995,
- 36.35135
- ],
- [
- -5.28411,
- 36.19702
- ],
- [
- -5.26809,
- 36.12418
- ],
- [
- -5.35248,
- 36.12247
- ],
- [
- -5.35161,
- 36.04014
- ],
- [
- -5.43658,
- 36.03889
- ],
- [
- -5.43532,
- 36.00344
- ],
- [
- -5.68886,
- 36.00365
- ],
- [
- -5.68996,
- 36.04053
- ],
- [
- -5.85506,
- 36.03856
- ],
- [
- -5.85668,
- 36.12421
- ],
- [
- -5.93848,
- 36.12215
- ],
- [
- -5.94003,
- 36.16556
- ],
- [
- -5.99834,
- 36.1645
- ],
- [
- -6.03573,
- 36.1781
- ],
- [
- -6.07752,
- 36.22241
- ],
- [
- -6.15061,
- 36.28646
- ],
- [
- -6.23154,
- 36.37701
- ],
- [
- -6.33585,
- 36.53106
- ],
- [
- -6.32146,
- 36.58163
- ],
- [
- -6.40419,
- 36.6235
- ],
- [
- -6.47433,
- 36.74897
- ],
- [
- -6.41588,
- 36.79939
- ],
- [
- -6.49052,
- 36.91738
- ],
- [
- -6.62989,
- 37.0194
- ],
- [
- -6.87448,
- 37.10838
- ],
- [
- -7.04264,
- 37.18507
- ],
- [
- -7.26474,
- 37.18435
- ],
- [
- -7.37535,
- 37.15354
- ],
- [
- -7.40832,
- 37.16822
- ],
- [
- -7.42029,
- 37.21183
- ],
- [
- -7.42492,
- 37.23505
- ],
- [
- -7.43805,
- 37.2452
- ],
- [
- -7.44597,
- 37.33261
- ],
- [
- -7.4481,
- 37.39094
- ],
- [
- -7.46963,
- 37.40758
- ],
- [
- -7.4647,
- 37.45305
- ],
- [
- -7.50197,
- 37.51641
- ],
- [
- -7.51916,
- 37.52292
- ],
- [
- -7.52196,
- 37.57237
- ],
- [
- -7.45013,
- 37.66958
- ],
- [
- -7.4249,
- 37.75992
- ],
- [
- -7.31666,
- 37.83997
- ],
- [
- -7.26833,
- 37.98895
- ],
- [
- -7.15368,
- 38.01552
- ],
- [
- -7.11771,
- 38.05536
- ],
- [
- -7.0143,
- 38.02438
- ],
- [
- -6.99632,
- 38.10756
- ],
- [
- -6.96147,
- 38.20125
- ],
- [
- -7.08062,
- 38.15708
- ],
- [
- -7.34027,
- 38.44024
- ],
- [
- -7.26383,
- 38.73807
- ],
- [
- -7.04352,
- 38.87297
- ],
- [
- -7.06151,
- 38.90796
- ],
- [
- -6.96934,
- 39.01983
- ],
- [
- -7.00081,
- 39.08879
- ],
- [
- -7.15368,
- 39.09577
- ],
- [
- -7.15255,
- 39.16029
- ],
- [
- -7.24472,
- 39.19689
- ],
- [
- -7.25596,
- 39.28133
- ],
- [
- -7.33689,
- 39.35351
- ],
- [
- -7.3279,
- 39.45599
- ],
- [
- -7.51449,
- 39.58865
- ],
- [
- -7.55271,
- 39.67954
- ],
- [
- -7.05027,
- 39.67522
- ],
- [
- -6.99519,
- 39.81954
- ],
- [
- -6.92213,
- 39.87909
- ],
- [
- -6.88616,
- 40.02299
- ],
- [
- -7.04128,
- 40.13479
- ],
- [
- -7.01767,
- 40.26615
- ],
- [
- -6.8086,
- 40.34501
- ],
- [
- -6.86818,
- 40.44516
- ],
- [
- -6.85356,
- 40.60664
- ],
- [
- -6.83783,
- 40.87576
- ],
- [
- -6.9536,
- 41.03704
- ],
- [
- -6.80186,
- 41.03959
- ],
- [
- -6.76814,
- 41.13871
- ],
- [
- -6.64112,
- 41.26556
- ],
- [
- -6.56244,
- 41.26303
- ],
- [
- -6.21737,
- 41.5791
- ],
- [
- -6.31628,
- 41.64465
- ],
- [
- -6.51523,
- 41.64129
- ],
- [
- -6.58717,
- 41.68832
- ],
- [
- -6.54783,
- 41.85597
- ],
- [
- -6.62988,
- 41.91121
- ],
- [
- -7.13345,
- 41.94048
- ],
- [
- -7.16829,
- 41.87188
- ],
- [
- -7.42569,
- 41.78477
- ],
- [
- -7.95398,
- 41.84593
- ],
- [
- -8.13045,
- 41.78058
- ],
- [
- -8.25185,
- 41.90786
- ],
- [
- -8.12933,
- 42.03488
- ],
- [
- -8.24848,
- 42.1008
- ],
- [
- -8.36762,
- 42.05575
- ],
- [
- -8.60704,
- 42.03405
- ],
- [
- -8.89106,
- 41.82289
- ]
- ]
- ]
- },
- {
- "id": "South_Africa-CapeTown-Aerial-2013",
- "name": "City of Cape Town 2013 Aerial",
- "type": "tms",
- "template": "https://{switch:a,b,c}.coct.aerial.openstreetmap.org.za/layer/za_coct_aerial_2013/{zoom}/{x}/{y}.jpg",
- "endDate": "2015-01-01T00:00:00.000Z",
- "startDate": "2013-01-01T00:00:00.000Z",
- "scaleExtent": [
- 1,
- 21
- ],
- "polygon": [
- [
- [
- 18.44866,
- -33.89362
- ],
- [
- 18.44859,
- -33.90264
- ],
- [
- 18.4702,
- -33.90277
- ],
- [
- 18.48139,
- -33.84724
- ],
- [
- 18.44925,
- -33.80107
- ],
- [
- 18.42815,
- -33.73564
- ],
- [
- 18.43914,
- -33.71772
- ],
- [
- 18.40719,
- -33.65899
- ],
- [
- 18.33224,
- -33.57752
- ],
- [
- 18.33245,
- -33.55045
- ],
- [
- 18.354,
- -33.55059
- ],
- [
- 18.35425,
- -33.5236
- ],
- [
- 18.36524,
- -33.52366
- ],
- [
- 18.36503,
- -33.5148
- ],
- [
- 18.37601,
- -33.51477
- ],
- [
- 18.37605,
- -33.5058
- ],
- [
- 18.42966,
- -33.50594
- ],
- [
- 18.4297,
- -33.48785
- ],
- [
- 18.44049,
- -33.48789
- ],
- [
- 18.4406,
- -33.46988
- ],
- [
- 18.49437,
- -33.4701
- ],
- [
- 18.49433,
- -33.47916
- ],
- [
- 18.51583,
- -33.47917
- ],
- [
- 18.51574,
- -33.48819
- ],
- [
- 18.52647,
- -33.4883
- ],
- [
- 18.52632,
- -33.52435
- ],
- [
- 18.54793,
- -33.52443
- ],
- [
- 18.54795,
- -33.51539
- ],
- [
- 18.56937,
- -33.5155
- ],
- [
- 18.56937,
- -33.52448
- ],
- [
- 18.58012,
- -33.52453
- ],
- [
- 18.58007,
- -33.5426
- ],
- [
- 18.59078,
- -33.5426
- ],
- [
- 18.59074,
- -33.56064
- ],
- [
- 18.57995,
- -33.56053
- ],
- [
- 18.57988,
- -33.56962
- ],
- [
- 18.5907,
- -33.56962
- ],
- [
- 18.59065,
- -33.57868
- ],
- [
- 18.62301,
- -33.57873
- ],
- [
- 18.62292,
- -33.58773
- ],
- [
- 18.66597,
- -33.58789
- ],
- [
- 18.66593,
- -33.61493
- ],
- [
- 18.67672,
- -33.61497
- ],
- [
- 18.67658,
- -33.65103
- ],
- [
- 18.6873,
- -33.65102
- ],
- [
- 18.68734,
- -33.66004
- ],
- [
- 18.69807,
- -33.66009
- ],
- [
- 18.69807,
- -33.66907
- ],
- [
- 18.75204,
- -33.66925
- ],
- [
- 18.75208,
- -33.64219
- ],
- [
- 18.77364,
- -33.64225
- ],
- [
- 18.77371,
- -33.63319
- ],
- [
- 18.82746,
- -33.6333
- ],
- [
- 18.82752,
- -33.6603
- ],
- [
- 18.81667,
- -33.66029
- ],
- [
- 18.8166,
- -33.67832
- ],
- [
- 18.80581,
- -33.67831
- ],
- [
- 18.80581,
- -33.70539
- ],
- [
- 18.8274,
- -33.70544
- ],
- [
- 18.82733,
- -33.72347
- ],
- [
- 18.83812,
- -33.72343
- ],
- [
- 18.83804,
- -33.74139
- ],
- [
- 18.81652,
- -33.74137
- ],
- [
- 18.81637,
- -33.79551
- ],
- [
- 18.80559,
- -33.79551
- ],
- [
- 18.80551,
- -33.81357
- ],
- [
- 18.79476,
- -33.81355
- ],
- [
- 18.79472,
- -33.83154
- ],
- [
- 18.77311,
- -33.83152
- ],
- [
- 18.77313,
- -33.84052
- ],
- [
- 18.76236,
- -33.84052
- ],
- [
- 18.76227,
- -33.90359
- ],
- [
- 18.75146,
- -33.90352
- ],
- [
- 18.75108,
- -33.98478
- ],
- [
- 18.76191,
- -33.9848
- ],
- [
- 18.76178,
- -34.02988
- ],
- [
- 18.7726,
- -34.0299
- ],
- [
- 18.77258,
- -34.03891
- ],
- [
- 18.79403,
- -34.03894
- ],
- [
- 18.79388,
- -34.0407
- ],
- [
- 18.79845,
- -34.04119
- ],
- [
- 18.80324,
- -34.04118
- ],
- [
- 18.80341,
- -34.03892
- ],
- [
- 18.81594,
- -34.03897
- ],
- [
- 18.81634,
- -34.02993
- ],
- [
- 18.83798,
- -34.03165
- ],
- [
- 18.838,
- -34.03
- ],
- [
- 18.84842,
- -34.03001
- ],
- [
- 18.84847,
- -34.02185
- ],
- [
- 18.85993,
- -34.02347
- ],
- [
- 18.85986,
- -34.02101
- ],
- [
- 18.86827,
- -34.02208
- ],
- [
- 18.86819,
- -34.02117
- ],
- [
- 18.88546,
- -34.02343
- ],
- [
- 18.88518,
- -34.02132
- ],
- [
- 18.90252,
- -34.02103
- ],
- [
- 18.90258,
- -34.012
- ],
- [
- 18.91342,
- -34.012
- ],
- [
- 18.91348,
- -33.99396
- ],
- [
- 18.94588,
- -33.99403
- ],
- [
- 18.94586,
- -34.0031
- ],
- [
- 18.96743,
- -34.003
- ],
- [
- 18.96747,
- -34.01208
- ],
- [
- 18.97822,
- -34.01208
- ],
- [
- 18.97833,
- -34.02114
- ],
- [
- 18.98914,
- -34.02114
- ],
- [
- 18.98916,
- -34.03913
- ],
- [
- 19.00002,
- -34.03913
- ],
- [
- 19.00002,
- -34.05718
- ],
- [
- 19.01084,
- -34.05725
- ],
- [
- 19.01079,
- -34.08414
- ],
- [
- 19,
- -34.08413
- ],
- [
- 19.00002,
- -34.0932
- ],
- [
- 18.98915,
- -34.09317
- ],
- [
- 18.98918,
- -34.1022
- ],
- [
- 18.97832,
- -34.10218
- ],
- [
- 18.97832,
- -34.11123
- ],
- [
- 18.9675,
- -34.11121
- ],
- [
- 18.96749,
- -34.12925
- ],
- [
- 18.9566,
- -34.12924
- ],
- [
- 18.95656,
- -34.13824
- ],
- [
- 18.96742,
- -34.13831
- ],
- [
- 18.96742,
- -34.14732
- ],
- [
- 18.98918,
- -34.1473
- ],
- [
- 18.98918,
- -34.1653
- ],
- [
- 18.97827,
- -34.16529
- ],
- [
- 18.97832,
- -34.17429
- ],
- [
- 18.96742,
- -34.17427
- ],
- [
- 18.96746,
- -34.1833
- ],
- [
- 18.95656,
- -34.18332
- ],
- [
- 18.95656,
- -34.19236
- ],
- [
- 18.94574,
- -34.19232
- ],
- [
- 18.9457,
- -34.20132
- ],
- [
- 18.93487,
- -34.20137
- ],
- [
- 18.93489,
- -34.21933
- ],
- [
- 18.90236,
- -34.21935
- ],
- [
- 18.90176,
- -34.23626
- ],
- [
- 18.88784,
- -34.23735
- ],
- [
- 18.88942,
- -34.25541
- ],
- [
- 18.88059,
- -34.25534
- ],
- [
- 18.87927,
- -34.26443
- ],
- [
- 18.86969,
- -34.26441
- ],
- [
- 18.86971,
- -34.27344
- ],
- [
- 18.83714,
- -34.27342
- ],
- [
- 18.83712,
- -34.26438
- ],
- [
- 18.84802,
- -34.2644
- ],
- [
- 18.84803,
- -34.23739
- ],
- [
- 18.81549,
- -34.21028
- ],
- [
- 18.81565,
- -34.17413
- ],
- [
- 18.85488,
- -34.15627
- ],
- [
- 18.76176,
- -34.08405
- ],
- [
- 18.65337,
- -34.07748
- ],
- [
- 18.47974,
- -34.11012
- ],
- [
- 18.44637,
- -34.13423
- ],
- [
- 18.44445,
- -34.16409
- ],
- [
- 18.436,
- -34.16405
- ],
- [
- 18.43597,
- -34.18202
- ],
- [
- 18.44681,
- -34.18211
- ],
- [
- 18.44673,
- -34.19111
- ],
- [
- 18.46593,
- -34.19121
- ],
- [
- 18.48662,
- -34.24539
- ],
- [
- 18.47889,
- -34.25437
- ],
- [
- 18.486,
- -34.25437
- ],
- [
- 18.46771,
- -34.29941
- ],
- [
- 18.48922,
- -34.34458
- ],
- [
- 18.50011,
- -34.34458
- ],
- [
- 18.49992,
- -34.36262
- ],
- [
- 18.46743,
- -34.36251
- ],
- [
- 18.46737,
- -34.35349
- ],
- [
- 18.3916,
- -34.31707
- ],
- [
- 18.39177,
- -34.29002
- ],
- [
- 18.37016,
- -34.28087
- ],
- [
- 18.37068,
- -34.21789
- ],
- [
- 18.34923,
- -34.18162
- ],
- [
- 18.32747,
- -34.18149
- ],
- [
- 18.32767,
- -34.16346
- ],
- [
- 18.31187,
- -34.15438
- ],
- [
- 18.3114,
- -34.14353
- ],
- [
- 18.32367,
- -34.13469
- ],
- [
- 18.34993,
- -34.10421
- ],
- [
- 18.33932,
- -34.08828
- ],
- [
- 18.36125,
- -34.05972
- ],
- [
- 18.35505,
- -34.05538
- ],
- [
- 18.34275,
- -34.06433
- ],
- [
- 18.32,
- -34.06443
- ],
- [
- 18.29607,
- -34.04513
- ],
- [
- 18.30682,
- -34.02526
- ],
- [
- 18.32877,
- -34.0192
- ],
- [
- 18.32892,
- -34.00125
- ],
- [
- 18.33974,
- -34.00127
- ],
- [
- 18.3398,
- -33.98663
- ],
- [
- 18.36287,
- -33.97351
- ],
- [
- 18.36381,
- -33.92925
- ],
- [
- 18.37262,
- -33.92927
- ],
- [
- 18.37284,
- -33.91776
- ],
- [
- 18.39773,
- -33.89335
- ],
- [
- 18.44866,
- -33.89362
- ]
- ]
- ],
- "terms_url": "https://www.capetown.gov.za",
- "terms_text": "City of Cape Town Aerial - OPENSTREETMAP USE ONLY",
- "description": "OpenStreetMap use only. City of Cape Town Aerial ortho-photography of the municipal area. 12cm ground sample distance"
- },
- {
- "id": "South_Africa-CapeTown-Aerial",
- "name": "City of Cape Town 2015 Aerial",
- "type": "tms",
- "template": "https://{switch:a,b,c}.coct.aerial.openstreetmap.org.za/layer/za_coct_aerial_2015/{zoom}/{x}/{y}.jpg",
- "endDate": "2016-01-01T00:00:00.000Z",
- "startDate": "2015-01-01T00:00:00.000Z",
- "scaleExtent": [
- 1,
- 21
- ],
- "polygon": [
- [
- [
- 18.44866,
- -33.89362
- ],
- [
- 18.44859,
- -33.90264
- ],
- [
- 18.4702,
- -33.90277
- ],
- [
- 18.48139,
- -33.84724
- ],
- [
- 18.44925,
- -33.80107
- ],
- [
- 18.42815,
- -33.73564
- ],
- [
- 18.43914,
- -33.71772
- ],
- [
- 18.40719,
- -33.65899
- ],
- [
- 18.33224,
- -33.57752
- ],
- [
- 18.33245,
- -33.55045
- ],
- [
- 18.354,
- -33.55059
- ],
- [
- 18.35425,
- -33.5236
- ],
- [
- 18.36524,
- -33.52366
- ],
- [
- 18.36503,
- -33.5148
- ],
- [
- 18.37601,
- -33.51477
- ],
- [
- 18.37605,
- -33.5058
- ],
- [
- 18.42966,
- -33.50594
- ],
- [
- 18.4297,
- -33.48785
- ],
- [
- 18.44049,
- -33.48789
- ],
- [
- 18.4406,
- -33.46988
- ],
- [
- 18.49437,
- -33.4701
- ],
- [
- 18.49433,
- -33.47916
- ],
- [
- 18.51583,
- -33.47917
- ],
- [
- 18.51574,
- -33.48819
- ],
- [
- 18.52647,
- -33.4883
- ],
- [
- 18.52632,
- -33.52435
- ],
- [
- 18.54793,
- -33.52443
- ],
- [
- 18.54795,
- -33.51539
- ],
- [
- 18.56937,
- -33.5155
- ],
- [
- 18.56937,
- -33.52448
- ],
- [
- 18.58012,
- -33.52453
- ],
- [
- 18.58007,
- -33.5426
- ],
- [
- 18.59078,
- -33.5426
- ],
- [
- 18.59074,
- -33.56064
- ],
- [
- 18.57995,
- -33.56053
- ],
- [
- 18.57988,
- -33.56962
- ],
- [
- 18.5907,
- -33.56962
- ],
- [
- 18.59065,
- -33.57868
- ],
- [
- 18.62301,
- -33.57873
- ],
- [
- 18.62292,
- -33.58773
- ],
- [
- 18.66597,
- -33.58789
- ],
- [
- 18.66593,
- -33.61493
- ],
- [
- 18.67672,
- -33.61497
- ],
- [
- 18.67658,
- -33.65103
- ],
- [
- 18.6873,
- -33.65102
- ],
- [
- 18.68734,
- -33.66004
- ],
- [
- 18.69807,
- -33.66009
- ],
- [
- 18.69807,
- -33.66907
- ],
- [
- 18.75204,
- -33.66925
- ],
- [
- 18.75208,
- -33.64219
- ],
- [
- 18.77364,
- -33.64225
- ],
- [
- 18.77371,
- -33.63319
- ],
- [
- 18.82746,
- -33.6333
- ],
- [
- 18.82752,
- -33.6603
- ],
- [
- 18.81667,
- -33.66029
- ],
- [
- 18.8166,
- -33.67832
- ],
- [
- 18.80581,
- -33.67831
- ],
- [
- 18.80581,
- -33.70539
- ],
- [
- 18.8274,
- -33.70544
- ],
- [
- 18.82733,
- -33.72347
- ],
- [
- 18.83812,
- -33.72343
- ],
- [
- 18.83804,
- -33.74139
- ],
- [
- 18.81652,
- -33.74137
- ],
- [
- 18.81637,
- -33.79551
- ],
- [
- 18.80559,
- -33.79551
- ],
- [
- 18.80551,
- -33.81357
- ],
- [
- 18.79476,
- -33.81355
- ],
- [
- 18.79472,
- -33.83154
- ],
- [
- 18.77311,
- -33.83152
- ],
- [
- 18.77313,
- -33.84052
- ],
- [
- 18.76236,
- -33.84052
- ],
- [
- 18.76227,
- -33.90359
- ],
- [
- 18.75146,
- -33.90352
- ],
- [
- 18.75108,
- -33.98478
- ],
- [
- 18.76191,
- -33.9848
- ],
- [
- 18.76178,
- -34.02988
- ],
- [
- 18.7726,
- -34.0299
- ],
- [
- 18.77258,
- -34.03891
- ],
- [
- 18.79403,
- -34.03894
- ],
- [
- 18.79388,
- -34.0407
- ],
- [
- 18.79845,
- -34.04119
- ],
- [
- 18.80324,
- -34.04118
- ],
- [
- 18.80341,
- -34.03892
- ],
- [
- 18.81594,
- -34.03897
- ],
- [
- 18.81634,
- -34.02993
- ],
- [
- 18.83798,
- -34.03165
- ],
- [
- 18.838,
- -34.03
- ],
- [
- 18.84842,
- -34.03001
- ],
- [
- 18.84847,
- -34.02185
- ],
- [
- 18.85993,
- -34.02347
- ],
- [
- 18.85986,
- -34.02101
- ],
- [
- 18.86827,
- -34.02208
- ],
- [
- 18.86819,
- -34.02117
- ],
- [
- 18.88546,
- -34.02343
- ],
- [
- 18.88518,
- -34.02132
- ],
- [
- 18.90252,
- -34.02103
- ],
- [
- 18.90258,
- -34.012
- ],
- [
- 18.91342,
- -34.012
- ],
- [
- 18.91348,
- -33.99396
- ],
- [
- 18.94588,
- -33.99403
- ],
- [
- 18.94586,
- -34.0031
- ],
- [
- 18.96743,
- -34.003
- ],
- [
- 18.96747,
- -34.01208
- ],
- [
- 18.97822,
- -34.01208
- ],
- [
- 18.97833,
- -34.02114
- ],
- [
- 18.98914,
- -34.02114
- ],
- [
- 18.98916,
- -34.03913
- ],
- [
- 19.00002,
- -34.03913
- ],
- [
- 19.00002,
- -34.05718
- ],
- [
- 19.01084,
- -34.05725
- ],
- [
- 19.01079,
- -34.08414
- ],
- [
- 19,
- -34.08413
- ],
- [
- 19.00002,
- -34.0932
- ],
- [
- 18.98915,
- -34.09317
- ],
- [
- 18.98918,
- -34.1022
- ],
- [
- 18.97832,
- -34.10218
- ],
- [
- 18.97832,
- -34.11123
- ],
- [
- 18.9675,
- -34.11121
- ],
- [
- 18.96749,
- -34.12925
- ],
- [
- 18.9566,
- -34.12924
- ],
- [
- 18.95656,
- -34.13824
- ],
- [
- 18.96742,
- -34.13831
- ],
- [
- 18.96742,
- -34.14732
- ],
- [
- 18.98918,
- -34.1473
- ],
- [
- 18.98918,
- -34.1653
- ],
- [
- 18.97827,
- -34.16529
- ],
- [
- 18.97832,
- -34.17429
- ],
- [
- 18.96742,
- -34.17427
- ],
- [
- 18.96746,
- -34.1833
- ],
- [
- 18.95656,
- -34.18332
- ],
- [
- 18.95656,
- -34.19236
- ],
- [
- 18.94574,
- -34.19232
- ],
- [
- 18.9457,
- -34.20132
- ],
- [
- 18.93487,
- -34.20137
- ],
- [
- 18.93489,
- -34.21933
- ],
- [
- 18.90236,
- -34.21935
- ],
- [
- 18.90176,
- -34.23626
- ],
- [
- 18.88784,
- -34.23735
- ],
- [
- 18.88942,
- -34.25541
- ],
- [
- 18.88059,
- -34.25534
- ],
- [
- 18.87927,
- -34.26443
- ],
- [
- 18.86969,
- -34.26441
- ],
- [
- 18.86971,
- -34.27344
- ],
- [
- 18.83714,
- -34.27342
- ],
- [
- 18.83712,
- -34.26438
- ],
- [
- 18.84802,
- -34.2644
- ],
- [
- 18.84803,
- -34.23739
- ],
- [
- 18.81549,
- -34.21028
- ],
- [
- 18.81565,
- -34.17413
- ],
- [
- 18.85488,
- -34.15627
- ],
- [
- 18.76176,
- -34.08405
- ],
- [
- 18.65337,
- -34.07748
- ],
- [
- 18.47974,
- -34.11012
- ],
- [
- 18.44637,
- -34.13423
- ],
- [
- 18.44445,
- -34.16409
- ],
- [
- 18.436,
- -34.16405
- ],
- [
- 18.43597,
- -34.18202
- ],
- [
- 18.44681,
- -34.18211
- ],
- [
- 18.44673,
- -34.19111
- ],
- [
- 18.46593,
- -34.19121
- ],
- [
- 18.48662,
- -34.24539
- ],
- [
- 18.47889,
- -34.25437
- ],
- [
- 18.486,
- -34.25437
- ],
- [
- 18.46771,
- -34.29941
- ],
- [
- 18.48922,
- -34.34458
- ],
- [
- 18.50011,
- -34.34458
- ],
- [
- 18.49992,
- -34.36262
- ],
- [
- 18.46743,
- -34.36251
- ],
- [
- 18.46737,
- -34.35349
- ],
- [
- 18.3916,
- -34.31707
- ],
- [
- 18.39177,
- -34.29002
- ],
- [
- 18.37016,
- -34.28087
- ],
- [
- 18.37068,
- -34.21789
- ],
- [
- 18.34923,
- -34.18162
- ],
- [
- 18.32747,
- -34.18149
- ],
- [
- 18.32767,
- -34.16346
- ],
- [
- 18.31187,
- -34.15438
- ],
- [
- 18.3114,
- -34.14353
- ],
- [
- 18.32367,
- -34.13469
- ],
- [
- 18.34993,
- -34.10421
- ],
- [
- 18.33932,
- -34.08828
- ],
- [
- 18.36125,
- -34.05972
- ],
- [
- 18.35505,
- -34.05538
- ],
- [
- 18.34275,
- -34.06433
- ],
- [
- 18.32,
- -34.06443
- ],
- [
- 18.29607,
- -34.04513
- ],
- [
- 18.30682,
- -34.02526
- ],
- [
- 18.32877,
- -34.0192
- ],
- [
- 18.32892,
- -34.00125
- ],
- [
- 18.33974,
- -34.00127
- ],
- [
- 18.3398,
- -33.98663
- ],
- [
- 18.36287,
- -33.97351
- ],
- [
- 18.36381,
- -33.92925
- ],
- [
- 18.37262,
- -33.92927
- ],
- [
- 18.37284,
- -33.91776
- ],
- [
- 18.39773,
- -33.89335
- ],
- [
- 18.44866,
- -33.89362
- ]
- ]
- ],
- "terms_url": "https://www.capetown.gov.za",
- "terms_text": "City of Cape Town Aerial - OPENSTREETMAP USE ONLY",
- "best": true,
- "description": "OpenStreetMap use only. City of Cape Town Aerial ortho-photography of the municipal area. 8cm ground sample distance"
- },
- {
- "id": "Czech_CUZK-KM",
- "name": "Czech CUZK:KM",
- "type": "wms",
- "template": "https://wms.cuzk.cz/wms.asp?service=WMS&VERSION=1.1.1&REQUEST=GetMap&SRS={proj}&LAYERS=parcelni_cisla_i,obrazy_parcel_i,RST_KMD_I,hranice_parcel_i,DEF_BUDOVY,RST_KN_I,dalsi_p_mapy_i,prehledka_kat_prac,prehledka_kat_uz,prehledka_kraju-linie&FORMAT=image/png&transparent=TRUE&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- 15.00637,
- 49.01774
- ],
- [
- 15.15599,
- 49.00138
- ],
- [
- 15.1909,
- 48.94246
- ],
- [
- 15.31059,
- 48.98829
- ],
- [
- 15.40535,
- 48.9752
- ],
- [
- 15.54,
- 48.91624
- ],
- [
- 15.71456,
- 48.86706
- ],
- [
- 15.83425,
- 48.88018
- ],
- [
- 15.9689,
- 48.81782
- ],
- [
- 16.0886,
- 48.74553
- ],
- [
- 16.39781,
- 48.74553
- ],
- [
- 16.48758,
- 48.81454
- ],
- [
- 16.6721,
- 48.7784
- ],
- [
- 16.68208,
- 48.73566
- ],
- [
- 16.90152,
- 48.71263
- ],
- [
- 16.9464,
- 48.6237
- ],
- [
- 17.11597,
- 48.83752
- ],
- [
- 17.21072,
- 48.88018
- ],
- [
- 17.40523,
- 48.81782
- ],
- [
- 17.48004,
- 48.85393
- ],
- [
- 17.52991,
- 48.81782
- ],
- [
- 17.70446,
- 48.86706
- ],
- [
- 17.81418,
- 48.9359
- ],
- [
- 17.884,
- 48.9359
- ],
- [
- 17.94385,
- 49.02101
- ],
- [
- 18.06354,
- 49.03409
- ],
- [
- 18.1184,
- 49.09944
- ],
- [
- 18.1982,
- 49.30473
- ],
- [
- 18.38771,
- 49.33399
- ],
- [
- 18.57723,
- 49.50917
- ],
- [
- 18.75677,
- 49.49946
- ],
- [
- 18.84654,
- 49.52536
- ],
- [
- 18.87646,
- 49.57066
- ],
- [
- 18.79666,
- 49.69341
- ],
- [
- 18.64206,
- 49.70954
- ],
- [
- 18.5872,
- 49.83515
- ],
- [
- 18.61214,
- 49.88338
- ],
- [
- 18.56226,
- 49.93477
- ],
- [
- 18.51239,
- 49.90587
- ],
- [
- 18.36277,
- 49.95403
- ],
- [
- 18.32786,
- 49.92193
- ],
- [
- 18.26303,
- 49.97328
- ],
- [
- 18.1184,
- 50.00534
- ],
- [
- 18.06354,
- 50.07581
- ],
- [
- 17.91392,
- 49.97969
- ],
- [
- 17.77927,
- 50.03098
- ],
- [
- 17.71444,
- 50.12379
- ],
- [
- 17.60472,
- 50.16534
- ],
- [
- 17.75932,
- 50.21962
- ],
- [
- 17.73438,
- 50.34391
- ],
- [
- 17.63963,
- 50.28021
- ],
- [
- 17.38029,
- 50.28021
- ],
- [
- 17.35037,
- 50.34391
- ],
- [
- 17.28055,
- 50.33754
- ],
- [
- 17.18579,
- 50.40752
- ],
- [
- 16.90152,
- 50.46152
- ],
- [
- 16.86661,
- 50.41388
- ],
- [
- 16.96635,
- 50.31844
- ],
- [
- 17.03617,
- 50.23238
- ],
- [
- 16.83668,
- 50.21962
- ],
- [
- 16.712,
- 50.1046
- ],
- [
- 16.58233,
- 50.15895
- ],
- [
- 16.56238,
- 50.23876
- ],
- [
- 16.43272,
- 50.33754
- ],
- [
- 16.35292,
- 50.39163
- ],
- [
- 16.27811,
- 50.39163
- ],
- [
- 16.20829,
- 50.44565
- ],
- [
- 16.39781,
- 50.53449
- ],
- [
- 16.44768,
- 50.59785
- ],
- [
- 16.35292,
- 50.6706
- ],
- [
- 16.23821,
- 50.67692
- ],
- [
- 16.21827,
- 50.63266
- ],
- [
- 16.1285,
- 50.68324
- ],
- [
- 16.0487,
- 50.60734
- ],
- [
- 15.98885,
- 50.7022
- ],
- [
- 15.87415,
- 50.68324
- ],
- [
- 15.82926,
- 50.76533
- ],
- [
- 15.72952,
- 50.74324
- ],
- [
- 15.45023,
- 50.81577
- ],
- [
- 15.39039,
- 50.77479
- ],
- [
- 15.38041,
- 50.85987
- ],
- [
- 15.29563,
- 50.88504
- ],
- [
- 15.29563,
- 50.98876
- ],
- [
- 15.17095,
- 51.02014
- ],
- [
- 14.99141,
- 51.00131
- ],
- [
- 15.00637,
- 50.88819
- ],
- [
- 14.84179,
- 50.8756
- ],
- [
- 14.7969,
- 50.82522
- ],
- [
- 14.63233,
- 50.85672
- ],
- [
- 14.66225,
- 50.93536
- ],
- [
- 14.57248,
- 50.92278
- ],
- [
- 14.61238,
- 50.98562
- ],
- [
- 14.49767,
- 51.04837
- ],
- [
- 14.41788,
- 51.02328
- ],
- [
- 14.30816,
- 51.06717
- ],
- [
- 14.2533,
- 51.00445
- ],
- [
- 14.40291,
- 50.93221
- ],
- [
- 14.37299,
- 50.89763
- ],
- [
- 14.24332,
- 50.90706
- ],
- [
- 14.20841,
- 50.84412
- ],
- [
- 14.03386,
- 50.81262
- ],
- [
- 13.979,
- 50.82522
- ],
- [
- 13.90419,
- 50.79686
- ],
- [
- 13.87427,
- 50.74009
- ],
- [
- 13.53514,
- 50.7243
- ],
- [
- 13.53015,
- 50.65796
- ],
- [
- 13.4703,
- 50.61367
- ],
- [
- 13.39051,
- 50.66428
- ],
- [
- 13.32567,
- 50.58835
- ],
- [
- 13.25086,
- 50.61051
- ],
- [
- 13.196,
- 50.50595
- ],
- [
- 13.05137,
- 50.52181
- ],
- [
- 12.96659,
- 50.4107
- ],
- [
- 12.82695,
- 50.47105
- ],
- [
- 12.70227,
- 50.41388
- ],
- [
- 12.50777,
- 50.40116
- ],
- [
- 12.34319,
- 50.25471
- ],
- [
- 12.32324,
- 50.18451
- ],
- [
- 12.24843,
- 50.27384
- ],
- [
- 12.17362,
- 50.33118
- ],
- [
- 12.09881,
- 50.33436
- ],
- [
- 12.11876,
- 50.25152
- ],
- [
- 12.22349,
- 50.16534
- ],
- [
- 12.20354,
- 50.12379
- ],
- [
- 12.50278,
- 49.97328
- ],
- [
- 12.47784,
- 49.93798
- ],
- [
- 12.54766,
- 49.91551
- ],
- [
- 12.46787,
- 49.80298
- ],
- [
- 12.40802,
- 49.76111
- ],
- [
- 12.48283,
- 49.68696
- ],
- [
- 12.5327,
- 49.68696
- ],
- [
- 12.51774,
- 49.62885
- ],
- [
- 12.60751,
- 49.54155
- ],
- [
- 12.67234,
- 49.43788
- ],
- [
- 12.81199,
- 49.34699
- ],
- [
- 12.94664,
- 49.34374
- ],
- [
- 13.23091,
- 49.12882
- ],
- [
- 13.32567,
- 49.10597
- ],
- [
- 13.43539,
- 49.0439
- ],
- [
- 13.41544,
- 48.99484
- ],
- [
- 13.50022,
- 48.94901
- ],
- [
- 13.56506,
- 48.98829
- ],
- [
- 13.68475,
- 48.88346
- ],
- [
- 13.7446,
- 48.90313
- ],
- [
- 13.82439,
- 48.77511
- ],
- [
- 13.8992,
- 48.77511
- ],
- [
- 14.05879,
- 48.67642
- ],
- [
- 14.04383,
- 48.63029
- ],
- [
- 14.14358,
- 48.59072
- ],
- [
- 14.37299,
- 48.56103
- ],
- [
- 14.48271,
- 48.65007
- ],
- [
- 14.57747,
- 48.60721
- ],
- [
- 14.62734,
- 48.63359
- ],
- [
- 14.70713,
- 48.58083
- ],
- [
- 14.74703,
- 48.70276
- ],
- [
- 14.81187,
- 48.73895
- ],
- [
- 14.81685,
- 48.79483
- ],
- [
- 14.98642,
- 48.76525
- ],
- [
- 15.00637,
- 49.01774
- ]
- ]
- ],
- "overlay": true
- },
- {
- "id": "Czech_CUZK-KM-tms",
- "name": "Czech CUZK:KM tiles proxy",
- "type": "tms",
- "template": "https://osm-{switch:a,b,c}.zby.cz/tiles_cuzk.php/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 13,
- 18
- ],
- "polygon": [
- [
- [
- 15.00637,
- 49.01774
- ],
- [
- 15.15599,
- 49.00138
- ],
- [
- 15.1909,
- 48.94246
- ],
- [
- 15.31059,
- 48.98829
- ],
- [
- 15.40535,
- 48.9752
- ],
- [
- 15.54,
- 48.91624
- ],
- [
- 15.71456,
- 48.86706
- ],
- [
- 15.83425,
- 48.88018
- ],
- [
- 15.9689,
- 48.81782
- ],
- [
- 16.0886,
- 48.74553
- ],
- [
- 16.39781,
- 48.74553
- ],
- [
- 16.48758,
- 48.81454
- ],
- [
- 16.6721,
- 48.7784
- ],
- [
- 16.68208,
- 48.73566
- ],
- [
- 16.90152,
- 48.71263
- ],
- [
- 16.9464,
- 48.6237
- ],
- [
- 17.11597,
- 48.83752
- ],
- [
- 17.21072,
- 48.88018
- ],
- [
- 17.40523,
- 48.81782
- ],
- [
- 17.48004,
- 48.85393
- ],
- [
- 17.52991,
- 48.81782
- ],
- [
- 17.70446,
- 48.86706
- ],
- [
- 17.81418,
- 48.9359
- ],
- [
- 17.884,
- 48.9359
- ],
- [
- 17.94385,
- 49.02101
- ],
- [
- 18.06354,
- 49.03409
- ],
- [
- 18.1184,
- 49.09944
- ],
- [
- 18.1982,
- 49.30473
- ],
- [
- 18.38771,
- 49.33399
- ],
- [
- 18.57723,
- 49.50917
- ],
- [
- 18.75677,
- 49.49946
- ],
- [
- 18.84654,
- 49.52536
- ],
- [
- 18.87646,
- 49.57066
- ],
- [
- 18.79666,
- 49.69341
- ],
- [
- 18.64206,
- 49.70954
- ],
- [
- 18.5872,
- 49.83515
- ],
- [
- 18.61214,
- 49.88338
- ],
- [
- 18.56226,
- 49.93477
- ],
- [
- 18.51239,
- 49.90587
- ],
- [
- 18.36277,
- 49.95403
- ],
- [
- 18.32786,
- 49.92193
- ],
- [
- 18.26303,
- 49.97328
- ],
- [
- 18.1184,
- 50.00534
- ],
- [
- 18.06354,
- 50.07581
- ],
- [
- 17.91392,
- 49.97969
- ],
- [
- 17.77927,
- 50.03098
- ],
- [
- 17.71444,
- 50.12379
- ],
- [
- 17.60472,
- 50.16534
- ],
- [
- 17.75932,
- 50.21962
- ],
- [
- 17.73438,
- 50.34391
- ],
- [
- 17.63963,
- 50.28021
- ],
- [
- 17.38029,
- 50.28021
- ],
- [
- 17.35037,
- 50.34391
- ],
- [
- 17.28055,
- 50.33754
- ],
- [
- 17.18579,
- 50.40752
- ],
- [
- 16.90152,
- 50.46152
- ],
- [
- 16.86661,
- 50.41388
- ],
- [
- 16.96635,
- 50.31844
- ],
- [
- 17.03617,
- 50.23238
- ],
- [
- 16.83668,
- 50.21962
- ],
- [
- 16.712,
- 50.1046
- ],
- [
- 16.58233,
- 50.15895
- ],
- [
- 16.56238,
- 50.23876
- ],
- [
- 16.43272,
- 50.33754
- ],
- [
- 16.35292,
- 50.39163
- ],
- [
- 16.27811,
- 50.39163
- ],
- [
- 16.20829,
- 50.44565
- ],
- [
- 16.39781,
- 50.53449
- ],
- [
- 16.44768,
- 50.59785
- ],
- [
- 16.35292,
- 50.6706
- ],
- [
- 16.23821,
- 50.67692
- ],
- [
- 16.21827,
- 50.63266
- ],
- [
- 16.1285,
- 50.68324
- ],
- [
- 16.0487,
- 50.60734
- ],
- [
- 15.98885,
- 50.7022
- ],
- [
- 15.87415,
- 50.68324
- ],
- [
- 15.82926,
- 50.76533
- ],
- [
- 15.72952,
- 50.74324
- ],
- [
- 15.45023,
- 50.81577
- ],
- [
- 15.39039,
- 50.77479
- ],
- [
- 15.38041,
- 50.85987
- ],
- [
- 15.29563,
- 50.88504
- ],
- [
- 15.29563,
- 50.98876
- ],
- [
- 15.17095,
- 51.02014
- ],
- [
- 14.99141,
- 51.00131
- ],
- [
- 15.00637,
- 50.88819
- ],
- [
- 14.84179,
- 50.8756
- ],
- [
- 14.7969,
- 50.82522
- ],
- [
- 14.63233,
- 50.85672
- ],
- [
- 14.66225,
- 50.93536
- ],
- [
- 14.57248,
- 50.92278
- ],
- [
- 14.61238,
- 50.98562
- ],
- [
- 14.49767,
- 51.04837
- ],
- [
- 14.41788,
- 51.02328
- ],
- [
- 14.30816,
- 51.06717
- ],
- [
- 14.2533,
- 51.00445
- ],
- [
- 14.40291,
- 50.93221
- ],
- [
- 14.37299,
- 50.89763
- ],
- [
- 14.24332,
- 50.90706
- ],
- [
- 14.20841,
- 50.84412
- ],
- [
- 14.03386,
- 50.81262
- ],
- [
- 13.979,
- 50.82522
- ],
- [
- 13.90419,
- 50.79686
- ],
- [
- 13.87427,
- 50.74009
- ],
- [
- 13.53514,
- 50.7243
- ],
- [
- 13.53015,
- 50.65796
- ],
- [
- 13.4703,
- 50.61367
- ],
- [
- 13.39051,
- 50.66428
- ],
- [
- 13.32567,
- 50.58835
- ],
- [
- 13.25086,
- 50.61051
- ],
- [
- 13.196,
- 50.50595
- ],
- [
- 13.05137,
- 50.52181
- ],
- [
- 12.96659,
- 50.4107
- ],
- [
- 12.82695,
- 50.47105
- ],
- [
- 12.70227,
- 50.41388
- ],
- [
- 12.50777,
- 50.40116
- ],
- [
- 12.34319,
- 50.25471
- ],
- [
- 12.32324,
- 50.18451
- ],
- [
- 12.24843,
- 50.27384
- ],
- [
- 12.17362,
- 50.33118
- ],
- [
- 12.09881,
- 50.33436
- ],
- [
- 12.11876,
- 50.25152
- ],
- [
- 12.22349,
- 50.16534
- ],
- [
- 12.20354,
- 50.12379
- ],
- [
- 12.50278,
- 49.97328
- ],
- [
- 12.47784,
- 49.93798
- ],
- [
- 12.54766,
- 49.91551
- ],
- [
- 12.46787,
- 49.80298
- ],
- [
- 12.40802,
- 49.76111
- ],
- [
- 12.48283,
- 49.68696
- ],
- [
- 12.5327,
- 49.68696
- ],
- [
- 12.51774,
- 49.62885
- ],
- [
- 12.60751,
- 49.54155
- ],
- [
- 12.67234,
- 49.43788
- ],
- [
- 12.81199,
- 49.34699
- ],
- [
- 12.94664,
- 49.34374
- ],
- [
- 13.23091,
- 49.12882
- ],
- [
- 13.32567,
- 49.10597
- ],
- [
- 13.43539,
- 49.0439
- ],
- [
- 13.41544,
- 48.99484
- ],
- [
- 13.50022,
- 48.94901
- ],
- [
- 13.56506,
- 48.98829
- ],
- [
- 13.68475,
- 48.88346
- ],
- [
- 13.7446,
- 48.90313
- ],
- [
- 13.82439,
- 48.77511
- ],
- [
- 13.8992,
- 48.77511
- ],
- [
- 14.05879,
- 48.67642
- ],
- [
- 14.04383,
- 48.63029
- ],
- [
- 14.14358,
- 48.59072
- ],
- [
- 14.37299,
- 48.56103
- ],
- [
- 14.48271,
- 48.65007
- ],
- [
- 14.57747,
- 48.60721
- ],
- [
- 14.62734,
- 48.63359
- ],
- [
- 14.70713,
- 48.58083
- ],
- [
- 14.74703,
- 48.70276
- ],
- [
- 14.81187,
- 48.73895
- ],
- [
- 14.81685,
- 48.79483
- ],
- [
- 14.98642,
- 48.76525
- ],
- [
- 15.00637,
- 49.01774
- ]
- ]
- ],
- "overlay": true
- },
- {
- "id": "Czech_RUIAN-budovy",
- "name": "Czech RUIAN budovy",
- "type": "tms",
- "template": "https://tile.poloha.net/budovy/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 12,
- 20
- ],
- "polygon": [
- [
- [
- 15.00637,
- 49.01774
- ],
- [
- 15.15599,
- 49.00138
- ],
- [
- 15.1909,
- 48.94246
- ],
- [
- 15.31059,
- 48.98829
- ],
- [
- 15.40535,
- 48.9752
- ],
- [
- 15.54,
- 48.91624
- ],
- [
- 15.71456,
- 48.86706
- ],
- [
- 15.83425,
- 48.88018
- ],
- [
- 15.9689,
- 48.81782
- ],
- [
- 16.0886,
- 48.74553
- ],
- [
- 16.39781,
- 48.74553
- ],
- [
- 16.48758,
- 48.81454
- ],
- [
- 16.6721,
- 48.7784
- ],
- [
- 16.68208,
- 48.73566
- ],
- [
- 16.90152,
- 48.71263
- ],
- [
- 16.9464,
- 48.6237
- ],
- [
- 17.11597,
- 48.83752
- ],
- [
- 17.21072,
- 48.88018
- ],
- [
- 17.40523,
- 48.81782
- ],
- [
- 17.48004,
- 48.85393
- ],
- [
- 17.52991,
- 48.81782
- ],
- [
- 17.70446,
- 48.86706
- ],
- [
- 17.81418,
- 48.9359
- ],
- [
- 17.884,
- 48.9359
- ],
- [
- 17.94385,
- 49.02101
- ],
- [
- 18.06354,
- 49.03409
- ],
- [
- 18.1184,
- 49.09944
- ],
- [
- 18.1982,
- 49.30473
- ],
- [
- 18.38771,
- 49.33399
- ],
- [
- 18.57723,
- 49.50917
- ],
- [
- 18.75677,
- 49.49946
- ],
- [
- 18.84654,
- 49.52536
- ],
- [
- 18.87646,
- 49.57066
- ],
- [
- 18.79666,
- 49.69341
- ],
- [
- 18.64206,
- 49.70954
- ],
- [
- 18.5872,
- 49.83515
- ],
- [
- 18.61214,
- 49.88338
- ],
- [
- 18.56226,
- 49.93477
- ],
- [
- 18.51239,
- 49.90587
- ],
- [
- 18.36277,
- 49.95403
- ],
- [
- 18.32786,
- 49.92193
- ],
- [
- 18.26303,
- 49.97328
- ],
- [
- 18.1184,
- 50.00534
- ],
- [
- 18.06354,
- 50.07581
- ],
- [
- 17.91392,
- 49.97969
- ],
- [
- 17.77927,
- 50.03098
- ],
- [
- 17.71444,
- 50.12379
- ],
- [
- 17.60472,
- 50.16534
- ],
- [
- 17.75932,
- 50.21962
- ],
- [
- 17.73438,
- 50.34391
- ],
- [
- 17.63963,
- 50.28021
- ],
- [
- 17.38029,
- 50.28021
- ],
- [
- 17.35037,
- 50.34391
- ],
- [
- 17.28055,
- 50.33754
- ],
- [
- 17.18579,
- 50.40752
- ],
- [
- 16.90152,
- 50.46152
- ],
- [
- 16.86661,
- 50.41388
- ],
- [
- 16.96635,
- 50.31844
- ],
- [
- 17.03617,
- 50.23238
- ],
- [
- 16.83668,
- 50.21962
- ],
- [
- 16.712,
- 50.1046
- ],
- [
- 16.58233,
- 50.15895
- ],
- [
- 16.56238,
- 50.23876
- ],
- [
- 16.43272,
- 50.33754
- ],
- [
- 16.35292,
- 50.39163
- ],
- [
- 16.27811,
- 50.39163
- ],
- [
- 16.20829,
- 50.44565
- ],
- [
- 16.39781,
- 50.53449
- ],
- [
- 16.44768,
- 50.59785
- ],
- [
- 16.35292,
- 50.6706
- ],
- [
- 16.23821,
- 50.67692
- ],
- [
- 16.21827,
- 50.63266
- ],
- [
- 16.1285,
- 50.68324
- ],
- [
- 16.0487,
- 50.60734
- ],
- [
- 15.98885,
- 50.7022
- ],
- [
- 15.87415,
- 50.68324
- ],
- [
- 15.82926,
- 50.76533
- ],
- [
- 15.72952,
- 50.74324
- ],
- [
- 15.45023,
- 50.81577
- ],
- [
- 15.39039,
- 50.77479
- ],
- [
- 15.38041,
- 50.85987
- ],
- [
- 15.29563,
- 50.88504
- ],
- [
- 15.29563,
- 50.98876
- ],
- [
- 15.17095,
- 51.02014
- ],
- [
- 14.99141,
- 51.00131
- ],
- [
- 15.00637,
- 50.88819
- ],
- [
- 14.84179,
- 50.8756
- ],
- [
- 14.7969,
- 50.82522
- ],
- [
- 14.63233,
- 50.85672
- ],
- [
- 14.66225,
- 50.93536
- ],
- [
- 14.57248,
- 50.92278
- ],
- [
- 14.61238,
- 50.98562
- ],
- [
- 14.49767,
- 51.04837
- ],
- [
- 14.41788,
- 51.02328
- ],
- [
- 14.30816,
- 51.06717
- ],
- [
- 14.2533,
- 51.00445
- ],
- [
- 14.40291,
- 50.93221
- ],
- [
- 14.37299,
- 50.89763
- ],
- [
- 14.24332,
- 50.90706
- ],
- [
- 14.20841,
- 50.84412
- ],
- [
- 14.03386,
- 50.81262
- ],
- [
- 13.979,
- 50.82522
- ],
- [
- 13.90419,
- 50.79686
- ],
- [
- 13.87427,
- 50.74009
- ],
- [
- 13.53514,
- 50.7243
- ],
- [
- 13.53015,
- 50.65796
- ],
- [
- 13.4703,
- 50.61367
- ],
- [
- 13.39051,
- 50.66428
- ],
- [
- 13.32567,
- 50.58835
- ],
- [
- 13.25086,
- 50.61051
- ],
- [
- 13.196,
- 50.50595
- ],
- [
- 13.05137,
- 50.52181
- ],
- [
- 12.96659,
- 50.4107
- ],
- [
- 12.82695,
- 50.47105
- ],
- [
- 12.70227,
- 50.41388
- ],
- [
- 12.50777,
- 50.40116
- ],
- [
- 12.34319,
- 50.25471
- ],
- [
- 12.32324,
- 50.18451
- ],
- [
- 12.24843,
- 50.27384
- ],
- [
- 12.17362,
- 50.33118
- ],
- [
- 12.09881,
- 50.33436
- ],
- [
- 12.11876,
- 50.25152
- ],
- [
- 12.22349,
- 50.16534
- ],
- [
- 12.20354,
- 50.12379
- ],
- [
- 12.50278,
- 49.97328
- ],
- [
- 12.47784,
- 49.93798
- ],
- [
- 12.54766,
- 49.91551
- ],
- [
- 12.46787,
- 49.80298
- ],
- [
- 12.40802,
- 49.76111
- ],
- [
- 12.48283,
- 49.68696
- ],
- [
- 12.5327,
- 49.68696
- ],
- [
- 12.51774,
- 49.62885
- ],
- [
- 12.60751,
- 49.54155
- ],
- [
- 12.67234,
- 49.43788
- ],
- [
- 12.81199,
- 49.34699
- ],
- [
- 12.94664,
- 49.34374
- ],
- [
- 13.23091,
- 49.12882
- ],
- [
- 13.32567,
- 49.10597
- ],
- [
- 13.43539,
- 49.0439
- ],
- [
- 13.41544,
- 48.99484
- ],
- [
- 13.50022,
- 48.94901
- ],
- [
- 13.56506,
- 48.98829
- ],
- [
- 13.68475,
- 48.88346
- ],
- [
- 13.7446,
- 48.90313
- ],
- [
- 13.82439,
- 48.77511
- ],
- [
- 13.8992,
- 48.77511
- ],
- [
- 14.05879,
- 48.67642
- ],
- [
- 14.04383,
- 48.63029
- ],
- [
- 14.14358,
- 48.59072
- ],
- [
- 14.37299,
- 48.56103
- ],
- [
- 14.48271,
- 48.65007
- ],
- [
- 14.57747,
- 48.60721
- ],
- [
- 14.62734,
- 48.63359
- ],
- [
- 14.70713,
- 48.58083
- ],
- [
- 14.74703,
- 48.70276
- ],
- [
- 14.81187,
- 48.73895
- ],
- [
- 14.81685,
- 48.79483
- ],
- [
- 14.98642,
- 48.76525
- ],
- [
- 15.00637,
- 49.01774
- ]
- ]
- ],
- "terms_url": "https://poloha.net/",
- "terms_text": "Czech RUIAN"
- },
- {
- "id": "Czech_RUIAN-parcely",
- "name": "Czech RUIAN parcely",
- "type": "tms",
- "template": "https://tile.poloha.net/parcely/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 12,
- 20
- ],
- "polygon": [
- [
- [
- 15.00637,
- 49.01774
- ],
- [
- 15.15599,
- 49.00138
- ],
- [
- 15.1909,
- 48.94246
- ],
- [
- 15.31059,
- 48.98829
- ],
- [
- 15.40535,
- 48.9752
- ],
- [
- 15.54,
- 48.91624
- ],
- [
- 15.71456,
- 48.86706
- ],
- [
- 15.83425,
- 48.88018
- ],
- [
- 15.9689,
- 48.81782
- ],
- [
- 16.0886,
- 48.74553
- ],
- [
- 16.39781,
- 48.74553
- ],
- [
- 16.48758,
- 48.81454
- ],
- [
- 16.6721,
- 48.7784
- ],
- [
- 16.68208,
- 48.73566
- ],
- [
- 16.90152,
- 48.71263
- ],
- [
- 16.9464,
- 48.6237
- ],
- [
- 17.11597,
- 48.83752
- ],
- [
- 17.21072,
- 48.88018
- ],
- [
- 17.40523,
- 48.81782
- ],
- [
- 17.48004,
- 48.85393
- ],
- [
- 17.52991,
- 48.81782
- ],
- [
- 17.70446,
- 48.86706
- ],
- [
- 17.81418,
- 48.9359
- ],
- [
- 17.884,
- 48.9359
- ],
- [
- 17.94385,
- 49.02101
- ],
- [
- 18.06354,
- 49.03409
- ],
- [
- 18.1184,
- 49.09944
- ],
- [
- 18.1982,
- 49.30473
- ],
- [
- 18.38771,
- 49.33399
- ],
- [
- 18.57723,
- 49.50917
- ],
- [
- 18.75677,
- 49.49946
- ],
- [
- 18.84654,
- 49.52536
- ],
- [
- 18.87646,
- 49.57066
- ],
- [
- 18.79666,
- 49.69341
- ],
- [
- 18.64206,
- 49.70954
- ],
- [
- 18.5872,
- 49.83515
- ],
- [
- 18.61214,
- 49.88338
- ],
- [
- 18.56226,
- 49.93477
- ],
- [
- 18.51239,
- 49.90587
- ],
- [
- 18.36277,
- 49.95403
- ],
- [
- 18.32786,
- 49.92193
- ],
- [
- 18.26303,
- 49.97328
- ],
- [
- 18.1184,
- 50.00534
- ],
- [
- 18.06354,
- 50.07581
- ],
- [
- 17.91392,
- 49.97969
- ],
- [
- 17.77927,
- 50.03098
- ],
- [
- 17.71444,
- 50.12379
- ],
- [
- 17.60472,
- 50.16534
- ],
- [
- 17.75932,
- 50.21962
- ],
- [
- 17.73438,
- 50.34391
- ],
- [
- 17.63963,
- 50.28021
- ],
- [
- 17.38029,
- 50.28021
- ],
- [
- 17.35037,
- 50.34391
- ],
- [
- 17.28055,
- 50.33754
- ],
- [
- 17.18579,
- 50.40752
- ],
- [
- 16.90152,
- 50.46152
- ],
- [
- 16.86661,
- 50.41388
- ],
- [
- 16.96635,
- 50.31844
- ],
- [
- 17.03617,
- 50.23238
- ],
- [
- 16.83668,
- 50.21962
- ],
- [
- 16.712,
- 50.1046
- ],
- [
- 16.58233,
- 50.15895
- ],
- [
- 16.56238,
- 50.23876
- ],
- [
- 16.43272,
- 50.33754
- ],
- [
- 16.35292,
- 50.39163
- ],
- [
- 16.27811,
- 50.39163
- ],
- [
- 16.20829,
- 50.44565
- ],
- [
- 16.39781,
- 50.53449
- ],
- [
- 16.44768,
- 50.59785
- ],
- [
- 16.35292,
- 50.6706
- ],
- [
- 16.23821,
- 50.67692
- ],
- [
- 16.21827,
- 50.63266
- ],
- [
- 16.1285,
- 50.68324
- ],
- [
- 16.0487,
- 50.60734
- ],
- [
- 15.98885,
- 50.7022
- ],
- [
- 15.87415,
- 50.68324
- ],
- [
- 15.82926,
- 50.76533
- ],
- [
- 15.72952,
- 50.74324
- ],
- [
- 15.45023,
- 50.81577
- ],
- [
- 15.39039,
- 50.77479
- ],
- [
- 15.38041,
- 50.85987
- ],
- [
- 15.29563,
- 50.88504
- ],
- [
- 15.29563,
- 50.98876
- ],
- [
- 15.17095,
- 51.02014
- ],
- [
- 14.99141,
- 51.00131
- ],
- [
- 15.00637,
- 50.88819
- ],
- [
- 14.84179,
- 50.8756
- ],
- [
- 14.7969,
- 50.82522
- ],
- [
- 14.63233,
- 50.85672
- ],
- [
- 14.66225,
- 50.93536
- ],
- [
- 14.57248,
- 50.92278
- ],
- [
- 14.61238,
- 50.98562
- ],
- [
- 14.49767,
- 51.04837
- ],
- [
- 14.41788,
- 51.02328
- ],
- [
- 14.30816,
- 51.06717
- ],
- [
- 14.2533,
- 51.00445
- ],
- [
- 14.40291,
- 50.93221
- ],
- [
- 14.37299,
- 50.89763
- ],
- [
- 14.24332,
- 50.90706
- ],
- [
- 14.20841,
- 50.84412
- ],
- [
- 14.03386,
- 50.81262
- ],
- [
- 13.979,
- 50.82522
- ],
- [
- 13.90419,
- 50.79686
- ],
- [
- 13.87427,
- 50.74009
- ],
- [
- 13.53514,
- 50.7243
- ],
- [
- 13.53015,
- 50.65796
- ],
- [
- 13.4703,
- 50.61367
- ],
- [
- 13.39051,
- 50.66428
- ],
- [
- 13.32567,
- 50.58835
- ],
- [
- 13.25086,
- 50.61051
- ],
- [
- 13.196,
- 50.50595
- ],
- [
- 13.05137,
- 50.52181
- ],
- [
- 12.96659,
- 50.4107
- ],
- [
- 12.82695,
- 50.47105
- ],
- [
- 12.70227,
- 50.41388
- ],
- [
- 12.50777,
- 50.40116
- ],
- [
- 12.34319,
- 50.25471
- ],
- [
- 12.32324,
- 50.18451
- ],
- [
- 12.24843,
- 50.27384
- ],
- [
- 12.17362,
- 50.33118
- ],
- [
- 12.09881,
- 50.33436
- ],
- [
- 12.11876,
- 50.25152
- ],
- [
- 12.22349,
- 50.16534
- ],
- [
- 12.20354,
- 50.12379
- ],
- [
- 12.50278,
- 49.97328
- ],
- [
- 12.47784,
- 49.93798
- ],
- [
- 12.54766,
- 49.91551
- ],
- [
- 12.46787,
- 49.80298
- ],
- [
- 12.40802,
- 49.76111
- ],
- [
- 12.48283,
- 49.68696
- ],
- [
- 12.5327,
- 49.68696
- ],
- [
- 12.51774,
- 49.62885
- ],
- [
- 12.60751,
- 49.54155
- ],
- [
- 12.67234,
- 49.43788
- ],
- [
- 12.81199,
- 49.34699
- ],
- [
- 12.94664,
- 49.34374
- ],
- [
- 13.23091,
- 49.12882
- ],
- [
- 13.32567,
- 49.10597
- ],
- [
- 13.43539,
- 49.0439
- ],
- [
- 13.41544,
- 48.99484
- ],
- [
- 13.50022,
- 48.94901
- ],
- [
- 13.56506,
- 48.98829
- ],
- [
- 13.68475,
- 48.88346
- ],
- [
- 13.7446,
- 48.90313
- ],
- [
- 13.82439,
- 48.77511
- ],
- [
- 13.8992,
- 48.77511
- ],
- [
- 14.05879,
- 48.67642
- ],
- [
- 14.04383,
- 48.63029
- ],
- [
- 14.14358,
- 48.59072
- ],
- [
- 14.37299,
- 48.56103
- ],
- [
- 14.48271,
- 48.65007
- ],
- [
- 14.57747,
- 48.60721
- ],
- [
- 14.62734,
- 48.63359
- ],
- [
- 14.70713,
- 48.58083
- ],
- [
- 14.74703,
- 48.70276
- ],
- [
- 14.81187,
- 48.73895
- ],
- [
- 14.81685,
- 48.79483
- ],
- [
- 14.98642,
- 48.76525
- ],
- [
- 15.00637,
- 49.01774
- ]
- ]
- ],
- "terms_url": "https://poloha.net/",
- "terms_text": "Czech RUIAN"
- },
- {
- "id": "Duna_2013",
- "name": "Danube flood orthophoto 2013",
- "type": "tms",
- "template": "http://e.tile.openstreetmap.hu/dunai-arviz-2013/{zoom}/{x}/{y}.jpg",
- "endDate": "2013-01-01T00:00:00.000Z",
- "startDate": "2013-01-01T00:00:00.000Z",
- "scaleExtent": [
- 10,
- 20
- ],
- "polygon": [
- [
- [
- 19.07732,
- 47.69597
- ],
- [
- 19.07799,
- 47.69598
- ],
- [
- 19.09462,
- 47.69446
- ],
- [
- 19.08056,
- 47.59587
- ],
- [
- 19.07434,
- 47.58909
- ],
- [
- 19.07952,
- 47.58883
- ],
- [
- 19.07717,
- 47.57241
- ],
- [
- 19.05779,
- 47.57209
- ],
- [
- 19.07732,
- 47.69597
- ]
- ]
- ],
- "terms_url": "http://fototerkep.hu",
- "terms_text": "Fotótérkép.hu",
- "description": "Riverbank of Danube at Budapest, Szentendre and Szigetmonostor"
- },
- {
- "id": "Delaware2012Orthophotography",
- "name": "Delaware 2012 Orthophotography",
- "type": "wms",
- "template": "https://firstmap.delaware.gov/arcgis/services/DE_Imagery/DE_Imagery_2012/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2012-01-01T00:00:00.000Z",
- "startDate": "2012-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- -75.01771,
- 38.45189
- ],
- [
- -75.74174,
- 38.44996
- ],
- [
- -75.807,
- 39.73907
- ],
- [
- -75.75559,
- 39.80106
- ],
- [
- -75.64692,
- 39.85638
- ],
- [
- -75.47115,
- 39.84646
- ],
- [
- -75.37726,
- 39.81478
- ],
- [
- -75.48746,
- 39.67181
- ],
- [
- -75.50901,
- 39.43446
- ],
- [
- -75.39327,
- 39.27784
- ],
- [
- -75.30707,
- 39.01667
- ],
- [
- -75.19317,
- 38.82219
- ],
- [
- -75.05341,
- 38.80876
- ],
- [
- -75.01771,
- 38.45189
- ]
- ]
- ],
- "terms_url": "https://firstmap.delaware.gov/arcgis/rest/services/DE_Imagery/DE_Imagery_2012/ImageServer",
- "terms_text": "Digital Aerial Solutions, LLC",
- "description": "This data set consists of 0.3-meter pixel resolution (approximately 1-foot), 4-band true color and near infrared (R, G, B, IR) orthoimages covering New Castle, Kent and Sussex Counties in Delaware."
- },
- {
- "id": "Delaware2017Orthophotography",
- "name": "Delaware 2017 Orthophotography",
- "type": "wms",
- "template": "https://firstmap.delaware.gov/arcgis/services/DE_Imagery/DE_Imagery_2017/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2017-01-01T00:00:00.000Z",
- "startDate": "2017-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- -75.01771,
- 38.45189
- ],
- [
- -75.74174,
- 38.44996
- ],
- [
- -75.807,
- 39.73907
- ],
- [
- -75.75559,
- 39.80106
- ],
- [
- -75.64692,
- 39.85638
- ],
- [
- -75.47115,
- 39.84646
- ],
- [
- -75.37726,
- 39.81478
- ],
- [
- -75.48746,
- 39.67181
- ],
- [
- -75.50901,
- 39.43446
- ],
- [
- -75.39327,
- 39.27784
- ],
- [
- -75.30707,
- 39.01667
- ],
- [
- -75.19317,
- 38.82219
- ],
- [
- -75.05341,
- 38.80876
- ],
- [
- -75.01771,
- 38.45189
- ]
- ]
- ],
- "terms_url": "https://firstmap.delaware.gov/arcgis/rest/services/DE_Imagery/DE_Imagery_2017/ImageServer",
- "terms_text": "Digital Aerial Solutions, LLC",
- "description": "This data set consists of 0.3-meter pixel resolution (approximately 1-foot), 4-band true color and near infrared (R, G, B, IR) orthoimages covering New Castle, Kent and Sussex Counties in Delaware."
- },
- {
- "id": "delmiro_gouveia",
- "name": "Delmiro Gouveia AL",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Delmiro%20Gouveia&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -37.94962,
- -9.42957
- ],
- [
- -37.94834,
- -9.33972
- ],
- [
- -38.03903,
- -9.33834
- ],
- [
- -38.04034,
- -9.42846
- ],
- [
- -37.94962,
- -9.42957
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "der-es",
- "name": "DER-ES",
- "type": "wms",
- "template": "http://portal.der.es.gov.br/geoserver/wms?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=deres-ext:TRECHOINFO&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -40.94577,
- -21.31404
- ],
- [
- -40.6231,
- -20.86278
- ],
- [
- -40.38882,
- -20.65177
- ],
- [
- -40.22209,
- -20.29831
- ],
- [
- -39.80383,
- -19.66412
- ],
- [
- -39.69603,
- -19.42573
- ],
- [
- -39.67304,
- -19.30437
- ],
- [
- -39.70538,
- -18.61384
- ],
- [
- -39.65292,
- -18.33096
- ],
- [
- -40.22281,
- -17.97587
- ],
- [
- -40.34282,
- -17.9198
- ],
- [
- -40.45278,
- -17.91502
- ],
- [
- -40.46499,
- -17.92049
- ],
- [
- -40.48368,
- -17.90408
- ],
- [
- -40.50164,
- -17.90681
- ],
- [
- -40.51602,
- -17.88903
- ],
- [
- -40.53326,
- -17.88903
- ],
- [
- -40.54548,
- -17.90134
- ],
- [
- -40.58932,
- -17.91502
- ],
- [
- -40.58932,
- -17.93211
- ],
- [
- -40.61519,
- -17.93416
- ],
- [
- -40.62956,
- -17.9868
- ],
- [
- -40.64609,
- -17.9868
- ],
- [
- -40.65903,
- -18.00731
- ],
- [
- -40.68777,
- -18.00594
- ],
- [
- -40.70574,
- -18.01756
- ],
- [
- -40.71365,
- -18.00184
- ],
- [
- -40.72155,
- -17.99774
- ],
- [
- -40.75102,
- -18.00252
- ],
- [
- -40.76754,
- -17.99842
- ],
- [
- -40.76754,
- -17.98133
- ],
- [
- -40.80923,
- -17.94852
- ],
- [
- -40.82432,
- -17.96014
- ],
- [
- -40.83151,
- -17.94989
- ],
- [
- -40.86528,
- -17.9827
- ],
- [
- -40.88397,
- -17.96766
- ],
- [
- -40.90912,
- -17.98475
- ],
- [
- -40.77761,
- -18.10775
- ],
- [
- -40.77832,
- -18.15146
- ],
- [
- -40.79054,
- -18.15351
- ],
- [
- -40.8351,
- -18.14531
- ],
- [
- -40.89547,
- -18.10365
- ],
- [
- -40.93283,
- -18.12755
- ],
- [
- -40.95583,
- -18.1255
- ],
- [
- -40.95296,
- -18.14463
- ],
- [
- -40.96014,
- -18.15009
- ],
- [
- -40.96374,
- -18.14326
- ],
- [
- -40.97955,
- -18.13643
- ],
- [
- -40.99248,
- -18.15009
- ],
- [
- -40.99105,
- -18.16307
- ],
- [
- -41.00901,
- -18.16307
- ],
- [
- -41.05788,
- -18.1658
- ],
- [
- -41.05788,
- -18.17536
- ],
- [
- -41.09597,
- -18.19243
- ],
- [
- -41.09597,
- -18.2054
- ],
- [
- -41.1089,
- -18.21291
- ],
- [
- -41.09812,
- -18.22997
- ],
- [
- -41.10531,
- -18.2327
- ],
- [
- -41.09884,
- -18.25591
- ],
- [
- -41.12903,
- -18.27502
- ],
- [
- -41.16137,
- -18.30572
- ],
- [
- -41.15059,
- -18.37394
- ],
- [
- -41.16424,
- -18.37939
- ],
- [
- -41.16424,
- -18.4019
- ],
- [
- -41.15059,
- -18.40735
- ],
- [
- -41.15849,
- -18.41144
- ],
- [
- -41.17358,
- -18.41144
- ],
- [
- -41.18868,
- -18.44485
- ],
- [
- -41.02123,
- -18.46667
- ],
- [
- -41.04638,
- -18.60362
- ],
- [
- -41.03776,
- -18.61452
- ],
- [
- -41.05788,
- -18.62678
- ],
- [
- -41.0471,
- -18.64857
- ],
- [
- -41.03488,
- -18.65402
- ],
- [
- -40.99895,
- -18.67716
- ],
- [
- -40.94505,
- -18.69418
- ],
- [
- -40.94433,
- -18.76973
- ],
- [
- -40.92134,
- -18.81055
- ],
- [
- -40.93715,
- -18.82347
- ],
- [
- -40.94721,
- -18.82143
- ],
- [
- -40.97092,
- -18.83572
- ],
- [
- -41.08375,
- -18.83232
- ],
- [
- -41.10675,
- -18.83572
- ],
- [
- -41.11753,
- -18.80783
- ],
- [
- -41.13118,
- -18.79286
- ],
- [
- -41.23611,
- -18.7949
- ],
- [
- -41.2512,
- -18.81667
- ],
- [
- -41.2476,
- -18.85544
- ],
- [
- -41.2203,
- -18.87992
- ],
- [
- -41.20808,
- -18.87992
- ],
- [
- -41.20664,
- -18.86632
- ],
- [
- -41.16424,
- -18.867
- ],
- [
- -41.15634,
- -18.88876
- ],
- [
- -41.12903,
- -18.9044
- ],
- [
- -41.12112,
- -18.92412
- ],
- [
- -41.0392,
- -18.98665
- ],
- [
- -41.07585,
- -19.00567
- ],
- [
- -41.06507,
- -19.06342
- ],
- [
- -40.96877,
- -19.12726
- ],
- [
- -40.96158,
- -19.15102
- ],
- [
- -40.92996,
- -19.206
- ],
- [
- -40.94649,
- -19.22296
- ],
- [
- -40.94793,
- -19.24264
- ],
- [
- -40.92565,
- -19.26299
- ],
- [
- -40.94936,
- -19.2786
- ],
- [
- -40.92277,
- -19.31048
- ],
- [
- -40.94361,
- -19.35252
- ],
- [
- -40.93427,
- -19.381
- ],
- [
- -40.95727,
- -19.39184
- ],
- [
- -40.9738,
- -19.42641
- ],
- [
- -40.95439,
- -19.46165
- ],
- [
- -40.97883,
- -19.50298
- ],
- [
- -41.01332,
- -19.50298
- ],
- [
- -41.04638,
- -19.48333
- ],
- [
- -41.05429,
- -19.48401
- ],
- [
- -41.04135,
- -19.56664
- ],
- [
- -41.09238,
- -19.58966
- ],
- [
- -41.14627,
- -19.656
- ],
- [
- -41.16496,
- -19.65871
- ],
- [
- -41.17933,
- -19.6939
- ],
- [
- -41.19658,
- -19.74599
- ],
- [
- -41.16999,
- -19.80618
- ],
- [
- -41.18939,
- -19.82375
- ],
- [
- -41.18868,
- -19.88526
- ],
- [
- -41.21239,
- -19.89743
- ],
- [
- -41.22964,
- -19.90216
- ],
- [
- -41.24689,
- -19.93324
- ],
- [
- -41.25479,
- -19.92919
- ],
- [
- -41.26988,
- -19.93797
- ],
- [
- -41.30653,
- -19.93392
- ],
- [
- -41.31516,
- -19.96972
- ],
- [
- -41.3245,
- -19.97647
- ],
- [
- -41.313,
- -20.01226
- ],
- [
- -41.33672,
- -20.05548
- ],
- [
- -41.34822,
- -20.08653
- ],
- [
- -41.3554,
- -20.12094
- ],
- [
- -41.37768,
- -20.15805
- ],
- [
- -41.38702,
- -20.18638
- ],
- [
- -41.41074,
- -20.19448
- ],
- [
- -41.4208,
- -20.20257
- ],
- [
- -41.7636,
- -20.2046
- ],
- [
- -41.78516,
- -20.28483
- ],
- [
- -41.85055,
- -20.3246
- ],
- [
- -41.86349,
- -20.37513
- ],
- [
- -41.85127,
- -20.38187
- ],
- [
- -41.84337,
- -20.40949
- ],
- [
- -41.80887,
- -20.42498
- ],
- [
- -41.80672,
- -20.47211
- ],
- [
- -41.83115,
- -20.47885
- ],
- [
- -41.81103,
- -20.54212
- ],
- [
- -41.83115,
- -20.55086
- ],
- [
- -41.86205,
- -20.61814
- ],
- [
- -41.82109,
- -20.64437
- ],
- [
- -41.85343,
- -20.68068
- ],
- [
- -41.87139,
- -20.72102
- ],
- [
- -41.8678,
- -20.73849
- ],
- [
- -41.88002,
- -20.73984
- ],
- [
- -41.88289,
- -20.76739
- ],
- [
- -41.85415,
- -20.77478
- ],
- [
- -41.83331,
- -20.7983
- ],
- [
- -41.80887,
- -20.80905
- ],
- [
- -41.78444,
- -20.80569
- ],
- [
- -41.75138,
- -20.82382
- ],
- [
- -41.74707,
- -20.87487
- ],
- [
- -41.72335,
- -20.87554
- ],
- [
- -41.74132,
- -20.92723
- ],
- [
- -41.72335,
- -20.97757
- ],
- [
- -41.74347,
- -21.09763
- ],
- [
- -41.7291,
- -21.12579
- ],
- [
- -41.594,
- -21.16332
- ],
- [
- -41.57244,
- -21.18678
- ],
- [
- -41.49051,
- -21.18879
- ],
- [
- -41.48332,
- -21.20085
- ],
- [
- -41.43948,
- -21.22095
- ],
- [
- -41.41289,
- -21.20956
- ],
- [
- -41.34965,
- -21.21291
- ],
- [
- -41.27994,
- -21.2464
- ],
- [
- -41.24473,
- -21.23234
- ],
- [
- -41.17718,
- -21.25511
- ],
- [
- -41.09238,
- -21.2243
- ],
- [
- -41.04854,
- -21.25913
- ],
- [
- -41.01548,
- -21.25578
- ],
- [
- -41.00254,
- -21.28726
- ],
- [
- -40.94577,
- -21.31404
- ]
- ]
- ],
- "terms_url": "https://der.es.gov.br",
- "terms_text": "Departamento de Estradas de Rodagem do Estado do Espírito Santo",
- "overlay": true
- },
- {
- "id": "DigitalGlobe-Premium",
- "name": "DigitalGlobe Premium Imagery",
- "type": "tms",
- "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/digitalglobe.316c9a2e/{zoom}/{x}/{y}.png?access_token=pk.eyJ1IjoiZGlnaXRhbGdsb2JlIiwiYSI6ImNqZGFrZ2c2dzFlMWgyd2x0ZHdmMDB6NzYifQ.9Pl3XOO82ArX94fHV289Pg",
- "scaleExtent": [
- 0,
- 22
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/DigitalGlobe",
- "terms_text": "Terms & Feedback",
- "default": true,
- "description": "Premium DigitalGlobe satellite imagery.",
- "icon": "data:image/png;base64,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"
- },
- {
- "id": "DigitalGlobe-Premium-vintage",
- "name": "DigitalGlobe Premium Imagery Vintage",
- "type": "tms",
- "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/digitalglobe.2850d66c/{zoom}/{x}/{y}.png?access_token=pk.eyJ1IjoiZGlnaXRhbGdsb2JlIiwiYSI6ImNqOTBkcmZjNzJ5ZnozNHF6NnVkOGd6ODYifQ.grAnqgpCjOaeq-ozqt4QNw",
- "scaleExtent": [
- 0,
- 22
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/DigitalGlobe",
- "terms_text": "Terms & Feedback",
- "description": "Imagery boundaries and capture dates. Labels appear at zoom level 13 and higher.",
- "icon": "data:image/png;base64,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",
- "overlay": true
- },
- {
- "id": "DigitalGlobe-Standard",
- "name": "DigitalGlobe Standard Imagery",
- "type": "tms",
- "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/digitalglobe.0a8e44ba/{zoom}/{x}/{y}.png?access_token=pk.eyJ1IjoiZGlnaXRhbGdsb2JlIiwiYSI6ImNqZGFrZ3pjczNpaHYycXFyMGo0djY3N2IifQ.90uebT4-ow1uqZKTUrf6RQ",
- "scaleExtent": [
- 0,
- 22
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/DigitalGlobe",
- "terms_text": "Terms & Feedback",
- "default": true,
- "description": "Standard DigitalGlobe satellite imagery.",
- "icon": "data:image/png;base64,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"
- },
- {
- "id": "DigitalGlobe-Standard-vintage",
- "name": "DigitalGlobe Standard Imagery Vintage",
- "type": "tms",
- "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/digitalglobe.1412531a/{zoom}/{x}/{y}.png?access_token=pk.eyJ1IjoiZGlnaXRhbGdsb2JlIiwiYSI6ImNqOTBlYWJ1ZDAza2YyeG14NWVodTA4OWUifQ.wVc8ZOuPuYVw39lhS2j3_g",
- "scaleExtent": [
- 0,
- 22
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/DigitalGlobe",
- "terms_text": "Terms & Feedback",
- "description": "Imagery boundaries and capture dates. Labels appear at zoom level 13 and higher.",
- "icon": "data:image/png;base64,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",
- "overlay": true
- },
- {
- "id": "Erlangen-2011",
- "name": "Erlangen Luftbild (2011 5,0 cm)",
- "type": "wms",
- "template": "https://secure.erlangen.de/arcgiser/services/Luftbilder2011/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Erlangen_ratio10_5cm_gk4.jp2&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2011-01-01T00:00:00.000Z",
- "startDate": "2011-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 10.92791,
- 49.53196
- ],
- [
- 10.97194,
- 49.52969
- ],
- [
- 10.97821,
- 49.53568
- ],
- [
- 10.99934,
- 49.53589
- ],
- [
- 11.03214,
- 49.53089
- ],
- [
- 11.04425,
- 49.54317
- ],
- [
- 11.03842,
- 49.55239
- ],
- [
- 11.03663,
- 49.57167
- ],
- [
- 11.04029,
- 49.58572
- ],
- [
- 11.07287,
- 49.58587
- ],
- [
- 11.07243,
- 49.63486
- ],
- [
- 11.0054,
- 49.6344
- ],
- [
- 11.00397,
- 49.62599
- ],
- [
- 10.9748,
- 49.62541
- ],
- [
- 10.94293,
- 49.64563
- ],
- [
- 10.92532,
- 49.64876
- ],
- [
- 10.91002,
- 49.63793
- ],
- [
- 10.92235,
- 49.60463
- ],
- [
- 10.91949,
- 49.57823
- ],
- [
- 10.91135,
- 49.57095
- ],
- [
- 10.91256,
- 49.5606
- ],
- [
- 10.92907,
- 49.55674
- ],
- [
- 10.92791,
- 49.53196
- ]
- ]
- ],
- "terms_text": "© Stadt Erlangen | © Aerowest GmbH"
- },
- {
- "id": "Erlangen-2013",
- "name": "Erlangen Luftbild (2013 6,25 cm)",
- "type": "wms",
- "template": "https://secure.erlangen.de/arcgiser/services/Luftbilder2013/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Erlangen_ratio5_6.25cm.jp2&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2013-01-01T00:00:00.000Z",
- "startDate": "2013-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 10.92791,
- 49.53196
- ],
- [
- 10.9726,
- 49.52939
- ],
- [
- 10.97909,
- 49.53475
- ],
- [
- 10.99934,
- 49.53589
- ],
- [
- 11.03214,
- 49.53089
- ],
- [
- 11.04425,
- 49.54317
- ],
- [
- 11.03842,
- 49.55239
- ],
- [
- 11.03743,
- 49.57873
- ],
- [
- 11.0568,
- 49.592
- ],
- [
- 11.05748,
- 49.61358
- ],
- [
- 11.04681,
- 49.61447
- ],
- [
- 11.04788,
- 49.6187
- ],
- [
- 11.00308,
- 49.62367
- ],
- [
- 10.98107,
- 49.62339
- ],
- [
- 10.98069,
- 49.62617
- ],
- [
- 10.96737,
- 49.62781
- ],
- [
- 10.96539,
- 49.63415
- ],
- [
- 10.94293,
- 49.64563
- ],
- [
- 10.92532,
- 49.64876
- ],
- [
- 10.91002,
- 49.63793
- ],
- [
- 10.92235,
- 49.60463
- ],
- [
- 10.91949,
- 49.57823
- ],
- [
- 10.91135,
- 49.57095
- ],
- [
- 10.91256,
- 49.5606
- ],
- [
- 10.92907,
- 49.55674
- ],
- [
- 10.92791,
- 49.53196
- ]
- ]
- ],
- "terms_text": "© Stadt Erlangen | © Aerowest GmbH"
- },
- {
- "id": "Erlangen-2016",
- "name": "Erlangen Luftbild (2016 5,0 cm)",
- "type": "wms",
- "template": "https://secure.erlangen.de/arcgiser/services/Luftbild2016/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2016-03-18T00:00:00.000Z",
- "startDate": "2016-03-18T00:00:00.000Z",
- "polygon": [
- [
- [
- 10.97664,
- 49.53765
- ],
- [
- 10.99101,
- 49.53392
- ],
- [
- 10.99389,
- 49.53835
- ],
- [
- 11.02784,
- 49.53254
- ],
- [
- 11.0346,
- 49.53462
- ],
- [
- 11.03407,
- 49.53759
- ],
- [
- 11.04318,
- 49.54321
- ],
- [
- 11.03557,
- 49.55303
- ],
- [
- 11.0384,
- 49.55842
- ],
- [
- 11.03508,
- 49.56929
- ],
- [
- 11.03791,
- 49.58659
- ],
- [
- 11.04797,
- 49.5902
- ],
- [
- 11.04922,
- 49.5937
- ],
- [
- 11.05749,
- 49.59521
- ],
- [
- 11.05623,
- 49.59905
- ],
- [
- 11.05127,
- 49.6003
- ],
- [
- 11.05351,
- 49.60904
- ],
- [
- 11.04309,
- 49.61381
- ],
- [
- 11.04076,
- 49.61823
- ],
- [
- 11.0285,
- 49.61735
- ],
- [
- 11.01929,
- 49.61896
- ],
- [
- 11.0152,
- 49.61372
- ],
- [
- 11.00581,
- 49.61448
- ],
- [
- 11.00639,
- 49.61931
- ],
- [
- 11.00083,
- 49.6221
- ],
- [
- 10.9856,
- 49.61651
- ],
- [
- 10.97837,
- 49.61753
- ],
- [
- 10.9737,
- 49.62495
- ],
- [
- 10.96539,
- 49.62557
- ],
- [
- 10.96063,
- 49.62856
- ],
- [
- 10.96382,
- 49.63176
- ],
- [
- 10.95474,
- 49.6379
- ],
- [
- 10.94837,
- 49.637
- ],
- [
- 10.94185,
- 49.64377
- ],
- [
- 10.9273,
- 49.64837
- ],
- [
- 10.92063,
- 49.63963
- ],
- [
- 10.91136,
- 49.63773
- ],
- [
- 10.92429,
- 49.60505
- ],
- [
- 10.92205,
- 49.58004
- ],
- [
- 10.91221,
- 49.57008
- ],
- [
- 10.91441,
- 49.5618
- ],
- [
- 10.92353,
- 49.55842
- ],
- [
- 10.92712,
- 49.55976
- ],
- [
- 10.93345,
- 49.55892
- ],
- [
- 10.93071,
- 49.54467
- ],
- [
- 10.93067,
- 49.53225
- ],
- [
- 10.9406,
- 49.53325
- ],
- [
- 10.95488,
- 49.53021
- ],
- [
- 10.97199,
- 49.53126
- ],
- [
- 10.97664,
- 49.53765
- ]
- ]
- ],
- "terms_text": "© Stadt Erlangen | © Geocart GmbH",
- "best": true
- },
- {
- "id": "EsriWorldImagery",
- "name": "Esri World Imagery",
- "type": "tms",
- "template": "https://{switch:services,server}.arcgisonline.com/arcgis/rest/services/World_Imagery/MapServer/tile/{zoom}/{y}/{x}",
- "scaleExtent": [
- 0,
- 22
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/Esri",
- "terms_text": "Terms & Feedback",
- "default": true,
- "description": "Esri world imagery.",
- "icon": "data:image/png;base64,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"
- },
- {
- "id": "EsriWorldImageryClarity",
- "name": "Esri World Imagery (Clarity) Beta",
- "type": "tms",
- "template": "https://clarity.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer/tile/{zoom}/{y}/{x}",
- "scaleExtent": [
- 0,
- 22
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/Esri",
- "terms_text": "Terms & Feedback",
- "default": true,
- "description": "Esri archive imagery that may be clearer and more accurate than the default layer.",
- "icon": "data:image/png;base64,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"
- },
- {
- "id": "maaamet.ee-pohi_vr2",
- "name": "Estonia Basemap (Maaamet)",
- "type": "wms",
- "template": "https://kaart.maaamet.ee/wms/alus-geo?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=pohi_vr2&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:4326",
- "polygon": [
- [
- [
- 22.35364,
- 58.85385
- ],
- [
- 22.09411,
- 58.85038
- ],
- [
- 22.09179,
- 58.8951
- ],
- [
- 22.00503,
- 58.89371
- ],
- [
- 21.99979,
- 58.98374
- ],
- [
- 22.34754,
- 58.98845
- ],
- [
- 22.34535,
- 59.03337
- ],
- [
- 22.51935,
- 59.03538
- ],
- [
- 22.51556,
- 59.1251
- ],
- [
- 22.69017,
- 59.12686
- ],
- [
- 22.69212,
- 59.08218
- ],
- [
- 22.77912,
- 59.083
- ],
- [
- 22.78083,
- 59.03814
- ],
- [
- 22.86808,
- 59.03877
- ],
- [
- 22.8693,
- 58.99399
- ],
- [
- 22.9563,
- 58.99487
- ],
- [
- 22.95495,
- 59.03959
- ],
- [
- 23.12895,
- 59.04097
- ],
- [
- 23.12786,
- 59.08582
- ],
- [
- 23.47671,
- 59.0877
- ],
- [
- 23.47415,
- 59.26726
- ],
- [
- 23.64924,
- 59.26788
- ],
- [
- 23.64888,
- 59.31281
- ],
- [
- 23.73698,
- 59.313
- ],
- [
- 23.73649,
- 59.3578
- ],
- [
- 23.91158,
- 59.35787
- ],
- [
- 23.91207,
- 59.4028
- ],
- [
- 24.176,
- 59.4028
- ],
- [
- 24.17637,
- 59.4478
- ],
- [
- 24.26446,
- 59.44767
- ],
- [
- 24.26471,
- 59.49236
- ],
- [
- 24.70605,
- 59.49082
- ],
- [
- 24.70898,
- 59.62553
- ],
- [
- 24.79744,
- 59.62497
- ],
- [
- 24.79659,
- 59.58009
- ],
- [
- 24.97327,
- 59.57885
- ],
- [
- 24.97462,
- 59.62386
- ],
- [
- 24.88603,
- 59.62473
- ],
- [
- 24.88725,
- 59.66918
- ],
- [
- 24.9762,
- 59.66863
- ],
- [
- 24.9773,
- 59.71346
- ],
- [
- 25.06601,
- 59.71259
- ],
- [
- 25.0632,
- 59.62306
- ],
- [
- 25.24037,
- 59.62145
- ],
- [
- 25.24184,
- 59.66647
- ],
- [
- 25.33055,
- 59.66548
- ],
- [
- 25.32884,
- 59.62078
- ],
- [
- 25.41755,
- 59.61979
- ],
- [
- 25.41938,
- 59.66468
- ],
- [
- 25.6855,
- 59.66148
- ],
- [
- 25.68757,
- 59.70613
- ],
- [
- 25.86511,
- 59.70386
- ],
- [
- 25.86279,
- 59.65901
- ],
- [
- 26.12855,
- 59.65507
- ],
- [
- 26.12575,
- 59.6101
- ],
- [
- 26.39114,
- 59.60565
- ],
- [
- 26.38809,
- 59.56099
- ],
- [
- 26.82967,
- 59.55215
- ],
- [
- 26.82626,
- 59.50729
- ],
- [
- 26.91423,
- 59.50549
- ],
- [
- 26.91057,
- 59.46051
- ],
- [
- 27.96689,
- 59.43303
- ],
- [
- 27.9719,
- 59.4778
- ],
- [
- 28.03669,
- 59.4757
- ],
- [
- 28.04377,
- 59.47223
- ],
- [
- 28.04767,
- 59.46578
- ],
- [
- 28.05182,
- 59.46342
- ],
- [
- 28.06915,
- 59.46256
- ],
- [
- 28.08452,
- 59.45939
- ],
- [
- 28.12174,
- 59.44091
- ],
- [
- 28.13577,
- 59.4277
- ],
- [
- 28.13711,
- 59.42267
- ],
- [
- 28.14163,
- 59.41901
- ],
- [
- 28.16652,
- 59.41205
- ],
- [
- 28.17225,
- 59.40789
- ],
- [
- 28.19275,
- 59.4015
- ],
- [
- 28.21069,
- 59.3836
- ],
- [
- 28.21069,
- 59.37994
- ],
- [
- 28.20386,
- 59.37459
- ],
- [
- 28.21057,
- 59.37235
- ],
- [
- 28.21105,
- 59.36937
- ],
- [
- 28.20678,
- 59.36719
- ],
- [
- 28.20703,
- 59.36377
- ],
- [
- 28.19971,
- 59.36091
- ],
- [
- 28.20203,
- 59.35731
- ],
- [
- 28.19263,
- 59.35227
- ],
- [
- 28.19397,
- 59.34642
- ],
- [
- 28.16969,
- 59.33354
- ],
- [
- 28.13626,
- 59.29244
- ],
- [
- 28.12515,
- 59.28901
- ],
- [
- 28.11722,
- 59.28895
- ],
- [
- 28.1099,
- 59.29063
- ],
- [
- 28.05353,
- 59.2902
- ],
- [
- 28.02022,
- 59.28334
- ],
- [
- 27.99825,
- 59.2753
- ],
- [
- 27.97983,
- 59.27293
- ],
- [
- 27.96433,
- 59.27268
- ],
- [
- 27.95335,
- 59.26863
- ],
- [
- 27.9492,
- 59.26533
- ],
- [
- 27.90564,
- 59.24044
- ],
- [
- 27.90113,
- 59.23488
- ],
- [
- 27.901,
- 59.22639
- ],
- [
- 27.89783,
- 59.21746
- ],
- [
- 27.90235,
- 59.20728
- ],
- [
- 27.89234,
- 59.19222
- ],
- [
- 27.88978,
- 59.18379
- ],
- [
- 27.87648,
- 59.17372
- ],
- [
- 27.87184,
- 59.16841
- ],
- [
- 27.86818,
- 59.16159
- ],
- [
- 27.84414,
- 59.14814
- ],
- [
- 27.83206,
- 59.14401
- ],
- [
- 27.82035,
- 59.13362
- ],
- [
- 27.80986,
- 59.12905
- ],
- [
- 27.80595,
- 59.12166
- ],
- [
- 27.80534,
- 59.1127
- ],
- [
- 27.81071,
- 59.10819
- ],
- [
- 27.8101,
- 59.10606
- ],
- [
- 27.80205,
- 59.1028
- ],
- [
- 27.78887,
- 59.0909
- ],
- [
- 27.7907,
- 59.08112
- ],
- [
- 27.79375,
- 59.07842
- ],
- [
- 27.79411,
- 59.07566
- ],
- [
- 27.79277,
- 59.0729
- ],
- [
- 27.79302,
- 59.06927
- ],
- [
- 27.7885,
- 59.06657
- ],
- [
- 27.78265,
- 59.065
- ],
- [
- 27.77508,
- 59.0581
- ],
- [
- 27.77313,
- 59.05107
- ],
- [
- 27.77667,
- 59.04743
- ],
- [
- 27.76983,
- 59.03325
- ],
- [
- 27.76605,
- 59.03155
- ],
- [
- 27.75153,
- 59.03017
- ],
- [
- 27.74628,
- 59.02716
- ],
- [
- 27.74567,
- 59.01705
- ],
- [
- 27.74165,
- 59.00951
- ],
- [
- 27.74787,
- 58.99267
- ],
- [
- 27.74274,
- 58.98845
- ],
- [
- 27.73213,
- 58.9855
- ],
- [
- 27.6544,
- 58.98783
- ],
- [
- 27.65501,
- 58.99241
- ],
- [
- 27.39414,
- 58.99964
- ],
- [
- 27.38974,
- 58.95474
- ],
- [
- 27.12935,
- 58.96135
- ],
- [
- 27.12557,
- 58.9164
- ],
- [
- 27.03882,
- 58.91841
- ],
- [
- 27.0271,
- 58.7841
- ],
- [
- 27.11361,
- 58.78183
- ],
- [
- 27.10934,
- 58.73709
- ],
- [
- 27.19537,
- 58.73512
- ],
- [
- 27.18731,
- 58.64533
- ],
- [
- 27.27309,
- 58.64305
- ],
- [
- 27.25259,
- 58.41883
- ],
- [
- 27.53397,
- 58.41142
- ],
- [
- 27.5552,
- 58.36575
- ],
- [
- 27.51762,
- 58.33265
- ],
- [
- 27.51408,
- 58.32214
- ],
- [
- 27.49993,
- 58.32246
- ],
- [
- 27.48687,
- 58.18803
- ],
- [
- 27.52872,
- 58.18687
- ],
- [
- 27.59205,
- 58.11875
- ],
- [
- 27.63695,
- 58.09735
- ],
- [
- 27.60938,
- 58.05399
- ],
- [
- 27.62268,
- 58.0058
- ],
- [
- 27.64489,
- 58.00205
- ],
- [
- 27.65294,
- 58.00644
- ],
- [
- 27.64781,
- 58.01426
- ],
- [
- 27.64781,
- 58.02086
- ],
- [
- 27.66172,
- 58.01866
- ],
- [
- 27.66856,
- 58.01045
- ],
- [
- 27.68393,
- 58.00845
- ],
- [
- 27.6965,
- 58.0045
- ],
- [
- 27.70065,
- 57.99862
- ],
- [
- 27.69882,
- 57.98827
- ],
- [
- 27.69125,
- 57.98549
- ],
- [
- 27.68064,
- 57.97449
- ],
- [
- 27.6821,
- 57.9719
- ],
- [
- 27.68893,
- 57.97184
- ],
- [
- 27.68588,
- 57.95928
- ],
- [
- 27.65892,
- 57.9554
- ],
- [
- 27.66758,
- 57.951
- ],
- [
- 27.67161,
- 57.94627
- ],
- [
- 27.66917,
- 57.94174
- ],
- [
- 27.67649,
- 57.93552
- ],
- [
- 27.68247,
- 57.93655
- ],
- [
- 27.68613,
- 57.92794
- ],
- [
- 27.68247,
- 57.92437
- ],
- [
- 27.71078,
- 57.92392
- ],
- [
- 27.72029,
- 57.92036
- ],
- [
- 27.72054,
- 57.91174
- ],
- [
- 27.70834,
- 57.90616
- ],
- [
- 27.69882,
- 57.90616
- ],
- [
- 27.70614,
- 57.90136
- ],
- [
- 27.72896,
- 57.90739
- ],
- [
- 27.74677,
- 57.90169
- ],
- [
- 27.7536,
- 57.90409
- ],
- [
- 27.75739,
- 57.90318
- ],
- [
- 27.75592,
- 57.89806
- ],
- [
- 27.76959,
- 57.89566
- ],
- [
- 27.78094,
- 57.89832
- ],
- [
- 27.799,
- 57.89961
- ],
- [
- 27.81852,
- 57.89579
- ],
- [
- 27.82096,
- 57.89047
- ],
- [
- 27.81949,
- 57.888
- ],
- [
- 27.81059,
- 57.88612
- ],
- [
- 27.81827,
- 57.88249
- ],
- [
- 27.81169,
- 57.87204
- ],
- [
- 27.81583,
- 57.87166
- ],
- [
- 27.8184,
- 57.8651
- ],
- [
- 27.81632,
- 57.86134
- ],
- [
- 27.79875,
- 57.85205
- ],
- [
- 27.7946,
- 57.84634
- ],
- [
- 27.80058,
- 57.8442
- ],
- [
- 27.7957,
- 57.84017
- ],
- [
- 27.78862,
- 57.84186
- ],
- [
- 27.78411,
- 57.83725
- ],
- [
- 27.77715,
- 57.8325
- ],
- [
- 27.75849,
- 57.83536
- ],
- [
- 27.74165,
- 57.82679
- ],
- [
- 27.72383,
- 57.83179
- ],
- [
- 27.70541,
- 57.84192
- ],
- [
- 27.68771,
- 57.83419
- ],
- [
- 27.66636,
- 57.83653
- ],
- [
- 27.66026,
- 57.83893
- ],
- [
- 27.64818,
- 57.8377
- ],
- [
- 27.63634,
- 57.83978
- ],
- [
- 27.62487,
- 57.83751
- ],
- [
- 27.62207,
- 57.83874
- ],
- [
- 27.59791,
- 57.83328
- ],
- [
- 27.56252,
- 57.83023
- ],
- [
- 27.5563,
- 57.83127
- ],
- [
- 27.55227,
- 57.82113
- ],
- [
- 27.54446,
- 57.82204
- ],
- [
- 27.5452,
- 57.81808
- ],
- [
- 27.55056,
- 57.81769
- ],
- [
- 27.55667,
- 57.81366
- ],
- [
- 27.5408,
- 57.81288
- ],
- [
- 27.54471,
- 57.808
- ],
- [
- 27.53726,
- 57.80644
- ],
- [
- 27.53958,
- 57.80144
- ],
- [
- 27.53592,
- 57.79663
- ],
- [
- 27.53861,
- 57.79396
- ],
- [
- 27.52921,
- 57.78856
- ],
- [
- 27.5175,
- 57.78876
- ],
- [
- 27.51847,
- 57.79201
- ],
- [
- 27.50298,
- 57.78798
- ],
- [
- 27.50005,
- 57.78973
- ],
- [
- 27.4959,
- 57.78869
- ],
- [
- 27.50774,
- 57.78349
- ],
- [
- 27.51457,
- 57.77516
- ],
- [
- 27.5081,
- 57.77158
- ],
- [
- 27.51115,
- 57.76416
- ],
- [
- 27.51591,
- 57.7639
- ],
- [
- 27.52018,
- 57.75993
- ],
- [
- 27.52811,
- 57.75818
- ],
- [
- 27.53007,
- 57.75368
- ],
- [
- 27.53116,
- 57.74073
- ],
- [
- 27.548,
- 57.7333
- ],
- [
- 27.5419,
- 57.73037
- ],
- [
- 27.52799,
- 57.72946
- ],
- [
- 27.5236,
- 57.71616
- ],
- [
- 27.52762,
- 57.70899
- ],
- [
- 27.5236,
- 57.70802
- ],
- [
- 27.51652,
- 57.70873
- ],
- [
- 27.51066,
- 57.71101
- ],
- [
- 27.50859,
- 57.70723
- ],
- [
- 27.49993,
- 57.70495
- ],
- [
- 27.49529,
- 57.70749
- ],
- [
- 27.48711,
- 57.7191
- ],
- [
- 27.47357,
- 57.71545
- ],
- [
- 27.47064,
- 57.70802
- ],
- [
- 27.46149,
- 57.70619
- ],
- [
- 27.44807,
- 57.71616
- ],
- [
- 27.43086,
- 57.70756
- ],
- [
- 27.42818,
- 57.69902
- ],
- [
- 27.41341,
- 57.69915
- ],
- [
- 27.41647,
- 57.69524
- ],
- [
- 27.40744,
- 57.69276
- ],
- [
- 27.40231,
- 57.68493
- ],
- [
- 27.39133,
- 57.68539
- ],
- [
- 27.39377,
- 57.67913
- ],
- [
- 27.39145,
- 57.67671
- ],
- [
- 27.38193,
- 57.67332
- ],
- [
- 27.37779,
- 57.66836
- ],
- [
- 27.38364,
- 57.66059
- ],
- [
- 27.3801,
- 57.65883
- ],
- [
- 27.38755,
- 57.6555
- ],
- [
- 27.38047,
- 57.6495
- ],
- [
- 27.38352,
- 57.64799
- ],
- [
- 27.38157,
- 57.64368
- ],
- [
- 27.39072,
- 57.6431
- ],
- [
- 27.38816,
- 57.64009
- ],
- [
- 27.40085,
- 57.63742
- ],
- [
- 27.40317,
- 57.62905
- ],
- [
- 27.40182,
- 57.62376
- ],
- [
- 27.39597,
- 57.62115
- ],
- [
- 27.39023,
- 57.62036
- ],
- [
- 27.39084,
- 57.6169
- ],
- [
- 27.40195,
- 57.61775
- ],
- [
- 27.40634,
- 57.61546
- ],
- [
- 27.40683,
- 57.61246
- ],
- [
- 27.38572,
- 57.60304
- ],
- [
- 27.37827,
- 57.59513
- ],
- [
- 27.35692,
- 57.59696
- ],
- [
- 27.3413,
- 57.58984
- ],
- [
- 27.34179,
- 57.58539
- ],
- [
- 27.32886,
- 57.5797
- ],
- [
- 27.32141,
- 57.57898
- ],
- [
- 27.3341,
- 57.56596
- ],
- [
- 27.33178,
- 57.56066
- ],
- [
- 27.33776,
- 57.56007
- ],
- [
- 27.33886,
- 57.54671
- ],
- [
- 27.34386,
- 57.5454
- ],
- [
- 27.35472,
- 57.52575
- ],
- [
- 27.35131,
- 57.51632
- ],
- [
- 27.34569,
- 57.52104
- ],
- [
- 27.32446,
- 57.52274
- ],
- [
- 27.29664,
- 57.53859
- ],
- [
- 27.28017,
- 57.53643
- ],
- [
- 27.2737,
- 57.54311
- ],
- [
- 27.26431,
- 57.54377
- ],
- [
- 27.2637,
- 57.54841
- ],
- [
- 27.25772,
- 57.54979
- ],
- [
- 27.24796,
- 57.54769
- ],
- [
- 27.2249,
- 57.55385
- ],
- [
- 27.19329,
- 57.54966
- ],
- [
- 27.16145,
- 57.55922
- ],
- [
- 27.11654,
- 57.56118
- ],
- [
- 27.10092,
- 57.5653
- ],
- [
- 27.08506,
- 57.57538
- ],
- [
- 27.07262,
- 57.57734
- ],
- [
- 27.07225,
- 57.57989
- ],
- [
- 27.0559,
- 57.58251
- ],
- [
- 27.05285,
- 57.58087
- ],
- [
- 27.04687,
- 57.58048
- ],
- [
- 27.04492,
- 57.58251
- ],
- [
- 27.0332,
- 57.58532
- ],
- [
- 27.04126,
- 57.58761
- ],
- [
- 27.04418,
- 57.5967
- ],
- [
- 27.03101,
- 57.60461
- ],
- [
- 26.99513,
- 57.60461
- ],
- [
- 26.99233,
- 57.61076
- ],
- [
- 26.98696,
- 57.60867
- ],
- [
- 26.98366,
- 57.61174
- ],
- [
- 26.97549,
- 57.612
- ],
- [
- 26.97097,
- 57.60448
- ],
- [
- 26.9595,
- 57.60625
- ],
- [
- 26.9578,
- 57.60468
- ],
- [
- 26.94596,
- 57.60272
- ],
- [
- 26.93961,
- 57.60932
- ],
- [
- 26.95133,
- 57.61579
- ],
- [
- 26.94999,
- 57.62056
- ],
- [
- 26.94059,
- 57.61978
- ],
- [
- 26.92961,
- 57.62376
- ],
- [
- 26.92644,
- 57.6331
- ],
- [
- 26.90679,
- 57.63304
- ],
- [
- 26.89971,
- 57.63056
- ],
- [
- 26.90057,
- 57.62918
- ],
- [
- 26.89581,
- 57.62572
- ],
- [
- 26.88849,
- 57.62357
- ],
- [
- 26.88898,
- 57.62193
- ],
- [
- 26.87458,
- 57.61906
- ],
- [
- 26.87275,
- 57.61736
- ],
- [
- 26.86555,
- 57.61592
- ],
- [
- 26.85786,
- 57.60997
- ],
- [
- 26.86469,
- 57.6084
- ],
- [
- 26.85811,
- 57.60049
- ],
- [
- 26.85994,
- 57.59598
- ],
- [
- 26.86433,
- 57.59415
- ],
- [
- 26.86177,
- 57.59108
- ],
- [
- 26.84688,
- 57.5884
- ],
- [
- 26.83504,
- 57.58244
- ],
- [
- 26.81589,
- 57.58153
- ],
- [
- 26.80954,
- 57.58473
- ],
- [
- 26.79685,
- 57.58179
- ],
- [
- 26.79929,
- 57.58002
- ],
- [
- 26.79295,
- 57.57315
- ],
- [
- 26.78685,
- 57.57525
- ],
- [
- 26.7766,
- 57.55994
- ],
- [
- 26.76915,
- 57.56039
- ],
- [
- 26.76354,
- 57.56314
- ],
- [
- 26.75366,
- 57.56249
- ],
- [
- 26.75817,
- 57.5653
- ],
- [
- 26.76891,
- 57.57041
- ],
- [
- 26.77379,
- 57.57473
- ],
- [
- 26.76769,
- 57.57754
- ],
- [
- 26.74804,
- 57.5778
- ],
- [
- 26.75317,
- 57.58009
- ],
- [
- 26.73816,
- 57.58774
- ],
- [
- 26.72901,
- 57.58016
- ],
- [
- 26.73828,
- 57.57584
- ],
- [
- 26.73072,
- 57.56903
- ],
- [
- 26.72388,
- 57.57244
- ],
- [
- 26.71107,
- 57.56596
- ],
- [
- 26.69972,
- 57.57106
- ],
- [
- 26.69753,
- 57.5706
- ],
- [
- 26.69741,
- 57.56733
- ],
- [
- 26.69155,
- 57.56615
- ],
- [
- 26.67569,
- 57.56668
- ],
- [
- 26.67105,
- 57.56327
- ],
- [
- 26.6719,
- 57.55385
- ],
- [
- 26.66531,
- 57.55287
- ],
- [
- 26.64652,
- 57.55391
- ],
- [
- 26.64262,
- 57.54658
- ],
- [
- 26.63444,
- 57.54357
- ],
- [
- 26.61443,
- 57.52909
- ],
- [
- 26.61712,
- 57.50885
- ],
- [
- 26.60467,
- 57.51212
- ],
- [
- 26.60479,
- 57.51442
- ],
- [
- 26.5954,
- 57.51376
- ],
- [
- 26.59479,
- 57.51592
- ],
- [
- 26.58808,
- 57.51619
- ],
- [
- 26.59015,
- 57.52516
- ],
- [
- 26.58698,
- 57.52621
- ],
- [
- 26.58771,
- 57.53781
- ],
- [
- 26.58381,
- 57.53957
- ],
- [
- 26.57978,
- 57.53695
- ],
- [
- 26.57966,
- 57.53375
- ],
- [
- 26.56123,
- 57.5285
- ],
- [
- 26.56184,
- 57.52261
- ],
- [
- 26.5666,
- 57.51946
- ],
- [
- 26.55794,
- 57.5137
- ],
- [
- 26.52585,
- 57.51619
- ],
- [
- 26.49961,
- 57.52451
- ],
- [
- 26.49095,
- 57.54534
- ],
- [
- 26.46996,
- 57.57551
- ],
- [
- 26.40151,
- 57.57237
- ],
- [
- 26.34489,
- 57.58408
- ],
- [
- 26.33476,
- 57.5797
- ],
- [
- 26.32781,
- 57.57963
- ],
- [
- 26.32635,
- 57.58277
- ],
- [
- 26.3117,
- 57.58473
- ],
- [
- 26.30853,
- 57.59291
- ],
- [
- 26.3006,
- 57.59343
- ],
- [
- 26.29291,
- 57.59114
- ],
- [
- 26.28352,
- 57.59232
- ],
- [
- 26.28217,
- 57.5952
- ],
- [
- 26.27754,
- 57.595
- ],
- [
- 26.27034,
- 57.6001
- ],
- [
- 26.27022,
- 57.60461
- ],
- [
- 26.25423,
- 57.61383
- ],
- [
- 26.24715,
- 57.62082
- ],
- [
- 26.24813,
- 57.62775
- ],
- [
- 26.23947,
- 57.63408
- ],
- [
- 26.24203,
- 57.63539
- ],
- [
- 26.24667,
- 57.63559
- ],
- [
- 26.23959,
- 57.64649
- ],
- [
- 26.23239,
- 57.6461
- ],
- [
- 26.23117,
- 57.64904
- ],
- [
- 26.24215,
- 57.65146
- ],
- [
- 26.2363,
- 57.65753
- ],
- [
- 26.23032,
- 57.65805
- ],
- [
- 26.21043,
- 57.66601
- ],
- [
- 26.21372,
- 57.66888
- ],
- [
- 26.21092,
- 57.67071
- ],
- [
- 26.21018,
- 57.67906
- ],
- [
- 26.20079,
- 57.68102
- ],
- [
- 26.19896,
- 57.68356
- ],
- [
- 26.19444,
- 57.68519
- ],
- [
- 26.18541,
- 57.68454
- ],
- [
- 26.17712,
- 57.68761
- ],
- [
- 26.18871,
- 57.69472
- ],
- [
- 26.19859,
- 57.70906
- ],
- [
- 26.20567,
- 57.71486
- ],
- [
- 26.1726,
- 57.72867
- ],
- [
- 26.141,
- 57.73278
- ],
- [
- 26.13563,
- 57.73923
- ],
- [
- 26.13905,
- 57.74548
- ],
- [
- 26.13551,
- 57.7503
- ],
- [
- 26.10537,
- 57.757
- ],
- [
- 26.08035,
- 57.76547
- ],
- [
- 26.07974,
- 57.76384
- ],
- [
- 26.07328,
- 57.76371
- ],
- [
- 26.07047,
- 57.7656
- ],
- [
- 26.05912,
- 57.75987
- ],
- [
- 26.049,
- 57.7611
- ],
- [
- 26.0435,
- 57.76703
- ],
- [
- 26.03326,
- 57.77054
- ],
- [
- 26.02374,
- 57.76761
- ],
- [
- 26.01776,
- 57.7723
- ],
- [
- 26.02459,
- 57.77516
- ],
- [
- 26.02496,
- 57.7816
- ],
- [
- 26.02252,
- 57.78355
- ],
- [
- 26.02776,
- 57.7898
- ],
- [
- 26.03081,
- 57.79097
- ],
- [
- 26.03338,
- 57.80105
- ],
- [
- 26.03679,
- 57.80592
- ],
- [
- 26.03606,
- 57.8108
- ],
- [
- 26.04851,
- 57.82289
- ],
- [
- 26.05705,
- 57.83842
- ],
- [
- 26.05558,
- 57.84764
- ],
- [
- 26.03667,
- 57.84926
- ],
- [
- 26.02008,
- 57.84517
- ],
- [
- 26.00958,
- 57.85731
- ],
- [
- 25.99848,
- 57.85816
- ],
- [
- 25.96273,
- 57.84491
- ],
- [
- 25.931,
- 57.85244
- ],
- [
- 25.89537,
- 57.84972
- ],
- [
- 25.8883,
- 57.84595
- ],
- [
- 25.88085,
- 57.84946
- ],
- [
- 25.88573,
- 57.85277
- ],
- [
- 25.88427,
- 57.85595
- ],
- [
- 25.87561,
- 57.85796
- ],
- [
- 25.87475,
- 57.86322
- ],
- [
- 25.8595,
- 57.85614
- ],
- [
- 25.81923,
- 57.86419
- ],
- [
- 25.78312,
- 57.89948
- ],
- [
- 25.78629,
- 57.90428
- ],
- [
- 25.77165,
- 57.91206
- ],
- [
- 25.75102,
- 57.91692
- ],
- [
- 25.73724,
- 57.92295
- ],
- [
- 25.72833,
- 57.92133
- ],
- [
- 25.72247,
- 57.91245
- ],
- [
- 25.70356,
- 57.90331
- ],
- [
- 25.67916,
- 57.90461
- ],
- [
- 25.67549,
- 57.91277
- ],
- [
- 25.66207,
- 57.91511
- ],
- [
- 25.65609,
- 57.91439
- ],
- [
- 25.64889,
- 57.91666
- ],
- [
- 25.64987,
- 57.91841
- ],
- [
- 25.63828,
- 57.93059
- ],
- [
- 25.57983,
- 57.9442
- ],
- [
- 25.59399,
- 57.95961
- ],
- [
- 25.58935,
- 57.96504
- ],
- [
- 25.58239,
- 57.96783
- ],
- [
- 25.58044,
- 57.9721
- ],
- [
- 25.57483,
- 57.9741
- ],
- [
- 25.56556,
- 57.96718
- ],
- [
- 25.56604,
- 57.96258
- ],
- [
- 25.55714,
- 57.96038
- ],
- [
- 25.55567,
- 57.96711
- ],
- [
- 25.55079,
- 57.97255
- ],
- [
- 25.53725,
- 57.97139
- ],
- [
- 25.52566,
- 57.97184
- ],
- [
- 25.5226,
- 57.96802
- ],
- [
- 25.51638,
- 57.96737
- ],
- [
- 25.51211,
- 57.96977
- ],
- [
- 25.52212,
- 57.97488
- ],
- [
- 25.51943,
- 57.98031
- ],
- [
- 25.48539,
- 57.97475
- ],
- [
- 25.47843,
- 57.98006
- ],
- [
- 25.47843,
- 57.98264
- ],
- [
- 25.44219,
- 57.99616
- ],
- [
- 25.44817,
- 58.00114
- ],
- [
- 25.46648,
- 58.00515
- ],
- [
- 25.44817,
- 58.01698
- ],
- [
- 25.40693,
- 58.02893
- ],
- [
- 25.37155,
- 58.02926
- ],
- [
- 25.36374,
- 58.03171
- ],
- [
- 25.35336,
- 58.04334
- ],
- [
- 25.34482,
- 58.04676
- ],
- [
- 25.33604,
- 58.05709
- ],
- [
- 25.3292,
- 58.05858
- ],
- [
- 25.32664,
- 58.0638
- ],
- [
- 25.31981,
- 58.066
- ],
- [
- 25.31908,
- 58.06929
- ],
- [
- 25.29553,
- 58.08161
- ],
- [
- 25.28686,
- 58.08149
- ],
- [
- 25.28113,
- 58.07019
- ],
- [
- 25.266,
- 58.06716
- ],
- [
- 25.26502,
- 58.06
- ],
- [
- 25.27991,
- 58.05063
- ],
- [
- 25.29309,
- 58.0467
- ],
- [
- 25.30431,
- 58.03449
- ],
- [
- 25.30114,
- 58.01504
- ],
- [
- 25.29748,
- 58.01459
- ],
- [
- 25.30285,
- 58.00011
- ],
- [
- 25.29577,
- 57.99972
- ],
- [
- 25.29736,
- 57.99661
- ],
- [
- 25.30358,
- 57.99396
- ],
- [
- 25.30138,
- 57.99273
- ],
- [
- 25.29187,
- 57.99286
- ],
- [
- 25.28308,
- 57.98963
- ],
- [
- 25.26722,
- 57.99454
- ],
- [
- 25.25611,
- 57.9939
- ],
- [
- 25.25502,
- 58.00347
- ],
- [
- 25.2455,
- 58.00302
- ],
- [
- 25.22768,
- 58.01782
- ],
- [
- 25.24587,
- 58.01872
- ],
- [
- 25.23562,
- 58.02286
- ],
- [
- 25.23635,
- 58.02441
- ],
- [
- 25.22732,
- 58.02435
- ],
- [
- 25.22537,
- 58.02195
- ],
- [
- 25.21902,
- 58.02977
- ],
- [
- 25.21658,
- 58.04088
- ],
- [
- 25.22695,
- 58.04799
- ],
- [
- 25.22817,
- 58.05348
- ],
- [
- 25.22122,
- 58.05302
- ],
- [
- 25.22146,
- 58.05051
- ],
- [
- 25.2178,
- 58.04908
- ],
- [
- 25.21597,
- 58.05954
- ],
- [
- 25.21219,
- 58.06226
- ],
- [
- 25.20523,
- 58.06122
- ],
- [
- 25.20389,
- 58.0651
- ],
- [
- 25.21621,
- 58.07413
- ],
- [
- 25.21207,
- 58.08052
- ],
- [
- 25.19962,
- 58.08536
- ],
- [
- 25.18949,
- 58.08007
- ],
- [
- 25.19169,
- 58.07613
- ],
- [
- 25.1535,
- 58.07478
- ],
- [
- 25.15154,
- 58.07703
- ],
- [
- 25.13397,
- 58.07974
- ],
- [
- 25.10579,
- 58.07749
- ],
- [
- 25.10518,
- 58.06645
- ],
- [
- 25.07662,
- 58.06645
- ],
- [
- 25.02037,
- 58.01769
- ],
- [
- 24.99512,
- 58.01084
- ],
- [
- 24.94863,
- 58.00942
- ],
- [
- 24.83234,
- 57.97177
- ],
- [
- 24.80806,
- 57.99066
- ],
- [
- 24.74229,
- 57.98187
- ],
- [
- 24.74339,
- 57.96491
- ],
- [
- 24.7329,
- 57.96239
- ],
- [
- 24.71508,
- 57.96271
- ],
- [
- 24.6919,
- 57.94653
- ],
- [
- 24.67335,
- 57.95896
- ],
- [
- 24.64468,
- 57.95889
- ],
- [
- 24.64187,
- 57.95423
- ],
- [
- 24.64577,
- 57.95268
- ],
- [
- 24.62869,
- 57.94193
- ],
- [
- 24.61612,
- 57.94368
- ],
- [
- 24.60892,
- 57.95125
- ],
- [
- 24.58464,
- 57.96174
- ],
- [
- 24.57317,
- 57.95436
- ],
- [
- 24.54792,
- 57.94938
- ],
- [
- 24.54352,
- 57.94478
- ],
- [
- 24.5301,
- 57.94705
- ],
- [
- 24.5207,
- 57.94303
- ],
- [
- 24.51839,
- 57.93675
- ],
- [
- 24.5096,
- 57.93442
- ],
- [
- 24.51326,
- 57.93066
- ],
- [
- 24.4625,
- 57.92496
- ],
- [
- 24.44579,
- 57.90798
- ],
- [
- 24.46018,
- 57.90662
- ],
- [
- 24.45225,
- 57.89942
- ],
- [
- 24.46006,
- 57.87977
- ],
- [
- 24.41138,
- 57.86491
- ],
- [
- 24.40906,
- 57.87191
- ],
- [
- 24.33707,
- 57.87393
- ],
- [
- 24.33829,
- 58.0109
- ],
- [
- 24.42272,
- 58.01097
- ],
- [
- 24.42614,
- 58.28002
- ],
- [
- 24.51155,
- 58.2797
- ],
- [
- 24.51216,
- 58.32471
- ],
- [
- 24.42638,
- 58.32503
- ],
- [
- 24.42712,
- 58.36972
- ],
- [
- 24.34182,
- 58.37017
- ],
- [
- 24.34048,
- 58.23547
- ],
- [
- 24.17014,
- 58.23572
- ],
- [
- 24.17014,
- 58.1908
- ],
- [
- 24.08485,
- 58.19092
- ],
- [
- 24.0851,
- 58.23605
- ],
- [
- 24.00066,
- 58.23579
- ],
- [
- 23.99993,
- 58.28092
- ],
- [
- 23.82971,
- 58.28047
- ],
- [
- 23.82947,
- 58.32554
- ],
- [
- 23.65864,
- 58.32496
- ],
- [
- 23.65791,
- 58.41493
- ],
- [
- 23.57225,
- 58.41468
- ],
- [
- 23.57127,
- 58.50436
- ],
- [
- 23.39935,
- 58.50359
- ],
- [
- 23.40106,
- 58.41391
- ],
- [
- 23.14421,
- 58.41238
- ],
- [
- 23.14567,
- 58.36735
- ],
- [
- 23.05989,
- 58.36703
- ],
- [
- 23.06172,
- 58.32221
- ],
- [
- 22.9757,
- 58.32157
- ],
- [
- 22.97716,
- 58.27681
- ],
- [
- 22.89187,
- 58.27598
- ],
- [
- 22.89358,
- 58.23103
- ],
- [
- 22.80865,
- 58.2302
- ],
- [
- 22.81012,
- 58.18539
- ],
- [
- 22.89529,
- 58.1861
- ],
- [
- 22.89663,
- 58.1413
- ],
- [
- 22.72641,
- 58.13982
- ],
- [
- 22.72495,
- 58.18475
- ],
- [
- 22.55522,
- 58.18276
- ],
- [
- 22.55693,
- 58.13744
- ],
- [
- 22.64173,
- 58.13886
- ],
- [
- 22.64344,
- 58.094
- ],
- [
- 22.38903,
- 58.0909
- ],
- [
- 22.38525,
- 58.18063
- ],
- [
- 22.29995,
- 58.17967
- ],
- [
- 22.30679,
- 58.04527
- ],
- [
- 22.22198,
- 58.0436
- ],
- [
- 22.22626,
- 57.95404
- ],
- [
- 22.14206,
- 57.95281
- ],
- [
- 22.1445,
- 57.90804
- ],
- [
- 22.06007,
- 57.90681
- ],
- [
- 22.06263,
- 57.86186
- ],
- [
- 21.97807,
- 57.86043
- ],
- [
- 21.96831,
- 58.04004
- ],
- [
- 22.05274,
- 58.04134
- ],
- [
- 22.04506,
- 58.17581
- ],
- [
- 21.96038,
- 58.17471
- ],
- [
- 21.95781,
- 58.21941
- ],
- [
- 21.78723,
- 58.21638
- ],
- [
- 21.78211,
- 58.30631
- ],
- [
- 21.69681,
- 58.3049
- ],
- [
- 21.69401,
- 58.34975
- ],
- [
- 21.77942,
- 58.35122
- ],
- [
- 21.76795,
- 58.53074
- ],
- [
- 22.02566,
- 58.53488
- ],
- [
- 22.02797,
- 58.49001
- ],
- [
- 22.11375,
- 58.49167
- ],
- [
- 22.11144,
- 58.53621
- ],
- [
- 22.19709,
- 58.53742
- ],
- [
- 22.19453,
- 58.5823
- ],
- [
- 22.45236,
- 58.58573
- ],
- [
- 22.44638,
- 58.7203
- ],
- [
- 22.36023,
- 58.71916
- ],
- [
- 22.35364,
- 58.85385
- ]
- ],
- [
- [
- 23.47415,
- 59.26726
- ],
- [
- 23.29868,
- 59.26632
- ],
- [
- 23.29795,
- 59.31138
- ],
- [
- 23.47293,
- 59.31194
- ],
- [
- 23.47415,
- 59.26726
- ]
- ],
- [
- [
- 24.17014,
- 58.1908
- ],
- [
- 24.25507,
- 58.19073
- ],
- [
- 24.25458,
- 58.14581
- ],
- [
- 24.17002,
- 58.14588
- ],
- [
- 24.17014,
- 58.1908
- ]
- ],
- [
- [
- 24.08485,
- 58.19092
- ],
- [
- 24.08497,
- 58.10129
- ],
- [
- 23.99968,
- 58.10116
- ],
- [
- 23.99993,
- 58.05632
- ],
- [
- 23.91525,
- 58.05612
- ],
- [
- 23.915,
- 58.14613
- ],
- [
- 23.83032,
- 58.146
- ],
- [
- 23.82971,
- 58.23572
- ],
- [
- 23.91451,
- 58.23585
- ],
- [
- 23.91476,
- 58.19099
- ],
- [
- 24.08485,
- 58.19092
- ]
- ],
- [
- [
- 24.61854,
- 59.53612
- ],
- [
- 24.44183,
- 59.5368
- ],
- [
- 24.44309,
- 59.62659
- ],
- [
- 24.62016,
- 59.6258
- ],
- [
- 24.61854,
- 59.53612
- ]
- ],
- [
- [
- 26.40403,
- 59.7852
- ],
- [
- 26.31501,
- 59.78667
- ],
- [
- 26.31814,
- 59.83152
- ],
- [
- 26.40732,
- 59.82994
- ],
- [
- 26.40403,
- 59.7852
- ]
- ],
- [
- [
- 26.48308,
- 59.649
- ],
- [
- 26.48647,
- 59.69383
- ],
- [
- 26.57514,
- 59.69202
- ],
- [
- 26.57166,
- 59.64719
- ],
- [
- 26.48308,
- 59.649
- ]
- ],
- [
- [
- 23.15944,
- 57.78408
- ],
- [
- 23.24346,
- 57.78461
- ],
- [
- 23.24445,
- 57.73971
- ],
- [
- 23.32848,
- 57.74031
- ],
- [
- 23.32679,
- 57.82998
- ],
- [
- 23.15845,
- 57.82885
- ],
- [
- 23.15944,
- 57.78408
- ]
- ]
- ],
- "terms_text": "Maa-Ameti põhikaart"
- },
- {
- "id": "maaamet.ee-cir_ngr",
- "name": "Estonia Forestry (Maaamet)",
- "type": "wms",
- "template": "https://kaart.maaamet.ee/wms/alus-geo?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=cir_ngr&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:4326",
- "polygon": [
- [
- [
- 21.69401,
- 57.50255
- ],
- [
- 21.69401,
- 59.82746
- ],
- [
- 28.21105,
- 59.82746
- ],
- [
- 28.21105,
- 57.50255
- ],
- [
- 21.69401,
- 57.50255
- ]
- ]
- ],
- "terms_text": "Maa-Ameti metsanduslik ortofoto"
- },
- {
- "id": "maaamet.ee-reljeef",
- "name": "Estonia Hillshading (Maaamet)",
- "type": "wms",
- "template": "https://kaart.maaamet.ee/wms/alus-geo?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=reljeef&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:4326",
- "polygon": [
- [
- [
- 21.69401,
- 57.50255
- ],
- [
- 21.69401,
- 59.82746
- ],
- [
- 28.21105,
- 59.82746
- ],
- [
- 28.21105,
- 57.50255
- ],
- [
- 21.69401,
- 57.50255
- ]
- ]
- ],
- "terms_text": "Maa-Ameti reljeefikaart"
- },
- {
- "id": "maaamet.ee-orto",
- "name": "Estonia Ortho (Maaamet)",
- "type": "tms",
- "template": "https://tiles.maaamet.ee/tm/tms/1.0.0/foto@GMC/{zoom}/{x}/{-y}.png",
- "scaleExtent": [
- 14,
- 18
- ],
- "polygon": [
- [
- [
- 21.69401,
- 57.50255
- ],
- [
- 21.69401,
- 59.82746
- ],
- [
- 28.21105,
- 59.82746
- ],
- [
- 28.21105,
- 57.50255
- ],
- [
- 21.69401,
- 57.50255
- ]
- ]
- ],
- "terms_text": "Maa-Ameti ortofoto"
- },
- {
- "id": "estrela_de_alagoas",
- "name": "Estrela de Alagoas",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Estrela%20de%20Alagoas&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -36.71382,
- -9.43476
- ],
- [
- -36.71477,
- -9.34443
- ],
- [
- -36.80586,
- -9.34498
- ],
- [
- -36.80525,
- -9.43542
- ],
- [
- -36.71382,
- -9.43476
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "Fiez-2013",
- "name": "Fiez Orthophoto 2013",
- "type": "tms",
- "template": "http://osmdata.asitvd.ch/tiles/fiez2013/{zoom}/{x}/{y}.png",
- "endDate": "2013-01-01T00:00:00.000Z",
- "startDate": "2013-01-01T00:00:00.000Z",
- "scaleExtent": [
- 14,
- 20
- ],
- "polygon": [
- [
- [
- 6.62313,
- 46.82339
- ],
- [
- 6.62899,
- 46.82484
- ],
- [
- 6.62882,
- 46.82674
- ],
- [
- 6.62531,
- 46.83274
- ],
- [
- 6.62382,
- 46.83317
- ],
- [
- 6.61839,
- 46.83194
- ],
- [
- 6.62313,
- 46.82339
- ]
- ]
- ],
- "terms_url": "http://osmdata.asitvd.ch/",
- "terms_text": "Fiez - Orthophoto technique 2013"
- },
- {
- "id": "FOMI_2000",
- "name": "FÖMI orthophoto 2000",
- "type": "tms",
- "template": "http://e.tile.openstreetmap.hu/ortofoto2000/{zoom}/{x}/{y}.jpg",
- "endDate": "2000-01-01T00:00:00.000Z",
- "startDate": "2000-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 17
- ],
- "polygon": [
- [
- [
- 16.11391,
- 46.8691
- ],
- [
- 16.17897,
- 46.90662
- ],
- [
- 16.20004,
- 46.94151
- ],
- [
- 16.22175,
- 46.93554
- ],
- [
- 16.24628,
- 46.94639
- ],
- [
- 16.25532,
- 46.96421
- ],
- [
- 16.27647,
- 46.96261
- ],
- [
- 16.29058,
- 47.01398
- ],
- [
- 16.30162,
- 46.99923
- ],
- [
- 16.34146,
- 46.99652
- ],
- [
- 16.35052,
- 47.01063
- ],
- [
- 16.3734,
- 46.99859
- ],
- [
- 16.41277,
- 47.00475
- ],
- [
- 16.43327,
- 46.99274
- ],
- [
- 16.44781,
- 47.00389
- ],
- [
- 16.48,
- 46.99412
- ],
- [
- 16.5122,
- 47.00117
- ],
- [
- 16.46356,
- 47.03227
- ],
- [
- 16.44786,
- 47.02275
- ],
- [
- 16.43912,
- 47.02966
- ],
- [
- 16.44567,
- 47.03887
- ],
- [
- 16.52032,
- 47.0561
- ],
- [
- 16.47321,
- 47.07362
- ],
- [
- 16.46372,
- 47.09392
- ],
- [
- 16.5008,
- 47.11006
- ],
- [
- 16.50004,
- 47.12329
- ],
- [
- 16.52953,
- 47.12874
- ],
- [
- 16.51716,
- 47.14969
- ],
- [
- 16.45495,
- 47.14259
- ],
- [
- 16.46487,
- 47.16833
- ],
- [
- 16.45556,
- 47.18756
- ],
- [
- 16.43056,
- 47.1847
- ],
- [
- 16.4195,
- 47.19491
- ],
- [
- 16.41892,
- 47.21071
- ],
- [
- 16.43713,
- 47.2097
- ],
- [
- 16.44263,
- 47.23371
- ],
- [
- 16.43131,
- 47.25276
- ],
- [
- 16.46715,
- 47.25317
- ],
- [
- 16.48923,
- 47.27989
- ],
- [
- 16.46463,
- 47.33385
- ],
- [
- 16.4337,
- 47.35281
- ],
- [
- 16.45851,
- 47.36705
- ],
- [
- 16.44546,
- 47.40702
- ],
- [
- 16.48317,
- 47.40936
- ],
- [
- 16.49638,
- 47.38927
- ],
- [
- 16.51709,
- 47.41002
- ],
- [
- 16.57491,
- 47.40542
- ],
- [
- 16.58073,
- 47.41917
- ],
- [
- 16.66185,
- 47.4556
- ],
- [
- 16.67064,
- 47.47422
- ],
- [
- 16.65234,
- 47.50034
- ],
- [
- 16.68956,
- 47.51016
- ],
- [
- 16.71478,
- 47.5402
- ],
- [
- 16.66354,
- 47.56773
- ],
- [
- 16.6732,
- 47.60495
- ],
- [
- 16.65953,
- 47.6061
- ],
- [
- 16.65276,
- 47.62285
- ],
- [
- 16.63142,
- 47.62832
- ],
- [
- 16.57391,
- 47.61967
- ],
- [
- 16.51474,
- 47.6462
- ],
- [
- 16.49675,
- 47.63931
- ],
- [
- 16.42546,
- 47.66217
- ],
- [
- 16.44374,
- 47.67421
- ],
- [
- 16.44805,
- 47.69647
- ],
- [
- 16.4747,
- 47.68116
- ],
- [
- 16.48722,
- 47.69798
- ],
- [
- 16.55217,
- 47.72255
- ],
- [
- 16.53638,
- 47.73678
- ],
- [
- 16.54798,
- 47.75154
- ],
- [
- 16.60952,
- 47.76037
- ],
- [
- 16.63441,
- 47.75908
- ],
- [
- 16.65729,
- 47.74149
- ],
- [
- 16.72094,
- 47.73536
- ],
- [
- 16.75341,
- 47.68282
- ],
- [
- 16.83016,
- 47.68106
- ],
- [
- 16.83943,
- 47.70451
- ],
- [
- 16.86689,
- 47.72115
- ],
- [
- 16.87668,
- 47.68765
- ],
- [
- 17.09374,
- 47.70777
- ],
- [
- 17.07066,
- 47.72854
- ],
- [
- 17.0516,
- 47.79385
- ],
- [
- 17.07495,
- 47.8085
- ],
- [
- 17.04714,
- 47.82856
- ],
- [
- 17.05195,
- 47.83777
- ],
- [
- 17.01055,
- 47.85818
- ],
- [
- 17.01639,
- 47.86733
- ],
- [
- 17.08575,
- 47.87462
- ],
- [
- 17.11317,
- 47.92716
- ],
- [
- 17.09171,
- 47.93429
- ],
- [
- 17.11838,
- 47.96011
- ],
- [
- 17.09466,
- 47.97088
- ],
- [
- 17.20103,
- 48.01999
- ],
- [
- 17.24177,
- 48.02247
- ],
- [
- 17.25795,
- 47.99865
- ],
- [
- 17.33465,
- 47.99312
- ],
- [
- 17.40299,
- 47.94785
- ],
- [
- 17.45392,
- 47.88526
- ],
- [
- 17.52674,
- 47.86551
- ],
- [
- 17.56758,
- 47.81513
- ],
- [
- 17.6084,
- 47.82189
- ],
- [
- 17.70858,
- 47.75668
- ],
- [
- 17.77987,
- 47.73949
- ],
- [
- 17.8661,
- 47.74575
- ],
- [
- 17.90013,
- 47.73926
- ],
- [
- 17.94687,
- 47.74467
- ],
- [
- 17.97087,
- 47.75784
- ],
- [
- 18.00441,
- 47.74634
- ],
- [
- 18.03806,
- 47.75768
- ],
- [
- 18.29588,
- 47.73146
- ],
- [
- 18.45407,
- 47.76512
- ],
- [
- 18.49316,
- 47.75276
- ],
- [
- 18.55908,
- 47.766
- ],
- [
- 18.64609,
- 47.75909
- ],
- [
- 18.72607,
- 47.78904
- ],
- [
- 18.74118,
- 47.81382
- ],
- [
- 18.792,
- 47.82309
- ],
- [
- 18.84854,
- 47.81672
- ],
- [
- 18.85588,
- 47.82608
- ],
- [
- 18.82801,
- 47.83429
- ],
- [
- 18.81357,
- 47.85555
- ],
- [
- 18.76353,
- 47.8716
- ],
- [
- 18.75686,
- 47.89684
- ],
- [
- 18.77675,
- 47.95509
- ],
- [
- 18.75525,
- 47.97635
- ],
- [
- 18.81574,
- 47.99344
- ],
- [
- 18.82,
- 48.03968
- ],
- [
- 18.83327,
- 48.04824
- ],
- [
- 18.87494,
- 48.04707
- ],
- [
- 18.88667,
- 48.05868
- ],
- [
- 18.90898,
- 48.05114
- ],
- [
- 18.9439,
- 48.05886
- ],
- [
- 18.98161,
- 48.0536
- ],
- [
- 19.01486,
- 48.07818
- ],
- [
- 19.05852,
- 48.05735
- ],
- [
- 19.08436,
- 48.07278
- ],
- [
- 19.1074,
- 48.0656
- ],
- [
- 19.13529,
- 48.07415
- ],
- [
- 19.24137,
- 48.05365
- ],
- [
- 19.25578,
- 48.07156
- ],
- [
- 19.30311,
- 48.08871
- ],
- [
- 19.3866,
- 48.09191
- ],
- [
- 19.40002,
- 48.0823
- ],
- [
- 19.45405,
- 48.10144
- ],
- [
- 19.46735,
- 48.08393
- ],
- [
- 19.49442,
- 48.10991
- ],
- [
- 19.49238,
- 48.13966
- ],
- [
- 19.51282,
- 48.15466
- ],
- [
- 19.50452,
- 48.17344
- ],
- [
- 19.52897,
- 48.19036
- ],
- [
- 19.52604,
- 48.20313
- ],
- [
- 19.5775,
- 48.21601
- ],
- [
- 19.63083,
- 48.25007
- ],
- [
- 19.64452,
- 48.23917
- ],
- [
- 19.66986,
- 48.23921
- ],
- [
- 19.69122,
- 48.20389
- ],
- [
- 19.72113,
- 48.20147
- ],
- [
- 19.74618,
- 48.21651
- ],
- [
- 19.78716,
- 48.19253
- ],
- [
- 19.79873,
- 48.19482
- ],
- [
- 19.80528,
- 48.18373
- ],
- [
- 19.78242,
- 48.16504
- ],
- [
- 19.79481,
- 48.15353
- ],
- [
- 19.82133,
- 48.16908
- ],
- [
- 19.84528,
- 48.16274
- ],
- [
- 19.85517,
- 48.17843
- ],
- [
- 19.86013,
- 48.16941
- ],
- [
- 19.89875,
- 48.16631
- ],
- [
- 19.91454,
- 48.14686
- ],
- [
- 19.8983,
- 48.1249
- ],
- [
- 19.93738,
- 48.13112
- ],
- [
- 19.97439,
- 48.166
- ],
- [
- 19.98871,
- 48.16217
- ],
- [
- 20.02904,
- 48.17768
- ],
- [
- 20.04945,
- 48.1672
- ],
- [
- 20.07299,
- 48.17961
- ],
- [
- 20.07004,
- 48.1917
- ],
- [
- 20.13409,
- 48.22518
- ],
- [
- 20.13319,
- 48.25398
- ],
- [
- 20.20616,
- 48.25098
- ],
- [
- 20.20383,
- 48.26191
- ],
- [
- 20.22847,
- 48.26278
- ],
- [
- 20.23495,
- 48.27993
- ],
- [
- 20.28686,
- 48.26164
- ],
- [
- 20.32571,
- 48.27279
- ],
- [
- 20.33746,
- 48.30167
- ],
- [
- 20.36566,
- 48.31661
- ],
- [
- 20.38408,
- 48.35118
- ],
- [
- 20.40983,
- 48.36586
- ],
- [
- 20.40253,
- 48.38256
- ],
- [
- 20.42053,
- 48.40386
- ],
- [
- 20.41623,
- 48.41854
- ],
- [
- 20.50793,
- 48.48936
- ],
- [
- 20.50651,
- 48.53442
- ],
- [
- 20.53747,
- 48.52788
- ],
- [
- 20.54649,
- 48.54429
- ],
- [
- 20.58659,
- 48.53576
- ],
- [
- 20.65387,
- 48.56141
- ],
- [
- 20.83636,
- 48.58284
- ],
- [
- 20.8378,
- 48.57421
- ],
- [
- 20.85044,
- 48.58163
- ],
- [
- 20.84533,
- 48.5665
- ],
- [
- 20.86815,
- 48.55182
- ],
- [
- 20.92232,
- 48.55945
- ],
- [
- 20.93463,
- 48.53834
- ],
- [
- 20.95588,
- 48.53396
- ],
- [
- 20.9562,
- 48.52167
- ],
- [
- 20.98158,
- 48.51777
- ],
- [
- 21.01511,
- 48.53231
- ],
- [
- 21.06632,
- 48.52589
- ],
- [
- 21.11745,
- 48.49105
- ],
- [
- 21.16087,
- 48.5215
- ],
- [
- 21.17963,
- 48.51823
- ],
- [
- 21.22106,
- 48.5375
- ],
- [
- 21.30549,
- 48.52225
- ],
- [
- 21.31338,
- 48.55084
- ],
- [
- 21.32688,
- 48.55413
- ],
- [
- 21.31938,
- 48.5612
- ],
- [
- 21.41545,
- 48.55895
- ],
- [
- 21.42266,
- 48.57882
- ],
- [
- 21.44061,
- 48.5851
- ],
- [
- 21.51409,
- 48.55107
- ],
- [
- 21.54202,
- 48.5084
- ],
- [
- 21.61393,
- 48.50942
- ],
- [
- 21.62019,
- 48.46983
- ],
- [
- 21.66355,
- 48.41796
- ],
- [
- 21.66456,
- 48.39216
- ],
- [
- 21.70174,
- 48.3807
- ],
- [
- 21.71187,
- 48.35762
- ],
- [
- 21.81741,
- 48.33279
- ],
- [
- 21.8352,
- 48.33464
- ],
- [
- 21.83721,
- 48.36325
- ],
- [
- 21.8843,
- 48.35605
- ],
- [
- 21.88484,
- 48.36754
- ],
- [
- 21.89788,
- 48.36256
- ],
- [
- 21.8998,
- 48.37022
- ],
- [
- 21.92819,
- 48.3616
- ],
- [
- 21.92681,
- 48.3709
- ],
- [
- 21.9492,
- 48.37873
- ],
- [
- 21.99446,
- 48.37732
- ],
- [
- 22.02133,
- 48.39275
- ],
- [
- 22.0546,
- 48.37753
- ],
- [
- 22.07649,
- 48.38724
- ],
- [
- 22.08674,
- 48.37156
- ],
- [
- 22.13591,
- 48.38052
- ],
- [
- 22.13106,
- 48.39123
- ],
- [
- 22.15277,
- 48.39624
- ],
- [
- 22.15619,
- 48.40931
- ],
- [
- 22.21257,
- 48.42565
- ],
- [
- 22.23714,
- 48.41004
- ],
- [
- 22.26549,
- 48.40987
- ],
- [
- 22.23988,
- 48.38701
- ],
- [
- 22.26757,
- 48.36116
- ],
- [
- 22.31781,
- 48.35454
- ],
- [
- 22.31329,
- 48.32507
- ],
- [
- 22.33729,
- 48.30791
- ],
- [
- 22.33843,
- 48.27921
- ],
- [
- 22.38475,
- 48.23396
- ],
- [
- 22.40064,
- 48.2492
- ],
- [
- 22.43284,
- 48.25252
- ],
- [
- 22.45639,
- 48.24231
- ],
- [
- 22.4899,
- 48.25342
- ],
- [
- 22.49722,
- 48.23955
- ],
- [
- 22.51615,
- 48.23797
- ],
- [
- 22.53111,
- 48.20943
- ],
- [
- 22.57114,
- 48.19614
- ],
- [
- 22.56164,
- 48.18161
- ],
- [
- 22.59824,
- 48.14476
- ],
- [
- 22.59028,
- 48.10734
- ],
- [
- 22.67545,
- 48.092
- ],
- [
- 22.73472,
- 48.11985
- ],
- [
- 22.75762,
- 48.12006
- ],
- [
- 22.77039,
- 48.10902
- ],
- [
- 22.77232,
- 48.12187
- ],
- [
- 22.80277,
- 48.12211
- ],
- [
- 22.80253,
- 48.10708
- ],
- [
- 22.82543,
- 48.11751
- ],
- [
- 22.83644,
- 48.08025
- ],
- [
- 22.86113,
- 48.07503
- ],
- [
- 22.8678,
- 48.05243
- ],
- [
- 22.88204,
- 48.05481
- ],
- [
- 22.86597,
- 48.01132
- ],
- [
- 22.83556,
- 47.9906
- ],
- [
- 22.84076,
- 47.98136
- ],
- [
- 22.87257,
- 47.97527
- ],
- [
- 22.86973,
- 47.96596
- ],
- [
- 22.89157,
- 47.96724
- ],
- [
- 22.89744,
- 47.95406
- ],
- [
- 22.84733,
- 47.90776
- ],
- [
- 22.79281,
- 47.89086
- ],
- [
- 22.75869,
- 47.89414
- ],
- [
- 22.77775,
- 47.84225
- ],
- [
- 22.71363,
- 47.83609
- ],
- [
- 22.68019,
- 47.78775
- ],
- [
- 22.61112,
- 47.77175
- ],
- [
- 22.549,
- 47.77222
- ],
- [
- 22.48121,
- 47.81089
- ],
- [
- 22.45131,
- 47.80339
- ],
- [
- 22.43133,
- 47.73981
- ],
- [
- 22.35662,
- 47.74862
- ],
- [
- 22.31777,
- 47.76609
- ],
- [
- 22.31762,
- 47.74337
- ],
- [
- 22.28514,
- 47.72928
- ],
- [
- 22.26432,
- 47.73107
- ],
- [
- 22.259,
- 47.69791
- ],
- [
- 22.23068,
- 47.6932
- ],
- [
- 22.17965,
- 47.59161
- ],
- [
- 22.12892,
- 47.5979
- ],
- [
- 22.09428,
- 47.55836
- ],
- [
- 22.07826,
- 47.56213
- ],
- [
- 22.05345,
- 47.54748
- ],
- [
- 22.07122,
- 47.53807
- ],
- [
- 22.06179,
- 47.5288
- ],
- [
- 22.04513,
- 47.53989
- ],
- [
- 22.03672,
- 47.53267
- ],
- [
- 22.00719,
- 47.48362
- ],
- [
- 22.03279,
- 47.45084
- ],
- [
- 22.02388,
- 47.39086
- ],
- [
- 22.01198,
- 47.3758
- ],
- [
- 21.96274,
- 47.38105
- ],
- [
- 21.93825,
- 47.37253
- ],
- [
- 21.87779,
- 47.28578
- ],
- [
- 21.88728,
- 47.27305
- ],
- [
- 21.85349,
- 47.23976
- ],
- [
- 21.85807,
- 47.18736
- ],
- [
- 21.81248,
- 47.16675
- ],
- [
- 21.79241,
- 47.10598
- ],
- [
- 21.72683,
- 47.09839
- ],
- [
- 21.6976,
- 47.05792
- ],
- [
- 21.65042,
- 47.04083
- ],
- [
- 21.68887,
- 47.002
- ],
- [
- 21.66787,
- 46.97123
- ],
- [
- 21.68149,
- 46.96521
- ],
- [
- 21.6382,
- 46.93305
- ],
- [
- 21.59845,
- 46.92747
- ],
- [
- 21.61429,
- 46.88673
- ],
- [
- 21.60167,
- 46.86682
- ],
- [
- 21.52033,
- 46.83737
- ],
- [
- 21.51861,
- 46.80007
- ],
- [
- 21.48318,
- 46.76502
- ],
- [
- 21.52634,
- 46.73932
- ],
- [
- 21.52937,
- 46.72097
- ],
- [
- 21.49233,
- 46.68597
- ],
- [
- 21.47284,
- 46.69591
- ],
- [
- 21.4299,
- 46.69394
- ],
- [
- 21.43096,
- 46.67814
- ],
- [
- 21.45467,
- 46.66086
- ],
- [
- 21.41624,
- 46.64262
- ],
- [
- 21.4098,
- 46.62181
- ],
- [
- 21.3657,
- 46.63795
- ],
- [
- 21.33005,
- 46.63182
- ],
- [
- 21.31397,
- 46.61767
- ],
- [
- 21.30124,
- 46.59087
- ],
- [
- 21.32079,
- 46.58286
- ],
- [
- 21.2743,
- 46.54074
- ],
- [
- 21.26003,
- 46.50216
- ],
- [
- 21.27442,
- 46.47673
- ],
- [
- 21.29645,
- 46.4763
- ],
- [
- 21.31743,
- 46.45073
- ],
- [
- 21.28952,
- 46.41548
- ],
- [
- 21.29633,
- 46.40696
- ],
- [
- 21.22501,
- 46.41369
- ],
- [
- 21.20642,
- 46.40338
- ],
- [
- 21.19926,
- 46.3479
- ],
- [
- 21.17623,
- 46.33577
- ],
- [
- 21.1805,
- 46.30445
- ],
- [
- 21.11554,
- 46.30185
- ],
- [
- 21.10305,
- 46.26246
- ],
- [
- 21.07088,
- 46.2539
- ],
- [
- 21.06608,
- 46.24294
- ],
- [
- 21.03662,
- 46.24804
- ],
- [
- 21.02467,
- 46.26653
- ],
- [
- 20.96082,
- 46.2623
- ],
- [
- 20.94658,
- 46.2793
- ],
- [
- 20.92507,
- 46.27662
- ],
- [
- 20.92181,
- 46.26181
- ],
- [
- 20.87327,
- 46.28776
- ],
- [
- 20.77565,
- 46.27596
- ],
- [
- 20.74905,
- 46.25085
- ],
- [
- 20.76186,
- 46.20456
- ],
- [
- 20.7274,
- 46.20775
- ],
- [
- 20.73411,
- 46.19394
- ],
- [
- 20.71405,
- 46.16605
- ],
- [
- 20.68436,
- 46.14478
- ],
- [
- 20.65492,
- 46.14977
- ],
- [
- 20.63945,
- 46.12676
- ],
- [
- 20.54505,
- 46.17909
- ],
- [
- 20.50148,
- 46.19033
- ],
- [
- 20.49494,
- 46.17099
- ],
- [
- 20.45923,
- 46.14288
- ],
- [
- 20.39751,
- 46.15747
- ],
- [
- 20.36853,
- 46.15286
- ],
- [
- 20.35571,
- 46.16963
- ],
- [
- 20.29681,
- 46.15215
- ],
- [
- 20.2549,
- 46.11585
- ],
- [
- 20.24848,
- 46.1301
- ],
- [
- 20.23301,
- 46.12417
- ],
- [
- 20.18174,
- 46.16011
- ],
- [
- 20.1365,
- 46.14495
- ],
- [
- 20.10097,
- 46.17728
- ],
- [
- 20.06362,
- 46.14373
- ],
- [
- 20.03461,
- 46.14589
- ],
- [
- 20.01581,
- 46.17684
- ],
- [
- 19.93541,
- 46.17642
- ],
- [
- 19.85335,
- 46.15
- ],
- [
- 19.81797,
- 46.12817
- ],
- [
- 19.75854,
- 46.14798
- ],
- [
- 19.69821,
- 46.18793
- ],
- [
- 19.68277,
- 46.18004
- ],
- [
- 19.66151,
- 46.19044
- ],
- [
- 19.63174,
- 46.1693
- ],
- [
- 19.56765,
- 46.17911
- ],
- [
- 19.5604,
- 46.16658
- ],
- [
- 19.50266,
- 46.14245
- ],
- [
- 19.52712,
- 46.12103
- ],
- [
- 19.4645,
- 46.09538
- ],
- [
- 19.46658,
- 46.08204
- ],
- [
- 19.416,
- 46.04605
- ],
- [
- 19.3804,
- 46.03587
- ],
- [
- 19.36409,
- 46.0523
- ],
- [
- 19.2819,
- 46.0148
- ],
- [
- 19.29653,
- 45.98812
- ],
- [
- 19.28565,
- 45.9969
- ],
- [
- 19.14799,
- 45.99634
- ],
- [
- 19.13384,
- 46.0371
- ],
- [
- 19.10487,
- 46.04017
- ],
- [
- 19.06604,
- 46.0002
- ],
- [
- 19.07968,
- 45.96364
- ],
- [
- 19.00598,
- 45.95907
- ],
- [
- 19.00927,
- 45.92366
- ],
- [
- 18.90613,
- 45.93538
- ],
- [
- 18.87946,
- 45.91668
- ],
- [
- 18.86471,
- 45.92085
- ],
- [
- 18.86856,
- 45.91134
- ],
- [
- 18.82768,
- 45.90517
- ],
- [
- 18.822,
- 45.91459
- ],
- [
- 18.80751,
- 45.90361
- ],
- [
- 18.80925,
- 45.87962
- ],
- [
- 18.79562,
- 45.87845
- ],
- [
- 18.70489,
- 45.91819
- ],
- [
- 18.67002,
- 45.91084
- ],
- [
- 18.65966,
- 45.91689
- ],
- [
- 18.66513,
- 45.89928
- ],
- [
- 18.64128,
- 45.88904
- ],
- [
- 18.65502,
- 45.87424
- ],
- [
- 18.62777,
- 45.87338
- ],
- [
- 18.61484,
- 45.85314
- ],
- [
- 18.62367,
- 45.83985
- ],
- [
- 18.57324,
- 45.81376
- ],
- [
- 18.57498,
- 45.80043
- ],
- [
- 18.55972,
- 45.8038
- ],
- [
- 18.52235,
- 45.78269
- ],
- [
- 18.49067,
- 45.79472
- ],
- [
- 18.48219,
- 45.7655
- ],
- [
- 18.45628,
- 45.76952
- ],
- [
- 18.44508,
- 45.76052
- ],
- [
- 18.44685,
- 45.73713
- ],
- [
- 18.40763,
- 45.73971
- ],
- [
- 18.39189,
- 45.7617
- ],
- [
- 18.36423,
- 45.77294
- ],
- [
- 18.33942,
- 45.74716
- ],
- [
- 18.29682,
- 45.76122
- ],
- [
- 18.24405,
- 45.76123
- ],
- [
- 18.23073,
- 45.77903
- ],
- [
- 18.19087,
- 45.78788
- ],
- [
- 18.16819,
- 45.77627
- ],
- [
- 18.12465,
- 45.78963
- ],
- [
- 18.10681,
- 45.77083
- ],
- [
- 18.08189,
- 45.76452
- ],
- [
- 17.99588,
- 45.79573
- ],
- [
- 17.93021,
- 45.78633
- ],
- [
- 17.90668,
- 45.79257
- ],
- [
- 17.86531,
- 45.76701
- ],
- [
- 17.82627,
- 45.81
- ],
- [
- 17.80898,
- 45.8041
- ],
- [
- 17.78091,
- 45.81749
- ],
- [
- 17.76034,
- 45.81192
- ],
- [
- 17.74086,
- 45.8296
- ],
- [
- 17.66329,
- 45.83818
- ],
- [
- 17.62762,
- 45.89794
- ],
- [
- 17.57007,
- 45.93582
- ],
- [
- 17.43783,
- 45.95038
- ],
- [
- 17.4259,
- 45.92727
- ],
- [
- 17.41081,
- 45.93997
- ],
- [
- 17.39215,
- 45.93021
- ],
- [
- 17.38287,
- 45.94757
- ],
- [
- 17.34762,
- 45.94234
- ],
- [
- 17.34388,
- 45.96053
- ],
- [
- 17.35377,
- 45.9525
- ],
- [
- 17.39054,
- 45.95819
- ],
- [
- 17.38742,
- 45.96618
- ],
- [
- 17.35835,
- 45.96427
- ],
- [
- 17.37549,
- 45.96869
- ],
- [
- 17.37519,
- 45.98811
- ],
- [
- 17.36357,
- 45.99154
- ],
- [
- 17.35672,
- 45.97358
- ],
- [
- 17.33396,
- 45.99608
- ],
- [
- 17.33198,
- 45.97289
- ],
- [
- 17.313,
- 45.96653
- ],
- [
- 17.32365,
- 45.98878
- ],
- [
- 17.29877,
- 45.98387
- ],
- [
- 17.3042,
- 46.00211
- ],
- [
- 17.25797,
- 46.01103
- ],
- [
- 17.29632,
- 46.02852
- ],
- [
- 17.25415,
- 46.03001
- ],
- [
- 17.27096,
- 46.05671
- ],
- [
- 17.23248,
- 46.0592
- ],
- [
- 17.25251,
- 46.06647
- ],
- [
- 17.23131,
- 46.07903
- ],
- [
- 17.20199,
- 46.07655
- ],
- [
- 17.23313,
- 46.09896
- ],
- [
- 17.2104,
- 46.10017
- ],
- [
- 17.21297,
- 46.11386
- ],
- [
- 17.17593,
- 46.10846
- ],
- [
- 17.17434,
- 46.12876
- ],
- [
- 17.18652,
- 46.13323
- ],
- [
- 17.1811,
- 46.15055
- ],
- [
- 17.15623,
- 46.15858
- ],
- [
- 17.15929,
- 46.16968
- ],
- [
- 17.1261,
- 46.16845
- ],
- [
- 17.12274,
- 46.17898
- ],
- [
- 17.07525,
- 46.18895
- ],
- [
- 17.06616,
- 46.2023
- ],
- [
- 16.97354,
- 46.2252
- ],
- [
- 16.97395,
- 46.24311
- ],
- [
- 16.95041,
- 46.24153
- ],
- [
- 16.88624,
- 46.28146
- ],
- [
- 16.87137,
- 46.32528
- ],
- [
- 16.88021,
- 46.3357
- ],
- [
- 16.86154,
- 46.34524
- ],
- [
- 16.86562,
- 46.35565
- ],
- [
- 16.8522,
- 46.35172
- ],
- [
- 16.84986,
- 46.36262
- ],
- [
- 16.83529,
- 46.36382
- ],
- [
- 16.83765,
- 46.3748
- ],
- [
- 16.82617,
- 46.3671
- ],
- [
- 16.79334,
- 46.38739
- ],
- [
- 16.75921,
- 46.37766
- ],
- [
- 16.72987,
- 46.40149
- ],
- [
- 16.71821,
- 46.38987
- ],
- [
- 16.67729,
- 46.44945
- ],
- [
- 16.66318,
- 46.4487
- ],
- [
- 16.66637,
- 46.4583
- ],
- [
- 16.61879,
- 46.46199
- ],
- [
- 16.60447,
- 46.47608
- ],
- [
- 16.5236,
- 46.50538
- ],
- [
- 16.53258,
- 46.5314
- ],
- [
- 16.51767,
- 46.53635
- ],
- [
- 16.50841,
- 46.56527
- ],
- [
- 16.483,
- 46.56604
- ],
- [
- 16.4834,
- 46.5786
- ],
- [
- 16.44557,
- 46.61095
- ],
- [
- 16.42486,
- 46.61316
- ],
- [
- 16.38594,
- 46.64425
- ],
- [
- 16.39154,
- 46.66373
- ],
- [
- 16.41985,
- 46.65848
- ],
- [
- 16.42863,
- 46.69397
- ],
- [
- 16.36892,
- 46.70401
- ],
- [
- 16.37983,
- 46.71539
- ],
- [
- 16.37109,
- 46.72229
- ],
- [
- 16.35706,
- 46.71424
- ],
- [
- 16.3186,
- 46.75414
- ],
- [
- 16.33054,
- 46.77521
- ],
- [
- 16.31216,
- 46.778
- ],
- [
- 16.31277,
- 46.79731
- ],
- [
- 16.34064,
- 46.80519
- ],
- [
- 16.35084,
- 46.83006
- ],
- [
- 16.34033,
- 46.84688
- ],
- [
- 16.3015,
- 46.85951
- ],
- [
- 16.29139,
- 46.87283
- ],
- [
- 16.23323,
- 46.87667
- ],
- [
- 16.15609,
- 46.85371
- ],
- [
- 16.12657,
- 46.85691
- ],
- [
- 16.11391,
- 46.8691
- ]
- ]
- ],
- "terms_url": "https://www.fomi.hu",
- "terms_text": "Földmérési és Távérzékelési Intézet"
- },
- {
- "id": "FOMI_2005",
- "name": "FÖMI orthophoto 2005",
- "type": "tms",
- "template": "http://e.tile.openstreetmap.hu/ortofoto2005/{zoom}/{x}/{y}.jpg",
- "endDate": "2005-01-01T00:00:00.000Z",
- "startDate": "2005-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 17
- ],
- "polygon": [
- [
- [
- 16.11391,
- 46.8691
- ],
- [
- 16.17897,
- 46.90662
- ],
- [
- 16.20004,
- 46.94151
- ],
- [
- 16.22175,
- 46.93554
- ],
- [
- 16.24628,
- 46.94639
- ],
- [
- 16.25532,
- 46.96421
- ],
- [
- 16.27647,
- 46.96261
- ],
- [
- 16.29058,
- 47.01398
- ],
- [
- 16.30162,
- 46.99923
- ],
- [
- 16.34146,
- 46.99652
- ],
- [
- 16.35052,
- 47.01063
- ],
- [
- 16.3734,
- 46.99859
- ],
- [
- 16.41277,
- 47.00475
- ],
- [
- 16.43327,
- 46.99274
- ],
- [
- 16.44781,
- 47.00389
- ],
- [
- 16.48,
- 46.99412
- ],
- [
- 16.5122,
- 47.00117
- ],
- [
- 16.46356,
- 47.03227
- ],
- [
- 16.44786,
- 47.02275
- ],
- [
- 16.43912,
- 47.02966
- ],
- [
- 16.44567,
- 47.03887
- ],
- [
- 16.52032,
- 47.0561
- ],
- [
- 16.47321,
- 47.07362
- ],
- [
- 16.46372,
- 47.09392
- ],
- [
- 16.5008,
- 47.11006
- ],
- [
- 16.50004,
- 47.12329
- ],
- [
- 16.52953,
- 47.12874
- ],
- [
- 16.51716,
- 47.14969
- ],
- [
- 16.45495,
- 47.14259
- ],
- [
- 16.46487,
- 47.16833
- ],
- [
- 16.45556,
- 47.18756
- ],
- [
- 16.43056,
- 47.1847
- ],
- [
- 16.4195,
- 47.19491
- ],
- [
- 16.41892,
- 47.21071
- ],
- [
- 16.43713,
- 47.2097
- ],
- [
- 16.44263,
- 47.23371
- ],
- [
- 16.43131,
- 47.25276
- ],
- [
- 16.46715,
- 47.25317
- ],
- [
- 16.48923,
- 47.27989
- ],
- [
- 16.46463,
- 47.33385
- ],
- [
- 16.4337,
- 47.35281
- ],
- [
- 16.45851,
- 47.36705
- ],
- [
- 16.44546,
- 47.40702
- ],
- [
- 16.48317,
- 47.40936
- ],
- [
- 16.49638,
- 47.38927
- ],
- [
- 16.51709,
- 47.41002
- ],
- [
- 16.57491,
- 47.40542
- ],
- [
- 16.58073,
- 47.41917
- ],
- [
- 16.66185,
- 47.4556
- ],
- [
- 16.67064,
- 47.47422
- ],
- [
- 16.65234,
- 47.50034
- ],
- [
- 16.68956,
- 47.51016
- ],
- [
- 16.71478,
- 47.5402
- ],
- [
- 16.66354,
- 47.56773
- ],
- [
- 16.6732,
- 47.60495
- ],
- [
- 16.65953,
- 47.6061
- ],
- [
- 16.65276,
- 47.62285
- ],
- [
- 16.63142,
- 47.62832
- ],
- [
- 16.57391,
- 47.61967
- ],
- [
- 16.51474,
- 47.6462
- ],
- [
- 16.49675,
- 47.63931
- ],
- [
- 16.42546,
- 47.66217
- ],
- [
- 16.44374,
- 47.67421
- ],
- [
- 16.44805,
- 47.69647
- ],
- [
- 16.4747,
- 47.68116
- ],
- [
- 16.48722,
- 47.69798
- ],
- [
- 16.55217,
- 47.72255
- ],
- [
- 16.53638,
- 47.73678
- ],
- [
- 16.54798,
- 47.75154
- ],
- [
- 16.60952,
- 47.76037
- ],
- [
- 16.63441,
- 47.75908
- ],
- [
- 16.65729,
- 47.74149
- ],
- [
- 16.72094,
- 47.73536
- ],
- [
- 16.75341,
- 47.68282
- ],
- [
- 16.83016,
- 47.68106
- ],
- [
- 16.83943,
- 47.70451
- ],
- [
- 16.86689,
- 47.72115
- ],
- [
- 16.87668,
- 47.68765
- ],
- [
- 17.09374,
- 47.70777
- ],
- [
- 17.07066,
- 47.72854
- ],
- [
- 17.0516,
- 47.79385
- ],
- [
- 17.07495,
- 47.8085
- ],
- [
- 17.04714,
- 47.82856
- ],
- [
- 17.05195,
- 47.83777
- ],
- [
- 17.01055,
- 47.85818
- ],
- [
- 17.01639,
- 47.86733
- ],
- [
- 17.08575,
- 47.87462
- ],
- [
- 17.11317,
- 47.92716
- ],
- [
- 17.09171,
- 47.93429
- ],
- [
- 17.11838,
- 47.96011
- ],
- [
- 17.09466,
- 47.97088
- ],
- [
- 17.20103,
- 48.01999
- ],
- [
- 17.24177,
- 48.02247
- ],
- [
- 17.25795,
- 47.99865
- ],
- [
- 17.33465,
- 47.99312
- ],
- [
- 17.40299,
- 47.94785
- ],
- [
- 17.45392,
- 47.88526
- ],
- [
- 17.52674,
- 47.86551
- ],
- [
- 17.56758,
- 47.81513
- ],
- [
- 17.6084,
- 47.82189
- ],
- [
- 17.70858,
- 47.75668
- ],
- [
- 17.77987,
- 47.73949
- ],
- [
- 17.8661,
- 47.74575
- ],
- [
- 17.90013,
- 47.73926
- ],
- [
- 17.94687,
- 47.74467
- ],
- [
- 17.97087,
- 47.75784
- ],
- [
- 18.00441,
- 47.74634
- ],
- [
- 18.03806,
- 47.75768
- ],
- [
- 18.29588,
- 47.73146
- ],
- [
- 18.45407,
- 47.76512
- ],
- [
- 18.49316,
- 47.75276
- ],
- [
- 18.55908,
- 47.766
- ],
- [
- 18.64609,
- 47.75909
- ],
- [
- 18.72607,
- 47.78904
- ],
- [
- 18.74118,
- 47.81382
- ],
- [
- 18.792,
- 47.82309
- ],
- [
- 18.84854,
- 47.81672
- ],
- [
- 18.85588,
- 47.82608
- ],
- [
- 18.82801,
- 47.83429
- ],
- [
- 18.81357,
- 47.85555
- ],
- [
- 18.76353,
- 47.8716
- ],
- [
- 18.75686,
- 47.89684
- ],
- [
- 18.77675,
- 47.95509
- ],
- [
- 18.75525,
- 47.97635
- ],
- [
- 18.81574,
- 47.99344
- ],
- [
- 18.82,
- 48.03968
- ],
- [
- 18.83327,
- 48.04824
- ],
- [
- 18.87494,
- 48.04707
- ],
- [
- 18.88667,
- 48.05868
- ],
- [
- 18.90898,
- 48.05114
- ],
- [
- 18.9439,
- 48.05886
- ],
- [
- 18.98161,
- 48.0536
- ],
- [
- 19.01486,
- 48.07818
- ],
- [
- 19.05852,
- 48.05735
- ],
- [
- 19.08436,
- 48.07278
- ],
- [
- 19.1074,
- 48.0656
- ],
- [
- 19.13529,
- 48.07415
- ],
- [
- 19.24137,
- 48.05365
- ],
- [
- 19.25578,
- 48.07156
- ],
- [
- 19.30311,
- 48.08871
- ],
- [
- 19.3866,
- 48.09191
- ],
- [
- 19.40002,
- 48.0823
- ],
- [
- 19.45405,
- 48.10144
- ],
- [
- 19.46735,
- 48.08393
- ],
- [
- 19.49442,
- 48.10991
- ],
- [
- 19.49238,
- 48.13966
- ],
- [
- 19.51282,
- 48.15466
- ],
- [
- 19.50452,
- 48.17344
- ],
- [
- 19.52897,
- 48.19036
- ],
- [
- 19.52604,
- 48.20313
- ],
- [
- 19.5775,
- 48.21601
- ],
- [
- 19.63083,
- 48.25007
- ],
- [
- 19.64452,
- 48.23917
- ],
- [
- 19.66986,
- 48.23921
- ],
- [
- 19.69122,
- 48.20389
- ],
- [
- 19.72113,
- 48.20147
- ],
- [
- 19.74618,
- 48.21651
- ],
- [
- 19.78716,
- 48.19253
- ],
- [
- 19.79873,
- 48.19482
- ],
- [
- 19.80528,
- 48.18373
- ],
- [
- 19.78242,
- 48.16504
- ],
- [
- 19.79481,
- 48.15353
- ],
- [
- 19.82133,
- 48.16908
- ],
- [
- 19.84528,
- 48.16274
- ],
- [
- 19.85517,
- 48.17843
- ],
- [
- 19.86013,
- 48.16941
- ],
- [
- 19.89875,
- 48.16631
- ],
- [
- 19.91454,
- 48.14686
- ],
- [
- 19.8983,
- 48.1249
- ],
- [
- 19.93738,
- 48.13112
- ],
- [
- 19.97439,
- 48.166
- ],
- [
- 19.98871,
- 48.16217
- ],
- [
- 20.02904,
- 48.17768
- ],
- [
- 20.04945,
- 48.1672
- ],
- [
- 20.07299,
- 48.17961
- ],
- [
- 20.07004,
- 48.1917
- ],
- [
- 20.13409,
- 48.22518
- ],
- [
- 20.13319,
- 48.25398
- ],
- [
- 20.20616,
- 48.25098
- ],
- [
- 20.20383,
- 48.26191
- ],
- [
- 20.22847,
- 48.26278
- ],
- [
- 20.23495,
- 48.27993
- ],
- [
- 20.28686,
- 48.26164
- ],
- [
- 20.32571,
- 48.27279
- ],
- [
- 20.33746,
- 48.30167
- ],
- [
- 20.36566,
- 48.31661
- ],
- [
- 20.38408,
- 48.35118
- ],
- [
- 20.40983,
- 48.36586
- ],
- [
- 20.40253,
- 48.38256
- ],
- [
- 20.42053,
- 48.40386
- ],
- [
- 20.41623,
- 48.41854
- ],
- [
- 20.50793,
- 48.48936
- ],
- [
- 20.50651,
- 48.53442
- ],
- [
- 20.53747,
- 48.52788
- ],
- [
- 20.54649,
- 48.54429
- ],
- [
- 20.58659,
- 48.53576
- ],
- [
- 20.65387,
- 48.56141
- ],
- [
- 20.83636,
- 48.58284
- ],
- [
- 20.8378,
- 48.57421
- ],
- [
- 20.85044,
- 48.58163
- ],
- [
- 20.84533,
- 48.5665
- ],
- [
- 20.86815,
- 48.55182
- ],
- [
- 20.92232,
- 48.55945
- ],
- [
- 20.93463,
- 48.53834
- ],
- [
- 20.95588,
- 48.53396
- ],
- [
- 20.9562,
- 48.52167
- ],
- [
- 20.98158,
- 48.51777
- ],
- [
- 21.01511,
- 48.53231
- ],
- [
- 21.06632,
- 48.52589
- ],
- [
- 21.11745,
- 48.49105
- ],
- [
- 21.16087,
- 48.5215
- ],
- [
- 21.17963,
- 48.51823
- ],
- [
- 21.22106,
- 48.5375
- ],
- [
- 21.30549,
- 48.52225
- ],
- [
- 21.31338,
- 48.55084
- ],
- [
- 21.32688,
- 48.55413
- ],
- [
- 21.31938,
- 48.5612
- ],
- [
- 21.41545,
- 48.55895
- ],
- [
- 21.42266,
- 48.57882
- ],
- [
- 21.44061,
- 48.5851
- ],
- [
- 21.51409,
- 48.55107
- ],
- [
- 21.54202,
- 48.5084
- ],
- [
- 21.61393,
- 48.50942
- ],
- [
- 21.62019,
- 48.46983
- ],
- [
- 21.66355,
- 48.41796
- ],
- [
- 21.66456,
- 48.39216
- ],
- [
- 21.70174,
- 48.3807
- ],
- [
- 21.71187,
- 48.35762
- ],
- [
- 21.81741,
- 48.33279
- ],
- [
- 21.8352,
- 48.33464
- ],
- [
- 21.83721,
- 48.36325
- ],
- [
- 21.8843,
- 48.35605
- ],
- [
- 21.88484,
- 48.36754
- ],
- [
- 21.89788,
- 48.36256
- ],
- [
- 21.8998,
- 48.37022
- ],
- [
- 21.92819,
- 48.3616
- ],
- [
- 21.92681,
- 48.3709
- ],
- [
- 21.9492,
- 48.37873
- ],
- [
- 21.99446,
- 48.37732
- ],
- [
- 22.02133,
- 48.39275
- ],
- [
- 22.0546,
- 48.37753
- ],
- [
- 22.07649,
- 48.38724
- ],
- [
- 22.08674,
- 48.37156
- ],
- [
- 22.13591,
- 48.38052
- ],
- [
- 22.13106,
- 48.39123
- ],
- [
- 22.15277,
- 48.39624
- ],
- [
- 22.15619,
- 48.40931
- ],
- [
- 22.21257,
- 48.42565
- ],
- [
- 22.23714,
- 48.41004
- ],
- [
- 22.26549,
- 48.40987
- ],
- [
- 22.23988,
- 48.38701
- ],
- [
- 22.26757,
- 48.36116
- ],
- [
- 22.31781,
- 48.35454
- ],
- [
- 22.31329,
- 48.32507
- ],
- [
- 22.33729,
- 48.30791
- ],
- [
- 22.33843,
- 48.27921
- ],
- [
- 22.38475,
- 48.23396
- ],
- [
- 22.40064,
- 48.2492
- ],
- [
- 22.43284,
- 48.25252
- ],
- [
- 22.45639,
- 48.24231
- ],
- [
- 22.4899,
- 48.25342
- ],
- [
- 22.49722,
- 48.23955
- ],
- [
- 22.51615,
- 48.23797
- ],
- [
- 22.53111,
- 48.20943
- ],
- [
- 22.57114,
- 48.19614
- ],
- [
- 22.56164,
- 48.18161
- ],
- [
- 22.59824,
- 48.14476
- ],
- [
- 22.59028,
- 48.10734
- ],
- [
- 22.67545,
- 48.092
- ],
- [
- 22.73472,
- 48.11985
- ],
- [
- 22.75762,
- 48.12006
- ],
- [
- 22.77039,
- 48.10902
- ],
- [
- 22.77232,
- 48.12187
- ],
- [
- 22.80277,
- 48.12211
- ],
- [
- 22.80253,
- 48.10708
- ],
- [
- 22.82543,
- 48.11751
- ],
- [
- 22.83644,
- 48.08025
- ],
- [
- 22.86113,
- 48.07503
- ],
- [
- 22.8678,
- 48.05243
- ],
- [
- 22.88204,
- 48.05481
- ],
- [
- 22.86597,
- 48.01132
- ],
- [
- 22.83556,
- 47.9906
- ],
- [
- 22.84076,
- 47.98136
- ],
- [
- 22.87257,
- 47.97527
- ],
- [
- 22.86973,
- 47.96596
- ],
- [
- 22.89157,
- 47.96724
- ],
- [
- 22.89744,
- 47.95406
- ],
- [
- 22.84733,
- 47.90776
- ],
- [
- 22.79281,
- 47.89086
- ],
- [
- 22.75869,
- 47.89414
- ],
- [
- 22.77775,
- 47.84225
- ],
- [
- 22.71363,
- 47.83609
- ],
- [
- 22.68019,
- 47.78775
- ],
- [
- 22.61112,
- 47.77175
- ],
- [
- 22.549,
- 47.77222
- ],
- [
- 22.48121,
- 47.81089
- ],
- [
- 22.45131,
- 47.80339
- ],
- [
- 22.43133,
- 47.73981
- ],
- [
- 22.35662,
- 47.74862
- ],
- [
- 22.31777,
- 47.76609
- ],
- [
- 22.31762,
- 47.74337
- ],
- [
- 22.28514,
- 47.72928
- ],
- [
- 22.26432,
- 47.73107
- ],
- [
- 22.259,
- 47.69791
- ],
- [
- 22.23068,
- 47.6932
- ],
- [
- 22.17965,
- 47.59161
- ],
- [
- 22.12892,
- 47.5979
- ],
- [
- 22.09428,
- 47.55836
- ],
- [
- 22.07826,
- 47.56213
- ],
- [
- 22.05345,
- 47.54748
- ],
- [
- 22.07122,
- 47.53807
- ],
- [
- 22.06179,
- 47.5288
- ],
- [
- 22.04513,
- 47.53989
- ],
- [
- 22.03672,
- 47.53267
- ],
- [
- 22.00719,
- 47.48362
- ],
- [
- 22.03279,
- 47.45084
- ],
- [
- 22.02388,
- 47.39086
- ],
- [
- 22.01198,
- 47.3758
- ],
- [
- 21.96274,
- 47.38105
- ],
- [
- 21.93825,
- 47.37253
- ],
- [
- 21.87779,
- 47.28578
- ],
- [
- 21.88728,
- 47.27305
- ],
- [
- 21.85349,
- 47.23976
- ],
- [
- 21.85807,
- 47.18736
- ],
- [
- 21.81248,
- 47.16675
- ],
- [
- 21.79241,
- 47.10598
- ],
- [
- 21.72683,
- 47.09839
- ],
- [
- 21.6976,
- 47.05792
- ],
- [
- 21.65042,
- 47.04083
- ],
- [
- 21.68887,
- 47.002
- ],
- [
- 21.66787,
- 46.97123
- ],
- [
- 21.68149,
- 46.96521
- ],
- [
- 21.6382,
- 46.93305
- ],
- [
- 21.59845,
- 46.92747
- ],
- [
- 21.61429,
- 46.88673
- ],
- [
- 21.60167,
- 46.86682
- ],
- [
- 21.52033,
- 46.83737
- ],
- [
- 21.51861,
- 46.80007
- ],
- [
- 21.48318,
- 46.76502
- ],
- [
- 21.52634,
- 46.73932
- ],
- [
- 21.52937,
- 46.72097
- ],
- [
- 21.49233,
- 46.68597
- ],
- [
- 21.47284,
- 46.69591
- ],
- [
- 21.4299,
- 46.69394
- ],
- [
- 21.43096,
- 46.67814
- ],
- [
- 21.45467,
- 46.66086
- ],
- [
- 21.41624,
- 46.64262
- ],
- [
- 21.4098,
- 46.62181
- ],
- [
- 21.3657,
- 46.63795
- ],
- [
- 21.33005,
- 46.63182
- ],
- [
- 21.31397,
- 46.61767
- ],
- [
- 21.30124,
- 46.59087
- ],
- [
- 21.32079,
- 46.58286
- ],
- [
- 21.2743,
- 46.54074
- ],
- [
- 21.26003,
- 46.50216
- ],
- [
- 21.27442,
- 46.47673
- ],
- [
- 21.29645,
- 46.4763
- ],
- [
- 21.31743,
- 46.45073
- ],
- [
- 21.28952,
- 46.41548
- ],
- [
- 21.29633,
- 46.40696
- ],
- [
- 21.22501,
- 46.41369
- ],
- [
- 21.20642,
- 46.40338
- ],
- [
- 21.19926,
- 46.3479
- ],
- [
- 21.17623,
- 46.33577
- ],
- [
- 21.1805,
- 46.30445
- ],
- [
- 21.11554,
- 46.30185
- ],
- [
- 21.10305,
- 46.26246
- ],
- [
- 21.07088,
- 46.2539
- ],
- [
- 21.06608,
- 46.24294
- ],
- [
- 21.03662,
- 46.24804
- ],
- [
- 21.02467,
- 46.26653
- ],
- [
- 20.96082,
- 46.2623
- ],
- [
- 20.94658,
- 46.2793
- ],
- [
- 20.92507,
- 46.27662
- ],
- [
- 20.92181,
- 46.26181
- ],
- [
- 20.87327,
- 46.28776
- ],
- [
- 20.77565,
- 46.27596
- ],
- [
- 20.74905,
- 46.25085
- ],
- [
- 20.76186,
- 46.20456
- ],
- [
- 20.7274,
- 46.20775
- ],
- [
- 20.73411,
- 46.19394
- ],
- [
- 20.71405,
- 46.16605
- ],
- [
- 20.68436,
- 46.14478
- ],
- [
- 20.65492,
- 46.14977
- ],
- [
- 20.63945,
- 46.12676
- ],
- [
- 20.54505,
- 46.17909
- ],
- [
- 20.50148,
- 46.19033
- ],
- [
- 20.49494,
- 46.17099
- ],
- [
- 20.45923,
- 46.14288
- ],
- [
- 20.39751,
- 46.15747
- ],
- [
- 20.36853,
- 46.15286
- ],
- [
- 20.35571,
- 46.16963
- ],
- [
- 20.29681,
- 46.15215
- ],
- [
- 20.2549,
- 46.11585
- ],
- [
- 20.24848,
- 46.1301
- ],
- [
- 20.23301,
- 46.12417
- ],
- [
- 20.18174,
- 46.16011
- ],
- [
- 20.1365,
- 46.14495
- ],
- [
- 20.10097,
- 46.17728
- ],
- [
- 20.06362,
- 46.14373
- ],
- [
- 20.03461,
- 46.14589
- ],
- [
- 20.01581,
- 46.17684
- ],
- [
- 19.93541,
- 46.17642
- ],
- [
- 19.85335,
- 46.15
- ],
- [
- 19.81797,
- 46.12817
- ],
- [
- 19.75854,
- 46.14798
- ],
- [
- 19.69821,
- 46.18793
- ],
- [
- 19.68277,
- 46.18004
- ],
- [
- 19.66151,
- 46.19044
- ],
- [
- 19.63174,
- 46.1693
- ],
- [
- 19.56765,
- 46.17911
- ],
- [
- 19.5604,
- 46.16658
- ],
- [
- 19.50266,
- 46.14245
- ],
- [
- 19.52712,
- 46.12103
- ],
- [
- 19.4645,
- 46.09538
- ],
- [
- 19.46658,
- 46.08204
- ],
- [
- 19.416,
- 46.04605
- ],
- [
- 19.3804,
- 46.03587
- ],
- [
- 19.36409,
- 46.0523
- ],
- [
- 19.2819,
- 46.0148
- ],
- [
- 19.29653,
- 45.98812
- ],
- [
- 19.28565,
- 45.9969
- ],
- [
- 19.14799,
- 45.99634
- ],
- [
- 19.13384,
- 46.0371
- ],
- [
- 19.10487,
- 46.04017
- ],
- [
- 19.06604,
- 46.0002
- ],
- [
- 19.07968,
- 45.96364
- ],
- [
- 19.00598,
- 45.95907
- ],
- [
- 19.00927,
- 45.92366
- ],
- [
- 18.90613,
- 45.93538
- ],
- [
- 18.87946,
- 45.91668
- ],
- [
- 18.86471,
- 45.92085
- ],
- [
- 18.86856,
- 45.91134
- ],
- [
- 18.82768,
- 45.90517
- ],
- [
- 18.822,
- 45.91459
- ],
- [
- 18.80751,
- 45.90361
- ],
- [
- 18.80925,
- 45.87962
- ],
- [
- 18.79562,
- 45.87845
- ],
- [
- 18.70489,
- 45.91819
- ],
- [
- 18.67002,
- 45.91084
- ],
- [
- 18.65966,
- 45.91689
- ],
- [
- 18.66513,
- 45.89928
- ],
- [
- 18.64128,
- 45.88904
- ],
- [
- 18.65502,
- 45.87424
- ],
- [
- 18.62777,
- 45.87338
- ],
- [
- 18.61484,
- 45.85314
- ],
- [
- 18.62367,
- 45.83985
- ],
- [
- 18.57324,
- 45.81376
- ],
- [
- 18.57498,
- 45.80043
- ],
- [
- 18.55972,
- 45.8038
- ],
- [
- 18.52235,
- 45.78269
- ],
- [
- 18.49067,
- 45.79472
- ],
- [
- 18.48219,
- 45.7655
- ],
- [
- 18.45628,
- 45.76952
- ],
- [
- 18.44508,
- 45.76052
- ],
- [
- 18.44685,
- 45.73713
- ],
- [
- 18.40763,
- 45.73971
- ],
- [
- 18.39189,
- 45.7617
- ],
- [
- 18.36423,
- 45.77294
- ],
- [
- 18.33942,
- 45.74716
- ],
- [
- 18.29682,
- 45.76122
- ],
- [
- 18.24405,
- 45.76123
- ],
- [
- 18.23073,
- 45.77903
- ],
- [
- 18.19087,
- 45.78788
- ],
- [
- 18.16819,
- 45.77627
- ],
- [
- 18.12465,
- 45.78963
- ],
- [
- 18.10681,
- 45.77083
- ],
- [
- 18.08189,
- 45.76452
- ],
- [
- 17.99588,
- 45.79573
- ],
- [
- 17.93021,
- 45.78633
- ],
- [
- 17.90668,
- 45.79257
- ],
- [
- 17.86531,
- 45.76701
- ],
- [
- 17.82627,
- 45.81
- ],
- [
- 17.80898,
- 45.8041
- ],
- [
- 17.78091,
- 45.81749
- ],
- [
- 17.76034,
- 45.81192
- ],
- [
- 17.74086,
- 45.8296
- ],
- [
- 17.66329,
- 45.83818
- ],
- [
- 17.62762,
- 45.89794
- ],
- [
- 17.57007,
- 45.93582
- ],
- [
- 17.43783,
- 45.95038
- ],
- [
- 17.4259,
- 45.92727
- ],
- [
- 17.41081,
- 45.93997
- ],
- [
- 17.39215,
- 45.93021
- ],
- [
- 17.38287,
- 45.94757
- ],
- [
- 17.34762,
- 45.94234
- ],
- [
- 17.34388,
- 45.96053
- ],
- [
- 17.35377,
- 45.9525
- ],
- [
- 17.39054,
- 45.95819
- ],
- [
- 17.38742,
- 45.96618
- ],
- [
- 17.35835,
- 45.96427
- ],
- [
- 17.37549,
- 45.96869
- ],
- [
- 17.37519,
- 45.98811
- ],
- [
- 17.36357,
- 45.99154
- ],
- [
- 17.35672,
- 45.97358
- ],
- [
- 17.33396,
- 45.99608
- ],
- [
- 17.33198,
- 45.97289
- ],
- [
- 17.313,
- 45.96653
- ],
- [
- 17.32365,
- 45.98878
- ],
- [
- 17.29877,
- 45.98387
- ],
- [
- 17.3042,
- 46.00211
- ],
- [
- 17.25797,
- 46.01103
- ],
- [
- 17.29632,
- 46.02852
- ],
- [
- 17.25415,
- 46.03001
- ],
- [
- 17.27096,
- 46.05671
- ],
- [
- 17.23248,
- 46.0592
- ],
- [
- 17.25251,
- 46.06647
- ],
- [
- 17.23131,
- 46.07903
- ],
- [
- 17.20199,
- 46.07655
- ],
- [
- 17.23313,
- 46.09896
- ],
- [
- 17.2104,
- 46.10017
- ],
- [
- 17.21297,
- 46.11386
- ],
- [
- 17.17593,
- 46.10846
- ],
- [
- 17.17434,
- 46.12876
- ],
- [
- 17.18652,
- 46.13323
- ],
- [
- 17.1811,
- 46.15055
- ],
- [
- 17.15623,
- 46.15858
- ],
- [
- 17.15929,
- 46.16968
- ],
- [
- 17.1261,
- 46.16845
- ],
- [
- 17.12274,
- 46.17898
- ],
- [
- 17.07525,
- 46.18895
- ],
- [
- 17.06616,
- 46.2023
- ],
- [
- 16.97354,
- 46.2252
- ],
- [
- 16.97395,
- 46.24311
- ],
- [
- 16.95041,
- 46.24153
- ],
- [
- 16.88624,
- 46.28146
- ],
- [
- 16.87137,
- 46.32528
- ],
- [
- 16.88021,
- 46.3357
- ],
- [
- 16.86154,
- 46.34524
- ],
- [
- 16.86562,
- 46.35565
- ],
- [
- 16.8522,
- 46.35172
- ],
- [
- 16.84986,
- 46.36262
- ],
- [
- 16.83529,
- 46.36382
- ],
- [
- 16.83765,
- 46.3748
- ],
- [
- 16.82617,
- 46.3671
- ],
- [
- 16.79334,
- 46.38739
- ],
- [
- 16.75921,
- 46.37766
- ],
- [
- 16.72987,
- 46.40149
- ],
- [
- 16.71821,
- 46.38987
- ],
- [
- 16.67729,
- 46.44945
- ],
- [
- 16.66318,
- 46.4487
- ],
- [
- 16.66637,
- 46.4583
- ],
- [
- 16.61879,
- 46.46199
- ],
- [
- 16.60447,
- 46.47608
- ],
- [
- 16.5236,
- 46.50538
- ],
- [
- 16.53258,
- 46.5314
- ],
- [
- 16.51767,
- 46.53635
- ],
- [
- 16.50841,
- 46.56527
- ],
- [
- 16.483,
- 46.56604
- ],
- [
- 16.4834,
- 46.5786
- ],
- [
- 16.44557,
- 46.61095
- ],
- [
- 16.42486,
- 46.61316
- ],
- [
- 16.38594,
- 46.64425
- ],
- [
- 16.39154,
- 46.66373
- ],
- [
- 16.41985,
- 46.65848
- ],
- [
- 16.42863,
- 46.69397
- ],
- [
- 16.36892,
- 46.70401
- ],
- [
- 16.37983,
- 46.71539
- ],
- [
- 16.37109,
- 46.72229
- ],
- [
- 16.35706,
- 46.71424
- ],
- [
- 16.3186,
- 46.75414
- ],
- [
- 16.33054,
- 46.77521
- ],
- [
- 16.31216,
- 46.778
- ],
- [
- 16.31277,
- 46.79731
- ],
- [
- 16.34064,
- 46.80519
- ],
- [
- 16.35084,
- 46.83006
- ],
- [
- 16.34033,
- 46.84688
- ],
- [
- 16.3015,
- 46.85951
- ],
- [
- 16.29139,
- 46.87283
- ],
- [
- 16.23323,
- 46.87667
- ],
- [
- 16.15609,
- 46.85371
- ],
- [
- 16.12657,
- 46.85691
- ],
- [
- 16.11391,
- 46.8691
- ]
- ]
- ],
- "terms_url": "https://www.fomi.hu",
- "terms_text": "Földmérési és Távérzékelési Intézet"
- },
- {
- "id": "Freemap.sk-Car",
- "name": "Freemap.sk Car",
- "type": "tms",
- "template": "https://{switch:a,b,c,d}.freemap.sk/A/{zoom}/{x}/{y}.jpeg",
- "scaleExtent": [
- 8,
- 16
- ],
- "polygon": [
- [
- [
- 19.83682,
- 49.25529
- ],
- [
- 19.80075,
- 49.42385
- ],
- [
- 19.60437,
- 49.48058
- ],
- [
- 19.49179,
- 49.63961
- ],
- [
- 19.21831,
- 49.52604
- ],
- [
- 19.16778,
- 49.42521
- ],
- [
- 19.00308,
- 49.42236
- ],
- [
- 18.97611,
- 49.5308
- ],
- [
- 18.54685,
- 49.51425
- ],
- [
- 18.31432,
- 49.33818
- ],
- [
- 18.15913,
- 49.2961
- ],
- [
- 18.05564,
- 49.11134
- ],
- [
- 17.56396,
- 48.84938
- ],
- [
- 17.17929,
- 48.88816
- ],
- [
- 17.058,
- 48.81105
- ],
- [
- 16.90426,
- 48.61947
- ],
- [
- 16.79685,
- 48.38561
- ],
- [
- 17.06762,
- 48.01116
- ],
- [
- 17.32787,
- 47.97749
- ],
- [
- 17.51699,
- 47.82535
- ],
- [
- 17.74776,
- 47.73093
- ],
- [
- 18.29515,
- 47.72075
- ],
- [
- 18.67959,
- 47.75541
- ],
- [
- 18.89755,
- 47.81203
- ],
- [
- 18.79463,
- 47.88245
- ],
- [
- 18.84318,
- 48.04046
- ],
- [
- 19.46212,
- 48.05333
- ],
- [
- 19.62064,
- 48.22938
- ],
- [
- 19.89585,
- 48.09387
- ],
- [
- 20.33766,
- 48.2643
- ],
- [
- 20.55395,
- 48.52358
- ],
- [
- 20.82335,
- 48.55714
- ],
- [
- 21.10271,
- 48.47096
- ],
- [
- 21.45863,
- 48.55513
- ],
- [
- 21.74536,
- 48.31435
- ],
- [
- 22.15293,
- 48.37179
- ],
- [
- 22.61255,
- 49.08914
- ],
- [
- 22.09997,
- 49.23814
- ],
- [
- 21.9686,
- 49.36363
- ],
- [
- 21.6244,
- 49.46989
- ],
- [
- 21.06873,
- 49.46402
- ],
- [
- 20.94336,
- 49.31088
- ],
- [
- 20.73052,
- 49.44006
- ],
- [
- 20.22804,
- 49.41714
- ],
- [
- 20.05234,
- 49.23052
- ],
- [
- 19.83682,
- 49.25529
- ]
- ]
- ],
- "terms_text": "Copyright ©2007-2012 Freemap Slovakia (www.freemap.sk). Some rights reserved.",
- "icon": "https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"
- },
- {
- "id": "Freemap.sk-Cyclo",
- "name": "Freemap.sk Cyclo",
- "type": "tms",
- "template": "https://{switch:a,b,c,d}.freemap.sk/C/{zoom}/{x}/{y}.jpeg",
- "scaleExtent": [
- 8,
- 16
- ],
- "polygon": [
- [
- [
- 19.83682,
- 49.25529
- ],
- [
- 19.80075,
- 49.42385
- ],
- [
- 19.60437,
- 49.48058
- ],
- [
- 19.49179,
- 49.63961
- ],
- [
- 19.21831,
- 49.52604
- ],
- [
- 19.16778,
- 49.42521
- ],
- [
- 19.00308,
- 49.42236
- ],
- [
- 18.97611,
- 49.5308
- ],
- [
- 18.54685,
- 49.51425
- ],
- [
- 18.31432,
- 49.33818
- ],
- [
- 18.15913,
- 49.2961
- ],
- [
- 18.05564,
- 49.11134
- ],
- [
- 17.56396,
- 48.84938
- ],
- [
- 17.17929,
- 48.88816
- ],
- [
- 17.058,
- 48.81105
- ],
- [
- 16.90426,
- 48.61947
- ],
- [
- 16.79685,
- 48.38561
- ],
- [
- 17.06762,
- 48.01116
- ],
- [
- 17.32787,
- 47.97749
- ],
- [
- 17.51699,
- 47.82535
- ],
- [
- 17.74776,
- 47.73093
- ],
- [
- 18.29515,
- 47.72075
- ],
- [
- 18.67959,
- 47.75541
- ],
- [
- 18.89755,
- 47.81203
- ],
- [
- 18.79463,
- 47.88245
- ],
- [
- 18.84318,
- 48.04046
- ],
- [
- 19.46212,
- 48.05333
- ],
- [
- 19.62064,
- 48.22938
- ],
- [
- 19.89585,
- 48.09387
- ],
- [
- 20.33766,
- 48.2643
- ],
- [
- 20.55395,
- 48.52358
- ],
- [
- 20.82335,
- 48.55714
- ],
- [
- 21.10271,
- 48.47096
- ],
- [
- 21.45863,
- 48.55513
- ],
- [
- 21.74536,
- 48.31435
- ],
- [
- 22.15293,
- 48.37179
- ],
- [
- 22.61255,
- 49.08914
- ],
- [
- 22.09997,
- 49.23814
- ],
- [
- 21.9686,
- 49.36363
- ],
- [
- 21.6244,
- 49.46989
- ],
- [
- 21.06873,
- 49.46402
- ],
- [
- 20.94336,
- 49.31088
- ],
- [
- 20.73052,
- 49.44006
- ],
- [
- 20.22804,
- 49.41714
- ],
- [
- 20.05234,
- 49.23052
- ],
- [
- 19.83682,
- 49.25529
- ]
- ]
- ],
- "terms_text": "Copyright ©2007-2012 Freemap Slovakia (www.freemap.sk). Some rights reserved.",
- "icon": "https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"
- },
- {
- "id": "Freemap.sk-Hiking",
- "name": "Freemap.sk Hiking",
- "type": "tms",
- "template": "https://{switch:a,b,c,d}.freemap.sk/T/{zoom}/{x}/{y}.jpeg",
- "scaleExtent": [
- 8,
- 16
- ],
- "polygon": [
- [
- [
- 19.83682,
- 49.25529
- ],
- [
- 19.80075,
- 49.42385
- ],
- [
- 19.60437,
- 49.48058
- ],
- [
- 19.49179,
- 49.63961
- ],
- [
- 19.21831,
- 49.52604
- ],
- [
- 19.16778,
- 49.42521
- ],
- [
- 19.00308,
- 49.42236
- ],
- [
- 18.97611,
- 49.5308
- ],
- [
- 18.54685,
- 49.51425
- ],
- [
- 18.31432,
- 49.33818
- ],
- [
- 18.15913,
- 49.2961
- ],
- [
- 18.05564,
- 49.11134
- ],
- [
- 17.56396,
- 48.84938
- ],
- [
- 17.17929,
- 48.88816
- ],
- [
- 17.058,
- 48.81105
- ],
- [
- 16.90426,
- 48.61947
- ],
- [
- 16.79685,
- 48.38561
- ],
- [
- 17.06762,
- 48.01116
- ],
- [
- 17.32787,
- 47.97749
- ],
- [
- 17.51699,
- 47.82535
- ],
- [
- 17.74776,
- 47.73093
- ],
- [
- 18.29515,
- 47.72075
- ],
- [
- 18.67959,
- 47.75541
- ],
- [
- 18.89755,
- 47.81203
- ],
- [
- 18.79463,
- 47.88245
- ],
- [
- 18.84318,
- 48.04046
- ],
- [
- 19.46212,
- 48.05333
- ],
- [
- 19.62064,
- 48.22938
- ],
- [
- 19.89585,
- 48.09387
- ],
- [
- 20.33766,
- 48.2643
- ],
- [
- 20.55395,
- 48.52358
- ],
- [
- 20.82335,
- 48.55714
- ],
- [
- 21.10271,
- 48.47096
- ],
- [
- 21.45863,
- 48.55513
- ],
- [
- 21.74536,
- 48.31435
- ],
- [
- 22.15293,
- 48.37179
- ],
- [
- 22.61255,
- 49.08914
- ],
- [
- 22.09997,
- 49.23814
- ],
- [
- 21.9686,
- 49.36363
- ],
- [
- 21.6244,
- 49.46989
- ],
- [
- 21.06873,
- 49.46402
- ],
- [
- 20.94336,
- 49.31088
- ],
- [
- 20.73052,
- 49.44006
- ],
- [
- 20.22804,
- 49.41714
- ],
- [
- 20.05234,
- 49.23052
- ],
- [
- 19.83682,
- 49.25529
- ]
- ]
- ],
- "terms_text": "Copyright ©2007-2012 Freemap Slovakia (www.freemap.sk). Some rights reserved.",
- "icon": "https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"
- },
- {
- "id": "Freemap.sk-Ski",
- "name": "Freemap.sk Ski",
- "type": "tms",
- "template": "https://{switch:a,b,c,d}.freemap.sk/K/{zoom}/{x}/{y}.jpeg",
- "scaleExtent": [
- 8,
- 16
- ],
- "polygon": [
- [
- [
- 19.83682,
- 49.25529
- ],
- [
- 19.80075,
- 49.42385
- ],
- [
- 19.60437,
- 49.48058
- ],
- [
- 19.49179,
- 49.63961
- ],
- [
- 19.21831,
- 49.52604
- ],
- [
- 19.16778,
- 49.42521
- ],
- [
- 19.00308,
- 49.42236
- ],
- [
- 18.97611,
- 49.5308
- ],
- [
- 18.54685,
- 49.51425
- ],
- [
- 18.31432,
- 49.33818
- ],
- [
- 18.15913,
- 49.2961
- ],
- [
- 18.05564,
- 49.11134
- ],
- [
- 17.56396,
- 48.84938
- ],
- [
- 17.17929,
- 48.88816
- ],
- [
- 17.058,
- 48.81105
- ],
- [
- 16.90426,
- 48.61947
- ],
- [
- 16.79685,
- 48.38561
- ],
- [
- 17.06762,
- 48.01116
- ],
- [
- 17.32787,
- 47.97749
- ],
- [
- 17.51699,
- 47.82535
- ],
- [
- 17.74776,
- 47.73093
- ],
- [
- 18.29515,
- 47.72075
- ],
- [
- 18.67959,
- 47.75541
- ],
- [
- 18.89755,
- 47.81203
- ],
- [
- 18.79463,
- 47.88245
- ],
- [
- 18.84318,
- 48.04046
- ],
- [
- 19.46212,
- 48.05333
- ],
- [
- 19.62064,
- 48.22938
- ],
- [
- 19.89585,
- 48.09387
- ],
- [
- 20.33766,
- 48.2643
- ],
- [
- 20.55395,
- 48.52358
- ],
- [
- 20.82335,
- 48.55714
- ],
- [
- 21.10271,
- 48.47096
- ],
- [
- 21.45863,
- 48.55513
- ],
- [
- 21.74536,
- 48.31435
- ],
- [
- 22.15293,
- 48.37179
- ],
- [
- 22.61255,
- 49.08914
- ],
- [
- 22.09997,
- 49.23814
- ],
- [
- 21.9686,
- 49.36363
- ],
- [
- 21.6244,
- 49.46989
- ],
- [
- 21.06873,
- 49.46402
- ],
- [
- 20.94336,
- 49.31088
- ],
- [
- 20.73052,
- 49.44006
- ],
- [
- 20.22804,
- 49.41714
- ],
- [
- 20.05234,
- 49.23052
- ],
- [
- 19.83682,
- 49.25529
- ]
- ]
- ],
- "terms_text": "Copyright ©2007-2012 Freemap Slovakia (www.freemap.sk). Some rights reserved.",
- "icon": "https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"
- },
- {
- "id": "fta-digiroad-functional",
- "name": "FTA Road Network",
- "type": "wms",
- "template": "https://extranet.liikennevirasto.fi/inspirepalvelu/beta/wms?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=dr_tielinkki_toim_lk&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "scaleExtent": [
- 3,
- 20
- ],
- "polygon": [
- [
- [
- 27.96569,
- 70.0988
- ],
- [
- 27.57431,
- 70.07728
- ],
- [
- 27.10876,
- 69.93548
- ],
- [
- 26.70913,
- 69.97549
- ],
- [
- 26.45507,
- 69.94207
- ],
- [
- 25.87142,
- 69.6671
- ],
- [
- 25.94833,
- 69.61024
- ],
- [
- 25.83023,
- 69.55323
- ],
- [
- 25.66955,
- 69.20794
- ],
- [
- 25.73822,
- 69.01797
- ],
- [
- 25.60089,
- 68.90309
- ],
- [
- 25.45806,
- 68.91199
- ],
- [
- 25.11749,
- 68.80699
- ],
- [
- 25.07354,
- 68.64355
- ],
- [
- 24.88128,
- 68.62003
- ],
- [
- 23.97491,
- 68.84568
- ],
- [
- 23.74969,
- 68.8308
- ],
- [
- 23.63433,
- 68.71645
- ],
- [
- 23.18939,
- 68.68053
- ],
- [
- 22.52197,
- 68.7553
- ],
- [
- 21.63894,
- 69.28191
- ],
- [
- 21.26953,
- 69.31783
- ],
- [
- 20.94131,
- 69.21622
- ],
- [
- 21.08963,
- 69.09307
- ],
- [
- 21.05941,
- 69.04352
- ],
- [
- 20.72296,
- 69.12491
- ],
- [
- 20.54443,
- 69.0558
- ],
- [
- 20.84655,
- 68.97416
- ],
- [
- 20.81634,
- 68.91742
- ],
- [
- 21.38754,
- 68.68461
- ],
- [
- 22.04734,
- 68.47066
- ],
- [
- 22.80212,
- 68.35464
- ],
- [
- 23.12072,
- 68.13169
- ],
- [
- 23.5437,
- 67.9633
- ],
- [
- 23.44757,
- 67.8393
- ],
- [
- 23.48602,
- 67.59352
- ],
- [
- 23.36517,
- 67.46545
- ],
- [
- 23.71124,
- 67.41592
- ],
- [
- 23.72772,
- 67.32186
- ],
- [
- 23.54644,
- 67.26885
- ],
- [
- 23.53128,
- 67.16724
- ],
- [
- 23.89251,
- 66.86863
- ],
- [
- 23.84582,
- 66.57775
- ],
- [
- 23.61843,
- 66.44562
- ],
- [
- 23.67171,
- 66.20303
- ],
- [
- 23.87191,
- 66.14551
- ],
- [
- 24.09988,
- 65.87247
- ],
- [
- 24.1658,
- 65.66959
- ],
- [
- 24.11636,
- 65.39143
- ],
- [
- 21.37939,
- 63.68037
- ],
- [
- 20.17639,
- 63.29787
- ],
- [
- 19.08325,
- 60.16064
- ],
- [
- 20.22033,
- 59.44786
- ],
- [
- 22.29125,
- 59.44507
- ],
- [
- 25.82336,
- 59.933
- ],
- [
- 27.52075,
- 60.23435
- ],
- [
- 27.83386,
- 60.53229
- ],
- [
- 29.29641,
- 61.26165
- ],
- [
- 31.20803,
- 62.44759
- ],
- [
- 31.62826,
- 62.90585
- ],
- [
- 31.2635,
- 63.22106
- ],
- [
- 29.99605,
- 63.75387
- ],
- [
- 30.28656,
- 63.81704
- ],
- [
- 30.58319,
- 64.0782
- ],
- [
- 30.5104,
- 64.26428
- ],
- [
- 30.09979,
- 64.39218
- ],
- [
- 30.02563,
- 64.58736
- ],
- [
- 30.16845,
- 64.63329
- ],
- [
- 30.09429,
- 64.79518
- ],
- [
- 29.78393,
- 64.79811
- ],
- [
- 29.65347,
- 64.89733
- ],
- [
- 29.65759,
- 65.05939
- ],
- [
- 29.91027,
- 65.09527
- ],
- [
- 29.93225,
- 65.20895
- ],
- [
- 29.72076,
- 65.27853
- ],
- [
- 29.91577,
- 65.63788
- ],
- [
- 30.1863,
- 65.66223
- ],
- [
- 29.9913,
- 66.09771
- ],
- [
- 29.07119,
- 66.91983
- ],
- [
- 30.11077,
- 67.63431
- ],
- [
- 29.3486,
- 68.08099
- ],
- [
- 28.67568,
- 68.20166
- ],
- [
- 28.46547,
- 68.54039
- ],
- [
- 28.72375,
- 68.72642
- ],
- [
- 28.82675,
- 68.87341
- ],
- [
- 28.44985,
- 68.90792
- ],
- [
- 28.95996,
- 69.05089
- ],
- [
- 28.83324,
- 69.10563
- ],
- [
- 28.87207,
- 69.22132
- ],
- [
- 29.36096,
- 69.46526
- ],
- [
- 29.15634,
- 69.69667
- ],
- [
- 28.38455,
- 69.83488
- ],
- [
- 28.35845,
- 69.88312
- ],
- [
- 28.17169,
- 69.92511
- ],
- [
- 28.00415,
- 70.01495
- ],
- [
- 27.96569,
- 70.0988
- ]
- ]
- ],
- "terms_url": "https://www.liikennevirasto.fi/web/en/open-data/digiroad/",
- "terms_text": "© Liikennevirasto",
- "description": "Digiroad national road network from the Finnish Transport Agency, functional road classes.",
- "icon": "https://www.liikennevirasto.fi/livi-theme/images/general/liikennevirasto_logo_2x.png",
- "overlay": true
- },
- {
- "id": "Geobase_Hydrography",
- "name": "Geobase Hydrography - English",
- "type": "wms",
- "template": "https://maps.geogratis.gc.ca/wms/hydro_network_en?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=nhn:nhn&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -141.0678,
- 60.2442
- ],
- [
- -139.3842,
- 60.10331
- ],
- [
- -137.4746,
- 58.82791
- ],
- [
- -135.4766,
- 59.65971
- ],
- [
- -134.399,
- 58.86279
- ],
- [
- -132.5239,
- 57.08342
- ],
- [
- -130.1435,
- 55.27452
- ],
- [
- -130.7734,
- 54.75597
- ],
- [
- -132.4355,
- 54.71514
- ],
- [
- -134.5711,
- 54.38827
- ],
- [
- -141.7761,
- 53.58405
- ],
- [
- -128.9768,
- 46.41459
- ],
- [
- -124.8087,
- 48.42976
- ],
- [
- -123.4286,
- 48.17889
- ],
- [
- -123.0256,
- 48.40444
- ],
- [
- -123.19237,
- 48.65504
- ],
- [
- -122.99582,
- 48.51065
- ],
- [
- -122.4869,
- 48.4098
- ],
- [
- -122.32915,
- 48.4528
- ],
- [
- -122.22939,
- 48.50649
- ],
- [
- -122.17908,
- 48.52965
- ],
- [
- -122.1842,
- 48.5669
- ],
- [
- -121.77833,
- 48.57593
- ],
- [
- -121.66578,
- 48.42791
- ],
- [
- -121.33068,
- 48.35714
- ],
- [
- -121.02713,
- 48.34977
- ],
- [
- -121.03054,
- 48.49406
- ],
- [
- -120.698,
- 48.51497
- ],
- [
- -120.51041,
- 48.8718
- ],
- [
- -119.97579,
- 48.88134
- ],
- [
- -119.95447,
- 48.51497
- ],
- [
- -119.90758,
- 48.29421
- ],
- [
- -119.73193,
- 48.15503
- ],
- [
- -119.74386,
- 48.07419
- ],
- [
- -119.62279,
- 48.10951
- ],
- [
- -119.60232,
- 48.14707
- ],
- [
- -119.25273,
- 48.16243
- ],
- [
- -114.1499,
- 48.99487
- ],
- [
- -95.12094,
- 48.98405
- ],
- [
- -95.13419,
- 49.35564
- ],
- [
- -94.94415,
- 49.34356
- ],
- [
- -94.8839,
- 49.29522
- ],
- [
- -94.71704,
- 48.87631
- ],
- [
- -94.71791,
- 48.7485
- ],
- [
- -93.83204,
- 48.49765
- ],
- [
- -93.43778,
- 48.53066
- ],
- [
- -93.38216,
- 48.59507
- ],
- [
- -92.98471,
- 48.60312
- ],
- [
- -92.73847,
- 48.50725
- ],
- [
- -92.7095,
- 48.42081
- ],
- [
- -92.54293,
- 48.40158
- ],
- [
- -92.38361,
- 48.20406
- ],
- [
- -92.11564,
- 48.27641
- ],
- [
- -91.58697,
- 48.02516
- ],
- [
- -91.24658,
- 48.05422
- ],
- [
- -90.86275,
- 48.20889
- ],
- [
- -90.78308,
- 48.0639
- ],
- [
- -90.0774,
- 48.07435
- ],
- [
- -89.93835,
- 47.96584
- ],
- [
- -89.75469,
- 47.99609
- ],
- [
- -89.32745,
- 47.93943
- ],
- [
- -88.41489,
- 48.26677
- ],
- [
- -84.9566,
- 46.86086
- ],
- [
- -84.84795,
- 46.6762
- ],
- [
- -84.55904,
- 46.45441
- ],
- [
- -84.47642,
- 46.44972
- ],
- [
- -84.43758,
- 46.48872
- ],
- [
- -84.3669,
- 46.5055
- ],
- [
- -84.34899,
- 46.5055
- ],
- [
- -84.29026,
- 46.49077
- ],
- [
- -84.25742,
- 46.49386
- ],
- [
- -84.22507,
- 46.53187
- ],
- [
- -84.1962,
- 46.53804
- ],
- [
- -84.18027,
- 46.52468
- ],
- [
- -84.15987,
- 46.52468
- ],
- [
- -84.13449,
- 46.52879
- ],
- [
- -84.11558,
- 46.50653
- ],
- [
- -84.15944,
- 46.42769
- ],
- [
- -84.10024,
- 46.20338
- ],
- [
- -83.95558,
- 46.05132
- ],
- [
- -83.8864,
- 46.06125
- ],
- [
- -83.8203,
- 46.11181
- ],
- [
- -83.76975,
- 46.09563
- ],
- [
- -83.67498,
- 46.11391
- ],
- [
- -83.58084,
- 46.09921
- ],
- [
- -83.44747,
- 45.99521
- ],
- [
- -83.60888,
- 45.81772
- ],
- [
- -82.14271,
- 43.57905
- ],
- [
- -82.39133,
- 43.06666
- ],
- [
- -82.41252,
- 43.01127
- ],
- [
- -82.42522,
- 42.99864
- ],
- [
- -82.42618,
- 42.99374
- ],
- [
- -82.42363,
- 42.98536
- ],
- [
- -82.41503,
- 42.97697
- ],
- [
- -82.41853,
- 42.96578
- ],
- [
- -82.43064,
- 42.95203
- ],
- [
- -82.44911,
- 42.93711
- ],
- [
- -82.45739,
- 42.92568
- ],
- [
- -82.46472,
- 42.90562
- ],
- [
- -82.47228,
- 42.8877
- ],
- [
- -82.47228,
- 42.84743
- ],
- [
- -82.48536,
- 42.80967
- ],
- [
- -82.46844,
- 42.76365
- ],
- [
- -82.48586,
- 42.73697
- ],
- [
- -82.49155,
- 42.71168
- ],
- [
- -82.51488,
- 42.66652
- ],
- [
- -82.51224,
- 42.63893
- ],
- [
- -82.52421,
- 42.61103
- ],
- [
- -82.56854,
- 42.58184
- ],
- [
- -82.59498,
- 42.55148
- ],
- [
- -82.61286,
- 42.56409
- ],
- [
- -82.65158,
- 42.55707
- ],
- [
- -82.83439,
- 42.3763
- ],
- [
- -83.01489,
- 42.33457
- ],
- [
- -83.07244,
- 42.31502
- ],
- [
- -83.09647,
- 42.29542
- ],
- [
- -83.12823,
- 42.24126
- ],
- [
- -83.14167,
- 42.18582
- ],
- [
- -83.12799,
- 42.12172
- ],
- [
- -83.16266,
- 42.04963
- ],
- [
- -83.05136,
- 41.70911
- ],
- [
- -82.41932,
- 41.6377
- ],
- [
- -81.22563,
- 42.19633
- ],
- [
- -80.06688,
- 42.37121
- ],
- [
- -78.86642,
- 42.825
- ],
- [
- -78.90301,
- 42.92307
- ],
- [
- -78.92063,
- 42.95234
- ],
- [
- -78.93331,
- 42.95708
- ],
- [
- -78.96058,
- 42.9595
- ],
- [
- -78.98479,
- 42.9761
- ],
- [
- -79.01825,
- 42.9964
- ],
- [
- -79.01969,
- 43.01561
- ],
- [
- -79.00695,
- 43.0333
- ],
- [
- -78.99599,
- 43.06448
- ],
- [
- -79.07335,
- 43.07876
- ],
- [
- -79.07286,
- 43.083
- ],
- [
- -79.0652,
- 43.0917
- ],
- [
- -79.05623,
- 43.10825
- ],
- [
- -79.05982,
- 43.11563
- ],
- [
- -79.06764,
- 43.11992
- ],
- [
- -79.05411,
- 43.12801
- ],
- [
- -79.04112,
- 43.13986
- ],
- [
- -79.04465,
- 43.16192
- ],
- [
- -79.05101,
- 43.17037
- ],
- [
- -79.04758,
- 43.19974
- ],
- [
- -79.05511,
- 43.25682
- ],
- [
- -79.18688,
- 43.44858
- ],
- [
- -78.68836,
- 43.62502
- ],
- [
- -76.77647,
- 43.61369
- ],
- [
- -76.41665,
- 44.08498
- ],
- [
- -75.49023,
- 44.70772
- ],
- [
- -75.29544,
- 44.82587
- ],
- [
- -75.16845,
- 44.88548
- ],
- [
- -75.1275,
- 44.8975
- ],
- [
- -75.00499,
- 44.95265
- ],
- [
- -74.98159,
- 44.97728
- ],
- [
- -74.90496,
- 44.98222
- ],
- [
- -74.8313,
- 45.01108
- ],
- [
- -74.77954,
- 45.00158
- ],
- [
- -74.74562,
- 44.98526
- ],
- [
- -74.70475,
- 44.99877
- ],
- [
- -74.49079,
- 44.99343
- ],
- [
- -74.23203,
- 44.98552
- ],
- [
- -73.93713,
- 44.99512
- ],
- [
- -73.01809,
- 45.0121
- ],
- [
- -72.63177,
- 45.0121
- ],
- [
- -72.54779,
- 45.00506
- ],
- [
- -72.32259,
- 45.00286
- ],
- [
- -71.49404,
- 45.01093
- ],
- [
- -71.48648,
- 45.06221
- ],
- [
- -71.42303,
- 45.12765
- ],
- [
- -71.43112,
- 45.14037
- ],
- [
- -71.37175,
- 45.22117
- ],
- [
- -71.28959,
- 45.28578
- ],
- [
- -71.23613,
- 45.24302
- ],
- [
- -71.11683,
- 45.22933
- ],
- [
- -71.0531,
- 45.29866
- ],
- [
- -70.98936,
- 45.31088
- ],
- [
- -70.90246,
- 45.22525
- ],
- [
- -70.82473,
- 45.22714
- ],
- [
- -70.77626,
- 45.40013
- ],
- [
- -70.7119,
- 45.3754
- ],
- [
- -70.63387,
- 45.37346
- ],
- [
- -70.60302,
- 45.41179
- ],
- [
- -70.67659,
- 45.56319
- ],
- [
- -70.3752,
- 45.73075
- ],
- [
- -70.36334,
- 45.82013
- ],
- [
- -70.25417,
- 45.87468
- ],
- [
- -70.22569,
- 45.94403
- ],
- [
- -70.27316,
- 45.99022
- ],
- [
- -70.17586,
- 46.33538
- ],
- [
- -70.06195,
- 46.4107
- ],
- [
- -69.98891,
- 46.69363
- ],
- [
- -69.22424,
- 47.44463
- ],
- [
- -69.06999,
- 47.41092
- ],
- [
- -69.07473,
- 47.24202
- ],
- [
- -68.89684,
- 47.17469
- ],
- [
- -68.78685,
- 47.21493
- ],
- [
- -68.72415,
- 47.23217
- ],
- [
- -68.68583,
- 47.24028
- ],
- [
- -68.66044,
- 47.23183
- ],
- [
- -68.62162,
- 47.24028
- ],
- [
- -68.59425,
- 47.24974
- ],
- [
- -68.59226,
- 47.27001
- ],
- [
- -68.57385,
- 47.28486
- ],
- [
- -68.55941,
- 47.2798
- ],
- [
- -68.542,
- 47.2798
- ],
- [
- -68.51214,
- 47.29195
- ],
- [
- -68.47381,
- 47.29229
- ],
- [
- -68.46038,
- 47.28149
- ],
- [
- -68.43898,
- 47.27777
- ],
- [
- -68.37229,
- 47.2825
- ],
- [
- -68.3703,
- 47.34796
- ],
- [
- -68.33173,
- 47.35822
- ],
- [
- -68.29664,
- 47.352
- ],
- [
- -68.2399,
- 47.34897
- ],
- [
- -68.0906,
- 47.26798
- ],
- [
- -68.00002,
- 47.21223
- ],
- [
- -67.96344,
- 47.19753
- ],
- [
- -67.93582,
- 47.15947
- ],
- [
- -67.88619,
- 47.10424
- ],
- [
- -67.80218,
- 47.06386
- ],
- [
- -67.79415,
- 45.93923
- ],
- [
- -67.82753,
- 45.8489
- ],
- [
- -67.82753,
- 45.6704
- ],
- [
- -67.54943,
- 45.57445
- ],
- [
- -67.45302,
- 45.58742
- ],
- [
- -67.44189,
- 45.52251
- ],
- [
- -67.54201,
- 45.49393
- ],
- [
- -67.4456,
- 45.38726
- ],
- [
- -67.51605,
- 45.29343
- ],
- [
- -67.38257,
- 45.11839
- ],
- [
- -67.3047,
- 45.11316
- ],
- [
- -67.26762,
- 45.18116
- ],
- [
- -67.12671,
- 45.09484
- ],
- [
- -66.94835,
- 44.78406
- ],
- [
- -66.52283,
- 43.61294
- ],
- [
- -65.02339,
- 42.10691
- ],
- [
- -42.53366,
- 47.50263
- ],
- [
- -75.90901,
- 77.3176
- ],
- [
- -71.86482,
- 78.7359
- ],
- [
- -67.20011,
- 80.66812
- ],
- [
- -66.20727,
- 80.78637
- ],
- [
- -54.82473,
- 83.07464
- ],
- [
- -57.62518,
- 85.04043
- ],
- [
- -106.7949,
- 85.04625
- ],
- [
- -141.3957,
- 79.2514
- ],
- [
- -141.0678,
- 60.2442
- ]
- ]
- ],
- "overlay": true
- },
- {
- "id": "Geobase_Hydrography_French",
- "name": "Geobase Hydrography - French",
- "type": "wms",
- "template": "https://maps.geogratis.gc.ca/wms/hydro_network_fr?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=nhn:nhn&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -141.0678,
- 60.2442
- ],
- [
- -139.3842,
- 60.10331
- ],
- [
- -137.4746,
- 58.82791
- ],
- [
- -135.4766,
- 59.65971
- ],
- [
- -134.399,
- 58.86279
- ],
- [
- -132.5239,
- 57.08342
- ],
- [
- -130.1435,
- 55.27452
- ],
- [
- -130.7734,
- 54.75597
- ],
- [
- -132.4355,
- 54.71514
- ],
- [
- -134.5711,
- 54.38827
- ],
- [
- -141.7761,
- 53.58405
- ],
- [
- -128.9768,
- 46.41459
- ],
- [
- -124.8087,
- 48.42976
- ],
- [
- -123.4286,
- 48.17889
- ],
- [
- -123.0256,
- 48.40444
- ],
- [
- -123.19237,
- 48.65504
- ],
- [
- -122.99582,
- 48.51065
- ],
- [
- -122.4869,
- 48.4098
- ],
- [
- -122.32915,
- 48.4528
- ],
- [
- -122.22939,
- 48.50649
- ],
- [
- -122.17908,
- 48.52965
- ],
- [
- -122.1842,
- 48.5669
- ],
- [
- -121.77833,
- 48.57593
- ],
- [
- -121.66578,
- 48.42791
- ],
- [
- -121.33068,
- 48.35714
- ],
- [
- -121.02713,
- 48.34977
- ],
- [
- -121.03054,
- 48.49406
- ],
- [
- -120.698,
- 48.51497
- ],
- [
- -120.51041,
- 48.8718
- ],
- [
- -119.97579,
- 48.88134
- ],
- [
- -119.95447,
- 48.51497
- ],
- [
- -119.90758,
- 48.29421
- ],
- [
- -119.73193,
- 48.15503
- ],
- [
- -119.74386,
- 48.07419
- ],
- [
- -119.62279,
- 48.10951
- ],
- [
- -119.60232,
- 48.14707
- ],
- [
- -119.25273,
- 48.16243
- ],
- [
- -114.1499,
- 48.99487
- ],
- [
- -95.12094,
- 48.98405
- ],
- [
- -95.13419,
- 49.35564
- ],
- [
- -94.94415,
- 49.34356
- ],
- [
- -94.8839,
- 49.29522
- ],
- [
- -94.71704,
- 48.87631
- ],
- [
- -94.71791,
- 48.7485
- ],
- [
- -93.83204,
- 48.49765
- ],
- [
- -93.43778,
- 48.53066
- ],
- [
- -93.38216,
- 48.59507
- ],
- [
- -92.98471,
- 48.60312
- ],
- [
- -92.73847,
- 48.50725
- ],
- [
- -92.7095,
- 48.42081
- ],
- [
- -92.54293,
- 48.40158
- ],
- [
- -92.38361,
- 48.20406
- ],
- [
- -92.11564,
- 48.27641
- ],
- [
- -91.58697,
- 48.02516
- ],
- [
- -91.24658,
- 48.05422
- ],
- [
- -90.86275,
- 48.20889
- ],
- [
- -90.78308,
- 48.0639
- ],
- [
- -90.0774,
- 48.07435
- ],
- [
- -89.93835,
- 47.96584
- ],
- [
- -89.75469,
- 47.99609
- ],
- [
- -89.32745,
- 47.93943
- ],
- [
- -88.41489,
- 48.26677
- ],
- [
- -84.9566,
- 46.86086
- ],
- [
- -84.84795,
- 46.6762
- ],
- [
- -84.55904,
- 46.45441
- ],
- [
- -84.47642,
- 46.44972
- ],
- [
- -84.43758,
- 46.48872
- ],
- [
- -84.3669,
- 46.5055
- ],
- [
- -84.34899,
- 46.5055
- ],
- [
- -84.29026,
- 46.49077
- ],
- [
- -84.25742,
- 46.49386
- ],
- [
- -84.22507,
- 46.53187
- ],
- [
- -84.1962,
- 46.53804
- ],
- [
- -84.18027,
- 46.52468
- ],
- [
- -84.15987,
- 46.52468
- ],
- [
- -84.13449,
- 46.52879
- ],
- [
- -84.11558,
- 46.50653
- ],
- [
- -84.15944,
- 46.42769
- ],
- [
- -84.10024,
- 46.20338
- ],
- [
- -83.95558,
- 46.05132
- ],
- [
- -83.8864,
- 46.06125
- ],
- [
- -83.8203,
- 46.11181
- ],
- [
- -83.76975,
- 46.09563
- ],
- [
- -83.67498,
- 46.11391
- ],
- [
- -83.58084,
- 46.09921
- ],
- [
- -83.44747,
- 45.99521
- ],
- [
- -83.60888,
- 45.81772
- ],
- [
- -82.14271,
- 43.57905
- ],
- [
- -82.39133,
- 43.06666
- ],
- [
- -82.41252,
- 43.01127
- ],
- [
- -82.42522,
- 42.99864
- ],
- [
- -82.42618,
- 42.99374
- ],
- [
- -82.42363,
- 42.98536
- ],
- [
- -82.41503,
- 42.97697
- ],
- [
- -82.41853,
- 42.96578
- ],
- [
- -82.43064,
- 42.95203
- ],
- [
- -82.44911,
- 42.93711
- ],
- [
- -82.45739,
- 42.92568
- ],
- [
- -82.46472,
- 42.90562
- ],
- [
- -82.47228,
- 42.8877
- ],
- [
- -82.47228,
- 42.84743
- ],
- [
- -82.48536,
- 42.80967
- ],
- [
- -82.46844,
- 42.76365
- ],
- [
- -82.48586,
- 42.73697
- ],
- [
- -82.49155,
- 42.71168
- ],
- [
- -82.51488,
- 42.66652
- ],
- [
- -82.51224,
- 42.63893
- ],
- [
- -82.52421,
- 42.61103
- ],
- [
- -82.56854,
- 42.58184
- ],
- [
- -82.59498,
- 42.55148
- ],
- [
- -82.61286,
- 42.56409
- ],
- [
- -82.65158,
- 42.55707
- ],
- [
- -82.83439,
- 42.3763
- ],
- [
- -83.01489,
- 42.33457
- ],
- [
- -83.07244,
- 42.31502
- ],
- [
- -83.09647,
- 42.29542
- ],
- [
- -83.12823,
- 42.24126
- ],
- [
- -83.14167,
- 42.18582
- ],
- [
- -83.12799,
- 42.12172
- ],
- [
- -83.16266,
- 42.04963
- ],
- [
- -83.05136,
- 41.70911
- ],
- [
- -82.41932,
- 41.6377
- ],
- [
- -81.22563,
- 42.19633
- ],
- [
- -80.06688,
- 42.37121
- ],
- [
- -78.86642,
- 42.825
- ],
- [
- -78.90301,
- 42.92307
- ],
- [
- -78.92063,
- 42.95234
- ],
- [
- -78.93331,
- 42.95708
- ],
- [
- -78.96058,
- 42.9595
- ],
- [
- -78.98479,
- 42.9761
- ],
- [
- -79.01825,
- 42.9964
- ],
- [
- -79.01969,
- 43.01561
- ],
- [
- -79.00695,
- 43.0333
- ],
- [
- -78.99599,
- 43.06448
- ],
- [
- -79.07335,
- 43.07876
- ],
- [
- -79.07286,
- 43.083
- ],
- [
- -79.0652,
- 43.0917
- ],
- [
- -79.05623,
- 43.10825
- ],
- [
- -79.05982,
- 43.11563
- ],
- [
- -79.06764,
- 43.11992
- ],
- [
- -79.05411,
- 43.12801
- ],
- [
- -79.04112,
- 43.13986
- ],
- [
- -79.04465,
- 43.16192
- ],
- [
- -79.05101,
- 43.17037
- ],
- [
- -79.04758,
- 43.19974
- ],
- [
- -79.05511,
- 43.25682
- ],
- [
- -79.18688,
- 43.44858
- ],
- [
- -78.68836,
- 43.62502
- ],
- [
- -76.77647,
- 43.61369
- ],
- [
- -76.41665,
- 44.08498
- ],
- [
- -75.49023,
- 44.70772
- ],
- [
- -75.29544,
- 44.82587
- ],
- [
- -75.16845,
- 44.88548
- ],
- [
- -75.1275,
- 44.8975
- ],
- [
- -75.00499,
- 44.95265
- ],
- [
- -74.98159,
- 44.97728
- ],
- [
- -74.90496,
- 44.98222
- ],
- [
- -74.8313,
- 45.01108
- ],
- [
- -74.77954,
- 45.00158
- ],
- [
- -74.74562,
- 44.98526
- ],
- [
- -74.70475,
- 44.99877
- ],
- [
- -74.49079,
- 44.99343
- ],
- [
- -74.23203,
- 44.98552
- ],
- [
- -73.93713,
- 44.99512
- ],
- [
- -73.01809,
- 45.0121
- ],
- [
- -72.63177,
- 45.0121
- ],
- [
- -72.54779,
- 45.00506
- ],
- [
- -72.32259,
- 45.00286
- ],
- [
- -71.49404,
- 45.01093
- ],
- [
- -71.48648,
- 45.06221
- ],
- [
- -71.42303,
- 45.12765
- ],
- [
- -71.43112,
- 45.14037
- ],
- [
- -71.37175,
- 45.22117
- ],
- [
- -71.28959,
- 45.28578
- ],
- [
- -71.23613,
- 45.24302
- ],
- [
- -71.11683,
- 45.22933
- ],
- [
- -71.0531,
- 45.29866
- ],
- [
- -70.98936,
- 45.31088
- ],
- [
- -70.90246,
- 45.22525
- ],
- [
- -70.82473,
- 45.22714
- ],
- [
- -70.77626,
- 45.40013
- ],
- [
- -70.7119,
- 45.3754
- ],
- [
- -70.63387,
- 45.37346
- ],
- [
- -70.60302,
- 45.41179
- ],
- [
- -70.67659,
- 45.56319
- ],
- [
- -70.3752,
- 45.73075
- ],
- [
- -70.36334,
- 45.82013
- ],
- [
- -70.25417,
- 45.87468
- ],
- [
- -70.22569,
- 45.94403
- ],
- [
- -70.27316,
- 45.99022
- ],
- [
- -70.17586,
- 46.33538
- ],
- [
- -70.06195,
- 46.4107
- ],
- [
- -69.98891,
- 46.69363
- ],
- [
- -69.22424,
- 47.44463
- ],
- [
- -69.06999,
- 47.41092
- ],
- [
- -69.07473,
- 47.24202
- ],
- [
- -68.89684,
- 47.17469
- ],
- [
- -68.78685,
- 47.21493
- ],
- [
- -68.72415,
- 47.23217
- ],
- [
- -68.68583,
- 47.24028
- ],
- [
- -68.66044,
- 47.23183
- ],
- [
- -68.62162,
- 47.24028
- ],
- [
- -68.59425,
- 47.24974
- ],
- [
- -68.59226,
- 47.27001
- ],
- [
- -68.57385,
- 47.28486
- ],
- [
- -68.55941,
- 47.2798
- ],
- [
- -68.542,
- 47.2798
- ],
- [
- -68.51214,
- 47.29195
- ],
- [
- -68.47381,
- 47.29229
- ],
- [
- -68.46038,
- 47.28149
- ],
- [
- -68.43898,
- 47.27777
- ],
- [
- -68.37229,
- 47.2825
- ],
- [
- -68.3703,
- 47.34796
- ],
- [
- -68.33173,
- 47.35822
- ],
- [
- -68.29664,
- 47.352
- ],
- [
- -68.2399,
- 47.34897
- ],
- [
- -68.0906,
- 47.26798
- ],
- [
- -68.00002,
- 47.21223
- ],
- [
- -67.96344,
- 47.19753
- ],
- [
- -67.93582,
- 47.15947
- ],
- [
- -67.88619,
- 47.10424
- ],
- [
- -67.80218,
- 47.06386
- ],
- [
- -67.79415,
- 45.93923
- ],
- [
- -67.82753,
- 45.8489
- ],
- [
- -67.82753,
- 45.6704
- ],
- [
- -67.54943,
- 45.57445
- ],
- [
- -67.45302,
- 45.58742
- ],
- [
- -67.44189,
- 45.52251
- ],
- [
- -67.54201,
- 45.49393
- ],
- [
- -67.4456,
- 45.38726
- ],
- [
- -67.51605,
- 45.29343
- ],
- [
- -67.38257,
- 45.11839
- ],
- [
- -67.3047,
- 45.11316
- ],
- [
- -67.26762,
- 45.18116
- ],
- [
- -67.12671,
- 45.09484
- ],
- [
- -66.94835,
- 44.78406
- ],
- [
- -66.52283,
- 43.61294
- ],
- [
- -65.02339,
- 42.10691
- ],
- [
- -42.53366,
- 47.50263
- ],
- [
- -75.90901,
- 77.3176
- ],
- [
- -71.86482,
- 78.7359
- ],
- [
- -67.20011,
- 80.66812
- ],
- [
- -66.20727,
- 80.78637
- ],
- [
- -54.82473,
- 83.07464
- ],
- [
- -57.62518,
- 85.04043
- ],
- [
- -106.7949,
- 85.04625
- ],
- [
- -141.3957,
- 79.2514
- ],
- [
- -141.0678,
- 60.2442
- ]
- ]
- ],
- "overlay": true
- },
- {
- "id": "Geobase_Roads",
- "name": "Geobase Roads - English",
- "type": "wms",
- "template": "https://maps.geogratis.gc.ca/wms/roads_en?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=roads&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "scaleExtent": [
- 4,
- 20
- ],
- "polygon": [
- [
- [
- -141.0678,
- 60.2442
- ],
- [
- -139.3842,
- 60.10331
- ],
- [
- -137.4746,
- 58.82791
- ],
- [
- -135.4766,
- 59.65971
- ],
- [
- -134.399,
- 58.86279
- ],
- [
- -132.5239,
- 57.08342
- ],
- [
- -130.1435,
- 55.27452
- ],
- [
- -130.7734,
- 54.75597
- ],
- [
- -132.4355,
- 54.71514
- ],
- [
- -134.5711,
- 54.38827
- ],
- [
- -141.7761,
- 53.58405
- ],
- [
- -128.9768,
- 46.41459
- ],
- [
- -124.8087,
- 48.42976
- ],
- [
- -123.4286,
- 48.17889
- ],
- [
- -123.0256,
- 48.40444
- ],
- [
- -123.19237,
- 48.65504
- ],
- [
- -122.99582,
- 48.51065
- ],
- [
- -122.4869,
- 48.4098
- ],
- [
- -122.32915,
- 48.4528
- ],
- [
- -122.22939,
- 48.50649
- ],
- [
- -122.17908,
- 48.52965
- ],
- [
- -122.1842,
- 48.5669
- ],
- [
- -121.77833,
- 48.57593
- ],
- [
- -121.66578,
- 48.42791
- ],
- [
- -121.33068,
- 48.35714
- ],
- [
- -121.02713,
- 48.34977
- ],
- [
- -121.03054,
- 48.49406
- ],
- [
- -120.698,
- 48.51497
- ],
- [
- -120.51041,
- 48.8718
- ],
- [
- -119.97579,
- 48.88134
- ],
- [
- -119.95447,
- 48.51497
- ],
- [
- -119.90758,
- 48.29421
- ],
- [
- -119.73193,
- 48.15503
- ],
- [
- -119.74386,
- 48.07419
- ],
- [
- -119.62279,
- 48.10951
- ],
- [
- -119.60232,
- 48.14707
- ],
- [
- -119.25273,
- 48.16243
- ],
- [
- -114.1499,
- 48.99487
- ],
- [
- -95.12094,
- 48.98405
- ],
- [
- -95.13419,
- 49.35564
- ],
- [
- -94.94415,
- 49.34356
- ],
- [
- -94.8839,
- 49.29522
- ],
- [
- -94.71704,
- 48.87631
- ],
- [
- -94.71791,
- 48.7485
- ],
- [
- -93.83204,
- 48.49765
- ],
- [
- -93.43778,
- 48.53066
- ],
- [
- -93.38216,
- 48.59507
- ],
- [
- -92.98471,
- 48.60312
- ],
- [
- -92.73847,
- 48.50725
- ],
- [
- -92.7095,
- 48.42081
- ],
- [
- -92.54293,
- 48.40158
- ],
- [
- -92.38361,
- 48.20406
- ],
- [
- -92.11564,
- 48.27641
- ],
- [
- -91.58697,
- 48.02516
- ],
- [
- -91.24658,
- 48.05422
- ],
- [
- -90.86275,
- 48.20889
- ],
- [
- -90.78308,
- 48.0639
- ],
- [
- -90.0774,
- 48.07435
- ],
- [
- -89.93835,
- 47.96584
- ],
- [
- -89.75469,
- 47.99609
- ],
- [
- -89.32745,
- 47.93943
- ],
- [
- -88.41489,
- 48.26677
- ],
- [
- -84.9566,
- 46.86086
- ],
- [
- -84.84795,
- 46.6762
- ],
- [
- -84.55904,
- 46.45441
- ],
- [
- -84.47642,
- 46.44972
- ],
- [
- -84.43758,
- 46.48872
- ],
- [
- -84.3669,
- 46.5055
- ],
- [
- -84.34899,
- 46.5055
- ],
- [
- -84.29026,
- 46.49077
- ],
- [
- -84.25742,
- 46.49386
- ],
- [
- -84.22507,
- 46.53187
- ],
- [
- -84.1962,
- 46.53804
- ],
- [
- -84.18027,
- 46.52468
- ],
- [
- -84.15987,
- 46.52468
- ],
- [
- -84.13449,
- 46.52879
- ],
- [
- -84.11558,
- 46.50653
- ],
- [
- -84.15944,
- 46.42769
- ],
- [
- -84.10024,
- 46.20338
- ],
- [
- -83.95558,
- 46.05132
- ],
- [
- -83.8864,
- 46.06125
- ],
- [
- -83.8203,
- 46.11181
- ],
- [
- -83.76975,
- 46.09563
- ],
- [
- -83.67498,
- 46.11391
- ],
- [
- -83.58084,
- 46.09921
- ],
- [
- -83.44747,
- 45.99521
- ],
- [
- -83.60888,
- 45.81772
- ],
- [
- -82.14271,
- 43.57905
- ],
- [
- -82.39133,
- 43.06666
- ],
- [
- -82.41252,
- 43.01127
- ],
- [
- -82.42522,
- 42.99864
- ],
- [
- -82.42618,
- 42.99374
- ],
- [
- -82.42363,
- 42.98536
- ],
- [
- -82.41503,
- 42.97697
- ],
- [
- -82.41853,
- 42.96578
- ],
- [
- -82.43064,
- 42.95203
- ],
- [
- -82.44911,
- 42.93711
- ],
- [
- -82.45739,
- 42.92568
- ],
- [
- -82.46472,
- 42.90562
- ],
- [
- -82.47228,
- 42.8877
- ],
- [
- -82.47228,
- 42.84743
- ],
- [
- -82.48536,
- 42.80967
- ],
- [
- -82.46844,
- 42.76365
- ],
- [
- -82.48586,
- 42.73697
- ],
- [
- -82.49155,
- 42.71168
- ],
- [
- -82.51488,
- 42.66652
- ],
- [
- -82.51224,
- 42.63893
- ],
- [
- -82.52421,
- 42.61103
- ],
- [
- -82.56854,
- 42.58184
- ],
- [
- -82.59498,
- 42.55148
- ],
- [
- -82.61286,
- 42.56409
- ],
- [
- -82.65158,
- 42.55707
- ],
- [
- -82.83439,
- 42.3763
- ],
- [
- -83.01489,
- 42.33457
- ],
- [
- -83.07244,
- 42.31502
- ],
- [
- -83.09647,
- 42.29542
- ],
- [
- -83.12823,
- 42.24126
- ],
- [
- -83.14167,
- 42.18582
- ],
- [
- -83.12799,
- 42.12172
- ],
- [
- -83.16266,
- 42.04963
- ],
- [
- -83.05136,
- 41.70911
- ],
- [
- -82.41932,
- 41.6377
- ],
- [
- -81.22563,
- 42.19633
- ],
- [
- -80.06688,
- 42.37121
- ],
- [
- -78.86642,
- 42.825
- ],
- [
- -78.90301,
- 42.92307
- ],
- [
- -78.92063,
- 42.95234
- ],
- [
- -78.93331,
- 42.95708
- ],
- [
- -78.96058,
- 42.9595
- ],
- [
- -78.98479,
- 42.9761
- ],
- [
- -79.01825,
- 42.9964
- ],
- [
- -79.01969,
- 43.01561
- ],
- [
- -79.00695,
- 43.0333
- ],
- [
- -78.99599,
- 43.06448
- ],
- [
- -79.07335,
- 43.07876
- ],
- [
- -79.07286,
- 43.083
- ],
- [
- -79.0652,
- 43.0917
- ],
- [
- -79.05623,
- 43.10825
- ],
- [
- -79.05982,
- 43.11563
- ],
- [
- -79.06764,
- 43.11992
- ],
- [
- -79.05411,
- 43.12801
- ],
- [
- -79.04112,
- 43.13986
- ],
- [
- -79.04465,
- 43.16192
- ],
- [
- -79.05101,
- 43.17037
- ],
- [
- -79.04758,
- 43.19974
- ],
- [
- -79.05511,
- 43.25682
- ],
- [
- -79.18688,
- 43.44858
- ],
- [
- -78.68836,
- 43.62502
- ],
- [
- -76.77647,
- 43.61369
- ],
- [
- -76.41665,
- 44.08498
- ],
- [
- -75.49023,
- 44.70772
- ],
- [
- -75.29544,
- 44.82587
- ],
- [
- -75.16845,
- 44.88548
- ],
- [
- -75.1275,
- 44.8975
- ],
- [
- -75.00499,
- 44.95265
- ],
- [
- -74.98159,
- 44.97728
- ],
- [
- -74.90496,
- 44.98222
- ],
- [
- -74.8313,
- 45.01108
- ],
- [
- -74.77954,
- 45.00158
- ],
- [
- -74.74562,
- 44.98526
- ],
- [
- -74.70475,
- 44.99877
- ],
- [
- -74.49079,
- 44.99343
- ],
- [
- -74.23203,
- 44.98552
- ],
- [
- -73.93713,
- 44.99512
- ],
- [
- -73.01809,
- 45.0121
- ],
- [
- -72.63177,
- 45.0121
- ],
- [
- -72.54779,
- 45.00506
- ],
- [
- -72.32259,
- 45.00286
- ],
- [
- -71.49404,
- 45.01093
- ],
- [
- -71.48648,
- 45.06221
- ],
- [
- -71.42303,
- 45.12765
- ],
- [
- -71.43112,
- 45.14037
- ],
- [
- -71.37175,
- 45.22117
- ],
- [
- -71.28959,
- 45.28578
- ],
- [
- -71.23613,
- 45.24302
- ],
- [
- -71.11683,
- 45.22933
- ],
- [
- -71.0531,
- 45.29866
- ],
- [
- -70.98936,
- 45.31088
- ],
- [
- -70.90246,
- 45.22525
- ],
- [
- -70.82473,
- 45.22714
- ],
- [
- -70.77626,
- 45.40013
- ],
- [
- -70.7119,
- 45.3754
- ],
- [
- -70.63387,
- 45.37346
- ],
- [
- -70.60302,
- 45.41179
- ],
- [
- -70.67659,
- 45.56319
- ],
- [
- -70.3752,
- 45.73075
- ],
- [
- -70.36334,
- 45.82013
- ],
- [
- -70.25417,
- 45.87468
- ],
- [
- -70.22569,
- 45.94403
- ],
- [
- -70.27316,
- 45.99022
- ],
- [
- -70.17586,
- 46.33538
- ],
- [
- -70.06195,
- 46.4107
- ],
- [
- -69.98891,
- 46.69363
- ],
- [
- -69.22424,
- 47.44463
- ],
- [
- -69.06999,
- 47.41092
- ],
- [
- -69.07473,
- 47.24202
- ],
- [
- -68.89684,
- 47.17469
- ],
- [
- -68.78685,
- 47.21493
- ],
- [
- -68.72415,
- 47.23217
- ],
- [
- -68.68583,
- 47.24028
- ],
- [
- -68.66044,
- 47.23183
- ],
- [
- -68.62162,
- 47.24028
- ],
- [
- -68.59425,
- 47.24974
- ],
- [
- -68.59226,
- 47.27001
- ],
- [
- -68.57385,
- 47.28486
- ],
- [
- -68.55941,
- 47.2798
- ],
- [
- -68.542,
- 47.2798
- ],
- [
- -68.51214,
- 47.29195
- ],
- [
- -68.47381,
- 47.29229
- ],
- [
- -68.46038,
- 47.28149
- ],
- [
- -68.43898,
- 47.27777
- ],
- [
- -68.37229,
- 47.2825
- ],
- [
- -68.3703,
- 47.34796
- ],
- [
- -68.33173,
- 47.35822
- ],
- [
- -68.29664,
- 47.352
- ],
- [
- -68.2399,
- 47.34897
- ],
- [
- -68.0906,
- 47.26798
- ],
- [
- -68.00002,
- 47.21223
- ],
- [
- -67.96344,
- 47.19753
- ],
- [
- -67.93582,
- 47.15947
- ],
- [
- -67.88619,
- 47.10424
- ],
- [
- -67.80218,
- 47.06386
- ],
- [
- -67.79415,
- 45.93923
- ],
- [
- -67.82753,
- 45.8489
- ],
- [
- -67.82753,
- 45.6704
- ],
- [
- -67.54943,
- 45.57445
- ],
- [
- -67.45302,
- 45.58742
- ],
- [
- -67.44189,
- 45.52251
- ],
- [
- -67.54201,
- 45.49393
- ],
- [
- -67.4456,
- 45.38726
- ],
- [
- -67.51605,
- 45.29343
- ],
- [
- -67.38257,
- 45.11839
- ],
- [
- -67.3047,
- 45.11316
- ],
- [
- -67.26762,
- 45.18116
- ],
- [
- -67.12671,
- 45.09484
- ],
- [
- -66.94835,
- 44.78406
- ],
- [
- -66.52283,
- 43.61294
- ],
- [
- -65.02339,
- 42.10691
- ],
- [
- -42.53366,
- 47.50263
- ],
- [
- -75.90901,
- 77.3176
- ],
- [
- -71.86482,
- 78.7359
- ],
- [
- -67.20011,
- 80.66812
- ],
- [
- -66.20727,
- 80.78637
- ],
- [
- -54.82473,
- 83.07464
- ],
- [
- -57.62518,
- 85.04043
- ],
- [
- -106.7949,
- 85.04625
- ],
- [
- -141.3957,
- 79.2514
- ],
- [
- -141.0678,
- 60.2442
- ]
- ]
- ]
- },
- {
- "id": "Geobase_Roads_French",
- "name": "Geobase Roads - French",
- "type": "wms",
- "template": "https://cartes.geogratis.gc.ca/wms/roads_fr?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=routes&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "scaleExtent": [
- 4,
- 20
- ],
- "polygon": [
- [
- [
- -141.0678,
- 60.2442
- ],
- [
- -139.3842,
- 60.10331
- ],
- [
- -137.4746,
- 58.82791
- ],
- [
- -135.4766,
- 59.65971
- ],
- [
- -134.399,
- 58.86279
- ],
- [
- -132.5239,
- 57.08342
- ],
- [
- -130.1435,
- 55.27452
- ],
- [
- -130.7734,
- 54.75597
- ],
- [
- -132.4355,
- 54.71514
- ],
- [
- -134.5711,
- 54.38827
- ],
- [
- -141.7761,
- 53.58405
- ],
- [
- -128.9768,
- 46.41459
- ],
- [
- -124.8087,
- 48.42976
- ],
- [
- -123.4286,
- 48.17889
- ],
- [
- -123.0256,
- 48.40444
- ],
- [
- -123.19237,
- 48.65504
- ],
- [
- -122.99582,
- 48.51065
- ],
- [
- -122.4869,
- 48.4098
- ],
- [
- -122.32915,
- 48.4528
- ],
- [
- -122.22939,
- 48.50649
- ],
- [
- -122.17908,
- 48.52965
- ],
- [
- -122.1842,
- 48.5669
- ],
- [
- -121.77833,
- 48.57593
- ],
- [
- -121.66578,
- 48.42791
- ],
- [
- -121.33068,
- 48.35714
- ],
- [
- -121.02713,
- 48.34977
- ],
- [
- -121.03054,
- 48.49406
- ],
- [
- -120.698,
- 48.51497
- ],
- [
- -120.51041,
- 48.8718
- ],
- [
- -119.97579,
- 48.88134
- ],
- [
- -119.95447,
- 48.51497
- ],
- [
- -119.90758,
- 48.29421
- ],
- [
- -119.73193,
- 48.15503
- ],
- [
- -119.74386,
- 48.07419
- ],
- [
- -119.62279,
- 48.10951
- ],
- [
- -119.60232,
- 48.14707
- ],
- [
- -119.25273,
- 48.16243
- ],
- [
- -114.1499,
- 48.99487
- ],
- [
- -95.12094,
- 48.98405
- ],
- [
- -95.13419,
- 49.35564
- ],
- [
- -94.94415,
- 49.34356
- ],
- [
- -94.8839,
- 49.29522
- ],
- [
- -94.71704,
- 48.87631
- ],
- [
- -94.71791,
- 48.7485
- ],
- [
- -93.83204,
- 48.49765
- ],
- [
- -93.43778,
- 48.53066
- ],
- [
- -93.38216,
- 48.59507
- ],
- [
- -92.98471,
- 48.60312
- ],
- [
- -92.73847,
- 48.50725
- ],
- [
- -92.7095,
- 48.42081
- ],
- [
- -92.54293,
- 48.40158
- ],
- [
- -92.38361,
- 48.20406
- ],
- [
- -92.11564,
- 48.27641
- ],
- [
- -91.58697,
- 48.02516
- ],
- [
- -91.24658,
- 48.05422
- ],
- [
- -90.86275,
- 48.20889
- ],
- [
- -90.78308,
- 48.0639
- ],
- [
- -90.0774,
- 48.07435
- ],
- [
- -89.93835,
- 47.96584
- ],
- [
- -89.75469,
- 47.99609
- ],
- [
- -89.32745,
- 47.93943
- ],
- [
- -88.41489,
- 48.26677
- ],
- [
- -84.9566,
- 46.86086
- ],
- [
- -84.84795,
- 46.6762
- ],
- [
- -84.55904,
- 46.45441
- ],
- [
- -84.47642,
- 46.44972
- ],
- [
- -84.43758,
- 46.48872
- ],
- [
- -84.3669,
- 46.5055
- ],
- [
- -84.34899,
- 46.5055
- ],
- [
- -84.29026,
- 46.49077
- ],
- [
- -84.25742,
- 46.49386
- ],
- [
- -84.22507,
- 46.53187
- ],
- [
- -84.1962,
- 46.53804
- ],
- [
- -84.18027,
- 46.52468
- ],
- [
- -84.15987,
- 46.52468
- ],
- [
- -84.13449,
- 46.52879
- ],
- [
- -84.11558,
- 46.50653
- ],
- [
- -84.15944,
- 46.42769
- ],
- [
- -84.10024,
- 46.20338
- ],
- [
- -83.95558,
- 46.05132
- ],
- [
- -83.8864,
- 46.06125
- ],
- [
- -83.8203,
- 46.11181
- ],
- [
- -83.76975,
- 46.09563
- ],
- [
- -83.67498,
- 46.11391
- ],
- [
- -83.58084,
- 46.09921
- ],
- [
- -83.44747,
- 45.99521
- ],
- [
- -83.60888,
- 45.81772
- ],
- [
- -82.14271,
- 43.57905
- ],
- [
- -82.39133,
- 43.06666
- ],
- [
- -82.41252,
- 43.01127
- ],
- [
- -82.42522,
- 42.99864
- ],
- [
- -82.42618,
- 42.99374
- ],
- [
- -82.42363,
- 42.98536
- ],
- [
- -82.41503,
- 42.97697
- ],
- [
- -82.41853,
- 42.96578
- ],
- [
- -82.43064,
- 42.95203
- ],
- [
- -82.44911,
- 42.93711
- ],
- [
- -82.45739,
- 42.92568
- ],
- [
- -82.46472,
- 42.90562
- ],
- [
- -82.47228,
- 42.8877
- ],
- [
- -82.47228,
- 42.84743
- ],
- [
- -82.48536,
- 42.80967
- ],
- [
- -82.46844,
- 42.76365
- ],
- [
- -82.48586,
- 42.73697
- ],
- [
- -82.49155,
- 42.71168
- ],
- [
- -82.51488,
- 42.66652
- ],
- [
- -82.51224,
- 42.63893
- ],
- [
- -82.52421,
- 42.61103
- ],
- [
- -82.56854,
- 42.58184
- ],
- [
- -82.59498,
- 42.55148
- ],
- [
- -82.61286,
- 42.56409
- ],
- [
- -82.65158,
- 42.55707
- ],
- [
- -82.83439,
- 42.3763
- ],
- [
- -83.01489,
- 42.33457
- ],
- [
- -83.07244,
- 42.31502
- ],
- [
- -83.09647,
- 42.29542
- ],
- [
- -83.12823,
- 42.24126
- ],
- [
- -83.14167,
- 42.18582
- ],
- [
- -83.12799,
- 42.12172
- ],
- [
- -83.16266,
- 42.04963
- ],
- [
- -83.05136,
- 41.70911
- ],
- [
- -82.41932,
- 41.6377
- ],
- [
- -81.22563,
- 42.19633
- ],
- [
- -80.06688,
- 42.37121
- ],
- [
- -78.86642,
- 42.825
- ],
- [
- -78.90301,
- 42.92307
- ],
- [
- -78.92063,
- 42.95234
- ],
- [
- -78.93331,
- 42.95708
- ],
- [
- -78.96058,
- 42.9595
- ],
- [
- -78.98479,
- 42.9761
- ],
- [
- -79.01825,
- 42.9964
- ],
- [
- -79.01969,
- 43.01561
- ],
- [
- -79.00695,
- 43.0333
- ],
- [
- -78.99599,
- 43.06448
- ],
- [
- -79.07335,
- 43.07876
- ],
- [
- -79.07286,
- 43.083
- ],
- [
- -79.0652,
- 43.0917
- ],
- [
- -79.05623,
- 43.10825
- ],
- [
- -79.05982,
- 43.11563
- ],
- [
- -79.06764,
- 43.11992
- ],
- [
- -79.05411,
- 43.12801
- ],
- [
- -79.04112,
- 43.13986
- ],
- [
- -79.04465,
- 43.16192
- ],
- [
- -79.05101,
- 43.17037
- ],
- [
- -79.04758,
- 43.19974
- ],
- [
- -79.05511,
- 43.25682
- ],
- [
- -79.18688,
- 43.44858
- ],
- [
- -78.68836,
- 43.62502
- ],
- [
- -76.77647,
- 43.61369
- ],
- [
- -76.41665,
- 44.08498
- ],
- [
- -75.49023,
- 44.70772
- ],
- [
- -75.29544,
- 44.82587
- ],
- [
- -75.16845,
- 44.88548
- ],
- [
- -75.1275,
- 44.8975
- ],
- [
- -75.00499,
- 44.95265
- ],
- [
- -74.98159,
- 44.97728
- ],
- [
- -74.90496,
- 44.98222
- ],
- [
- -74.8313,
- 45.01108
- ],
- [
- -74.77954,
- 45.00158
- ],
- [
- -74.74562,
- 44.98526
- ],
- [
- -74.70475,
- 44.99877
- ],
- [
- -74.49079,
- 44.99343
- ],
- [
- -74.23203,
- 44.98552
- ],
- [
- -73.93713,
- 44.99512
- ],
- [
- -73.01809,
- 45.0121
- ],
- [
- -72.63177,
- 45.0121
- ],
- [
- -72.54779,
- 45.00506
- ],
- [
- -72.32259,
- 45.00286
- ],
- [
- -71.49404,
- 45.01093
- ],
- [
- -71.48648,
- 45.06221
- ],
- [
- -71.42303,
- 45.12765
- ],
- [
- -71.43112,
- 45.14037
- ],
- [
- -71.37175,
- 45.22117
- ],
- [
- -71.28959,
- 45.28578
- ],
- [
- -71.23613,
- 45.24302
- ],
- [
- -71.11683,
- 45.22933
- ],
- [
- -71.0531,
- 45.29866
- ],
- [
- -70.98936,
- 45.31088
- ],
- [
- -70.90246,
- 45.22525
- ],
- [
- -70.82473,
- 45.22714
- ],
- [
- -70.77626,
- 45.40013
- ],
- [
- -70.7119,
- 45.3754
- ],
- [
- -70.63387,
- 45.37346
- ],
- [
- -70.60302,
- 45.41179
- ],
- [
- -70.67659,
- 45.56319
- ],
- [
- -70.3752,
- 45.73075
- ],
- [
- -70.36334,
- 45.82013
- ],
- [
- -70.25417,
- 45.87468
- ],
- [
- -70.22569,
- 45.94403
- ],
- [
- -70.27316,
- 45.99022
- ],
- [
- -70.17586,
- 46.33538
- ],
- [
- -70.06195,
- 46.4107
- ],
- [
- -69.98891,
- 46.69363
- ],
- [
- -69.22424,
- 47.44463
- ],
- [
- -69.06999,
- 47.41092
- ],
- [
- -69.07473,
- 47.24202
- ],
- [
- -68.89684,
- 47.17469
- ],
- [
- -68.78685,
- 47.21493
- ],
- [
- -68.72415,
- 47.23217
- ],
- [
- -68.68583,
- 47.24028
- ],
- [
- -68.66044,
- 47.23183
- ],
- [
- -68.62162,
- 47.24028
- ],
- [
- -68.59425,
- 47.24974
- ],
- [
- -68.59226,
- 47.27001
- ],
- [
- -68.57385,
- 47.28486
- ],
- [
- -68.55941,
- 47.2798
- ],
- [
- -68.542,
- 47.2798
- ],
- [
- -68.51214,
- 47.29195
- ],
- [
- -68.47381,
- 47.29229
- ],
- [
- -68.46038,
- 47.28149
- ],
- [
- -68.43898,
- 47.27777
- ],
- [
- -68.37229,
- 47.2825
- ],
- [
- -68.3703,
- 47.34796
- ],
- [
- -68.33173,
- 47.35822
- ],
- [
- -68.29664,
- 47.352
- ],
- [
- -68.2399,
- 47.34897
- ],
- [
- -68.0906,
- 47.26798
- ],
- [
- -68.00002,
- 47.21223
- ],
- [
- -67.96344,
- 47.19753
- ],
- [
- -67.93582,
- 47.15947
- ],
- [
- -67.88619,
- 47.10424
- ],
- [
- -67.80218,
- 47.06386
- ],
- [
- -67.79415,
- 45.93923
- ],
- [
- -67.82753,
- 45.8489
- ],
- [
- -67.82753,
- 45.6704
- ],
- [
- -67.54943,
- 45.57445
- ],
- [
- -67.45302,
- 45.58742
- ],
- [
- -67.44189,
- 45.52251
- ],
- [
- -67.54201,
- 45.49393
- ],
- [
- -67.4456,
- 45.38726
- ],
- [
- -67.51605,
- 45.29343
- ],
- [
- -67.38257,
- 45.11839
- ],
- [
- -67.3047,
- 45.11316
- ],
- [
- -67.26762,
- 45.18116
- ],
- [
- -67.12671,
- 45.09484
- ],
- [
- -66.94835,
- 44.78406
- ],
- [
- -66.52283,
- 43.61294
- ],
- [
- -65.02339,
- 42.10691
- ],
- [
- -42.53366,
- 47.50263
- ],
- [
- -75.90901,
- 77.3176
- ],
- [
- -71.86482,
- 78.7359
- ],
- [
- -67.20011,
- 80.66812
- ],
- [
- -66.20727,
- 80.78637
- ],
- [
- -54.82473,
- 83.07464
- ],
- [
- -57.62518,
- 85.04043
- ],
- [
- -106.7949,
- 85.04625
- ],
- [
- -141.3957,
- 79.2514
- ],
- [
- -141.0678,
- 60.2442
- ]
- ]
- ]
- },
- {
- "id": "geoimage.at",
- "name": "Geoimage.at MaxRes",
- "type": "wms",
- "template": "http://gis.lebensministerium.at/wmsgw/?key=4d80de696cd562a63ce463a58a61488d&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=Luftbild_MR,Luftbild_1m,Luftbild_8m,Satellitenbild_30m&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- 16.50733,
- 46.99293
- ],
- [
- 16.28342,
- 46.99293
- ],
- [
- 16.13584,
- 46.8713
- ],
- [
- 15.98317,
- 46.81909
- ],
- [
- 16.04933,
- 46.65517
- ],
- [
- 15.86104,
- 46.71801
- ],
- [
- 15.75926,
- 46.69009
- ],
- [
- 15.56079,
- 46.67962
- ],
- [
- 15.57606,
- 46.63421
- ],
- [
- 15.47937,
- 46.60276
- ],
- [
- 15.43357,
- 46.65168
- ],
- [
- 15.22493,
- 46.63421
- ],
- [
- 15.04682,
- 46.64819
- ],
- [
- 14.99084,
- 46.58877
- ],
- [
- 14.9603,
- 46.62373
- ],
- [
- 14.85344,
- 46.60276
- ],
- [
- 14.83308,
- 46.50127
- ],
- [
- 14.75166,
- 46.49776
- ],
- [
- 14.68041,
- 46.43818
- ],
- [
- 14.61426,
- 46.43818
- ],
- [
- 14.57864,
- 46.37853
- ],
- [
- 14.44124,
- 46.43116
- ],
- [
- 14.16135,
- 46.42766
- ],
- [
- 14.12573,
- 46.47674
- ],
- [
- 14.01886,
- 46.47674
- ],
- [
- 13.91199,
- 46.52578
- ],
- [
- 13.82548,
- 46.50477
- ],
- [
- 13.44381,
- 46.56078
- ],
- [
- 13.30641,
- 46.55028
- ],
- [
- 13.1283,
- 46.58877
- ],
- [
- 12.84332,
- 46.61324
- ],
- [
- 12.72628,
- 46.6412
- ],
- [
- 12.51255,
- 46.66565
- ],
- [
- 12.35988,
- 46.70405
- ],
- [
- 12.36497,
- 46.77032
- ],
- [
- 12.28863,
- 46.77729
- ],
- [
- 12.27337,
- 46.88522
- ],
- [
- 12.20721,
- 46.87478
- ],
- [
- 12.13088,
- 46.90261
- ],
- [
- 12.11561,
- 46.99987
- ],
- [
- 12.25301,
- 47.06577
- ],
- [
- 12.2123,
- 47.0935
- ],
- [
- 11.9833,
- 47.04497
- ],
- [
- 11.73394,
- 46.96168
- ],
- [
- 11.63217,
- 47.01028
- ],
- [
- 11.54057,
- 46.97557
- ],
- [
- 11.49986,
- 47.00681
- ],
- [
- 11.41843,
- 46.96515
- ],
- [
- 11.25559,
- 46.97557
- ],
- [
- 11.1131,
- 46.91304
- ],
- [
- 11.04185,
- 46.76335
- ],
- [
- 10.88919,
- 46.75986
- ],
- [
- 10.74161,
- 46.78426
- ],
- [
- 10.70599,
- 46.86435
- ],
- [
- 10.57877,
- 46.83998
- ],
- [
- 10.45663,
- 46.85043
- ],
- [
- 10.47699,
- 46.92694
- ],
- [
- 10.38539,
- 46.98946
- ],
- [
- 10.23272,
- 46.86435
- ],
- [
- 10.12076,
- 46.83302
- ],
- [
- 9.86632,
- 46.94084
- ],
- [
- 9.90194,
- 47.00334
- ],
- [
- 9.68312,
- 47.05884
- ],
- [
- 9.61188,
- 47.03804
- ],
- [
- 9.63223,
- 47.12813
- ],
- [
- 9.58134,
- 47.1662
- ],
- [
- 9.54063,
- 47.26644
- ],
- [
- 9.60679,
- 47.34926
- ],
- [
- 9.67294,
- 47.36994
- ],
- [
- 9.64241,
- 47.44571
- ],
- [
- 9.56608,
- 47.48011
- ],
- [
- 9.71365,
- 47.52824
- ],
- [
- 9.7849,
- 47.59692
- ],
- [
- 9.83579,
- 47.54542
- ],
- [
- 9.94774,
- 47.53855
- ],
- [
- 10.09023,
- 47.44915
- ],
- [
- 10.11059,
- 47.36649
- ],
- [
- 10.2429,
- 47.38717
- ],
- [
- 10.18692,
- 47.2699
- ],
- [
- 10.32432,
- 47.29751
- ],
- [
- 10.48208,
- 47.44915
- ],
- [
- 10.43119,
- 47.48699
- ],
- [
- 10.44137,
- 47.59005
- ],
- [
- 10.48717,
- 47.55229
- ],
- [
- 10.54823,
- 47.53511
- ],
- [
- 10.59912,
- 47.56602
- ],
- [
- 10.75688,
- 47.53168
- ],
- [
- 10.88919,
- 47.54542
- ],
- [
- 10.94008,
- 47.48699
- ],
- [
- 10.99605,
- 47.39061
- ],
- [
- 11.23523,
- 47.44227
- ],
- [
- 11.28103,
- 47.3975
- ],
- [
- 11.42352,
- 47.51449
- ],
- [
- 11.57619,
- 47.50762
- ],
- [
- 11.60672,
- 47.59005
- ],
- [
- 11.83572,
- 47.58662
- ],
- [
- 12.00366,
- 47.62436
- ],
- [
- 12.20721,
- 47.60378
- ],
- [
- 12.16141,
- 47.69634
- ],
- [
- 12.2581,
- 47.74427
- ],
- [
- 12.25301,
- 47.67921
- ],
- [
- 12.43112,
- 47.71004
- ],
- [
- 12.49219,
- 47.63122
- ],
- [
- 12.56852,
- 47.62779
- ],
- [
- 12.62959,
- 47.68949
- ],
- [
- 12.77208,
- 47.66893
- ],
- [
- 12.83315,
- 47.54198
- ],
- [
- 12.97564,
- 47.47323
- ],
- [
- 13.04179,
- 47.49387
- ],
- [
- 13.0367,
- 47.55572
- ],
- [
- 13.09777,
- 47.64151
- ],
- [
- 13.03161,
- 47.71004
- ],
- [
- 12.90439,
- 47.72031
- ],
- [
- 13.00617,
- 47.84683
- ],
- [
- 12.9451,
- 47.93555
- ],
- [
- 12.86368,
- 47.95941
- ],
- [
- 12.86368,
- 48.00369
- ],
- [
- 12.75172,
- 48.09894
- ],
- [
- 12.87386,
- 48.21097
- ],
- [
- 12.96037,
- 48.21097
- ],
- [
- 13.04179,
- 48.2652
- ],
- [
- 13.18428,
- 48.29907
- ],
- [
- 13.26061,
- 48.2923
- ],
- [
- 13.39801,
- 48.35659
- ],
- [
- 13.44381,
- 48.41742
- ],
- [
- 13.43872,
- 48.55234
- ],
- [
- 13.50997,
- 48.58601
- ],
- [
- 13.61175,
- 48.57255
- ],
- [
- 13.72879,
- 48.5119
- ],
- [
- 13.78477,
- 48.57255
- ],
- [
- 13.82039,
- 48.62639
- ],
- [
- 13.79495,
- 48.71713
- ],
- [
- 13.85093,
- 48.77417
- ],
- [
- 14.05957,
- 48.66338
- ],
- [
- 14.01377,
- 48.63312
- ],
- [
- 14.07484,
- 48.59274
- ],
- [
- 14.21733,
- 48.59611
- ],
- [
- 14.3649,
- 48.54897
- ],
- [
- 14.46668,
- 48.64993
- ],
- [
- 14.55828,
- 48.59611
- ],
- [
- 14.59899,
- 48.62639
- ],
- [
- 14.72113,
- 48.57591
- ],
- [
- 14.72113,
- 48.6869
- ],
- [
- 14.8229,
- 48.7272
- ],
- [
- 14.81782,
- 48.77753
- ],
- [
- 14.96472,
- 48.78518
- ],
- [
- 14.98936,
- 49.01266
- ],
- [
- 15.14859,
- 48.99503
- ],
- [
- 15.19439,
- 48.93155
- ],
- [
- 15.30635,
- 48.98501
- ],
- [
- 15.39286,
- 48.98501
- ],
- [
- 15.48446,
- 48.92821
- ],
- [
- 15.74908,
- 48.8546
- ],
- [
- 15.84068,
- 48.88807
- ],
- [
- 16.00862,
- 48.78088
- ],
- [
- 16.20708,
- 48.73391
- ],
- [
- 16.39537,
- 48.73727
- ],
- [
- 16.49206,
- 48.81105
- ],
- [
- 16.69053,
- 48.77417
- ],
- [
- 16.7058,
- 48.73391
- ],
- [
- 16.89917,
- 48.71377
- ],
- [
- 16.97551,
- 48.51527
- ],
- [
- 16.84828,
- 48.45118
- ],
- [
- 16.85337,
- 48.34644
- ],
- [
- 16.95515,
- 48.25165
- ],
- [
- 16.99077,
- 48.1499
- ],
- [
- 17.09255,
- 48.13971
- ],
- [
- 17.08237,
- 48.02412
- ],
- [
- 17.17397,
- 48.02071
- ],
- [
- 17.08237,
- 47.87414
- ],
- [
- 16.98568,
- 47.86732
- ],
- [
- 17.08237,
- 47.80925
- ],
- [
- 17.09255,
- 47.70319
- ],
- [
- 16.74142,
- 47.67921
- ],
- [
- 16.7058,
- 47.75112
- ],
- [
- 16.53786,
- 47.75454
- ],
- [
- 16.54804,
- 47.70662
- ],
- [
- 16.42082,
- 47.66893
- ],
- [
- 16.57348,
- 47.6175
- ],
- [
- 16.67017,
- 47.63122
- ],
- [
- 16.71088,
- 47.53855
- ],
- [
- 16.66,
- 47.44915
- ],
- [
- 16.54295,
- 47.39406
- ],
- [
- 16.46153,
- 47.39406
- ],
- [
- 16.49206,
- 47.2768
- ],
- [
- 16.42591,
- 47.19733
- ],
- [
- 16.47171,
- 47.1489
- ],
- [
- 16.54804,
- 47.1489
- ],
- [
- 16.47679,
- 47.07964
- ],
- [
- 16.52768,
- 47.05884
- ],
- [
- 16.50733,
- 46.99293
- ]
- ]
- ],
- "terms_url": "http://geoimage.at",
- "terms_text": "geoimage.at",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QwTFA8gQvGHigAAAwtJREFUOMvtk19oW1Ucx7/nnntukpvGtF2btHG1o52bYxULOp99sYggiM7pVKbbQNCH+SYOFMHCHhR88g9jjPmgm32YMpGNTbpp1W5D7NyfJnYLTdNm3ZI0SZPc5N5zzz3n+CIiCtM9+KQf+D39+H74Pfy+wH8Ocqvlh4enyblMO7JpKHl/X080sbhcnH3r3eNXkR1XtyU8cHiS2Hakf+iuxJ7enq7n4x12ijFDtz3fW11tzBZL1YMnpjKfvrN3m/O3ws+OTRnxmP1gsrf7g2RizUbGLCtkGdSkBnigtPCFaLXc1ZvF8vfZXOG1HdvGcn/M0z8Ln9nx8vBAas0ngwN9dzPGmGlSCkIMrTQxQABCSDjE2B2xyJ2E0A0d/Q+cPP/tMb7v0Kwx+tBz5PcL9350mXZFVuzR4b73Nm3o326HQpYdNonWMEAIgdZQWmvP8yECpZptKetNtzqTLkz8UpBfKmJ1tJo1SgBgfP8V2mhVn2JYet0Osc09Xabp+DFdbpgkV7SQ6jbRdCXaHAgU4AsFj0sQAFGbgguNhsPRqiyeM/d/PkezS4WxRilzpLM5ga5EEu5qGJvXDZFDuXvA4sO4b30MXCi4XCLRGYZhaFQaEtTQ6I5bKNV8HJ3ML1cLM+Pm1fnCaNFZmLhRORkkUltIpl2mI/duxMW8Rk0N4okRG3OLDtb2RlB3AthhgXI9QLbgIp13QQ0CrQSEU57JnX3/OBnbfWBfpVIZjEb7DClb8WRv50jMDqesSNzwpU+UFAiZFIGmaHsKFjNAKNOub8LhkC6XbiD4wvXLR19dOH/wzF9+8McL6Uev31jJNlrc8Xjg+4GSvlBKSKXaLpfFUk3kl5bddOZa7dTk1PTT2194DED3LfqxlZz+7qc35uZvXitXHdf1ROALKX+boO353nKpXr2UyU9/deLMzn9aPfLNDz+/NLC2/0WDhgZNxnqYSUzOA0f4vMg9J33xytzHz2595Ivb6vKet48kHx/b8mQ40vFwNMKS9UbzQmWleHrXK29+XZs/1cD//Cv8CriEgFStQ2K4AAAAAElFTkSuQmCC"
- },
- {
- "id": "Geolittoral-Orthophotos2000",
- "name": "Géolittoral - Orthophotos 2000",
- "type": "wms",
- "template": "http://geolittoral.application.developpement-durable.gouv.fr/wms2/metropole?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortholittorale&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2000-01-01T00:00:00.000Z",
- "startDate": "2000-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- -1.07962,
- 46.10959
- ],
- [
- -0.94115,
- 46.01474
- ],
- [
- -0.56306,
- 45.15178
- ],
- [
- -0.7266,
- 45.08425
- ],
- [
- -0.87904,
- 45.34094
- ],
- [
- -0.99794,
- 45.33779
- ],
- [
- -0.95558,
- 44.69982
- ],
- [
- -1.15862,
- 44.19865
- ],
- [
- -1.21512,
- 44.20558
- ],
- [
- -1.24654,
- 44.1162
- ],
- [
- -1.27903,
- 44.03937
- ],
- [
- -1.28825,
- 44.02304
- ],
- [
- -1.32117,
- 43.94094
- ],
- [
- -1.32151,
- 43.92296
- ],
- [
- -1.3092,
- 43.92337
- ],
- [
- -1.3085,
- 43.91439
- ],
- [
- -1.28366,
- 43.91514
- ],
- [
- -1.28302,
- 43.90624
- ],
- [
- -1.2761,
- 43.90655
- ],
- [
- -1.28211,
- 43.89254
- ],
- [
- -1.30102,
- 43.85159
- ],
- [
- -1.30384,
- 43.8424
- ],
- [
- -1.30923,
- 43.83498
- ],
- [
- -1.33474,
- 43.76946
- ],
- [
- -1.34407,
- 43.74875
- ],
- [
- -1.3456,
- 43.74214
- ],
- [
- -1.34673,
- 43.73688
- ],
- [
- -1.43284,
- 43.53152
- ],
- [
- -1.42806,
- 43.46812
- ],
- [
- -1.60627,
- 43.40591
- ],
- [
- -1.6061,
- 43.36012
- ],
- [
- -1.77441,
- 43.30357
- ],
- [
- -1.82995,
- 43.38484
- ],
- [
- -1.58551,
- 43.46856
- ],
- [
- -1.35706,
- 44.03374
- ],
- [
- -1.40217,
- 44.06461
- ],
- [
- -1.33584,
- 44.22832
- ],
- [
- -1.21836,
- 44.23033
- ],
- [
- -1.16795,
- 44.41097
- ],
- [
- -1.30744,
- 44.41847
- ],
- [
- -1.16979,
- 45.59107
- ],
- [
- -1.48685,
- 46.06042
- ],
- [
- -1.36364,
- 46.09146
- ],
- [
- -1.60176,
- 46.17019
- ],
- [
- -1.64442,
- 46.22375
- ],
- [
- -1.58595,
- 46.30426
- ],
- [
- -1.51008,
- 46.33888
- ],
- [
- -1.75643,
- 46.42214
- ],
- [
- -2.1872,
- 46.81857
- ],
- [
- -2.16423,
- 46.85534
- ],
- [
- -2.23654,
- 46.9337
- ],
- [
- -2.39769,
- 46.96718
- ],
- [
- -2.282,
- 47.07631
- ],
- [
- -2.12563,
- 47.01875
- ],
- [
- -2.09013,
- 47.06562
- ],
- [
- -2.18487,
- 47.10698
- ],
- [
- -2.2647,
- 47.10763
- ],
- [
- -2.24489,
- 47.18562
- ],
- [
- -2.56779,
- 47.24467
- ],
- [
- -2.66727,
- 47.46686
- ],
- [
- -2.74787,
- 47.47122
- ],
- [
- -2.75771,
- 47.43461
- ],
- [
- -2.89321,
- 47.4629
- ],
- [
- -2.90369,
- 47.50905
- ],
- [
- -3.03383,
- 47.53833
- ],
- [
- -3.07113,
- 47.51185
- ],
- [
- -3.01653,
- 47.49873
- ],
- [
- -3.12502,
- 47.42693
- ],
- [
- -3.18803,
- 47.48441
- ],
- [
- -3.22791,
- 47.61132
- ],
- [
- -3.2967,
- 47.63161
- ],
- [
- -3.2876,
- 47.67154
- ],
- [
- -3.34074,
- 47.66893
- ],
- [
- -3.38912,
- 47.59473
- ],
- [
- -3.55087,
- 47.63827
- ],
- [
- -3.53384,
- 47.72488
- ],
- [
- -3.76577,
- 47.76476
- ],
- [
- -3.77595,
- 47.7371
- ],
- [
- -3.91168,
- 47.75915
- ],
- [
- -3.8959,
- 47.79911
- ],
- [
- -3.97236,
- 47.81526
- ],
- [
- -3.99722,
- 47.7975
- ],
- [
- -3.97956,
- 47.76268
- ],
- [
- -3.8945,
- 47.72193
- ],
- [
- -3.9162,
- 47.67831
- ],
- [
- -4.10163,
- 47.70921
- ],
- [
- -4.08989,
- 47.78944
- ],
- [
- -4.03798,
- 47.79909
- ],
- [
- -4.04125,
- 47.83109
- ],
- [
- -4.08765,
- 47.84221
- ],
- [
- -4.14781,
- 47.82525
- ],
- [
- -4.14314,
- 47.78847
- ],
- [
- -4.35162,
- 47.7415
- ],
- [
- -4.47962,
- 47.9776
- ],
- [
- -4.98565,
- 47.99896
- ],
- [
- -4.96938,
- 48.08972
- ],
- [
- -4.63576,
- 48.07798
- ],
- [
- -4.60147,
- 48.11469
- ],
- [
- -4.385,
- 48.10962
- ],
- [
- -4.38955,
- 48.14543
- ],
- [
- -4.30925,
- 48.15009
- ],
- [
- -4.31268,
- 48.17694
- ],
- [
- -4.46369,
- 48.18468
- ],
- [
- -4.49748,
- 48.1453
- ],
- [
- -4.5921,
- 48.14758
- ],
- [
- -4.57537,
- 48.22488
- ],
- [
- -4.67101,
- 48.2331
- ],
- [
- -4.65434,
- 48.31049
- ],
- [
- -4.84243,
- 48.3005
- ],
- [
- -5.19867,
- 48.44926
- ],
- [
- -5.10346,
- 48.51722
- ],
- [
- -4.81465,
- 48.39413
- ],
- [
- -4.83515,
- 48.54319
- ],
- [
- -4.63387,
- 48.66373
- ],
- [
- -3.96692,
- 48.77978
- ],
- [
- -3.94939,
- 48.74715
- ],
- [
- -3.6502,
- 48.75356
- ],
- [
- -3.65853,
- 48.82527
- ],
- [
- -3.53931,
- 48.85834
- ],
- [
- -3.54444,
- 48.90297
- ],
- [
- -3.40954,
- 48.91866
- ],
- [
- -3.40755,
- 48.87366
- ],
- [
- -3.02769,
- 48.9275
- ],
- [
- -2.67861,
- 48.58841
- ],
- [
- -2.28475,
- 48.71909
- ],
- [
- -2.17543,
- 48.65016
- ],
- [
- -2.0137,
- 48.73221
- ],
- [
- -1.80953,
- 48.73178
- ],
- [
- -1.80392,
- 48.66126
- ],
- [
- -1.61161,
- 48.68582
- ],
- [
- -1.71645,
- 49.24781
- ],
- [
- -1.8026,
- 49.32721
- ],
- [
- -1.85748,
- 49.3253
- ],
- [
- -1.9262,
- 49.65573
- ],
- [
- -2.03908,
- 49.67872
- ],
- [
- -2.00445,
- 49.76087
- ],
- [
- -1.61759,
- 49.68498
- ],
- [
- -1.28373,
- 49.76067
- ],
- [
- -1.1492,
- 49.63504
- ],
- [
- -1.17134,
- 49.55412
- ],
- [
- -1.27353,
- 49.55245
- ],
- [
- -1.1328,
- 49.3934
- ],
- [
- -0.93059,
- 49.40804
- ],
- [
- -0.74827,
- 49.35976
- ],
- [
- -0.38935,
- 49.34167
- ],
- [
- -0.24704,
- 49.29995
- ],
- [
- -0.12454,
- 49.29353
- ],
- [
- 0.02731,
- 49.37619
- ],
- [
- 0.01801,
- 49.54656
- ],
- [
- 0.12211,
- 49.69292
- ],
- [
- 0.51713,
- 49.86466
- ],
- [
- 1.05727,
- 49.94904
- ],
- [
- 1.43908,
- 50.11819
- ],
- [
- 1.53177,
- 50.46437
- ],
- [
- 1.52549,
- 50.85867
- ],
- [
- 1.64118,
- 50.95919
- ],
- [
- 2.4521,
- 51.12144
- ],
- [
- 2.59286,
- 51.12124
- ],
- [
- 2.60683,
- 51.05779
- ],
- [
- 1.7976,
- 50.89906
- ],
- [
- 1.66458,
- 50.82379
- ],
- [
- 1.70786,
- 50.1282
- ],
- [
- 1.05936,
- 49.85
- ],
- [
- 0.61607,
- 49.79062
- ],
- [
- 0.24731,
- 49.65027
- ],
- [
- 0.1709,
- 49.53174
- ],
- [
- 0.57065,
- 49.49622
- ],
- [
- 0.41115,
- 49.3396
- ],
- [
- 0.19504,
- 49.35736
- ],
- [
- 0.01718,
- 49.25479
- ],
- [
- -0.24453,
- 49.26312
- ],
- [
- -0.38408,
- 49.30495
- ],
- [
- -0.74091,
- 49.32438
- ],
- [
- -0.9954,
- 49.37133
- ],
- [
- -1.05453,
- 49.25175
- ],
- [
- -1.27704,
- 49.29022
- ],
- [
- -1.25966,
- 49.43463
- ],
- [
- -1.39141,
- 49.53985
- ],
- [
- -1.27535,
- 49.62056
- ],
- [
- -1.29775,
- 49.65946
- ],
- [
- -1.4905,
- 49.57139
- ],
- [
- -1.77517,
- 49.63398
- ],
- [
- -1.74601,
- 49.48155
- ],
- [
- -1.51294,
- 49.24691
- ],
- [
- -1.48261,
- 48.72607
- ],
- [
- -1.30574,
- 48.72531
- ],
- [
- -1.28323,
- 48.59731
- ],
- [
- -2.76114,
- 48.43471
- ],
- [
- -3.00174,
- 48.67646
- ],
- [
- -3.21062,
- 48.72097
- ],
- [
- -3.95404,
- 48.56051
- ],
- [
- -4.15643,
- 48.60792
- ],
- [
- -4.44475,
- 48.55852
- ],
- [
- -4.63683,
- 48.48299
- ],
- [
- -4.6319,
- 48.44727
- ],
- [
- -4.25022,
- 48.43088
- ],
- [
- -4.06141,
- 48.21805
- ],
- [
- -4.1757,
- 48.05165
- ],
- [
- -4.31904,
- 48.0141
- ],
- [
- -4.26781,
- 47.89977
- ],
- [
- -3.88484,
- 47.98172
- ],
- [
- -3.76375,
- 47.86403
- ],
- [
- -2.32727,
- 47.52634
- ],
- [
- -2.36911,
- 47.3339
- ],
- [
- -1.74067,
- 47.33507
- ],
- [
- -1.77062,
- 47.20451
- ],
- [
- -2.03678,
- 47.21942
- ],
- [
- -2.0968,
- 47.15548
- ],
- [
- -1.88786,
- 47.01239
- ],
- [
- -2.08797,
- 46.83007
- ],
- [
- -2.01214,
- 46.83436
- ],
- [
- -1.84079,
- 46.69651
- ],
- [
- -1.87318,
- 46.65484
- ],
- [
- -1.68859,
- 46.50392
- ],
- [
- -1.62117,
- 46.51513
- ],
- [
- -1.42428,
- 46.41675
- ],
- [
- -1.01761,
- 46.35917
- ],
- [
- -1.07962,
- 46.10959
- ]
- ],
- [
- [
- -2.41232,
- 46.69242
- ],
- [
- -2.37197,
- 46.67611
- ],
- [
- -2.26749,
- 46.68033
- ],
- [
- -2.27007,
- 46.70705
- ],
- [
- -2.29827,
- 46.73286
- ],
- [
- -2.41655,
- 46.73711
- ],
- [
- -2.41232,
- 46.69242
- ]
- ],
- [
- [
- -3.06018,
- 47.40542
- ],
- [
- -2.82587,
- 47.29635
- ],
- [
- -2.78787,
- 47.33417
- ],
- [
- -3.02436,
- 47.44563
- ],
- [
- -3.06018,
- 47.40542
- ]
- ],
- [
- [
- -3.26482,
- 47.4295
- ],
- [
- -3.3343,
- 47.35928
- ],
- [
- -3.29614,
- 47.34133
- ],
- [
- -3.31489,
- 47.30057
- ],
- [
- -3.19941,
- 47.24492
- ],
- [
- -3.16567,
- 47.27751
- ],
- [
- -3.08686,
- 47.23612
- ],
- [
- -3.00637,
- 47.30855
- ],
- [
- -3.26482,
- 47.4295
- ]
- ],
- [
- [
- -1.93966,
- 48.86346
- ],
- [
- -1.93993,
- 48.91179
- ],
- [
- -1.701,
- 48.91105
- ],
- [
- -1.69726,
- 48.86173
- ],
- [
- -1.93966,
- 48.86346
- ]
- ]
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/WikiProject_France/G%C3%A9oLittoral",
- "terms_text": "Ortho littorale 2000"
- },
- {
- "id": "Geolittoral-Sentiers",
- "name": "Géolittoral - Sentiers",
- "type": "wms",
- "template": "http://geolittoral.application.developpement-durable.gouv.fr/wms2/metropole?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=n_sentier_littoral_l&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -0.98385,
- 46.18807
- ],
- [
- -0.89497,
- 46.15628
- ],
- [
- -0.93455,
- 46.10163
- ],
- [
- -0.84388,
- 46.06949
- ],
- [
- -0.88241,
- 46.01637
- ],
- [
- -0.53787,
- 45.89558
- ],
- [
- -0.63498,
- 45.76444
- ],
- [
- -0.86666,
- 45.8479
- ],
- [
- -0.76264,
- 45.6245
- ],
- [
- -0.69695,
- 45.62659
- ],
- [
- -0.69397,
- 45.60184
- ],
- [
- -0.68755,
- 45.60174
- ],
- [
- -0.688,
- 45.50986
- ],
- [
- -0.63799,
- 45.50892
- ],
- [
- -0.63978,
- 45.44747
- ],
- [
- -0.61574,
- 45.44695
- ],
- [
- -0.61619,
- 45.38586
- ],
- [
- -0.58544,
- 45.38596
- ],
- [
- -0.58529,
- 45.32334
- ],
- [
- -0.55379,
- 45.32344
- ],
- [
- -0.55275,
- 45.19661
- ],
- [
- -0.49094,
- 45.19577
- ],
- [
- -0.49184,
- 45.13315
- ],
- [
- -0.45661,
- 45.13325
- ],
- [
- -0.45512,
- 45.07161
- ],
- [
- -0.41611,
- 45.07089
- ],
- [
- -0.41621,
- 45.02696
- ],
- [
- -0.2907,
- 44.98278
- ],
- [
- -0.22,
- 45.06771
- ],
- [
- -0.12252,
- 45.02563
- ],
- [
- -0.18925,
- 44.94591
- ],
- [
- -0.09266,
- 44.91019
- ],
- [
- -0.14521,
- 44.8392
- ],
- [
- -0.15491,
- 44.84238
- ],
- [
- -0.19387,
- 44.78678
- ],
- [
- -0.43541,
- 44.87317
- ],
- [
- -0.39048,
- 44.68413
- ],
- [
- -0.58798,
- 44.66014
- ],
- [
- -0.66628,
- 44.99129
- ],
- [
- -0.77838,
- 44.99263
- ],
- [
- -0.77764,
- 45.05389
- ],
- [
- -0.81584,
- 45.05321
- ],
- [
- -0.81838,
- 45.11962
- ],
- [
- -0.88393,
- 45.12051
- ],
- [
- -0.88171,
- 45.18081
- ],
- [
- -0.93438,
- 45.18185
- ],
- [
- -0.9328,
- 45.24484
- ],
- [
- -1.00163,
- 45.24439
- ],
- [
- -1.00247,
- 45.30827
- ],
- [
- -1.0524,
- 45.31013
- ],
- [
- -1.04828,
- 45.36911
- ],
- [
- -1.06412,
- 45.36911
- ],
- [
- -1.05039,
- 45.18252
- ],
- [
- -1.10761,
- 44.80787
- ],
- [
- -1.01514,
- 44.80113
- ],
- [
- -1.01946,
- 44.76914
- ],
- [
- -0.93365,
- 44.76149
- ],
- [
- -0.9404,
- 44.7018
- ],
- [
- -0.96035,
- 44.56434
- ],
- [
- -1.01408,
- 44.56765
- ],
- [
- -1.09916,
- 44.1456
- ],
- [
- -1.22689,
- 44.14022
- ],
- [
- -1.21853,
- 44.03249
- ],
- [
- -1.30762,
- 44.029
- ],
- [
- -1.39572,
- 43.74301
- ],
- [
- -1.31296,
- 43.72951
- ],
- [
- -1.37439,
- 43.53109
- ],
- [
- -1.34589,
- 43.50606
- ],
- [
- -1.59964,
- 43.35423
- ],
- [
- -1.76549,
- 43.25548
- ],
- [
- -1.79281,
- 43.28038
- ],
- [
- -1.80281,
- 43.40425
- ],
- [
- -1.72832,
- 43.45033
- ],
- [
- -1.58531,
- 43.489
- ],
- [
- -1.33584,
- 44.22832
- ],
- [
- -1.30744,
- 44.41847
- ],
- [
- -1.22511,
- 45.44416
- ],
- [
- -1.48685,
- 46.06042
- ],
- [
- -1.60176,
- 46.17019
- ],
- [
- -1.64442,
- 46.22375
- ],
- [
- -1.75643,
- 46.42214
- ],
- [
- -2.03483,
- 46.61895
- ],
- [
- -2.3466,
- 46.62382
- ],
- [
- -2.46561,
- 46.71196
- ],
- [
- -2.3233,
- 46.83812
- ],
- [
- -2.45286,
- 46.93856
- ],
- [
- -2.31733,
- 47.16214
- ],
- [
- -2.92848,
- 47.28413
- ],
- [
- -2.96742,
- 47.22147
- ],
- [
- -3.35602,
- 47.32474
- ],
- [
- -3.18803,
- 47.48441
- ],
- [
- -3.22791,
- 47.61132
- ],
- [
- -3.38912,
- 47.59473
- ],
- [
- -3.9162,
- 47.67831
- ],
- [
- -4.10163,
- 47.70921
- ],
- [
- -4.14314,
- 47.78847
- ],
- [
- -4.37619,
- 47.71067
- ],
- [
- -4.47962,
- 47.9776
- ],
- [
- -4.98565,
- 47.99896
- ],
- [
- -4.96938,
- 48.08972
- ],
- [
- -4.60147,
- 48.11469
- ],
- [
- -4.5921,
- 48.14758
- ],
- [
- -4.67101,
- 48.2331
- ],
- [
- -4.84243,
- 48.3005
- ],
- [
- -5.19867,
- 48.44926
- ],
- [
- -5.10346,
- 48.51722
- ],
- [
- -4.83515,
- 48.54319
- ],
- [
- -4.63117,
- 48.66129
- ],
- [
- -3.96692,
- 48.77978
- ],
- [
- -3.94939,
- 48.74715
- ],
- [
- -3.67013,
- 48.89508
- ],
- [
- -3.54444,
- 48.90297
- ],
- [
- -3.40954,
- 48.91866
- ],
- [
- -3.33344,
- 48.90458
- ],
- [
- -3.02769,
- 48.9275
- ],
- [
- -2.80207,
- 48.79793
- ],
- [
- -2.69353,
- 48.76722
- ],
- [
- -2.45786,
- 48.70896
- ],
- [
- -2.28475,
- 48.71909
- ],
- [
- -2.17543,
- 48.65016
- ],
- [
- -2.0137,
- 48.73221
- ],
- [
- -1.80953,
- 48.73178
- ],
- [
- -1.7243,
- 48.75828
- ],
- [
- -1.70557,
- 48.84512
- ],
- [
- -1.90304,
- 48.86288
- ],
- [
- -1.91027,
- 48.92348
- ],
- [
- -1.68714,
- 48.93249
- ],
- [
- -1.74277,
- 49.24473
- ],
- [
- -1.85748,
- 49.3253
- ],
- [
- -1.9262,
- 49.65573
- ],
- [
- -2.03908,
- 49.67872
- ],
- [
- -2.00445,
- 49.76087
- ],
- [
- -1.61759,
- 49.68498
- ],
- [
- -1.28373,
- 49.76067
- ],
- [
- -1.1492,
- 49.63504
- ],
- [
- -1.18545,
- 49.54836
- ],
- [
- -0.96463,
- 49.42509
- ],
- [
- -0.74429,
- 49.36802
- ],
- [
- -0.39014,
- 49.3622
- ],
- [
- -0.24976,
- 49.3158
- ],
- [
- -0.13342,
- 49.31293
- ],
- [
- 0.02731,
- 49.37619
- ],
- [
- 0.01801,
- 49.54656
- ],
- [
- 0.12211,
- 49.69292
- ],
- [
- 0.51713,
- 49.86466
- ],
- [
- 1.05727,
- 49.94904
- ],
- [
- 1.43908,
- 50.11819
- ],
- [
- 1.53177,
- 50.46437
- ],
- [
- 1.52549,
- 50.85867
- ],
- [
- 1.64118,
- 50.95919
- ],
- [
- 2.59712,
- 51.17355
- ],
- [
- 2.66071,
- 51.0196
- ],
- [
- 2.07124,
- 50.92022
- ],
- [
- 2.05937,
- 50.94709
- ],
- [
- 1.7976,
- 50.89906
- ],
- [
- 1.68089,
- 50.8717
- ],
- [
- 1.65569,
- 50.59729
- ],
- [
- 1.75357,
- 50.5932
- ],
- [
- 1.72295,
- 50.24702
- ],
- [
- 1.82156,
- 50.24262
- ],
- [
- 1.80149,
- 50.05116
- ],
- [
- 1.54565,
- 50.06311
- ],
- [
- 1.54155,
- 50.01267
- ],
- [
- 1.42462,
- 50.01747
- ],
- [
- 1.42667,
- 50.05276
- ],
- [
- 1.03838,
- 49.84609
- ],
- [
- 0.9827,
- 49.88916
- ],
- [
- 0.57961,
- 49.82133
- ],
- [
- 0.42063,
- 49.76297
- ],
- [
- 0.4281,
- 49.75445
- ],
- [
- 0.20831,
- 49.67269
- ],
- [
- 0.14765,
- 49.57767
- ],
- [
- 0.13461,
- 49.5809
- ],
- [
- 0.11117,
- 49.54365
- ],
- [
- 0.56598,
- 49.52045
- ],
- [
- 0.5632,
- 49.49989
- ],
- [
- 0.63001,
- 49.49666
- ],
- [
- 0.61478,
- 49.37441
- ],
- [
- 0.54825,
- 49.37851
- ],
- [
- 0.54254,
- 49.33461
- ],
- [
- 0.45741,
- 49.33938
- ],
- [
- 0.45843,
- 49.34492
- ],
- [
- 0.32597,
- 49.35456
- ],
- [
- 0.32846,
- 49.38128
- ],
- [
- 0.28011,
- 49.38433
- ],
- [
- 0.27689,
- 49.36334
- ],
- [
- 0.21095,
- 49.36658
- ],
- [
- 0.20817,
- 49.35084
- ],
- [
- 0.14326,
- 49.35532
- ],
- [
- 0.13769,
- 49.3115
- ],
- [
- 0.07204,
- 49.31532
- ],
- [
- 0.0675,
- 49.28713
- ],
- [
- 0.00274,
- 49.29076
- ],
- [
- 0.00508,
- 49.25711
- ],
- [
- -0.02027,
- 49.26036
- ],
- [
- -0.03492,
- 49.1973
- ],
- [
- -0.19448,
- 49.21463
- ],
- [
- -0.38966,
- 49.12726
- ],
- [
- -0.45369,
- 49.18792
- ],
- [
- -0.3561,
- 49.23214
- ],
- [
- -0.82088,
- 49.28331
- ],
- [
- -0.99778,
- 49.30149
- ],
- [
- -1.16728,
- 49.24545
- ],
- [
- -1.19515,
- 49.28183
- ],
- [
- -1.26768,
- 49.24099
- ],
- [
- -1.34114,
- 49.2975
- ],
- [
- -1.24768,
- 49.35025
- ],
- [
- -1.44583,
- 49.60689
- ],
- [
- -1.81105,
- 49.61757
- ],
- [
- -1.77479,
- 49.44333
- ],
- [
- -1.72775,
- 49.46509
- ],
- [
- -1.5339,
- 49.29098
- ],
- [
- -1.47909,
- 49.29233
- ],
- [
- -1.47608,
- 49.24027
- ],
- [
- -1.43557,
- 49.20326
- ],
- [
- -1.47225,
- 49.1822
- ],
- [
- -1.45091,
- 48.75725
- ],
- [
- -1.31155,
- 48.76408
- ],
- [
- -1.30533,
- 48.70216
- ],
- [
- -1.2584,
- 48.70421
- ],
- [
- -1.25229,
- 48.64353
- ],
- [
- -1.23519,
- 48.64435
- ],
- [
- -1.2269,
- 48.56824
- ],
- [
- -1.85218,
- 48.53086
- ],
- [
- -1.84908,
- 48.4975
- ],
- [
- -1.92326,
- 48.49187
- ],
- [
- -1.92813,
- 48.44096
- ],
- [
- -2.04272,
- 48.43601
- ],
- [
- -2.03889,
- 48.48191
- ],
- [
- -2.2895,
- 48.46102
- ],
- [
- -2.3021,
- 48.52433
- ],
- [
- -2.40863,
- 48.51618
- ],
- [
- -2.42035,
- 48.56954
- ],
- [
- -2.43084,
- 48.57852
- ],
- [
- -2.49083,
- 48.54924
- ],
- [
- -2.47353,
- 48.53326
- ],
- [
- -2.54978,
- 48.49647
- ],
- [
- -2.54005,
- 48.48747
- ],
- [
- -2.70681,
- 48.40746
- ],
- [
- -3.02979,
- 48.69115
- ],
- [
- -4.01034,
- 48.53179
- ],
- [
- -4.05342,
- 48.64412
- ],
- [
- -4.38281,
- 48.57349
- ],
- [
- -4.35482,
- 48.5118
- ],
- [
- -4.38853,
- 48.50473
- ],
- [
- -4.13495,
- 48.44868
- ],
- [
- -4.16411,
- 48.38936
- ],
- [
- -4.01832,
- 48.35685
- ],
- [
- -4.04733,
- 48.29918
- ],
- [
- -3.98814,
- 48.2867
- ],
- [
- -4.0214,
- 48.21606
- ],
- [
- -4.03634,
- 48.21958
- ],
- [
- -4.06623,
- 48.16028
- ],
- [
- -4.16675,
- 48.18247
- ],
- [
- -4.18331,
- 48.14934
- ],
- [
- -4.17232,
- 48.1065
- ],
- [
- -4.20111,
- 48.10285
- ],
- [
- -4.18643,
- 48.04389
- ],
- [
- -4.18806,
- 48.04061
- ],
- [
- -4.35686,
- 48.02305
- ],
- [
- -4.25657,
- 47.93997
- ],
- [
- -4.23363,
- 47.93497
- ],
- [
- -4.21371,
- 47.97598
- ],
- [
- -4.21854,
- 47.97726
- ],
- [
- -4.1806,
- 48.05569
- ],
- [
- -3.6172,
- 47.93124
- ],
- [
- -2.17991,
- 47.58642
- ],
- [
- -2.25449,
- 47.44501
- ],
- [
- -2.30182,
- 47.4568
- ],
- [
- -2.32043,
- 47.42092
- ],
- [
- -2.30372,
- 47.41755
- ],
- [
- -2.34753,
- 47.33499
- ],
- [
- -2.36219,
- 47.33837
- ],
- [
- -2.38079,
- 47.3039
- ],
- [
- -2.35852,
- 47.29854
- ],
- [
- -2.29962,
- 47.29784
- ],
- [
- -2.29742,
- 47.3618
- ],
- [
- -2.13199,
- 47.35852
- ],
- [
- -2.13478,
- 47.39107
- ],
- [
- -2.01565,
- 47.39623
- ],
- [
- -2.01404,
- 47.38095
- ],
- [
- -1.92862,
- 47.38254
- ],
- [
- -1.92891,
- 47.37956
- ],
- [
- -1.8322,
- 47.38184
- ],
- [
- -1.82986,
- 47.34165
- ],
- [
- -1.73608,
- 47.34304
- ],
- [
- -1.73418,
- 47.305
- ],
- [
- -1.64084,
- 47.30639
- ],
- [
- -1.64011,
- 47.29427
- ],
- [
- -1.58355,
- 47.29566
- ],
- [
- -1.58531,
- 47.33708
- ],
- [
- -1.4612,
- 47.33966
- ],
- [
- -1.46003,
- 47.32924
- ],
- [
- -1.37211,
- 47.33221
- ],
- [
- -1.36054,
- 47.11239
- ],
- [
- -1.48567,
- 47.11149
- ],
- [
- -1.48582,
- 47.11877
- ],
- [
- -1.66897,
- 47.11688
- ],
- [
- -1.66971,
- 47.12864
- ],
- [
- -1.72553,
- 47.12764
- ],
- [
- -1.72612,
- 47.13761
- ],
- [
- -1.93975,
- 47.13263
- ],
- [
- -1.94019,
- 47.1422
- ],
- [
- -1.9925,
- 47.14309
- ],
- [
- -1.81066,
- 47.00588
- ],
- [
- -1.94723,
- 46.92078
- ],
- [
- -1.92891,
- 46.90677
- ],
- [
- -1.99529,
- 46.86461
- ],
- [
- -1.73652,
- 46.66839
- ],
- [
- -1.77535,
- 46.64386
- ],
- [
- -1.82678,
- 46.64174
- ],
- [
- -1.82473,
- 46.62071
- ],
- [
- -1.18192,
- 46.39987
- ],
- [
- -0.91261,
- 46.3048
- ],
- [
- -0.95481,
- 46.2489
- ],
- [
- -0.94235,
- 46.24424
- ],
- [
- -0.98385,
- 46.18807
- ]
- ],
- [
- [
- 3.14769,
- 42.40072
- ],
- [
- 3.14949,
- 42.40015
- ],
- [
- 3.15305,
- 42.40052
- ],
- [
- 3.15804,
- 42.40243
- ],
- [
- 3.1877,
- 42.42805
- ],
- [
- 3.14227,
- 42.5248
- ],
- [
- 3.06837,
- 42.54635
- ],
- [
- 3.04884,
- 42.6942
- ],
- [
- 3.0799,
- 43.03073
- ],
- [
- 3.22641,
- 43.18727
- ],
- [
- 3.40916,
- 43.26032
- ],
- [
- 3.52104,
- 43.25877
- ],
- [
- 3.66429,
- 43.37628
- ],
- [
- 3.73841,
- 43.39054
- ],
- [
- 4.00979,
- 43.53607
- ],
- [
- 4.17692,
- 43.45636
- ],
- [
- 4.54355,
- 43.43349
- ],
- [
- 4.54943,
- 43.35401
- ],
- [
- 4.83506,
- 43.30891
- ],
- [
- 4.97506,
- 43.38309
- ],
- [
- 5.03219,
- 43.31928
- ],
- [
- 5.25919,
- 43.31928
- ],
- [
- 5.31082,
- 43.20504
- ],
- [
- 5.35682,
- 43.18645
- ],
- [
- 5.36882,
- 43.16785
- ],
- [
- 5.40232,
- 43.16211
- ],
- [
- 5.41382,
- 43.17123
- ],
- [
- 5.40919,
- 43.19921
- ],
- [
- 5.54232,
- 43.18827
- ],
- [
- 5.60582,
- 43.14797
- ],
- [
- 5.6197,
- 43.1529
- ],
- [
- 5.63832,
- 43.17159
- ],
- [
- 5.67157,
- 43.1674
- ],
- [
- 5.69095,
- 43.13411
- ],
- [
- 5.77607,
- 43.10637
- ],
- [
- 5.7762,
- 43.09432
- ],
- [
- 5.75407,
- 43.08328
- ],
- [
- 5.75707,
- 43.0725
- ],
- [
- 5.77032,
- 43.06465
- ],
- [
- 5.85933,
- 43.03469
- ],
- [
- 5.8877,
- 43.06273
- ],
- [
- 5.9567,
- 43.06109
- ],
- [
- 5.96383,
- 43.09277
- ],
- [
- 6.00033,
- 43.09186
- ],
- [
- 6.01745,
- 43.06849
- ],
- [
- 6.10233,
- 43.07415
- ],
- [
- 6.10483,
- 43.0526
- ],
- [
- 6.0666,
- 43.04318
- ],
- [
- 6.06722,
- 43.03785
- ],
- [
- 6.1427,
- 43.00923
- ],
- [
- 6.15676,
- 42.98715
- ],
- [
- 6.19635,
- 42.97331
- ],
- [
- 6.22221,
- 42.9801
- ],
- [
- 6.26891,
- 42.99651
- ],
- [
- 6.25515,
- 43.03627
- ],
- [
- 6.2019,
- 43.02713
- ],
- [
- 6.18378,
- 43.09188
- ],
- [
- 6.30153,
- 43.09909
- ],
- [
- 6.32478,
- 43.07974
- ],
- [
- 6.37778,
- 43.08011
- ],
- [
- 6.38866,
- 43.13395
- ],
- [
- 6.51341,
- 43.14608
- ],
- [
- 6.57704,
- 43.17881
- ],
- [
- 6.62291,
- 43.14563
- ],
- [
- 6.69779,
- 43.19969
- ],
- [
- 6.68016,
- 43.23357
- ],
- [
- 6.72116,
- 43.26007
- ],
- [
- 6.72241,
- 43.27472
- ],
- [
- 6.67054,
- 43.29192
- ],
- [
- 6.68741,
- 43.33113
- ],
- [
- 6.72416,
- 43.34267
- ],
- [
- 6.75291,
- 43.409
- ],
- [
- 6.79104,
- 43.39674
- ],
- [
- 6.90629,
- 43.41672
- ],
- [
- 6.96767,
- 43.50273
- ],
- [
- 6.96617,
- 43.52812
- ],
- [
- 7.00617,
- 43.53845
- ],
- [
- 7.03554,
- 43.4982
- ],
- [
- 7.06892,
- 43.5001
- ],
- [
- 7.09079,
- 43.51642
- ],
- [
- 7.06267,
- 43.53672
- ],
- [
- 7.08254,
- 43.5456
- ],
- [
- 7.1238,
- 43.53074
- ],
- [
- 7.1558,
- 43.5437
- ],
- [
- 7.1433,
- 43.62284
- ],
- [
- 7.16867,
- 43.64636
- ],
- [
- 7.2138,
- 43.63469
- ],
- [
- 7.25417,
- 43.68497
- ],
- [
- 7.3403,
- 43.66744
- ],
- [
- 7.36442,
- 43.6894
- ],
- [
- 7.35305,
- 43.7082
- ],
- [
- 7.4163,
- 43.71091
- ],
- [
- 7.45405,
- 43.74506
- ],
- [
- 7.4943,
- 43.74524
- ],
- [
- 7.57943,
- 43.78424
- ],
- [
- 7.60552,
- 43.78603
- ],
- [
- 7.60368,
- 43.78898
- ],
- [
- 7.59588,
- 43.79528
- ],
- [
- 7.59628,
- 43.79549
- ],
- [
- 7.53853,
- 43.84195
- ],
- [
- 7.45996,
- 43.79988
- ],
- [
- 7.44781,
- 43.80934
- ],
- [
- 7.32353,
- 43.74806
- ],
- [
- 7.30822,
- 43.76357
- ],
- [
- 6.64878,
- 43.3885
- ],
- [
- 6.66865,
- 43.37178
- ],
- [
- 6.51003,
- 43.27803
- ],
- [
- 6.56584,
- 43.22509
- ],
- [
- 6.12681,
- 43.10527
- ],
- [
- 5.48229,
- 43.24939
- ],
- [
- 5.47267,
- 43.2309
- ],
- [
- 5.41567,
- 43.24657
- ],
- [
- 5.45267,
- 43.3451
- ],
- [
- 4.80191,
- 43.48158
- ],
- [
- 4.76416,
- 43.39244
- ],
- [
- 4.65716,
- 43.42368
- ],
- [
- 4.67228,
- 43.45608
- ],
- [
- 4.43203,
- 43.52419
- ],
- [
- 4.41453,
- 43.49255
- ],
- [
- 4.16102,
- 43.56433
- ],
- [
- 4.14452,
- 43.57067
- ],
- [
- 4.14165,
- 43.57393
- ],
- [
- 4.18677,
- 43.59946
- ],
- [
- 4.10565,
- 43.68196
- ],
- [
- 3.79689,
- 43.52165
- ],
- [
- 3.77851,
- 43.51313
- ],
- [
- 3.76464,
- 43.50597
- ],
- [
- 3.76201,
- 43.50334
- ],
- [
- 3.74226,
- 43.49328
- ],
- [
- 3.71601,
- 43.52075
- ],
- [
- 3.26213,
- 43.28143
- ],
- [
- 3.24638,
- 43.29735
- ],
- [
- 3.18388,
- 43.28052
- ],
- [
- 3.10675,
- 43.24083
- ],
- [
- 3.15475,
- 43.19419
- ],
- [
- 2.90625,
- 43.19383
- ],
- [
- 2.90675,
- 42.76189
- ],
- [
- 2.94613,
- 42.76208
- ],
- [
- 2.9465,
- 42.61516
- ],
- [
- 2.99238,
- 42.61497
- ],
- [
- 2.99238,
- 42.5125
- ],
- [
- 3.041,
- 42.51259
- ],
- [
- 3.04121,
- 42.50093
- ],
- [
- 3.09086,
- 42.50082
- ],
- [
- 3.14769,
- 42.40072
- ]
- ],
- [
- [
- 6.35945,
- 43.02321
- ],
- [
- 6.42477,
- 43.02444
- ],
- [
- 6.45244,
- 43.03504
- ],
- [
- 6.46985,
- 43.05461
- ],
- [
- 6.51121,
- 43.05765
- ],
- [
- 6.52156,
- 43.04318
- ],
- [
- 6.48364,
- 43.02444
- ],
- [
- 6.47179,
- 43.00725
- ],
- [
- 6.41178,
- 42.9918
- ],
- [
- 6.39852,
- 42.98048
- ],
- [
- 6.35178,
- 42.99905
- ],
- [
- 6.35945,
- 43.02321
- ]
- ]
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/WikiProject_France/G%C3%A9oLittoral",
- "terms_text": "Ortho littorale 2000"
- },
- {
- "id": "GeolittoralV2-Orthophotos",
- "name": "Géolittoral V2 - Orthophotos 2011-2014",
- "type": "wms",
- "template": "http://geolittoral.application.developpement-durable.gouv.fr/wms2/metropole?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortholittorale_v2_rvb&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2014-01-01T00:00:00.000Z",
- "startDate": "2011-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- -0.98385,
- 46.18807
- ],
- [
- -0.89497,
- 46.15628
- ],
- [
- -0.93455,
- 46.10163
- ],
- [
- -0.84388,
- 46.06949
- ],
- [
- -0.88241,
- 46.01637
- ],
- [
- -0.53787,
- 45.89558
- ],
- [
- -0.63498,
- 45.76444
- ],
- [
- -0.86666,
- 45.8479
- ],
- [
- -0.76264,
- 45.6245
- ],
- [
- -0.69695,
- 45.62659
- ],
- [
- -0.69397,
- 45.60184
- ],
- [
- -0.68755,
- 45.60174
- ],
- [
- -0.688,
- 45.50986
- ],
- [
- -0.63799,
- 45.50892
- ],
- [
- -0.63978,
- 45.44747
- ],
- [
- -0.61574,
- 45.44695
- ],
- [
- -0.61619,
- 45.38586
- ],
- [
- -0.58544,
- 45.38596
- ],
- [
- -0.58529,
- 45.32334
- ],
- [
- -0.55379,
- 45.32344
- ],
- [
- -0.55275,
- 45.19661
- ],
- [
- -0.49094,
- 45.19577
- ],
- [
- -0.49184,
- 45.13315
- ],
- [
- -0.45661,
- 45.13325
- ],
- [
- -0.45512,
- 45.07161
- ],
- [
- -0.41611,
- 45.07089
- ],
- [
- -0.41621,
- 45.02696
- ],
- [
- -0.2907,
- 44.98278
- ],
- [
- -0.22,
- 45.06771
- ],
- [
- -0.12252,
- 45.02563
- ],
- [
- -0.18925,
- 44.94591
- ],
- [
- -0.09266,
- 44.91019
- ],
- [
- -0.14521,
- 44.8392
- ],
- [
- -0.15491,
- 44.84238
- ],
- [
- -0.19387,
- 44.78678
- ],
- [
- -0.43541,
- 44.87317
- ],
- [
- -0.39048,
- 44.68413
- ],
- [
- -0.58798,
- 44.66014
- ],
- [
- -0.66628,
- 44.99129
- ],
- [
- -0.77838,
- 44.99263
- ],
- [
- -0.77764,
- 45.05389
- ],
- [
- -0.81584,
- 45.05321
- ],
- [
- -0.81838,
- 45.11962
- ],
- [
- -0.88393,
- 45.12051
- ],
- [
- -0.88171,
- 45.18081
- ],
- [
- -0.93438,
- 45.18185
- ],
- [
- -0.9328,
- 45.24484
- ],
- [
- -1.00163,
- 45.24439
- ],
- [
- -1.00247,
- 45.30827
- ],
- [
- -1.0524,
- 45.31013
- ],
- [
- -1.04828,
- 45.36911
- ],
- [
- -1.06412,
- 45.36911
- ],
- [
- -1.05039,
- 45.18252
- ],
- [
- -1.10761,
- 44.80787
- ],
- [
- -1.01514,
- 44.80113
- ],
- [
- -1.01946,
- 44.76914
- ],
- [
- -0.93365,
- 44.76149
- ],
- [
- -0.9404,
- 44.7018
- ],
- [
- -0.96035,
- 44.56434
- ],
- [
- -1.01408,
- 44.56765
- ],
- [
- -1.09916,
- 44.1456
- ],
- [
- -1.22689,
- 44.14022
- ],
- [
- -1.21853,
- 44.03249
- ],
- [
- -1.30762,
- 44.029
- ],
- [
- -1.39572,
- 43.74301
- ],
- [
- -1.31296,
- 43.72951
- ],
- [
- -1.37439,
- 43.53109
- ],
- [
- -1.34589,
- 43.50606
- ],
- [
- -1.59964,
- 43.35423
- ],
- [
- -1.76549,
- 43.25548
- ],
- [
- -1.79281,
- 43.28038
- ],
- [
- -1.80281,
- 43.40425
- ],
- [
- -1.72832,
- 43.45033
- ],
- [
- -1.58531,
- 43.489
- ],
- [
- -1.33584,
- 44.22832
- ],
- [
- -1.30744,
- 44.41847
- ],
- [
- -1.22511,
- 45.44416
- ],
- [
- -1.48685,
- 46.06042
- ],
- [
- -1.60176,
- 46.17019
- ],
- [
- -1.64442,
- 46.22375
- ],
- [
- -1.75643,
- 46.42214
- ],
- [
- -2.03483,
- 46.61895
- ],
- [
- -2.3466,
- 46.62382
- ],
- [
- -2.46561,
- 46.71196
- ],
- [
- -2.3233,
- 46.83812
- ],
- [
- -2.45286,
- 46.93856
- ],
- [
- -2.31733,
- 47.16214
- ],
- [
- -2.92848,
- 47.28413
- ],
- [
- -2.96742,
- 47.22147
- ],
- [
- -3.35602,
- 47.32474
- ],
- [
- -3.18803,
- 47.48441
- ],
- [
- -3.22791,
- 47.61132
- ],
- [
- -3.38912,
- 47.59473
- ],
- [
- -3.9162,
- 47.67831
- ],
- [
- -4.10163,
- 47.70921
- ],
- [
- -4.14314,
- 47.78847
- ],
- [
- -4.37619,
- 47.71067
- ],
- [
- -4.47962,
- 47.9776
- ],
- [
- -4.98565,
- 47.99896
- ],
- [
- -4.96938,
- 48.08972
- ],
- [
- -4.60147,
- 48.11469
- ],
- [
- -4.5921,
- 48.14758
- ],
- [
- -4.67101,
- 48.2331
- ],
- [
- -4.84243,
- 48.3005
- ],
- [
- -5.19867,
- 48.44926
- ],
- [
- -5.10346,
- 48.51722
- ],
- [
- -4.83515,
- 48.54319
- ],
- [
- -4.63117,
- 48.66129
- ],
- [
- -3.96692,
- 48.77978
- ],
- [
- -3.94939,
- 48.74715
- ],
- [
- -3.67013,
- 48.89508
- ],
- [
- -3.54444,
- 48.90297
- ],
- [
- -3.40954,
- 48.91866
- ],
- [
- -3.33344,
- 48.90458
- ],
- [
- -3.02769,
- 48.9275
- ],
- [
- -2.80207,
- 48.79793
- ],
- [
- -2.69353,
- 48.76722
- ],
- [
- -2.45786,
- 48.70896
- ],
- [
- -2.28475,
- 48.71909
- ],
- [
- -2.17543,
- 48.65016
- ],
- [
- -2.0137,
- 48.73221
- ],
- [
- -1.80953,
- 48.73178
- ],
- [
- -1.7243,
- 48.75828
- ],
- [
- -1.70557,
- 48.84512
- ],
- [
- -1.90304,
- 48.86288
- ],
- [
- -1.91027,
- 48.92348
- ],
- [
- -1.68714,
- 48.93249
- ],
- [
- -1.74277,
- 49.24473
- ],
- [
- -1.85748,
- 49.3253
- ],
- [
- -1.9262,
- 49.65573
- ],
- [
- -2.03908,
- 49.67872
- ],
- [
- -2.00445,
- 49.76087
- ],
- [
- -1.61759,
- 49.68498
- ],
- [
- -1.28373,
- 49.76067
- ],
- [
- -1.1492,
- 49.63504
- ],
- [
- -1.18545,
- 49.54836
- ],
- [
- -0.96463,
- 49.42509
- ],
- [
- -0.74429,
- 49.36802
- ],
- [
- -0.39014,
- 49.3622
- ],
- [
- -0.24976,
- 49.3158
- ],
- [
- -0.13342,
- 49.31293
- ],
- [
- 0.02731,
- 49.37619
- ],
- [
- 0.01801,
- 49.54656
- ],
- [
- 0.12211,
- 49.69292
- ],
- [
- 0.51713,
- 49.86466
- ],
- [
- 1.05727,
- 49.94904
- ],
- [
- 1.43908,
- 50.11819
- ],
- [
- 1.53177,
- 50.46437
- ],
- [
- 1.52549,
- 50.85867
- ],
- [
- 1.64118,
- 50.95919
- ],
- [
- 2.59712,
- 51.17355
- ],
- [
- 2.66071,
- 51.0196
- ],
- [
- 2.07124,
- 50.92022
- ],
- [
- 2.05937,
- 50.94709
- ],
- [
- 1.7976,
- 50.89906
- ],
- [
- 1.68089,
- 50.8717
- ],
- [
- 1.65569,
- 50.59729
- ],
- [
- 1.75357,
- 50.5932
- ],
- [
- 1.72295,
- 50.24702
- ],
- [
- 1.82156,
- 50.24262
- ],
- [
- 1.80149,
- 50.05116
- ],
- [
- 1.54565,
- 50.06311
- ],
- [
- 1.54155,
- 50.01267
- ],
- [
- 1.42462,
- 50.01747
- ],
- [
- 1.42667,
- 50.05276
- ],
- [
- 1.03838,
- 49.84609
- ],
- [
- 0.9827,
- 49.88916
- ],
- [
- 0.57961,
- 49.82133
- ],
- [
- 0.42063,
- 49.76297
- ],
- [
- 0.4281,
- 49.75445
- ],
- [
- 0.20831,
- 49.67269
- ],
- [
- 0.14765,
- 49.57767
- ],
- [
- 0.13461,
- 49.5809
- ],
- [
- 0.11117,
- 49.54365
- ],
- [
- 0.56598,
- 49.52045
- ],
- [
- 0.5632,
- 49.49989
- ],
- [
- 0.63001,
- 49.49666
- ],
- [
- 0.61478,
- 49.37441
- ],
- [
- 0.54825,
- 49.37851
- ],
- [
- 0.54254,
- 49.33461
- ],
- [
- 0.45741,
- 49.33938
- ],
- [
- 0.45843,
- 49.34492
- ],
- [
- 0.32597,
- 49.35456
- ],
- [
- 0.32846,
- 49.38128
- ],
- [
- 0.28011,
- 49.38433
- ],
- [
- 0.27689,
- 49.36334
- ],
- [
- 0.21095,
- 49.36658
- ],
- [
- 0.20817,
- 49.35084
- ],
- [
- 0.14326,
- 49.35532
- ],
- [
- 0.13769,
- 49.3115
- ],
- [
- 0.07204,
- 49.31532
- ],
- [
- 0.0675,
- 49.28713
- ],
- [
- 0.00274,
- 49.29076
- ],
- [
- 0.00508,
- 49.25711
- ],
- [
- -0.02027,
- 49.26036
- ],
- [
- -0.03492,
- 49.1973
- ],
- [
- -0.19448,
- 49.21463
- ],
- [
- -0.38966,
- 49.12726
- ],
- [
- -0.45369,
- 49.18792
- ],
- [
- -0.3561,
- 49.23214
- ],
- [
- -0.82088,
- 49.28331
- ],
- [
- -0.99778,
- 49.30149
- ],
- [
- -1.16728,
- 49.24545
- ],
- [
- -1.19515,
- 49.28183
- ],
- [
- -1.26768,
- 49.24099
- ],
- [
- -1.34114,
- 49.2975
- ],
- [
- -1.24768,
- 49.35025
- ],
- [
- -1.44583,
- 49.60689
- ],
- [
- -1.81105,
- 49.61757
- ],
- [
- -1.77479,
- 49.44333
- ],
- [
- -1.72775,
- 49.46509
- ],
- [
- -1.5339,
- 49.29098
- ],
- [
- -1.47909,
- 49.29233
- ],
- [
- -1.47608,
- 49.24027
- ],
- [
- -1.43557,
- 49.20326
- ],
- [
- -1.47225,
- 49.1822
- ],
- [
- -1.45091,
- 48.75725
- ],
- [
- -1.31155,
- 48.76408
- ],
- [
- -1.30533,
- 48.70216
- ],
- [
- -1.2584,
- 48.70421
- ],
- [
- -1.25229,
- 48.64353
- ],
- [
- -1.23519,
- 48.64435
- ],
- [
- -1.2269,
- 48.56824
- ],
- [
- -1.85218,
- 48.53086
- ],
- [
- -1.84908,
- 48.4975
- ],
- [
- -1.92326,
- 48.49187
- ],
- [
- -1.92813,
- 48.44096
- ],
- [
- -2.04272,
- 48.43601
- ],
- [
- -2.03889,
- 48.48191
- ],
- [
- -2.2895,
- 48.46102
- ],
- [
- -2.3021,
- 48.52433
- ],
- [
- -2.40863,
- 48.51618
- ],
- [
- -2.42035,
- 48.56954
- ],
- [
- -2.43084,
- 48.57852
- ],
- [
- -2.49083,
- 48.54924
- ],
- [
- -2.47353,
- 48.53326
- ],
- [
- -2.54978,
- 48.49647
- ],
- [
- -2.54005,
- 48.48747
- ],
- [
- -2.70681,
- 48.40746
- ],
- [
- -3.02979,
- 48.69115
- ],
- [
- -4.01034,
- 48.53179
- ],
- [
- -4.05342,
- 48.64412
- ],
- [
- -4.38281,
- 48.57349
- ],
- [
- -4.35482,
- 48.5118
- ],
- [
- -4.38853,
- 48.50473
- ],
- [
- -4.13495,
- 48.44868
- ],
- [
- -4.16411,
- 48.38936
- ],
- [
- -4.01832,
- 48.35685
- ],
- [
- -4.04733,
- 48.29918
- ],
- [
- -3.98814,
- 48.2867
- ],
- [
- -4.0214,
- 48.21606
- ],
- [
- -4.03634,
- 48.21958
- ],
- [
- -4.06623,
- 48.16028
- ],
- [
- -4.16675,
- 48.18247
- ],
- [
- -4.18331,
- 48.14934
- ],
- [
- -4.17232,
- 48.1065
- ],
- [
- -4.20111,
- 48.10285
- ],
- [
- -4.18643,
- 48.04389
- ],
- [
- -4.18806,
- 48.04061
- ],
- [
- -4.35686,
- 48.02305
- ],
- [
- -4.25657,
- 47.93997
- ],
- [
- -4.23363,
- 47.93497
- ],
- [
- -4.21371,
- 47.97598
- ],
- [
- -4.21854,
- 47.97726
- ],
- [
- -4.1806,
- 48.05569
- ],
- [
- -3.6172,
- 47.93124
- ],
- [
- -2.17991,
- 47.58642
- ],
- [
- -2.25449,
- 47.44501
- ],
- [
- -2.30182,
- 47.4568
- ],
- [
- -2.32043,
- 47.42092
- ],
- [
- -2.30372,
- 47.41755
- ],
- [
- -2.34753,
- 47.33499
- ],
- [
- -2.36219,
- 47.33837
- ],
- [
- -2.38079,
- 47.3039
- ],
- [
- -2.35852,
- 47.29854
- ],
- [
- -2.29962,
- 47.29784
- ],
- [
- -2.29742,
- 47.3618
- ],
- [
- -2.13199,
- 47.35852
- ],
- [
- -2.13478,
- 47.39107
- ],
- [
- -2.01565,
- 47.39623
- ],
- [
- -2.01404,
- 47.38095
- ],
- [
- -1.92862,
- 47.38254
- ],
- [
- -1.92891,
- 47.37956
- ],
- [
- -1.8322,
- 47.38184
- ],
- [
- -1.82986,
- 47.34165
- ],
- [
- -1.73608,
- 47.34304
- ],
- [
- -1.73418,
- 47.305
- ],
- [
- -1.64084,
- 47.30639
- ],
- [
- -1.64011,
- 47.29427
- ],
- [
- -1.58355,
- 47.29566
- ],
- [
- -1.58531,
- 47.33708
- ],
- [
- -1.4612,
- 47.33966
- ],
- [
- -1.46003,
- 47.32924
- ],
- [
- -1.37211,
- 47.33221
- ],
- [
- -1.36054,
- 47.11239
- ],
- [
- -1.48567,
- 47.11149
- ],
- [
- -1.48582,
- 47.11877
- ],
- [
- -1.66897,
- 47.11688
- ],
- [
- -1.66971,
- 47.12864
- ],
- [
- -1.72553,
- 47.12764
- ],
- [
- -1.72612,
- 47.13761
- ],
- [
- -1.93975,
- 47.13263
- ],
- [
- -1.94019,
- 47.1422
- ],
- [
- -1.9925,
- 47.14309
- ],
- [
- -1.81066,
- 47.00588
- ],
- [
- -1.94723,
- 46.92078
- ],
- [
- -1.92891,
- 46.90677
- ],
- [
- -1.99529,
- 46.86461
- ],
- [
- -1.73652,
- 46.66839
- ],
- [
- -1.77535,
- 46.64386
- ],
- [
- -1.82678,
- 46.64174
- ],
- [
- -1.82473,
- 46.62071
- ],
- [
- -1.18192,
- 46.39987
- ],
- [
- -0.91261,
- 46.3048
- ],
- [
- -0.95481,
- 46.2489
- ],
- [
- -0.94235,
- 46.24424
- ],
- [
- -0.98385,
- 46.18807
- ]
- ],
- [
- [
- 3.14769,
- 42.40072
- ],
- [
- 3.14949,
- 42.40015
- ],
- [
- 3.15305,
- 42.40052
- ],
- [
- 3.15804,
- 42.40243
- ],
- [
- 3.1877,
- 42.42805
- ],
- [
- 3.14227,
- 42.5248
- ],
- [
- 3.06837,
- 42.54635
- ],
- [
- 3.04884,
- 42.6942
- ],
- [
- 3.0799,
- 43.03073
- ],
- [
- 3.22641,
- 43.18727
- ],
- [
- 3.40916,
- 43.26032
- ],
- [
- 3.52104,
- 43.25877
- ],
- [
- 3.66429,
- 43.37628
- ],
- [
- 3.73841,
- 43.39054
- ],
- [
- 4.00979,
- 43.53607
- ],
- [
- 4.17692,
- 43.45636
- ],
- [
- 4.54355,
- 43.43349
- ],
- [
- 4.54943,
- 43.35401
- ],
- [
- 4.83506,
- 43.30891
- ],
- [
- 4.97506,
- 43.38309
- ],
- [
- 5.03219,
- 43.31928
- ],
- [
- 5.25919,
- 43.31928
- ],
- [
- 5.31082,
- 43.20504
- ],
- [
- 5.35682,
- 43.18645
- ],
- [
- 5.36882,
- 43.16785
- ],
- [
- 5.40232,
- 43.16211
- ],
- [
- 5.41382,
- 43.17123
- ],
- [
- 5.40919,
- 43.19921
- ],
- [
- 5.54232,
- 43.18827
- ],
- [
- 5.60582,
- 43.14797
- ],
- [
- 5.6197,
- 43.1529
- ],
- [
- 5.63832,
- 43.17159
- ],
- [
- 5.67157,
- 43.1674
- ],
- [
- 5.69095,
- 43.13411
- ],
- [
- 5.77607,
- 43.10637
- ],
- [
- 5.7762,
- 43.09432
- ],
- [
- 5.75407,
- 43.08328
- ],
- [
- 5.75707,
- 43.0725
- ],
- [
- 5.77032,
- 43.06465
- ],
- [
- 5.85933,
- 43.03469
- ],
- [
- 5.8877,
- 43.06273
- ],
- [
- 5.9567,
- 43.06109
- ],
- [
- 5.96383,
- 43.09277
- ],
- [
- 6.00033,
- 43.09186
- ],
- [
- 6.01745,
- 43.06849
- ],
- [
- 6.10233,
- 43.07415
- ],
- [
- 6.10483,
- 43.0526
- ],
- [
- 6.0666,
- 43.04318
- ],
- [
- 6.06722,
- 43.03785
- ],
- [
- 6.1427,
- 43.00923
- ],
- [
- 6.15676,
- 42.98715
- ],
- [
- 6.19635,
- 42.97331
- ],
- [
- 6.22221,
- 42.9801
- ],
- [
- 6.26891,
- 42.99651
- ],
- [
- 6.25515,
- 43.03627
- ],
- [
- 6.2019,
- 43.02713
- ],
- [
- 6.18378,
- 43.09188
- ],
- [
- 6.30153,
- 43.09909
- ],
- [
- 6.32478,
- 43.07974
- ],
- [
- 6.37778,
- 43.08011
- ],
- [
- 6.38866,
- 43.13395
- ],
- [
- 6.51341,
- 43.14608
- ],
- [
- 6.57704,
- 43.17881
- ],
- [
- 6.62291,
- 43.14563
- ],
- [
- 6.69779,
- 43.19969
- ],
- [
- 6.68016,
- 43.23357
- ],
- [
- 6.72116,
- 43.26007
- ],
- [
- 6.72241,
- 43.27472
- ],
- [
- 6.67054,
- 43.29192
- ],
- [
- 6.68741,
- 43.33113
- ],
- [
- 6.72416,
- 43.34267
- ],
- [
- 6.75291,
- 43.409
- ],
- [
- 6.79104,
- 43.39674
- ],
- [
- 6.90629,
- 43.41672
- ],
- [
- 6.96767,
- 43.50273
- ],
- [
- 6.96617,
- 43.52812
- ],
- [
- 7.00617,
- 43.53845
- ],
- [
- 7.03554,
- 43.4982
- ],
- [
- 7.06892,
- 43.5001
- ],
- [
- 7.09079,
- 43.51642
- ],
- [
- 7.06267,
- 43.53672
- ],
- [
- 7.08254,
- 43.5456
- ],
- [
- 7.1238,
- 43.53074
- ],
- [
- 7.1558,
- 43.5437
- ],
- [
- 7.1433,
- 43.62284
- ],
- [
- 7.16867,
- 43.64636
- ],
- [
- 7.2138,
- 43.63469
- ],
- [
- 7.25417,
- 43.68497
- ],
- [
- 7.3403,
- 43.66744
- ],
- [
- 7.36442,
- 43.6894
- ],
- [
- 7.35305,
- 43.7082
- ],
- [
- 7.4163,
- 43.71091
- ],
- [
- 7.45405,
- 43.74506
- ],
- [
- 7.4943,
- 43.74524
- ],
- [
- 7.57943,
- 43.78424
- ],
- [
- 7.60552,
- 43.78603
- ],
- [
- 7.60368,
- 43.78898
- ],
- [
- 7.59588,
- 43.79528
- ],
- [
- 7.59628,
- 43.79549
- ],
- [
- 7.53853,
- 43.84195
- ],
- [
- 7.45996,
- 43.79988
- ],
- [
- 7.44781,
- 43.80934
- ],
- [
- 7.32353,
- 43.74806
- ],
- [
- 7.30822,
- 43.76357
- ],
- [
- 6.64878,
- 43.3885
- ],
- [
- 6.66865,
- 43.37178
- ],
- [
- 6.51003,
- 43.27803
- ],
- [
- 6.56584,
- 43.22509
- ],
- [
- 6.12681,
- 43.10527
- ],
- [
- 5.48229,
- 43.24939
- ],
- [
- 5.47267,
- 43.2309
- ],
- [
- 5.41567,
- 43.24657
- ],
- [
- 5.45267,
- 43.3451
- ],
- [
- 4.80191,
- 43.48158
- ],
- [
- 4.76416,
- 43.39244
- ],
- [
- 4.65716,
- 43.42368
- ],
- [
- 4.67228,
- 43.45608
- ],
- [
- 4.43203,
- 43.52419
- ],
- [
- 4.41453,
- 43.49255
- ],
- [
- 4.16102,
- 43.56433
- ],
- [
- 4.14452,
- 43.57067
- ],
- [
- 4.14165,
- 43.57393
- ],
- [
- 4.18677,
- 43.59946
- ],
- [
- 4.10565,
- 43.68196
- ],
- [
- 3.79689,
- 43.52165
- ],
- [
- 3.77851,
- 43.51313
- ],
- [
- 3.76464,
- 43.50597
- ],
- [
- 3.76201,
- 43.50334
- ],
- [
- 3.74226,
- 43.49328
- ],
- [
- 3.71601,
- 43.52075
- ],
- [
- 3.26213,
- 43.28143
- ],
- [
- 3.24638,
- 43.29735
- ],
- [
- 3.18388,
- 43.28052
- ],
- [
- 3.10675,
- 43.24083
- ],
- [
- 3.15475,
- 43.19419
- ],
- [
- 2.90625,
- 43.19383
- ],
- [
- 2.90675,
- 42.76189
- ],
- [
- 2.94613,
- 42.76208
- ],
- [
- 2.9465,
- 42.61516
- ],
- [
- 2.99238,
- 42.61497
- ],
- [
- 2.99238,
- 42.5125
- ],
- [
- 3.041,
- 42.51259
- ],
- [
- 3.04121,
- 42.50093
- ],
- [
- 3.09086,
- 42.50082
- ],
- [
- 3.14769,
- 42.40072
- ]
- ],
- [
- [
- 6.35945,
- 43.02321
- ],
- [
- 6.42477,
- 43.02444
- ],
- [
- 6.45244,
- 43.03504
- ],
- [
- 6.46985,
- 43.05461
- ],
- [
- 6.51121,
- 43.05765
- ],
- [
- 6.52156,
- 43.04318
- ],
- [
- 6.48364,
- 43.02444
- ],
- [
- 6.47179,
- 43.00725
- ],
- [
- 6.41178,
- 42.9918
- ],
- [
- 6.39852,
- 42.98048
- ],
- [
- 6.35178,
- 42.99905
- ],
- [
- 6.35945,
- 43.02321
- ]
- ]
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/WikiProject_France/G%C3%A9oLittoral",
- "terms_text": "Ortho Littorale V2 - MEDDE"
- },
- {
- "id": "lu.geoportail.opendata.ortho_10cm_proto_lidar",
- "name": "geoportail.lu LIDAR prototype Nordstad 2017",
- "type": "tms",
- "template": "http://{switch:wmts1,wmts2}.geoportail.lu/opendata/wmts/ortho_10cm_proto_lidar/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg",
- "endDate": "2017-04-09T00:00:00.000Z",
- "startDate": "2017-04-09T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 21
- ],
- "polygon": [
- [
- [
- 6.05001,
- 49.82175
- ],
- [
- 6.04979,
- 49.91166
- ],
- [
- 6.18901,
- 49.91172
- ],
- [
- 6.18897,
- 49.82181
- ],
- [
- 6.05001,
- 49.82175
- ]
- ]
- ],
- "terms_url": "https://act.public.lu/fr/cartographie/lidar",
- "terms_text": "Administration du Cadastre et de la Topographie",
- "icon": "https://www.geoportail.lu/static/img/lion.png"
- },
- {
- "id": "Geoportal-PL-aerial_image",
- "name": "Geoportal.gov.pl (Orthophotomap)",
- "type": "tms",
- "template": "https://wms.misek.pl/geoportal.orto/tms/{zoom}/{x}/{y}",
- "scaleExtent": [
- 6,
- 24
- ],
- "polygon": [
- [
- [
- 15.9751,
- 54.37092
- ],
- [
- 16.31116,
- 54.55618
- ],
- [
- 17.13919,
- 54.78457
- ],
- [
- 18.34485,
- 54.90227
- ],
- [
- 19.66137,
- 54.47372
- ],
- [
- 20.28152,
- 54.42135
- ],
- [
- 21.46639,
- 54.34064
- ],
- [
- 22.77599,
- 54.37698
- ],
- [
- 22.8626,
- 54.42336
- ],
- [
- 23.29567,
- 54.26786
- ],
- [
- 23.53472,
- 54.09553
- ],
- [
- 23.52086,
- 53.97752
- ],
- [
- 23.71834,
- 53.46296
- ],
- [
- 23.92968,
- 53.18567
- ],
- [
- 23.92968,
- 52.68873
- ],
- [
- 23.7322,
- 52.60675
- ],
- [
- 23.5659,
- 52.58781
- ],
- [
- 23.20905,
- 52.33026
- ],
- [
- 23.19519,
- 52.23701
- ],
- [
- 23.50354,
- 52.18606
- ],
- [
- 23.69062,
- 52.00301
- ],
- [
- 23.59708,
- 51.7399
- ],
- [
- 23.66291,
- 51.38886
- ],
- [
- 23.9366,
- 50.98278
- ],
- [
- 24.16873,
- 50.86048
- ],
- [
- 24.01975,
- 50.80358
- ],
- [
- 24.10983,
- 50.66105
- ],
- [
- 24.05786,
- 50.41884
- ],
- [
- 23.61787,
- 50.30834
- ],
- [
- 22.68244,
- 49.51635
- ],
- [
- 22.73788,
- 49.20949
- ],
- [
- 22.90417,
- 49.07804
- ],
- [
- 22.8626,
- 48.99401
- ],
- [
- 22.60969,
- 49.03718
- ],
- [
- 22.07615,
- 49.20044
- ],
- [
- 21.84749,
- 49.37219
- ],
- [
- 21.37631,
- 49.44883
- ],
- [
- 21.10262,
- 49.37219
- ],
- [
- 20.91207,
- 49.3022
- ],
- [
- 20.6453,
- 49.39023
- ],
- [
- 20.18451,
- 49.33156
- ],
- [
- 20.11869,
- 49.20044
- ],
- [
- 19.942,
- 49.13021
- ],
- [
- 19.76531,
- 49.21176
- ],
- [
- 19.74798,
- 49.39925
- ],
- [
- 19.60247,
- 49.41503
- ],
- [
- 19.50893,
- 49.58154
- ],
- [
- 19.42925,
- 49.59052
- ],
- [
- 19.23177,
- 49.41503
- ],
- [
- 18.99618,
- 49.38798
- ],
- [
- 18.93382,
- 49.4916
- ],
- [
- 18.83681,
- 49.49386
- ],
- [
- 18.80216,
- 49.66234
- ],
- [
- 18.6428,
- 49.70941
- ],
- [
- 18.52154,
- 49.89947
- ],
- [
- 18.08154,
- 50.01092
- ],
- [
- 17.88753,
- 49.98865
- ],
- [
- 17.73855,
- 50.06877
- ],
- [
- 17.6069,
- 50.17096
- ],
- [
- 17.74548,
- 50.21532
- ],
- [
- 17.71084,
- 50.3017
- ],
- [
- 17.41635,
- 50.26407
- ],
- [
- 16.94864,
- 50.44533
- ],
- [
- 16.89321,
- 50.40339
- ],
- [
- 17.00061,
- 50.31055
- ],
- [
- 17.01793,
- 50.22419
- ],
- [
- 16.81352,
- 50.18649
- ],
- [
- 16.64029,
- 50.09767
- ],
- [
- 16.43242,
- 50.28621
- ],
- [
- 16.19683,
- 50.42767
- ],
- [
- 16.42203,
- 50.58852
- ],
- [
- 16.33888,
- 50.66324
- ],
- [
- 16.22802,
- 50.63688
- ],
- [
- 16.05479,
- 50.61271
- ],
- [
- 15.57322,
- 50.76415
- ],
- [
- 15.26834,
- 50.89764
- ],
- [
- 15.24409,
- 50.9806
- ],
- [
- 15.02929,
- 51.0133
- ],
- [
- 15.00157,
- 50.85829
- ],
- [
- 14.81102,
- 50.87359
- ],
- [
- 14.95653,
- 51.07212
- ],
- [
- 15.01889,
- 51.29146
- ],
- [
- 14.93921,
- 51.46015
- ],
- [
- 14.72094,
- 51.55718
- ],
- [
- 14.75212,
- 51.62606
- ],
- [
- 14.59968,
- 51.84276
- ],
- [
- 14.70362,
- 52.07334
- ],
- [
- 14.55811,
- 52.24974
- ],
- [
- 14.51654,
- 52.42544
- ],
- [
- 14.60315,
- 52.58781
- ],
- [
- 14.11465,
- 52.82083
- ],
- [
- 14.15276,
- 52.9734
- ],
- [
- 14.35024,
- 53.07342
- ],
- [
- 14.42299,
- 53.26656
- ],
- [
- 14.1978,
- 53.87348
- ],
- [
- 14.22205,
- 53.99585
- ],
- [
- 15.9751,
- 54.37092
- ]
- ]
- ],
- "terms_text": "Copyright © Główny Urząd Geodezji i Kartografii.",
- "best": true,
- "icon": "https://i.imgur.com/aFlvMpM.png"
- },
- {
- "id": "girau_do_pnciano",
- "name": "Girau do Ponciano",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Girau%20do%20Ponciano&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -36.78013,
- -9.92939
- ],
- [
- -36.78087,
- -9.83892
- ],
- [
- -36.87233,
- -9.83917
- ],
- [
- -36.87173,
- -9.90542
- ],
- [
- -36.87037,
- -9.92989
- ],
- [
- -36.86156,
- -9.92994
- ],
- [
- -36.85566,
- -9.92981
- ],
- [
- -36.85146,
- -9.92973
- ],
- [
- -36.84575,
- -9.92977
- ],
- [
- -36.83213,
- -9.92967
- ],
- [
- -36.81456,
- -9.9296
- ],
- [
- -36.78013,
- -9.92939
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "GRAFCAN-Canary_Islands",
- "name": "GRAFCAN - Canary Islands",
- "type": "wms",
- "template": "https://idecan1.grafcan.es/ServicioWMS/OrtoUrb?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=OU&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:4326",
- "polygon": [
- [
- [
- -17.92917,
- 28.89106
- ],
- [
- -18.03334,
- 28.79981
- ],
- [
- -18.03743,
- 28.73178
- ],
- [
- -17.87811,
- 28.43224
- ],
- [
- -17.83113,
- 28.41787
- ],
- [
- -17.72696,
- 28.56328
- ],
- [
- -17.73105,
- 28.67982
- ],
- [
- -17.68407,
- 28.73715
- ],
- [
- -17.75352,
- 28.86781
- ],
- [
- -17.85768,
- 28.86065
- ],
- [
- -17.92917,
- 28.89106
- ]
- ],
- [
- [
- -18.07818,
- 27.77211
- ],
- [
- -18.13707,
- 27.78751
- ],
- [
- -18.17054,
- 27.76441
- ],
- [
- -18.1779,
- 27.70695
- ],
- [
- -18.15782,
- 27.68799
- ],
- [
- -18.0581,
- 27.6791
- ],
- [
- -18.00656,
- 27.62574
- ],
- [
- -17.96105,
- 27.62218
- ],
- [
- -17.93896,
- 27.70814
- ],
- [
- -17.90751,
- 27.7194
- ],
- [
- -17.86199,
- 27.80468
- ],
- [
- -17.8727,
- 27.84079
- ],
- [
- -17.92558,
- 27.86801
- ],
- [
- -18.00522,
- 27.83605
- ],
- [
- -18.01392,
- 27.8035
- ],
- [
- -18.07818,
- 27.77211
- ]
- ],
- [
- [
- -17.26878,
- 28.23996
- ],
- [
- -17.33403,
- 28.21933
- ],
- [
- -17.36331,
- 28.1537
- ],
- [
- -17.36666,
- 28.08803
- ],
- [
- -17.33069,
- 28.04742
- ],
- [
- -17.27296,
- 28.00681
- ],
- [
- -17.20017,
- 28.00533
- ],
- [
- -17.14412,
- 28.02896
- ],
- [
- -17.07803,
- 28.0836
- ],
- [
- -17.08723,
- 28.1537
- ],
- [
- -17.1826,
- 28.2149
- ],
- [
- -17.26878,
- 28.23996
- ]
- ],
- [
- [
- -16.9358,
- 28.37623
- ],
- [
- -16.945,
- 28.33574
- ],
- [
- -16.71995,
- 27.98317
- ],
- [
- -16.62541,
- 27.98317
- ],
- [
- -16.52753,
- 28.01641
- ],
- [
- -16.39953,
- 28.14632
- ],
- [
- -16.33594,
- 28.30922
- ],
- [
- -16.33009,
- 28.36445
- ],
- [
- -16.10253,
- 28.52408
- ],
- [
- -16.09834,
- 28.5814
- ],
- [
- -16.14268,
- 28.62547
- ],
- [
- -16.33929,
- 28.59609
- ],
- [
- -16.43801,
- 28.53143
- ],
- [
- -16.53924,
- 28.44025
- ],
- [
- -16.83959,
- 28.41229
- ],
- [
- -16.9358,
- 28.37623
- ]
- ],
- [
- [
- -15.68833,
- 28.20585
- ],
- [
- -15.47395,
- 28.16437
- ],
- [
- -15.42427,
- 28.21046
- ],
- [
- -15.36283,
- 28.17244
- ],
- [
- -15.38375,
- 28.05598
- ],
- [
- -15.33146,
- 27.98444
- ],
- [
- -15.3576,
- 27.8042
- ],
- [
- -15.5916,
- 27.69777
- ],
- [
- -15.7001,
- 27.73365
- ],
- [
- -15.79944,
- 27.80305
- ],
- [
- -15.87134,
- 27.92439
- ],
- [
- -15.84781,
- 28.03637
- ],
- [
- -15.74716,
- 28.08943
- ],
- [
- -15.73147,
- 28.18396
- ],
- [
- -15.68833,
- 28.20585
- ]
- ],
- [
- [
- -14.50882,
- 28.13448
- ],
- [
- -14.41078,
- 28.13448
- ],
- [
- -14.24868,
- 28.24278
- ],
- [
- -14.23822,
- 28.34637
- ],
- [
- -14.03953,
- 28.73911
- ],
- [
- -13.89442,
- 28.78265
- ],
- [
- -13.78592,
- 28.77692
- ],
- [
- -13.82122,
- 28.38433
- ],
- [
- -13.91534,
- 28.19095
- ],
- [
- -14.18593,
- 28.13563
- ],
- [
- -14.30881,
- 28.00529
- ],
- [
- -14.54019,
- 28.05144
- ],
- [
- -14.50882,
- 28.13448
- ]
- ],
- [
- [
- -13.5525,
- 29.37727
- ],
- [
- -13.50868,
- 29.36824
- ],
- [
- -13.47955,
- 29.38728
- ],
- [
- -13.47543,
- 29.40963
- ],
- [
- -13.5003,
- 29.42807
- ],
- [
- -13.5505,
- 29.40712
- ],
- [
- -13.5525,
- 29.37727
- ]
- ],
- [
- [
- -13.3976,
- 29.16102
- ],
- [
- -13.42814,
- 29.12157
- ],
- [
- -13.44174,
- 28.99084
- ],
- [
- -13.53899,
- 28.91947
- ],
- [
- -13.70841,
- 28.88468
- ],
- [
- -13.77116,
- 28.80865
- ],
- [
- -13.90083,
- 28.83522
- ],
- [
- -13.90711,
- 28.88926
- ],
- [
- -13.85796,
- 28.93686
- ],
- [
- -13.85691,
- 29.03657
- ],
- [
- -13.67599,
- 29.14988
- ],
- [
- -13.56723,
- 29.15719
- ],
- [
- -13.55428,
- 29.35073
- ],
- [
- -13.39988,
- 29.21806
- ],
- [
- -13.3976,
- 29.16102
- ]
- ],
- [
- [
- -13.33792,
- 29.28667
- ],
- [
- -13.35035,
- 29.27436
- ],
- [
- -13.3386,
- 29.26533
- ],
- [
- -13.32617,
- 29.27765
- ],
- [
- -13.33792,
- 29.28667
- ]
- ]
- ],
- "terms_text": "GRAFCAN OrtoExpress Urbana 2009"
- },
- {
- "id": "GrandNancy_Orthophotographie_2012",
- "name": "GrandNancy - Orthophoto - 2012",
- "type": "tms",
- "template": "http://wms.openstreetmap.fr/tms/1.0.0/nancy_2012/{zoom}/{x}/{y}",
- "endDate": "2012-01-01T00:00:00.000Z",
- "startDate": "2012-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 22
- ],
- "polygon": [
- [
- [
- 6.06066,
- 48.60554
- ],
- [
- 6.29717,
- 48.59923
- ],
- [
- 6.30611,
- 48.74077
- ],
- [
- 6.06896,
- 48.7471
- ],
- [
- 6.06066,
- 48.60554
- ]
- ]
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/Nancy/Orthophotographie",
- "terms_text": "GrandNancy Orthophotographie 2012"
- },
- {
- "id": "hamburg-20cm",
- "name": "Hamburg (20 cm)",
- "type": "wms",
- "template": "http://geodienste.hamburg.de/HH_WMS_DOP20?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=1&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- 8.4826,
- 53.9356
- ],
- [
- 8.48274,
- 53.90924
- ],
- [
- 8.5275,
- 53.90941
- ],
- [
- 8.52792,
- 53.93577
- ],
- [
- 8.4826,
- 53.9356
- ]
- ],
- [
- [
- 9.77232,
- 53.54352
- ],
- [
- 9.77434,
- 53.55433
- ],
- [
- 9.76314,
- 53.55521
- ],
- [
- 9.73047,
- 53.55787
- ],
- [
- 9.73465,
- 53.56536
- ],
- [
- 9.75793,
- 53.61828
- ],
- [
- 9.77129,
- 53.63131
- ],
- [
- 9.7707,
- 53.61607
- ],
- [
- 9.79634,
- 53.6103
- ],
- [
- 9.78993,
- 53.60386
- ],
- [
- 9.81817,
- 53.58591
- ],
- [
- 9.83773,
- 53.59198
- ],
- [
- 9.84498,
- 53.59498
- ],
- [
- 9.85416,
- 53.59805
- ],
- [
- 9.86814,
- 53.6093
- ],
- [
- 9.86931,
- 53.61323
- ],
- [
- 9.88505,
- 53.62199
- ],
- [
- 9.88697,
- 53.6252
- ],
- [
- 9.89356,
- 53.63026
- ],
- [
- 9.89637,
- 53.63122
- ],
- [
- 9.89688,
- 53.63492
- ],
- [
- 9.90678,
- 53.65231
- ],
- [
- 9.93115,
- 53.65262
- ],
- [
- 9.94552,
- 53.65276
- ],
- [
- 9.95024,
- 53.65085
- ],
- [
- 9.95155,
- 53.65065
- ],
- [
- 9.97795,
- 53.64887
- ],
- [
- 9.98492,
- 53.6483
- ],
- [
- 9.98739,
- 53.65072
- ],
- [
- 9.9996,
- 53.68153
- ],
- [
- 10.02282,
- 53.68157
- ],
- [
- 10.04338,
- 53.68198
- ],
- [
- 10.05148,
- 53.67759
- ],
- [
- 10.06925,
- 53.67955
- ],
- [
- 10.0604,
- 53.68833
- ],
- [
- 10.071,
- 53.69585
- ],
- [
- 10.0707,
- 53.70996
- ],
- [
- 10.08198,
- 53.72044
- ],
- [
- 10.11908,
- 53.71324
- ],
- [
- 10.16939,
- 53.73896
- ],
- [
- 10.19369,
- 53.731
- ],
- [
- 10.1779,
- 53.70992
- ],
- [
- 10.15694,
- 53.70451
- ],
- [
- 10.15829,
- 53.68944
- ],
- [
- 10.14342,
- 53.68057
- ],
- [
- 10.14176,
- 53.67744
- ],
- [
- 10.14473,
- 53.67613
- ],
- [
- 10.14643,
- 53.67588
- ],
- [
- 10.14955,
- 53.67545
- ],
- [
- 10.17153,
- 53.66869
- ],
- [
- 10.19885,
- 53.64675
- ],
- [
- 10.18973,
- 53.63838
- ],
- [
- 10.22202,
- 53.63349
- ],
- [
- 10.18887,
- 53.61316
- ],
- [
- 10.19236,
- 53.59474
- ],
- [
- 10.20117,
- 53.58392
- ],
- [
- 10.15169,
- 53.57619
- ],
- [
- 10.15067,
- 53.56973
- ],
- [
- 10.148,
- 53.5639
- ],
- [
- 10.15308,
- 53.56242
- ],
- [
- 10.15942,
- 53.56091
- ],
- [
- 10.15189,
- 53.5417
- ],
- [
- 10.15465,
- 53.53657
- ],
- [
- 10.16874,
- 53.5374
- ],
- [
- 10.16327,
- 53.52185
- ],
- [
- 10.16611,
- 53.52013
- ],
- [
- 10.16919,
- 53.51965
- ],
- [
- 10.18951,
- 53.51148
- ],
- [
- 10.21043,
- 53.51996
- ],
- [
- 10.21828,
- 53.49923
- ],
- [
- 10.2367,
- 53.49629
- ],
- [
- 10.25008,
- 53.47898
- ],
- [
- 10.26592,
- 53.47079
- ],
- [
- 10.29043,
- 53.45512
- ],
- [
- 10.30962,
- 53.44309
- ],
- [
- 10.31223,
- 53.45229
- ],
- [
- 10.32514,
- 53.44979
- ],
- [
- 10.30799,
- 53.43332
- ],
- [
- 10.25598,
- 53.41623
- ],
- [
- 10.25089,
- 53.41024
- ],
- [
- 10.24578,
- 53.40261
- ],
- [
- 10.24155,
- 53.39797
- ],
- [
- 10.16555,
- 53.39933
- ],
- [
- 10.14506,
- 53.41614
- ],
- [
- 10.10949,
- 53.42649
- ],
- [
- 10.1068,
- 53.42658
- ],
- [
- 10.07581,
- 53.45436
- ],
- [
- 10.05155,
- 53.46394
- ],
- [
- 10.03517,
- 53.4469
- ],
- [
- 10.01449,
- 53.44203
- ],
- [
- 10.02294,
- 53.43228
- ],
- [
- 9.99754,
- 53.42546
- ],
- [
- 9.98243,
- 53.41478
- ],
- [
- 9.97873,
- 53.4142
- ],
- [
- 9.9581,
- 53.42708
- ],
- [
- 9.92953,
- 53.42007
- ],
- [
- 9.92552,
- 53.41924
- ],
- [
- 9.90667,
- 53.41596
- ],
- [
- 9.92305,
- 53.43631
- ],
- [
- 9.91704,
- 53.44664
- ],
- [
- 9.90436,
- 53.45707
- ],
- [
- 9.89493,
- 53.45583
- ],
- [
- 9.86885,
- 53.44462
- ],
- [
- 9.86211,
- 53.42942
- ],
- [
- 9.84872,
- 53.44111
- ],
- [
- 9.80663,
- 53.46648
- ],
- [
- 9.80021,
- 53.47372
- ],
- [
- 9.8028,
- 53.49383
- ],
- [
- 9.78203,
- 53.49236
- ],
- [
- 9.76885,
- 53.5053
- ],
- [
- 9.77107,
- 53.52185
- ],
- [
- 9.78105,
- 53.51838
- ],
- [
- 9.77352,
- 53.52796
- ],
- [
- 9.77232,
- 53.54352
- ]
- ]
- ],
- "terms_url": "http://www.hamburg.de/bsw/landesbetrieb-geoinformation-und-vermessung/",
- "terms_text": "Freie und Hansestadt Hamburg, Landesbetrieb Geoinformation und Vermessung"
- },
- {
- "id": "Hamburg-DK5",
- "name": "Hamburg (DK5)",
- "type": "wms",
- "template": "http://geodienste.hamburg.de/HH_WMS_Geobasisdaten?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=13&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:4326",
- "polygon": [
- [
- [
- 8.4826,
- 53.9356
- ],
- [
- 8.48274,
- 53.90924
- ],
- [
- 8.5275,
- 53.90941
- ],
- [
- 8.52792,
- 53.93577
- ],
- [
- 8.4826,
- 53.9356
- ]
- ],
- [
- [
- 9.77232,
- 53.54352
- ],
- [
- 9.77434,
- 53.55433
- ],
- [
- 9.76314,
- 53.55521
- ],
- [
- 9.73047,
- 53.55787
- ],
- [
- 9.73465,
- 53.56536
- ],
- [
- 9.75793,
- 53.61828
- ],
- [
- 9.77129,
- 53.63131
- ],
- [
- 9.7707,
- 53.61607
- ],
- [
- 9.79634,
- 53.6103
- ],
- [
- 9.78993,
- 53.60386
- ],
- [
- 9.81817,
- 53.58591
- ],
- [
- 9.83773,
- 53.59198
- ],
- [
- 9.84498,
- 53.59498
- ],
- [
- 9.85416,
- 53.59805
- ],
- [
- 9.86814,
- 53.6093
- ],
- [
- 9.86931,
- 53.61323
- ],
- [
- 9.88505,
- 53.62199
- ],
- [
- 9.88697,
- 53.6252
- ],
- [
- 9.89356,
- 53.63026
- ],
- [
- 9.89637,
- 53.63122
- ],
- [
- 9.89688,
- 53.63492
- ],
- [
- 9.90678,
- 53.65231
- ],
- [
- 9.93115,
- 53.65262
- ],
- [
- 9.94552,
- 53.65276
- ],
- [
- 9.95024,
- 53.65085
- ],
- [
- 9.95155,
- 53.65065
- ],
- [
- 9.97795,
- 53.64887
- ],
- [
- 9.98492,
- 53.6483
- ],
- [
- 9.98739,
- 53.65072
- ],
- [
- 9.9996,
- 53.68153
- ],
- [
- 10.02282,
- 53.68157
- ],
- [
- 10.04338,
- 53.68198
- ],
- [
- 10.05148,
- 53.67759
- ],
- [
- 10.06925,
- 53.67955
- ],
- [
- 10.0604,
- 53.68833
- ],
- [
- 10.071,
- 53.69585
- ],
- [
- 10.0707,
- 53.70996
- ],
- [
- 10.08198,
- 53.72044
- ],
- [
- 10.11908,
- 53.71324
- ],
- [
- 10.16939,
- 53.73896
- ],
- [
- 10.19369,
- 53.731
- ],
- [
- 10.1779,
- 53.70992
- ],
- [
- 10.15694,
- 53.70451
- ],
- [
- 10.15829,
- 53.68944
- ],
- [
- 10.14342,
- 53.68057
- ],
- [
- 10.14176,
- 53.67744
- ],
- [
- 10.14473,
- 53.67613
- ],
- [
- 10.14643,
- 53.67588
- ],
- [
- 10.14955,
- 53.67545
- ],
- [
- 10.17153,
- 53.66869
- ],
- [
- 10.19885,
- 53.64675
- ],
- [
- 10.18973,
- 53.63838
- ],
- [
- 10.22202,
- 53.63349
- ],
- [
- 10.18887,
- 53.61316
- ],
- [
- 10.19236,
- 53.59474
- ],
- [
- 10.20117,
- 53.58392
- ],
- [
- 10.15169,
- 53.57619
- ],
- [
- 10.15067,
- 53.56973
- ],
- [
- 10.148,
- 53.5639
- ],
- [
- 10.15308,
- 53.56242
- ],
- [
- 10.15942,
- 53.56091
- ],
- [
- 10.15189,
- 53.5417
- ],
- [
- 10.15465,
- 53.53657
- ],
- [
- 10.16874,
- 53.5374
- ],
- [
- 10.16327,
- 53.52185
- ],
- [
- 10.16611,
- 53.52013
- ],
- [
- 10.16919,
- 53.51965
- ],
- [
- 10.18951,
- 53.51148
- ],
- [
- 10.21043,
- 53.51996
- ],
- [
- 10.21828,
- 53.49923
- ],
- [
- 10.2367,
- 53.49629
- ],
- [
- 10.25008,
- 53.47898
- ],
- [
- 10.26592,
- 53.47079
- ],
- [
- 10.29043,
- 53.45512
- ],
- [
- 10.30962,
- 53.44309
- ],
- [
- 10.31223,
- 53.45229
- ],
- [
- 10.32514,
- 53.44979
- ],
- [
- 10.30799,
- 53.43332
- ],
- [
- 10.25598,
- 53.41623
- ],
- [
- 10.25089,
- 53.41024
- ],
- [
- 10.24578,
- 53.40261
- ],
- [
- 10.24155,
- 53.39797
- ],
- [
- 10.16555,
- 53.39933
- ],
- [
- 10.14506,
- 53.41614
- ],
- [
- 10.10949,
- 53.42649
- ],
- [
- 10.1068,
- 53.42658
- ],
- [
- 10.07581,
- 53.45436
- ],
- [
- 10.05155,
- 53.46394
- ],
- [
- 10.03517,
- 53.4469
- ],
- [
- 10.01449,
- 53.44203
- ],
- [
- 10.02294,
- 53.43228
- ],
- [
- 9.99754,
- 53.42546
- ],
- [
- 9.98243,
- 53.41478
- ],
- [
- 9.97873,
- 53.4142
- ],
- [
- 9.9581,
- 53.42708
- ],
- [
- 9.92953,
- 53.42007
- ],
- [
- 9.92552,
- 53.41924
- ],
- [
- 9.90667,
- 53.41596
- ],
- [
- 9.92305,
- 53.43631
- ],
- [
- 9.91704,
- 53.44664
- ],
- [
- 9.90436,
- 53.45707
- ],
- [
- 9.89493,
- 53.45583
- ],
- [
- 9.86885,
- 53.44462
- ],
- [
- 9.86211,
- 53.42942
- ],
- [
- 9.84872,
- 53.44111
- ],
- [
- 9.80663,
- 53.46648
- ],
- [
- 9.80021,
- 53.47372
- ],
- [
- 9.8028,
- 53.49383
- ],
- [
- 9.78203,
- 53.49236
- ],
- [
- 9.76885,
- 53.5053
- ],
- [
- 9.77107,
- 53.52185
- ],
- [
- 9.78105,
- 53.51838
- ],
- [
- 9.77352,
- 53.52796
- ],
- [
- 9.77232,
- 53.54352
- ]
- ]
- ]
- },
- {
- "id": "Hampshire-Aerial-FCIR",
- "name": "Hampshire Aerial FCIR",
- "type": "tms",
- "template": "https://{switch:a,b,c}.hampshire.aerial.openstreetmap.org.uk/layer/gb_hampshire_aerial_fcir/{zoom}/{x}/{y}.png",
- "endDate": "2014-01-01T00:00:00.000Z",
- "startDate": "2013-01-01T00:00:00.000Z",
- "scaleExtent": [
- 8,
- 20
- ],
- "polygon": [
- [
- [
- -1.31567,
- 50.77809
- ],
- [
- -1.49139,
- 50.73027
- ],
- [
- -1.57113,
- 50.69041
- ],
- [
- -1.68095,
- 50.71748
- ],
- [
- -1.69338,
- 50.73484
- ],
- [
- -1.69528,
- 50.74065
- ],
- [
- -1.68689,
- 50.74999
- ],
- [
- -1.71068,
- 50.74812
- ],
- [
- -1.7195,
- 50.75261
- ],
- [
- -1.746,
- 50.74452
- ],
- [
- -1.74845,
- 50.75675
- ],
- [
- -1.74287,
- 50.76397
- ],
- [
- -1.75101,
- 50.77577
- ],
- [
- -1.78525,
- 50.76177
- ],
- [
- -1.79911,
- 50.77236
- ],
- [
- -1.82256,
- 50.77225
- ],
- [
- -1.82678,
- 50.78077
- ],
- [
- -1.8225,
- 50.79933
- ],
- [
- -1.80732,
- 50.80074
- ],
- [
- -1.81566,
- 50.80752
- ],
- [
- -1.80889,
- 50.81358
- ],
- [
- -1.80579,
- 50.83249
- ],
- [
- -1.79816,
- 50.83535
- ],
- [
- -1.80649,
- 50.84414
- ],
- [
- -1.80988,
- 50.86189
- ],
- [
- -1.81378,
- 50.85591
- ],
- [
- -1.83052,
- 50.85261
- ],
- [
- -1.85271,
- 50.85651
- ],
- [
- -1.85655,
- 50.86684
- ],
- [
- -1.8492,
- 50.87802
- ],
- [
- -1.85082,
- 50.89178
- ],
- [
- -1.84077,
- 50.90051
- ],
- [
- -1.82693,
- 50.89939
- ],
- [
- -1.82006,
- 50.90492
- ],
- [
- -1.82151,
- 50.91691
- ],
- [
- -1.81689,
- 50.92412
- ],
- [
- -1.84114,
- 50.92886
- ],
- [
- -1.87446,
- 50.91441
- ],
- [
- -1.91129,
- 50.9439
- ],
- [
- -1.92339,
- 50.95917
- ],
- [
- -1.95751,
- 50.97575
- ],
- [
- -1.9591,
- 50.99152
- ],
- [
- -1.94907,
- 50.98649
- ],
- [
- -1.92879,
- 51.00055
- ],
- [
- -1.88709,
- 51.0026
- ],
- [
- -1.87393,
- 51.0097
- ],
- [
- -1.8717,
- 50.99083
- ],
- [
- -1.85433,
- 51.00786
- ],
- [
- -1.83567,
- 51.01238
- ],
- [
- -1.81502,
- 50.9899
- ],
- [
- -1.80031,
- 50.99457
- ],
- [
- -1.75184,
- 50.98133
- ],
- [
- -1.71927,
- 50.98047
- ],
- [
- -1.69142,
- 50.95943
- ],
- [
- -1.66829,
- 50.95041
- ],
- [
- -1.6526,
- 50.95029
- ],
- [
- -1.63536,
- 50.96269
- ],
- [
- -1.62397,
- 50.95903
- ],
- [
- -1.6089,
- 50.97686
- ],
- [
- -1.62172,
- 50.98099
- ],
- [
- -1.63115,
- 50.99984
- ],
- [
- -1.60984,
- 51.01225
- ],
- [
- -1.60173,
- 51.01042
- ],
- [
- -1.60787,
- 51.01582
- ],
- [
- -1.6057,
- 51.02271
- ],
- [
- -1.63542,
- 51.03176
- ],
- [
- -1.63858,
- 51.04126
- ],
- [
- -1.63107,
- 51.07819
- ],
- [
- -1.64025,
- 51.09201
- ],
- [
- -1.6306,
- 51.10359
- ],
- [
- -1.63408,
- 51.11099
- ],
- [
- -1.63067,
- 51.11652
- ],
- [
- -1.64109,
- 51.12237
- ],
- [
- -1.66525,
- 51.12546
- ],
- [
- -1.65724,
- 51.15539
- ],
- [
- -1.67474,
- 51.177
- ],
- [
- -1.67213,
- 51.18708
- ],
- [
- -1.69679,
- 51.20233
- ],
- [
- -1.69247,
- 51.21617
- ],
- [
- -1.65288,
- 51.22301
- ],
- [
- -1.63564,
- 51.22019
- ],
- [
- -1.62395,
- 51.24136
- ],
- [
- -1.61402,
- 51.24467
- ],
- [
- -1.60741,
- 51.25513
- ],
- [
- -1.57717,
- 51.25863
- ],
- [
- -1.54443,
- 51.24826
- ],
- [
- -1.5384,
- 51.25085
- ],
- [
- -1.53436,
- 51.25919
- ],
- [
- -1.54345,
- 51.25957
- ],
- [
- -1.54007,
- 51.27602
- ],
- [
- -1.54596,
- 51.28095
- ],
- [
- -1.53591,
- 51.28978
- ],
- [
- -1.52595,
- 51.28975
- ],
- [
- -1.53093,
- 51.29948
- ],
- [
- -1.53008,
- 51.3111
- ],
- [
- -1.53628,
- 51.31596
- ],
- [
- -1.52986,
- 51.34057
- ],
- [
- -1.51552,
- 51.34219
- ],
- [
- -1.49498,
- 51.33228
- ],
- [
- -1.43599,
- 51.33861
- ],
- [
- -1.44759,
- 51.3464
- ],
- [
- -1.4463,
- 51.35699
- ],
- [
- -1.43056,
- 51.35941
- ],
- [
- -1.41608,
- 51.37517
- ],
- [
- -1.34899,
- 51.37045
- ],
- [
- -1.31472,
- 51.37627
- ],
- [
- -1.27555,
- 51.3707
- ],
- [
- -1.25116,
- 51.37511
- ],
- [
- -1.24118,
- 51.36938
- ],
- [
- -1.22209,
- 51.37271
- ],
- [
- -1.17602,
- 51.36102
- ],
- [
- -1.14321,
- 51.36028
- ],
- [
- -1.11875,
- 51.36156
- ],
- [
- -1.12096,
- 51.36859
- ],
- [
- -1.11678,
- 51.3767
- ],
- [
- -1.08363,
- 51.38712
- ],
- [
- -1.04754,
- 51.36122
- ],
- [
- -0.9904,
- 51.36619
- ],
- [
- -0.97264,
- 51.36297
- ],
- [
- -0.92376,
- 51.36937
- ],
- [
- -0.87681,
- 51.3555
- ],
- [
- -0.86549,
- 51.35947
- ],
- [
- -0.82728,
- 51.35574
- ],
- [
- -0.81122,
- 51.34418
- ],
- [
- -0.78322,
- 51.34084
- ],
- [
- -0.76325,
- 51.32721
- ],
- [
- -0.76005,
- 51.32013
- ],
- [
- -0.74183,
- 51.31112
- ],
- [
- -0.72842,
- 51.28238
- ],
- [
- -0.72631,
- 51.25653
- ],
- [
- -0.73713,
- 51.23126
- ],
- [
- -0.74898,
- 51.2277
- ],
- [
- -0.77712,
- 51.23901
- ],
- [
- -0.80193,
- 51.23628
- ],
- [
- -0.80611,
- 51.24056
- ],
- [
- -0.82491,
- 51.23137
- ],
- [
- -0.82701,
- 51.22315
- ],
- [
- -0.84493,
- 51.20998
- ],
- [
- -0.82268,
- 51.18268
- ],
- [
- -0.83042,
- 51.15022
- ],
- [
- -0.81952,
- 51.15047
- ],
- [
- -0.80504,
- 51.15847
- ],
- [
- -0.79382,
- 51.15491
- ],
- [
- -0.78879,
- 51.14141
- ],
- [
- -0.77846,
- 51.13664
- ],
- [
- -0.77813,
- 51.13063
- ],
- [
- -0.76654,
- 51.11946
- ],
- [
- -0.74365,
- 51.11491
- ],
- [
- -0.74715,
- 51.10131
- ],
- [
- -0.75411,
- 51.10116
- ],
- [
- -0.75122,
- 51.09547
- ],
- [
- -0.75506,
- 51.08987
- ],
- [
- -0.75076,
- 51.0852
- ],
- [
- -0.7785,
- 51.07715
- ],
- [
- -0.78645,
- 51.06467
- ],
- [
- -0.79954,
- 51.06078
- ],
- [
- -0.82645,
- 51.05881
- ],
- [
- -0.83646,
- 51.0664
- ],
- [
- -0.84519,
- 51.06052
- ],
- [
- -0.8499,
- 51.0436
- ],
- [
- -0.89485,
- 51.01978
- ],
- [
- -0.89065,
- 51.00194
- ],
- [
- -0.90461,
- 50.99327
- ],
- [
- -0.91461,
- 50.97806
- ],
- [
- -0.91278,
- 50.9708
- ],
- [
- -0.93246,
- 50.94278
- ],
- [
- -0.92119,
- 50.9232
- ],
- [
- -0.93793,
- 50.91615
- ],
- [
- -0.95132,
- 50.89178
- ],
- [
- -0.92368,
- 50.86513
- ],
- [
- -0.92976,
- 50.85365
- ],
- [
- -0.92903,
- 50.84245
- ],
- [
- -0.94342,
- 50.82191
- ],
- [
- -0.9299,
- 50.78445
- ],
- [
- -0.93275,
- 50.77435
- ],
- [
- -0.95347,
- 50.73682
- ],
- [
- -1.31567,
- 50.77809
- ]
- ]
- ]
- },
- {
- "id": "Hampshire-Aerial-RGB",
- "name": "Hampshire Aerial RGB",
- "type": "tms",
- "template": "https://{switch:a,b,c}.hampshire.aerial.openstreetmap.org.uk/layer/gb_hampshire_aerial_rgb/{zoom}/{x}/{y}.png",
- "endDate": "2013-01-01T00:00:00.000Z",
- "startDate": "2013-01-01T00:00:00.000Z",
- "scaleExtent": [
- 8,
- 20
- ],
- "polygon": [
- [
- [
- -1.31567,
- 50.77809
- ],
- [
- -1.49139,
- 50.73027
- ],
- [
- -1.57113,
- 50.69041
- ],
- [
- -1.68095,
- 50.71748
- ],
- [
- -1.69338,
- 50.73484
- ],
- [
- -1.69528,
- 50.74065
- ],
- [
- -1.68689,
- 50.74999
- ],
- [
- -1.71068,
- 50.74812
- ],
- [
- -1.7195,
- 50.75261
- ],
- [
- -1.746,
- 50.74452
- ],
- [
- -1.74845,
- 50.75675
- ],
- [
- -1.74287,
- 50.76397
- ],
- [
- -1.75101,
- 50.77577
- ],
- [
- -1.78525,
- 50.76177
- ],
- [
- -1.79911,
- 50.77236
- ],
- [
- -1.82256,
- 50.77225
- ],
- [
- -1.82678,
- 50.78077
- ],
- [
- -1.8225,
- 50.79933
- ],
- [
- -1.80732,
- 50.80074
- ],
- [
- -1.81566,
- 50.80752
- ],
- [
- -1.80889,
- 50.81358
- ],
- [
- -1.80579,
- 50.83249
- ],
- [
- -1.79816,
- 50.83535
- ],
- [
- -1.80649,
- 50.84414
- ],
- [
- -1.80988,
- 50.86189
- ],
- [
- -1.81378,
- 50.85591
- ],
- [
- -1.83052,
- 50.85261
- ],
- [
- -1.85271,
- 50.85651
- ],
- [
- -1.85655,
- 50.86684
- ],
- [
- -1.8492,
- 50.87802
- ],
- [
- -1.85082,
- 50.89178
- ],
- [
- -1.84077,
- 50.90051
- ],
- [
- -1.82693,
- 50.89939
- ],
- [
- -1.82006,
- 50.90492
- ],
- [
- -1.82151,
- 50.91691
- ],
- [
- -1.81689,
- 50.92412
- ],
- [
- -1.84114,
- 50.92886
- ],
- [
- -1.87446,
- 50.91441
- ],
- [
- -1.91129,
- 50.9439
- ],
- [
- -1.92339,
- 50.95917
- ],
- [
- -1.95751,
- 50.97575
- ],
- [
- -1.9591,
- 50.99152
- ],
- [
- -1.94907,
- 50.98649
- ],
- [
- -1.92879,
- 51.00055
- ],
- [
- -1.88709,
- 51.0026
- ],
- [
- -1.87393,
- 51.0097
- ],
- [
- -1.8717,
- 50.99083
- ],
- [
- -1.85433,
- 51.00786
- ],
- [
- -1.83567,
- 51.01238
- ],
- [
- -1.81502,
- 50.9899
- ],
- [
- -1.80031,
- 50.99457
- ],
- [
- -1.75184,
- 50.98133
- ],
- [
- -1.71927,
- 50.98047
- ],
- [
- -1.69142,
- 50.95943
- ],
- [
- -1.66829,
- 50.95041
- ],
- [
- -1.6526,
- 50.95029
- ],
- [
- -1.63536,
- 50.96269
- ],
- [
- -1.62397,
- 50.95903
- ],
- [
- -1.6089,
- 50.97686
- ],
- [
- -1.62172,
- 50.98099
- ],
- [
- -1.63115,
- 50.99984
- ],
- [
- -1.60984,
- 51.01225
- ],
- [
- -1.60173,
- 51.01042
- ],
- [
- -1.60787,
- 51.01582
- ],
- [
- -1.6057,
- 51.02271
- ],
- [
- -1.63542,
- 51.03176
- ],
- [
- -1.63858,
- 51.04126
- ],
- [
- -1.63107,
- 51.07819
- ],
- [
- -1.64025,
- 51.09201
- ],
- [
- -1.6306,
- 51.10359
- ],
- [
- -1.63408,
- 51.11099
- ],
- [
- -1.63067,
- 51.11652
- ],
- [
- -1.64109,
- 51.12237
- ],
- [
- -1.66525,
- 51.12546
- ],
- [
- -1.65724,
- 51.15539
- ],
- [
- -1.67474,
- 51.177
- ],
- [
- -1.67213,
- 51.18708
- ],
- [
- -1.69679,
- 51.20233
- ],
- [
- -1.69247,
- 51.21617
- ],
- [
- -1.65288,
- 51.22301
- ],
- [
- -1.63564,
- 51.22019
- ],
- [
- -1.62395,
- 51.24136
- ],
- [
- -1.61402,
- 51.24467
- ],
- [
- -1.60741,
- 51.25513
- ],
- [
- -1.57717,
- 51.25863
- ],
- [
- -1.54443,
- 51.24826
- ],
- [
- -1.5384,
- 51.25085
- ],
- [
- -1.53436,
- 51.25919
- ],
- [
- -1.54345,
- 51.25957
- ],
- [
- -1.54007,
- 51.27602
- ],
- [
- -1.54596,
- 51.28095
- ],
- [
- -1.53591,
- 51.28978
- ],
- [
- -1.52595,
- 51.28975
- ],
- [
- -1.53093,
- 51.29948
- ],
- [
- -1.53008,
- 51.3111
- ],
- [
- -1.53628,
- 51.31596
- ],
- [
- -1.52986,
- 51.34057
- ],
- [
- -1.51552,
- 51.34219
- ],
- [
- -1.49498,
- 51.33228
- ],
- [
- -1.43599,
- 51.33861
- ],
- [
- -1.44759,
- 51.3464
- ],
- [
- -1.4463,
- 51.35699
- ],
- [
- -1.43056,
- 51.35941
- ],
- [
- -1.41608,
- 51.37517
- ],
- [
- -1.34899,
- 51.37045
- ],
- [
- -1.31472,
- 51.37627
- ],
- [
- -1.27555,
- 51.3707
- ],
- [
- -1.25116,
- 51.37511
- ],
- [
- -1.24118,
- 51.36938
- ],
- [
- -1.22209,
- 51.37271
- ],
- [
- -1.17602,
- 51.36102
- ],
- [
- -1.14321,
- 51.36028
- ],
- [
- -1.11875,
- 51.36156
- ],
- [
- -1.12096,
- 51.36859
- ],
- [
- -1.11678,
- 51.3767
- ],
- [
- -1.08363,
- 51.38712
- ],
- [
- -1.04754,
- 51.36122
- ],
- [
- -0.9904,
- 51.36619
- ],
- [
- -0.97264,
- 51.36297
- ],
- [
- -0.92376,
- 51.36937
- ],
- [
- -0.87681,
- 51.3555
- ],
- [
- -0.86549,
- 51.35947
- ],
- [
- -0.82728,
- 51.35574
- ],
- [
- -0.81122,
- 51.34418
- ],
- [
- -0.78322,
- 51.34084
- ],
- [
- -0.76325,
- 51.32721
- ],
- [
- -0.76005,
- 51.32013
- ],
- [
- -0.74183,
- 51.31112
- ],
- [
- -0.72842,
- 51.28238
- ],
- [
- -0.72631,
- 51.25653
- ],
- [
- -0.73713,
- 51.23126
- ],
- [
- -0.74898,
- 51.2277
- ],
- [
- -0.77712,
- 51.23901
- ],
- [
- -0.80193,
- 51.23628
- ],
- [
- -0.80611,
- 51.24056
- ],
- [
- -0.82491,
- 51.23137
- ],
- [
- -0.82701,
- 51.22315
- ],
- [
- -0.84493,
- 51.20998
- ],
- [
- -0.82268,
- 51.18268
- ],
- [
- -0.83042,
- 51.15022
- ],
- [
- -0.81952,
- 51.15047
- ],
- [
- -0.80504,
- 51.15847
- ],
- [
- -0.79382,
- 51.15491
- ],
- [
- -0.78879,
- 51.14141
- ],
- [
- -0.77846,
- 51.13664
- ],
- [
- -0.77813,
- 51.13063
- ],
- [
- -0.76654,
- 51.11946
- ],
- [
- -0.74365,
- 51.11491
- ],
- [
- -0.74715,
- 51.10131
- ],
- [
- -0.75411,
- 51.10116
- ],
- [
- -0.75122,
- 51.09547
- ],
- [
- -0.75506,
- 51.08987
- ],
- [
- -0.75076,
- 51.0852
- ],
- [
- -0.7785,
- 51.07715
- ],
- [
- -0.78645,
- 51.06467
- ],
- [
- -0.79954,
- 51.06078
- ],
- [
- -0.82645,
- 51.05881
- ],
- [
- -0.83646,
- 51.0664
- ],
- [
- -0.84519,
- 51.06052
- ],
- [
- -0.8499,
- 51.0436
- ],
- [
- -0.89485,
- 51.01978
- ],
- [
- -0.89065,
- 51.00194
- ],
- [
- -0.90461,
- 50.99327
- ],
- [
- -0.91461,
- 50.97806
- ],
- [
- -0.91278,
- 50.9708
- ],
- [
- -0.93246,
- 50.94278
- ],
- [
- -0.92119,
- 50.9232
- ],
- [
- -0.93793,
- 50.91615
- ],
- [
- -0.95132,
- 50.89178
- ],
- [
- -0.92368,
- 50.86513
- ],
- [
- -0.92976,
- 50.85365
- ],
- [
- -0.92903,
- 50.84245
- ],
- [
- -0.94342,
- 50.82191
- ],
- [
- -0.9299,
- 50.78445
- ],
- [
- -0.93275,
- 50.77435
- ],
- [
- -0.95347,
- 50.73682
- ],
- [
- -1.31567,
- 50.77809
- ]
- ]
- ]
- },
- {
- "id": "IBGE_DF_Addresses",
- "name": "IBGE Distrito Federal",
- "type": "tms",
- "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/wille/cirnnxni1000jg8nfppc8g7pm/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoid2lsbGUiLCJhIjoicFNVWk5VWSJ9.hluCd0YGvYHNlFi_utWe2g",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- -48.2444,
- -16.0508
- ],
- [
- -48.2444,
- -15.5005
- ],
- [
- -47.5695,
- -15.5005
- ],
- [
- -47.5695,
- -16.0508
- ],
- [
- -48.2444,
- -16.0508
- ]
- ]
- ],
- "terms_text": "IBGE",
- "description": "Addresses data from IBGE",
- "overlay": true
- },
- {
- "id": "IBGE_Setores_Rurais",
- "name": "IBGE Mapa de Setores Rurais",
- "type": "tms",
- "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/tmpsantos.i00mo1kj/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJncjlmd0t3In0.DmZsIeOW-3x-C5eX-wAqTw",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- -69.94793,
- -4.23168
- ],
- [
- -69.45659,
- -1.49119
- ],
- [
- -69.3973,
- -1.36508
- ],
- [
- -69.42989,
- -1.22173
- ],
- [
- -69.39523,
- -1.12555
- ],
- [
- -69.44292,
- -1.03351
- ],
- [
- -69.41861,
- -0.99827
- ],
- [
- -69.528,
- -0.92514
- ],
- [
- -69.52577,
- -0.86807
- ],
- [
- -69.62491,
- -0.74667
- ],
- [
- -69.56179,
- -0.63692
- ],
- [
- -69.60783,
- -0.5008
- ],
- [
- -69.8446,
- -0.33732
- ],
- [
- -69.92054,
- -0.32573
- ],
- [
- -70.04323,
- -0.18998
- ],
- [
- -70.04302,
- 0.56359
- ],
- [
- -69.80272,
- 0.57162
- ],
- [
- -69.6711,
- 0.66759
- ],
- [
- -69.60529,
- 0.61328
- ],
- [
- -69.59701,
- 0.6542
- ],
- [
- -69.48002,
- 0.73577
- ],
- [
- -69.35277,
- 0.61416
- ],
- [
- -69.28914,
- 0.64997
- ],
- [
- -69.29484,
- 0.60389
- ],
- [
- -69.19975,
- 0.60591
- ],
- [
- -69.19425,
- 0.64982
- ],
- [
- -69.11563,
- 0.64484
- ],
- [
- -69.19001,
- 0.74056
- ],
- [
- -69.14881,
- 0.76751
- ],
- [
- -69.13576,
- 0.87204
- ],
- [
- -69.18846,
- 0.91324
- ],
- [
- -69.1646,
- 0.94156
- ],
- [
- -69.21679,
- 0.97245
- ],
- [
- -69.19773,
- 0.99974
- ],
- [
- -69.24494,
- 1.05655
- ],
- [
- -69.37641,
- 1.08794
- ],
- [
- -69.42312,
- 1.04265
- ],
- [
- -69.60989,
- 1.09826
- ],
- [
- -69.67718,
- 1.06994
- ],
- [
- -69.70963,
- 1.11817
- ],
- [
- -69.84266,
- 1.07272
- ],
- [
- -69.83972,
- 1.71893
- ],
- [
- -69.78236,
- 1.69244
- ],
- [
- -69.53464,
- 1.77691
- ],
- [
- -69.39109,
- 1.72935
- ],
- [
- -68.1645,
- 1.72945
- ],
- [
- -68.19207,
- 1.7797
- ],
- [
- -68.23954,
- 1.77044
- ],
- [
- -68.22688,
- 1.82918
- ],
- [
- -68.28555,
- 1.83084
- ],
- [
- -68.19583,
- 2.03479
- ],
- [
- -68.18033,
- 1.9767
- ],
- [
- -68.14417,
- 1.97854
- ],
- [
- -68.09043,
- 1.89774
- ],
- [
- -67.90162,
- 1.81165
- ],
- [
- -67.76942,
- 2.00924
- ],
- [
- -67.55095,
- 2.04769
- ],
- [
- -67.49519,
- 2.16312
- ],
- [
- -67.39404,
- 2.22894
- ],
- [
- -67.32672,
- 2.06387
- ],
- [
- -67.33083,
- 1.94158
- ],
- [
- -67.22831,
- 1.84127
- ],
- [
- -67.15384,
- 1.8315
- ],
- [
- -67.15922,
- 1.67504
- ],
- [
- -67.08017,
- 1.38546
- ],
- [
- -67.13923,
- 1.32002
- ],
- [
- -67.08675,
- 1.16704
- ],
- [
- -66.85119,
- 1.22896
- ],
- [
- -66.31032,
- 0.74494
- ],
- [
- -66.19737,
- 0.78161
- ],
- [
- -66.07783,
- 0.76174
- ],
- [
- -66.07024,
- 0.8123
- ],
- [
- -65.96712,
- 0.81511
- ],
- [
- -65.88369,
- 0.94159
- ],
- [
- -65.77261,
- 0.95859
- ],
- [
- -65.7421,
- 1.00125
- ],
- [
- -65.58894,
- 1.00471
- ],
- [
- -65.49624,
- 0.87415
- ],
- [
- -65.60623,
- 0.70748
- ],
- [
- -65.54116,
- 0.64881
- ],
- [
- -65.44499,
- 0.68921
- ],
- [
- -65.39213,
- 0.75692
- ],
- [
- -65.41198,
- 0.82415
- ],
- [
- -65.32734,
- 0.93596
- ],
- [
- -65.21302,
- 0.90282
- ],
- [
- -65.1749,
- 0.94131
- ],
- [
- -65.15831,
- 1.1246
- ],
- [
- -65.07232,
- 1.15303
- ],
- [
- -65.06317,
- 1.11205
- ],
- [
- -65.01361,
- 1.10905
- ],
- [
- -64.97445,
- 1.20288
- ],
- [
- -64.90439,
- 1.25153
- ],
- [
- -64.86966,
- 1.22713
- ],
- [
- -64.80053,
- 1.31527
- ],
- [
- -64.74446,
- 1.22569
- ],
- [
- -64.5789,
- 1.34041
- ],
- [
- -64.52608,
- 1.44322
- ],
- [
- -64.43586,
- 1.47006
- ],
- [
- -64.3939,
- 1.52901
- ],
- [
- -64.35111,
- 1.52921
- ],
- [
- -64.34777,
- 1.49508
- ],
- [
- -64.41019,
- 1.40301
- ],
- [
- -64.33791,
- 1.36134
- ],
- [
- -64.3136,
- 1.45617
- ],
- [
- -64.19707,
- 1.52071
- ],
- [
- -64.0735,
- 1.64902
- ],
- [
- -64.05781,
- 1.92899
- ],
- [
- -63.97219,
- 1.99194
- ],
- [
- -63.83555,
- 1.96644
- ],
- [
- -63.71155,
- 2.04645
- ],
- [
- -63.66501,
- 2.01861
- ],
- [
- -63.6268,
- 2.11222
- ],
- [
- -63.56474,
- 2.13571
- ],
- [
- -63.44059,
- 2.126
- ],
- [
- -63.36742,
- 2.26864
- ],
- [
- -63.37088,
- 2.41121
- ],
- [
- -63.42123,
- 2.45102
- ],
- [
- -63.46036,
- 2.39684
- ],
- [
- -63.56398,
- 2.44573
- ],
- [
- -63.76805,
- 2.43994
- ],
- [
- -63.84358,
- 2.4916
- ],
- [
- -64.01914,
- 2.46135
- ],
- [
- -64.0573,
- 2.49752
- ],
- [
- -63.98033,
- 2.7237
- ],
- [
- -64.07709,
- 2.87262
- ],
- [
- -64.07156,
- 2.92142
- ],
- [
- -64.12349,
- 2.99048
- ],
- [
- -64.15754,
- 2.98243
- ],
- [
- -64.14592,
- 3.03459
- ],
- [
- -64.22642,
- 3.12356
- ],
- [
- -64.19795,
- 3.20121
- ],
- [
- -64.2444,
- 3.43036
- ],
- [
- -64.17437,
- 3.56841
- ],
- [
- -64.281,
- 3.70928
- ],
- [
- -64.54357,
- 3.85713
- ],
- [
- -64.72239,
- 4.11775
- ],
- [
- -64.80203,
- 4.17422
- ],
- [
- -64.81123,
- 4.27048
- ],
- [
- -64.69522,
- 4.25323
- ],
- [
- -64.623,
- 4.135
- ],
- [
- -64.5565,
- 4.10529
- ],
- [
- -64.164,
- 4.127
- ],
- [
- -63.964,
- 3.868
- ],
- [
- -63.928,
- 3.925
- ],
- [
- -63.85,
- 3.95
- ],
- [
- -63.682,
- 3.908
- ],
- [
- -63.676,
- 4.019
- ],
- [
- -63.591,
- 3.886
- ],
- [
- -63.497,
- 3.84
- ],
- [
- -63.489,
- 3.874
- ],
- [
- -63.434,
- 3.865
- ],
- [
- -63.428,
- 3.977
- ],
- [
- -63.204,
- 3.952
- ],
- [
- -63.226,
- 3.836
- ],
- [
- -63.103,
- 3.794
- ],
- [
- -63.059,
- 3.748
- ],
- [
- -63.081,
- 3.694
- ],
- [
- -62.96,
- 3.608
- ],
- [
- -62.835,
- 3.739
- ],
- [
- -62.743,
- 3.674
- ],
- [
- -62.729,
- 3.805
- ],
- [
- -62.788,
- 3.894
- ],
- [
- -62.753,
- 4.032
- ],
- [
- -62.555,
- 4.019
- ],
- [
- -62.552,
- 4.109
- ],
- [
- -62.437,
- 4.183
- ],
- [
- -62.14308,
- 4.07768
- ],
- [
- -62.071,
- 4.126
- ],
- [
- -62.076,
- 4.154
- ],
- [
- -61.982,
- 4.181
- ],
- [
- -61.93175,
- 4.12009
- ],
- [
- -61.92213,
- 4.16126
- ],
- [
- -61.824,
- 4.164
- ],
- [
- -61.802,
- 4.229
- ],
- [
- -61.724,
- 4.27
- ],
- [
- -61.56,
- 4.252
- ],
- [
- -61.508,
- 4.322
- ],
- [
- -61.513,
- 4.406
- ],
- [
- -61.288,
- 4.458
- ],
- [
- -61.323,
- 4.535
- ],
- [
- -61.217,
- 4.536
- ],
- [
- -61.14559,
- 4.48016
- ],
- [
- -61.095,
- 4.522
- ],
- [
- -60.994,
- 4.519
- ],
- [
- -60.932,
- 4.587
- ],
- [
- -60.949,
- 4.653
- ],
- [
- -60.899,
- 4.717
- ],
- [
- -60.751,
- 4.756
- ],
- [
- -60.591,
- 4.927
- ],
- [
- -60.661,
- 5.164
- ],
- [
- -60.73197,
- 5.21203
- ],
- [
- -60.434,
- 5.182
- ],
- [
- -60.20825,
- 5.28346
- ],
- [
- -60.172,
- 5.227
- ],
- [
- -60.135,
- 5.249
- ],
- [
- -60.094,
- 5.14
- ],
- [
- -59.96984,
- 5.06334
- ],
- [
- -60.02524,
- 4.7065
- ],
- [
- -60.0705,
- 4.61688
- ],
- [
- -60.15725,
- 4.57247
- ],
- [
- -60.16114,
- 4.51773
- ],
- [
- -59.79503,
- 4.46554
- ],
- [
- -59.66948,
- 4.37629
- ],
- [
- -59.7319,
- 4.28587
- ],
- [
- -59.73069,
- 4.18076
- ],
- [
- -59.61818,
- 4.13166
- ],
- [
- -59.65406,
- 4.06943
- ],
- [
- -59.58417,
- 3.96851
- ],
- [
- -59.5153,
- 3.94493
- ],
- [
- -59.59279,
- 3.88538
- ],
- [
- -59.59631,
- 3.79386
- ],
- [
- -59.66555,
- 3.78126
- ],
- [
- -59.66842,
- 3.70277
- ],
- [
- -59.86728,
- 3.57776
- ],
- [
- -59.80205,
- 3.50156
- ],
- [
- -59.8408,
- 3.43174
- ],
- [
- -59.80488,
- 3.35695
- ],
- [
- -59.907,
- 3.212
- ],
- [
- -59.98944,
- 2.88185
- ],
- [
- -59.99,
- 2.686
- ],
- [
- -59.895,
- 2.482
- ],
- [
- -59.89872,
- 2.36245
- ],
- [
- -59.72315,
- 2.27614
- ],
- [
- -59.751,
- 1.859
- ],
- [
- -59.677,
- 1.839
- ],
- [
- -59.663,
- 1.871
- ],
- [
- -59.69,
- 1.757
- ],
- [
- -59.539,
- 1.723
- ],
- [
- -59.381,
- 1.507
- ],
- [
- -59.329,
- 1.514
- ],
- [
- -59.327,
- 1.464
- ],
- [
- -59.284,
- 1.45
- ],
- [
- -59.253,
- 1.389
- ],
- [
- -58.978,
- 1.302
- ],
- [
- -58.918,
- 1.317
- ],
- [
- -58.886,
- 1.261
- ],
- [
- -58.912,
- 1.239
- ],
- [
- -58.82512,
- 1.17127
- ],
- [
- -58.73956,
- 1.1999
- ],
- [
- -58.69456,
- 1.29732
- ],
- [
- -58.49622,
- 1.26796
- ],
- [
- -58.45787,
- 1.37145
- ],
- [
- -58.50511,
- 1.40317
- ],
- [
- -58.50873,
- 1.46295
- ],
- [
- -58.38559,
- 1.46999
- ],
- [
- -58.39472,
- 1.52651
- ],
- [
- -58.32237,
- 1.59702
- ],
- [
- -58.236,
- 1.54669
- ],
- [
- -58.16064,
- 1.56011
- ],
- [
- -58.12942,
- 1.4989
- ],
- [
- -58.00423,
- 1.50303
- ],
- [
- -57.99009,
- 1.65844
- ],
- [
- -57.85206,
- 1.66782
- ],
- [
- -57.77431,
- 1.72973
- ],
- [
- -57.70509,
- 1.73093
- ],
- [
- -57.65042,
- 1.68237
- ],
- [
- -57.5376,
- 1.7005
- ],
- [
- -57.50187,
- 1.78609
- ],
- [
- -57.43776,
- 1.82681
- ],
- [
- -57.43343,
- 1.90598
- ],
- [
- -57.36768,
- 1.92372
- ],
- [
- -57.36912,
- 1.95638
- ],
- [
- -57.30712,
- 1.99665
- ],
- [
- -57.22923,
- 1.93759
- ],
- [
- -57.08668,
- 2.02644
- ],
- [
- -57.01421,
- 1.91489
- ],
- [
- -56.91971,
- 1.93036
- ],
- [
- -56.79793,
- 1.85336
- ],
- [
- -56.72096,
- 1.92582
- ],
- [
- -56.62145,
- 1.94588
- ],
- [
- -56.57976,
- 1.90588
- ],
- [
- -56.45126,
- 1.95614
- ],
- [
- -56.24404,
- 1.87808
- ],
- [
- -56.1709,
- 1.90048
- ],
- [
- -56.11762,
- 1.85097
- ],
- [
- -55.95638,
- 1.84509
- ],
- [
- -55.90385,
- 1.88803
- ],
- [
- -55.93635,
- 1.98647
- ],
- [
- -55.9031,
- 2.04108
- ],
- [
- -56.00307,
- 2.1676
- ],
- [
- -56.05505,
- 2.18464
- ],
- [
- -56.04288,
- 2.22778
- ],
- [
- -56.13887,
- 2.26574
- ],
- [
- -56.09012,
- 2.37228
- ],
- [
- -56.02181,
- 2.34247
- ],
- [
- -55.97052,
- 2.52931
- ],
- [
- -55.76663,
- 2.45524
- ],
- [
- -55.71028,
- 2.39917
- ],
- [
- -55.49971,
- 2.44324
- ],
- [
- -55.38533,
- 2.41836
- ],
- [
- -55.32019,
- 2.51537
- ],
- [
- -55.23474,
- 2.50338
- ],
- [
- -55.1234,
- 2.56762
- ],
- [
- -55.10302,
- 2.52564
- ],
- [
- -54.95424,
- 2.58359
- ],
- [
- -54.86846,
- 2.43989
- ],
- [
- -54.68917,
- 2.45389
- ],
- [
- -54.68861,
- 2.32472
- ],
- [
- -54.54667,
- 2.31833
- ],
- [
- -54.53778,
- 2.26556
- ],
- [
- -54.46861,
- 2.21306
- ],
- [
- -54.24917,
- 2.14667
- ],
- [
- -54.18056,
- 2.1725
- ],
- [
- -54.11083,
- 2.11222
- ],
- [
- -54.06139,
- 2.19167
- ],
- [
- -53.94083,
- 2.21917
- ],
- [
- -53.93194,
- 2.27194
- ],
- [
- -53.88667,
- 2.26778
- ],
- [
- -53.745,
- 2.37389
- ],
- [
- -53.73389,
- 2.31222
- ],
- [
- -53.52972,
- 2.24917
- ],
- [
- -53.45861,
- 2.2575
- ],
- [
- -53.32833,
- 2.35333
- ],
- [
- -53.21667,
- 2.25333
- ],
- [
- -53.27899,
- 2.18603
- ],
- [
- -53.11861,
- 2.2225
- ],
- [
- -52.99472,
- 2.17528
- ],
- [
- -52.90972,
- 2.19583
- ],
- [
- -52.84722,
- 2.28556
- ],
- [
- -52.67528,
- 2.37389
- ],
- [
- -52.59444,
- 2.47389
- ],
- [
- -52.54028,
- 2.57028
- ],
- [
- -52.56417,
- 2.63944
- ],
- [
- -52.43944,
- 2.87778
- ],
- [
- -52.39583,
- 2.90222
- ],
- [
- -52.33187,
- 3.16938
- ],
- [
- -52.21472,
- 3.26833
- ],
- [
- -51.97104,
- 3.70696
- ],
- [
- -51.92148,
- 3.72422
- ],
- [
- -51.922,
- 3.7792
- ],
- [
- -51.79731,
- 3.88888
- ],
- [
- -51.77783,
- 3.97406
- ],
- [
- -51.65867,
- 4.05276
- ],
- [
- -51.61325,
- 4.17437
- ],
- [
- -51.63716,
- 4.50834
- ],
- [
- -51.49427,
- 4.67426
- ],
- [
- -51.11466,
- 4.42286
- ],
- [
- -50.94232,
- 4.20165
- ],
- [
- -50.85475,
- 3.92491
- ],
- [
- -50.85507,
- 3.45573
- ],
- [
- -50.75331,
- 2.94057
- ],
- [
- -50.29908,
- 2.33079
- ],
- [
- -49.73896,
- 1.79143
- ],
- [
- -48.23746,
- -0.07449
- ],
- [
- -44.84728,
- -1.07246
- ],
- [
- -43.54602,
- -2.04705
- ],
- [
- -43.24389,
- -2.12403
- ],
- [
- -42.78189,
- -2.33053
- ],
- [
- -41.78084,
- -2.51859
- ],
- [
- -41.5085,
- -2.68486
- ],
- [
- -40.66365,
- -2.63829
- ],
- [
- -40.50396,
- -2.57531
- ],
- [
- -39.8907,
- -2.65328
- ],
- [
- -39.15187,
- -3.04444
- ],
- [
- -38.57151,
- -3.48047
- ],
- [
- -38.34306,
- -3.54434
- ],
- [
- -38.21421,
- -3.74103
- ],
- [
- -38.12555,
- -3.80544
- ],
- [
- -37.90182,
- -4.07265
- ],
- [
- -37.77934,
- -4.18046
- ],
- [
- -37.63401,
- -4.24454
- ],
- [
- -37.51218,
- -4.41535
- ],
- [
- -37.22122,
- -4.51045
- ],
- [
- -37.07874,
- -4.71355
- ],
- [
- -36.91716,
- -4.71372
- ],
- [
- -36.62299,
- -4.85815
- ],
- [
- -36.18969,
- -4.88505
- ],
- [
- -35.93627,
- -4.83327
- ],
- [
- -35.56471,
- -4.90758
- ],
- [
- -35.33677,
- -4.99239
- ],
- [
- -35.17659,
- -5.12497
- ],
- [
- -34.79469,
- -6.33583
- ],
- [
- -34.71587,
- -6.74615
- ],
- [
- -34.62306,
- -6.90323
- ],
- [
- -34.59953,
- -7.11133
- ],
- [
- -34.64374,
- -7.98735
- ],
- [
- -34.81497,
- -8.62472
- ],
- [
- -35.0253,
- -9.13761
- ],
- [
- -35.55848,
- -9.81261
- ],
- [
- -35.69663,
- -9.90026
- ],
- [
- -35.96401,
- -10.31281
- ],
- [
- -36.06155,
- -10.37447
- ],
- [
- -36.26639,
- -10.64593
- ],
- [
- -36.61764,
- -10.81082
- ],
- [
- -36.78725,
- -10.95151
- ],
- [
- -36.99511,
- -11.29602
- ],
- [
- -37.11368,
- -11.41261
- ],
- [
- -37.46002,
- -12.10275
- ],
- [
- -37.89668,
- -12.75844
- ],
- [
- -38.22146,
- -13.09717
- ],
- [
- -38.61146,
- -13.26537
- ],
- [
- -38.85337,
- -14.65508
- ],
- [
- -38.74388,
- -15.60089
- ],
- [
- -38.66456,
- -15.74741
- ],
- [
- -38.64697,
- -15.88327
- ],
- [
- -38.8013,
- -16.24838
- ],
- [
- -38.92933,
- -16.80775
- ],
- [
- -38.53193,
- -17.80026
- ],
- [
- -38.49171,
- -18.0046
- ],
- [
- -38.53661,
- -18.09683
- ],
- [
- -38.67053,
- -18.16855
- ],
- [
- -39.35288,
- -18.10892
- ],
- [
- -39.4675,
- -18.30359
- ],
- [
- -39.54529,
- -18.78548
- ],
- [
- -39.49227,
- -19.40134
- ],
- [
- -39.63477,
- -19.74403
- ],
- [
- -39.86353,
- -19.88681
- ],
- [
- -40.17827,
- -20.75426
- ],
- [
- -40.81442,
- -21.67672
- ],
- [
- -40.76948,
- -21.87786
- ],
- [
- -40.81442,
- -22.09702
- ],
- [
- -41.5086,
- -22.52638
- ],
- [
- -41.59666,
- -22.83627
- ],
- [
- -41.79292,
- -23.08823
- ],
- [
- -41.91484,
- -23.18527
- ],
- [
- -43.19603,
- -23.26703
- ],
- [
- -44.07735,
- -23.40501
- ],
- [
- -45.13508,
- -24.12014
- ],
- [
- -46.61368,
- -24.67512
- ],
- [
- -47.85376,
- -25.47012
- ],
- [
- -48.2801,
- -26.23036
- ],
- [
- -48.34897,
- -26.75081
- ],
- [
- -48.11076,
- -27.28208
- ],
- [
- -48.21148,
- -27.85592
- ],
- [
- -48.40713,
- -28.43255
- ],
- [
- -48.68615,
- -28.76016
- ],
- [
- -48.9156,
- -28.86305
- ],
- [
- -49.1579,
- -29.02871
- ],
- [
- -49.52748,
- -29.42005
- ],
- [
- -49.82565,
- -29.86559
- ],
- [
- -50.17344,
- -30.64282
- ],
- [
- -50.60441,
- -31.24135
- ],
- [
- -51.18785,
- -31.77646
- ],
- [
- -51.74211,
- -32.10539
- ],
- [
- -51.89236,
- -32.29596
- ],
- [
- -52.06117,
- -32.38504
- ],
- [
- -52.27087,
- -32.92102
- ],
- [
- -52.45986,
- -33.25369
- ],
- [
- -52.61505,
- -33.42291
- ],
- [
- -53.18109,
- -33.86891
- ],
- [
- -53.43053,
- -33.73947
- ],
- [
- -53.43951,
- -33.69347
- ],
- [
- -53.53228,
- -33.6888
- ],
- [
- -53.51819,
- -33.15342
- ],
- [
- -53.44438,
- -33.05296
- ],
- [
- -53.24468,
- -32.93489
- ],
- [
- -53.31008,
- -32.91875
- ],
- [
- -53.29454,
- -32.89931
- ],
- [
- -53.18496,
- -32.85043
- ],
- [
- -53.14569,
- -32.79202
- ],
- [
- -53.0858,
- -32.78835
- ],
- [
- -53.07558,
- -32.74088
- ],
- [
- -53.24992,
- -32.6041
- ],
- [
- -53.39137,
- -32.58573
- ],
- [
- -53.46423,
- -32.48446
- ],
- [
- -53.58321,
- -32.45192
- ],
- [
- -53.74599,
- -32.07848
- ],
- [
- -53.83375,
- -32.05524
- ],
- [
- -53.84978,
- -32.00064
- ],
- [
- -53.96073,
- -31.95532
- ],
- [
- -53.96972,
- -31.91765
- ],
- [
- -54.10019,
- -31.92825
- ],
- [
- -54.4549,
- -31.65295
- ],
- [
- -54.4528,
- -31.59959
- ],
- [
- -54.58676,
- -31.45656
- ],
- [
- -54.8367,
- -31.442
- ],
- [
- -54.88623,
- -31.3773
- ],
- [
- -54.94087,
- -31.38068
- ],
- [
- -55.00723,
- -31.26692
- ],
- [
- -55.07446,
- -31.33216
- ],
- [
- -55.24003,
- -31.26062
- ],
- [
- -55.29118,
- -31.14226
- ],
- [
- -55.34037,
- -31.13144
- ],
- [
- -55.34981,
- -31.03922
- ],
- [
- -55.42306,
- -31.01823
- ],
- [
- -55.57742,
- -30.83309
- ],
- [
- -55.65834,
- -30.864
- ],
- [
- -55.66621,
- -30.95395
- ],
- [
- -55.723,
- -30.943
- ],
- [
- -55.727,
- -30.979
- ],
- [
- -55.882,
- -31.077
- ],
- [
- -56.00989,
- -31.08267
- ],
- [
- -56.02241,
- -30.78565
- ],
- [
- -56.12508,
- -30.73871
- ],
- [
- -56.17074,
- -30.61517
- ],
- [
- -56.26095,
- -30.58509
- ],
- [
- -56.29193,
- -30.51967
- ],
- [
- -56.38177,
- -30.49956
- ],
- [
- -56.46126,
- -30.38486
- ],
- [
- -56.54706,
- -30.35946
- ],
- [
- -56.54115,
- -30.31291
- ],
- [
- -56.6187,
- -30.30054
- ],
- [
- -56.64628,
- -30.20346
- ],
- [
- -56.77662,
- -30.1633
- ],
- [
- -56.80777,
- -30.10301
- ],
- [
- -57.07113,
- -30.08671
- ],
- [
- -57.22081,
- -30.28928
- ],
- [
- -57.31303,
- -30.25785
- ],
- [
- -57.39229,
- -30.30474
- ],
- [
- -57.46574,
- -30.26589
- ],
- [
- -57.52431,
- -30.28569
- ],
- [
- -57.56087,
- -30.21134
- ],
- [
- -57.64744,
- -30.19483
- ],
- [
- -57.48047,
- -30.12315
- ],
- [
- -57.33713,
- -29.99284
- ],
- [
- -57.294,
- -29.831
- ],
- [
- -57.121,
- -29.765
- ],
- [
- -56.89888,
- -29.53179
- ],
- [
- -56.81905,
- -29.48816
- ],
- [
- -56.76618,
- -29.37768
- ],
- [
- -56.70164,
- -29.35913
- ],
- [
- -56.59315,
- -29.12516
- ],
- [
- -56.418,
- -29.075
- ],
- [
- -56.40775,
- -28.9748
- ],
- [
- -56.29995,
- -28.89614
- ],
- [
- -56.29652,
- -28.8027
- ],
- [
- -56.17858,
- -28.75922
- ],
- [
- -56.00984,
- -28.60718
- ],
- [
- -56.01249,
- -28.50873
- ],
- [
- -55.88357,
- -28.47923
- ],
- [
- -55.87739,
- -28.36159
- ],
- [
- -55.75157,
- -28.37095
- ],
- [
- -55.69433,
- -28.42204
- ],
- [
- -55.67047,
- -28.33218
- ],
- [
- -55.77415,
- -28.27414
- ],
- [
- -55.7757,
- -28.24481
- ],
- [
- -55.63167,
- -28.17719
- ],
- [
- -55.60747,
- -28.11604
- ],
- [
- -55.55957,
- -28.16523
- ],
- [
- -55.4952,
- -28.07682
- ],
- [
- -55.44611,
- -28.09787
- ],
- [
- -55.368,
- -28.029
- ],
- [
- -55.38299,
- -27.97948
- ],
- [
- -55.343,
- -27.972
- ],
- [
- -55.32706,
- -27.92664
- ],
- [
- -55.26574,
- -27.92969
- ],
- [
- -55.196,
- -27.856
- ],
- [
- -55.133,
- -27.897
- ],
- [
- -55.106,
- -27.846
- ],
- [
- -55.035,
- -27.858
- ],
- [
- -55.081,
- -27.779
- ],
- [
- -54.936,
- -27.772
- ],
- [
- -54.90617,
- -27.63871
- ],
- [
- -54.85,
- -27.624
- ],
- [
- -54.814,
- -27.533
- ],
- [
- -54.775,
- -27.586
- ],
- [
- -54.67926,
- -27.57394
- ],
- [
- -54.67709,
- -27.508
- ],
- [
- -54.621,
- -27.541
- ],
- [
- -54.574,
- -27.453
- ],
- [
- -54.5246,
- -27.5059
- ],
- [
- -54.444,
- -27.472
- ],
- [
- -54.47081,
- -27.42674
- ],
- [
- -54.41,
- -27.405
- ],
- [
- -54.35466,
- -27.46528
- ],
- [
- -54.34067,
- -27.40311
- ],
- [
- -54.28484,
- -27.44819
- ],
- [
- -54.261,
- -27.397
- ],
- [
- -54.21736,
- -27.38603
- ],
- [
- -54.172,
- -27.254
- ],
- [
- -54.15619,
- -27.29619
- ],
- [
- -54.08872,
- -27.30149
- ],
- [
- -54.01026,
- -27.19978
- ],
- [
- -53.96219,
- -27.19698
- ],
- [
- -53.95195,
- -27.15169
- ],
- [
- -53.79879,
- -27.14629
- ],
- [
- -53.80233,
- -27.04028
- ],
- [
- -53.76087,
- -27.06543
- ],
- [
- -53.78585,
- -27.02674
- ],
- [
- -53.7473,
- -27.03218
- ],
- [
- -53.7092,
- -26.93414
- ],
- [
- -53.67125,
- -26.94222
- ],
- [
- -53.69684,
- -26.86015
- ],
- [
- -53.66059,
- -26.85814
- ],
- [
- -53.75814,
- -26.72045
- ],
- [
- -53.7205,
- -26.65099
- ],
- [
- -53.75864,
- -26.64113
- ],
- [
- -53.63739,
- -26.24968
- ],
- [
- -53.742,
- -26.108
- ],
- [
- -53.73409,
- -26.04333
- ],
- [
- -53.83619,
- -25.97166
- ],
- [
- -53.82214,
- -25.79377
- ],
- [
- -53.89113,
- -25.62286
- ],
- [
- -53.94895,
- -25.6117
- ],
- [
- -53.95638,
- -25.64628
- ],
- [
- -54.01,
- -25.567
- ],
- [
- -54.07592,
- -25.55766
- ],
- [
- -54.098,
- -25.619
- ],
- [
- -54.099,
- -25.495
- ],
- [
- -54.206,
- -25.541
- ],
- [
- -54.178,
- -25.584
- ],
- [
- -54.23,
- -25.562
- ],
- [
- -54.25,
- -25.597
- ],
- [
- -54.28,
- -25.556
- ],
- [
- -54.38395,
- -25.59747
- ],
- [
- -54.43288,
- -25.69756
- ],
- [
- -54.4927,
- -25.6181
- ],
- [
- -54.59354,
- -25.59275
- ],
- [
- -54.61941,
- -25.45312
- ],
- [
- -54.4295,
- -25.15915
- ],
- [
- -54.43548,
- -24.94769
- ],
- [
- -54.32437,
- -24.66059
- ],
- [
- -54.32714,
- -24.47073
- ],
- [
- -54.25877,
- -24.36377
- ],
- [
- -54.34537,
- -24.14705
- ],
- [
- -54.28223,
- -24.07336
- ],
- [
- -54.43984,
- -23.90446
- ],
- [
- -54.66978,
- -23.81262
- ],
- [
- -54.70533,
- -23.86452
- ],
- [
- -54.89,
- -23.898
- ],
- [
- -54.924,
- -23.959
- ],
- [
- -55.06223,
- -23.99335
- ],
- [
- -55.107,
- -23.961
- ],
- [
- -55.22907,
- -24.01383
- ],
- [
- -55.30415,
- -23.96504
- ],
- [
- -55.34542,
- -23.99458
- ],
- [
- -55.41423,
- -23.9645
- ],
- [
- -55.44167,
- -23.70084
- ],
- [
- -55.47306,
- -23.64834
- ],
- [
- -55.53989,
- -23.625
- ],
- [
- -55.52356,
- -23.19733
- ],
- [
- -55.54199,
- -23.1561
- ],
- [
- -55.59635,
- -23.14993
- ],
- [
- -55.66578,
- -22.85274
- ],
- [
- -55.61432,
- -22.65521
- ],
- [
- -55.72364,
- -22.55166
- ],
- [
- -55.74302,
- -22.39266
- ],
- [
- -55.78939,
- -22.3846
- ],
- [
- -55.84304,
- -22.28725
- ],
- [
- -56.20983,
- -22.27805
- ],
- [
- -56.36485,
- -22.16949
- ],
- [
- -56.39404,
- -22.07434
- ],
- [
- -56.50711,
- -22.09561
- ],
- [
- -56.63705,
- -22.26341
- ],
- [
- -56.70344,
- -22.21693
- ],
- [
- -56.72026,
- -22.26479
- ],
- [
- -56.79344,
- -22.24238
- ],
- [
- -56.84285,
- -22.30155
- ],
- [
- -56.88343,
- -22.24755
- ],
- [
- -56.9967,
- -22.22246
- ],
- [
- -57.3744,
- -22.23204
- ],
- [
- -57.5804,
- -22.17534
- ],
- [
- -57.6106,
- -22.09462
- ],
- [
- -57.70751,
- -22.09111
- ],
- [
- -57.80183,
- -22.15072
- ],
- [
- -57.99384,
- -22.09023
- ],
- [
- -58.00946,
- -22.04038
- ],
- [
- -57.91281,
- -21.88266
- ],
- [
- -57.96603,
- -21.85045
- ],
- [
- -57.90866,
- -21.77355
- ],
- [
- -57.94714,
- -21.74413
- ],
- [
- -57.88329,
- -21.68903
- ],
- [
- -57.93436,
- -21.65037
- ],
- [
- -57.91387,
- -21.59021
- ],
- [
- -57.96795,
- -21.52432
- ],
- [
- -57.8535,
- -21.33109
- ],
- [
- -57.92019,
- -21.27655
- ],
- [
- -57.85066,
- -21.22407
- ],
- [
- -57.86834,
- -21.04417
- ],
- [
- -57.81919,
- -20.94066
- ],
- [
- -57.92836,
- -20.90036
- ],
- [
- -57.8552,
- -20.83403
- ],
- [
- -57.89863,
- -20.78872
- ],
- [
- -57.96183,
- -20.7916
- ],
- [
- -57.93478,
- -20.74565
- ],
- [
- -57.86732,
- -20.73265
- ],
- [
- -57.92414,
- -20.66392
- ],
- [
- -57.98848,
- -20.69879
- ],
- [
- -57.99847,
- -20.43551
- ],
- [
- -58.09339,
- -20.35554
- ],
- [
- -58.09596,
- -20.25445
- ],
- [
- -58.16216,
- -20.25953
- ],
- [
- -58.12152,
- -20.19246
- ],
- [
- -58.16932,
- -20.1694
- ],
- [
- -57.95347,
- -20.02094
- ],
- [
- -57.90248,
- -20.04207
- ],
- [
- -57.85796,
- -19.9703
- ],
- [
- -58.131,
- -19.758
- ],
- [
- -57.784,
- -19.033
- ],
- [
- -57.694,
- -19.011
- ],
- [
- -57.719,
- -18.899
- ],
- [
- -57.766,
- -18.899
- ],
- [
- -57.557,
- -18.24
- ],
- [
- -57.453,
- -18.231
- ],
- [
- -57.574,
- -18.131
- ],
- [
- -57.72302,
- -17.83074
- ],
- [
- -57.68472,
- -17.8306
- ],
- [
- -57.70991,
- -17.72702
- ],
- [
- -57.783,
- -17.639
- ],
- [
- -57.73696,
- -17.5583
- ],
- [
- -57.883,
- -17.449
- ],
- [
- -57.996,
- -17.515
- ],
- [
- -58.06,
- -17.45
- ],
- [
- -58.116,
- -17.451
- ],
- [
- -58.151,
- -17.384
- ],
- [
- -58.263,
- -17.344
- ],
- [
- -58.396,
- -17.181
- ],
- [
- -58.423,
- -16.989
- ],
- [
- -58.474,
- -16.935
- ],
- [
- -58.47,
- -16.703
- ],
- [
- -58.436,
- -16.592
- ],
- [
- -58.333,
- -16.49
- ],
- [
- -58.32227,
- -16.26559
- ],
- [
- -58.388,
- -16.261
- ],
- [
- -58.43059,
- -16.32264
- ],
- [
- -60.17335,
- -16.26672
- ],
- [
- -60.238,
- -15.473
- ],
- [
- -60.57543,
- -15.09677
- ],
- [
- -60.244,
- -15.096
- ],
- [
- -60.272,
- -14.62
- ],
- [
- -60.321,
- -14.608
- ],
- [
- -60.492,
- -14.188
- ],
- [
- -60.479,
- -14.097
- ],
- [
- -60.38066,
- -13.9888
- ],
- [
- -60.45062,
- -13.9364
- ],
- [
- -60.45599,
- -13.85422
- ],
- [
- -60.49068,
- -13.85782
- ],
- [
- -60.46776,
- -13.79446
- ],
- [
- -60.76755,
- -13.68329
- ],
- [
- -60.87678,
- -13.62149
- ],
- [
- -60.91857,
- -13.54334
- ],
- [
- -61.0056,
- -13.552
- ],
- [
- -61.0129,
- -13.48925
- ],
- [
- -61.0938,
- -13.49081
- ],
- [
- -61.10314,
- -13.53056
- ],
- [
- -61.18155,
- -13.50557
- ],
- [
- -61.19236,
- -13.53695
- ],
- [
- -61.29954,
- -13.47718
- ],
- [
- -61.46527,
- -13.55427
- ],
- [
- -61.57927,
- -13.48711
- ],
- [
- -61.852,
- -13.538
- ],
- [
- -61.892,
- -13.431
- ],
- [
- -61.96968,
- -13.40759
- ],
- [
- -61.97592,
- -13.36695
- ],
- [
- -62.11498,
- -13.25932
- ],
- [
- -62.115,
- -13.163
- ],
- [
- -62.15254,
- -13.15993
- ],
- [
- -62.16703,
- -13.11346
- ],
- [
- -62.19,
- -13.153
- ],
- [
- -62.214,
- -13.111
- ],
- [
- -62.27269,
- -13.15687
- ],
- [
- -62.39178,
- -13.13471
- ],
- [
- -62.453,
- -13.064
- ],
- [
- -62.612,
- -13.041
- ],
- [
- -62.65,
- -12.965
- ],
- [
- -62.729,
- -13.02
- ],
- [
- -62.779,
- -13.009
- ],
- [
- -62.89672,
- -12.8539
- ],
- [
- -63.01134,
- -12.83602
- ],
- [
- -63.08186,
- -12.72323
- ],
- [
- -63.06163,
- -12.68584
- ],
- [
- -63.15726,
- -12.6138
- ],
- [
- -63.24621,
- -12.66222
- ],
- [
- -63.23713,
- -12.69043
- ],
- [
- -63.30125,
- -12.68138
- ],
- [
- -63.44052,
- -12.608
- ],
- [
- -63.43627,
- -12.56526
- ],
- [
- -63.50641,
- -12.56562
- ],
- [
- -63.55295,
- -12.50598
- ],
- [
- -63.7848,
- -12.42871
- ],
- [
- -63.88957,
- -12.44745
- ],
- [
- -63.89949,
- -12.50204
- ],
- [
- -63.95144,
- -12.53179
- ],
- [
- -64.13464,
- -12.47732
- ],
- [
- -64.16781,
- -12.51503
- ],
- [
- -64.17504,
- -12.46675
- ],
- [
- -64.22945,
- -12.45419
- ],
- [
- -64.29018,
- -12.50313
- ],
- [
- -64.29452,
- -12.4582
- ],
- [
- -64.41057,
- -12.44436
- ],
- [
- -64.51217,
- -12.3551
- ],
- [
- -64.51256,
- -12.22562
- ],
- [
- -64.70406,
- -12.1827
- ],
- [
- -64.70719,
- -12.08684
- ],
- [
- -64.75486,
- -12.15762
- ],
- [
- -64.7688,
- -12.09356
- ],
- [
- -64.83747,
- -12.11786
- ],
- [
- -64.80954,
- -12.05633
- ],
- [
- -64.84077,
- -12.01027
- ],
- [
- -65.03548,
- -11.99408
- ],
- [
- -65.01398,
- -11.90303
- ],
- [
- -65.0727,
- -11.86587
- ],
- [
- -65.08672,
- -11.7082
- ],
- [
- -65.18953,
- -11.72353
- ],
- [
- -65.18216,
- -11.75609
- ],
- [
- -65.2593,
- -11.71053
- ],
- [
- -65.21178,
- -11.52857
- ],
- [
- -65.3074,
- -11.49957
- ],
- [
- -65.33276,
- -11.33986
- ],
- [
- -65.29053,
- -11.32275
- ],
- [
- -65.34347,
- -11.3082
- ],
- [
- -65.35834,
- -11.26834
- ],
- [
- -65.35938,
- -11.22067
- ],
- [
- -65.31294,
- -11.19578
- ],
- [
- -65.35387,
- -11.18419
- ],
- [
- -65.36177,
- -11.14031
- ],
- [
- -65.28269,
- -11.09009
- ],
- [
- -65.30071,
- -11.03142
- ],
- [
- -65.25053,
- -10.98506
- ],
- [
- -65.27476,
- -10.87302
- ],
- [
- -65.35376,
- -10.78881
- ],
- [
- -65.34667,
- -10.68155
- ],
- [
- -65.40569,
- -10.63935
- ],
- [
- -65.43011,
- -10.48505
- ],
- [
- -65.288,
- -10.219
- ],
- [
- -65.333,
- -9.965
- ],
- [
- -65.28588,
- -9.84413
- ],
- [
- -65.39313,
- -9.68683
- ],
- [
- -65.44394,
- -9.66957
- ],
- [
- -65.4883,
- -9.71015
- ],
- [
- -65.55611,
- -9.84498
- ],
- [
- -65.627,
- -9.83804
- ],
- [
- -65.66963,
- -9.78129
- ],
- [
- -65.71023,
- -9.80857
- ],
- [
- -65.68395,
- -9.74992
- ],
- [
- -65.7432,
- -9.78296
- ],
- [
- -65.77013,
- -9.73442
- ],
- [
- -65.79437,
- -9.79295
- ],
- [
- -65.79962,
- -9.75663
- ],
- [
- -65.86532,
- -9.79533
- ],
- [
- -65.87184,
- -9.75307
- ],
- [
- -65.91976,
- -9.75314
- ],
- [
- -65.98222,
- -9.81011
- ],
- [
- -66.151,
- -9.785
- ],
- [
- -66.426,
- -9.899
- ],
- [
- -66.435,
- -9.866
- ],
- [
- -66.61995,
- -9.89353
- ],
- [
- -66.63701,
- -9.94983
- ],
- [
- -66.8751,
- -10.08268
- ],
- [
- -66.9528,
- -10.18886
- ],
- [
- -66.99683,
- -10.20017
- ],
- [
- -67.01537,
- -10.25919
- ],
- [
- -67.17745,
- -10.33923
- ],
- [
- -67.31545,
- -10.31932
- ],
- [
- -67.31155,
- -10.37716
- ],
- [
- -67.40717,
- -10.37386
- ],
- [
- -67.44361,
- -10.45492
- ],
- [
- -67.57925,
- -10.5028
- ],
- [
- -67.64028,
- -10.59807
- ],
- [
- -67.67631,
- -10.60484
- ],
- [
- -67.70825,
- -10.71083
- ],
- [
- -67.86386,
- -10.64067
- ],
- [
- -68.03289,
- -10.65486
- ],
- [
- -68.10456,
- -10.71426
- ],
- [
- -68.10333,
- -10.77541
- ],
- [
- -68.27819,
- -10.98926
- ],
- [
- -68.71576,
- -11.14483
- ],
- [
- -68.75767,
- -11.00079
- ],
- [
- -68.9118,
- -11.02192
- ],
- [
- -69.41453,
- -10.92575
- ],
- [
- -69.73653,
- -10.97445
- ],
- [
- -69.76903,
- -10.92972
- ],
- [
- -69.93442,
- -10.9219
- ],
- [
- -70.15869,
- -11.04096
- ],
- [
- -70.30672,
- -11.06983
- ],
- [
- -70.43675,
- -11.03923
- ],
- [
- -70.53033,
- -10.93465
- ],
- [
- -70.62103,
- -10.99982
- ],
- [
- -70.62338,
- -9.82054
- ],
- [
- -70.53663,
- -9.76584
- ],
- [
- -70.59972,
- -9.56264
- ],
- [
- -70.55282,
- -9.57093
- ],
- [
- -70.56894,
- -9.53127
- ],
- [
- -70.50506,
- -9.50557
- ],
- [
- -70.49665,
- -9.42489
- ],
- [
- -70.59581,
- -9.4425
- ],
- [
- -70.6632,
- -9.52601
- ],
- [
- -70.75067,
- -9.56043
- ],
- [
- -70.79332,
- -9.63846
- ],
- [
- -70.96337,
- -9.74891
- ],
- [
- -70.99391,
- -9.81721
- ],
- [
- -71.13974,
- -9.85702
- ],
- [
- -71.22052,
- -9.96968
- ],
- [
- -72.1804,
- -9.99967
- ],
- [
- -72.15136,
- -9.79742
- ],
- [
- -72.26296,
- -9.75085
- ],
- [
- -72.25282,
- -9.61633
- ],
- [
- -72.28821,
- -9.60316
- ],
- [
- -72.2829,
- -9.53995
- ],
- [
- -72.35688,
- -9.4946
- ],
- [
- -72.51954,
- -9.49128
- ],
- [
- -72.71676,
- -9.4122
- ],
- [
- -73.2038,
- -9.40715
- ],
- [
- -73.07352,
- -9.23461
- ],
- [
- -73.0093,
- -9.22236
- ],
- [
- -73.02612,
- -9.17786
- ],
- [
- -72.9582,
- -9.14302
- ],
- [
- -72.94091,
- -8.98494
- ],
- [
- -72.99931,
- -8.91778
- ],
- [
- -73.05901,
- -8.90561
- ],
- [
- -73.14992,
- -8.6839
- ],
- [
- -73.20907,
- -8.6857
- ],
- [
- -73.28745,
- -8.61948
- ],
- [
- -73.3055,
- -8.47197
- ],
- [
- -73.38956,
- -8.46878
- ],
- [
- -73.41286,
- -8.41099
- ],
- [
- -73.53744,
- -8.34587
- ],
- [
- -73.62739,
- -8.02187
- ],
- [
- -73.73175,
- -7.9684
- ],
- [
- -73.7725,
- -7.90237
- ],
- [
- -73.76164,
- -7.85803
- ],
- [
- -73.69706,
- -7.86527
- ],
- [
- -73.6843,
- -7.77644
- ],
- [
- -73.82217,
- -7.71788
- ],
- [
- -73.99094,
- -7.53635
- ],
- [
- -73.948,
- -7.52661
- ],
- [
- -73.91981,
- -7.46568
- ],
- [
- -73.96394,
- -7.34764
- ],
- [
- -73.87014,
- -7.37882
- ],
- [
- -73.7003,
- -7.30429
- ],
- [
- -73.79842,
- -7.11306
- ],
- [
- -73.71046,
- -6.84019
- ],
- [
- -73.53639,
- -6.6834
- ],
- [
- -73.39115,
- -6.64193
- ],
- [
- -73.35281,
- -6.59327
- ],
- [
- -73.22741,
- -6.58884
- ],
- [
- -73.18797,
- -6.52302
- ],
- [
- -73.13523,
- -6.51046
- ],
- [
- -73.10473,
- -6.40666
- ],
- [
- -73.24664,
- -6.14963
- ],
- [
- -73.23821,
- -6.04399
- ],
- [
- -73.1868,
- -6.00512
- ],
- [
- -73.15207,
- -5.86796
- ],
- [
- -73.05303,
- -5.79517
- ],
- [
- -72.95912,
- -5.65689
- ],
- [
- -72.95888,
- -5.46613
- ],
- [
- -72.86052,
- -5.27117
- ],
- [
- -72.88725,
- -5.16307
- ],
- [
- -72.73986,
- -5.08859
- ],
- [
- -72.72765,
- -5.05199
- ],
- [
- -72.6212,
- -5.0518
- ],
- [
- -72.598,
- -4.98386
- ],
- [
- -72.38202,
- -4.87296
- ],
- [
- -72.36895,
- -4.80387
- ],
- [
- -72.12601,
- -4.73454
- ],
- [
- -72.04335,
- -4.62384
- ],
- [
- -72.00689,
- -4.64622
- ],
- [
- -71.99464,
- -4.60996
- ],
- [
- -71.94743,
- -4.60877
- ],
- [
- -71.91909,
- -4.5298
- ],
- [
- -71.88549,
- -4.53803
- ],
- [
- -71.9073,
- -4.51644
- ],
- [
- -71.76637,
- -4.50446
- ],
- [
- -71.75109,
- -4.46887
- ],
- [
- -71.70817,
- -4.51165
- ],
- [
- -71.65479,
- -4.47246
- ],
- [
- -71.65032,
- -4.50395
- ],
- [
- -71.61548,
- -4.4687
- ],
- [
- -71.6335,
- -4.51524
- ],
- [
- -71.59625,
- -4.52928
- ],
- [
- -71.53703,
- -4.46442
- ],
- [
- -71.49428,
- -4.48701
- ],
- [
- -71.50716,
- -4.43909
- ],
- [
- -71.43438,
- -4.42882
- ],
- [
- -71.42562,
- -4.47058
- ],
- [
- -71.35026,
- -4.42728
- ],
- [
- -71.30752,
- -4.46288
- ],
- [
- -71.32091,
- -4.42009
- ],
- [
- -71.27782,
- -4.44217
- ],
- [
- -71.26975,
- -4.385
- ],
- [
- -71.20263,
- -4.37987
- ],
- [
- -71.19422,
- -4.42471
- ],
- [
- -71.14478,
- -4.38158
- ],
- [
- -71.11491,
- -4.41119
- ],
- [
- -71.10616,
- -4.37764
- ],
- [
- -70.99389,
- -4.38654
- ],
- [
- -70.99595,
- -4.34632
- ],
- [
- -70.9357,
- -4.38432
- ],
- [
- -70.84483,
- -4.27905
- ],
- [
- -70.86447,
- -4.25245
- ],
- [
- -70.81677,
- -4.23005
- ],
- [
- -70.8458,
- -4.21872
- ],
- [
- -70.75901,
- -4.15944
- ],
- [
- -70.68147,
- -4.20791
- ],
- [
- -70.64256,
- -4.12805
- ],
- [
- -70.62521,
- -4.19151
- ],
- [
- -70.56118,
- -4.1775
- ],
- [
- -70.57357,
- -4.21169
- ],
- [
- -70.54796,
- -4.13671
- ],
- [
- -70.51036,
- -4.14824
- ],
- [
- -70.50417,
- -4.20098
- ],
- [
- -70.48535,
- -4.16132
- ],
- [
- -70.43435,
- -4.16266
- ],
- [
- -70.43146,
- -4.13217
- ],
- [
- -70.33892,
- -4.17997
- ],
- [
- -70.32281,
- -4.14206
- ],
- [
- -70.28769,
- -4.16555
- ],
- [
- -70.29141,
- -4.28709
- ],
- [
- -70.21457,
- -4.29749
- ],
- [
- -70.19194,
- -4.36179
- ],
- [
- -70.15508,
- -4.27308
- ],
- [
- -70.11749,
- -4.28585
- ],
- [
- -70.10881,
- -4.25454
- ],
- [
- -70.04189,
- -4.29409
- ],
- [
- -70.07948,
- -4.31428
- ],
- [
- -70.02826,
- -4.3703
- ],
- [
- -69.99182,
- -4.37482
- ],
- [
- -69.94793,
- -4.23168
- ]
- ],
- [
- [
- -34.00035,
- -3.76654
- ],
- [
- -34.01797,
- -3.84985
- ],
- [
- -34.00664,
- -3.91809
- ],
- [
- -33.98608,
- -3.95952
- ],
- [
- -33.95923,
- -3.99217
- ],
- [
- -33.8921,
- -4.03653
- ],
- [
- -33.81658,
- -4.05077
- ],
- [
- -33.72931,
- -4.03151
- ],
- [
- -33.66638,
- -3.9838
- ],
- [
- -33.62736,
- -3.9185
- ],
- [
- -33.61519,
- -3.84985
- ],
- [
- -33.63239,
- -3.76864
- ],
- [
- -33.68693,
- -3.69537
- ],
- [
- -33.74987,
- -3.65978
- ],
- [
- -33.81658,
- -3.6489
- ],
- [
- -33.89336,
- -3.66397
- ],
- [
- -33.96007,
- -3.70877
- ],
- [
- -34.00035,
- -3.76654
- ]
- ],
- [
- [
- -32.5538,
- -4.00884
- ],
- [
- -32.59937,
- -3.9531
- ],
- [
- -32.64061,
- -3.87309
- ],
- [
- -32.61755,
- -3.73712
- ],
- [
- -32.58338,
- -3.70527
- ],
- [
- -32.54228,
- -3.65606
- ],
- [
- -32.4592,
- -3.63029
- ],
- [
- -32.35174,
- -3.63887
- ],
- [
- -32.30049,
- -3.67684
- ],
- [
- -32.24749,
- -3.75266
- ],
- [
- -32.23155,
- -3.81889
- ],
- [
- -32.2357,
- -3.90247
- ],
- [
- -32.30194,
- -3.9883
- ],
- [
- -32.42898,
- -4.0384
- ],
- [
- -32.5538,
- -4.00884
- ]
- ],
- [
- [
- -29.50321,
- 0.79391
- ],
- [
- -29.54097,
- 0.8689
- ],
- [
- -29.54727,
- 0.92553
- ],
- [
- -29.52367,
- 0.99422
- ],
- [
- -29.48958,
- 1.06134
- ],
- [
- -29.43136,
- 1.10224
- ],
- [
- -29.35899,
- 1.1206
- ],
- [
- -29.29238,
- 1.11378
- ],
- [
- -29.22158,
- 1.0776
- ],
- [
- -29.16285,
- 1.00314
- ],
- [
- -29.14501,
- 0.92605
- ],
- [
- -29.14764,
- 0.88358
- ],
- [
- -29.17176,
- 0.8196
- ],
- [
- -29.24885,
- 0.74357
- ],
- [
- -29.29448,
- 0.72521
- ],
- [
- -29.36371,
- 0.71892
- ],
- [
- -29.43556,
- 0.73937
- ],
- [
- -29.50321,
- 0.79391
- ]
- ],
- [
- [
- -29.09537,
- -20.42649
- ],
- [
- -29.19756,
- -20.33509
- ],
- [
- -29.3343,
- -20.28932
- ],
- [
- -29.46741,
- -20.3288
- ],
- [
- -29.54604,
- -20.42958
- ],
- [
- -29.55396,
- -20.52706
- ],
- [
- -29.51696,
- -20.62613
- ],
- [
- -29.40995,
- -20.68955
- ],
- [
- -29.27599,
- -20.72578
- ],
- [
- -29.15968,
- -20.66209
- ],
- [
- -29.07188,
- -20.57088
- ],
- [
- -28.9712,
- -20.64769
- ],
- [
- -28.83286,
- -20.69814
- ],
- [
- -28.67968,
- -20.62099
- ],
- [
- -28.63549,
- -20.49284
- ],
- [
- -28.63412,
- -20.47146
- ],
- [
- -28.7431,
- -20.30094
- ],
- [
- -28.8683,
- -20.27288
- ],
- [
- -29.0031,
- -20.32416
- ],
- [
- -29.09537,
- -20.42649
- ]
- ]
- ],
- "terms_text": "IBGE",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAOsSURBVHja7JXbb1RVFIe/fTmn05lepp0OpTcuUgQEElGgGGJSNYhggpdoTEz8m3w1xsQHE00MJj5oDGKCRI2IqKEKlpZCaSmXXubWmc6Zc/bFhwGp3N540LiTX7KTvbLWyvp+WVt473mUR/KIz7+/gJ64uNisJAW1lcbGUz9f+MQ6l5dCGID7EWpEMYcO7GB6tsifE9cItGo+CEEYaLyXl/p620+O7Nn2rp67sQCAUpLFpeXRYsWOKCUBcZ/UgqgRs2tnP5l0K2Pnx/GEJLYZ7RHU6hYwjy+V5l+KomStbElpmlKUl6NXpRQ0xV0SJCZhaKCdwwd2cHmmQJI4lAQpQAiQwqOkQEmJVprr89UjOt+TQylJobA8Wig0Xpby/liiKGawv503jjyFFJJiuY6Q4sFwpcAYl9JJnECguDq39EpinAoCif97QALnHEli2Lq5hxdHt5JpDZoJBDj3YLjOQyqUVb1UKCGlYH6xuk+pW7A8GOexJiHdqtn39AbW9nbw2Re/sbLS4Jk9mxgayHL23HUS41FyNaWmMax1ZPPtZ8Xv49eZXygdPnXmypcCiRAQhpqOtpB1g53sH9lMpVLno09P47xCSIjjhNcO7ySKYn4du4oxDucFUkqkFAgB1lp271p/SOdzbUT12tvbhntIZwLyXW309+XIdWcIAg3A+OQNEguplmarRinmbpQ5+NwT7N61EZMYKrWYUjmiUlmhutKgNaXG1g92H9dz1wrpqculkSg21OqOhcWIPy40reu9ZdvmXrq6Mgg8znkQAmsM+e4MADOzi/wyNsNSsU6tmhAbSxwbtgznfspkWqwulupHLs0UhtVd7nG3WMxcneSFZx/j4PNbOPHdRZx17N+7jlx3mo+PnmZ2roTzAqUkUkqEkKRSOh7s73nfuwB9c6H4phASpf5ZQN2++ICp6SLvvLWXTRvW4L1nemaRz786R62WEIYaLe7Y1VhHbz79Q0tKnqnWq8hCKXpSqYf5GeoNgzGObGeaiambHDsxQSN2tLQEiFXJPeC9p7M99bWUEikkMtSi5B/mZ+fpzraiteLHM1N8c3ISrTVKins3lfekU6rSu6btaBwnWGuQA33ZD7x3WNuE6P1tNbsx1tK/toMrs0uc+H6KIAyA1XF3lCSWgb7ssaGB/MVcVwc93Z3o7duH3yuWl7Pl5fh1JYKs815a571A4Lynoz0k35Ph+LfnybSG97BavQnDQIZdXZkPy8sNrG2ORfz/Zf73C/w1AJZ/tYbRRy7/AAAAAElFTkSuQmCC"
- },
- {
- "id": "IBGE_Setores_Urbanos",
- "name": "IBGE Mapa de Setores Urbanos",
- "type": "tms",
- "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/tmpsantos.hgda0m6h/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJncjlmd0t3In0.DmZsIeOW-3x-C5eX-wAqTw",
- "scaleExtent": [
- 0,
- 19
- ],
- "polygon": [
- [
- [
- -69.94793,
- -4.23168
- ],
- [
- -69.45659,
- -1.49119
- ],
- [
- -69.3973,
- -1.36508
- ],
- [
- -69.42989,
- -1.22173
- ],
- [
- -69.39523,
- -1.12555
- ],
- [
- -69.44292,
- -1.03351
- ],
- [
- -69.41861,
- -0.99827
- ],
- [
- -69.528,
- -0.92514
- ],
- [
- -69.52577,
- -0.86807
- ],
- [
- -69.62491,
- -0.74667
- ],
- [
- -69.56179,
- -0.63692
- ],
- [
- -69.60783,
- -0.5008
- ],
- [
- -69.8446,
- -0.33732
- ],
- [
- -69.92054,
- -0.32573
- ],
- [
- -70.04323,
- -0.18998
- ],
- [
- -70.04302,
- 0.56359
- ],
- [
- -69.80272,
- 0.57162
- ],
- [
- -69.6711,
- 0.66759
- ],
- [
- -69.60529,
- 0.61328
- ],
- [
- -69.59701,
- 0.6542
- ],
- [
- -69.48002,
- 0.73577
- ],
- [
- -69.35277,
- 0.61416
- ],
- [
- -69.28914,
- 0.64997
- ],
- [
- -69.29484,
- 0.60389
- ],
- [
- -69.19975,
- 0.60591
- ],
- [
- -69.19425,
- 0.64982
- ],
- [
- -69.11563,
- 0.64484
- ],
- [
- -69.19001,
- 0.74056
- ],
- [
- -69.14881,
- 0.76751
- ],
- [
- -69.13576,
- 0.87204
- ],
- [
- -69.18846,
- 0.91324
- ],
- [
- -69.1646,
- 0.94156
- ],
- [
- -69.21679,
- 0.97245
- ],
- [
- -69.19773,
- 0.99974
- ],
- [
- -69.24494,
- 1.05655
- ],
- [
- -69.37641,
- 1.08794
- ],
- [
- -69.42312,
- 1.04265
- ],
- [
- -69.60989,
- 1.09826
- ],
- [
- -69.67718,
- 1.06994
- ],
- [
- -69.70963,
- 1.11817
- ],
- [
- -69.84266,
- 1.07272
- ],
- [
- -69.83972,
- 1.71893
- ],
- [
- -69.78236,
- 1.69244
- ],
- [
- -69.53464,
- 1.77691
- ],
- [
- -69.39109,
- 1.72935
- ],
- [
- -68.1645,
- 1.72945
- ],
- [
- -68.19207,
- 1.7797
- ],
- [
- -68.23954,
- 1.77044
- ],
- [
- -68.22688,
- 1.82918
- ],
- [
- -68.28555,
- 1.83084
- ],
- [
- -68.19583,
- 2.03479
- ],
- [
- -68.18033,
- 1.9767
- ],
- [
- -68.14417,
- 1.97854
- ],
- [
- -68.09043,
- 1.89774
- ],
- [
- -67.90162,
- 1.81165
- ],
- [
- -67.76942,
- 2.00924
- ],
- [
- -67.55095,
- 2.04769
- ],
- [
- -67.49519,
- 2.16312
- ],
- [
- -67.39404,
- 2.22894
- ],
- [
- -67.32672,
- 2.06387
- ],
- [
- -67.33083,
- 1.94158
- ],
- [
- -67.22831,
- 1.84127
- ],
- [
- -67.15384,
- 1.8315
- ],
- [
- -67.15922,
- 1.67504
- ],
- [
- -67.08017,
- 1.38546
- ],
- [
- -67.13923,
- 1.32002
- ],
- [
- -67.08675,
- 1.16704
- ],
- [
- -66.85119,
- 1.22896
- ],
- [
- -66.31032,
- 0.74494
- ],
- [
- -66.19737,
- 0.78161
- ],
- [
- -66.07783,
- 0.76174
- ],
- [
- -66.07024,
- 0.8123
- ],
- [
- -65.96712,
- 0.81511
- ],
- [
- -65.88369,
- 0.94159
- ],
- [
- -65.77261,
- 0.95859
- ],
- [
- -65.7421,
- 1.00125
- ],
- [
- -65.58894,
- 1.00471
- ],
- [
- -65.49624,
- 0.87415
- ],
- [
- -65.60623,
- 0.70748
- ],
- [
- -65.54116,
- 0.64881
- ],
- [
- -65.44499,
- 0.68921
- ],
- [
- -65.39213,
- 0.75692
- ],
- [
- -65.41198,
- 0.82415
- ],
- [
- -65.32734,
- 0.93596
- ],
- [
- -65.21302,
- 0.90282
- ],
- [
- -65.1749,
- 0.94131
- ],
- [
- -65.15831,
- 1.1246
- ],
- [
- -65.07232,
- 1.15303
- ],
- [
- -65.06317,
- 1.11205
- ],
- [
- -65.01361,
- 1.10905
- ],
- [
- -64.97445,
- 1.20288
- ],
- [
- -64.90439,
- 1.25153
- ],
- [
- -64.86966,
- 1.22713
- ],
- [
- -64.80053,
- 1.31527
- ],
- [
- -64.74446,
- 1.22569
- ],
- [
- -64.5789,
- 1.34041
- ],
- [
- -64.52608,
- 1.44322
- ],
- [
- -64.43586,
- 1.47006
- ],
- [
- -64.3939,
- 1.52901
- ],
- [
- -64.35111,
- 1.52921
- ],
- [
- -64.34777,
- 1.49508
- ],
- [
- -64.41019,
- 1.40301
- ],
- [
- -64.33791,
- 1.36134
- ],
- [
- -64.3136,
- 1.45617
- ],
- [
- -64.19707,
- 1.52071
- ],
- [
- -64.0735,
- 1.64902
- ],
- [
- -64.05781,
- 1.92899
- ],
- [
- -63.97219,
- 1.99194
- ],
- [
- -63.83555,
- 1.96644
- ],
- [
- -63.71155,
- 2.04645
- ],
- [
- -63.66501,
- 2.01861
- ],
- [
- -63.6268,
- 2.11222
- ],
- [
- -63.56474,
- 2.13571
- ],
- [
- -63.44059,
- 2.126
- ],
- [
- -63.36742,
- 2.26864
- ],
- [
- -63.37088,
- 2.41121
- ],
- [
- -63.42123,
- 2.45102
- ],
- [
- -63.46036,
- 2.39684
- ],
- [
- -63.56398,
- 2.44573
- ],
- [
- -63.76805,
- 2.43994
- ],
- [
- -63.84358,
- 2.4916
- ],
- [
- -64.01914,
- 2.46135
- ],
- [
- -64.0573,
- 2.49752
- ],
- [
- -63.98033,
- 2.7237
- ],
- [
- -64.07709,
- 2.87262
- ],
- [
- -64.07156,
- 2.92142
- ],
- [
- -64.12349,
- 2.99048
- ],
- [
- -64.15754,
- 2.98243
- ],
- [
- -64.14592,
- 3.03459
- ],
- [
- -64.22642,
- 3.12356
- ],
- [
- -64.19795,
- 3.20121
- ],
- [
- -64.2444,
- 3.43036
- ],
- [
- -64.17437,
- 3.56841
- ],
- [
- -64.281,
- 3.70928
- ],
- [
- -64.54357,
- 3.85713
- ],
- [
- -64.72239,
- 4.11775
- ],
- [
- -64.80203,
- 4.17422
- ],
- [
- -64.81123,
- 4.27048
- ],
- [
- -64.69522,
- 4.25323
- ],
- [
- -64.623,
- 4.135
- ],
- [
- -64.5565,
- 4.10529
- ],
- [
- -64.164,
- 4.127
- ],
- [
- -63.964,
- 3.868
- ],
- [
- -63.928,
- 3.925
- ],
- [
- -63.85,
- 3.95
- ],
- [
- -63.682,
- 3.908
- ],
- [
- -63.676,
- 4.019
- ],
- [
- -63.591,
- 3.886
- ],
- [
- -63.497,
- 3.84
- ],
- [
- -63.489,
- 3.874
- ],
- [
- -63.434,
- 3.865
- ],
- [
- -63.428,
- 3.977
- ],
- [
- -63.204,
- 3.952
- ],
- [
- -63.226,
- 3.836
- ],
- [
- -63.103,
- 3.794
- ],
- [
- -63.059,
- 3.748
- ],
- [
- -63.081,
- 3.694
- ],
- [
- -62.96,
- 3.608
- ],
- [
- -62.835,
- 3.739
- ],
- [
- -62.743,
- 3.674
- ],
- [
- -62.729,
- 3.805
- ],
- [
- -62.788,
- 3.894
- ],
- [
- -62.753,
- 4.032
- ],
- [
- -62.555,
- 4.019
- ],
- [
- -62.552,
- 4.109
- ],
- [
- -62.437,
- 4.183
- ],
- [
- -62.14308,
- 4.07768
- ],
- [
- -62.071,
- 4.126
- ],
- [
- -62.076,
- 4.154
- ],
- [
- -61.982,
- 4.181
- ],
- [
- -61.93175,
- 4.12009
- ],
- [
- -61.92213,
- 4.16126
- ],
- [
- -61.824,
- 4.164
- ],
- [
- -61.802,
- 4.229
- ],
- [
- -61.724,
- 4.27
- ],
- [
- -61.56,
- 4.252
- ],
- [
- -61.508,
- 4.322
- ],
- [
- -61.513,
- 4.406
- ],
- [
- -61.288,
- 4.458
- ],
- [
- -61.323,
- 4.535
- ],
- [
- -61.217,
- 4.536
- ],
- [
- -61.14559,
- 4.48016
- ],
- [
- -61.095,
- 4.522
- ],
- [
- -60.994,
- 4.519
- ],
- [
- -60.932,
- 4.587
- ],
- [
- -60.949,
- 4.653
- ],
- [
- -60.899,
- 4.717
- ],
- [
- -60.751,
- 4.756
- ],
- [
- -60.591,
- 4.927
- ],
- [
- -60.661,
- 5.164
- ],
- [
- -60.73197,
- 5.21203
- ],
- [
- -60.434,
- 5.182
- ],
- [
- -60.20825,
- 5.28346
- ],
- [
- -60.172,
- 5.227
- ],
- [
- -60.135,
- 5.249
- ],
- [
- -60.094,
- 5.14
- ],
- [
- -59.96984,
- 5.06334
- ],
- [
- -60.02524,
- 4.7065
- ],
- [
- -60.0705,
- 4.61688
- ],
- [
- -60.15725,
- 4.57247
- ],
- [
- -60.16114,
- 4.51773
- ],
- [
- -59.79503,
- 4.46554
- ],
- [
- -59.66948,
- 4.37629
- ],
- [
- -59.7319,
- 4.28587
- ],
- [
- -59.73069,
- 4.18076
- ],
- [
- -59.61818,
- 4.13166
- ],
- [
- -59.65406,
- 4.06943
- ],
- [
- -59.58417,
- 3.96851
- ],
- [
- -59.5153,
- 3.94493
- ],
- [
- -59.59279,
- 3.88538
- ],
- [
- -59.59631,
- 3.79386
- ],
- [
- -59.66555,
- 3.78126
- ],
- [
- -59.66842,
- 3.70277
- ],
- [
- -59.86728,
- 3.57776
- ],
- [
- -59.80205,
- 3.50156
- ],
- [
- -59.8408,
- 3.43174
- ],
- [
- -59.80488,
- 3.35695
- ],
- [
- -59.907,
- 3.212
- ],
- [
- -59.98944,
- 2.88185
- ],
- [
- -59.99,
- 2.686
- ],
- [
- -59.895,
- 2.482
- ],
- [
- -59.89872,
- 2.36245
- ],
- [
- -59.72315,
- 2.27614
- ],
- [
- -59.751,
- 1.859
- ],
- [
- -59.677,
- 1.839
- ],
- [
- -59.663,
- 1.871
- ],
- [
- -59.69,
- 1.757
- ],
- [
- -59.539,
- 1.723
- ],
- [
- -59.381,
- 1.507
- ],
- [
- -59.329,
- 1.514
- ],
- [
- -59.327,
- 1.464
- ],
- [
- -59.284,
- 1.45
- ],
- [
- -59.253,
- 1.389
- ],
- [
- -58.978,
- 1.302
- ],
- [
- -58.918,
- 1.317
- ],
- [
- -58.886,
- 1.261
- ],
- [
- -58.912,
- 1.239
- ],
- [
- -58.82512,
- 1.17127
- ],
- [
- -58.73956,
- 1.1999
- ],
- [
- -58.69456,
- 1.29732
- ],
- [
- -58.49622,
- 1.26796
- ],
- [
- -58.45787,
- 1.37145
- ],
- [
- -58.50511,
- 1.40317
- ],
- [
- -58.50873,
- 1.46295
- ],
- [
- -58.38559,
- 1.46999
- ],
- [
- -58.39472,
- 1.52651
- ],
- [
- -58.32237,
- 1.59702
- ],
- [
- -58.236,
- 1.54669
- ],
- [
- -58.16064,
- 1.56011
- ],
- [
- -58.12942,
- 1.4989
- ],
- [
- -58.00423,
- 1.50303
- ],
- [
- -57.99009,
- 1.65844
- ],
- [
- -57.85206,
- 1.66782
- ],
- [
- -57.77431,
- 1.72973
- ],
- [
- -57.70509,
- 1.73093
- ],
- [
- -57.65042,
- 1.68237
- ],
- [
- -57.5376,
- 1.7005
- ],
- [
- -57.50187,
- 1.78609
- ],
- [
- -57.43776,
- 1.82681
- ],
- [
- -57.43343,
- 1.90598
- ],
- [
- -57.36768,
- 1.92372
- ],
- [
- -57.36912,
- 1.95638
- ],
- [
- -57.30712,
- 1.99665
- ],
- [
- -57.22923,
- 1.93759
- ],
- [
- -57.08668,
- 2.02644
- ],
- [
- -57.01421,
- 1.91489
- ],
- [
- -56.91971,
- 1.93036
- ],
- [
- -56.79793,
- 1.85336
- ],
- [
- -56.72096,
- 1.92582
- ],
- [
- -56.62145,
- 1.94588
- ],
- [
- -56.57976,
- 1.90588
- ],
- [
- -56.45126,
- 1.95614
- ],
- [
- -56.24404,
- 1.87808
- ],
- [
- -56.1709,
- 1.90048
- ],
- [
- -56.11762,
- 1.85097
- ],
- [
- -55.95638,
- 1.84509
- ],
- [
- -55.90385,
- 1.88803
- ],
- [
- -55.93635,
- 1.98647
- ],
- [
- -55.9031,
- 2.04108
- ],
- [
- -56.00307,
- 2.1676
- ],
- [
- -56.05505,
- 2.18464
- ],
- [
- -56.04288,
- 2.22778
- ],
- [
- -56.13887,
- 2.26574
- ],
- [
- -56.09012,
- 2.37228
- ],
- [
- -56.02181,
- 2.34247
- ],
- [
- -55.97052,
- 2.52931
- ],
- [
- -55.76663,
- 2.45524
- ],
- [
- -55.71028,
- 2.39917
- ],
- [
- -55.49971,
- 2.44324
- ],
- [
- -55.38533,
- 2.41836
- ],
- [
- -55.32019,
- 2.51537
- ],
- [
- -55.23474,
- 2.50338
- ],
- [
- -55.1234,
- 2.56762
- ],
- [
- -55.10302,
- 2.52564
- ],
- [
- -54.95424,
- 2.58359
- ],
- [
- -54.86846,
- 2.43989
- ],
- [
- -54.68917,
- 2.45389
- ],
- [
- -54.68861,
- 2.32472
- ],
- [
- -54.54667,
- 2.31833
- ],
- [
- -54.53778,
- 2.26556
- ],
- [
- -54.46861,
- 2.21306
- ],
- [
- -54.24917,
- 2.14667
- ],
- [
- -54.18056,
- 2.1725
- ],
- [
- -54.11083,
- 2.11222
- ],
- [
- -54.06139,
- 2.19167
- ],
- [
- -53.94083,
- 2.21917
- ],
- [
- -53.93194,
- 2.27194
- ],
- [
- -53.88667,
- 2.26778
- ],
- [
- -53.745,
- 2.37389
- ],
- [
- -53.73389,
- 2.31222
- ],
- [
- -53.52972,
- 2.24917
- ],
- [
- -53.45861,
- 2.2575
- ],
- [
- -53.32833,
- 2.35333
- ],
- [
- -53.21667,
- 2.25333
- ],
- [
- -53.27899,
- 2.18603
- ],
- [
- -53.11861,
- 2.2225
- ],
- [
- -52.99472,
- 2.17528
- ],
- [
- -52.90972,
- 2.19583
- ],
- [
- -52.84722,
- 2.28556
- ],
- [
- -52.67528,
- 2.37389
- ],
- [
- -52.59444,
- 2.47389
- ],
- [
- -52.54028,
- 2.57028
- ],
- [
- -52.56417,
- 2.63944
- ],
- [
- -52.43944,
- 2.87778
- ],
- [
- -52.39583,
- 2.90222
- ],
- [
- -52.33187,
- 3.16938
- ],
- [
- -52.21472,
- 3.26833
- ],
- [
- -51.97104,
- 3.70696
- ],
- [
- -51.92148,
- 3.72422
- ],
- [
- -51.922,
- 3.7792
- ],
- [
- -51.79731,
- 3.88888
- ],
- [
- -51.77783,
- 3.97406
- ],
- [
- -51.65867,
- 4.05276
- ],
- [
- -51.61325,
- 4.17437
- ],
- [
- -51.63716,
- 4.50834
- ],
- [
- -51.49427,
- 4.67426
- ],
- [
- -51.11466,
- 4.42286
- ],
- [
- -50.94232,
- 4.20165
- ],
- [
- -50.85475,
- 3.92491
- ],
- [
- -50.85507,
- 3.45573
- ],
- [
- -50.75331,
- 2.94057
- ],
- [
- -50.29908,
- 2.33079
- ],
- [
- -49.73896,
- 1.79143
- ],
- [
- -48.23746,
- -0.07449
- ],
- [
- -44.84728,
- -1.07246
- ],
- [
- -43.54602,
- -2.04705
- ],
- [
- -43.24389,
- -2.12403
- ],
- [
- -42.78189,
- -2.33053
- ],
- [
- -41.78084,
- -2.51859
- ],
- [
- -41.5085,
- -2.68486
- ],
- [
- -40.66365,
- -2.63829
- ],
- [
- -40.50396,
- -2.57531
- ],
- [
- -39.8907,
- -2.65328
- ],
- [
- -39.15187,
- -3.04444
- ],
- [
- -38.57151,
- -3.48047
- ],
- [
- -38.34306,
- -3.54434
- ],
- [
- -38.21421,
- -3.74103
- ],
- [
- -38.12555,
- -3.80544
- ],
- [
- -37.90182,
- -4.07265
- ],
- [
- -37.77934,
- -4.18046
- ],
- [
- -37.63401,
- -4.24454
- ],
- [
- -37.51218,
- -4.41535
- ],
- [
- -37.22122,
- -4.51045
- ],
- [
- -37.07874,
- -4.71355
- ],
- [
- -36.91716,
- -4.71372
- ],
- [
- -36.62299,
- -4.85815
- ],
- [
- -36.18969,
- -4.88505
- ],
- [
- -35.93627,
- -4.83327
- ],
- [
- -35.56471,
- -4.90758
- ],
- [
- -35.33677,
- -4.99239
- ],
- [
- -35.17659,
- -5.12497
- ],
- [
- -34.79469,
- -6.33583
- ],
- [
- -34.71587,
- -6.74615
- ],
- [
- -34.62306,
- -6.90323
- ],
- [
- -34.59953,
- -7.11133
- ],
- [
- -34.64374,
- -7.98735
- ],
- [
- -34.81497,
- -8.62472
- ],
- [
- -35.0253,
- -9.13761
- ],
- [
- -35.55848,
- -9.81261
- ],
- [
- -35.69663,
- -9.90026
- ],
- [
- -35.96401,
- -10.31281
- ],
- [
- -36.06155,
- -10.37447
- ],
- [
- -36.26639,
- -10.64593
- ],
- [
- -36.61764,
- -10.81082
- ],
- [
- -36.78725,
- -10.95151
- ],
- [
- -36.99511,
- -11.29602
- ],
- [
- -37.11368,
- -11.41261
- ],
- [
- -37.46002,
- -12.10275
- ],
- [
- -37.89668,
- -12.75844
- ],
- [
- -38.22146,
- -13.09717
- ],
- [
- -38.61146,
- -13.26537
- ],
- [
- -38.85337,
- -14.65508
- ],
- [
- -38.74388,
- -15.60089
- ],
- [
- -38.66456,
- -15.74741
- ],
- [
- -38.64697,
- -15.88327
- ],
- [
- -38.8013,
- -16.24838
- ],
- [
- -38.92933,
- -16.80775
- ],
- [
- -38.53193,
- -17.80026
- ],
- [
- -38.49171,
- -18.0046
- ],
- [
- -38.53661,
- -18.09683
- ],
- [
- -38.67053,
- -18.16855
- ],
- [
- -39.35288,
- -18.10892
- ],
- [
- -39.4675,
- -18.30359
- ],
- [
- -39.54529,
- -18.78548
- ],
- [
- -39.49227,
- -19.40134
- ],
- [
- -39.63477,
- -19.74403
- ],
- [
- -39.86353,
- -19.88681
- ],
- [
- -40.17827,
- -20.75426
- ],
- [
- -40.81442,
- -21.67672
- ],
- [
- -40.76948,
- -21.87786
- ],
- [
- -40.81442,
- -22.09702
- ],
- [
- -41.5086,
- -22.52638
- ],
- [
- -41.59666,
- -22.83627
- ],
- [
- -41.79292,
- -23.08823
- ],
- [
- -41.91484,
- -23.18527
- ],
- [
- -43.19603,
- -23.26703
- ],
- [
- -44.07735,
- -23.40501
- ],
- [
- -45.13508,
- -24.12014
- ],
- [
- -46.61368,
- -24.67512
- ],
- [
- -47.85376,
- -25.47012
- ],
- [
- -48.2801,
- -26.23036
- ],
- [
- -48.34897,
- -26.75081
- ],
- [
- -48.11076,
- -27.28208
- ],
- [
- -48.21148,
- -27.85592
- ],
- [
- -48.40713,
- -28.43255
- ],
- [
- -48.68615,
- -28.76016
- ],
- [
- -48.9156,
- -28.86305
- ],
- [
- -49.1579,
- -29.02871
- ],
- [
- -49.52748,
- -29.42005
- ],
- [
- -49.82565,
- -29.86559
- ],
- [
- -50.17344,
- -30.64282
- ],
- [
- -50.60441,
- -31.24135
- ],
- [
- -51.18785,
- -31.77646
- ],
- [
- -51.74211,
- -32.10539
- ],
- [
- -51.89236,
- -32.29596
- ],
- [
- -52.06117,
- -32.38504
- ],
- [
- -52.27087,
- -32.92102
- ],
- [
- -52.45986,
- -33.25369
- ],
- [
- -52.61505,
- -33.42291
- ],
- [
- -53.18109,
- -33.86891
- ],
- [
- -53.43053,
- -33.73947
- ],
- [
- -53.43951,
- -33.69347
- ],
- [
- -53.53228,
- -33.6888
- ],
- [
- -53.51819,
- -33.15342
- ],
- [
- -53.44438,
- -33.05296
- ],
- [
- -53.24468,
- -32.93489
- ],
- [
- -53.31008,
- -32.91875
- ],
- [
- -53.29454,
- -32.89931
- ],
- [
- -53.18496,
- -32.85043
- ],
- [
- -53.14569,
- -32.79202
- ],
- [
- -53.0858,
- -32.78835
- ],
- [
- -53.07558,
- -32.74088
- ],
- [
- -53.24992,
- -32.6041
- ],
- [
- -53.39137,
- -32.58573
- ],
- [
- -53.46423,
- -32.48446
- ],
- [
- -53.58321,
- -32.45192
- ],
- [
- -53.74599,
- -32.07848
- ],
- [
- -53.83375,
- -32.05524
- ],
- [
- -53.84978,
- -32.00064
- ],
- [
- -53.96073,
- -31.95532
- ],
- [
- -53.96972,
- -31.91765
- ],
- [
- -54.10019,
- -31.92825
- ],
- [
- -54.4549,
- -31.65295
- ],
- [
- -54.4528,
- -31.59959
- ],
- [
- -54.58676,
- -31.45656
- ],
- [
- -54.8367,
- -31.442
- ],
- [
- -54.88623,
- -31.3773
- ],
- [
- -54.94087,
- -31.38068
- ],
- [
- -55.00723,
- -31.26692
- ],
- [
- -55.07446,
- -31.33216
- ],
- [
- -55.24003,
- -31.26062
- ],
- [
- -55.29118,
- -31.14226
- ],
- [
- -55.34037,
- -31.13144
- ],
- [
- -55.34981,
- -31.03922
- ],
- [
- -55.42306,
- -31.01823
- ],
- [
- -55.57742,
- -30.83309
- ],
- [
- -55.65834,
- -30.864
- ],
- [
- -55.66621,
- -30.95395
- ],
- [
- -55.723,
- -30.943
- ],
- [
- -55.727,
- -30.979
- ],
- [
- -55.882,
- -31.077
- ],
- [
- -56.00989,
- -31.08267
- ],
- [
- -56.02241,
- -30.78565
- ],
- [
- -56.12508,
- -30.73871
- ],
- [
- -56.17074,
- -30.61517
- ],
- [
- -56.26095,
- -30.58509
- ],
- [
- -56.29193,
- -30.51967
- ],
- [
- -56.38177,
- -30.49956
- ],
- [
- -56.46126,
- -30.38486
- ],
- [
- -56.54706,
- -30.35946
- ],
- [
- -56.54115,
- -30.31291
- ],
- [
- -56.6187,
- -30.30054
- ],
- [
- -56.64628,
- -30.20346
- ],
- [
- -56.77662,
- -30.1633
- ],
- [
- -56.80777,
- -30.10301
- ],
- [
- -57.07113,
- -30.08671
- ],
- [
- -57.22081,
- -30.28928
- ],
- [
- -57.31303,
- -30.25785
- ],
- [
- -57.39229,
- -30.30474
- ],
- [
- -57.46574,
- -30.26589
- ],
- [
- -57.52431,
- -30.28569
- ],
- [
- -57.56087,
- -30.21134
- ],
- [
- -57.64744,
- -30.19483
- ],
- [
- -57.48047,
- -30.12315
- ],
- [
- -57.33713,
- -29.99284
- ],
- [
- -57.294,
- -29.831
- ],
- [
- -57.121,
- -29.765
- ],
- [
- -56.89888,
- -29.53179
- ],
- [
- -56.81905,
- -29.48816
- ],
- [
- -56.76618,
- -29.37768
- ],
- [
- -56.70164,
- -29.35913
- ],
- [
- -56.59315,
- -29.12516
- ],
- [
- -56.418,
- -29.075
- ],
- [
- -56.40775,
- -28.9748
- ],
- [
- -56.29995,
- -28.89614
- ],
- [
- -56.29652,
- -28.8027
- ],
- [
- -56.17858,
- -28.75922
- ],
- [
- -56.00984,
- -28.60718
- ],
- [
- -56.01249,
- -28.50873
- ],
- [
- -55.88357,
- -28.47923
- ],
- [
- -55.87739,
- -28.36159
- ],
- [
- -55.75157,
- -28.37095
- ],
- [
- -55.69433,
- -28.42204
- ],
- [
- -55.67047,
- -28.33218
- ],
- [
- -55.77415,
- -28.27414
- ],
- [
- -55.7757,
- -28.24481
- ],
- [
- -55.63167,
- -28.17719
- ],
- [
- -55.60747,
- -28.11604
- ],
- [
- -55.55957,
- -28.16523
- ],
- [
- -55.4952,
- -28.07682
- ],
- [
- -55.44611,
- -28.09787
- ],
- [
- -55.368,
- -28.029
- ],
- [
- -55.38299,
- -27.97948
- ],
- [
- -55.343,
- -27.972
- ],
- [
- -55.32706,
- -27.92664
- ],
- [
- -55.26574,
- -27.92969
- ],
- [
- -55.196,
- -27.856
- ],
- [
- -55.133,
- -27.897
- ],
- [
- -55.106,
- -27.846
- ],
- [
- -55.035,
- -27.858
- ],
- [
- -55.081,
- -27.779
- ],
- [
- -54.936,
- -27.772
- ],
- [
- -54.90617,
- -27.63871
- ],
- [
- -54.85,
- -27.624
- ],
- [
- -54.814,
- -27.533
- ],
- [
- -54.775,
- -27.586
- ],
- [
- -54.67926,
- -27.57394
- ],
- [
- -54.67709,
- -27.508
- ],
- [
- -54.621,
- -27.541
- ],
- [
- -54.574,
- -27.453
- ],
- [
- -54.5246,
- -27.5059
- ],
- [
- -54.444,
- -27.472
- ],
- [
- -54.47081,
- -27.42674
- ],
- [
- -54.41,
- -27.405
- ],
- [
- -54.35466,
- -27.46528
- ],
- [
- -54.34067,
- -27.40311
- ],
- [
- -54.28484,
- -27.44819
- ],
- [
- -54.261,
- -27.397
- ],
- [
- -54.21736,
- -27.38603
- ],
- [
- -54.172,
- -27.254
- ],
- [
- -54.15619,
- -27.29619
- ],
- [
- -54.08872,
- -27.30149
- ],
- [
- -54.01026,
- -27.19978
- ],
- [
- -53.96219,
- -27.19698
- ],
- [
- -53.95195,
- -27.15169
- ],
- [
- -53.79879,
- -27.14629
- ],
- [
- -53.80233,
- -27.04028
- ],
- [
- -53.76087,
- -27.06543
- ],
- [
- -53.78585,
- -27.02674
- ],
- [
- -53.7473,
- -27.03218
- ],
- [
- -53.7092,
- -26.93414
- ],
- [
- -53.67125,
- -26.94222
- ],
- [
- -53.69684,
- -26.86015
- ],
- [
- -53.66059,
- -26.85814
- ],
- [
- -53.75814,
- -26.72045
- ],
- [
- -53.7205,
- -26.65099
- ],
- [
- -53.75864,
- -26.64113
- ],
- [
- -53.63739,
- -26.24968
- ],
- [
- -53.742,
- -26.108
- ],
- [
- -53.73409,
- -26.04333
- ],
- [
- -53.83619,
- -25.97166
- ],
- [
- -53.82214,
- -25.79377
- ],
- [
- -53.89113,
- -25.62286
- ],
- [
- -53.94895,
- -25.6117
- ],
- [
- -53.95638,
- -25.64628
- ],
- [
- -54.01,
- -25.567
- ],
- [
- -54.07592,
- -25.55766
- ],
- [
- -54.098,
- -25.619
- ],
- [
- -54.099,
- -25.495
- ],
- [
- -54.206,
- -25.541
- ],
- [
- -54.178,
- -25.584
- ],
- [
- -54.23,
- -25.562
- ],
- [
- -54.25,
- -25.597
- ],
- [
- -54.28,
- -25.556
- ],
- [
- -54.38395,
- -25.59747
- ],
- [
- -54.43288,
- -25.69756
- ],
- [
- -54.4927,
- -25.6181
- ],
- [
- -54.59354,
- -25.59275
- ],
- [
- -54.61941,
- -25.45312
- ],
- [
- -54.4295,
- -25.15915
- ],
- [
- -54.43548,
- -24.94769
- ],
- [
- -54.32437,
- -24.66059
- ],
- [
- -54.32714,
- -24.47073
- ],
- [
- -54.25877,
- -24.36377
- ],
- [
- -54.34537,
- -24.14705
- ],
- [
- -54.28223,
- -24.07336
- ],
- [
- -54.43984,
- -23.90446
- ],
- [
- -54.66978,
- -23.81262
- ],
- [
- -54.70533,
- -23.86452
- ],
- [
- -54.89,
- -23.898
- ],
- [
- -54.924,
- -23.959
- ],
- [
- -55.06223,
- -23.99335
- ],
- [
- -55.107,
- -23.961
- ],
- [
- -55.22907,
- -24.01383
- ],
- [
- -55.30415,
- -23.96504
- ],
- [
- -55.34542,
- -23.99458
- ],
- [
- -55.41423,
- -23.9645
- ],
- [
- -55.44167,
- -23.70084
- ],
- [
- -55.47306,
- -23.64834
- ],
- [
- -55.53989,
- -23.625
- ],
- [
- -55.52356,
- -23.19733
- ],
- [
- -55.54199,
- -23.1561
- ],
- [
- -55.59635,
- -23.14993
- ],
- [
- -55.66578,
- -22.85274
- ],
- [
- -55.61432,
- -22.65521
- ],
- [
- -55.72364,
- -22.55166
- ],
- [
- -55.74302,
- -22.39266
- ],
- [
- -55.78939,
- -22.3846
- ],
- [
- -55.84304,
- -22.28725
- ],
- [
- -56.20983,
- -22.27805
- ],
- [
- -56.36485,
- -22.16949
- ],
- [
- -56.39404,
- -22.07434
- ],
- [
- -56.50711,
- -22.09561
- ],
- [
- -56.63705,
- -22.26341
- ],
- [
- -56.70344,
- -22.21693
- ],
- [
- -56.72026,
- -22.26479
- ],
- [
- -56.79344,
- -22.24238
- ],
- [
- -56.84285,
- -22.30155
- ],
- [
- -56.88343,
- -22.24755
- ],
- [
- -56.9967,
- -22.22246
- ],
- [
- -57.3744,
- -22.23204
- ],
- [
- -57.5804,
- -22.17534
- ],
- [
- -57.6106,
- -22.09462
- ],
- [
- -57.70751,
- -22.09111
- ],
- [
- -57.80183,
- -22.15072
- ],
- [
- -57.99384,
- -22.09023
- ],
- [
- -58.00946,
- -22.04038
- ],
- [
- -57.91281,
- -21.88266
- ],
- [
- -57.96603,
- -21.85045
- ],
- [
- -57.90866,
- -21.77355
- ],
- [
- -57.94714,
- -21.74413
- ],
- [
- -57.88329,
- -21.68903
- ],
- [
- -57.93436,
- -21.65037
- ],
- [
- -57.91387,
- -21.59021
- ],
- [
- -57.96795,
- -21.52432
- ],
- [
- -57.8535,
- -21.33109
- ],
- [
- -57.92019,
- -21.27655
- ],
- [
- -57.85066,
- -21.22407
- ],
- [
- -57.86834,
- -21.04417
- ],
- [
- -57.81919,
- -20.94066
- ],
- [
- -57.92836,
- -20.90036
- ],
- [
- -57.8552,
- -20.83403
- ],
- [
- -57.89863,
- -20.78872
- ],
- [
- -57.96183,
- -20.7916
- ],
- [
- -57.93478,
- -20.74565
- ],
- [
- -57.86732,
- -20.73265
- ],
- [
- -57.92414,
- -20.66392
- ],
- [
- -57.98848,
- -20.69879
- ],
- [
- -57.99847,
- -20.43551
- ],
- [
- -58.09339,
- -20.35554
- ],
- [
- -58.09596,
- -20.25445
- ],
- [
- -58.16216,
- -20.25953
- ],
- [
- -58.12152,
- -20.19246
- ],
- [
- -58.16932,
- -20.1694
- ],
- [
- -57.95347,
- -20.02094
- ],
- [
- -57.90248,
- -20.04207
- ],
- [
- -57.85796,
- -19.9703
- ],
- [
- -58.131,
- -19.758
- ],
- [
- -57.784,
- -19.033
- ],
- [
- -57.694,
- -19.011
- ],
- [
- -57.719,
- -18.899
- ],
- [
- -57.766,
- -18.899
- ],
- [
- -57.557,
- -18.24
- ],
- [
- -57.453,
- -18.231
- ],
- [
- -57.574,
- -18.131
- ],
- [
- -57.72302,
- -17.83074
- ],
- [
- -57.68472,
- -17.8306
- ],
- [
- -57.70991,
- -17.72702
- ],
- [
- -57.783,
- -17.639
- ],
- [
- -57.73696,
- -17.5583
- ],
- [
- -57.883,
- -17.449
- ],
- [
- -57.996,
- -17.515
- ],
- [
- -58.06,
- -17.45
- ],
- [
- -58.116,
- -17.451
- ],
- [
- -58.151,
- -17.384
- ],
- [
- -58.263,
- -17.344
- ],
- [
- -58.396,
- -17.181
- ],
- [
- -58.423,
- -16.989
- ],
- [
- -58.474,
- -16.935
- ],
- [
- -58.47,
- -16.703
- ],
- [
- -58.436,
- -16.592
- ],
- [
- -58.333,
- -16.49
- ],
- [
- -58.32227,
- -16.26559
- ],
- [
- -58.388,
- -16.261
- ],
- [
- -58.43059,
- -16.32264
- ],
- [
- -60.17335,
- -16.26672
- ],
- [
- -60.238,
- -15.473
- ],
- [
- -60.57543,
- -15.09677
- ],
- [
- -60.244,
- -15.096
- ],
- [
- -60.272,
- -14.62
- ],
- [
- -60.321,
- -14.608
- ],
- [
- -60.492,
- -14.188
- ],
- [
- -60.479,
- -14.097
- ],
- [
- -60.38066,
- -13.9888
- ],
- [
- -60.45062,
- -13.9364
- ],
- [
- -60.45599,
- -13.85422
- ],
- [
- -60.49068,
- -13.85782
- ],
- [
- -60.46776,
- -13.79446
- ],
- [
- -60.76755,
- -13.68329
- ],
- [
- -60.87678,
- -13.62149
- ],
- [
- -60.91857,
- -13.54334
- ],
- [
- -61.0056,
- -13.552
- ],
- [
- -61.0129,
- -13.48925
- ],
- [
- -61.0938,
- -13.49081
- ],
- [
- -61.10314,
- -13.53056
- ],
- [
- -61.18155,
- -13.50557
- ],
- [
- -61.19236,
- -13.53695
- ],
- [
- -61.29954,
- -13.47718
- ],
- [
- -61.46527,
- -13.55427
- ],
- [
- -61.57927,
- -13.48711
- ],
- [
- -61.852,
- -13.538
- ],
- [
- -61.892,
- -13.431
- ],
- [
- -61.96968,
- -13.40759
- ],
- [
- -61.97592,
- -13.36695
- ],
- [
- -62.11498,
- -13.25932
- ],
- [
- -62.115,
- -13.163
- ],
- [
- -62.15254,
- -13.15993
- ],
- [
- -62.16703,
- -13.11346
- ],
- [
- -62.19,
- -13.153
- ],
- [
- -62.214,
- -13.111
- ],
- [
- -62.27269,
- -13.15687
- ],
- [
- -62.39178,
- -13.13471
- ],
- [
- -62.453,
- -13.064
- ],
- [
- -62.612,
- -13.041
- ],
- [
- -62.65,
- -12.965
- ],
- [
- -62.729,
- -13.02
- ],
- [
- -62.779,
- -13.009
- ],
- [
- -62.89672,
- -12.8539
- ],
- [
- -63.01134,
- -12.83602
- ],
- [
- -63.08186,
- -12.72323
- ],
- [
- -63.06163,
- -12.68584
- ],
- [
- -63.15726,
- -12.6138
- ],
- [
- -63.24621,
- -12.66222
- ],
- [
- -63.23713,
- -12.69043
- ],
- [
- -63.30125,
- -12.68138
- ],
- [
- -63.44052,
- -12.608
- ],
- [
- -63.43627,
- -12.56526
- ],
- [
- -63.50641,
- -12.56562
- ],
- [
- -63.55295,
- -12.50598
- ],
- [
- -63.7848,
- -12.42871
- ],
- [
- -63.88957,
- -12.44745
- ],
- [
- -63.89949,
- -12.50204
- ],
- [
- -63.95144,
- -12.53179
- ],
- [
- -64.13464,
- -12.47732
- ],
- [
- -64.16781,
- -12.51503
- ],
- [
- -64.17504,
- -12.46675
- ],
- [
- -64.22945,
- -12.45419
- ],
- [
- -64.29018,
- -12.50313
- ],
- [
- -64.29452,
- -12.4582
- ],
- [
- -64.41057,
- -12.44436
- ],
- [
- -64.51217,
- -12.3551
- ],
- [
- -64.51256,
- -12.22562
- ],
- [
- -64.70406,
- -12.1827
- ],
- [
- -64.70719,
- -12.08684
- ],
- [
- -64.75486,
- -12.15762
- ],
- [
- -64.7688,
- -12.09356
- ],
- [
- -64.83747,
- -12.11786
- ],
- [
- -64.80954,
- -12.05633
- ],
- [
- -64.84077,
- -12.01027
- ],
- [
- -65.03548,
- -11.99408
- ],
- [
- -65.01398,
- -11.90303
- ],
- [
- -65.0727,
- -11.86587
- ],
- [
- -65.08672,
- -11.7082
- ],
- [
- -65.18953,
- -11.72353
- ],
- [
- -65.18216,
- -11.75609
- ],
- [
- -65.2593,
- -11.71053
- ],
- [
- -65.21178,
- -11.52857
- ],
- [
- -65.3074,
- -11.49957
- ],
- [
- -65.33276,
- -11.33986
- ],
- [
- -65.29053,
- -11.32275
- ],
- [
- -65.34347,
- -11.3082
- ],
- [
- -65.35834,
- -11.26834
- ],
- [
- -65.35938,
- -11.22067
- ],
- [
- -65.31294,
- -11.19578
- ],
- [
- -65.35387,
- -11.18419
- ],
- [
- -65.36177,
- -11.14031
- ],
- [
- -65.28269,
- -11.09009
- ],
- [
- -65.30071,
- -11.03142
- ],
- [
- -65.25053,
- -10.98506
- ],
- [
- -65.27476,
- -10.87302
- ],
- [
- -65.35376,
- -10.78881
- ],
- [
- -65.34667,
- -10.68155
- ],
- [
- -65.40569,
- -10.63935
- ],
- [
- -65.43011,
- -10.48505
- ],
- [
- -65.288,
- -10.219
- ],
- [
- -65.333,
- -9.965
- ],
- [
- -65.28588,
- -9.84413
- ],
- [
- -65.39313,
- -9.68683
- ],
- [
- -65.44394,
- -9.66957
- ],
- [
- -65.4883,
- -9.71015
- ],
- [
- -65.55611,
- -9.84498
- ],
- [
- -65.627,
- -9.83804
- ],
- [
- -65.66963,
- -9.78129
- ],
- [
- -65.71023,
- -9.80857
- ],
- [
- -65.68395,
- -9.74992
- ],
- [
- -65.7432,
- -9.78296
- ],
- [
- -65.77013,
- -9.73442
- ],
- [
- -65.79437,
- -9.79295
- ],
- [
- -65.79962,
- -9.75663
- ],
- [
- -65.86532,
- -9.79533
- ],
- [
- -65.87184,
- -9.75307
- ],
- [
- -65.91976,
- -9.75314
- ],
- [
- -65.98222,
- -9.81011
- ],
- [
- -66.151,
- -9.785
- ],
- [
- -66.426,
- -9.899
- ],
- [
- -66.435,
- -9.866
- ],
- [
- -66.61995,
- -9.89353
- ],
- [
- -66.63701,
- -9.94983
- ],
- [
- -66.8751,
- -10.08268
- ],
- [
- -66.9528,
- -10.18886
- ],
- [
- -66.99683,
- -10.20017
- ],
- [
- -67.01537,
- -10.25919
- ],
- [
- -67.17745,
- -10.33923
- ],
- [
- -67.31545,
- -10.31932
- ],
- [
- -67.31155,
- -10.37716
- ],
- [
- -67.40717,
- -10.37386
- ],
- [
- -67.44361,
- -10.45492
- ],
- [
- -67.57925,
- -10.5028
- ],
- [
- -67.64028,
- -10.59807
- ],
- [
- -67.67631,
- -10.60484
- ],
- [
- -67.70825,
- -10.71083
- ],
- [
- -67.86386,
- -10.64067
- ],
- [
- -68.03289,
- -10.65486
- ],
- [
- -68.10456,
- -10.71426
- ],
- [
- -68.10333,
- -10.77541
- ],
- [
- -68.27819,
- -10.98926
- ],
- [
- -68.71576,
- -11.14483
- ],
- [
- -68.75767,
- -11.00079
- ],
- [
- -68.9118,
- -11.02192
- ],
- [
- -69.41453,
- -10.92575
- ],
- [
- -69.73653,
- -10.97445
- ],
- [
- -69.76903,
- -10.92972
- ],
- [
- -69.93442,
- -10.9219
- ],
- [
- -70.15869,
- -11.04096
- ],
- [
- -70.30672,
- -11.06983
- ],
- [
- -70.43675,
- -11.03923
- ],
- [
- -70.53033,
- -10.93465
- ],
- [
- -70.62103,
- -10.99982
- ],
- [
- -70.62338,
- -9.82054
- ],
- [
- -70.53663,
- -9.76584
- ],
- [
- -70.59972,
- -9.56264
- ],
- [
- -70.55282,
- -9.57093
- ],
- [
- -70.56894,
- -9.53127
- ],
- [
- -70.50506,
- -9.50557
- ],
- [
- -70.49665,
- -9.42489
- ],
- [
- -70.59581,
- -9.4425
- ],
- [
- -70.6632,
- -9.52601
- ],
- [
- -70.75067,
- -9.56043
- ],
- [
- -70.79332,
- -9.63846
- ],
- [
- -70.96337,
- -9.74891
- ],
- [
- -70.99391,
- -9.81721
- ],
- [
- -71.13974,
- -9.85702
- ],
- [
- -71.22052,
- -9.96968
- ],
- [
- -72.1804,
- -9.99967
- ],
- [
- -72.15136,
- -9.79742
- ],
- [
- -72.26296,
- -9.75085
- ],
- [
- -72.25282,
- -9.61633
- ],
- [
- -72.28821,
- -9.60316
- ],
- [
- -72.2829,
- -9.53995
- ],
- [
- -72.35688,
- -9.4946
- ],
- [
- -72.51954,
- -9.49128
- ],
- [
- -72.71676,
- -9.4122
- ],
- [
- -73.2038,
- -9.40715
- ],
- [
- -73.07352,
- -9.23461
- ],
- [
- -73.0093,
- -9.22236
- ],
- [
- -73.02612,
- -9.17786
- ],
- [
- -72.9582,
- -9.14302
- ],
- [
- -72.94091,
- -8.98494
- ],
- [
- -72.99931,
- -8.91778
- ],
- [
- -73.05901,
- -8.90561
- ],
- [
- -73.14992,
- -8.6839
- ],
- [
- -73.20907,
- -8.6857
- ],
- [
- -73.28745,
- -8.61948
- ],
- [
- -73.3055,
- -8.47197
- ],
- [
- -73.38956,
- -8.46878
- ],
- [
- -73.41286,
- -8.41099
- ],
- [
- -73.53744,
- -8.34587
- ],
- [
- -73.62739,
- -8.02187
- ],
- [
- -73.73175,
- -7.9684
- ],
- [
- -73.7725,
- -7.90237
- ],
- [
- -73.76164,
- -7.85803
- ],
- [
- -73.69706,
- -7.86527
- ],
- [
- -73.6843,
- -7.77644
- ],
- [
- -73.82217,
- -7.71788
- ],
- [
- -73.99094,
- -7.53635
- ],
- [
- -73.948,
- -7.52661
- ],
- [
- -73.91981,
- -7.46568
- ],
- [
- -73.96394,
- -7.34764
- ],
- [
- -73.87014,
- -7.37882
- ],
- [
- -73.7003,
- -7.30429
- ],
- [
- -73.79842,
- -7.11306
- ],
- [
- -73.71046,
- -6.84019
- ],
- [
- -73.53639,
- -6.6834
- ],
- [
- -73.39115,
- -6.64193
- ],
- [
- -73.35281,
- -6.59327
- ],
- [
- -73.22741,
- -6.58884
- ],
- [
- -73.18797,
- -6.52302
- ],
- [
- -73.13523,
- -6.51046
- ],
- [
- -73.10473,
- -6.40666
- ],
- [
- -73.24664,
- -6.14963
- ],
- [
- -73.23821,
- -6.04399
- ],
- [
- -73.1868,
- -6.00512
- ],
- [
- -73.15207,
- -5.86796
- ],
- [
- -73.05303,
- -5.79517
- ],
- [
- -72.95912,
- -5.65689
- ],
- [
- -72.95888,
- -5.46613
- ],
- [
- -72.86052,
- -5.27117
- ],
- [
- -72.88725,
- -5.16307
- ],
- [
- -72.73986,
- -5.08859
- ],
- [
- -72.72765,
- -5.05199
- ],
- [
- -72.6212,
- -5.0518
- ],
- [
- -72.598,
- -4.98386
- ],
- [
- -72.38202,
- -4.87296
- ],
- [
- -72.36895,
- -4.80387
- ],
- [
- -72.12601,
- -4.73454
- ],
- [
- -72.04335,
- -4.62384
- ],
- [
- -72.00689,
- -4.64622
- ],
- [
- -71.99464,
- -4.60996
- ],
- [
- -71.94743,
- -4.60877
- ],
- [
- -71.91909,
- -4.5298
- ],
- [
- -71.88549,
- -4.53803
- ],
- [
- -71.9073,
- -4.51644
- ],
- [
- -71.76637,
- -4.50446
- ],
- [
- -71.75109,
- -4.46887
- ],
- [
- -71.70817,
- -4.51165
- ],
- [
- -71.65479,
- -4.47246
- ],
- [
- -71.65032,
- -4.50395
- ],
- [
- -71.61548,
- -4.4687
- ],
- [
- -71.6335,
- -4.51524
- ],
- [
- -71.59625,
- -4.52928
- ],
- [
- -71.53703,
- -4.46442
- ],
- [
- -71.49428,
- -4.48701
- ],
- [
- -71.50716,
- -4.43909
- ],
- [
- -71.43438,
- -4.42882
- ],
- [
- -71.42562,
- -4.47058
- ],
- [
- -71.35026,
- -4.42728
- ],
- [
- -71.30752,
- -4.46288
- ],
- [
- -71.32091,
- -4.42009
- ],
- [
- -71.27782,
- -4.44217
- ],
- [
- -71.26975,
- -4.385
- ],
- [
- -71.20263,
- -4.37987
- ],
- [
- -71.19422,
- -4.42471
- ],
- [
- -71.14478,
- -4.38158
- ],
- [
- -71.11491,
- -4.41119
- ],
- [
- -71.10616,
- -4.37764
- ],
- [
- -70.99389,
- -4.38654
- ],
- [
- -70.99595,
- -4.34632
- ],
- [
- -70.9357,
- -4.38432
- ],
- [
- -70.84483,
- -4.27905
- ],
- [
- -70.86447,
- -4.25245
- ],
- [
- -70.81677,
- -4.23005
- ],
- [
- -70.8458,
- -4.21872
- ],
- [
- -70.75901,
- -4.15944
- ],
- [
- -70.68147,
- -4.20791
- ],
- [
- -70.64256,
- -4.12805
- ],
- [
- -70.62521,
- -4.19151
- ],
- [
- -70.56118,
- -4.1775
- ],
- [
- -70.57357,
- -4.21169
- ],
- [
- -70.54796,
- -4.13671
- ],
- [
- -70.51036,
- -4.14824
- ],
- [
- -70.50417,
- -4.20098
- ],
- [
- -70.48535,
- -4.16132
- ],
- [
- -70.43435,
- -4.16266
- ],
- [
- -70.43146,
- -4.13217
- ],
- [
- -70.33892,
- -4.17997
- ],
- [
- -70.32281,
- -4.14206
- ],
- [
- -70.28769,
- -4.16555
- ],
- [
- -70.29141,
- -4.28709
- ],
- [
- -70.21457,
- -4.29749
- ],
- [
- -70.19194,
- -4.36179
- ],
- [
- -70.15508,
- -4.27308
- ],
- [
- -70.11749,
- -4.28585
- ],
- [
- -70.10881,
- -4.25454
- ],
- [
- -70.04189,
- -4.29409
- ],
- [
- -70.07948,
- -4.31428
- ],
- [
- -70.02826,
- -4.3703
- ],
- [
- -69.99182,
- -4.37482
- ],
- [
- -69.94793,
- -4.23168
- ]
- ],
- [
- [
- -34.00035,
- -3.76654
- ],
- [
- -34.01797,
- -3.84985
- ],
- [
- -34.00664,
- -3.91809
- ],
- [
- -33.98608,
- -3.95952
- ],
- [
- -33.95923,
- -3.99217
- ],
- [
- -33.8921,
- -4.03653
- ],
- [
- -33.81658,
- -4.05077
- ],
- [
- -33.72931,
- -4.03151
- ],
- [
- -33.66638,
- -3.9838
- ],
- [
- -33.62736,
- -3.9185
- ],
- [
- -33.61519,
- -3.84985
- ],
- [
- -33.63239,
- -3.76864
- ],
- [
- -33.68693,
- -3.69537
- ],
- [
- -33.74987,
- -3.65978
- ],
- [
- -33.81658,
- -3.6489
- ],
- [
- -33.89336,
- -3.66397
- ],
- [
- -33.96007,
- -3.70877
- ],
- [
- -34.00035,
- -3.76654
- ]
- ],
- [
- [
- -32.5538,
- -4.00884
- ],
- [
- -32.59937,
- -3.9531
- ],
- [
- -32.64061,
- -3.87309
- ],
- [
- -32.61755,
- -3.73712
- ],
- [
- -32.58338,
- -3.70527
- ],
- [
- -32.54228,
- -3.65606
- ],
- [
- -32.4592,
- -3.63029
- ],
- [
- -32.35174,
- -3.63887
- ],
- [
- -32.30049,
- -3.67684
- ],
- [
- -32.24749,
- -3.75266
- ],
- [
- -32.23155,
- -3.81889
- ],
- [
- -32.2357,
- -3.90247
- ],
- [
- -32.30194,
- -3.9883
- ],
- [
- -32.42898,
- -4.0384
- ],
- [
- -32.5538,
- -4.00884
- ]
- ],
- [
- [
- -29.50321,
- 0.79391
- ],
- [
- -29.54097,
- 0.8689
- ],
- [
- -29.54727,
- 0.92553
- ],
- [
- -29.52367,
- 0.99422
- ],
- [
- -29.48958,
- 1.06134
- ],
- [
- -29.43136,
- 1.10224
- ],
- [
- -29.35899,
- 1.1206
- ],
- [
- -29.29238,
- 1.11378
- ],
- [
- -29.22158,
- 1.0776
- ],
- [
- -29.16285,
- 1.00314
- ],
- [
- -29.14501,
- 0.92605
- ],
- [
- -29.14764,
- 0.88358
- ],
- [
- -29.17176,
- 0.8196
- ],
- [
- -29.24885,
- 0.74357
- ],
- [
- -29.29448,
- 0.72521
- ],
- [
- -29.36371,
- 0.71892
- ],
- [
- -29.43556,
- 0.73937
- ],
- [
- -29.50321,
- 0.79391
- ]
- ],
- [
- [
- -29.09537,
- -20.42649
- ],
- [
- -29.19756,
- -20.33509
- ],
- [
- -29.3343,
- -20.28932
- ],
- [
- -29.46741,
- -20.3288
- ],
- [
- -29.54604,
- -20.42958
- ],
- [
- -29.55396,
- -20.52706
- ],
- [
- -29.51696,
- -20.62613
- ],
- [
- -29.40995,
- -20.68955
- ],
- [
- -29.27599,
- -20.72578
- ],
- [
- -29.15968,
- -20.66209
- ],
- [
- -29.07188,
- -20.57088
- ],
- [
- -28.9712,
- -20.64769
- ],
- [
- -28.83286,
- -20.69814
- ],
- [
- -28.67968,
- -20.62099
- ],
- [
- -28.63549,
- -20.49284
- ],
- [
- -28.63412,
- -20.47146
- ],
- [
- -28.7431,
- -20.30094
- ],
- [
- -28.8683,
- -20.27288
- ],
- [
- -29.0031,
- -20.32416
- ],
- [
- -29.09537,
- -20.42649
- ]
- ]
- ],
- "terms_text": "IBGE",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAOsSURBVHja7JXbb1RVFIe/fTmn05lepp0OpTcuUgQEElGgGGJSNYhggpdoTEz8m3w1xsQHE00MJj5oDGKCRI2IqKEKlpZCaSmXXubWmc6Zc/bFhwGp3N540LiTX7KTvbLWyvp+WVt473mUR/KIz7+/gJ64uNisJAW1lcbGUz9f+MQ6l5dCGID7EWpEMYcO7GB6tsifE9cItGo+CEEYaLyXl/p620+O7Nn2rp67sQCAUpLFpeXRYsWOKCUBcZ/UgqgRs2tnP5l0K2Pnx/GEJLYZ7RHU6hYwjy+V5l+KomStbElpmlKUl6NXpRQ0xV0SJCZhaKCdwwd2cHmmQJI4lAQpQAiQwqOkQEmJVprr89UjOt+TQylJobA8Wig0Xpby/liiKGawv503jjyFFJJiuY6Q4sFwpcAYl9JJnECguDq39EpinAoCif97QALnHEli2Lq5hxdHt5JpDZoJBDj3YLjOQyqUVb1UKCGlYH6xuk+pW7A8GOexJiHdqtn39AbW9nbw2Re/sbLS4Jk9mxgayHL23HUS41FyNaWmMax1ZPPtZ8Xv49eZXygdPnXmypcCiRAQhpqOtpB1g53sH9lMpVLno09P47xCSIjjhNcO7ySKYn4du4oxDucFUkqkFAgB1lp271p/SOdzbUT12tvbhntIZwLyXW309+XIdWcIAg3A+OQNEguplmarRinmbpQ5+NwT7N61EZMYKrWYUjmiUlmhutKgNaXG1g92H9dz1wrpqculkSg21OqOhcWIPy40reu9ZdvmXrq6Mgg8znkQAmsM+e4MADOzi/wyNsNSsU6tmhAbSxwbtgznfspkWqwulupHLs0UhtVd7nG3WMxcneSFZx/j4PNbOPHdRZx17N+7jlx3mo+PnmZ2roTzAqUkUkqEkKRSOh7s73nfuwB9c6H4phASpf5ZQN2++ICp6SLvvLWXTRvW4L1nemaRz786R62WEIYaLe7Y1VhHbz79Q0tKnqnWq8hCKXpSqYf5GeoNgzGObGeaiambHDsxQSN2tLQEiFXJPeC9p7M99bWUEikkMtSi5B/mZ+fpzraiteLHM1N8c3ISrTVKins3lfekU6rSu6btaBwnWGuQA33ZD7x3WNuE6P1tNbsx1tK/toMrs0uc+H6KIAyA1XF3lCSWgb7ssaGB/MVcVwc93Z3o7duH3yuWl7Pl5fh1JYKs815a571A4Lynoz0k35Ph+LfnybSG97BavQnDQIZdXZkPy8sNrG2ORfz/Zf73C/w1AJZ/tYbRRy7/AAAAAElFTkSuQmCC"
- },
- {
- "id": "IBGE_BC250_Aglomerado_Rural",
- "name": "IBGE-BC250-Aglomerado Rural Isolado",
- "type": "wms",
- "template": "http://www.geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Aglomerado_Rural_Isolado_P&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -29.3325,
- 2.33596
- ],
- [
- -28.72472,
- 2.03155
- ],
- [
- -27.76041,
- -8.93703
- ],
- [
- -27.67249,
- -22.20839
- ],
- [
- -51.11495,
- -35.46552
- ],
- [
- -53.39394,
- -33.85064
- ],
- [
- -53.62553,
- -33.72493
- ],
- [
- -53.62503,
- -33.15428
- ],
- [
- -53.24498,
- -32.73392
- ],
- [
- -53.65747,
- -32.51873
- ],
- [
- -53.8329,
- -32.16592
- ],
- [
- -54.64174,
- -31.55507
- ],
- [
- -55.29638,
- -31.3429
- ],
- [
- -55.57371,
- -30.99691
- ],
- [
- -56.06384,
- -31.16749
- ],
- [
- -56.10468,
- -30.86436
- ],
- [
- -56.86862,
- -30.20752
- ],
- [
- -57.39671,
- -30.40464
- ],
- [
- -57.74384,
- -30.22142
- ],
- [
- -55.83724,
- -28.16598
- ],
- [
- -54.86969,
- -27.44994
- ],
- [
- -53.9016,
- -27.02998
- ],
- [
- -53.74972,
- -26.25781
- ],
- [
- -53.97158,
- -25.74513
- ],
- [
- -54.44723,
- -25.79609
- ],
- [
- -54.67802,
- -25.64668
- ],
- [
- -54.36097,
- -24.35145
- ],
- [
- -54.41679,
- -24.06527
- ],
- [
- -54.64355,
- -23.94107
- ],
- [
- -55.22163,
- -24.11355
- ],
- [
- -55.49138,
- -24.02797
- ],
- [
- -55.71734,
- -22.68488
- ],
- [
- -55.90555,
- -22.39886
- ],
- [
- -56.45255,
- -22.21731
- ],
- [
- -56.8256,
- -22.4002
- ],
- [
- -57.34109,
- -22.34351
- ],
- [
- -58.08472,
- -22.13075
- ],
- [
- -57.95766,
- -20.99818
- ],
- [
- -58.26551,
- -20.24147
- ],
- [
- -58.03577,
- -19.95871
- ],
- [
- -58.23083,
- -19.75211
- ],
- [
- -57.64739,
- -18.19828
- ],
- [
- -57.89356,
- -17.57377
- ],
- [
- -58.16997,
- -17.53519
- ],
- [
- -58.48825,
- -17.21961
- ],
- [
- -58.57691,
- -16.81466
- ],
- [
- -58.45563,
- -16.42158
- ],
- [
- -60.2541,
- -16.32571
- ],
- [
- -60.33481,
- -15.51483
- ],
- [
- -60.67423,
- -15.1122
- ],
- [
- -60.34999,
- -14.99707
- ],
- [
- -60.63603,
- -13.84119
- ],
- [
- -61.07283,
- -13.62569
- ],
- [
- -61.9025,
- -13.62647
- ],
- [
- -62.21395,
- -13.25048
- ],
- [
- -62.80185,
- -13.10905
- ],
- [
- -63.17194,
- -12.76568
- ],
- [
- -63.74229,
- -12.54071
- ],
- [
- -64.32845,
- -12.59578
- ],
- [
- -65.10261,
- -12.0682
- ],
- [
- -65.45781,
- -11.27865
- ],
- [
- -65.41641,
- -9.83894
- ],
- [
- -66.52331,
- -9.98587
- ],
- [
- -67.66452,
- -10.80093
- ],
- [
- -67.99778,
- -10.75991
- ],
- [
- -68.52286,
- -11.20807
- ],
- [
- -69.88988,
- -11.02776
- ],
- [
- -70.30957,
- -11.1699
- ],
- [
- -70.71896,
- -11.02003
- ],
- [
- -70.68128,
- -9.66908
- ],
- [
- -71.27536,
- -10.08971
- ],
- [
- -72.18053,
- -10.09967
- ],
- [
- -72.41623,
- -9.5874
- ],
- [
- -73.29207,
- -9.45415
- ],
- [
- -73.0625,
- -9.01727
- ],
- [
- -73.61432,
- -8.40982
- ],
- [
- -74.09056,
- -7.52755
- ],
- [
- -74.03652,
- -7.27885
- ],
- [
- -73.84718,
- -7.23829
- ],
- [
- -73.78618,
- -6.77487
- ],
- [
- -73.22362,
- -6.43011
- ],
- [
- -73.33719,
- -6.02974
- ],
- [
- -72.93016,
- -5.03871
- ],
- [
- -71.93973,
- -4.42503
- ],
- [
- -70.96802,
- -4.24829
- ],
- [
- -70.79598,
- -4.06493
- ],
- [
- -70.02393,
- -4.16735
- ],
- [
- -69.51025,
- -1.13409
- ],
- [
- -69.70776,
- -0.56762
- ],
- [
- -70.13645,
- -0.22616
- ],
- [
- -70.14083,
- 0.5844
- ],
- [
- -69.26594,
- 0.8065
- ],
- [
- -69.34226,
- 0.96892
- ],
- [
- -69.92481,
- 1.01571
- ],
- [
- -69.92343,
- 1.77385
- ],
- [
- -68.38511,
- 1.82943
- ],
- [
- -68.24848,
- 2.11981
- ],
- [
- -67.94571,
- 1.94842
- ],
- [
- -67.37696,
- 2.32747
- ],
- [
- -67.05751,
- 1.85834
- ],
- [
- -67.00579,
- 1.2916
- ],
- [
- -66.79967,
- 1.31468
- ],
- [
- -66.28683,
- 0.85771
- ],
- [
- -65.67671,
- 1.11115
- ],
- [
- -65.42494,
- 0.96655
- ],
- [
- -65.15671,
- 1.24203
- ],
- [
- -64.27483,
- 1.60159
- ],
- [
- -64.0486,
- 2.06514
- ],
- [
- -63.47236,
- 2.27936
- ],
- [
- -64.13446,
- 2.43391
- ],
- [
- -64.10005,
- 2.72378
- ],
- [
- -64.32628,
- 3.11828
- ],
- [
- -64.28142,
- 3.54198
- ],
- [
- -64.88451,
- 4.11767
- ],
- [
- -64.88064,
- 4.34246
- ],
- [
- -64.13653,
- 4.22315
- ],
- [
- -63.95465,
- 4.02132
- ],
- [
- -63.17706,
- 4.0483
- ],
- [
- -62.96093,
- 3.76366
- ],
- [
- -62.82024,
- 4.10602
- ],
- [
- -62.49922,
- 4.27081
- ],
- [
- -61.91181,
- 4.26284
- ],
- [
- -61.35393,
- 4.6301
- ],
- [
- -61.04904,
- 4.62312
- ],
- [
- -60.70452,
- 4.96985
- ],
- [
- -60.78709,
- 5.29676
- ],
- [
- -60.22457,
- 5.37121
- ],
- [
- -59.89857,
- 5.10754
- ],
- [
- -59.97549,
- 4.60302
- ],
- [
- -59.59676,
- 4.43987
- ],
- [
- -59.41942,
- 3.96994
- ],
- [
- -59.71017,
- 3.54201
- ],
- [
- -59.88955,
- 2.72301
- ],
- [
- -59.63006,
- 2.31633
- ],
- [
- -59.63382,
- 1.96658
- ],
- [
- -59.18812,
- 1.47808
- ],
- [
- -58.80545,
- 1.32073
- ],
- [
- -58.35933,
- 1.68993
- ],
- [
- -57.6,
- 1.80391
- ],
- [
- -57.39854,
- 2.06512
- ],
- [
- -57.12392,
- 2.12876
- ],
- [
- -56.02925,
- 1.94945
- ],
- [
- -56.23884,
- 2.26335
- ],
- [
- -55.98195,
- 2.62866
- ],
- [
- -55.64816,
- 2.51995
- ],
- [
- -54.93958,
- 2.68251
- ],
- [
- -54.24988,
- 2.25056
- ],
- [
- -53.73937,
- 2.47373
- ],
- [
- -52.98578,
- 2.28049
- ],
- [
- -52.65712,
- 2.56407
- ],
- [
- -52.41739,
- 3.22121
- ],
- [
- -51.73983,
- 4.11916
- ],
- [
- -51.7246,
- 4.55687
- ],
- [
- -51.0112,
- 5.5229
- ],
- [
- -43.48209,
- 5.33583
- ],
- [
- -29.3325,
- 2.33596
- ]
- ]
- ],
- "terms_text": "IBGE",
- "overlay": true
- },
- {
- "id": "IBGE_BC250_Pista_Pouso",
- "name": "IBGE-BC250-Pista de Pouso",
- "type": "wms",
- "template": "http://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Pista_Ponto_Pouso_L&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -29.3325,
- 2.33596
- ],
- [
- -28.72472,
- 2.03155
- ],
- [
- -27.76041,
- -8.93703
- ],
- [
- -27.67249,
- -22.20839
- ],
- [
- -51.11495,
- -35.46552
- ],
- [
- -53.39394,
- -33.85064
- ],
- [
- -53.62553,
- -33.72493
- ],
- [
- -53.62503,
- -33.15428
- ],
- [
- -53.24498,
- -32.73392
- ],
- [
- -53.65747,
- -32.51873
- ],
- [
- -53.8329,
- -32.16592
- ],
- [
- -54.64174,
- -31.55507
- ],
- [
- -55.29638,
- -31.3429
- ],
- [
- -55.57371,
- -30.99691
- ],
- [
- -56.06384,
- -31.16749
- ],
- [
- -56.10468,
- -30.86436
- ],
- [
- -56.86862,
- -30.20752
- ],
- [
- -57.39671,
- -30.40464
- ],
- [
- -57.74384,
- -30.22142
- ],
- [
- -55.83724,
- -28.16598
- ],
- [
- -54.86969,
- -27.44994
- ],
- [
- -53.9016,
- -27.02998
- ],
- [
- -53.74972,
- -26.25781
- ],
- [
- -53.97158,
- -25.74513
- ],
- [
- -54.44723,
- -25.79609
- ],
- [
- -54.67802,
- -25.64668
- ],
- [
- -54.36097,
- -24.35145
- ],
- [
- -54.41679,
- -24.06527
- ],
- [
- -54.64355,
- -23.94107
- ],
- [
- -55.22163,
- -24.11355
- ],
- [
- -55.49138,
- -24.02797
- ],
- [
- -55.71734,
- -22.68488
- ],
- [
- -55.90555,
- -22.39886
- ],
- [
- -56.45255,
- -22.21731
- ],
- [
- -56.8256,
- -22.4002
- ],
- [
- -57.34109,
- -22.34351
- ],
- [
- -58.08472,
- -22.13075
- ],
- [
- -57.95766,
- -20.99818
- ],
- [
- -58.26551,
- -20.24147
- ],
- [
- -58.03577,
- -19.95871
- ],
- [
- -58.23083,
- -19.75211
- ],
- [
- -57.64739,
- -18.19828
- ],
- [
- -57.89356,
- -17.57377
- ],
- [
- -58.16997,
- -17.53519
- ],
- [
- -58.48825,
- -17.21961
- ],
- [
- -58.57691,
- -16.81466
- ],
- [
- -58.45563,
- -16.42158
- ],
- [
- -60.2541,
- -16.32571
- ],
- [
- -60.33481,
- -15.51483
- ],
- [
- -60.67423,
- -15.1122
- ],
- [
- -60.34999,
- -14.99707
- ],
- [
- -60.63603,
- -13.84119
- ],
- [
- -61.07283,
- -13.62569
- ],
- [
- -61.9025,
- -13.62647
- ],
- [
- -62.21395,
- -13.25048
- ],
- [
- -62.80185,
- -13.10905
- ],
- [
- -63.17194,
- -12.76568
- ],
- [
- -63.74229,
- -12.54071
- ],
- [
- -64.32845,
- -12.59578
- ],
- [
- -65.10261,
- -12.0682
- ],
- [
- -65.45781,
- -11.27865
- ],
- [
- -65.41641,
- -9.83894
- ],
- [
- -66.52331,
- -9.98587
- ],
- [
- -67.66452,
- -10.80093
- ],
- [
- -67.99778,
- -10.75991
- ],
- [
- -68.52286,
- -11.20807
- ],
- [
- -69.88988,
- -11.02776
- ],
- [
- -70.30957,
- -11.1699
- ],
- [
- -70.71896,
- -11.02003
- ],
- [
- -70.68128,
- -9.66908
- ],
- [
- -71.27536,
- -10.08971
- ],
- [
- -72.18053,
- -10.09967
- ],
- [
- -72.41623,
- -9.5874
- ],
- [
- -73.29207,
- -9.45415
- ],
- [
- -73.0625,
- -9.01727
- ],
- [
- -73.61432,
- -8.40982
- ],
- [
- -74.09056,
- -7.52755
- ],
- [
- -74.03652,
- -7.27885
- ],
- [
- -73.84718,
- -7.23829
- ],
- [
- -73.78618,
- -6.77487
- ],
- [
- -73.22362,
- -6.43011
- ],
- [
- -73.33719,
- -6.02974
- ],
- [
- -72.93016,
- -5.03871
- ],
- [
- -71.93973,
- -4.42503
- ],
- [
- -70.96802,
- -4.24829
- ],
- [
- -70.79598,
- -4.06493
- ],
- [
- -70.02393,
- -4.16735
- ],
- [
- -69.51025,
- -1.13409
- ],
- [
- -69.70776,
- -0.56762
- ],
- [
- -70.13645,
- -0.22616
- ],
- [
- -70.14083,
- 0.5844
- ],
- [
- -69.26594,
- 0.8065
- ],
- [
- -69.34226,
- 0.96892
- ],
- [
- -69.92481,
- 1.01571
- ],
- [
- -69.92343,
- 1.77385
- ],
- [
- -68.38511,
- 1.82943
- ],
- [
- -68.24848,
- 2.11981
- ],
- [
- -67.94571,
- 1.94842
- ],
- [
- -67.37696,
- 2.32747
- ],
- [
- -67.05751,
- 1.85834
- ],
- [
- -67.00579,
- 1.2916
- ],
- [
- -66.79967,
- 1.31468
- ],
- [
- -66.28683,
- 0.85771
- ],
- [
- -65.67671,
- 1.11115
- ],
- [
- -65.42494,
- 0.96655
- ],
- [
- -65.15671,
- 1.24203
- ],
- [
- -64.27483,
- 1.60159
- ],
- [
- -64.0486,
- 2.06514
- ],
- [
- -63.47236,
- 2.27936
- ],
- [
- -64.13446,
- 2.43391
- ],
- [
- -64.10005,
- 2.72378
- ],
- [
- -64.32628,
- 3.11828
- ],
- [
- -64.28142,
- 3.54198
- ],
- [
- -64.88451,
- 4.11767
- ],
- [
- -64.88064,
- 4.34246
- ],
- [
- -64.13653,
- 4.22315
- ],
- [
- -63.95465,
- 4.02132
- ],
- [
- -63.17706,
- 4.0483
- ],
- [
- -62.96093,
- 3.76366
- ],
- [
- -62.82024,
- 4.10602
- ],
- [
- -62.49922,
- 4.27081
- ],
- [
- -61.91181,
- 4.26284
- ],
- [
- -61.35393,
- 4.6301
- ],
- [
- -61.04904,
- 4.62312
- ],
- [
- -60.70452,
- 4.96985
- ],
- [
- -60.78709,
- 5.29676
- ],
- [
- -60.22457,
- 5.37121
- ],
- [
- -59.89857,
- 5.10754
- ],
- [
- -59.97549,
- 4.60302
- ],
- [
- -59.59676,
- 4.43987
- ],
- [
- -59.41942,
- 3.96994
- ],
- [
- -59.71017,
- 3.54201
- ],
- [
- -59.88955,
- 2.72301
- ],
- [
- -59.63006,
- 2.31633
- ],
- [
- -59.63382,
- 1.96658
- ],
- [
- -59.18812,
- 1.47808
- ],
- [
- -58.80545,
- 1.32073
- ],
- [
- -58.35933,
- 1.68993
- ],
- [
- -57.6,
- 1.80391
- ],
- [
- -57.39854,
- 2.06512
- ],
- [
- -57.12392,
- 2.12876
- ],
- [
- -56.02925,
- 1.94945
- ],
- [
- -56.23884,
- 2.26335
- ],
- [
- -55.98195,
- 2.62866
- ],
- [
- -55.64816,
- 2.51995
- ],
- [
- -54.93958,
- 2.68251
- ],
- [
- -54.24988,
- 2.25056
- ],
- [
- -53.73937,
- 2.47373
- ],
- [
- -52.98578,
- 2.28049
- ],
- [
- -52.65712,
- 2.56407
- ],
- [
- -52.41739,
- 3.22121
- ],
- [
- -51.73983,
- 4.11916
- ],
- [
- -51.7246,
- 4.55687
- ],
- [
- -51.0112,
- 5.5229
- ],
- [
- -43.48209,
- 5.33583
- ],
- [
- -29.3325,
- 2.33596
- ]
- ]
- ],
- "terms_text": "IBGE",
- "overlay": true
- },
- {
- "id": "IBGE_BC250_Rios_Drenagem",
- "name": "IBGE-BC250-Rios Drenagem",
- "type": "wms",
- "template": "http://www.geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Trecho_Drenagem_L&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -29.3325,
- 2.33596
- ],
- [
- -28.72472,
- 2.03155
- ],
- [
- -27.76041,
- -8.93703
- ],
- [
- -27.67249,
- -22.20839
- ],
- [
- -51.11495,
- -35.46552
- ],
- [
- -53.39394,
- -33.85064
- ],
- [
- -53.62553,
- -33.72493
- ],
- [
- -53.62503,
- -33.15428
- ],
- [
- -53.24498,
- -32.73392
- ],
- [
- -53.65747,
- -32.51873
- ],
- [
- -53.8329,
- -32.16592
- ],
- [
- -54.64174,
- -31.55507
- ],
- [
- -55.29638,
- -31.3429
- ],
- [
- -55.57371,
- -30.99691
- ],
- [
- -56.06384,
- -31.16749
- ],
- [
- -56.10468,
- -30.86436
- ],
- [
- -56.86862,
- -30.20752
- ],
- [
- -57.39671,
- -30.40464
- ],
- [
- -57.74384,
- -30.22142
- ],
- [
- -55.83724,
- -28.16598
- ],
- [
- -54.86969,
- -27.44994
- ],
- [
- -53.9016,
- -27.02998
- ],
- [
- -53.74972,
- -26.25781
- ],
- [
- -53.97158,
- -25.74513
- ],
- [
- -54.44723,
- -25.79609
- ],
- [
- -54.67802,
- -25.64668
- ],
- [
- -54.36097,
- -24.35145
- ],
- [
- -54.41679,
- -24.06527
- ],
- [
- -54.64355,
- -23.94107
- ],
- [
- -55.22163,
- -24.11355
- ],
- [
- -55.49138,
- -24.02797
- ],
- [
- -55.71734,
- -22.68488
- ],
- [
- -55.90555,
- -22.39886
- ],
- [
- -56.45255,
- -22.21731
- ],
- [
- -56.8256,
- -22.4002
- ],
- [
- -57.34109,
- -22.34351
- ],
- [
- -58.08472,
- -22.13075
- ],
- [
- -57.95766,
- -20.99818
- ],
- [
- -58.26551,
- -20.24147
- ],
- [
- -58.03577,
- -19.95871
- ],
- [
- -58.23083,
- -19.75211
- ],
- [
- -57.64739,
- -18.19828
- ],
- [
- -57.89356,
- -17.57377
- ],
- [
- -58.16997,
- -17.53519
- ],
- [
- -58.48825,
- -17.21961
- ],
- [
- -58.57691,
- -16.81466
- ],
- [
- -58.45563,
- -16.42158
- ],
- [
- -60.2541,
- -16.32571
- ],
- [
- -60.33481,
- -15.51483
- ],
- [
- -60.67423,
- -15.1122
- ],
- [
- -60.34999,
- -14.99707
- ],
- [
- -60.63603,
- -13.84119
- ],
- [
- -61.07283,
- -13.62569
- ],
- [
- -61.9025,
- -13.62647
- ],
- [
- -62.21395,
- -13.25048
- ],
- [
- -62.80185,
- -13.10905
- ],
- [
- -63.17194,
- -12.76568
- ],
- [
- -63.74229,
- -12.54071
- ],
- [
- -64.32845,
- -12.59578
- ],
- [
- -65.10261,
- -12.0682
- ],
- [
- -65.45781,
- -11.27865
- ],
- [
- -65.41641,
- -9.83894
- ],
- [
- -66.52331,
- -9.98587
- ],
- [
- -67.66452,
- -10.80093
- ],
- [
- -67.99778,
- -10.75991
- ],
- [
- -68.52286,
- -11.20807
- ],
- [
- -69.88988,
- -11.02776
- ],
- [
- -70.30957,
- -11.1699
- ],
- [
- -70.71896,
- -11.02003
- ],
- [
- -70.68128,
- -9.66908
- ],
- [
- -71.27536,
- -10.08971
- ],
- [
- -72.18053,
- -10.09967
- ],
- [
- -72.41623,
- -9.5874
- ],
- [
- -73.29207,
- -9.45415
- ],
- [
- -73.0625,
- -9.01727
- ],
- [
- -73.61432,
- -8.40982
- ],
- [
- -74.09056,
- -7.52755
- ],
- [
- -74.03652,
- -7.27885
- ],
- [
- -73.84718,
- -7.23829
- ],
- [
- -73.78618,
- -6.77487
- ],
- [
- -73.22362,
- -6.43011
- ],
- [
- -73.33719,
- -6.02974
- ],
- [
- -72.93016,
- -5.03871
- ],
- [
- -71.93973,
- -4.42503
- ],
- [
- -70.96802,
- -4.24829
- ],
- [
- -70.79598,
- -4.06493
- ],
- [
- -70.02393,
- -4.16735
- ],
- [
- -69.51025,
- -1.13409
- ],
- [
- -69.70776,
- -0.56762
- ],
- [
- -70.13645,
- -0.22616
- ],
- [
- -70.14083,
- 0.5844
- ],
- [
- -69.26594,
- 0.8065
- ],
- [
- -69.34226,
- 0.96892
- ],
- [
- -69.92481,
- 1.01571
- ],
- [
- -69.92343,
- 1.77385
- ],
- [
- -68.38511,
- 1.82943
- ],
- [
- -68.24848,
- 2.11981
- ],
- [
- -67.94571,
- 1.94842
- ],
- [
- -67.37696,
- 2.32747
- ],
- [
- -67.05751,
- 1.85834
- ],
- [
- -67.00579,
- 1.2916
- ],
- [
- -66.79967,
- 1.31468
- ],
- [
- -66.28683,
- 0.85771
- ],
- [
- -65.67671,
- 1.11115
- ],
- [
- -65.42494,
- 0.96655
- ],
- [
- -65.15671,
- 1.24203
- ],
- [
- -64.27483,
- 1.60159
- ],
- [
- -64.0486,
- 2.06514
- ],
- [
- -63.47236,
- 2.27936
- ],
- [
- -64.13446,
- 2.43391
- ],
- [
- -64.10005,
- 2.72378
- ],
- [
- -64.32628,
- 3.11828
- ],
- [
- -64.28142,
- 3.54198
- ],
- [
- -64.88451,
- 4.11767
- ],
- [
- -64.88064,
- 4.34246
- ],
- [
- -64.13653,
- 4.22315
- ],
- [
- -63.95465,
- 4.02132
- ],
- [
- -63.17706,
- 4.0483
- ],
- [
- -62.96093,
- 3.76366
- ],
- [
- -62.82024,
- 4.10602
- ],
- [
- -62.49922,
- 4.27081
- ],
- [
- -61.91181,
- 4.26284
- ],
- [
- -61.35393,
- 4.6301
- ],
- [
- -61.04904,
- 4.62312
- ],
- [
- -60.70452,
- 4.96985
- ],
- [
- -60.78709,
- 5.29676
- ],
- [
- -60.22457,
- 5.37121
- ],
- [
- -59.89857,
- 5.10754
- ],
- [
- -59.97549,
- 4.60302
- ],
- [
- -59.59676,
- 4.43987
- ],
- [
- -59.41942,
- 3.96994
- ],
- [
- -59.71017,
- 3.54201
- ],
- [
- -59.88955,
- 2.72301
- ],
- [
- -59.63006,
- 2.31633
- ],
- [
- -59.63382,
- 1.96658
- ],
- [
- -59.18812,
- 1.47808
- ],
- [
- -58.80545,
- 1.32073
- ],
- [
- -58.35933,
- 1.68993
- ],
- [
- -57.6,
- 1.80391
- ],
- [
- -57.39854,
- 2.06512
- ],
- [
- -57.12392,
- 2.12876
- ],
- [
- -56.02925,
- 1.94945
- ],
- [
- -56.23884,
- 2.26335
- ],
- [
- -55.98195,
- 2.62866
- ],
- [
- -55.64816,
- 2.51995
- ],
- [
- -54.93958,
- 2.68251
- ],
- [
- -54.24988,
- 2.25056
- ],
- [
- -53.73937,
- 2.47373
- ],
- [
- -52.98578,
- 2.28049
- ],
- [
- -52.65712,
- 2.56407
- ],
- [
- -52.41739,
- 3.22121
- ],
- [
- -51.73983,
- 4.11916
- ],
- [
- -51.7246,
- 4.55687
- ],
- [
- -51.0112,
- 5.5229
- ],
- [
- -43.48209,
- 5.33583
- ],
- [
- -29.3325,
- 2.33596
- ]
- ]
- ],
- "terms_text": "IBGE",
- "overlay": true
- },
- {
- "id": "IBGE_BC250_Terra_Indegina",
- "name": "IBGE-BC250-Terra Indigena",
- "type": "wms",
- "template": "http://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Terra_Indigena_A&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -29.3325,
- 2.33596
- ],
- [
- -28.72472,
- 2.03155
- ],
- [
- -27.76041,
- -8.93703
- ],
- [
- -27.67249,
- -22.20839
- ],
- [
- -51.11495,
- -35.46552
- ],
- [
- -53.39394,
- -33.85064
- ],
- [
- -53.62553,
- -33.72493
- ],
- [
- -53.62503,
- -33.15428
- ],
- [
- -53.24498,
- -32.73392
- ],
- [
- -53.65747,
- -32.51873
- ],
- [
- -53.8329,
- -32.16592
- ],
- [
- -54.64174,
- -31.55507
- ],
- [
- -55.29638,
- -31.3429
- ],
- [
- -55.57371,
- -30.99691
- ],
- [
- -56.06384,
- -31.16749
- ],
- [
- -56.10468,
- -30.86436
- ],
- [
- -56.86862,
- -30.20752
- ],
- [
- -57.39671,
- -30.40464
- ],
- [
- -57.74384,
- -30.22142
- ],
- [
- -55.83724,
- -28.16598
- ],
- [
- -54.86969,
- -27.44994
- ],
- [
- -53.9016,
- -27.02998
- ],
- [
- -53.74972,
- -26.25781
- ],
- [
- -53.97158,
- -25.74513
- ],
- [
- -54.44723,
- -25.79609
- ],
- [
- -54.67802,
- -25.64668
- ],
- [
- -54.36097,
- -24.35145
- ],
- [
- -54.41679,
- -24.06527
- ],
- [
- -54.64355,
- -23.94107
- ],
- [
- -55.22163,
- -24.11355
- ],
- [
- -55.49138,
- -24.02797
- ],
- [
- -55.71734,
- -22.68488
- ],
- [
- -55.90555,
- -22.39886
- ],
- [
- -56.45255,
- -22.21731
- ],
- [
- -56.8256,
- -22.4002
- ],
- [
- -57.34109,
- -22.34351
- ],
- [
- -58.08472,
- -22.13075
- ],
- [
- -57.95766,
- -20.99818
- ],
- [
- -58.26551,
- -20.24147
- ],
- [
- -58.03577,
- -19.95871
- ],
- [
- -58.23083,
- -19.75211
- ],
- [
- -57.64739,
- -18.19828
- ],
- [
- -57.89356,
- -17.57377
- ],
- [
- -58.16997,
- -17.53519
- ],
- [
- -58.48825,
- -17.21961
- ],
- [
- -58.57691,
- -16.81466
- ],
- [
- -58.45563,
- -16.42158
- ],
- [
- -60.2541,
- -16.32571
- ],
- [
- -60.33481,
- -15.51483
- ],
- [
- -60.67423,
- -15.1122
- ],
- [
- -60.34999,
- -14.99707
- ],
- [
- -60.63603,
- -13.84119
- ],
- [
- -61.07283,
- -13.62569
- ],
- [
- -61.9025,
- -13.62647
- ],
- [
- -62.21395,
- -13.25048
- ],
- [
- -62.80185,
- -13.10905
- ],
- [
- -63.17194,
- -12.76568
- ],
- [
- -63.74229,
- -12.54071
- ],
- [
- -64.32845,
- -12.59578
- ],
- [
- -65.10261,
- -12.0682
- ],
- [
- -65.45781,
- -11.27865
- ],
- [
- -65.41641,
- -9.83894
- ],
- [
- -66.52331,
- -9.98587
- ],
- [
- -67.66452,
- -10.80093
- ],
- [
- -67.99778,
- -10.75991
- ],
- [
- -68.52286,
- -11.20807
- ],
- [
- -69.88988,
- -11.02776
- ],
- [
- -70.30957,
- -11.1699
- ],
- [
- -70.71896,
- -11.02003
- ],
- [
- -70.68128,
- -9.66908
- ],
- [
- -71.27536,
- -10.08971
- ],
- [
- -72.18053,
- -10.09967
- ],
- [
- -72.41623,
- -9.5874
- ],
- [
- -73.29207,
- -9.45415
- ],
- [
- -73.0625,
- -9.01727
- ],
- [
- -73.61432,
- -8.40982
- ],
- [
- -74.09056,
- -7.52755
- ],
- [
- -74.03652,
- -7.27885
- ],
- [
- -73.84718,
- -7.23829
- ],
- [
- -73.78618,
- -6.77487
- ],
- [
- -73.22362,
- -6.43011
- ],
- [
- -73.33719,
- -6.02974
- ],
- [
- -72.93016,
- -5.03871
- ],
- [
- -71.93973,
- -4.42503
- ],
- [
- -70.96802,
- -4.24829
- ],
- [
- -70.79598,
- -4.06493
- ],
- [
- -70.02393,
- -4.16735
- ],
- [
- -69.51025,
- -1.13409
- ],
- [
- -69.70776,
- -0.56762
- ],
- [
- -70.13645,
- -0.22616
- ],
- [
- -70.14083,
- 0.5844
- ],
- [
- -69.26594,
- 0.8065
- ],
- [
- -69.34226,
- 0.96892
- ],
- [
- -69.92481,
- 1.01571
- ],
- [
- -69.92343,
- 1.77385
- ],
- [
- -68.38511,
- 1.82943
- ],
- [
- -68.24848,
- 2.11981
- ],
- [
- -67.94571,
- 1.94842
- ],
- [
- -67.37696,
- 2.32747
- ],
- [
- -67.05751,
- 1.85834
- ],
- [
- -67.00579,
- 1.2916
- ],
- [
- -66.79967,
- 1.31468
- ],
- [
- -66.28683,
- 0.85771
- ],
- [
- -65.67671,
- 1.11115
- ],
- [
- -65.42494,
- 0.96655
- ],
- [
- -65.15671,
- 1.24203
- ],
- [
- -64.27483,
- 1.60159
- ],
- [
- -64.0486,
- 2.06514
- ],
- [
- -63.47236,
- 2.27936
- ],
- [
- -64.13446,
- 2.43391
- ],
- [
- -64.10005,
- 2.72378
- ],
- [
- -64.32628,
- 3.11828
- ],
- [
- -64.28142,
- 3.54198
- ],
- [
- -64.88451,
- 4.11767
- ],
- [
- -64.88064,
- 4.34246
- ],
- [
- -64.13653,
- 4.22315
- ],
- [
- -63.95465,
- 4.02132
- ],
- [
- -63.17706,
- 4.0483
- ],
- [
- -62.96093,
- 3.76366
- ],
- [
- -62.82024,
- 4.10602
- ],
- [
- -62.49922,
- 4.27081
- ],
- [
- -61.91181,
- 4.26284
- ],
- [
- -61.35393,
- 4.6301
- ],
- [
- -61.04904,
- 4.62312
- ],
- [
- -60.70452,
- 4.96985
- ],
- [
- -60.78709,
- 5.29676
- ],
- [
- -60.22457,
- 5.37121
- ],
- [
- -59.89857,
- 5.10754
- ],
- [
- -59.97549,
- 4.60302
- ],
- [
- -59.59676,
- 4.43987
- ],
- [
- -59.41942,
- 3.96994
- ],
- [
- -59.71017,
- 3.54201
- ],
- [
- -59.88955,
- 2.72301
- ],
- [
- -59.63006,
- 2.31633
- ],
- [
- -59.63382,
- 1.96658
- ],
- [
- -59.18812,
- 1.47808
- ],
- [
- -58.80545,
- 1.32073
- ],
- [
- -58.35933,
- 1.68993
- ],
- [
- -57.6,
- 1.80391
- ],
- [
- -57.39854,
- 2.06512
- ],
- [
- -57.12392,
- 2.12876
- ],
- [
- -56.02925,
- 1.94945
- ],
- [
- -56.23884,
- 2.26335
- ],
- [
- -55.98195,
- 2.62866
- ],
- [
- -55.64816,
- 2.51995
- ],
- [
- -54.93958,
- 2.68251
- ],
- [
- -54.24988,
- 2.25056
- ],
- [
- -53.73937,
- 2.47373
- ],
- [
- -52.98578,
- 2.28049
- ],
- [
- -52.65712,
- 2.56407
- ],
- [
- -52.41739,
- 3.22121
- ],
- [
- -51.73983,
- 4.11916
- ],
- [
- -51.7246,
- 4.55687
- ],
- [
- -51.0112,
- 5.5229
- ],
- [
- -43.48209,
- 5.33583
- ],
- [
- -29.3325,
- 2.33596
- ]
- ]
- ],
- "terms_text": "IBGE",
- "overlay": true
- },
- {
- "id": "IBGE_BC250_Rodoviario",
- "name": "IBGE-BC250-Trecho Rodoviario",
- "type": "wms",
- "template": "http://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Trecho_Rodoviario_L&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image/png&TRANSPARENT=TRUE",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -29.3325,
- 2.33596
- ],
- [
- -28.72472,
- 2.03155
- ],
- [
- -27.76041,
- -8.93703
- ],
- [
- -27.67249,
- -22.20839
- ],
- [
- -51.11495,
- -35.46552
- ],
- [
- -53.39394,
- -33.85064
- ],
- [
- -53.62553,
- -33.72493
- ],
- [
- -53.62503,
- -33.15428
- ],
- [
- -53.24498,
- -32.73392
- ],
- [
- -53.65747,
- -32.51873
- ],
- [
- -53.8329,
- -32.16592
- ],
- [
- -54.64174,
- -31.55507
- ],
- [
- -55.29638,
- -31.3429
- ],
- [
- -55.57371,
- -30.99691
- ],
- [
- -56.06384,
- -31.16749
- ],
- [
- -56.10468,
- -30.86436
- ],
- [
- -56.86862,
- -30.20752
- ],
- [
- -57.39671,
- -30.40464
- ],
- [
- -57.74384,
- -30.22142
- ],
- [
- -55.83724,
- -28.16598
- ],
- [
- -54.86969,
- -27.44994
- ],
- [
- -53.9016,
- -27.02998
- ],
- [
- -53.74972,
- -26.25781
- ],
- [
- -53.97158,
- -25.74513
- ],
- [
- -54.44723,
- -25.79609
- ],
- [
- -54.67802,
- -25.64668
- ],
- [
- -54.36097,
- -24.35145
- ],
- [
- -54.41679,
- -24.06527
- ],
- [
- -54.64355,
- -23.94107
- ],
- [
- -55.22163,
- -24.11355
- ],
- [
- -55.49138,
- -24.02797
- ],
- [
- -55.71734,
- -22.68488
- ],
- [
- -55.90555,
- -22.39886
- ],
- [
- -56.45255,
- -22.21731
- ],
- [
- -56.8256,
- -22.4002
- ],
- [
- -57.34109,
- -22.34351
- ],
- [
- -58.08472,
- -22.13075
- ],
- [
- -57.95766,
- -20.99818
- ],
- [
- -58.26551,
- -20.24147
- ],
- [
- -58.03577,
- -19.95871
- ],
- [
- -58.23083,
- -19.75211
- ],
- [
- -57.64739,
- -18.19828
- ],
- [
- -57.89356,
- -17.57377
- ],
- [
- -58.16997,
- -17.53519
- ],
- [
- -58.48825,
- -17.21961
- ],
- [
- -58.57691,
- -16.81466
- ],
- [
- -58.45563,
- -16.42158
- ],
- [
- -60.2541,
- -16.32571
- ],
- [
- -60.33481,
- -15.51483
- ],
- [
- -60.67423,
- -15.1122
- ],
- [
- -60.34999,
- -14.99707
- ],
- [
- -60.63603,
- -13.84119
- ],
- [
- -61.07283,
- -13.62569
- ],
- [
- -61.9025,
- -13.62647
- ],
- [
- -62.21395,
- -13.25048
- ],
- [
- -62.80185,
- -13.10905
- ],
- [
- -63.17194,
- -12.76568
- ],
- [
- -63.74229,
- -12.54071
- ],
- [
- -64.32845,
- -12.59578
- ],
- [
- -65.10261,
- -12.0682
- ],
- [
- -65.45781,
- -11.27865
- ],
- [
- -65.41641,
- -9.83894
- ],
- [
- -66.52331,
- -9.98587
- ],
- [
- -67.66452,
- -10.80093
- ],
- [
- -67.99778,
- -10.75991
- ],
- [
- -68.52286,
- -11.20807
- ],
- [
- -69.88988,
- -11.02776
- ],
- [
- -70.30957,
- -11.1699
- ],
- [
- -70.71896,
- -11.02003
- ],
- [
- -70.68128,
- -9.66908
- ],
- [
- -71.27536,
- -10.08971
- ],
- [
- -72.18053,
- -10.09967
- ],
- [
- -72.41623,
- -9.5874
- ],
- [
- -73.29207,
- -9.45415
- ],
- [
- -73.0625,
- -9.01727
- ],
- [
- -73.61432,
- -8.40982
- ],
- [
- -74.09056,
- -7.52755
- ],
- [
- -74.03652,
- -7.27885
- ],
- [
- -73.84718,
- -7.23829
- ],
- [
- -73.78618,
- -6.77487
- ],
- [
- -73.22362,
- -6.43011
- ],
- [
- -73.33719,
- -6.02974
- ],
- [
- -72.93016,
- -5.03871
- ],
- [
- -71.93973,
- -4.42503
- ],
- [
- -70.96802,
- -4.24829
- ],
- [
- -70.79598,
- -4.06493
- ],
- [
- -70.02393,
- -4.16735
- ],
- [
- -69.51025,
- -1.13409
- ],
- [
- -69.70776,
- -0.56762
- ],
- [
- -70.13645,
- -0.22616
- ],
- [
- -70.14083,
- 0.5844
- ],
- [
- -69.26594,
- 0.8065
- ],
- [
- -69.34226,
- 0.96892
- ],
- [
- -69.92481,
- 1.01571
- ],
- [
- -69.92343,
- 1.77385
- ],
- [
- -68.38511,
- 1.82943
- ],
- [
- -68.24848,
- 2.11981
- ],
- [
- -67.94571,
- 1.94842
- ],
- [
- -67.37696,
- 2.32747
- ],
- [
- -67.05751,
- 1.85834
- ],
- [
- -67.00579,
- 1.2916
- ],
- [
- -66.79967,
- 1.31468
- ],
- [
- -66.28683,
- 0.85771
- ],
- [
- -65.67671,
- 1.11115
- ],
- [
- -65.42494,
- 0.96655
- ],
- [
- -65.15671,
- 1.24203
- ],
- [
- -64.27483,
- 1.60159
- ],
- [
- -64.0486,
- 2.06514
- ],
- [
- -63.47236,
- 2.27936
- ],
- [
- -64.13446,
- 2.43391
- ],
- [
- -64.10005,
- 2.72378
- ],
- [
- -64.32628,
- 3.11828
- ],
- [
- -64.28142,
- 3.54198
- ],
- [
- -64.88451,
- 4.11767
- ],
- [
- -64.88064,
- 4.34246
- ],
- [
- -64.13653,
- 4.22315
- ],
- [
- -63.95465,
- 4.02132
- ],
- [
- -63.17706,
- 4.0483
- ],
- [
- -62.96093,
- 3.76366
- ],
- [
- -62.82024,
- 4.10602
- ],
- [
- -62.49922,
- 4.27081
- ],
- [
- -61.91181,
- 4.26284
- ],
- [
- -61.35393,
- 4.6301
- ],
- [
- -61.04904,
- 4.62312
- ],
- [
- -60.70452,
- 4.96985
- ],
- [
- -60.78709,
- 5.29676
- ],
- [
- -60.22457,
- 5.37121
- ],
- [
- -59.89857,
- 5.10754
- ],
- [
- -59.97549,
- 4.60302
- ],
- [
- -59.59676,
- 4.43987
- ],
- [
- -59.41942,
- 3.96994
- ],
- [
- -59.71017,
- 3.54201
- ],
- [
- -59.88955,
- 2.72301
- ],
- [
- -59.63006,
- 2.31633
- ],
- [
- -59.63382,
- 1.96658
- ],
- [
- -59.18812,
- 1.47808
- ],
- [
- -58.80545,
- 1.32073
- ],
- [
- -58.35933,
- 1.68993
- ],
- [
- -57.6,
- 1.80391
- ],
- [
- -57.39854,
- 2.06512
- ],
- [
- -57.12392,
- 2.12876
- ],
- [
- -56.02925,
- 1.94945
- ],
- [
- -56.23884,
- 2.26335
- ],
- [
- -55.98195,
- 2.62866
- ],
- [
- -55.64816,
- 2.51995
- ],
- [
- -54.93958,
- 2.68251
- ],
- [
- -54.24988,
- 2.25056
- ],
- [
- -53.73937,
- 2.47373
- ],
- [
- -52.98578,
- 2.28049
- ],
- [
- -52.65712,
- 2.56407
- ],
- [
- -52.41739,
- 3.22121
- ],
- [
- -51.73983,
- 4.11916
- ],
- [
- -51.7246,
- 4.55687
- ],
- [
- -51.0112,
- 5.5229
- ],
- [
- -43.48209,
- 5.33583
- ],
- [
- -29.3325,
- 2.33596
- ]
- ]
- ],
- "terms_text": "IBGE",
- "overlay": true
- },
- {
- "id": "IBGE_BC250_Uso_Sustentavel",
- "name": "IBGE-BC250-Unidade de Uso Sistentável - APA",
- "type": "wms",
- "template": "http://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Unidade_Uso_Sustentavel_A&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -29.3325,
- 2.33596
- ],
- [
- -28.72472,
- 2.03155
- ],
- [
- -27.76041,
- -8.93703
- ],
- [
- -27.67249,
- -22.20839
- ],
- [
- -51.11495,
- -35.46552
- ],
- [
- -53.39394,
- -33.85064
- ],
- [
- -53.62553,
- -33.72493
- ],
- [
- -53.62503,
- -33.15428
- ],
- [
- -53.24498,
- -32.73392
- ],
- [
- -53.65747,
- -32.51873
- ],
- [
- -53.8329,
- -32.16592
- ],
- [
- -54.64174,
- -31.55507
- ],
- [
- -55.29638,
- -31.3429
- ],
- [
- -55.57371,
- -30.99691
- ],
- [
- -56.06384,
- -31.16749
- ],
- [
- -56.10468,
- -30.86436
- ],
- [
- -56.86862,
- -30.20752
- ],
- [
- -57.39671,
- -30.40464
- ],
- [
- -57.74384,
- -30.22142
- ],
- [
- -55.83724,
- -28.16598
- ],
- [
- -54.86969,
- -27.44994
- ],
- [
- -53.9016,
- -27.02998
- ],
- [
- -53.74972,
- -26.25781
- ],
- [
- -53.97158,
- -25.74513
- ],
- [
- -54.44723,
- -25.79609
- ],
- [
- -54.67802,
- -25.64668
- ],
- [
- -54.36097,
- -24.35145
- ],
- [
- -54.41679,
- -24.06527
- ],
- [
- -54.64355,
- -23.94107
- ],
- [
- -55.22163,
- -24.11355
- ],
- [
- -55.49138,
- -24.02797
- ],
- [
- -55.71734,
- -22.68488
- ],
- [
- -55.90555,
- -22.39886
- ],
- [
- -56.45255,
- -22.21731
- ],
- [
- -56.8256,
- -22.4002
- ],
- [
- -57.34109,
- -22.34351
- ],
- [
- -58.08472,
- -22.13075
- ],
- [
- -57.95766,
- -20.99818
- ],
- [
- -58.26551,
- -20.24147
- ],
- [
- -58.03577,
- -19.95871
- ],
- [
- -58.23083,
- -19.75211
- ],
- [
- -57.64739,
- -18.19828
- ],
- [
- -57.89356,
- -17.57377
- ],
- [
- -58.16997,
- -17.53519
- ],
- [
- -58.48825,
- -17.21961
- ],
- [
- -58.57691,
- -16.81466
- ],
- [
- -58.45563,
- -16.42158
- ],
- [
- -60.2541,
- -16.32571
- ],
- [
- -60.33481,
- -15.51483
- ],
- [
- -60.67423,
- -15.1122
- ],
- [
- -60.34999,
- -14.99707
- ],
- [
- -60.63603,
- -13.84119
- ],
- [
- -61.07283,
- -13.62569
- ],
- [
- -61.9025,
- -13.62647
- ],
- [
- -62.21395,
- -13.25048
- ],
- [
- -62.80185,
- -13.10905
- ],
- [
- -63.17194,
- -12.76568
- ],
- [
- -63.74229,
- -12.54071
- ],
- [
- -64.32845,
- -12.59578
- ],
- [
- -65.10261,
- -12.0682
- ],
- [
- -65.45781,
- -11.27865
- ],
- [
- -65.41641,
- -9.83894
- ],
- [
- -66.52331,
- -9.98587
- ],
- [
- -67.66452,
- -10.80093
- ],
- [
- -67.99778,
- -10.75991
- ],
- [
- -68.52286,
- -11.20807
- ],
- [
- -69.88988,
- -11.02776
- ],
- [
- -70.30957,
- -11.1699
- ],
- [
- -70.71896,
- -11.02003
- ],
- [
- -70.68128,
- -9.66908
- ],
- [
- -71.27536,
- -10.08971
- ],
- [
- -72.18053,
- -10.09967
- ],
- [
- -72.41623,
- -9.5874
- ],
- [
- -73.29207,
- -9.45415
- ],
- [
- -73.0625,
- -9.01727
- ],
- [
- -73.61432,
- -8.40982
- ],
- [
- -74.09056,
- -7.52755
- ],
- [
- -74.03652,
- -7.27885
- ],
- [
- -73.84718,
- -7.23829
- ],
- [
- -73.78618,
- -6.77487
- ],
- [
- -73.22362,
- -6.43011
- ],
- [
- -73.33719,
- -6.02974
- ],
- [
- -72.93016,
- -5.03871
- ],
- [
- -71.93973,
- -4.42503
- ],
- [
- -70.96802,
- -4.24829
- ],
- [
- -70.79598,
- -4.06493
- ],
- [
- -70.02393,
- -4.16735
- ],
- [
- -69.51025,
- -1.13409
- ],
- [
- -69.70776,
- -0.56762
- ],
- [
- -70.13645,
- -0.22616
- ],
- [
- -70.14083,
- 0.5844
- ],
- [
- -69.26594,
- 0.8065
- ],
- [
- -69.34226,
- 0.96892
- ],
- [
- -69.92481,
- 1.01571
- ],
- [
- -69.92343,
- 1.77385
- ],
- [
- -68.38511,
- 1.82943
- ],
- [
- -68.24848,
- 2.11981
- ],
- [
- -67.94571,
- 1.94842
- ],
- [
- -67.37696,
- 2.32747
- ],
- [
- -67.05751,
- 1.85834
- ],
- [
- -67.00579,
- 1.2916
- ],
- [
- -66.79967,
- 1.31468
- ],
- [
- -66.28683,
- 0.85771
- ],
- [
- -65.67671,
- 1.11115
- ],
- [
- -65.42494,
- 0.96655
- ],
- [
- -65.15671,
- 1.24203
- ],
- [
- -64.27483,
- 1.60159
- ],
- [
- -64.0486,
- 2.06514
- ],
- [
- -63.47236,
- 2.27936
- ],
- [
- -64.13446,
- 2.43391
- ],
- [
- -64.10005,
- 2.72378
- ],
- [
- -64.32628,
- 3.11828
- ],
- [
- -64.28142,
- 3.54198
- ],
- [
- -64.88451,
- 4.11767
- ],
- [
- -64.88064,
- 4.34246
- ],
- [
- -64.13653,
- 4.22315
- ],
- [
- -63.95465,
- 4.02132
- ],
- [
- -63.17706,
- 4.0483
- ],
- [
- -62.96093,
- 3.76366
- ],
- [
- -62.82024,
- 4.10602
- ],
- [
- -62.49922,
- 4.27081
- ],
- [
- -61.91181,
- 4.26284
- ],
- [
- -61.35393,
- 4.6301
- ],
- [
- -61.04904,
- 4.62312
- ],
- [
- -60.70452,
- 4.96985
- ],
- [
- -60.78709,
- 5.29676
- ],
- [
- -60.22457,
- 5.37121
- ],
- [
- -59.89857,
- 5.10754
- ],
- [
- -59.97549,
- 4.60302
- ],
- [
- -59.59676,
- 4.43987
- ],
- [
- -59.41942,
- 3.96994
- ],
- [
- -59.71017,
- 3.54201
- ],
- [
- -59.88955,
- 2.72301
- ],
- [
- -59.63006,
- 2.31633
- ],
- [
- -59.63382,
- 1.96658
- ],
- [
- -59.18812,
- 1.47808
- ],
- [
- -58.80545,
- 1.32073
- ],
- [
- -58.35933,
- 1.68993
- ],
- [
- -57.6,
- 1.80391
- ],
- [
- -57.39854,
- 2.06512
- ],
- [
- -57.12392,
- 2.12876
- ],
- [
- -56.02925,
- 1.94945
- ],
- [
- -56.23884,
- 2.26335
- ],
- [
- -55.98195,
- 2.62866
- ],
- [
- -55.64816,
- 2.51995
- ],
- [
- -54.93958,
- 2.68251
- ],
- [
- -54.24988,
- 2.25056
- ],
- [
- -53.73937,
- 2.47373
- ],
- [
- -52.98578,
- 2.28049
- ],
- [
- -52.65712,
- 2.56407
- ],
- [
- -52.41739,
- 3.22121
- ],
- [
- -51.73983,
- 4.11916
- ],
- [
- -51.7246,
- 4.55687
- ],
- [
- -51.0112,
- 5.5229
- ],
- [
- -43.48209,
- 5.33583
- ],
- [
- -29.3325,
- 2.33596
- ]
- ]
- ],
- "terms_text": "IBGE",
- "overlay": true
- },
- {
- "id": "IBGE_BC250_Villa",
- "name": "IBGE-BC250-Villa",
- "type": "wms",
- "template": "http://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Vila_P&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -29.3325,
- 2.33596
- ],
- [
- -28.72472,
- 2.03155
- ],
- [
- -27.76041,
- -8.93703
- ],
- [
- -27.67249,
- -22.20839
- ],
- [
- -51.11495,
- -35.46552
- ],
- [
- -53.39394,
- -33.85064
- ],
- [
- -53.62553,
- -33.72493
- ],
- [
- -53.62503,
- -33.15428
- ],
- [
- -53.24498,
- -32.73392
- ],
- [
- -53.65747,
- -32.51873
- ],
- [
- -53.8329,
- -32.16592
- ],
- [
- -54.64174,
- -31.55507
- ],
- [
- -55.29638,
- -31.3429
- ],
- [
- -55.57371,
- -30.99691
- ],
- [
- -56.06384,
- -31.16749
- ],
- [
- -56.10468,
- -30.86436
- ],
- [
- -56.86862,
- -30.20752
- ],
- [
- -57.39671,
- -30.40464
- ],
- [
- -57.74384,
- -30.22142
- ],
- [
- -55.83724,
- -28.16598
- ],
- [
- -54.86969,
- -27.44994
- ],
- [
- -53.9016,
- -27.02998
- ],
- [
- -53.74972,
- -26.25781
- ],
- [
- -53.97158,
- -25.74513
- ],
- [
- -54.44723,
- -25.79609
- ],
- [
- -54.67802,
- -25.64668
- ],
- [
- -54.36097,
- -24.35145
- ],
- [
- -54.41679,
- -24.06527
- ],
- [
- -54.64355,
- -23.94107
- ],
- [
- -55.22163,
- -24.11355
- ],
- [
- -55.49138,
- -24.02797
- ],
- [
- -55.71734,
- -22.68488
- ],
- [
- -55.90555,
- -22.39886
- ],
- [
- -56.45255,
- -22.21731
- ],
- [
- -56.8256,
- -22.4002
- ],
- [
- -57.34109,
- -22.34351
- ],
- [
- -58.08472,
- -22.13075
- ],
- [
- -57.95766,
- -20.99818
- ],
- [
- -58.26551,
- -20.24147
- ],
- [
- -58.03577,
- -19.95871
- ],
- [
- -58.23083,
- -19.75211
- ],
- [
- -57.64739,
- -18.19828
- ],
- [
- -57.89356,
- -17.57377
- ],
- [
- -58.16997,
- -17.53519
- ],
- [
- -58.48825,
- -17.21961
- ],
- [
- -58.57691,
- -16.81466
- ],
- [
- -58.45563,
- -16.42158
- ],
- [
- -60.2541,
- -16.32571
- ],
- [
- -60.33481,
- -15.51483
- ],
- [
- -60.67423,
- -15.1122
- ],
- [
- -60.34999,
- -14.99707
- ],
- [
- -60.63603,
- -13.84119
- ],
- [
- -61.07283,
- -13.62569
- ],
- [
- -61.9025,
- -13.62647
- ],
- [
- -62.21395,
- -13.25048
- ],
- [
- -62.80185,
- -13.10905
- ],
- [
- -63.17194,
- -12.76568
- ],
- [
- -63.74229,
- -12.54071
- ],
- [
- -64.32845,
- -12.59578
- ],
- [
- -65.10261,
- -12.0682
- ],
- [
- -65.45781,
- -11.27865
- ],
- [
- -65.41641,
- -9.83894
- ],
- [
- -66.52331,
- -9.98587
- ],
- [
- -67.66452,
- -10.80093
- ],
- [
- -67.99778,
- -10.75991
- ],
- [
- -68.52286,
- -11.20807
- ],
- [
- -69.88988,
- -11.02776
- ],
- [
- -70.30957,
- -11.1699
- ],
- [
- -70.71896,
- -11.02003
- ],
- [
- -70.68128,
- -9.66908
- ],
- [
- -71.27536,
- -10.08971
- ],
- [
- -72.18053,
- -10.09967
- ],
- [
- -72.41623,
- -9.5874
- ],
- [
- -73.29207,
- -9.45415
- ],
- [
- -73.0625,
- -9.01727
- ],
- [
- -73.61432,
- -8.40982
- ],
- [
- -74.09056,
- -7.52755
- ],
- [
- -74.03652,
- -7.27885
- ],
- [
- -73.84718,
- -7.23829
- ],
- [
- -73.78618,
- -6.77487
- ],
- [
- -73.22362,
- -6.43011
- ],
- [
- -73.33719,
- -6.02974
- ],
- [
- -72.93016,
- -5.03871
- ],
- [
- -71.93973,
- -4.42503
- ],
- [
- -70.96802,
- -4.24829
- ],
- [
- -70.79598,
- -4.06493
- ],
- [
- -70.02393,
- -4.16735
- ],
- [
- -69.51025,
- -1.13409
- ],
- [
- -69.70776,
- -0.56762
- ],
- [
- -70.13645,
- -0.22616
- ],
- [
- -70.14083,
- 0.5844
- ],
- [
- -69.26594,
- 0.8065
- ],
- [
- -69.34226,
- 0.96892
- ],
- [
- -69.92481,
- 1.01571
- ],
- [
- -69.92343,
- 1.77385
- ],
- [
- -68.38511,
- 1.82943
- ],
- [
- -68.24848,
- 2.11981
- ],
- [
- -67.94571,
- 1.94842
- ],
- [
- -67.37696,
- 2.32747
- ],
- [
- -67.05751,
- 1.85834
- ],
- [
- -67.00579,
- 1.2916
- ],
- [
- -66.79967,
- 1.31468
- ],
- [
- -66.28683,
- 0.85771
- ],
- [
- -65.67671,
- 1.11115
- ],
- [
- -65.42494,
- 0.96655
- ],
- [
- -65.15671,
- 1.24203
- ],
- [
- -64.27483,
- 1.60159
- ],
- [
- -64.0486,
- 2.06514
- ],
- [
- -63.47236,
- 2.27936
- ],
- [
- -64.13446,
- 2.43391
- ],
- [
- -64.10005,
- 2.72378
- ],
- [
- -64.32628,
- 3.11828
- ],
- [
- -64.28142,
- 3.54198
- ],
- [
- -64.88451,
- 4.11767
- ],
- [
- -64.88064,
- 4.34246
- ],
- [
- -64.13653,
- 4.22315
- ],
- [
- -63.95465,
- 4.02132
- ],
- [
- -63.17706,
- 4.0483
- ],
- [
- -62.96093,
- 3.76366
- ],
- [
- -62.82024,
- 4.10602
- ],
- [
- -62.49922,
- 4.27081
- ],
- [
- -61.91181,
- 4.26284
- ],
- [
- -61.35393,
- 4.6301
- ],
- [
- -61.04904,
- 4.62312
- ],
- [
- -60.70452,
- 4.96985
- ],
- [
- -60.78709,
- 5.29676
- ],
- [
- -60.22457,
- 5.37121
- ],
- [
- -59.89857,
- 5.10754
- ],
- [
- -59.97549,
- 4.60302
- ],
- [
- -59.59676,
- 4.43987
- ],
- [
- -59.41942,
- 3.96994
- ],
- [
- -59.71017,
- 3.54201
- ],
- [
- -59.88955,
- 2.72301
- ],
- [
- -59.63006,
- 2.31633
- ],
- [
- -59.63382,
- 1.96658
- ],
- [
- -59.18812,
- 1.47808
- ],
- [
- -58.80545,
- 1.32073
- ],
- [
- -58.35933,
- 1.68993
- ],
- [
- -57.6,
- 1.80391
- ],
- [
- -57.39854,
- 2.06512
- ],
- [
- -57.12392,
- 2.12876
- ],
- [
- -56.02925,
- 1.94945
- ],
- [
- -56.23884,
- 2.26335
- ],
- [
- -55.98195,
- 2.62866
- ],
- [
- -55.64816,
- 2.51995
- ],
- [
- -54.93958,
- 2.68251
- ],
- [
- -54.24988,
- 2.25056
- ],
- [
- -53.73937,
- 2.47373
- ],
- [
- -52.98578,
- 2.28049
- ],
- [
- -52.65712,
- 2.56407
- ],
- [
- -52.41739,
- 3.22121
- ],
- [
- -51.73983,
- 4.11916
- ],
- [
- -51.7246,
- 4.55687
- ],
- [
- -51.0112,
- 5.5229
- ],
- [
- -43.48209,
- 5.33583
- ],
- [
- -29.3325,
- 2.33596
- ]
- ]
- ],
- "terms_text": "IBGE",
- "overlay": true
- },
- {
- "id": "IBGE_BCIM_Gerador_Eletrica",
- "name": "IBGE-BCIM-Estações Geradora de Energia Elétrica",
- "type": "wms",
- "template": "http://www.geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BCIM_Est_Gerad_Energia_Eletrica_P&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -29.3325,
- 2.33596
- ],
- [
- -28.72472,
- 2.03155
- ],
- [
- -27.76041,
- -8.93703
- ],
- [
- -27.67249,
- -22.20839
- ],
- [
- -51.11495,
- -35.46552
- ],
- [
- -53.39394,
- -33.85064
- ],
- [
- -53.62553,
- -33.72493
- ],
- [
- -53.62503,
- -33.15428
- ],
- [
- -53.24498,
- -32.73392
- ],
- [
- -53.65747,
- -32.51873
- ],
- [
- -53.8329,
- -32.16592
- ],
- [
- -54.64174,
- -31.55507
- ],
- [
- -55.29638,
- -31.3429
- ],
- [
- -55.57371,
- -30.99691
- ],
- [
- -56.06384,
- -31.16749
- ],
- [
- -56.10468,
- -30.86436
- ],
- [
- -56.86862,
- -30.20752
- ],
- [
- -57.39671,
- -30.40464
- ],
- [
- -57.74384,
- -30.22142
- ],
- [
- -55.83724,
- -28.16598
- ],
- [
- -54.86969,
- -27.44994
- ],
- [
- -53.9016,
- -27.02998
- ],
- [
- -53.74972,
- -26.25781
- ],
- [
- -53.97158,
- -25.74513
- ],
- [
- -54.44723,
- -25.79609
- ],
- [
- -54.67802,
- -25.64668
- ],
- [
- -54.36097,
- -24.35145
- ],
- [
- -54.41679,
- -24.06527
- ],
- [
- -54.64355,
- -23.94107
- ],
- [
- -55.22163,
- -24.11355
- ],
- [
- -55.49138,
- -24.02797
- ],
- [
- -55.71734,
- -22.68488
- ],
- [
- -55.90555,
- -22.39886
- ],
- [
- -56.45255,
- -22.21731
- ],
- [
- -56.8256,
- -22.4002
- ],
- [
- -57.34109,
- -22.34351
- ],
- [
- -58.08472,
- -22.13075
- ],
- [
- -57.95766,
- -20.99818
- ],
- [
- -58.26551,
- -20.24147
- ],
- [
- -58.03577,
- -19.95871
- ],
- [
- -58.23083,
- -19.75211
- ],
- [
- -57.64739,
- -18.19828
- ],
- [
- -57.89356,
- -17.57377
- ],
- [
- -58.16997,
- -17.53519
- ],
- [
- -58.48825,
- -17.21961
- ],
- [
- -58.57691,
- -16.81466
- ],
- [
- -58.45563,
- -16.42158
- ],
- [
- -60.2541,
- -16.32571
- ],
- [
- -60.33481,
- -15.51483
- ],
- [
- -60.67423,
- -15.1122
- ],
- [
- -60.34999,
- -14.99707
- ],
- [
- -60.63603,
- -13.84119
- ],
- [
- -61.07283,
- -13.62569
- ],
- [
- -61.9025,
- -13.62647
- ],
- [
- -62.21395,
- -13.25048
- ],
- [
- -62.80185,
- -13.10905
- ],
- [
- -63.17194,
- -12.76568
- ],
- [
- -63.74229,
- -12.54071
- ],
- [
- -64.32845,
- -12.59578
- ],
- [
- -65.10261,
- -12.0682
- ],
- [
- -65.45781,
- -11.27865
- ],
- [
- -65.41641,
- -9.83894
- ],
- [
- -66.52331,
- -9.98587
- ],
- [
- -67.66452,
- -10.80093
- ],
- [
- -67.99778,
- -10.75991
- ],
- [
- -68.52286,
- -11.20807
- ],
- [
- -69.88988,
- -11.02776
- ],
- [
- -70.30957,
- -11.1699
- ],
- [
- -70.71896,
- -11.02003
- ],
- [
- -70.68128,
- -9.66908
- ],
- [
- -71.27536,
- -10.08971
- ],
- [
- -72.18053,
- -10.09967
- ],
- [
- -72.41623,
- -9.5874
- ],
- [
- -73.29207,
- -9.45415
- ],
- [
- -73.0625,
- -9.01727
- ],
- [
- -73.61432,
- -8.40982
- ],
- [
- -74.09056,
- -7.52755
- ],
- [
- -74.03652,
- -7.27885
- ],
- [
- -73.84718,
- -7.23829
- ],
- [
- -73.78618,
- -6.77487
- ],
- [
- -73.22362,
- -6.43011
- ],
- [
- -73.33719,
- -6.02974
- ],
- [
- -72.93016,
- -5.03871
- ],
- [
- -71.93973,
- -4.42503
- ],
- [
- -70.96802,
- -4.24829
- ],
- [
- -70.79598,
- -4.06493
- ],
- [
- -70.02393,
- -4.16735
- ],
- [
- -69.51025,
- -1.13409
- ],
- [
- -69.70776,
- -0.56762
- ],
- [
- -70.13645,
- -0.22616
- ],
- [
- -70.14083,
- 0.5844
- ],
- [
- -69.26594,
- 0.8065
- ],
- [
- -69.34226,
- 0.96892
- ],
- [
- -69.92481,
- 1.01571
- ],
- [
- -69.92343,
- 1.77385
- ],
- [
- -68.38511,
- 1.82943
- ],
- [
- -68.24848,
- 2.11981
- ],
- [
- -67.94571,
- 1.94842
- ],
- [
- -67.37696,
- 2.32747
- ],
- [
- -67.05751,
- 1.85834
- ],
- [
- -67.00579,
- 1.2916
- ],
- [
- -66.79967,
- 1.31468
- ],
- [
- -66.28683,
- 0.85771
- ],
- [
- -65.67671,
- 1.11115
- ],
- [
- -65.42494,
- 0.96655
- ],
- [
- -65.15671,
- 1.24203
- ],
- [
- -64.27483,
- 1.60159
- ],
- [
- -64.0486,
- 2.06514
- ],
- [
- -63.47236,
- 2.27936
- ],
- [
- -64.13446,
- 2.43391
- ],
- [
- -64.10005,
- 2.72378
- ],
- [
- -64.32628,
- 3.11828
- ],
- [
- -64.28142,
- 3.54198
- ],
- [
- -64.88451,
- 4.11767
- ],
- [
- -64.88064,
- 4.34246
- ],
- [
- -64.13653,
- 4.22315
- ],
- [
- -63.95465,
- 4.02132
- ],
- [
- -63.17706,
- 4.0483
- ],
- [
- -62.96093,
- 3.76366
- ],
- [
- -62.82024,
- 4.10602
- ],
- [
- -62.49922,
- 4.27081
- ],
- [
- -61.91181,
- 4.26284
- ],
- [
- -61.35393,
- 4.6301
- ],
- [
- -61.04904,
- 4.62312
- ],
- [
- -60.70452,
- 4.96985
- ],
- [
- -60.78709,
- 5.29676
- ],
- [
- -60.22457,
- 5.37121
- ],
- [
- -59.89857,
- 5.10754
- ],
- [
- -59.97549,
- 4.60302
- ],
- [
- -59.59676,
- 4.43987
- ],
- [
- -59.41942,
- 3.96994
- ],
- [
- -59.71017,
- 3.54201
- ],
- [
- -59.88955,
- 2.72301
- ],
- [
- -59.63006,
- 2.31633
- ],
- [
- -59.63382,
- 1.96658
- ],
- [
- -59.18812,
- 1.47808
- ],
- [
- -58.80545,
- 1.32073
- ],
- [
- -58.35933,
- 1.68993
- ],
- [
- -57.6,
- 1.80391
- ],
- [
- -57.39854,
- 2.06512
- ],
- [
- -57.12392,
- 2.12876
- ],
- [
- -56.02925,
- 1.94945
- ],
- [
- -56.23884,
- 2.26335
- ],
- [
- -55.98195,
- 2.62866
- ],
- [
- -55.64816,
- 2.51995
- ],
- [
- -54.93958,
- 2.68251
- ],
- [
- -54.24988,
- 2.25056
- ],
- [
- -53.73937,
- 2.47373
- ],
- [
- -52.98578,
- 2.28049
- ],
- [
- -52.65712,
- 2.56407
- ],
- [
- -52.41739,
- 3.22121
- ],
- [
- -51.73983,
- 4.11916
- ],
- [
- -51.7246,
- 4.55687
- ],
- [
- -51.0112,
- 5.5229
- ],
- [
- -43.48209,
- 5.33583
- ],
- [
- -29.3325,
- 2.33596
- ]
- ]
- ],
- "terms_text": "IBGE",
- "overlay": true
- },
- {
- "id": "IBGE_BCIM_Municipio",
- "name": "IBGE-BCIM-Município",
- "type": "wms",
- "template": "http://www.geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BCIM_Municipio_A&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -29.3325,
- 2.33596
- ],
- [
- -28.72472,
- 2.03155
- ],
- [
- -27.76041,
- -8.93703
- ],
- [
- -27.67249,
- -22.20839
- ],
- [
- -51.11495,
- -35.46552
- ],
- [
- -53.39394,
- -33.85064
- ],
- [
- -53.62553,
- -33.72493
- ],
- [
- -53.62503,
- -33.15428
- ],
- [
- -53.24498,
- -32.73392
- ],
- [
- -53.65747,
- -32.51873
- ],
- [
- -53.8329,
- -32.16592
- ],
- [
- -54.64174,
- -31.55507
- ],
- [
- -55.29638,
- -31.3429
- ],
- [
- -55.57371,
- -30.99691
- ],
- [
- -56.06384,
- -31.16749
- ],
- [
- -56.10468,
- -30.86436
- ],
- [
- -56.86862,
- -30.20752
- ],
- [
- -57.39671,
- -30.40464
- ],
- [
- -57.74384,
- -30.22142
- ],
- [
- -55.83724,
- -28.16598
- ],
- [
- -54.86969,
- -27.44994
- ],
- [
- -53.9016,
- -27.02998
- ],
- [
- -53.74972,
- -26.25781
- ],
- [
- -53.97158,
- -25.74513
- ],
- [
- -54.44723,
- -25.79609
- ],
- [
- -54.67802,
- -25.64668
- ],
- [
- -54.36097,
- -24.35145
- ],
- [
- -54.41679,
- -24.06527
- ],
- [
- -54.64355,
- -23.94107
- ],
- [
- -55.22163,
- -24.11355
- ],
- [
- -55.49138,
- -24.02797
- ],
- [
- -55.71734,
- -22.68488
- ],
- [
- -55.90555,
- -22.39886
- ],
- [
- -56.45255,
- -22.21731
- ],
- [
- -56.8256,
- -22.4002
- ],
- [
- -57.34109,
- -22.34351
- ],
- [
- -58.08472,
- -22.13075
- ],
- [
- -57.95766,
- -20.99818
- ],
- [
- -58.26551,
- -20.24147
- ],
- [
- -58.03577,
- -19.95871
- ],
- [
- -58.23083,
- -19.75211
- ],
- [
- -57.64739,
- -18.19828
- ],
- [
- -57.89356,
- -17.57377
- ],
- [
- -58.16997,
- -17.53519
- ],
- [
- -58.48825,
- -17.21961
- ],
- [
- -58.57691,
- -16.81466
- ],
- [
- -58.45563,
- -16.42158
- ],
- [
- -60.2541,
- -16.32571
- ],
- [
- -60.33481,
- -15.51483
- ],
- [
- -60.67423,
- -15.1122
- ],
- [
- -60.34999,
- -14.99707
- ],
- [
- -60.63603,
- -13.84119
- ],
- [
- -61.07283,
- -13.62569
- ],
- [
- -61.9025,
- -13.62647
- ],
- [
- -62.21395,
- -13.25048
- ],
- [
- -62.80185,
- -13.10905
- ],
- [
- -63.17194,
- -12.76568
- ],
- [
- -63.74229,
- -12.54071
- ],
- [
- -64.32845,
- -12.59578
- ],
- [
- -65.10261,
- -12.0682
- ],
- [
- -65.45781,
- -11.27865
- ],
- [
- -65.41641,
- -9.83894
- ],
- [
- -66.52331,
- -9.98587
- ],
- [
- -67.66452,
- -10.80093
- ],
- [
- -67.99778,
- -10.75991
- ],
- [
- -68.52286,
- -11.20807
- ],
- [
- -69.88988,
- -11.02776
- ],
- [
- -70.30957,
- -11.1699
- ],
- [
- -70.71896,
- -11.02003
- ],
- [
- -70.68128,
- -9.66908
- ],
- [
- -71.27536,
- -10.08971
- ],
- [
- -72.18053,
- -10.09967
- ],
- [
- -72.41623,
- -9.5874
- ],
- [
- -73.29207,
- -9.45415
- ],
- [
- -73.0625,
- -9.01727
- ],
- [
- -73.61432,
- -8.40982
- ],
- [
- -74.09056,
- -7.52755
- ],
- [
- -74.03652,
- -7.27885
- ],
- [
- -73.84718,
- -7.23829
- ],
- [
- -73.78618,
- -6.77487
- ],
- [
- -73.22362,
- -6.43011
- ],
- [
- -73.33719,
- -6.02974
- ],
- [
- -72.93016,
- -5.03871
- ],
- [
- -71.93973,
- -4.42503
- ],
- [
- -70.96802,
- -4.24829
- ],
- [
- -70.79598,
- -4.06493
- ],
- [
- -70.02393,
- -4.16735
- ],
- [
- -69.51025,
- -1.13409
- ],
- [
- -69.70776,
- -0.56762
- ],
- [
- -70.13645,
- -0.22616
- ],
- [
- -70.14083,
- 0.5844
- ],
- [
- -69.26594,
- 0.8065
- ],
- [
- -69.34226,
- 0.96892
- ],
- [
- -69.92481,
- 1.01571
- ],
- [
- -69.92343,
- 1.77385
- ],
- [
- -68.38511,
- 1.82943
- ],
- [
- -68.24848,
- 2.11981
- ],
- [
- -67.94571,
- 1.94842
- ],
- [
- -67.37696,
- 2.32747
- ],
- [
- -67.05751,
- 1.85834
- ],
- [
- -67.00579,
- 1.2916
- ],
- [
- -66.79967,
- 1.31468
- ],
- [
- -66.28683,
- 0.85771
- ],
- [
- -65.67671,
- 1.11115
- ],
- [
- -65.42494,
- 0.96655
- ],
- [
- -65.15671,
- 1.24203
- ],
- [
- -64.27483,
- 1.60159
- ],
- [
- -64.0486,
- 2.06514
- ],
- [
- -63.47236,
- 2.27936
- ],
- [
- -64.13446,
- 2.43391
- ],
- [
- -64.10005,
- 2.72378
- ],
- [
- -64.32628,
- 3.11828
- ],
- [
- -64.28142,
- 3.54198
- ],
- [
- -64.88451,
- 4.11767
- ],
- [
- -64.88064,
- 4.34246
- ],
- [
- -64.13653,
- 4.22315
- ],
- [
- -63.95465,
- 4.02132
- ],
- [
- -63.17706,
- 4.0483
- ],
- [
- -62.96093,
- 3.76366
- ],
- [
- -62.82024,
- 4.10602
- ],
- [
- -62.49922,
- 4.27081
- ],
- [
- -61.91181,
- 4.26284
- ],
- [
- -61.35393,
- 4.6301
- ],
- [
- -61.04904,
- 4.62312
- ],
- [
- -60.70452,
- 4.96985
- ],
- [
- -60.78709,
- 5.29676
- ],
- [
- -60.22457,
- 5.37121
- ],
- [
- -59.89857,
- 5.10754
- ],
- [
- -59.97549,
- 4.60302
- ],
- [
- -59.59676,
- 4.43987
- ],
- [
- -59.41942,
- 3.96994
- ],
- [
- -59.71017,
- 3.54201
- ],
- [
- -59.88955,
- 2.72301
- ],
- [
- -59.63006,
- 2.31633
- ],
- [
- -59.63382,
- 1.96658
- ],
- [
- -59.18812,
- 1.47808
- ],
- [
- -58.80545,
- 1.32073
- ],
- [
- -58.35933,
- 1.68993
- ],
- [
- -57.6,
- 1.80391
- ],
- [
- -57.39854,
- 2.06512
- ],
- [
- -57.12392,
- 2.12876
- ],
- [
- -56.02925,
- 1.94945
- ],
- [
- -56.23884,
- 2.26335
- ],
- [
- -55.98195,
- 2.62866
- ],
- [
- -55.64816,
- 2.51995
- ],
- [
- -54.93958,
- 2.68251
- ],
- [
- -54.24988,
- 2.25056
- ],
- [
- -53.73937,
- 2.47373
- ],
- [
- -52.98578,
- 2.28049
- ],
- [
- -52.65712,
- 2.56407
- ],
- [
- -52.41739,
- 3.22121
- ],
- [
- -51.73983,
- 4.11916
- ],
- [
- -51.7246,
- 4.55687
- ],
- [
- -51.0112,
- 5.5229
- ],
- [
- -43.48209,
- 5.33583
- ],
- [
- -29.3325,
- 2.33596
- ]
- ]
- ],
- "terms_text": "IBGE",
- "overlay": true
- },
- {
- "id": "Haiti-Drone",
- "name": "Imagerie Drone (Haiti)",
- "type": "tms",
- "template": "http://wms.openstreetmap.fr/tms/1.0.0/iomhaiti/{zoom}/{x}/{y}",
- "polygon": [
- [
- [
- -72.15474,
- 19.6879
- ],
- [
- -72.16223,
- 19.68901
- ],
- [
- -72.165,
- 19.69324
- ],
- [
- -72.16578,
- 19.698
- ],
- [
- -72.1616,
- 19.70357
- ],
- [
- -72.14874,
- 19.7029
- ],
- [
- -72.14772,
- 19.70268
- ],
- [
- -72.14851,
- 19.70015
- ],
- [
- -72.1437,
- 19.70112
- ],
- [
- -72.14101,
- 19.7
- ],
- [
- -72.13948,
- 19.69737
- ],
- [
- -72.13825,
- 19.69276
- ],
- [
- -72.13869,
- 19.69232
- ],
- [
- -72.13806,
- 19.68964
- ],
- [
- -72.13853,
- 19.68949
- ],
- [
- -72.13881,
- 19.69013
- ],
- [
- -72.13888,
- 19.68767
- ],
- [
- -72.13782,
- 19.68727
- ],
- [
- -72.13778,
- 19.685
- ],
- [
- -72.13695,
- 19.68559
- ],
- [
- -72.13679,
- 19.68407
- ],
- [
- -72.13573,
- 19.68351
- ],
- [
- -72.13557,
- 19.67408
- ],
- [
- -72.13664,
- 19.67081
- ],
- [
- -72.14878,
- 19.67107
- ],
- [
- -72.15348,
- 19.67638
- ],
- [
- -72.15308,
- 19.67694
- ],
- [
- -72.15333,
- 19.67698
- ],
- [
- -72.15328,
- 19.67965
- ],
- [
- -72.15238,
- 19.67972
- ],
- [
- -72.15227,
- 19.68035
- ],
- [
- -72.15191,
- 19.68034
- ],
- [
- -72.15186,
- 19.68051
- ],
- [
- -72.15282,
- 19.68066
- ],
- [
- -72.15223,
- 19.6833
- ],
- [
- -72.15078,
- 19.68315
- ],
- [
- -72.15045,
- 19.68479
- ],
- [
- -72.15086,
- 19.68435
- ],
- [
- -72.15301,
- 19.68499
- ],
- [
- -72.15463,
- 19.68544
- ],
- [
- -72.15431,
- 19.68707
- ],
- [
- -72.15472,
- 19.68685
- ],
- [
- -72.15485,
- 19.68776
- ],
- [
- -72.15458,
- 19.6878
- ],
- [
- -72.15474,
- 19.6879
- ]
- ],
- [
- [
- -72.13106,
- 19.67189
- ],
- [
- -72.12598,
- 19.67728
- ],
- [
- -72.12554,
- 19.67762
- ],
- [
- -72.12169,
- 19.67764
- ],
- [
- -72.11497,
- 19.6726
- ],
- [
- -72.11527,
- 19.66872
- ],
- [
- -72.11982,
- 19.66275
- ],
- [
- -72.12278,
- 19.66257
- ],
- [
- -72.1249,
- 19.6627
- ],
- [
- -72.12858,
- 19.66454
- ],
- [
- -72.13081,
- 19.66617
- ],
- [
- -72.13167,
- 19.66879
- ],
- [
- -72.13156,
- 19.671
- ],
- [
- -72.13106,
- 19.67189
- ]
- ],
- [
- [
- -71.84579,
- 19.67098
- ],
- [
- -71.84294,
- 19.67595
- ],
- [
- -71.841,
- 19.67595
- ],
- [
- -71.83802,
- 19.67553
- ],
- [
- -71.83787,
- 19.6745
- ],
- [
- -71.83905,
- 19.67439
- ],
- [
- -71.83901,
- 19.67411
- ],
- [
- -71.83984,
- 19.67395
- ],
- [
- -71.83891,
- 19.67361
- ],
- [
- -71.83802,
- 19.67209
- ],
- [
- -71.83801,
- 19.67263
- ],
- [
- -71.83767,
- 19.67272
- ],
- [
- -71.83763,
- 19.67254
- ],
- [
- -71.83544,
- 19.67321
- ],
- [
- -71.83533,
- 19.673
- ],
- [
- -71.83312,
- 19.67346
- ],
- [
- -71.83267,
- 19.67168
- ],
- [
- -71.83216,
- 19.67209
- ],
- [
- -71.83072,
- 19.66949
- ],
- [
- -71.8306,
- 19.66976
- ],
- [
- -71.83022,
- 19.66989
- ],
- [
- -71.82918,
- 19.66721
- ],
- [
- -71.82907,
- 19.66721
- ],
- [
- -71.82891,
- 19.66679
- ],
- [
- -71.82895,
- 19.66662
- ],
- [
- -71.82883,
- 19.66635
- ],
- [
- -71.82856,
- 19.66648
- ],
- [
- -71.82887,
- 19.66725
- ],
- [
- -71.82876,
- 19.66741
- ],
- [
- -71.8278,
- 19.66782
- ],
- [
- -71.82771,
- 19.66786
- ],
- [
- -71.82783,
- 19.66796
- ],
- [
- -71.82718,
- 19.66812
- ],
- [
- -71.82718,
- 19.66809
- ],
- [
- -71.82644,
- 19.66839
- ],
- [
- -71.82641,
- 19.66832
- ],
- [
- -71.8262,
- 19.66843
- ],
- [
- -71.82618,
- 19.66836
- ],
- [
- -71.82589,
- 19.66842
- ],
- [
- -71.82589,
- 19.66866
- ],
- [
- -71.82516,
- 19.66875
- ],
- [
- -71.82545,
- 19.66916
- ],
- [
- -71.82293,
- 19.66957
- ],
- [
- -71.82271,
- 19.66967
- ],
- [
- -71.82277,
- 19.66976
- ],
- [
- -71.82018,
- 19.67099
- ],
- [
- -71.81985,
- 19.67045
- ],
- [
- -71.8198,
- 19.6706
- ],
- [
- -71.81947,
- 19.67076
- ],
- [
- -71.81825,
- 19.67134
- ],
- [
- -71.81814,
- 19.67114
- ],
- [
- -71.81758,
- 19.67143
- ],
- [
- -71.81696,
- 19.67077
- ],
- [
- -71.81764,
- 19.6719
- ],
- [
- -71.81714,
- 19.67204
- ],
- [
- -71.81582,
- 19.6718
- ],
- [
- -71.81384,
- 19.67119
- ],
- [
- -71.81233,
- 19.6707
- ],
- [
- -71.81218,
- 19.67043
- ],
- [
- -71.81243,
- 19.67015
- ],
- [
- -71.81192,
- 19.67001
- ],
- [
- -71.81188,
- 19.67058
- ],
- [
- -71.81117,
- 19.67035
- ],
- [
- -71.80959,
- 19.66985
- ],
- [
- -71.8078,
- 19.66928
- ],
- [
- -71.8056,
- 19.66861
- ],
- [
- -71.80514,
- 19.66689
- ],
- [
- -71.80512,
- 19.66523
- ],
- [
- -71.80523,
- 19.66198
- ],
- [
- -71.80656,
- 19.65239
- ],
- [
- -71.80734,
- 19.64829
- ],
- [
- -71.80997,
- 19.64683
- ],
- [
- -71.81475,
- 19.64545
- ],
- [
- -71.81477,
- 19.64556
- ],
- [
- -71.815,
- 19.64551
- ],
- [
- -71.81495,
- 19.64538
- ],
- [
- -71.81599,
- 19.64502
- ],
- [
- -71.81589,
- 19.64489
- ],
- [
- -71.81659,
- 19.64461
- ],
- [
- -71.81901,
- 19.6438
- ],
- [
- -71.82115,
- 19.64345
- ],
- [
- -71.82216,
- 19.64333
- ],
- [
- -71.8269,
- 19.64321
- ],
- [
- -71.82805,
- 19.64322
- ],
- [
- -71.83045,
- 19.64408
- ],
- [
- -71.83064,
- 19.64486
- ],
- [
- -71.82953,
- 19.64504
- ],
- [
- -71.82961,
- 19.64561
- ],
- [
- -71.82994,
- 19.64557
- ],
- [
- -71.83037,
- 19.64517
- ],
- [
- -71.83047,
- 19.64535
- ],
- [
- -71.83081,
- 19.6452
- ],
- [
- -71.83102,
- 19.64511
- ],
- [
- -71.83125,
- 19.64585
- ],
- [
- -71.83111,
- 19.64582
- ],
- [
- -71.83137,
- 19.64659
- ],
- [
- -71.83289,
- 19.64619
- ],
- [
- -71.83446,
- 19.64571
- ],
- [
- -71.83447,
- 19.64631
- ],
- [
- -71.83422,
- 19.64619
- ],
- [
- -71.8342,
- 19.64655
- ],
- [
- -71.83467,
- 19.6463
- ],
- [
- -71.83491,
- 19.64639
- ],
- [
- -71.8348,
- 19.64622
- ],
- [
- -71.83544,
- 19.64585
- ],
- [
- -71.8355,
- 19.6458
- ],
- [
- -71.83647,
- 19.64613
- ],
- [
- -71.83764,
- 19.64727
- ],
- [
- -71.83791,
- 19.64789
- ],
- [
- -71.83905,
- 19.6508
- ],
- [
- -71.84569,
- 19.66962
- ],
- [
- -71.84579,
- 19.67098
- ]
- ],
- [
- [
- -72.09888,
- 18.54843
- ],
- [
- -72.09699,
- 18.5502
- ],
- [
- -72.09729,
- 18.55032
- ],
- [
- -72.09685,
- 18.55035
- ],
- [
- -72.09556,
- 18.55185
- ],
- [
- -72.09564,
- 18.55267
- ],
- [
- -72.09599,
- 18.55337
- ],
- [
- -72.09621,
- 18.5532
- ],
- [
- -72.09628,
- 18.55357
- ],
- [
- -72.09644,
- 18.55355
- ],
- [
- -72.09654,
- 18.55398
- ],
- [
- -72.09651,
- 18.55417
- ],
- [
- -72.09661,
- 18.55417
- ],
- [
- -72.09652,
- 18.55421
- ],
- [
- -72.09688,
- 18.55466
- ],
- [
- -72.0979,
- 18.55521
- ],
- [
- -72.10062,
- 18.55559
- ],
- [
- -72.10149,
- 18.55562
- ],
- [
- -72.10243,
- 18.5555
- ],
- [
- -72.10342,
- 18.55435
- ],
- [
- -72.10348,
- 18.55162
- ],
- [
- -72.10308,
- 18.55161
- ],
- [
- -72.10338,
- 18.55152
- ],
- [
- -72.1035,
- 18.55152
- ],
- [
- -72.10352,
- 18.55024
- ],
- [
- -72.10287,
- 18.55031
- ],
- [
- -72.1029,
- 18.55025
- ],
- [
- -72.10285,
- 18.55018
- ],
- [
- -72.10351,
- 18.55003
- ],
- [
- -72.10349,
- 18.54974
- ],
- [
- -72.10352,
- 18.54974
- ],
- [
- -72.10354,
- 18.5489
- ],
- [
- -72.10343,
- 18.54871
- ],
- [
- -72.10272,
- 18.54814
- ],
- [
- -72.10256,
- 18.54815
- ],
- [
- -72.10229,
- 18.54828
- ],
- [
- -72.10229,
- 18.54826
- ],
- [
- -72.10252,
- 18.54814
- ],
- [
- -72.10234,
- 18.54813
- ],
- [
- -72.09991,
- 18.54809
- ],
- [
- -72.09907,
- 18.54838
- ],
- [
- -72.09888,
- 18.54843
- ]
- ],
- [
- [
- -72.25425,
- 18.56826
- ],
- [
- -72.25603,
- 18.57178
- ],
- [
- -72.25579,
- 18.5748
- ],
- [
- -72.2535,
- 18.57555
- ],
- [
- -72.25228,
- 18.57555
- ],
- [
- -72.24999,
- 18.57409
- ],
- [
- -72.24739,
- 18.56983
- ],
- [
- -72.24601,
- 18.56673
- ],
- [
- -72.24585,
- 18.56295
- ],
- [
- -72.24794,
- 18.56254
- ],
- [
- -72.25015,
- 18.5628
- ],
- [
- -72.25192,
- 18.56508
- ],
- [
- -72.25425,
- 18.56826
- ]
- ],
- [
- [
- -72.30315,
- 18.53327
- ],
- [
- -72.30313,
- 18.53318
- ],
- [
- -72.30483,
- 18.53111
- ],
- [
- -72.30974,
- 18.53111
- ],
- [
- -72.31643,
- 18.53243
- ],
- [
- -72.32341,
- 18.53661
- ],
- [
- -72.32614,
- 18.53878
- ],
- [
- -72.32619,
- 18.54264
- ],
- [
- -72.31705,
- 18.55406
- ],
- [
- -72.31309,
- 18.55406
- ],
- [
- -72.29875,
- 18.54533
- ],
- [
- -72.29886,
- 18.54073
- ],
- [
- -72.2963,
- 18.54047
- ],
- [
- -72.29546,
- 18.53952
- ],
- [
- -72.29619,
- 18.53386
- ],
- [
- -72.29719,
- 18.53322
- ],
- [
- -72.3007,
- 18.53328
- ],
- [
- -72.30227,
- 18.53423
- ],
- [
- -72.30285,
- 18.53352
- ],
- [
- -72.3031,
- 18.53334
- ],
- [
- -72.30318,
- 18.5334
- ],
- [
- -72.30358,
- 18.53356
- ],
- [
- -72.30308,
- 18.53465
- ],
- [
- -72.30371,
- 18.53399
- ],
- [
- -72.30453,
- 18.53441
- ],
- [
- -72.3044,
- 18.53451
- ],
- [
- -72.30627,
- 18.53526
- ],
- [
- -72.30631,
- 18.53527
- ],
- [
- -72.30612,
- 18.53576
- ],
- [
- -72.30612,
- 18.53582
- ],
- [
- -72.30637,
- 18.53589
- ],
- [
- -72.30627,
- 18.53549
- ],
- [
- -72.30667,
- 18.53509
- ],
- [
- -72.3062,
- 18.53497
- ],
- [
- -72.30589,
- 18.53494
- ],
- [
- -72.30554,
- 18.53468
- ],
- [
- -72.30549,
- 18.53461
- ],
- [
- -72.30556,
- 18.53451
- ],
- [
- -72.30467,
- 18.53423
- ],
- [
- -72.30476,
- 18.53388
- ],
- [
- -72.30433,
- 18.53375
- ],
- [
- -72.30426,
- 18.53363
- ],
- [
- -72.30315,
- 18.53327
- ]
- ],
- [
- [
- -72.29814,
- 18.4775
- ],
- [
- -72.29357,
- 18.49486
- ],
- [
- -72.29222,
- 18.49643
- ],
- [
- -72.29317,
- 18.49725
- ],
- [
- -72.28923,
- 18.50571
- ],
- [
- -72.28781,
- 18.5081
- ],
- [
- -72.28505,
- 18.51199
- ],
- [
- -72.28402,
- 18.51132
- ],
- [
- -72.28086,
- 18.51588
- ],
- [
- -72.27732,
- 18.5176
- ],
- [
- -72.27235,
- 18.51752
- ],
- [
- -72.26627,
- 18.51446
- ],
- [
- -72.26659,
- 18.50668
- ],
- [
- -72.26926,
- 18.50462
- ],
- [
- -72.2662,
- 18.50298
- ],
- [
- -72.26882,
- 18.49652
- ],
- [
- -72.26915,
- 18.49594
- ],
- [
- -72.27027,
- 18.49615
- ],
- [
- -72.27027,
- 18.4956
- ],
- [
- -72.26907,
- 18.49557
- ],
- [
- -72.26929,
- 18.49377
- ],
- [
- -72.2737,
- 18.486
- ],
- [
- -72.27467,
- 18.48504
- ],
- [
- -72.27518,
- 18.4834
- ],
- [
- -72.27654,
- 18.48134
- ],
- [
- -72.27735,
- 18.4815
- ],
- [
- -72.2783,
- 18.48097
- ],
- [
- -72.27785,
- 18.4807
- ],
- [
- -72.2771,
- 18.48012
- ],
- [
- -72.279,
- 18.47758
- ],
- [
- -72.27972,
- 18.47729
- ],
- [
- -72.28064,
- 18.47764
- ],
- [
- -72.28137,
- 18.47716
- ],
- [
- -72.28084,
- 18.47698
- ],
- [
- -72.28128,
- 18.47584
- ],
- [
- -72.28232,
- 18.47518
- ],
- [
- -72.28516,
- 18.4751
- ],
- [
- -72.28499,
- 18.47637
- ],
- [
- -72.28544,
- 18.47698
- ],
- [
- -72.28628,
- 18.47563
- ],
- [
- -72.28693,
- 18.47547
- ],
- [
- -72.2866,
- 18.47519
- ],
- [
- -72.2866,
- 18.475
- ],
- [
- -72.29098,
- 18.47473
- ],
- [
- -72.29466,
- 18.47494
- ],
- [
- -72.29739,
- 18.47684
- ],
- [
- -72.29814,
- 18.4775
- ]
- ],
- [
- [
- -72.34667,
- 18.52224
- ],
- [
- -72.34683,
- 18.52443
- ],
- [
- -72.34753,
- 18.52776
- ],
- [
- -72.34555,
- 18.52911
- ],
- [
- -72.34031,
- 18.52922
- ],
- [
- -72.33833,
- 18.52803
- ],
- [
- -72.3369,
- 18.53012
- ],
- [
- -72.33381,
- 18.52967
- ],
- [
- -72.32893,
- 18.52708
- ],
- [
- -72.32865,
- 18.52533
- ],
- [
- -72.32921,
- 18.52327
- ],
- [
- -72.33041,
- 18.52205
- ],
- [
- -72.33216,
- 18.52218
- ],
- [
- -72.33225,
- 18.5192
- ],
- [
- -72.33692,
- 18.51836
- ],
- [
- -72.3382,
- 18.51847
- ],
- [
- -72.33815,
- 18.51818
- ],
- [
- -72.3412,
- 18.51779
- ],
- [
- -72.34549,
- 18.5172
- ],
- [
- -72.34926,
- 18.51728
- ],
- [
- -72.35043,
- 18.51889
- ],
- [
- -72.35035,
- 18.52061
- ],
- [
- -72.34968,
- 18.52204
- ],
- [
- -72.34667,
- 18.52224
- ]
- ],
- [
- [
- -72.33031,
- 18.54865
- ],
- [
- -72.34297,
- 18.55081
- ],
- [
- -72.34332,
- 18.55306
- ],
- [
- -72.34131,
- 18.56143
- ],
- [
- -72.33906,
- 18.56136
- ],
- [
- -72.33847,
- 18.56383
- ],
- [
- -72.33753,
- 18.56543
- ],
- [
- -72.33484,
- 18.56506
- ],
- [
- -72.33118,
- 18.56383
- ],
- [
- -72.33121,
- 18.56162
- ],
- [
- -72.32321,
- 18.56069
- ],
- [
- -72.32124,
- 18.5596
- ],
- [
- -72.3208,
- 18.5587
- ],
- [
- -72.32088,
- 18.55788
- ],
- [
- -72.32595,
- 18.55803
- ],
- [
- -72.32662,
- 18.5582
- ],
- [
- -72.32592,
- 18.55775
- ],
- [
- -72.3251,
- 18.55738
- ],
- [
- -72.32338,
- 18.55226
- ],
- [
- -72.3246,
- 18.54785
- ],
- [
- -72.3289,
- 18.54837
- ],
- [
- -72.32998,
- 18.54895
- ],
- [
- -72.33031,
- 18.54865
- ]
- ],
- [
- [
- -72.32314,
- 18.52698
- ],
- [
- -72.32234,
- 18.52807
- ],
- [
- -72.32096,
- 18.52797
- ],
- [
- -72.32078,
- 18.52713
- ],
- [
- -72.32085,
- 18.52537
- ],
- [
- -72.32146,
- 18.52496
- ],
- [
- -72.32257,
- 18.52489
- ],
- [
- -72.32285,
- 18.52533
- ],
- [
- -72.32324,
- 18.52648
- ],
- [
- -72.32314,
- 18.52698
- ]
- ],
- [
- [
- -72.21608,
- 18.64578
- ],
- [
- -72.21596,
- 18.65538
- ],
- [
- -72.20303,
- 18.65583
- ],
- [
- -72.19471,
- 18.65534
- ],
- [
- -72.19222,
- 18.65456
- ],
- [
- -72.19206,
- 18.65213
- ],
- [
- -72.19348,
- 18.64776
- ],
- [
- -72.20125,
- 18.63852
- ],
- [
- -72.20693,
- 18.63882
- ],
- [
- -72.2121,
- 18.64241
- ],
- [
- -72.21181,
- 18.64306
- ],
- [
- -72.21217,
- 18.64269
- ],
- [
- -72.2128,
- 18.64276
- ],
- [
- -72.21347,
- 18.64313
- ],
- [
- -72.21356,
- 18.64375
- ],
- [
- -72.21542,
- 18.64439
- ],
- [
- -72.21589,
- 18.64503
- ],
- [
- -72.21608,
- 18.64578
- ]
- ],
- [
- [
- -72.28677,
- 18.6482
- ],
- [
- -72.2901,
- 18.65274
- ],
- [
- -72.28981,
- 18.65365
- ],
- [
- -72.29007,
- 18.65427
- ],
- [
- -72.29072,
- 18.65377
- ],
- [
- -72.29103,
- 18.65447
- ],
- [
- -72.29125,
- 18.65422
- ],
- [
- -72.29168,
- 18.65589
- ],
- [
- -72.29122,
- 18.65661
- ],
- [
- -72.29227,
- 18.65597
- ],
- [
- -72.29269,
- 18.65675
- ],
- [
- -72.29307,
- 18.65673
- ],
- [
- -72.29413,
- 18.65818
- ],
- [
- -72.29602,
- 18.66084
- ],
- [
- -72.29597,
- 18.66191
- ],
- [
- -72.29329,
- 18.66457
- ],
- [
- -72.29067,
- 18.666
- ],
- [
- -72.28959,
- 18.66613
- ],
- [
- -72.28959,
- 18.66657
- ],
- [
- -72.2877,
- 18.66647
- ],
- [
- -72.28758,
- 18.66766
- ],
- [
- -72.28312,
- 18.66972
- ],
- [
- -72.27965,
- 18.66965
- ],
- [
- -72.27843,
- 18.66908
- ],
- [
- -72.2784,
- 18.66877
- ],
- [
- -72.27774,
- 18.66917
- ],
- [
- -72.27744,
- 18.66914
- ],
- [
- -72.27701,
- 18.66832
- ],
- [
- -72.27656,
- 18.66811
- ],
- [
- -72.27654,
- 18.66806
- ],
- [
- -72.27523,
- 18.66852
- ],
- [
- -72.27493,
- 18.66746
- ],
- [
- -72.27464,
- 18.66743
- ],
- [
- -72.27347,
- 18.66821
- ],
- [
- -72.27323,
- 18.66827
- ],
- [
- -72.27268,
- 18.66716
- ],
- [
- -72.27191,
- 18.66743
- ],
- [
- -72.27188,
- 18.66734
- ],
- [
- -72.26881,
- 18.66819
- ],
- [
- -72.26883,
- 18.66718
- ],
- [
- -72.26908,
- 18.66682
- ],
- [
- -72.26881,
- 18.66679
- ],
- [
- -72.26811,
- 18.66707
- ],
- [
- -72.26763,
- 18.66738
- ],
- [
- -72.26756,
- 18.66669
- ],
- [
- -72.26686,
- 18.66695
- ],
- [
- -72.26559,
- 18.66736
- ],
- [
- -72.26545,
- 18.66701
- ],
- [
- -72.26475,
- 18.66741
- ],
- [
- -72.26299,
- 18.66819
- ],
- [
- -72.26285,
- 18.66818
- ],
- [
- -72.26265,
- 18.66761
- ],
- [
- -72.2623,
- 18.66771
- ],
- [
- -72.26248,
- 18.66792
- ],
- [
- -72.26248,
- 18.66823
- ],
- [
- -72.26231,
- 18.66826
- ],
- [
- -72.2621,
- 18.66797
- ],
- [
- -72.26228,
- 18.66892
- ],
- [
- -72.26015,
- 18.6689
- ],
- [
- -72.25427,
- 18.66879
- ],
- [
- -72.25054,
- 18.66835
- ],
- [
- -72.25044,
- 18.66954
- ],
- [
- -72.24779,
- 18.66989
- ],
- [
- -72.24152,
- 18.66979
- ],
- [
- -72.24142,
- 18.67419
- ],
- [
- -72.23892,
- 18.67398
- ],
- [
- -72.23872,
- 18.67346
- ],
- [
- -72.23837,
- 18.67331
- ],
- [
- -72.2387,
- 18.67395
- ],
- [
- -72.23755,
- 18.6739
- ],
- [
- -72.23742,
- 18.67351
- ],
- [
- -72.23774,
- 18.67334
- ],
- [
- -72.23751,
- 18.67326
- ],
- [
- -72.23684,
- 18.67349
- ],
- [
- -72.23644,
- 18.67241
- ],
- [
- -72.23551,
- 18.6726
- ],
- [
- -72.2354,
- 18.67242
- ],
- [
- -72.2353,
- 18.6729
- ],
- [
- -72.23455,
- 18.67269
- ],
- [
- -72.23431,
- 18.67246
- ],
- [
- -72.23424,
- 18.67347
- ],
- [
- -72.23341,
- 18.67346
- ],
- [
- -72.23329,
- 18.6733
- ],
- [
- -72.23274,
- 18.67329
- ],
- [
- -72.23271,
- 18.6735
- ],
- [
- -72.2277,
- 18.67253
- ],
- [
- -72.22653,
- 18.67165
- ],
- [
- -72.2268,
- 18.67157
- ],
- [
- -72.2275,
- 18.67159
- ],
- [
- -72.22749,
- 18.67145
- ],
- [
- -72.22729,
- 18.67146
- ],
- [
- -72.22728,
- 18.6713
- ],
- [
- -72.22721,
- 18.67136
- ],
- [
- -72.22618,
- 18.67137
- ],
- [
- -72.2256,
- 18.67088
- ],
- [
- -72.22551,
- 18.66945
- ],
- [
- -72.22611,
- 18.66969
- ],
- [
- -72.22618,
- 18.66959
- ],
- [
- -72.22598,
- 18.66955
- ],
- [
- -72.22578,
- 18.66914
- ],
- [
- -72.22533,
- 18.66946
- ],
- [
- -72.22497,
- 18.66947
- ],
- [
- -72.22458,
- 18.66788
- ],
- [
- -72.22355,
- 18.6677
- ],
- [
- -72.22359,
- 18.66759
- ],
- [
- -72.22246,
- 18.66763
- ],
- [
- -72.22237,
- 18.66702
- ],
- [
- -72.22233,
- 18.66709
- ],
- [
- -72.22192,
- 18.66703
- ],
- [
- -72.22081,
- 18.6669
- ],
- [
- -72.22081,
- 18.66653
- ],
- [
- -72.22087,
- 18.66636
- ],
- [
- -72.2206,
- 18.66681
- ],
- [
- -72.22039,
- 18.66664
- ],
- [
- -72.21843,
- 18.66505
- ],
- [
- -72.21829,
- 18.6641
- ],
- [
- -72.21835,
- 18.66084
- ],
- [
- -72.21872,
- 18.66065
- ],
- [
- -72.21869,
- 18.6606
- ],
- [
- -72.21873,
- 18.66045
- ],
- [
- -72.21898,
- 18.66032
- ],
- [
- -72.21878,
- 18.6602
- ],
- [
- -72.2187,
- 18.66024
- ],
- [
- -72.21858,
- 18.66004
- ],
- [
- -72.21861,
- 18.66
- ],
- [
- -72.21878,
- 18.66013
- ],
- [
- -72.219,
- 18.66002
- ],
- [
- -72.21891,
- 18.65991
- ],
- [
- -72.21897,
- 18.65979
- ],
- [
- -72.21838,
- 18.65958
- ],
- [
- -72.21847,
- 18.65397
- ],
- [
- -72.2201,
- 18.65116
- ],
- [
- -72.2258,
- 18.64695
- ],
- [
- -72.2283,
- 18.64573
- ],
- [
- -72.23793,
- 18.64586
- ],
- [
- -72.23776,
- 18.6447
- ],
- [
- -72.24004,
- 18.64325
- ],
- [
- -72.2456,
- 18.64335
- ],
- [
- -72.24827,
- 18.64504
- ],
- [
- -72.24875,
- 18.64367
- ],
- [
- -72.25111,
- 18.64298
- ],
- [
- -72.25124,
- 18.64334
- ],
- [
- -72.25126,
- 18.64316
- ],
- [
- -72.25148,
- 18.64314
- ],
- [
- -72.25133,
- 18.64297
- ],
- [
- -72.25336,
- 18.64235
- ],
- [
- -72.25352,
- 18.64268
- ],
- [
- -72.25395,
- 18.64254
- ],
- [
- -72.25415,
- 18.64293
- ],
- [
- -72.25439,
- 18.64287
- ],
- [
- -72.25438,
- 18.64275
- ],
- [
- -72.25642,
- 18.64232
- ],
- [
- -72.25669,
- 18.64314
- ],
- [
- -72.25688,
- 18.64286
- ],
- [
- -72.25682,
- 18.64253
- ],
- [
- -72.25884,
- 18.6421
- ],
- [
- -72.25889,
- 18.64225
- ],
- [
- -72.25926,
- 18.64223
- ],
- [
- -72.25965,
- 18.64241
- ],
- [
- -72.25922,
- 18.64069
- ],
- [
- -72.25995,
- 18.64048
- ],
- [
- -72.26012,
- 18.64063
- ],
- [
- -72.26012,
- 18.63994
- ],
- [
- -72.26153,
- 18.63947
- ],
- [
- -72.26261,
- 18.6391
- ],
- [
- -72.26545,
- 18.63873
- ],
- [
- -72.27194,
- 18.63868
- ],
- [
- -72.2722,
- 18.63886
- ],
- [
- -72.27303,
- 18.63942
- ],
- [
- -72.27317,
- 18.64126
- ],
- [
- -72.27387,
- 18.64103
- ],
- [
- -72.27422,
- 18.64161
- ],
- [
- -72.27522,
- 18.6417
- ],
- [
- -72.27545,
- 18.64157
- ],
- [
- -72.27555,
- 18.64169
- ],
- [
- -72.27554,
- 18.64175
- ],
- [
- -72.27647,
- 18.64186
- ],
- [
- -72.27675,
- 18.6419
- ],
- [
- -72.2763,
- 18.6426
- ],
- [
- -72.27742,
- 18.643
- ],
- [
- -72.27798,
- 18.64272
- ],
- [
- -72.27858,
- 18.64313
- ],
- [
- -72.27857,
- 18.64323
- ],
- [
- -72.2789,
- 18.64335
- ],
- [
- -72.27985,
- 18.64397
- ],
- [
- -72.28587,
- 18.64697
- ],
- [
- -72.28677,
- 18.6482
- ]
- ],
- [
- [
- -72.55572,
- 18.53059
- ],
- [
- -72.55559,
- 18.5367
- ],
- [
- -72.555,
- 18.53797
- ],
- [
- -72.5488,
- 18.53792
- ],
- [
- -72.54866,
- 18.53728
- ],
- [
- -72.54884,
- 18.53063
- ],
- [
- -72.54937,
- 18.5301
- ],
- [
- -72.55513,
- 18.53012
- ],
- [
- -72.55572,
- 18.53059
- ]
- ],
- [
- [
- -72.62353,
- 18.50799
- ],
- [
- -72.62344,
- 18.50952
- ],
- [
- -72.62261,
- 18.51043
- ],
- [
- -72.62049,
- 18.51185
- ],
- [
- -72.61834,
- 18.51075
- ],
- [
- -72.61622,
- 18.50832
- ],
- [
- -72.61626,
- 18.50647
- ],
- [
- -72.61866,
- 18.50444
- ],
- [
- -72.6204,
- 18.5045
- ],
- [
- -72.62283,
- 18.507
- ],
- [
- -72.62353,
- 18.50799
- ]
- ]
- ]
- },
- {
- "id": "osmim-imagicode-S2A_R119_N09_20160327T050917",
- "name": "imagico.de: Adams Bridge",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R119_N09_20160327T050917&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-03-27T00:00:00.000Z",
- "startDate": "2016-03-27T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- 79.01779,
- 8.82757
- ],
- [
- 79.01402,
- 9.64678
- ],
- [
- 80.17642,
- 9.65042
- ],
- [
- 80.17728,
- 8.8313
- ],
- [
- 79.01779,
- 8.82757
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Supplementing incomplete coverage in other sources (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC80700162014211LGN00",
- "name": "imagico.de: Alaska Range",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC80700162014211LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2014-07-31T00:00:00.000Z",
- "startDate": "2014-07-31T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 12
- ],
- "polygon": [
- [
- [
- -152.70873,
- 62.30357
- ],
- [
- -152.70839,
- 62.58153
- ],
- [
- -152.00835,
- 63.54646
- ],
- [
- -148.99432,
- 63.5333
- ],
- [
- -148.99432,
- 62.30357
- ],
- [
- -152.70873,
- 62.30357
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Recent summer image of the Alaska Range for mapping natural features (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-aral2",
- "name": "imagico.de: Aral Sea (high water level)",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=aral2&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-03-03T00:00:00.000Z",
- "startDate": "2016-03-03T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 58.049,
- 43.2623
- ],
- [
- 58.049,
- 46.7189
- ],
- [
- 58.1014,
- 46.8645
- ],
- [
- 61.5524,
- 46.8629
- ],
- [
- 61.5524,
- 46.3896
- ],
- [
- 61.4675,
- 45.3416
- ],
- [
- 60.6317,
- 43.2623
- ],
- [
- 58.049,
- 43.2623
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Water and wetland extents, dams etc. - some remaining winter ice in the north (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-aral1",
- "name": "imagico.de: Aral Sea (low water level)",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=aral1&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-09-09T00:00:00.000Z",
- "startDate": "2016-09-09T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 58.049,
- 43.2623
- ],
- [
- 58.049,
- 46.7334
- ],
- [
- 58.096,
- 46.8645
- ],
- [
- 61.5524,
- 46.8629
- ],
- [
- 61.5524,
- 46.3896
- ],
- [
- 61.4685,
- 45.3544
- ],
- [
- 60.6267,
- 43.2623
- ],
- [
- 58.049,
- 43.2623
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Water and wetland extents, dams etc. (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R067_S40_20170417T140051",
- "name": "imagico.de: Bahía Blanca (high tide)",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R067_S40_20170417T140051&z={zoom}&x={x}&y={-y}",
- "endDate": "2017-04-17T00:00:00.000Z",
- "startDate": "2017-04-17T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- -62.9988,
- -40.7327
- ],
- [
- -62.9988,
- -37.9476
- ],
- [
- -61.7505,
- -37.9474
- ],
- [
- -61.7501,
- -40.7322
- ],
- [
- -62.9988,
- -40.7327
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Tidal flats and islands at the coast (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R067_S40_20170127T140051",
- "name": "imagico.de: Bahía Blanca (low tide)",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R067_S40_20170127T140051&z={zoom}&x={x}&y={-y}",
- "endDate": "2017-01-27T00:00:00.000Z",
- "startDate": "2017-01-27T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- -62.9988,
- -40.7327
- ],
- [
- -62.9988,
- -37.9476
- ],
- [
- -61.7505,
- -37.9474
- ],
- [
- -61.7501,
- -40.7322
- ],
- [
- -62.9988,
- -40.7327
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Tidal flats and islands at the coast (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC81190582014075LGN00",
- "name": "imagico.de: Bakun Reservoir",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81190582014075LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2014-03-16T00:00:00.000Z",
- "startDate": "2014-03-16T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 114.36,
- 2.02846
- ],
- [
- 113.53448,
- 2.03
- ],
- [
- 113.53619,
- 3.07077
- ],
- [
- 114.76512,
- 3.06751
- ],
- [
- 114.76254,
- 2.08816
- ],
- [
- 114.36,
- 2.02846
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Missing in older pre-2011 images (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC81250592016107LGN00",
- "name": "imagico.de: Batam",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81250592016107LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-01-01T00:00:00.000Z",
- "startDate": "2014-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 104.00155,
- -0.00008
- ],
- [
- 104.00137,
- 1.45099
- ],
- [
- 104.91015,
- 1.45116
- ],
- [
- 104.91015,
- -0.00008
- ],
- [
- 104.00155,
- -0.00008
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Missing Islands in OSM (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC80770232017156LGN00",
- "name": "imagico.de: Bogoslof Island",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC80770232017156LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2017-06-05T00:00:00.000Z",
- "startDate": "2017-06-05T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- -168.2544,
- 53.8749
- ],
- [
- -168.2544,
- 54.0213
- ],
- [
- -167.8591,
- 54.0213
- ],
- [
- -167.8591,
- 53.8749
- ],
- [
- -168.2544,
- 53.8749
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Recent image from after the eruption (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC81800982013291LGN00",
- "name": "imagico.de: Bouvet Island",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81800982013291LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2013-10-18T00:00:00.000Z",
- "startDate": "2013-10-18T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 3.24653,
- -54.47047
- ],
- [
- 3.24653,
- -54.37539
- ],
- [
- 3.46385,
- -54.37539
- ],
- [
- 3.46385,
- -54.47047
- ],
- [
- 3.24653,
- -54.47047
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "best": true,
- "description": "For more accurate coastline and glacier mapping (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R017_S67_20170223T022551",
- "name": "imagico.de: Bunger Hills",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R017_S67_20170223T022551&z={zoom}&x={x}&y={-y}",
- "endDate": "2017-02-23T00:00:00.000Z",
- "startDate": "2017-02-23T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 96.1197,
- -67.6542
- ],
- [
- 96.1201,
- -67.1899
- ],
- [
- 98.7331,
- -65.044
- ],
- [
- 105.1028,
- -65.044
- ],
- [
- 105.1028,
- -65.7224
- ],
- [
- 103.3017,
- -67.6542
- ],
- [
- 96.1197,
- -67.6542
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Largest ice free area at the East Antarctic coast - shows considerable amounts of non-permanent ice. (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R065_N47_20160929T102022",
- "name": "imagico.de: Central Alps in late September 2016",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R065_N47_20160929T102022&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-09-29T00:00:00.000Z",
- "startDate": "2016-09-29T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 10.55906,
- 45.95485
- ],
- [
- 7.47396,
- 45.95533
- ],
- [
- 7.55585,
- 46.2708
- ],
- [
- 8.0547,
- 47.66469
- ],
- [
- 11.75245,
- 47.66481
- ],
- [
- 11.75245,
- 46.81334
- ],
- [
- 11.38424,
- 45.95509
- ],
- [
- 10.55906,
- 45.95485
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Up-to-date image for glacier mapping - beware of some fresh snow at higher altitudes (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC82050982015344LGN00",
- "name": "imagico.de: Clerke Rocks",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC82050982015344LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2015-12-10T00:00:00.000Z",
- "startDate": "2015-12-10T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- -34.17701,
- -55.29693
- ],
- [
- -35.19599,
- -55.28285
- ],
- [
- -35.16664,
- -54.72097
- ],
- [
- -34.12517,
- -54.73465
- ],
- [
- -34.1401,
- -55.29693
- ],
- [
- -34.17701,
- -55.29693
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Missing in other image sources (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R086_N60_20160831T213532",
- "name": "imagico.de: Cook Inlet",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R086_N60_20160831T213532&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-08-31T00:00:00.000Z",
- "startDate": "2016-08-31T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- -154.5102,
- 59.4577
- ],
- [
- -154.5097,
- 60.6888
- ],
- [
- -153.5403,
- 62.1718
- ],
- [
- -148.0423,
- 62.1718
- ],
- [
- -148.0445,
- 61.5342
- ],
- [
- -149.7291,
- 59.4584
- ],
- [
- -154.5102,
- 59.4577
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Tidal flats and glaciers in surrounding mountains (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-EO1A0040712016264110KF",
- "name": "imagico.de: Coropuna",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=EO1A0040712016264110KF&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-09-21T00:00:00.000Z",
- "startDate": "2016-09-21T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- -72.75945,
- -15.68684
- ],
- [
- -72.75945,
- -15.4957
- ],
- [
- -72.74434,
- -15.4263
- ],
- [
- -72.41286,
- -15.4263
- ],
- [
- -72.41286,
- -15.65296
- ],
- [
- -72.42411,
- -15.68667
- ],
- [
- -72.75945,
- -15.68684
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Up-to-date image for glacier mapping (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R022_N06_20151221T103009",
- "name": "imagico.de: Cotonou",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R022_N06_20151221T103009&z={zoom}&x={x}&y={-y}",
- "endDate": "2015-12-21T00:00:00.000Z",
- "startDate": "2015-12-21T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- 1.83975,
- 6.2578
- ],
- [
- 1.83975,
- 7.11427
- ],
- [
- 2.5494,
- 7.11427
- ],
- [
- 2.5494,
- 6.48905
- ],
- [
- 2.49781,
- 6.25806
- ],
- [
- 1.83975,
- 6.2578
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Patchy and partly cloudy coverage in usual sources (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R040_N01_20160311T164128",
- "name": "imagico.de: Darwin and Wolf islands, Galapagos",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R040_N01_20160311T164128&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-03-11T00:00:00.000Z",
- "startDate": "2016-03-11T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- -92.05216,
- 1.3213
- ],
- [
- -92.05216,
- 1.72181
- ],
- [
- -91.74849,
- 1.72181
- ],
- [
- -91.74849,
- 1.3213
- ],
- [
- -92.05216,
- 1.3213
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Recent image, only old and poor images in other sources currently (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC80360072014245LGN00",
- "name": "imagico.de: Eastern Devon Island coast",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC80360072014245LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2014-09-02T00:00:00.000Z",
- "startDate": "2014-09-02T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 11
- ],
- "polygon": [
- [
- [
- -84.34799,
- 74.38946
- ],
- [
- -84.34799,
- 75.8903
- ],
- [
- -79.14871,
- 75.8903
- ],
- [
- -79.14871,
- 74.38946
- ],
- [
- -84.34799,
- 74.38946
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Coastline mostly mapped meanwhile (false color IR)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC82160152013239LGN00",
- "name": "imagico.de: Eastern Iceland",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC82160152013239LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2013-08-27T00:00:00.000Z",
- "startDate": "2013-08-27T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 12
- ],
- "polygon": [
- [
- [
- -13.04701,
- 64.21109
- ],
- [
- -15.16496,
- 64.22408
- ],
- [
- -15.16805,
- 64.81573
- ],
- [
- -13.04357,
- 64.8036
- ],
- [
- -13.04701,
- 64.21109
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Missing islets and inaccurate coast (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-AST_L1T_00302052007154424_20150518041444_91492",
- "name": "imagico.de: El Altar",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=AST_L1T_00302052007154424_20150518041444_91492&z={zoom}&x={x}&y={-y}",
- "endDate": "2012-02-05T00:00:00.000Z",
- "startDate": "2012-02-05T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- -78.532,
- -1.80509
- ],
- [
- -78.532,
- -1.60811
- ],
- [
- -78.33562,
- -1.60811
- ],
- [
- -78.33562,
- -1.80509
- ],
- [
- -78.532,
- -1.80509
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "2007 ASTER image offering better glacier coverage than common sources (true color with estimated blue)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R009_S61_20160109",
- "name": "imagico.de: Elephant Island/Clarence Island",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R009_S61_20160109&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-01-09T00:00:00.000Z",
- "startDate": "2016-01-09T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- -56.13476,
- -61.63472
- ],
- [
- -56.13476,
- -61.19936
- ],
- [
- -55.83264,
- -60.84015
- ],
- [
- -53.72343,
- -60.83982
- ],
- [
- -53.72343,
- -61.63472
- ],
- [
- -56.13476,
- -61.63472
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Fairly clear up-to-date image for updating glacier edges (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-enderby",
- "name": "imagico.de: Enderby Land and Kemp Coast",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=enderby&z={zoom}&x={x}&y={-y}",
- "endDate": "2017-03-27T00:00:00.000Z",
- "startDate": "2017-01-25T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 45.4547,
- -68.5091
- ],
- [
- 45.4547,
- -67.5724
- ],
- [
- 49.7155,
- -65.7176
- ],
- [
- 59.2693,
- -65.7176
- ],
- [
- 67.3735,
- -67.3449
- ],
- [
- 67.3735,
- -68.2581
- ],
- [
- 67.088,
- -68.5091
- ],
- [
- 45.4547,
- -68.5091
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Sentinel-2 images of Enderby Land and Kemp Coast (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC82100502015347LGN00",
- "name": "imagico.de: Fogo, Cape Verde",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC82100502015347LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2015-12-13T00:00:00.000Z",
- "startDate": "2015-12-13T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- -24.75878,
- 14.74814
- ],
- [
- -24.75878,
- 15.09249
- ],
- [
- -24.26706,
- 15.09249
- ],
- [
- -24.26706,
- 14.74814
- ],
- [
- -24.75878,
- 14.74814
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Image from after the 2014/2015 eruption (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-greenland",
- "name": "imagico.de: Greenland mosaic",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=greenland&z={zoom}&x={x}&y={-y}",
- "endDate": "2015-01-01T00:00:00.000Z",
- "startDate": "2013-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 12
- ],
- "polygon": [
- [
- [
- -43.9774,
- 59.7171
- ],
- [
- -44.545,
- 59.7302
- ],
- [
- -44.9203,
- 59.7672
- ],
- [
- -45.3587,
- 59.8218
- ],
- [
- -45.763,
- 59.8848
- ],
- [
- -46.0859,
- 59.9827
- ],
- [
- -46.3381,
- 60.119
- ],
- [
- -46.577,
- 60.2652
- ],
- [
- -46.8114,
- 60.4418
- ],
- [
- -47.2635,
- 60.5314
- ],
- [
- -47.6937,
- 60.5549
- ],
- [
- -48.1457,
- 60.6192
- ],
- [
- -48.5771,
- 60.7015
- ],
- [
- -48.8689,
- 60.8506
- ],
- [
- -49.0578,
- 61.0555
- ],
- [
- -49.396,
- 61.2957
- ],
- [
- -49.7601,
- 61.4934
- ],
- [
- -50.2064,
- 61.7324
- ],
- [
- -50.4699,
- 61.9539
- ],
- [
- -50.8647,
- 62.1596
- ],
- [
- -51.0631,
- 62.3869
- ],
- [
- -51.2121,
- 62.6001
- ],
- [
- -51.3005,
- 62.8389
- ],
- [
- -51.4238,
- 62.9979
- ],
- [
- -51.6767,
- 63.1944
- ],
- [
- -51.9465,
- 63.4079
- ],
- [
- -52.0253,
- 63.6377
- ],
- [
- -52.2255,
- 63.8378
- ],
- [
- -52.3658,
- 64.0705
- ],
- [
- -52.4829,
- 64.3792
- ],
- [
- -52.4988,
- 64.6788
- ],
- [
- -52.789,
- 64.9063
- ],
- [
- -53.2046,
- 65.1321
- ],
- [
- -53.6649,
- 65.4753
- ],
- [
- -53.9977,
- 65.8019
- ],
- [
- -54.1348,
- 66.1568
- ],
- [
- -54.1441,
- 66.5235
- ],
- [
- -54.2285,
- 66.8319
- ],
- [
- -54.4519,
- 67.303
- ],
- [
- -54.5141,
- 67.7648
- ],
- [
- -54.604,
- 68.2021
- ],
- [
- -54.568,
- 68.5698
- ],
- [
- -54.598,
- 68.8347
- ],
- [
- -54.7606,
- 69.1207
- ],
- [
- -55.0028,
- 69.4125
- ],
- [
- -55.2735,
- 69.6187
- ],
- [
- -55.3808,
- 69.8283
- ],
- [
- -55.3945,
- 70.0838
- ],
- [
- -55.3094,
- 70.2573
- ],
- [
- -55.4307,
- 70.479
- ],
- [
- -55.5501,
- 70.6707
- ],
- [
- -55.7654,
- 70.861
- ],
- [
- -56.2489,
- 71.2343
- ],
- [
- -56.5018,
- 71.5429
- ],
- [
- -56.5867,
- 71.9015
- ],
- [
- -56.5189,
- 72.2355
- ],
- [
- -56.5085,
- 72.5258
- ],
- [
- -56.8923,
- 72.8144
- ],
- [
- -57.4027,
- 73.1054
- ],
- [
- -57.8066,
- 73.4566
- ],
- [
- -58.1461,
- 73.7696
- ],
- [
- -58.3554,
- 74.0972
- ],
- [
- -58.5125,
- 74.3783
- ],
- [
- -58.7336,
- 74.6328
- ],
- [
- -59.3551,
- 74.8869
- ],
- [
- -60.1412,
- 75.102
- ],
- [
- -61.0067,
- 75.2763
- ],
- [
- -61.911,
- 75.3886
- ],
- [
- -62.4706,
- 75.5595
- ],
- [
- -62.9776,
- 75.7454
- ],
- [
- -64.1463,
- 75.779
- ],
- [
- -65.4481,
- 75.7235
- ],
- [
- -66.7068,
- 75.6792
- ],
- [
- -67.8379,
- 75.6525
- ],
- [
- -69.0456,
- 75.6195
- ],
- [
- -70.055,
- 75.5344
- ],
- [
- -71.0898,
- 75.4705
- ],
- [
- -72.1119,
- 75.4476
- ],
- [
- -74.2311,
- 76.4102
- ],
- [
- -74.5601,
- 76.5328
- ],
- [
- -74.5601,
- 82.6959
- ],
- [
- -14.4462,
- 82.6959
- ],
- [
- -14.3994,
- 82.5997
- ],
- [
- -13.5339,
- 82.4379
- ],
- [
- -12.0312,
- 82.3426
- ],
- [
- -10.7796,
- 82.3196
- ],
- [
- -10.7796,
- 80.1902
- ],
- [
- -11.2123,
- 80.069
- ],
- [
- -11.136,
- 79.8103
- ],
- [
- -10.7796,
- 79.5176
- ],
- [
- -10.7796,
- 79.0441
- ],
- [
- -11.2626,
- 78.7128
- ],
- [
- -12.2579,
- 78.3558
- ],
- [
- -13.2398,
- 78.1272
- ],
- [
- -13.7649,
- 77.9279
- ],
- [
- -14.1169,
- 77.6779
- ],
- [
- -14.7129,
- 77.5278
- ],
- [
- -15.5507,
- 77.3655
- ],
- [
- -16.0936,
- 77.0771
- ],
- [
- -16.0586,
- 76.5548
- ],
- [
- -15.838,
- 75.9611
- ],
- [
- -15.6879,
- 75.4726
- ],
- [
- -16.253,
- 75.058
- ],
- [
- -17.0427,
- 74.6425
- ],
- [
- -18.3155,
- 74.2702
- ],
- [
- -19.4463,
- 73.9378
- ],
- [
- -19.8329,
- 73.632
- ],
- [
- -20.2938,
- 73.3524
- ],
- [
- -20.7831,
- 73.0446
- ],
- [
- -21.01,
- 72.6766
- ],
- [
- -20.8774,
- 72.2926
- ],
- [
- -20.7672,
- 71.8726
- ],
- [
- -20.7765,
- 71.4304
- ],
- [
- -20.9411,
- 70.9802
- ],
- [
- -21.219,
- 70.6126
- ],
- [
- -21.5326,
- 70.3001
- ],
- [
- -21.8039,
- 70.0911
- ],
- [
- -22.166,
- 69.8947
- ],
- [
- -22.4831,
- 69.7539
- ],
- [
- -22.9027,
- 69.6585
- ],
- [
- -23.3545,
- 69.544
- ],
- [
- -23.9177,
- 69.4036
- ],
- [
- -24.1794,
- 69.3088
- ],
- [
- -24.6745,
- 69.1084
- ],
- [
- -25.1222,
- 68.9555
- ],
- [
- -25.6659,
- 68.7995
- ],
- [
- -26.0994,
- 68.583
- ],
- [
- -26.6316,
- 68.4043
- ],
- [
- -27.7638,
- 68.2813
- ],
- [
- -28.4575,
- 68.0023
- ],
- [
- -29.353,
- 67.8135
- ],
- [
- -30.6456,
- 67.4911
- ],
- [
- -31.7673,
- 67.0005
- ],
- [
- -32.9783,
- 66.2596
- ],
- [
- -33.9313,
- 66.0156
- ],
- [
- -34.8956,
- 65.7403
- ],
- [
- -35.5914,
- 65.5208
- ],
- [
- -36.1483,
- 65.372
- ],
- [
- -36.7532,
- 65.2559
- ],
- [
- -37.1858,
- 65.1349
- ],
- [
- -37.6032,
- 64.9727
- ],
- [
- -38.0624,
- 64.4901
- ],
- [
- -38.5304,
- 64.1244
- ],
- [
- -39.0545,
- 63.7213
- ],
- [
- -39.3131,
- 63.4405
- ],
- [
- -39.5739,
- 62.7506
- ],
- [
- -39.9532,
- 62.2739
- ],
- [
- -40.2757,
- 61.8547
- ],
- [
- -40.714,
- 61.3365
- ],
- [
- -41.2091,
- 60.8495
- ],
- [
- -41.821,
- 60.5526
- ],
- [
- -42.4368,
- 60.3264
- ],
- [
- -42.8643,
- 60.0299
- ],
- [
- -43.1131,
- 59.9147
- ],
- [
- -43.3282,
- 59.83
- ],
- [
- -43.5459,
- 59.7695
- ],
- [
- -43.797,
- 59.7284
- ],
- [
- -43.9774,
- 59.7171
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Landsat mosaic of Greenland (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R047_S54_20160411T044330",
- "name": "imagico.de: Heard Island coast",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R047_S54_20160411T044330&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-04-12T00:00:00.000Z",
- "startDate": "2016-04-12T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 73.06897,
- -53.27059
- ],
- [
- 73.06897,
- -52.87549
- ],
- [
- 73.67338,
- -52.87673
- ],
- [
- 74.08863,
- -52.9495
- ],
- [
- 74.08863,
- -53.27059
- ],
- [
- 73.06897,
- -53.27059
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Recent image of Heard island with interior mostly cloud covered but mostly well visible coast (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC82280982013259LGN00",
- "name": "imagico.de: Isla Londonderry",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC82280982013259LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2013-09-16T00:00:00.000Z",
- "startDate": "2013-09-16T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 12
- ],
- "polygon": [
- [
- [
- -69.8568,
- -55.55949
- ],
- [
- -72.26521,
- -55.14943
- ],
- [
- -72.26521,
- -54.51089
- ],
- [
- -72.08531,
- -54.17909
- ],
- [
- -69.49116,
- -54.17889
- ],
- [
- -69.4915,
- -55.28379
- ],
- [
- -69.62231,
- -55.5591
- ],
- [
- -69.8568,
- -55.55949
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "A lot of very coarse coastlines could be improved here, much snow cover though so no use for glacier mapping (false color IR)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-dms_kangerlussuaq_20151008",
- "name": "imagico.de: Kangerlussuaq Autumn",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=dms_kangerlussuaq_20151008&z={zoom}&x={x}&y={-y}",
- "endDate": "2015-10-08T00:00:00.000Z",
- "startDate": "2015-10-08T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 17
- ],
- "polygon": [
- [
- [
- -50.6992,
- 66.9888
- ],
- [
- -50.721,
- 67.0017
- ],
- [
- -50.7341,
- 67.0125
- ],
- [
- -50.7396,
- 67.0193
- ],
- [
- -50.7396,
- 67.0212
- ],
- [
- -50.7158,
- 67.0265
- ],
- [
- -50.7017,
- 67.0265
- ],
- [
- -50.6829,
- 67.0176
- ],
- [
- -50.6686,
- 67.0077
- ],
- [
- -50.6638,
- 66.998
- ],
- [
- -50.6642,
- 66.9946
- ],
- [
- -50.6891,
- 66.9888
- ],
- [
- -50.6992,
- 66.9888
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Icebridge DMS image of the airport and settlement - alignment might be poor",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-dms_kangerlussuaq_20160518",
- "name": "imagico.de: Kangerlussuaq Spring",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=dms_kangerlussuaq_20160518&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-05-18T00:00:00.000Z",
- "startDate": "2016-05-18T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 18
- ],
- "polygon": [
- [
- [
- -50.7519,
- 66.9996
- ],
- [
- -50.7555,
- 67.0023
- ],
- [
- -50.7555,
- 67.0033
- ],
- [
- -50.6395,
- 67.0297
- ],
- [
- -50.6162,
- 67.0339
- ],
- [
- -50.6097,
- 67.0281
- ],
- [
- -50.6331,
- 67.022
- ],
- [
- -50.7323,
- 66.9996
- ],
- [
- -50.7519,
- 66.9996
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Icebridge DMS image of the airport and roads - alignment might be poor",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R021_N44_20160807T083013",
- "name": "imagico.de: Kerch Strait",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R021_N44_20160807T083013&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-08-07T00:00:00.000Z",
- "startDate": "2016-08-07T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- 35.93259,
- 44.96237
- ],
- [
- 35.93259,
- 45.55926
- ],
- [
- 37.36991,
- 45.55926
- ],
- [
- 37.36991,
- 44.96237
- ],
- [
- 35.93259,
- 44.96237
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "State of bridge construction in August 2016 (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R021_N44_20180429T082601",
- "name": "imagico.de: Kerch Strait 2018",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R021_N44_20180429T082601&z={zoom}&x={x}&y={-y}",
- "endDate": "2018-04-29T00:00:00.000Z",
- "startDate": "2018-04-29T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- 35.8787,
- 45.0348
- ],
- [
- 35.8787,
- 45.6095
- ],
- [
- 36.9208,
- 45.6095
- ],
- [
- 36.9208,
- 45.0348
- ],
- [
- 35.8787,
- 45.0348
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Bridge and surrounding after completion in April 2018 (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-ls_polar2",
- "name": "imagico.de: Landsat off-nadir July 2016",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=ls_polar2&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-07-17T00:00:00.000Z",
- "startDate": "2016-07-17T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 10
- ],
- "polygon": [
- [
- [
- -79.05175,
- 81.91484
- ],
- [
- -79.05175,
- 83.43339
- ],
- [
- -73.6039,
- 83.80225
- ],
- [
- -26.42449,
- 83.80225
- ],
- [
- -21.493,
- 83.50352
- ],
- [
- -16.88835,
- 83.15095
- ],
- [
- -16.88835,
- 81.91484
- ],
- [
- -79.05175,
- 81.91484
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Latest images north of the regular Landsat limit (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-larsen_2018",
- "name": "imagico.de: Larsen C ice shelf after calving",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=larsen_2018&z={zoom}&x={x}&y={-y}",
- "endDate": "2018-01-06T00:00:00.000Z",
- "startDate": "2018-01-06T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 12
- ],
- "polygon": [
- [
- [
- -62.7282,
- -68.9652
- ],
- [
- -64.0489,
- -68.7318
- ],
- [
- -64.0486,
- -68.5373
- ],
- [
- -60.8845,
- -65.9399
- ],
- [
- -59.9187,
- -65.9389
- ],
- [
- -59.1088,
- -66.0775
- ],
- [
- -59.1088,
- -68.8359
- ],
- [
- -59.2544,
- -68.9652
- ],
- [
- -62.7282,
- -68.9652
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "For updating the ice edge after the 2017 iceberg calving (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-AST_L1T_00311162013112731_20150618142416_109190",
- "name": "imagico.de: Leskov Island ASTER",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=AST_L1T_00311162013112731_20150618142416_109190&z={zoom}&x={x}&y={-y}",
- "endDate": "2013-11-16T00:00:00.000Z",
- "startDate": "2013-11-16T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- -28.21075,
- -56.72108
- ],
- [
- -28.21075,
- -56.62498
- ],
- [
- -27.96956,
- -56.62498
- ],
- [
- -27.96956,
- -56.72108
- ],
- [
- -28.21075,
- -56.72108
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Missing in other image sources (true color with estimated blue)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC81991002015286LGN00",
- "name": "imagico.de: Leskov Island Landsat",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81991002015286LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2015-10-13T00:00:00.000Z",
- "startDate": "2015-10-13T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- -27.99293,
- -56.73479
- ],
- [
- -28.22776,
- -56.73262
- ],
- [
- -28.22416,
- -56.60075
- ],
- [
- -27.96975,
- -56.60283
- ],
- [
- -27.97319,
- -56.73479
- ],
- [
- -27.99293,
- -56.73479
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Missing in other image sources (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2B_R005_S69_20180222T061749",
- "name": "imagico.de: Lützow-Holm Bay",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2B_R005_S69_20180222T061749&z={zoom}&x={x}&y={-y}",
- "endDate": "2018-02-22T00:00:00.000Z",
- "startDate": "2018-02-22T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 35.124,
- -70.3693
- ],
- [
- 35.1241,
- -69.2795
- ],
- [
- 36.3864,
- -68.4765
- ],
- [
- 42.2208,
- -68.4762
- ],
- [
- 42.2208,
- -70.3651
- ],
- [
- 35.124,
- -70.3693
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Up-to-date late season image or an area poorly mapped in OSM at the moment - lots of sea ice, be careful with distinguishing sea ice from ice shelves and floating glacier tongues. (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-ls_polar",
- "name": "imagico.de: May 2013 off-nadir Landsat",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=ls_polar&z={zoom}&x={x}&y={-y}",
- "endDate": "2013-05-17T00:00:00.000Z",
- "startDate": "2013-05-17T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 10
- ],
- "polygon": [
- [
- [
- -85.76109,
- 81.39333
- ],
- [
- -89.83016,
- 82.14952
- ],
- [
- -89.83153,
- 82.24405
- ],
- [
- -84.99342,
- 82.73099
- ],
- [
- -79.95207,
- 83.13108
- ],
- [
- -74.55641,
- 83.46267
- ],
- [
- -69.35851,
- 83.70451
- ],
- [
- -28.20784,
- 83.70451
- ],
- [
- -23.06624,
- 83.46532
- ],
- [
- -17.96584,
- 83.15518
- ],
- [
- -17.96721,
- 82.72386
- ],
- [
- -22.78197,
- 81.4419
- ],
- [
- -85.76109,
- 81.39333
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "First available image north of the regular Landsat limit, mostly with seasonal snow cover so difficult to interpret (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R042_S78_20170214T202521",
- "name": "imagico.de: McMurdo Sound and Dry Valleys",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R042_S78_20170214T202521&z={zoom}&x={x}&y={-y}",
- "endDate": "2017-02-14T00:00:00.000Z",
- "startDate": "2017-02-14T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 12
- ],
- "polygon": [
- [
- [
- 162.9125,
- -78.4514
- ],
- [
- 162.6595,
- -78.4257
- ],
- [
- 159.2712,
- -77.6013
- ],
- [
- 159.2712,
- -77.4108
- ],
- [
- 164.157,
- -76.477
- ],
- [
- 169.7813,
- -76.4764
- ],
- [
- 169.7813,
- -78.4514
- ],
- [
- 162.9125,
- -78.4514
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Up-to-date late season image - not ice minimum, be careful with distinguishing sea ice from ice shelves. (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R092_S02_20160613T075613",
- "name": "imagico.de: Mount Kenya 2016",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R092_S02_20160613T075613&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-06-13T00:00:00.000Z",
- "startDate": "2016-06-13T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- 37.20666,
- -0.26685
- ],
- [
- 37.20666,
- -0.01193
- ],
- [
- 37.56552,
- -0.01193
- ],
- [
- 37.56552,
- -0.26685
- ],
- [
- 37.20666,
- -0.26685
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Up-to-date image for glacier mapping (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R092_S05_20160802T075556",
- "name": "imagico.de: Mount Kilimanjaro 2016",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R092_S05_20160802T075556&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-08-02T00:00:00.000Z",
- "startDate": "2016-08-02T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- 37.24769,
- -3.22921
- ],
- [
- 37.24769,
- -2.96816
- ],
- [
- 37.61581,
- -2.96816
- ],
- [
- 37.61581,
- -3.22921
- ],
- [
- 37.24769,
- -3.22921
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Up-to-date image for glacier mapping (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC80940622015159LGN00",
- "name": "imagico.de: New Ireland",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC80940622015159LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2015-06-08T00:00:00.000Z",
- "startDate": "2015-06-08T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- 150.38853,
- -2.80053
- ],
- [
- 150.38853,
- -2.3834
- ],
- [
- 150.83348,
- -2.3834
- ],
- [
- 150.83348,
- -2.80053
- ],
- [
- 150.38853,
- -2.80053
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Many missing islands in OSM (mostly mapped meanwhile) (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-northsea_s2_2016",
- "name": "imagico.de: North Sea Coast 2016",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=northsea_s2_2016&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-09-25T00:00:00.000Z",
- "startDate": "2016-09-25T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 5.1562,
- 52.8755
- ],
- [
- 5.1615,
- 53.0325
- ],
- [
- 6.4155,
- 55.7379
- ],
- [
- 9.8813,
- 55.7459
- ],
- [
- 9.8813,
- 53.2428
- ],
- [
- 9.6846,
- 52.8877
- ],
- [
- 5.1562,
- 52.8755
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-northsea_s2_2017",
- "name": "imagico.de: North Sea Coast 2017",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=northsea_s2_2017&z={zoom}&x={x}&y={-y}",
- "endDate": "2017-06-02T00:00:00.000Z",
- "startDate": "2017-06-02T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 5.1713,
- 53.0918
- ],
- [
- 6.477,
- 55.8973
- ],
- [
- 9.8813,
- 55.8973
- ],
- [
- 9.8813,
- 53.2761
- ],
- [
- 9.7789,
- 53.0918
- ],
- [
- 5.1713,
- 53.0918
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-northsea_s2_2018",
- "name": "imagico.de: North Sea Coast spring 2018",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=northsea_s2_2018&z={zoom}&x={x}&y={-y}",
- "endDate": "2018-05-08T00:00:00.000Z",
- "startDate": "2018-05-08T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 5.3179,
- 53.0918
- ],
- [
- 5.322,
- 53.4418
- ],
- [
- 6.7023,
- 56.3572
- ],
- [
- 9.8813,
- 56.3578
- ],
- [
- 9.8813,
- 53.2819
- ],
- [
- 9.7758,
- 53.0921
- ],
- [
- 5.3179,
- 53.0918
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-caspian_2018",
- "name": "imagico.de: Northeast Caspian Sea 2018",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=caspian_2018&z={zoom}&x={x}&y={-y}",
- "endDate": "2018-05-16T00:00:00.000Z",
- "startDate": "2018-05-16T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- 51.0243,
- 45.0729
- ],
- [
- 51.0243,
- 46.569
- ],
- [
- 52.4259,
- 46.5687
- ],
- [
- 53.6471,
- 46.3177
- ],
- [
- 53.6474,
- 45.0729
- ],
- [
- 51.0243,
- 45.0729
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Coastal contruction and Kashagan oil field in Kazakhstan in May 2018 (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-ural_s2_2016",
- "name": "imagico.de: Northern and Polar Ural mountains August 2016",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=ural_s2_2016&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-08-12T00:00:00.000Z",
- "startDate": "2016-08-12T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 59.19898,
- 64.89205
- ],
- [
- 59.19898,
- 66.91656
- ],
- [
- 60.73329,
- 68.44289
- ],
- [
- 67.73295,
- 68.44327
- ],
- [
- 67.73295,
- 67.74883
- ],
- [
- 64.21647,
- 64.91957
- ],
- [
- 59.19898,
- 64.89205
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Up-to-date late summer imagery with few clouds - caution: not all visible snow is glaciers (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-ndvina",
- "name": "imagico.de: Northern Dvina delta at low tide",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=ndvina&z={zoom}&x={x}&y={-y}",
- "endDate": "2015-09-13T00:00:00.000Z",
- "startDate": "2015-09-13T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 12
- ],
- "polygon": [
- [
- [
- 37.7291,
- 64.1971
- ],
- [
- 37.7291,
- 65.1161
- ],
- [
- 37.8592,
- 65.2705
- ],
- [
- 41.3223,
- 65.2705
- ],
- [
- 41.3223,
- 64.3142
- ],
- [
- 41.2114,
- 64.1973
- ],
- [
- 37.7291,
- 64.1971
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Beaches, tidal flats and other costal forms (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-nellesmere_ast",
- "name": "imagico.de: Northern Ellesmere Island",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=nellesmere_ast&z={zoom}&x={x}&y={-y}",
- "endDate": "2012-07-09T00:00:00.000Z",
- "startDate": "2012-07-09T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 10
- ],
- "polygon": [
- [
- [
- -81.62923,
- 82.4597
- ],
- [
- -83.03136,
- 82.47986
- ],
- [
- -83.03136,
- 83.05876
- ],
- [
- -72.80309,
- 83.09567
- ],
- [
- -65.65786,
- 83.03232
- ],
- [
- -65.81167,
- 82.4597
- ],
- [
- -81.62923,
- 82.4597
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Assembled from July 2012 ASTER imagery (true color with estimated blue)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-nellesmere_ast_2016",
- "name": "imagico.de: Northern Ellesmere Island July 2016",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=nellesmere_ast_2016&z={zoom}&x={x}&y={-y}",
- "endDate": "2012-07-15T00:00:00.000Z",
- "startDate": "2012-07-08T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 10
- ],
- "polygon": [
- [
- [
- -78.89729,
- 82.17577
- ],
- [
- -82.64501,
- 82.19426
- ],
- [
- -82.64501,
- 83.08067
- ],
- [
- -66.58986,
- 83.08497
- ],
- [
- -63.78011,
- 82.98908
- ],
- [
- -63.78011,
- 82.72198
- ],
- [
- -65.0092,
- 82.17577
- ],
- [
- -78.89729,
- 82.17577
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Assembled from July 2016 ASTER imagery (true color with estimated blue)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC81960222015233LGN00vis",
- "name": "imagico.de: Northern German west coast tidalflats",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81960222015233LGN00vis&z={zoom}&x={x}&y={-y}",
- "endDate": "2015-08-21T00:00:00.000Z",
- "startDate": "2015-08-21T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 12
- ],
- "polygon": [
- [
- [
- 7.63568,
- 53.28027
- ],
- [
- 7.63568,
- 53.6677
- ],
- [
- 8.49433,
- 55.50246
- ],
- [
- 9.20775,
- 55.48106
- ],
- [
- 9.20775,
- 53.28027
- ],
- [
- 7.63568,
- 53.28027
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC81960222015233LGN00ir",
- "name": "imagico.de: Northern German west coast tidalflats (infrared)",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81960222015233LGN00ir&z={zoom}&x={x}&y={-y}",
- "endDate": "2015-08-21T00:00:00.000Z",
- "startDate": "2015-08-21T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 12
- ],
- "polygon": [
- [
- [
- 7.63568,
- 53.28027
- ],
- [
- 7.63568,
- 53.66811
- ],
- [
- 8.49433,
- 55.50246
- ],
- [
- 9.20775,
- 55.48106
- ],
- [
- 9.20775,
- 53.28027
- ],
- [
- 7.63568,
- 53.28027
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (false color IR)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-ngreenland_ast",
- "name": "imagico.de: Northern Greenland ASTER",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=ngreenland_ast&z={zoom}&x={x}&y={-y}",
- "endDate": "2012-08-13T00:00:00.000Z",
- "startDate": "2005-06-21T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 10
- ],
- "polygon": [
- [
- [
- -52.49222,
- 82.48972
- ],
- [
- -52.49222,
- 82.94295
- ],
- [
- -49.28696,
- 83.47312
- ],
- [
- -44.5285,
- 83.73214
- ],
- [
- -29.5253,
- 83.73214
- ],
- [
- -25.26398,
- 83.58271
- ],
- [
- -21.18393,
- 83.39776
- ],
- [
- -21.18393,
- 82.74312
- ],
- [
- -23.40454,
- 82.48972
- ],
- [
- -52.49222,
- 82.48972
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Assembled from mostly 2012 ASTER imagery, some 2005 images mainly in the northeast (true color with estimated blue)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-EO1A1350972013086110KF",
- "name": "imagico.de: Northwest Heard Island",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=EO1A1350972013086110KF&z={zoom}&x={x}&y={-y}",
- "endDate": "2013-03-13T00:00:00.000Z",
- "startDate": "2013-03-13T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 73.2279,
- -53.20333
- ],
- [
- 73.2279,
- -53.01073
- ],
- [
- 73.25949,
- -52.94944
- ],
- [
- 73.78992,
- -52.94944
- ],
- [
- 73.78992,
- -53.06048
- ],
- [
- 73.71783,
- -53.20333
- ],
- [
- 73.2279,
- -53.20333
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Glaciers of Northwest Heard Island (mapped meanwhile) (false color IR)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R111_N09_20160604T154554",
- "name": "imagico.de: Panama Canal",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R111_N09_20160604T154554&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-06-07T00:00:00.000Z",
- "startDate": "2016-06-07T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- -80.01654,
- 8.84898
- ],
- [
- -80.01654,
- 9.41481
- ],
- [
- -79.46859,
- 9.41481
- ],
- [
- -79.46859,
- 8.84898
- ],
- [
- -80.01654,
- 8.84898
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Images of the new locks (but partly cloudy) (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-EO1A0120532016364110KF",
- "name": "imagico.de: Panama Canal - Pacific side",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=EO1A0120532016364110KF&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-12-30T00:00:00.000Z",
- "startDate": "2016-12-30T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- -79.62539,
- 8.77083
- ],
- [
- -79.68684,
- 8.82197
- ],
- [
- -79.68667,
- 8.93705
- ],
- [
- -79.65363,
- 9.09294
- ],
- [
- -79.26816,
- 9.09294
- ],
- [
- -79.32833,
- 8.77083
- ],
- [
- -79.62539,
- 8.77083
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "New locks with less clouds than in the Sentinel-2 image - make sure to check image alignment (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R078_N68_20160930T081002",
- "name": "imagico.de: Pechora Sea Coast",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R078_N68_20160930T081002&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-09-30T00:00:00.000Z",
- "startDate": "2016-09-30T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 53.1802,
- 67.5344
- ],
- [
- 53.1821,
- 68.414
- ],
- [
- 54.2107,
- 69.3367
- ],
- [
- 55.3584,
- 70.2786
- ],
- [
- 59.004,
- 70.2786
- ],
- [
- 60.6947,
- 69.977
- ],
- [
- 61.9837,
- 69.7161
- ],
- [
- 61.9823,
- 68.9395
- ],
- [
- 59.9153,
- 67.5344
- ],
- [
- 53.1802,
- 67.5344
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Sentinel-2 image of the Pechora Sea coast in autumn 2016 (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC81511242016033LGN00",
- "name": "imagico.de: Pensacola Mountains",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81511242016033LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-02-02T00:00:00.000Z",
- "startDate": "2016-02-02T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 10
- ],
- "polygon": [
- [
- [
- -53.20922,
- -84.12525
- ],
- [
- -60.61538,
- -83.78609
- ],
- [
- -60.61538,
- -82.29969
- ],
- [
- -48.72405,
- -82.29987
- ],
- [
- -44.52178,
- -82.43683
- ],
- [
- -44.51354,
- -84.12525
- ],
- [
- -53.20922,
- -84.12525
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Outside regular Landsat coverage and therefore not in LIMA and Bing/Mapbox (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R136_N41_20150831T093006",
- "name": "imagico.de: Prokletije Mountains",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R136_N41_20150831T093006&z={zoom}&x={x}&y={-y}",
- "endDate": "2015-08-31T00:00:00.000Z",
- "startDate": "2015-08-31T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- 19.11233,
- 42.15316
- ],
- [
- 19.08426,
- 43.08074
- ],
- [
- 20.63299,
- 43.09603
- ],
- [
- 20.63788,
- 42.16779
- ],
- [
- 19.11233,
- 42.15316
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Late summer imagery where usual sources are severely limited by clouds and snow (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-DMS_1142622_03746_20110415_17533956",
- "name": "imagico.de: Qasigiannguit",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=DMS_1142622_03746_20110415_17533956&z={zoom}&x={x}&y={-y}",
- "endDate": "2011-04-15T00:00:00.000Z",
- "startDate": "2011-04-15T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 15
- ],
- "polygon": [
- [
- [
- -51.23857,
- 68.79972
- ],
- [
- -51.24334,
- 68.85303
- ],
- [
- -51.15167,
- 68.85303
- ],
- [
- -51.14038,
- 68.80116
- ],
- [
- -51.23857,
- 68.79972
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Icebridge DMS image of the settlement - alignment might be poor",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC81510432015030LGN00",
- "name": "imagico.de: Rann of Kutch",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81510432015030LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2015-01-01T00:00:00.000Z",
- "startDate": "2015-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 12
- ],
- "polygon": [
- [
- [
- 67.9684,
- 22.36265
- ],
- [
- 67.86231,
- 22.38392
- ],
- [
- 67.86231,
- 24.88693
- ],
- [
- 71.48986,
- 24.88693
- ],
- [
- 71.48986,
- 22.36265
- ],
- [
- 67.9684,
- 22.36265
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Land/water distinction difficult to properly map based on Bing/Mapbox images (false color IR)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R093_N41_20150828T092005",
- "name": "imagico.de: Rila and Pirin Mountains",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R093_N41_20150828T092005&z={zoom}&x={x}&y={-y}",
- "endDate": "2015-08-28T00:00:00.000Z",
- "startDate": "2015-08-28T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- 23.80811,
- 41.58488
- ],
- [
- 22.99238,
- 41.60195
- ],
- [
- 23.01186,
- 42.29984
- ],
- [
- 23.99402,
- 42.28339
- ],
- [
- 23.96561,
- 41.58488
- ],
- [
- 23.80811,
- 41.58488
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Late summer imagery where usual sources are severely limited by clouds and snow (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC81730602015040LGN00",
- "name": "imagico.de: Rwenzori Mountains",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81730602015040LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2015-02-09T00:00:00.000Z",
- "startDate": "2015-02-09T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 29.7663,
- 0.20689
- ],
- [
- 29.7663,
- 0.50918
- ],
- [
- 30.0346,
- 0.50918
- ],
- [
- 30.0346,
- 0.20689
- ],
- [
- 29.7663,
- 0.20689
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Recent image of most of the remaining Rwenzori Mountains glaciers (false color IR)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R078_N01_20160702T082522",
- "name": "imagico.de: Rwenzori Mountains 2016",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R078_N01_20160702T082522&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-07-02T00:00:00.000Z",
- "startDate": "2016-07-02T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- 29.80514,
- 0.23586
- ],
- [
- 29.80514,
- 0.46709
- ],
- [
- 30.02503,
- 0.46709
- ],
- [
- 30.02503,
- 0.23586
- ],
- [
- 29.80514,
- 0.23586
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Up-to-date image for glacier mapping (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC80611072014036LGN00",
- "name": "imagico.de: Scott Island",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC80611072014036LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2014-02-05T00:00:00.000Z",
- "startDate": "2014-02-05T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- -180,
- -67.42635
- ],
- [
- -180,
- -67.32544
- ],
- [
- -179.82473,
- -67.32538
- ],
- [
- -179.82473,
- -67.42635
- ],
- [
- -180,
- -67.42635
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Missing in other image sources (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC82100972015347LGN00",
- "name": "imagico.de: Shag Rocks",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC82100972015347LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2015-12-13T00:00:00.000Z",
- "startDate": "2015-12-13T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- -42.12875,
- -53.7205
- ],
- [
- -42.14626,
- -53.45782
- ],
- [
- -41.67573,
- -53.44586
- ],
- [
- -41.65582,
- -53.70872
- ],
- [
- -42.12875,
- -53.7205
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Missing in other image sources (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC81130622013270LGN00",
- "name": "imagico.de: Southeastern Sulawesi",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81130622013270LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2013-09-27T00:00:00.000Z",
- "startDate": "2013-09-27T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 120.84382,
- -3.59545
- ],
- [
- 120.84382,
- -3.15985
- ],
- [
- 120.98184,
- -2.51468
- ],
- [
- 122.62618,
- -2.51468
- ],
- [
- 122.62618,
- -3.00215
- ],
- [
- 122.5007,
- -3.59545
- ],
- [
- 120.84382,
- -3.59545
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Missing islands and coarse coastline due to cloud cover in Bing, lakes could also use additional detail (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC80281222016035LGN00",
- "name": "imagico.de: Southern Transantarctic Mountains",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC80281222016035LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-02-04T00:00:00.000Z",
- "startDate": "2016-02-04T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 10
- ],
- "polygon": [
- [
- [
- 156.96951,
- -84.50098
- ],
- [
- 154.50858,
- -84.46255
- ],
- [
- 154.50858,
- -82.60681
- ],
- [
- 175.46774,
- -82.58505
- ],
- [
- 177.00583,
- -83.52807
- ],
- [
- 177.00583,
- -84.19262
- ],
- [
- 171.93839,
- -84.34633
- ],
- [
- 166.83798,
- -84.4437
- ],
- [
- 161.67029,
- -84.50045
- ],
- [
- 156.96951,
- -84.50098
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Outside regular Landsat coverage and therefore not in LIMA and Bing/Mapbox (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC81030632015286LGN00",
- "name": "imagico.de: Sudirman Range 2015",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81030632015286LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2015-10-13T00:00:00.000Z",
- "startDate": "2015-10-13T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 136.4226,
- -4.2853
- ],
- [
- 136.4226,
- -3.6447
- ],
- [
- 137.7971,
- -3.6447
- ],
- [
- 137.7971,
- -4.2853
- ],
- [
- 136.4226,
- -4.2853
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Older image of the Sudirman Range with no fresh snow showing glacier extent (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R088_S05_20160812T011732",
- "name": "imagico.de: Sudirman Range 2016",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R088_S05_20160812T011732&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-08-12T00:00:00.000Z",
- "startDate": "2016-08-12T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- 136.8044,
- -4.2585
- ],
- [
- 136.8044,
- -3.7836
- ],
- [
- 137.7701,
- -3.7836
- ],
- [
- 137.7701,
- -4.2585
- ],
- [
- 136.8044,
- -4.2585
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Cloud free image of the Sudirman Range but with fresh snow (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-s2sval",
- "name": "imagico.de: Svalbard mosaic",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=s2sval&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-01-01T00:00:00.000Z",
- "startDate": "2016-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 12
- ],
- "polygon": [
- [
- [
- 16.6108,
- 76.4137
- ],
- [
- 16.4731,
- 76.4268
- ],
- [
- 16.3788,
- 76.4589
- ],
- [
- 14.4124,
- 77.1324
- ],
- [
- 14.0784,
- 77.2536
- ],
- [
- 10.9875,
- 78.4054
- ],
- [
- 10.631,
- 78.5605
- ],
- [
- 10.2314,
- 78.8392
- ],
- [
- 10.3952,
- 79.6074
- ],
- [
- 10.516,
- 79.7731
- ],
- [
- 10.9632,
- 79.8707
- ],
- [
- 20.2294,
- 80.849
- ],
- [
- 20.4702,
- 80.8493
- ],
- [
- 25.1752,
- 80.6817
- ],
- [
- 33.4391,
- 80.3438
- ],
- [
- 33.7809,
- 80.3016
- ],
- [
- 34.0395,
- 80.239
- ],
- [
- 33.977,
- 80.1527
- ],
- [
- 25.5722,
- 76.5917
- ],
- [
- 25.2739,
- 76.481
- ],
- [
- 25.1416,
- 76.4327
- ],
- [
- 24.937,
- 76.4176
- ],
- [
- 16.6108,
- 76.4137
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Sentinel-2 mosaic of Svalbard (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-DMS_1142636_160xx_20110507_1822xxxx",
- "name": "imagico.de: Thule Air Base",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=DMS_1142636_160xx_20110507_1822xxxx&z={zoom}&x={x}&y={-y}",
- "endDate": "2011-05-07T00:00:00.000Z",
- "startDate": "2011-05-07T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 15
- ],
- "polygon": [
- [
- [
- -68.93977,
- 76.51133
- ],
- [
- -68.93977,
- 76.5499
- ],
- [
- -68.76635,
- 76.55176
- ],
- [
- -68.50993,
- 76.55176
- ],
- [
- -68.50744,
- 76.51612
- ],
- [
- -68.67897,
- 76.51194
- ],
- [
- -68.93977,
- 76.51133
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Icebridge DMS image - alignment might be poor",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-dms_thule2_2015.09.25",
- "name": "imagico.de: Thule Airbase DMS low altitude overflight September 2015",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=dms_thule2_2015.09.25&z={zoom}&x={x}&y={-y}",
- "endDate": "2015-09-25T00:00:00.000Z",
- "startDate": "2015-09-25T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 17
- ],
- "polygon": [
- [
- [
- -68.74292,
- 76.52636
- ],
- [
- -68.74446,
- 76.5284
- ],
- [
- -68.74807,
- 76.54939
- ],
- [
- -68.74615,
- 76.56017
- ],
- [
- -68.72276,
- 76.56022
- ],
- [
- -68.72017,
- 76.55775
- ],
- [
- -68.71853,
- 76.52921
- ],
- [
- -68.71978,
- 76.52637
- ],
- [
- -68.74292,
- 76.52636
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Icebridge DMS aerial images from Thule Airbase - alignment might be poor",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-dms_thule_2015.10.06",
- "name": "imagico.de: Thule Airbase DMS overflight October 2015",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=dms_thule_2015.10.06&z={zoom}&x={x}&y={-y}",
- "endDate": "2015-10-06T00:00:00.000Z",
- "startDate": "2015-10-06T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 16
- ],
- "polygon": [
- [
- [
- -68.81924,
- 76.5251
- ],
- [
- -68.82651,
- 76.54177
- ],
- [
- -68.77345,
- 76.5439
- ],
- [
- -68.7021,
- 76.54545
- ],
- [
- -68.59177,
- 76.5456
- ],
- [
- -68.59183,
- 76.52793
- ],
- [
- -68.6597,
- 76.5251
- ],
- [
- -68.81924,
- 76.5251
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Icebridge DMS aerial images from Thule Airbase - alignment might be poor",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-dms_thule_2015.09.25",
- "name": "imagico.de: Thule Airbase DMS overflight September 2015",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=dms_thule_2015.09.25&z={zoom}&x={x}&y={-y}",
- "endDate": "2015-09-25T00:00:00.000Z",
- "startDate": "2015-09-25T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 16
- ],
- "polygon": [
- [
- [
- -68.77771,
- 76.50688
- ],
- [
- -68.77662,
- 76.57064
- ],
- [
- -68.68115,
- 76.57065
- ],
- [
- -68.6763,
- 76.55384
- ],
- [
- -68.6762,
- 76.53074
- ],
- [
- -68.68523,
- 76.50688
- ],
- [
- -68.77771,
- 76.50688
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Icebridge DMS aerial images from Thule Airbase - alignment might be poor",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R094_N79_20160812T105622",
- "name": "imagico.de: Ushakov Island August 2016",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R094_N79_20160812T105622&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-08-12T00:00:00.000Z",
- "startDate": "2016-08-12T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 12
- ],
- "polygon": [
- [
- [
- 78.45886,
- 80.72643
- ],
- [
- 78.45886,
- 80.9099
- ],
- [
- 80.48892,
- 80.9099
- ],
- [
- 80.48892,
- 80.72643
- ],
- [
- 78.45886,
- 80.72643
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Up-to-date late summer imagery with few clouds (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC80910682014358LGN00",
- "name": "imagico.de: Vanatinai",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC80910682014358LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2014-12-24T00:00:00.000Z",
- "startDate": "2014-12-24T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 153.06138,
- -11.78923
- ],
- [
- 153.06138,
- -11.28869
- ],
- [
- 153.10927,
- -11.07229
- ],
- [
- 154.41201,
- -11.07229
- ],
- [
- 154.41201,
- -11.78923
- ],
- [
- 153.06138,
- -11.78923
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Coarse coastline due to cloud cover in Bing/Mapbox (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC82330892016031LGN00",
- "name": "imagico.de: Volcán Calbuco",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC82330892016031LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-01-31T00:00:00.000Z",
- "startDate": "2016-01-31T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- -72.86696,
- -41.51741
- ],
- [
- -72.86696,
- -41.04527
- ],
- [
- -72.23181,
- -41.04527
- ],
- [
- -71.8751,
- -41.10829
- ],
- [
- -72.00007,
- -41.51741
- ],
- [
- -72.86696,
- -41.51741
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Image from after the 2015 eruption (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R089_N52_20160623T024048",
- "name": "imagico.de: Vostochny Cosmodrome",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R089_N52_20160623T024048&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-06-23T00:00:00.000Z",
- "startDate": "2016-06-23T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 126.36143,
- 51.37553
- ],
- [
- 126.34804,
- 52.33932
- ],
- [
- 128.60762,
- 52.3409
- ],
- [
- 128.61174,
- 51.37553
- ],
- [
- 126.36143,
- 51.37553
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Recent image showing newest features (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-walps_autumn_2017",
- "name": "imagico.de: Western Alps autumn colors 2017",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=walps_autumn_2017&z={zoom}&x={x}&y={-y}",
- "endDate": "2017-10-17T00:00:00.000Z",
- "startDate": "2017-10-17T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 4.6412,
- 43.2493
- ],
- [
- 4.3118,
- 43.2653
- ],
- [
- 4.3118,
- 44.2167
- ],
- [
- 5.2562,
- 46.965
- ],
- [
- 5.9151,
- 48.7177
- ],
- [
- 7.3866,
- 48.7467
- ],
- [
- 10.088,
- 48.7467
- ],
- [
- 10.088,
- 48.7032
- ],
- [
- 7.7819,
- 43.2813
- ],
- [
- 7.76,
- 43.2653
- ],
- [
- 7.3646,
- 43.2493
- ],
- [
- 4.6412,
- 43.2493
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Autumn colors in the Alps, Jura and southwestern Germany (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-LC81490352013282LGN00",
- "name": "imagico.de: Western Karakoram",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81490352013282LGN00&z={zoom}&x={x}&y={-y}",
- "endDate": "2013-10-09T00:00:00.000Z",
- "startDate": "2013-10-09T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- 75.98364,
- 34.97851
- ],
- [
- 73.96164,
- 35.36957
- ],
- [
- 74.44281,
- 37.09391
- ],
- [
- 76.50601,
- 36.70267
- ],
- [
- 75.98364,
- 34.97851
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Represents approximately minimum snow cover so can be well used for glacier mapping (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "osmim-imagicode-S2A_R039_S15_20160510T145731",
- "name": "imagico.de: Willkanuta Mountains and Quelccaya Ice Cap",
- "type": "tms",
- "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R039_S15_20160510T145731&z={zoom}&x={x}&y={-y}",
- "endDate": "2016-05-10T00:00:00.000Z",
- "startDate": "2016-05-10T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 14
- ],
- "polygon": [
- [
- [
- -71.18071,
- -14.49785
- ],
- [
- -71.17976,
- -13.71029
- ],
- [
- -70.55637,
- -13.71263
- ],
- [
- -70.55637,
- -14.49785
- ],
- [
- -71.18071,
- -14.49785
- ]
- ]
- ],
- "terms_url": "http://maps.imagico.de/#osmim",
- "terms_text": "imagico.de OSM images for mapping",
- "description": "Poor and outdated imagery in other sources (true color)",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
- },
- {
- "id": "IPR-orotofoto-last-tms",
- "name": "IPR ortofoto LAST (tmsproxy)",
- "type": "tms",
- "template": "https://osm-{switch:a,b,c}.zby.cz/tiles_ipr_last.php/{zoom}/{x}/{y}.jpg",
- "scaleExtent": [
- 1,
- 18
- ],
- "polygon": [
- [
- [
- 14.81232,
- 49.93089
- ],
- [
- 14.18755,
- 49.87687
- ],
- [
- 14.12025,
- 50.19882
- ],
- [
- 14.74502,
- 50.25247
- ],
- [
- 14.81232,
- 49.93089
- ]
- ]
- ]
- },
- {
- "id": "IPR-orotofoto-vege-tms",
- "name": "IPR ortofoto Low-Vegetation (tmsproxy)",
- "type": "tms",
- "template": "https://osm-{switch:a,b,c}.zby.cz/tiles_ipr_vege.php/{zoom}/{x}/{y}.jpg",
- "scaleExtent": [
- 1,
- 20
- ],
- "polygon": [
- [
- [
- 14.30454,
- 49.99538
- ],
- [
- 14.31604,
- 49.94205
- ],
- [
- 14.35,
- 49.94508
- ],
- [
- 14.35384,
- 49.92726
- ],
- [
- 14.42385,
- 49.93352
- ],
- [
- 14.42009,
- 49.95097
- ],
- [
- 14.48865,
- 49.95709
- ],
- [
- 14.48479,
- 49.97501
- ],
- [
- 14.55386,
- 49.98117
- ],
- [
- 14.55012,
- 49.99852
- ],
- [
- 14.58455,
- 50.00159
- ],
- [
- 14.5883,
- 49.98424
- ],
- [
- 14.69168,
- 49.99346
- ],
- [
- 14.67634,
- 50.06453
- ],
- [
- 14.71279,
- 50.06777
- ],
- [
- 14.70115,
- 50.12158
- ],
- [
- 14.6647,
- 50.11834
- ],
- [
- 14.661,
- 50.13543
- ],
- [
- 14.62755,
- 50.13246
- ],
- [
- 14.61965,
- 50.16895
- ],
- [
- 14.58543,
- 50.16591
- ],
- [
- 14.58163,
- 50.18344
- ],
- [
- 14.40776,
- 50.168
- ],
- [
- 14.41156,
- 50.15045
- ],
- [
- 14.37765,
- 50.14744
- ],
- [
- 14.3738,
- 50.16524
- ],
- [
- 14.33893,
- 50.16214
- ],
- [
- 14.34278,
- 50.14434
- ],
- [
- 14.27368,
- 50.1382
- ],
- [
- 14.27749,
- 50.12058
- ],
- [
- 14.2088,
- 50.11447
- ],
- [
- 14.21289,
- 50.09557
- ],
- [
- 14.24656,
- 50.09857
- ],
- [
- 14.25417,
- 50.06336
- ],
- [
- 14.21987,
- 50.0603
- ],
- [
- 14.2237,
- 50.04259
- ],
- [
- 14.258,
- 50.04565
- ],
- [
- 14.26953,
- 49.99226
- ],
- [
- 14.30454,
- 49.99538
- ]
- ]
- ]
- },
- {
- "id": "GSGS3906",
- "name": "Ireland British War Office 1:25k GSGS 3906",
- "type": "tms",
- "template": "https://mapwarper.net/layers/tile/101/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 18
- ],
- "polygon": [
- [
- [
- -9.31139,
- 51.43828
- ],
- [
- -7.36131,
- 51.99302
- ],
- [
- -7.33934,
- 52.13149
- ],
- [
- -6.9658,
- 52.06231
- ],
- [
- -6.23796,
- 52.1534
- ],
- [
- -6.21049,
- 52.52928
- ],
- [
- -5.98253,
- 52.80079
- ],
- [
- -5.96056,
- 53.67037
- ],
- [
- -6.20775,
- 53.67851
- ],
- [
- -6.22423,
- 53.95255
- ],
- [
- -5.86442,
- 54.12513
- ],
- [
- -5.85893,
- 54.20392
- ],
- [
- -5.53483,
- 54.23122
- ],
- [
- -5.39476,
- 54.44739
- ],
- [
- -5.50188,
- 54.70052
- ],
- [
- -6.21873,
- 55.38194
- ],
- [
- -6.86418,
- 55.2162
- ],
- [
- -7.25145,
- 55.46455
- ],
- [
- -7.53435,
- 55.30853
- ],
- [
- -8.25395,
- 55.26787
- ],
- [
- -8.61101,
- 54.97259
- ],
- [
- -8.49016,
- 54.89369
- ],
- [
- -8.83897,
- 54.68306
- ],
- [
- -8.42699,
- 54.52397
- ],
- [
- -8.75108,
- 54.31302
- ],
- [
- -9.29765,
- 54.38985
- ],
- [
- -10.05296,
- 54.37866
- ],
- [
- -10.30015,
- 54.05747
- ],
- [
- -10.02275,
- 53.79386
- ],
- [
- -10.30565,
- 53.55142
- ],
- [
- -9.99803,
- 53.24354
- ],
- [
- -9.09166,
- 53.19256
- ],
- [
- -9.81676,
- 53.1102
- ],
- [
- -9.48167,
- 52.96984
- ],
- [
- -9.70415,
- 52.68107
- ],
- [
- -10.00627,
- 52.63608
- ],
- [
- -9.78929,
- 52.52426
- ],
- [
- -9.99803,
- 52.32663
- ],
- [
- -10.64348,
- 52.1753
- ],
- [
- -10.39629,
- 51.9761
- ],
- [
- -10.16832,
- 51.64668
- ],
- [
- -10.28642,
- 51.57334
- ],
- [
- -9.88542,
- 51.57163
- ],
- [
- -9.79204,
- 51.44684
- ],
- [
- -9.31139,
- 51.43828
- ]
- ]
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/Ireland/Background_Imagery#Trinity_College_Dublin",
- "terms_text": "Glucksman Map Library, Trinity College Dublin",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAB3RJTUUH3gQOFR0YB1KT3QAAAAlwSFlzAAAewQAAHsEBw2lUUwAAAARnQU1BAACxjwv8YQUAAAS/SURBVHjandN7TFNXHAfwzrn/lm3ZHy7LYrJkybK5zMw9fCEoPjbeChoHTtBVRF7l1ZZSaG8flCtvsFVpoZZHC5Y6jDM+UScDaxF5lIfSAaMIlVKBS8EZN4d+d9voZpbMFX/JN7nnnvM7n5xzcxmM5wrPlX1yFmP2adgmXKHc78bsU+j9ZRT3HzzE+D0n7tjuYdo5h38X47/q+UWD1nE0tw/gktEC66gdN/tG0Dc4hnEHhdG7DujOdqGHxi4ae2AZti8ccJXZYoOxawRPnjzGwcpmzM8//ntOe86MickZTEw7ka+99nJAZ/8YWjqs7ufc6ibM/fbQ/fzHo0eoOduJ8UkKljt2nLhk9hj4/Wlm6VA9A2NUa/ew6wNQE1OzVGvPEGUZvkvZHVNUo2mA6ugfpvoGrNT8/Dz1tMfd/yJgKZ13h6zjzFbzvbwO8wDZaR4kzeZbZG/fIHnTbCOvdzrI9h472dnVT97oociO23NkW+9M3pDVsc/V69rjRYA7Su11/dvbfkRJvDeOcMORuj8CpelLkJO6BVs4vQhj3QD5fTQS2PXYndQAblw2yrUt9c/6/xeoqzulK+VEoCTtawgSM5HCr0Nsmg48ngJhYiukonNIybeg8MQEFIZBFBWIoa4z1XoMaOrbtbHci2BtW4RachnOlO/GZW0SjuZEY2eWGYVEFfYJ+kDo/4ThdDPExadQcbxb5zmgb6/xYZlAxPtDmByFS2U+EHM5yBOyEZZ8HkzeZaQmyxFZROGkgUQIMQSNvkPrMXBM31YdFqNDJK8ZHE4FYgSt2Jl0GpKUGAhFjTiQ2QJDgRBGdSTIvEJ8IXDSQJvngEbfWrWacGJDzn1sJ34FkSqFQbgWTcUrcLWIATlnBzYSE8hOOIBQzk9YK56jgRs1CzlBVXD6bcijCYSwTYjhXUFD7nrUlHyFc6pPUCL4BpskUwhn6iGPSMYG3igN3KxeCKDZyulGddReBKV3YbNkGidkIWhQLMeFiuUoE3ths8iOfXFnoQ5nwTt9xHVFVZ5f0XGjxks0A++sIWyNqYM0TYp6qS9+UHxOn+BjqMQfwF8wgg2x5+ErccCboKA5bloAUGc8tk40i2CmGuGhgQhjX0MZwUY5uRJVuX6QcpPhm2TErlBfBLAa4S2epYHrlZ5fke4K6SVyIjRejz1REfhO2Ab2wavgZJ8EU9gEUek1MDMvIIa5DUFpzVhHzECtbRR4DJRrDP5f8h04ILwAmTQLAkEWCgsLIJVIIcwS4uhRBSQSCfi8FGzP6sbKjLsoV+tWewwolUfe+pR1y7GD1YDd4cGIi4uFgM/HulWr4LdpI5ITE5EQH49dOwMRmtmND/ebLMoy+WueA2VyBmO9opSTcx6HimWQHypGBicF+6MjwdzzLSQEH6UlBSjKFyNS1AnGMm6Csuwww2NApVK6hkv2JMptmTkGiPNqEcc+jFiuGsy0SrD4lciQ1kJW3ICAqJIWeu1ilUq1EEDlHr/6vr/XxozBuQD6jw6UUXRm6DgRQCeQfIA1iaZ+BuP191xrXwpw1RtL16zwSfi5PVg2hZAcyp0gqQOr9548TU+/82zdywGvLH429eZnO8rPBNMbB4ps+MhPpvyna9ELgb8ASvKZeuq+E9sAAAAASUVORK5CYII="
- },
- {
- "id": "ITACyL-Castile-and-Leon",
- "name": "ITACyL - Castile and León",
- "type": "wms",
- "template": "http://orto.wms.itacyl.es/WMS?REQUEST=GetMap&SERVICE=WMS&VERSION=1.1.1&LAYERS=Ortofoto_CyL&SRS={proj}&FORMAT=image/jpeg&STYLES=Default&TRANSPARENT=TRUE&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:4326",
- "polygon": [
- [
- [
- -1.9358,
- 41.43834
- ],
- [
- -1.89601,
- 41.43869
- ],
- [
- -1.89536,
- 41.39687
- ],
- [
- -1.9767,
- 41.39616
- ],
- [
- -1.97639,
- 41.37623
- ],
- [
- -2.06201,
- 41.37548
- ],
- [
- -2.06262,
- 41.41471
- ],
- [
- -2.10458,
- 41.41434
- ],
- [
- -2.10363,
- 41.35367
- ],
- [
- -2.14448,
- 41.35331
- ],
- [
- -2.1419,
- 41.18683
- ],
- [
- -2.06204,
- 41.18753
- ],
- [
- -2.06171,
- 41.16624
- ],
- [
- -2.02046,
- 41.16661
- ],
- [
- -2.01887,
- 41.06334
- ],
- [
- -2.10083,
- 41.06262
- ],
- [
- -2.10114,
- 41.08296
- ],
- [
- -2.22733,
- 41.08185
- ],
- [
- -2.22704,
- 41.0635
- ],
- [
- -2.26912,
- 41.06313
- ],
- [
- -2.2688,
- 41.04257
- ],
- [
- -2.35325,
- 41.04182
- ],
- [
- -2.35356,
- 41.06148
- ],
- [
- -2.39487,
- 41.06112
- ],
- [
- -2.39457,
- 41.04206
- ],
- [
- -2.43722,
- 41.04168
- ],
- [
- -2.43756,
- 41.06315
- ],
- [
- -2.47928,
- 41.06278
- ],
- [
- -2.47991,
- 41.10369
- ],
- [
- -2.52078,
- 41.10333
- ],
- [
- -2.5211,
- 41.12429
- ],
- [
- -2.60415,
- 41.12357
- ],
- [
- -2.60481,
- 41.16628
- ],
- [
- -2.6471,
- 41.16591
- ],
- [
- -2.64808,
- 41.22931
- ],
- [
- -2.72874,
- 41.2286
- ],
- [
- -2.72907,
- 41.24974
- ],
- [
- -2.89552,
- 41.24828
- ],
- [
- -2.89649,
- 41.31063
- ],
- [
- -2.9363,
- 41.31028
- ],
- [
- -2.93571,
- 41.27231
- ],
- [
- -3.14692,
- 41.27046
- ],
- [
- -3.14723,
- 41.29045
- ],
- [
- -3.22828,
- 41.28974
- ],
- [
- -3.22767,
- 41.25008
- ],
- [
- -3.39581,
- 41.2486
- ],
- [
- -3.39518,
- 41.20808
- ],
- [
- -3.43492,
- 41.20773
- ],
- [
- -3.43429,
- 41.16696
- ],
- [
- -3.47877,
- 41.16657
- ],
- [
- -3.47844,
- 41.14556
- ],
- [
- -3.60336,
- 41.14446
- ],
- [
- -3.6027,
- 41.10169
- ],
- [
- -3.64539,
- 41.10131
- ],
- [
- -3.64508,
- 41.08159
- ],
- [
- -3.68735,
- 41.08122
- ],
- [
- -3.68673,
- 41.04104
- ],
- [
- -3.72866,
- 41.04067
- ],
- [
- -3.72803,
- 40.9998
- ],
- [
- -3.76896,
- 40.99944
- ],
- [
- -3.76864,
- 40.97886
- ],
- [
- -3.85473,
- 40.97811
- ],
- [
- -3.8544,
- 40.95653
- ],
- [
- -3.89857,
- 40.95615
- ],
- [
- -3.89764,
- 40.89575
- ],
- [
- -3.93906,
- 40.89539
- ],
- [
- -3.93716,
- 40.77204
- ],
- [
- -4.06198,
- 40.77093
- ],
- [
- -4.06133,
- 40.72926
- ],
- [
- -4.10372,
- 40.72888
- ],
- [
- -4.10311,
- 40.68918
- ],
- [
- -4.14628,
- 40.6888
- ],
- [
- -4.14498,
- 40.60421
- ],
- [
- -4.19025,
- 40.60381
- ],
- [
- -4.18994,
- 40.58362
- ],
- [
- -4.22946,
- 40.58327
- ],
- [
- -4.22979,
- 40.60487
- ],
- [
- -4.27054,
- 40.60451
- ],
- [
- -4.26958,
- 40.54211
- ],
- [
- -4.31384,
- 40.54171
- ],
- [
- -4.31163,
- 40.39758
- ],
- [
- -4.39376,
- 40.39685
- ],
- [
- -4.39345,
- 40.37677
- ],
- [
- -4.43723,
- 40.37638
- ],
- [
- -4.43623,
- 40.31123
- ],
- [
- -4.52192,
- 40.31046
- ],
- [
- -4.52037,
- 40.20897
- ],
- [
- -4.56131,
- 40.2086
- ],
- [
- -4.56099,
- 40.18763
- ],
- [
- -4.68895,
- 40.18649
- ],
- [
- -4.68933,
- 40.21101
- ],
- [
- -4.73192,
- 40.21063
- ],
- [
- -4.73252,
- 40.24966
- ],
- [
- -4.76838,
- 40.24934
- ],
- [
- -4.76809,
- 40.23035
- ],
- [
- -4.81104,
- 40.22996
- ],
- [
- -4.81147,
- 40.20726
- ],
- [
- -4.8542,
- 40.18414
- ],
- [
- -4.85264,
- 40.12563
- ],
- [
- -4.93699,
- 40.12488
- ],
- [
- -4.93638,
- 40.08529
- ],
- [
- -5.35538,
- 40.08155
- ],
- [
- -5.35606,
- 40.12562
- ],
- [
- -5.44027,
- 40.12487
- ],
- [
- -5.44091,
- 40.16673
- ],
- [
- -5.60382,
- 40.16527
- ],
- [
- -5.60448,
- 40.20881
- ],
- [
- -5.68646,
- 40.20808
- ],
- [
- -5.68712,
- 40.25131
- ],
- [
- -6.02166,
- 40.24834
- ],
- [
- -6.02295,
- 40.33257
- ],
- [
- -6.10433,
- 40.33184
- ],
- [
- -6.1056,
- 40.41451
- ],
- [
- -6.18951,
- 40.41376
- ],
- [
- -6.19018,
- 40.45745
- ],
- [
- -6.26971,
- 40.45675
- ],
- [
- -6.26909,
- 40.41653
- ],
- [
- -6.35192,
- 40.41579
- ],
- [
- -6.35128,
- 40.37422
- ],
- [
- -6.43325,
- 40.37349
- ],
- [
- -6.43264,
- 40.33361
- ],
- [
- -6.52245,
- 40.33281
- ],
- [
- -6.52116,
- 40.24849
- ],
- [
- -6.59942,
- 40.24779
- ],
- [
- -6.59886,
- 40.21128
- ],
- [
- -6.85568,
- 40.20899
- ],
- [
- -6.85634,
- 40.25257
- ],
- [
- -6.93622,
- 40.25186
- ],
- [
- -6.93751,
- 40.33657
- ],
- [
- -6.85111,
- 40.33734
- ],
- [
- -6.86001,
- 40.91672
- ],
- [
- -6.93544,
- 40.91605
- ],
- [
- -6.93741,
- 41.0435
- ],
- [
- -6.85482,
- 41.04423
- ],
- [
- -6.85548,
- 41.08706
- ],
- [
- -6.77015,
- 41.08781
- ],
- [
- -6.77245,
- 41.23623
- ],
- [
- -6.68379,
- 41.23701
- ],
- [
- -6.60436,
- 41.2377
- ],
- [
- -6.60524,
- 41.29474
- ],
- [
- -6.5193,
- 41.29549
- ],
- [
- -6.51991,
- 41.33479
- ],
- [
- -6.43673,
- 41.33552
- ],
- [
- -6.43801,
- 41.41814
- ],
- [
- -6.35318,
- 41.41888
- ],
- [
- -6.35447,
- 41.50141
- ],
- [
- -6.26889,
- 41.50216
- ],
- [
- -6.2708,
- 41.6245
- ],
- [
- -6.35661,
- 41.62375
- ],
- [
- -6.35724,
- 41.66401
- ],
- [
- -6.43548,
- 41.66333
- ],
- [
- -6.4349,
- 41.62651
- ],
- [
- -6.52279,
- 41.62575
- ],
- [
- -6.52343,
- 41.66635
- ],
- [
- -6.6034,
- 41.66565
- ],
- [
- -6.60733,
- 41.9166
- ],
- [
- -7.02209,
- 41.913
- ],
- [
- -7.02406,
- 42.03872
- ],
- [
- -7.1054,
- 42.03801
- ],
- [
- -7.10613,
- 42.08421
- ],
- [
- -7.0208,
- 42.08495
- ],
- [
- -7.02276,
- 42.2094
- ],
- [
- -6.93699,
- 42.21014
- ],
- [
- -6.93763,
- 42.25087
- ],
- [
- -6.8548,
- 42.25159
- ],
- [
- -6.85545,
- 42.29329
- ],
- [
- -6.77342,
- 42.294
- ],
- [
- -6.77403,
- 42.33244
- ],
- [
- -6.85325,
- 42.33176
- ],
- [
- -6.85523,
- 42.4569
- ],
- [
- -7.10341,
- 42.45477
- ],
- [
- -7.10811,
- 42.75115
- ],
- [
- -7.02199,
- 42.75189
- ],
- [
- -7.02241,
- 42.77825
- ],
- [
- -6.93976,
- 42.77896
- ],
- [
- -6.94199,
- 42.91962
- ],
- [
- -6.77302,
- 42.92106
- ],
- [
- -6.77363,
- 42.95958
- ],
- [
- -6.52329,
- 42.96172
- ],
- [
- -6.52391,
- 43.00095
- ],
- [
- -6.43893,
- 43.00167
- ],
- [
- -6.44024,
- 43.08361
- ],
- [
- -5.93782,
- 43.08789
- ],
- [
- -5.93708,
- 43.04189
- ],
- [
- -5.85421,
- 43.0426
- ],
- [
- -5.85357,
- 43.00258
- ],
- [
- -5.77236,
- 43.00327
- ],
- [
- -5.77363,
- 43.08308
- ],
- [
- -5.6027,
- 43.08453
- ],
- [
- -5.60202,
- 43.04222
- ],
- [
- -5.52161,
- 43.04291
- ],
- [
- -5.52226,
- 43.08409
- ],
- [
- -5.4376,
- 43.08481
- ],
- [
- -5.43827,
- 43.12651
- ],
- [
- -5.10444,
- 43.12935
- ],
- [
- -5.10573,
- 43.2099
- ],
- [
- -5.02386,
- 43.2106
- ],
- [
- -5.02451,
- 43.25117
- ],
- [
- -4.90017,
- 43.25222
- ],
- [
- -4.89941,
- 43.20501
- ],
- [
- -4.81126,
- 43.20576
- ],
- [
- -4.80966,
- 43.10538
- ],
- [
- -4.76975,
- 43.10571
- ],
- [
- -4.76937,
- 43.08168
- ],
- [
- -4.72945,
- 43.08202
- ],
- [
- -4.72881,
- 43.04219
- ],
- [
- -4.56322,
- 43.0436
- ],
- [
- -4.56353,
- 43.06296
- ],
- [
- -4.39599,
- 43.06438
- ],
- [
- -4.39566,
- 43.04336
- ],
- [
- -4.3537,
- 43.04371
- ],
- [
- -4.35266,
- 42.97836
- ],
- [
- -4.23013,
- 42.9794
- ],
- [
- -4.22913,
- 42.91625
- ],
- [
- -4.18774,
- 42.9166
- ],
- [
- -4.18706,
- 42.87407
- ],
- [
- -4.10552,
- 42.87476
- ],
- [
- -4.10486,
- 42.83348
- ],
- [
- -3.97801,
- 42.83457
- ],
- [
- -3.97733,
- 42.79214
- ],
- [
- -3.9375,
- 42.79248
- ],
- [
- -3.93781,
- 42.81183
- ],
- [
- -3.85397,
- 42.81254
- ],
- [
- -3.85427,
- 42.83193
- ],
- [
- -3.89573,
- 42.83158
- ],
- [
- -3.89607,
- 42.85343
- ],
- [
- -3.93821,
- 42.85307
- ],
- [
- -3.93889,
- 42.89577
- ],
- [
- -3.9806,
- 42.89542
- ],
- [
- -3.98093,
- 42.91627
- ],
- [
- -4.0222,
- 42.91591
- ],
- [
- -4.0229,
- 42.96014
- ],
- [
- -3.97851,
- 42.96052
- ],
- [
- -3.97946,
- 43.01999
- ],
- [
- -3.93883,
- 43.02034
- ],
- [
- -3.93918,
- 43.04239
- ],
- [
- -3.89704,
- 43.04275
- ],
- [
- -3.89738,
- 43.06414
- ],
- [
- -3.85424,
- 43.06451
- ],
- [
- -3.8549,
- 43.10583
- ],
- [
- -3.77086,
- 43.10654
- ],
- [
- -3.77116,
- 43.12515
- ],
- [
- -3.72819,
- 43.12551
- ],
- [
- -3.72853,
- 43.14656
- ],
- [
- -3.68713,
- 43.14691
- ],
- [
- -3.68778,
- 43.18786
- ],
- [
- -3.60365,
- 43.18858
- ],
- [
- -3.60331,
- 43.16747
- ],
- [
- -3.52278,
- 43.16815
- ],
- [
- -3.52243,
- 43.14619
- ],
- [
- -3.39669,
- 43.14726
- ],
- [
- -3.39699,
- 43.16601
- ],
- [
- -3.35444,
- 43.16637
- ],
- [
- -3.35479,
- 43.18837
- ],
- [
- -3.31268,
- 43.18873
- ],
- [
- -3.31299,
- 43.20828
- ],
- [
- -3.22993,
- 43.20899
- ],
- [
- -3.22959,
- 43.18768
- ],
- [
- -3.10343,
- 43.18875
- ],
- [
- -3.10274,
- 43.14562
- ],
- [
- -3.14546,
- 43.14526
- ],
- [
- -3.14516,
- 43.1271
- ],
- [
- -3.10617,
- 43.12743
- ],
- [
- -3.10445,
- 43.01915
- ],
- [
- -3.02075,
- 43.01987
- ],
- [
- -3.0201,
- 42.97903
- ],
- [
- -2.9811,
- 42.97936
- ],
- [
- -2.97977,
- 42.8958
- ],
- [
- -3.10476,
- 42.89473
- ],
- [
- -3.10276,
- 42.76928
- ],
- [
- -3.02199,
- 42.76997
- ],
- [
- -3.02168,
- 42.74983
- ],
- [
- -2.98024,
- 42.75019
- ],
- [
- -2.97988,
- 42.7275
- ],
- [
- -2.89613,
- 42.72822
- ],
- [
- -2.89679,
- 42.76967
- ],
- [
- -2.8534,
- 42.77004
- ],
- [
- -2.85405,
- 42.81087
- ],
- [
- -2.68577,
- 42.81231
- ],
- [
- -2.68544,
- 42.79159
- ],
- [
- -2.64523,
- 42.79194
- ],
- [
- -2.64489,
- 42.77024
- ],
- [
- -2.52005,
- 42.7713
- ],
- [
- -2.51936,
- 42.72827
- ],
- [
- -2.5607,
- 42.72791
- ],
- [
- -2.56038,
- 42.7076
- ],
- [
- -2.51944,
- 42.70795
- ],
- [
- -2.5181,
- 42.62357
- ],
- [
- -2.60404,
- 42.62283
- ],
- [
- -2.60439,
- 42.64497
- ],
- [
- -2.77154,
- 42.64353
- ],
- [
- -2.77188,
- 42.66544
- ],
- [
- -2.81176,
- 42.6651
- ],
- [
- -2.8121,
- 42.68624
- ],
- [
- -2.85469,
- 42.68588
- ],
- [
- -2.85337,
- 42.60302
- ],
- [
- -2.89413,
- 42.60267
- ],
- [
- -2.89379,
- 42.58159
- ],
- [
- -3.0619,
- 42.58015
- ],
- [
- -3.06031,
- 42.47952
- ],
- [
- -3.02191,
- 42.47985
- ],
- [
- -3.0199,
- 42.3525
- ],
- [
- -3.06255,
- 42.35213
- ],
- [
- -3.06029,
- 42.20906
- ],
- [
- -3.1012,
- 42.20871
- ],
- [
- -3.10086,
- 42.18682
- ],
- [
- -3.06175,
- 42.18716
- ],
- [
- -3.0611,
- 42.14559
- ],
- [
- -3.02029,
- 42.14594
- ],
- [
- -3.01963,
- 42.10375
- ],
- [
- -2.89602,
- 42.10482
- ],
- [
- -2.89501,
- 42.04071
- ],
- [
- -2.81222,
- 42.04143
- ],
- [
- -2.81353,
- 42.1246
- ],
- [
- -2.76871,
- 42.12499
- ],
- [
- -2.76905,
- 42.14674
- ],
- [
- -2.72695,
- 42.14711
- ],
- [
- -2.7266,
- 42.12485
- ],
- [
- -2.68706,
- 42.12519
- ],
- [
- -2.68605,
- 42.06109
- ],
- [
- -2.72804,
- 42.06073
- ],
- [
- -2.72739,
- 42.0193
- ],
- [
- -2.60343,
- 42.02037
- ],
- [
- -2.60376,
- 42.04135
- ],
- [
- -2.561,
- 42.04173
- ],
- [
- -2.56198,
- 42.10411
- ],
- [
- -2.52266,
- 42.10445
- ],
- [
- -2.52299,
- 42.12577
- ],
- [
- -2.47933,
- 42.12615
- ],
- [
- -2.47963,
- 42.145
- ],
- [
- -2.35517,
- 42.14608
- ],
- [
- -2.3555,
- 42.16747
- ],
- [
- -2.31184,
- 42.16785
- ],
- [
- -2.3115,
- 42.14605
- ],
- [
- -2.2699,
- 42.14641
- ],
- [
- -2.26924,
- 42.1048
- ],
- [
- -2.2295,
- 42.10515
- ],
- [
- -2.22981,
- 42.12514
- ],
- [
- -2.14467,
- 42.12587
- ],
- [
- -2.14432,
- 42.10386
- ],
- [
- -2.10385,
- 42.10421
- ],
- [
- -2.10156,
- 41.95811
- ],
- [
- -1.97689,
- 41.95919
- ],
- [
- -1.97655,
- 41.93765
- ],
- [
- -1.93473,
- 41.93801
- ],
- [
- -1.93504,
- 41.95776
- ],
- [
- -1.89453,
- 41.95811
- ],
- [
- -1.89483,
- 41.97715
- ],
- [
- -1.854,
- 41.97751
- ],
- [
- -1.85304,
- 41.91638
- ],
- [
- -1.81381,
- 41.91672
- ],
- [
- -1.81151,
- 41.76984
- ],
- [
- -1.7706,
- 41.77019
- ],
- [
- -1.76866,
- 41.64582
- ],
- [
- -1.85335,
- 41.64508
- ],
- [
- -1.85305,
- 41.62567
- ],
- [
- -1.89471,
- 41.6253
- ],
- [
- -1.89403,
- 41.58215
- ],
- [
- -1.97716,
- 41.58142
- ],
- [
- -1.97683,
- 41.56021
- ],
- [
- -1.9377,
- 41.56055
- ],
- [
- -1.9358,
- 41.43834
- ]
- ]
- ],
- "terms_text": "ITACyL"
- },
- {
- "id": "gsi.go.jp",
- "name": "Japan GSI ortho Imagery",
- "type": "tms",
- "template": "https://cyberjapandata.gsi.go.jp/xyz/ort/{zoom}/{x}/{y}.jpg",
- "scaleExtent": [
- 5,
- 19
- ],
- "polygon": [
- [
- [
- 130.35021,
- 31.45741
- ],
- [
- 130.26851,
- 31.45817
- ],
- [
- 130.20875,
- 31.44939
- ],
- [
- 130.1002,
- 31.44996
- ],
- [
- 130.09237,
- 31.3919
- ],
- [
- 130.13355,
- 31.37528
- ],
- [
- 130.35043,
- 31.37528
- ],
- [
- 130.35021,
- 31.45741
- ]
- ],
- [
- [
- 130.4193,
- 31.41715
- ],
- [
- 130.417,
- 31.41672
- ],
- [
- 130.41677,
- 31.47525
- ],
- [
- 130.34179,
- 31.47506
- ],
- [
- 130.34179,
- 31.48374
- ],
- [
- 130.33362,
- 31.48374
- ],
- [
- 130.33329,
- 31.50044
- ],
- [
- 130.36675,
- 31.49997
- ],
- [
- 130.36664,
- 31.52458
- ],
- [
- 130.35019,
- 31.52544
- ],
- [
- 130.35041,
- 31.54986
- ],
- [
- 130.32523,
- 31.55024
- ],
- [
- 130.32501,
- 31.60029
- ],
- [
- 130.31661,
- 31.63336
- ],
- [
- 130.31634,
- 31.65084
- ],
- [
- 130.3752,
- 31.65084
- ],
- [
- 130.31164,
- 31.67599
- ],
- [
- 130.29194,
- 31.69179
- ],
- [
- 130.29105,
- 31.73235
- ],
- [
- 130.2521,
- 31.73387
- ],
- [
- 130.24986,
- 31.71693
- ],
- [
- 130.24427,
- 31.71712
- ],
- [
- 130.21629,
- 31.75804
- ],
- [
- 130.17533,
- 31.75919
- ],
- [
- 130.17422,
- 31.78259
- ],
- [
- 130.18384,
- 31.79096
- ],
- [
- 130.23644,
- 31.79096
- ],
- [
- 130.26911,
- 31.77003
- ],
- [
- 130.36334,
- 31.75785
- ],
- [
- 130.42668,
- 31.70893
- ],
- [
- 130.62409,
- 31.7076
- ],
- [
- 130.62588,
- 31.68627
- ],
- [
- 130.61088,
- 31.62245
- ],
- [
- 130.55582,
- 31.50249
- ],
- [
- 130.54239,
- 31.41715
- ],
- [
- 130.42158,
- 31.41715
- ],
- [
- 130.4193,
- 31.41715
- ]
- ],
- [
- [
- 130.52516,
- 31.24184
- ],
- [
- 130.54441,
- 31.24107
- ],
- [
- 130.56858,
- 31.21715
- ],
- [
- 130.59924,
- 31.21657
- ],
- [
- 130.59924,
- 31.26633
- ],
- [
- 130.57641,
- 31.26633
- ],
- [
- 130.57351,
- 31.31625
- ],
- [
- 130.6308,
- 31.28393
- ],
- [
- 130.68989,
- 31.27666
- ],
- [
- 130.66706,
- 31.26059
- ],
- [
- 130.66594,
- 31.21925
- ],
- [
- 130.64401,
- 31.18135
- ],
- [
- 130.59007,
- 31.14688
- ],
- [
- 130.54239,
- 31.17503
- ],
- [
- 130.54239,
- 31.1913
- ],
- [
- 130.50009,
- 31.19207
- ],
- [
- 130.50009,
- 31.21581
- ],
- [
- 130.52494,
- 31.21715
- ],
- [
- 130.52516,
- 31.24184
- ]
- ],
- [
- [
- 130.74987,
- 31.16622
- ],
- [
- 130.74965,
- 31.24107
- ],
- [
- 130.77449,
- 31.25887
- ],
- [
- 130.77718,
- 31.33307
- ],
- [
- 130.75122,
- 31.37455
- ],
- [
- 130.74898,
- 31.41658
- ],
- [
- 130.67557,
- 31.46852
- ],
- [
- 130.67489,
- 31.50077
- ],
- [
- 131.40006,
- 31.5002
- ],
- [
- 131.40834,
- 31.45916
- ],
- [
- 131.36694,
- 31.40932
- ],
- [
- 131.3656,
- 31.35142
- ],
- [
- 131.31703,
- 31.34206
- ],
- [
- 131.29957,
- 31.36595
- ],
- [
- 131.24317,
- 31.36633
- ],
- [
- 131.19952,
- 31.43358
- ],
- [
- 131.14782,
- 31.45019
- ],
- [
- 131.13394,
- 31.45
- ],
- [
- 131.1326,
- 31.42899
- ],
- [
- 131.10059,
- 31.42536
- ],
- [
- 131.05091,
- 31.41639
- ],
- [
- 131.04912,
- 31.39155
- ],
- [
- 131.08403,
- 31.35085
- ],
- [
- 131.11626,
- 31.35085
- ],
- [
- 131.11783,
- 31.33422
- ],
- [
- 130.99943,
- 31.33365
- ],
- [
- 130.99965,
- 31.25102
- ],
- [
- 130.87521,
- 31.25064
- ],
- [
- 130.87454,
- 31.16679
- ],
- [
- 130.74987,
- 31.16622
- ]
- ],
- [
- [
- 130.86625,
- 30.47468
- ],
- [
- 130.86602,
- 30.49937
- ],
- [
- 130.93362,
- 30.57493
- ],
- [
- 130.93227,
- 30.61597
- ],
- [
- 131.00636,
- 30.61655
- ],
- [
- 131.04933,
- 30.59112
- ],
- [
- 131.04933,
- 30.54275
- ],
- [
- 130.99203,
- 30.50843
- ],
- [
- 130.99114,
- 30.47526
- ],
- [
- 130.86625,
- 30.47468
- ]
- ],
- [
- [
- 137.87486,
- 36.37519
- ],
- [
- 138.00005,
- 36.37494
- ],
- [
- 138.00005,
- 36.30839
- ],
- [
- 138.04159,
- 36.30827
- ],
- [
- 138.04191,
- 36.29175
- ],
- [
- 138.08306,
- 36.29162
- ],
- [
- 138.08353,
- 36.2499
- ],
- [
- 138.13307,
- 36.24996
- ],
- [
- 138.13354,
- 36.16677
- ],
- [
- 138.16654,
- 36.1667
- ],
- [
- 138.16694,
- 36.12485
- ],
- [
- 138.04167,
- 36.12491
- ],
- [
- 138.04144,
- 36.04158
- ],
- [
- 137.87479,
- 36.04152
- ],
- [
- 137.87486,
- 36.37519
- ]
- ],
- [
- [
- 138.37446,
- 35.83393
- ],
- [
- 138.4998,
- 35.83285
- ],
- [
- 138.4998,
- 35.75042
- ],
- [
- 138.74936,
- 35.7506
- ],
- [
- 138.7507,
- 35.58332
- ],
- [
- 138.62447,
- 35.58386
- ],
- [
- 138.62536,
- 35.49991
- ],
- [
- 138.37491,
- 35.49972
- ],
- [
- 138.37446,
- 35.83393
- ]
- ],
- [
- [
- 135.79179,
- 35.64165
- ],
- [
- 135.8006,
- 35.64923
- ],
- [
- 135.834,
- 35.65052
- ],
- [
- 135.8916,
- 35.62003
- ],
- [
- 135.89271,
- 35.6091
- ],
- [
- 135.95776,
- 35.60858
- ],
- [
- 135.9834,
- 35.6172
- ],
- [
- 135.98435,
- 35.641
- ],
- [
- 135.95095,
- 35.6419
- ],
- [
- 135.95048,
- 35.68305
- ],
- [
- 135.94225,
- 35.69204
- ],
- [
- 135.94178,
- 35.73239
- ],
- [
- 136.00809,
- 35.77516
- ],
- [
- 136.03167,
- 35.77503
- ],
- [
- 136.05018,
- 35.75012
- ],
- [
- 136.05003,
- 35.66646
- ],
- [
- 136.0084,
- 35.65836
- ],
- [
- 136.00856,
- 35.61694
- ],
- [
- 136.03404,
- 35.60022
- ],
- [
- 136.06664,
- 35.59996
- ],
- [
- 136.06617,
- 35.61656
- ],
- [
- 136.1002,
- 35.62492
- ],
- [
- 136.1002,
- 35.69127
- ],
- [
- 136.07598,
- 35.69166
- ],
- [
- 136.07503,
- 35.74922
- ],
- [
- 136.08342,
- 35.76694
- ],
- [
- 136.12441,
- 35.76605
- ],
- [
- 136.15021,
- 35.7004
- ],
- [
- 136.15875,
- 35.64216
- ],
- [
- 136.17442,
- 35.62492
- ],
- [
- 136.17553,
- 35.58342
- ],
- [
- 136.1749,
- 35.55813
- ],
- [
- 136.15859,
- 35.55832
- ],
- [
- 136.15875,
- 35.56701
- ],
- [
- 136.1165,
- 35.56675
- ],
- [
- 136.11626,
- 35.52555
- ],
- [
- 136.04045,
- 35.5247
- ],
- [
- 136.01684,
- 35.50311
- ],
- [
- 136.01661,
- 35.48334
- ],
- [
- 135.97543,
- 35.48334
- ],
- [
- 135.94141,
- 35.50885
- ],
- [
- 135.94186,
- 35.56641
- ],
- [
- 135.93358,
- 35.57487
- ],
- [
- 135.90873,
- 35.57514
- ],
- [
- 135.90851,
- 35.59953
- ],
- [
- 135.83185,
- 35.59972
- ],
- [
- 135.7928,
- 35.62519
- ],
- [
- 135.79179,
- 35.64165
- ]
- ],
- [
- [
- 135.80916,
- 35.47505
- ],
- [
- 135.77044,
- 35.53345
- ],
- [
- 135.7579,
- 35.53326
- ],
- [
- 135.74168,
- 35.51641
- ],
- [
- 135.70072,
- 35.51705
- ],
- [
- 135.67464,
- 35.53363
- ],
- [
- 135.67543,
- 35.56659
- ],
- [
- 135.6996,
- 35.58333
- ],
- [
- 135.81654,
- 35.58343
- ],
- [
- 135.81654,
- 35.56804
- ],
- [
- 135.85817,
- 35.54956
- ],
- [
- 135.85851,
- 35.52543
- ],
- [
- 135.8509,
- 35.5247
- ],
- [
- 135.85012,
- 35.47514
- ],
- [
- 135.80916,
- 35.47505
- ]
- ],
- [
- [
- 135.58333,
- 35.44132
- ],
- [
- 135.61656,
- 35.44989
- ],
- [
- 135.64163,
- 35.47496
- ],
- [
- 135.71639,
- 35.47478
- ],
- [
- 135.71728,
- 35.46703
- ],
- [
- 135.81442,
- 35.46539
- ],
- [
- 135.86668,
- 35.44187
- ],
- [
- 135.86679,
- 35.40868
- ],
- [
- 135.81722,
- 35.40822
- ],
- [
- 135.81677,
- 35.38496
- ],
- [
- 135.77548,
- 35.3835
- ],
- [
- 135.75835,
- 35.40804
- ],
- [
- 135.59183,
- 35.4084
- ],
- [
- 135.58322,
- 35.42536
- ],
- [
- 135.58333,
- 35.44132
- ]
- ],
- [
- [
- 135.40011,
- 35.43312
- ],
- [
- 135.42496,
- 35.44189
- ],
- [
- 135.45803,
- 35.45008
- ],
- [
- 135.45899,
- 35.49164
- ],
- [
- 135.46642,
- 35.49184
- ],
- [
- 135.46619,
- 35.50807
- ],
- [
- 135.44181,
- 35.51709
- ],
- [
- 135.43968,
- 35.53293
- ],
- [
- 135.45843,
- 35.55804
- ],
- [
- 135.52324,
- 35.55811
- ],
- [
- 135.52498,
- 35.5091
- ],
- [
- 135.54152,
- 35.50008
- ],
- [
- 135.54152,
- 35.4834
- ],
- [
- 135.57515,
- 35.48366
- ],
- [
- 135.57491,
- 35.49164
- ],
- [
- 135.60878,
- 35.49171
- ],
- [
- 135.60894,
- 35.46684
- ],
- [
- 135.59208,
- 35.45826
- ],
- [
- 135.53305,
- 35.45826
- ],
- [
- 135.50029,
- 35.45008
- ],
- [
- 135.50045,
- 35.4415
- ],
- [
- 135.50789,
- 35.42506
- ],
- [
- 135.53337,
- 35.42513
- ],
- [
- 135.53297,
- 35.38346
- ],
- [
- 135.5416,
- 35.38333
- ],
- [
- 135.54176,
- 35.36688
- ],
- [
- 135.5086,
- 35.35836
- ],
- [
- 135.50892,
- 35.34216
- ],
- [
- 135.50013,
- 35.34164
- ],
- [
- 135.50013,
- 35.41662
- ],
- [
- 135.39987,
- 35.41655
- ],
- [
- 135.40011,
- 35.43312
- ]
- ],
- [
- [
- 133.70822,
- 35.45816
- ],
- [
- 133.70822,
- 35.33319
- ],
- [
- 133.12484,
- 35.33328
- ],
- [
- 133.12495,
- 35.3749
- ],
- [
- 132.95877,
- 35.37508
- ],
- [
- 132.95821,
- 35.4578
- ],
- [
- 132.87506,
- 35.45853
- ],
- [
- 132.87461,
- 35.52504
- ],
- [
- 132.95015,
- 35.52522
- ],
- [
- 132.9497,
- 35.55819
- ],
- [
- 133.01674,
- 35.55855
- ],
- [
- 133.01685,
- 35.56675
- ],
- [
- 133.03352,
- 35.56693
- ],
- [
- 133.03308,
- 35.59205
- ],
- [
- 133.06687,
- 35.59187
- ],
- [
- 133.06654,
- 35.6168
- ],
- [
- 133.14135,
- 35.61671
- ],
- [
- 133.14151,
- 35.59181
- ],
- [
- 133.36667,
- 35.59186
- ],
- [
- 133.36689,
- 35.57484
- ],
- [
- 133.34216,
- 35.57447
- ],
- [
- 133.34194,
- 35.558
- ],
- [
- 133.33321,
- 35.55026
- ],
- [
- 133.28363,
- 35.55017
- ],
- [
- 133.28341,
- 35.49178
- ],
- [
- 133.33354,
- 35.4916
- ],
- [
- 133.33354,
- 35.47529
- ],
- [
- 133.41714,
- 35.47492
- ],
- [
- 133.41714,
- 35.37516
- ],
- [
- 133.49995,
- 35.37534
- ],
- [
- 133.49973,
- 35.45806
- ],
- [
- 133.45854,
- 35.45806
- ],
- [
- 133.45854,
- 35.51629
- ],
- [
- 133.49212,
- 35.5335
- ],
- [
- 133.54136,
- 35.54161
- ],
- [
- 133.58343,
- 35.54197
- ],
- [
- 133.58355,
- 35.45843
- ],
- [
- 133.70822,
- 35.45816
- ]
- ],
- [
- [
- 133.84174,
- 35.46646
- ],
- [
- 133.84158,
- 35.58367
- ],
- [
- 133.975,
- 35.58329
- ],
- [
- 133.97532,
- 35.5086
- ],
- [
- 134.00823,
- 35.50834
- ],
- [
- 134.0334,
- 35.49971
- ],
- [
- 134.0421,
- 35.47497
- ],
- [
- 134.04432,
- 35.45834
- ],
- [
- 134.08357,
- 35.4586
- ],
- [
- 134.08309,
- 35.53359
- ],
- [
- 134.13326,
- 35.54969
- ],
- [
- 134.23328,
- 35.55999
- ],
- [
- 134.27491,
- 35.58342
- ],
- [
- 134.33299,
- 35.58367
- ],
- [
- 134.33521,
- 35.49172
- ],
- [
- 134.36654,
- 35.49224
- ],
- [
- 134.36654,
- 35.49997
- ],
- [
- 134.41718,
- 35.49971
- ],
- [
- 134.41592,
- 35.5417
- ],
- [
- 134.6253,
- 35.54157
- ],
- [
- 134.62514,
- 35.37554
- ],
- [
- 134.70839,
- 35.37463
- ],
- [
- 134.70823,
- 35.33398
- ],
- [
- 134.41655,
- 35.33359
- ],
- [
- 134.41592,
- 35.37528
- ],
- [
- 134.39218,
- 35.37541
- ],
- [
- 134.39155,
- 35.35011
- ],
- [
- 134.37477,
- 35.33346
- ],
- [
- 134.20005,
- 35.33359
- ],
- [
- 134.19939,
- 35.35874
- ],
- [
- 134.24997,
- 35.39971
- ],
- [
- 134.27515,
- 35.39962
- ],
- [
- 134.27504,
- 35.39205
- ],
- [
- 134.35819,
- 35.39314
- ],
- [
- 134.35852,
- 35.3999
- ],
- [
- 134.3752,
- 35.39999
- ],
- [
- 134.37441,
- 35.42489
- ],
- [
- 134.33256,
- 35.42507
- ],
- [
- 134.33278,
- 35.41659
- ],
- [
- 134.04954,
- 35.41659
- ],
- [
- 134.05077,
- 35.39178
- ],
- [
- 134.0661,
- 35.39187
- ],
- [
- 134.06711,
- 35.39999
- ],
- [
- 134.14187,
- 35.40017
- ],
- [
- 134.14164,
- 35.36678
- ],
- [
- 134.18339,
- 35.35847
- ],
- [
- 134.18372,
- 35.33337
- ],
- [
- 133.78309,
- 35.33364
- ],
- [
- 133.78331,
- 35.34159
- ],
- [
- 133.82472,
- 35.3592
- ],
- [
- 133.82505,
- 35.38311
- ],
- [
- 133.84173,
- 35.40838
- ],
- [
- 133.89981,
- 35.40893
- ],
- [
- 133.89981,
- 35.41677
- ],
- [
- 133.85829,
- 35.41659
- ],
- [
- 133.8574,
- 35.46646
- ],
- [
- 133.84174,
- 35.46646
- ]
- ],
- [
- [
- 133.24987,
- 33.66667
- ],
- [
- 133.41786,
- 33.66674
- ],
- [
- 133.52485,
- 33.66674
- ],
- [
- 133.52493,
- 33.79178
- ],
- [
- 133.64157,
- 33.79185
- ],
- [
- 133.64188,
- 33.66681
- ],
- [
- 133.75006,
- 33.66687
- ],
- [
- 133.75029,
- 33.62517
- ],
- [
- 133.79152,
- 33.62498
- ],
- [
- 133.79168,
- 33.5084
- ],
- [
- 133.73336,
- 33.5084
- ],
- [
- 133.73328,
- 33.51658
- ],
- [
- 133.64196,
- 33.51671
- ],
- [
- 133.60833,
- 33.48346
- ],
- [
- 133.52493,
- 33.46682
- ],
- [
- 133.47492,
- 33.41935
- ],
- [
- 133.43313,
- 33.38321
- ],
- [
- 133.37497,
- 33.38334
- ],
- [
- 133.37497,
- 33.49157
- ],
- [
- 133.20817,
- 33.49191
- ],
- [
- 133.20824,
- 33.55827
- ],
- [
- 133.24947,
- 33.55833
- ],
- [
- 133.24987,
- 33.66667
- ]
- ],
- [
- [
- 134.3501,
- 33.73355
- ],
- [
- 134.4832,
- 33.73368
- ],
- [
- 134.48336,
- 33.66732
- ],
- [
- 134.43366,
- 33.65033
- ],
- [
- 134.43287,
- 33.63412
- ],
- [
- 134.35279,
- 33.63347
- ],
- [
- 134.3501,
- 33.73355
- ]
- ],
- [
- [
- 140.31656,
- 36.21656
- ],
- [
- 140.31671,
- 36.44984
- ],
- [
- 140.34973,
- 36.44994
- ],
- [
- 140.35012,
- 36.51668
- ],
- [
- 140.47467,
- 36.51671
- ],
- [
- 140.47483,
- 36.59159
- ],
- [
- 140.62489,
- 36.59204
- ],
- [
- 140.62467,
- 36.63354
- ],
- [
- 140.64974,
- 36.6348
- ],
- [
- 140.65041,
- 36.71684
- ],
- [
- 140.69912,
- 36.81554
- ],
- [
- 140.71006,
- 36.91306
- ],
- [
- 140.70838,
- 36.95687
- ],
- [
- 140.74956,
- 36.95866
- ],
- [
- 140.75323,
- 37.06176
- ],
- [
- 140.75001,
- 37.16671
- ],
- [
- 141.00832,
- 37.16666
- ],
- [
- 141.00837,
- 37.0917
- ],
- [
- 140.98331,
- 37.05828
- ],
- [
- 140.98333,
- 36.95834
- ],
- [
- 140.90834,
- 36.90002
- ],
- [
- 140.81672,
- 36.89999
- ],
- [
- 140.80828,
- 36.87498
- ],
- [
- 140.80833,
- 36.85
- ],
- [
- 140.81655,
- 36.85004
- ],
- [
- 140.81669,
- 36.8415
- ],
- [
- 140.81669,
- 36.81816
- ],
- [
- 140.79988,
- 36.80832
- ],
- [
- 140.7834,
- 36.79992
- ],
- [
- 140.775,
- 36.79523
- ],
- [
- 140.77498,
- 36.78339
- ],
- [
- 140.75836,
- 36.775
- ],
- [
- 140.75825,
- 36.75837
- ],
- [
- 140.75002,
- 36.75831
- ],
- [
- 140.74689,
- 36.71939
- ],
- [
- 140.73336,
- 36.65048
- ],
- [
- 140.69167,
- 36.58337
- ],
- [
- 140.65003,
- 36.51336
- ],
- [
- 140.64998,
- 36.38351
- ],
- [
- 140.59986,
- 36.27483
- ],
- [
- 140.57499,
- 36.24796
- ],
- [
- 140.57463,
- 36.21729
- ],
- [
- 140.31656,
- 36.21656
- ]
- ],
- [
- [
- 141.2166,
- 41.24992
- ],
- [
- 141.41662,
- 41.24971
- ],
- [
- 141.39858,
- 41.17052
- ],
- [
- 141.40426,
- 41.0968
- ],
- [
- 141.39503,
- 41.04046
- ],
- [
- 141.39858,
- 40.97185
- ],
- [
- 141.40625,
- 40.91003
- ],
- [
- 141.41136,
- 40.83011
- ],
- [
- 141.41307,
- 40.80204
- ],
- [
- 141.42245,
- 40.74987
- ],
- [
- 141.34161,
- 40.75084
- ],
- [
- 141.3149,
- 40.74556
- ],
- [
- 141.29203,
- 40.74169
- ],
- [
- 141.23322,
- 40.7419
- ],
- [
- 141.23307,
- 40.85837
- ],
- [
- 141.25026,
- 40.85858
- ],
- [
- 141.24941,
- 40.91647
- ],
- [
- 141.17412,
- 40.9169
- ],
- [
- 141.22498,
- 40.9948
- ],
- [
- 141.23819,
- 41.0696
- ],
- [
- 141.2497,
- 41.1258
- ],
- [
- 141.27143,
- 41.15875
- ],
- [
- 141.23336,
- 41.22995
- ],
- [
- 141.2166,
- 41.24992
- ]
- ],
- [
- [
- 141.25854,
- 41.3166
- ],
- [
- 141.15015,
- 41.31672
- ],
- [
- 141.1499,
- 41.39163
- ],
- [
- 141.18877,
- 41.39205
- ],
- [
- 141.21625,
- 41.37916
- ],
- [
- 141.25849,
- 41.36012
- ],
- [
- 141.25854,
- 41.3166
- ]
- ],
- [
- [
- 141.05841,
- 45.2584
- ],
- [
- 141.03453,
- 45.25833
- ],
- [
- 141.00874,
- 45.25815
- ],
- [
- 141.0083,
- 45.27495
- ],
- [
- 140.99994,
- 45.27495
- ],
- [
- 141.00002,
- 45.30371
- ],
- [
- 140.99999,
- 45.30828
- ],
- [
- 140.99196,
- 45.30846
- ],
- [
- 140.99171,
- 45.34162
- ],
- [
- 140.98351,
- 45.34172
- ],
- [
- 140.98336,
- 45.34998
- ],
- [
- 140.97477,
- 45.35008
- ],
- [
- 140.97502,
- 45.3667
- ],
- [
- 140.96664,
- 45.36675
- ],
- [
- 140.96685,
- 45.39818
- ],
- [
- 140.9665,
- 45.42499
- ],
- [
- 140.9584,
- 45.42484
- ],
- [
- 140.95816,
- 45.43314
- ],
- [
- 140.95012,
- 45.4335
- ],
- [
- 140.94967,
- 45.51651
- ],
- [
- 140.97443,
- 45.51672
- ],
- [
- 140.97448,
- 45.50014
- ],
- [
- 140.98307,
- 45.50042
- ],
- [
- 140.98332,
- 45.46697
- ],
- [
- 140.99045,
- 45.46704
- ],
- [
- 140.99135,
- 45.45876
- ],
- [
- 141.00019,
- 45.45813
- ],
- [
- 141.00035,
- 45.45002
- ],
- [
- 141.01627,
- 45.4502
- ],
- [
- 141.01637,
- 45.47496
- ],
- [
- 141.04992,
- 45.47532
- ],
- [
- 141.04992,
- 45.46676
- ],
- [
- 141.06614,
- 45.46679
- ],
- [
- 141.0665,
- 45.4502
- ],
- [
- 141.07463,
- 45.44999
- ],
- [
- 141.07498,
- 45.34178
- ],
- [
- 141.0666,
- 45.34168
- ],
- [
- 141.06418,
- 45.30611
- ],
- [
- 141.06644,
- 45.30565
- ],
- [
- 141.06629,
- 45.28484
- ],
- [
- 141.05906,
- 45.28357
- ],
- [
- 141.05841,
- 45.2584
- ]
- ],
- [
- [
- 144.27488,
- 42.96671
- ],
- [
- 144.27502,
- 42.99155
- ],
- [
- 144.25861,
- 42.99145
- ],
- [
- 144.25805,
- 42.98314
- ],
- [
- 144.20818,
- 42.98319
- ],
- [
- 144.20854,
- 42.97472
- ],
- [
- 144.16684,
- 42.97503
- ],
- [
- 144.16684,
- 43.00496
- ],
- [
- 144.16642,
- 43.04178
- ],
- [
- 144.07486,
- 43.04188
- ],
- [
- 144.07493,
- 43.10025
- ],
- [
- 144.24988,
- 43.1
- ],
- [
- 144.24988,
- 43.1168
- ],
- [
- 144.29179,
- 43.11675
- ],
- [
- 144.292,
- 43.0919
- ],
- [
- 144.4168,
- 43.09185
- ],
- [
- 144.4168,
- 43.1168
- ],
- [
- 144.56654,
- 43.1168
- ],
- [
- 144.56675,
- 42.99171
- ],
- [
- 144.50005,
- 42.9915
- ],
- [
- 144.5002,
- 42.92481
- ],
- [
- 144.46653,
- 42.92501
- ],
- [
- 144.31739,
- 42.96675
- ],
- [
- 144.27488,
- 42.96671
- ]
- ],
- [
- [
- 140.69973,
- 42.57513
- ],
- [
- 140.70015,
- 42.61647
- ],
- [
- 140.84451,
- 42.61673
- ],
- [
- 140.99961,
- 42.61669
- ],
- [
- 141.00006,
- 42.54168
- ],
- [
- 141.24984,
- 42.54168
- ],
- [
- 141.24994,
- 42.58336
- ],
- [
- 141.29163,
- 42.58332
- ],
- [
- 141.29158,
- 42.6251
- ],
- [
- 141.37501,
- 42.62498
- ],
- [
- 141.37501,
- 42.66662
- ],
- [
- 141.49992,
- 42.66666
- ],
- [
- 141.49992,
- 42.8165
- ],
- [
- 141.47496,
- 42.8165
- ],
- [
- 141.47511,
- 42.83341
- ],
- [
- 141.81236,
- 42.83357
- ],
- [
- 141.95752,
- 42.83328
- ],
- [
- 141.94355,
- 42.77977
- ],
- [
- 141.95762,
- 42.77896
- ],
- [
- 141.95832,
- 42.7502
- ],
- [
- 141.99991,
- 42.75086
- ],
- [
- 141.9992,
- 42.71493
- ],
- [
- 142.00031,
- 42.67632
- ],
- [
- 142.01799,
- 42.65076
- ],
- [
- 142.09082,
- 42.65002
- ],
- [
- 142.09122,
- 42.5251
- ],
- [
- 142.02472,
- 42.5251
- ],
- [
- 141.96033,
- 42.52495
- ],
- [
- 141.8665,
- 42.52518
- ],
- [
- 141.8656,
- 42.57713
- ],
- [
- 141.83577,
- 42.58519
- ],
- [
- 141.80482,
- 42.57417
- ],
- [
- 141.74646,
- 42.57705
- ],
- [
- 141.73069,
- 42.61477
- ],
- [
- 141.61707,
- 42.61055
- ],
- [
- 141.52134,
- 42.60331
- ],
- [
- 141.45615,
- 42.57587
- ],
- [
- 141.3562,
- 42.52866
- ],
- [
- 141.27523,
- 42.48822
- ],
- [
- 141.19507,
- 42.43791
- ],
- [
- 141.10476,
- 42.3914
- ],
- [
- 141.05393,
- 42.33165
- ],
- [
- 141.0254,
- 42.29161
- ],
- [
- 140.95187,
- 42.29146
- ],
- [
- 140.9147,
- 42.32682
- ],
- [
- 140.89451,
- 42.37174
- ],
- [
- 140.88426,
- 42.42723
- ],
- [
- 140.85041,
- 42.46096
- ],
- [
- 140.76643,
- 42.49978
- ],
- [
- 140.76663,
- 42.52821
- ],
- [
- 140.69973,
- 42.57513
- ]
- ],
- [
- [
- 140.75005,
- 43.23374
- ],
- [
- 140.82762,
- 43.2135
- ],
- [
- 140.88245,
- 43.22531
- ],
- [
- 140.97338,
- 43.24601
- ],
- [
- 141.02139,
- 43.24311
- ],
- [
- 141.04213,
- 43.20211
- ],
- [
- 141.08346,
- 43.18205
- ],
- [
- 141.17267,
- 43.16382
- ],
- [
- 141.25678,
- 43.19366
- ],
- [
- 141.37528,
- 43.33327
- ],
- [
- 141.62491,
- 43.33335
- ],
- [
- 141.62451,
- 43.4168
- ],
- [
- 141.79146,
- 43.4168
- ],
- [
- 141.79197,
- 43.83339
- ],
- [
- 142.12487,
- 43.83332
- ],
- [
- 142.12487,
- 43.75022
- ],
- [
- 142.16656,
- 43.74993
- ],
- [
- 142.16656,
- 43.83317
- ],
- [
- 142.24954,
- 43.83325
- ],
- [
- 142.24984,
- 43.8581
- ],
- [
- 142.27465,
- 43.8581
- ],
- [
- 142.27465,
- 43.87425
- ],
- [
- 142.26671,
- 43.8749
- ],
- [
- 142.26651,
- 43.91688
- ],
- [
- 142.24994,
- 43.9171
- ],
- [
- 142.25001,
- 44.5
- ],
- [
- 142.49997,
- 44.50013
- ],
- [
- 142.49977,
- 43.88366
- ],
- [
- 142.51674,
- 43.88344
- ],
- [
- 142.51644,
- 43.83346
- ],
- [
- 142.62473,
- 43.83346
- ],
- [
- 142.62473,
- 43.58331
- ],
- [
- 142.54176,
- 43.58403
- ],
- [
- 142.54196,
- 43.50008
- ],
- [
- 142.50057,
- 43.50022
- ],
- [
- 142.50037,
- 43.25006
- ],
- [
- 142.25054,
- 43.25014
- ],
- [
- 142.25004,
- 43.45838
- ],
- [
- 142.00031,
- 43.45816
- ],
- [
- 142.00001,
- 43.41724
- ],
- [
- 141.91703,
- 43.41688
- ],
- [
- 141.91703,
- 43.33342
- ],
- [
- 141.87494,
- 43.33327
- ],
- [
- 141.87454,
- 43.17487
- ],
- [
- 141.93351,
- 43.17473
- ],
- [
- 141.93391,
- 43.15868
- ],
- [
- 141.99137,
- 43.15802
- ],
- [
- 141.99207,
- 43.1334
- ],
- [
- 141.87524,
- 43.13332
- ],
- [
- 141.87484,
- 43.00012
- ],
- [
- 141.49984,
- 43.00027
- ],
- [
- 141.50015,
- 42.91683
- ],
- [
- 141.25021,
- 42.91631
- ],
- [
- 141.25001,
- 42.9999
- ],
- [
- 141.12505,
- 43.00005
- ],
- [
- 141.12525,
- 43.08323
- ],
- [
- 140.99988,
- 43.0836
- ],
- [
- 141.00008,
- 43.16638
- ],
- [
- 140.75086,
- 43.1666
- ],
- [
- 140.75005,
- 43.23374
- ]
- ],
- [
- [
- 140.59121,
- 41.78353
- ],
- [
- 140.58382,
- 41.8334
- ],
- [
- 140.58453,
- 41.87732
- ],
- [
- 140.59092,
- 41.91613
- ],
- [
- 140.60797,
- 41.94403
- ],
- [
- 140.57544,
- 41.95914
- ],
- [
- 140.58439,
- 41.99979
- ],
- [
- 140.7104,
- 42.00011
- ],
- [
- 140.86894,
- 42.00011
- ],
- [
- 140.91724,
- 42.00053
- ],
- [
- 140.99041,
- 41.91909
- ],
- [
- 141.04737,
- 41.90693
- ],
- [
- 141.12722,
- 41.88398
- ],
- [
- 141.17552,
- 41.83732
- ],
- [
- 141.20194,
- 41.81488
- ],
- [
- 141.18418,
- 41.78321
- ],
- [
- 141.11301,
- 41.76711
- ],
- [
- 141.05689,
- 41.71559
- ],
- [
- 140.99382,
- 41.69968
- ],
- [
- 140.94267,
- 41.70414
- ],
- [
- 140.89238,
- 41.73563
- ],
- [
- 140.84806,
- 41.74326
- ],
- [
- 140.80018,
- 41.75672
- ],
- [
- 140.73299,
- 41.74634
- ],
- [
- 140.69705,
- 41.73234
- ],
- [
- 140.6881,
- 41.76986
- ],
- [
- 140.59121,
- 41.78353
- ]
- ],
- [
- [
- 140.2418,
- 42.2338
- ],
- [
- 140.24159,
- 42.25827
- ],
- [
- 140.21005,
- 42.25797
- ],
- [
- 140.20804,
- 42.27485
- ],
- [
- 140.26611,
- 42.27514
- ],
- [
- 140.2651,
- 42.29179
- ],
- [
- 140.29001,
- 42.2912
- ],
- [
- 140.29182,
- 42.26779
- ],
- [
- 140.33914,
- 42.24139
- ],
- [
- 140.34145,
- 42.21662
- ],
- [
- 140.29323,
- 42.21662
- ],
- [
- 140.2418,
- 42.2338
- ]
- ],
- [
- [
- 140.55007,
- 42.08447
- ],
- [
- 140.54977,
- 42.11387
- ],
- [
- 140.58066,
- 42.11193
- ],
- [
- 140.62636,
- 42.12069
- ],
- [
- 140.63365,
- 42.12136
- ],
- [
- 140.6336,
- 42.10061
- ],
- [
- 140.60853,
- 42.09964
- ],
- [
- 140.60848,
- 42.08327
- ],
- [
- 140.54972,
- 42.08312
- ],
- [
- 140.55007,
- 42.08447
- ]
- ],
- [
- [
- 140.6583,
- 41.06668
- ],
- [
- 140.67117,
- 40.91974
- ],
- [
- 140.84492,
- 40.91652
- ],
- [
- 140.91726,
- 40.91688
- ],
- [
- 140.91712,
- 40.87597
- ],
- [
- 140.9846,
- 40.87533
- ],
- [
- 140.98503,
- 40.79278
- ],
- [
- 141.13391,
- 40.79192
- ],
- [
- 141.13972,
- 40.68034
- ],
- [
- 141.17424,
- 40.68174
- ],
- [
- 141.18504,
- 40.60057
- ],
- [
- 141.43351,
- 40.60078
- ],
- [
- 141.43308,
- 40.51757
- ],
- [
- 141.18305,
- 40.51649
- ],
- [
- 141.18362,
- 40.58223
- ],
- [
- 141.16714,
- 40.59172
- ],
- [
- 141.04397,
- 40.59237
- ],
- [
- 141.04283,
- 40.65825
- ],
- [
- 140.98402,
- 40.65836
- ],
- [
- 140.72646,
- 40.65857
- ],
- [
- 140.72589,
- 40.57521
- ],
- [
- 140.66849,
- 40.57467
- ],
- [
- 140.60883,
- 40.57489
- ],
- [
- 140.60925,
- 40.48311
- ],
- [
- 140.55058,
- 40.483
- ],
- [
- 140.54888,
- 40.51757
- ],
- [
- 140.40028,
- 40.51692
- ],
- [
- 140.40013,
- 40.5832
- ],
- [
- 140.25665,
- 40.58233
- ],
- [
- 140.24898,
- 40.63292
- ],
- [
- 140.33251,
- 40.63292
- ],
- [
- 140.33251,
- 40.66687
- ],
- [
- 140.41676,
- 40.66698
- ],
- [
- 140.41704,
- 40.73311
- ],
- [
- 140.33194,
- 40.73375
- ],
- [
- 140.33351,
- 40.75851
- ],
- [
- 140.28421,
- 40.75818
- ],
- [
- 140.28037,
- 40.85679
- ],
- [
- 140.30254,
- 40.98507
- ],
- [
- 140.31845,
- 41.00019
- ],
- [
- 140.42443,
- 41.0004
- ],
- [
- 140.42443,
- 40.90029
- ],
- [
- 140.55044,
- 40.89975
- ],
- [
- 140.54994,
- 41.06668
- ],
- [
- 140.6583,
- 41.06668
- ]
- ],
- [
- [
- 140.01669,
- 40.33381
- ],
- [
- 140.25252,
- 40.33381
- ],
- [
- 140.25006,
- 39.33298
- ],
- [
- 139.98341,
- 39.3332
- ],
- [
- 140.05622,
- 39.72433
- ],
- [
- 140.00614,
- 39.77043
- ],
- [
- 139.94073,
- 39.88023
- ],
- [
- 139.94158,
- 40.01081
- ],
- [
- 139.94055,
- 40.08509
- ],
- [
- 139.94116,
- 40.10876
- ],
- [
- 140.01669,
- 40.33381
- ]
- ],
- [
- [
- 139.85814,
- 39.04176
- ],
- [
- 139.87552,
- 39.04137
- ],
- [
- 139.87703,
- 39.00009
- ],
- [
- 139.91671,
- 39.00001
- ],
- [
- 139.9167,
- 38.79173
- ],
- [
- 139.75493,
- 38.79165
- ],
- [
- 139.7502,
- 38.79386
- ],
- [
- 139.79376,
- 38.89687
- ],
- [
- 139.79014,
- 38.9254
- ],
- [
- 139.83615,
- 38.99102
- ],
- [
- 139.85814,
- 39.04176
- ]
- ],
- [
- [
- 139.37551,
- 38.1174
- ],
- [
- 139.38053,
- 37.95893
- ],
- [
- 139.417,
- 37.95845
- ],
- [
- 139.417,
- 37.87413
- ],
- [
- 139.37571,
- 37.8746
- ],
- [
- 139.37611,
- 37.83296
- ],
- [
- 139.29234,
- 37.83145
- ],
- [
- 139.30007,
- 37.78074
- ],
- [
- 139.29173,
- 37.68357
- ],
- [
- 139.29193,
- 37.66473
- ],
- [
- 139.22935,
- 37.6594
- ],
- [
- 139.18113,
- 37.61024
- ],
- [
- 139.14537,
- 37.60769
- ],
- [
- 139.12367,
- 37.62671
- ],
- [
- 139.09816,
- 37.65018
- ],
- [
- 139.08831,
- 37.6664
- ],
- [
- 138.99951,
- 37.66656
- ],
- [
- 138.99942,
- 37.79171
- ],
- [
- 138.81261,
- 37.79199
- ],
- [
- 138.86834,
- 37.84689
- ],
- [
- 138.9915,
- 37.91333
- ],
- [
- 139.08231,
- 37.9775
- ],
- [
- 139.27679,
- 38.03417
- ],
- [
- 139.37551,
- 38.1174
- ]
- ],
- [
- [
- 139.96008,
- 38.49993
- ],
- [
- 140.50033,
- 38.50009
- ],
- [
- 140.50023,
- 38.16654
- ],
- [
- 140.37496,
- 38.16654
- ],
- [
- 140.37536,
- 38.08348
- ],
- [
- 140.2504,
- 38.08293
- ],
- [
- 140.21705,
- 38.07407
- ],
- [
- 140.22136,
- 38.0422
- ],
- [
- 140.2512,
- 38.04196
- ],
- [
- 140.2504,
- 38.00017
- ],
- [
- 140.23372,
- 37.99962
- ],
- [
- 140.23352,
- 37.94197
- ],
- [
- 140.20861,
- 37.9411
- ],
- [
- 140.20841,
- 37.90013
- ],
- [
- 140.19253,
- 37.89965
- ],
- [
- 140.19123,
- 37.88372
- ],
- [
- 140.15838,
- 37.883
- ],
- [
- 140.15828,
- 37.85811
- ],
- [
- 140.0753,
- 37.85945
- ],
- [
- 140.0741,
- 37.87476
- ],
- [
- 140.05019,
- 37.87571
- ],
- [
- 140.05019,
- 37.89252
- ],
- [
- 140.05762,
- 37.89355
- ],
- [
- 140.05813,
- 37.92541
- ],
- [
- 140.0741,
- 37.92573
- ],
- [
- 140.0742,
- 37.94197
- ],
- [
- 140.09871,
- 37.95369
- ],
- [
- 140.09821,
- 37.99234
- ],
- [
- 140.10182,
- 38.00041
- ],
- [
- 140.12282,
- 38.00081
- ],
- [
- 140.11549,
- 38.01806
- ],
- [
- 140.08977,
- 38.02795
- ],
- [
- 140.0747,
- 38.04133
- ],
- [
- 140.06727,
- 38.03492
- ],
- [
- 140.06707,
- 37.99186
- ],
- [
- 140.01634,
- 37.9917
- ],
- [
- 140.01584,
- 38.066
- ],
- [
- 139.99805,
- 38.06656
- ],
- [
- 139.99966,
- 38.13739
- ],
- [
- 139.99956,
- 38.17514
- ],
- [
- 139.99795,
- 38.3337
- ],
- [
- 139.95787,
- 38.33378
- ],
- [
- 139.95837,
- 38.50028
- ],
- [
- 139.96008,
- 38.49993
- ]
- ],
- [
- [
- 140.70822,
- 38.7833
- ],
- [
- 140.70837,
- 39.15023
- ],
- [
- 141.04194,
- 39.14957
- ],
- [
- 141.04167,
- 39.50008
- ],
- [
- 141.00147,
- 39.49986
- ],
- [
- 140.99893,
- 39.91638
- ],
- [
- 141.25077,
- 39.91692
- ],
- [
- 141.25037,
- 39.5007
- ],
- [
- 141.16709,
- 39.50008
- ],
- [
- 141.16699,
- 39.45627
- ],
- [
- 141.16669,
- 39.40273
- ],
- [
- 141.16689,
- 39.25073
- ],
- [
- 141.20798,
- 39.24996
- ],
- [
- 141.20898,
- 38.87471
- ],
- [
- 141.03399,
- 38.8751
- ],
- [
- 141.03339,
- 38.78354
- ],
- [
- 140.86794,
- 38.78315
- ],
- [
- 140.70822,
- 38.7833
- ]
- ],
- [
- [
- 141.3759,
- 38.36972
- ],
- [
- 141.37476,
- 38.49992
- ],
- [
- 141.24904,
- 38.50025
- ],
- [
- 141.25134,
- 38.66886
- ],
- [
- 141.52524,
- 38.66653
- ],
- [
- 141.54981,
- 38.63369
- ],
- [
- 141.55052,
- 38.55563
- ],
- [
- 141.55549,
- 38.47938
- ],
- [
- 141.56558,
- 38.39559
- ],
- [
- 141.54626,
- 38.37398
- ],
- [
- 141.55919,
- 38.32429
- ],
- [
- 141.59854,
- 38.31226
- ],
- [
- 141.59527,
- 38.26063
- ],
- [
- 141.50762,
- 38.23664
- ],
- [
- 141.46983,
- 38.24479
- ],
- [
- 141.39226,
- 38.27725
- ],
- [
- 141.41158,
- 38.34781
- ],
- [
- 141.3759,
- 38.36972
- ]
- ],
- [
- [
- 131.04175,
- 33.7381
- ],
- [
- 131.0413,
- 33.70887
- ],
- [
- 130.99956,
- 33.70858
- ],
- [
- 131.00035,
- 33.68392
- ],
- [
- 131.04959,
- 33.68392
- ],
- [
- 131.05014,
- 33.64171
- ],
- [
- 131.0751,
- 33.64201
- ],
- [
- 131.07588,
- 33.61683
- ],
- [
- 131.10039,
- 33.61666
- ],
- [
- 131.10084,
- 33.60082
- ],
- [
- 131.17448,
- 33.60007
- ],
- [
- 131.19999,
- 33.58422
- ],
- [
- 131.20066,
- 33.55868
- ],
- [
- 131.2405,
- 33.55868
- ],
- [
- 131.28258,
- 33.54207
- ],
- [
- 131.33137,
- 33.52528
- ],
- [
- 131.41821,
- 33.55065
- ],
- [
- 131.51625,
- 33.55084
- ],
- [
- 131.51692,
- 33.5667
- ],
- [
- 131.63353,
- 33.56688
- ],
- [
- 131.63308,
- 33.47545
- ],
- [
- 131.7423,
- 33.47452
- ],
- [
- 131.74946,
- 33.45939
- ],
- [
- 131.75014,
- 33.33289
- ],
- [
- 131.60756,
- 33.33401
- ],
- [
- 131.60801,
- 33.37421
- ],
- [
- 131.52565,
- 33.37458
- ],
- [
- 131.52467,
- 33.26691
- ],
- [
- 131.5769,
- 33.25843
- ],
- [
- 131.64942,
- 33.28332
- ],
- [
- 131.71634,
- 33.28388
- ],
- [
- 131.77497,
- 33.26687
- ],
- [
- 131.78385,
- 33.25028
- ],
- [
- 131.83291,
- 33.25015
- ],
- [
- 131.88403,
- 33.2745
- ],
- [
- 131.90825,
- 33.2749
- ],
- [
- 131.90809,
- 33.25849
- ],
- [
- 131.87517,
- 33.20607
- ],
- [
- 131.84985,
- 33.18276
- ],
- [
- 131.85032,
- 33.14964
- ],
- [
- 131.87525,
- 33.15038
- ],
- [
- 131.90777,
- 33.14129
- ],
- [
- 131.9171,
- 33.13332
- ],
- [
- 131.91733,
- 33.10858
- ],
- [
- 131.9505,
- 33.09967
- ],
- [
- 131.95019,
- 33.08349
- ],
- [
- 131.98279,
- 33.08336
- ],
- [
- 131.98279,
- 33.10007
- ],
- [
- 132.00036,
- 33.1169
- ],
- [
- 132.0252,
- 33.1169
- ],
- [
- 132.02473,
- 33.0998
- ],
- [
- 132.00843,
- 33.09172
- ],
- [
- 132.00843,
- 33.06718
- ],
- [
- 132.01745,
- 33.06705
- ],
- [
- 132.01715,
- 33.04988
- ],
- [
- 131.99181,
- 33.04211
- ],
- [
- 131.92518,
- 33.04092
- ],
- [
- 131.9255,
- 33.025
- ],
- [
- 131.95003,
- 33.025
- ],
- [
- 131.95045,
- 33.01347
- ],
- [
- 131.95034,
- 32.97482
- ],
- [
- 131.98326,
- 32.97536
- ],
- [
- 131.98492,
- 32.95941
- ],
- [
- 132.0261,
- 32.95922
- ],
- [
- 132.05828,
- 32.95862
- ],
- [
- 132.05844,
- 32.99142
- ],
- [
- 132.07198,
- 32.9917
- ],
- [
- 132.08297,
- 32.98332
- ],
- [
- 132.09168,
- 32.92635
- ],
- [
- 132.02473,
- 32.92542
- ],
- [
- 132.02473,
- 32.90058
- ],
- [
- 132.03349,
- 32.88294
- ],
- [
- 132.00795,
- 32.88357
- ],
- [
- 131.98326,
- 32.85871
- ],
- [
- 131.99988,
- 32.8498
- ],
- [
- 132.01715,
- 32.8429
- ],
- [
- 132.01603,
- 32.82654
- ],
- [
- 131.97551,
- 32.78396
- ],
- [
- 131.93411,
- 32.76746
- ],
- [
- 131.8992,
- 32.76614
- ],
- [
- 131.89179,
- 32.71661
- ],
- [
- 131.83317,
- 32.6507
- ],
- [
- 131.78369,
- 32.64894
- ],
- [
- 131.78415,
- 32.58396
- ],
- [
- 131.74185,
- 32.58283
- ],
- [
- 131.7082,
- 32.56669
- ],
- [
- 131.70773,
- 32.54294
- ],
- [
- 131.74159,
- 32.50852
- ],
- [
- 131.74141,
- 32.45129
- ],
- [
- 131.70804,
- 32.44216
- ],
- [
- 131.70112,
- 32.40878
- ],
- [
- 131.65787,
- 32.39219
- ],
- [
- 131.64226,
- 32.33355
- ],
- [
- 131.59948,
- 32.27572
- ],
- [
- 131.57492,
- 32.18338
- ],
- [
- 131.54184,
- 32.08474
- ],
- [
- 131.542,
- 32.00009
- ],
- [
- 131.49975,
- 32.00023
- ],
- [
- 131.50038,
- 31.74971
- ],
- [
- 131.4586,
- 31.75011
- ],
- [
- 131.45876,
- 31.79182
- ],
- [
- 131.24969,
- 31.79169
- ],
- [
- 131.24969,
- 32.16704
- ],
- [
- 131.37488,
- 32.16717
- ],
- [
- 131.37504,
- 32.25046
- ],
- [
- 131.49991,
- 32.25019
- ],
- [
- 131.49991,
- 32.33341
- ],
- [
- 131.54137,
- 32.33341
- ],
- [
- 131.54167,
- 32.62506
- ],
- [
- 131.66645,
- 32.62515
- ],
- [
- 131.66633,
- 32.66662
- ],
- [
- 131.74993,
- 32.66652
- ],
- [
- 131.75006,
- 32.91664
- ],
- [
- 131.5977,
- 32.91688
- ],
- [
- 131.25044,
- 32.91663
- ],
- [
- 131.24902,
- 33.00042
- ],
- [
- 131.49971,
- 33.00002
- ],
- [
- 131.49987,
- 33.06345
- ],
- [
- 131.50018,
- 33.13915
- ],
- [
- 131.4804,
- 33.16631
- ],
- [
- 131.284,
- 33.16618
- ],
- [
- 131.26706,
- 33.20035
- ],
- [
- 131.26627,
- 33.25039
- ],
- [
- 131.29966,
- 33.26985
- ],
- [
- 131.29951,
- 33.31999
- ],
- [
- 131.24427,
- 33.34114
- ],
- [
- 131.17511,
- 33.34154
- ],
- [
- 131.17527,
- 33.35806
- ],
- [
- 131.07525,
- 33.35806
- ],
- [
- 131.07572,
- 33.33347
- ],
- [
- 131.00055,
- 33.33321
- ],
- [
- 131.00007,
- 33.2496
- ],
- [
- 130.91445,
- 33.2496
- ],
- [
- 130.7497,
- 33.25013
- ],
- [
- 130.7497,
- 33.08374
- ],
- [
- 130.62546,
- 33.08321
- ],
- [
- 130.62546,
- 33.00002
- ],
- [
- 130.72796,
- 33.00171
- ],
- [
- 130.87492,
- 33.00018
- ],
- [
- 130.8753,
- 32.79131
- ],
- [
- 130.96677,
- 32.79185
- ],
- [
- 130.96709,
- 32.85808
- ],
- [
- 130.92531,
- 32.85781
- ],
- [
- 130.92531,
- 32.95029
- ],
- [
- 130.96679,
- 32.95831
- ],
- [
- 131.00012,
- 32.91683
- ],
- [
- 131.00017,
- 32.50007
- ],
- [
- 130.66647,
- 32.50046
- ],
- [
- 130.66669,
- 32.33306
- ],
- [
- 130.62506,
- 32.33306
- ],
- [
- 130.62461,
- 32.24943
- ],
- [
- 130.49972,
- 32.25037
- ],
- [
- 130.50039,
- 32.12517
- ],
- [
- 130.33275,
- 32.12498
- ],
- [
- 130.3437,
- 32.16133
- ],
- [
- 130.34954,
- 32.20815
- ],
- [
- 130.42748,
- 32.29423
- ],
- [
- 130.46637,
- 32.40054
- ],
- [
- 130.4939,
- 32.40073
- ],
- [
- 130.523,
- 32.43304
- ],
- [
- 130.54941,
- 32.44456
- ],
- [
- 130.54986,
- 32.4659
- ],
- [
- 130.48383,
- 32.46647
- ],
- [
- 130.47421,
- 32.47535
- ],
- [
- 130.4751,
- 32.50064
- ],
- [
- 130.5089,
- 32.54197
- ],
- [
- 130.62439,
- 32.62571
- ],
- [
- 130.62484,
- 32.6666
- ],
- [
- 130.52569,
- 32.66679
- ],
- [
- 130.52524,
- 32.68337
- ],
- [
- 130.55859,
- 32.71671
- ],
- [
- 130.55903,
- 32.7745
- ],
- [
- 130.57493,
- 32.78372
- ],
- [
- 130.57493,
- 32.82172
- ],
- [
- 130.50935,
- 32.84185
- ],
- [
- 130.50778,
- 32.86986
- ],
- [
- 130.44155,
- 32.89158
- ],
- [
- 130.41624,
- 32.94258
- ],
- [
- 130.41579,
- 32.97488
- ],
- [
- 130.37438,
- 33.00098
- ],
- [
- 130.37528,
- 33.08315
- ],
- [
- 130.24927,
- 33.08372
- ],
- [
- 130.24905,
- 33.16076
- ],
- [
- 130.15863,
- 33.09741
- ],
- [
- 130.17775,
- 33.07174
- ],
- [
- 130.18369,
- 33.06684
- ],
- [
- 130.18369,
- 33.03401
- ],
- [
- 130.19958,
- 33.025
- ],
- [
- 130.19977,
- 33.00001
- ],
- [
- 130.12479,
- 33.00001
- ],
- [
- 130.12457,
- 32.96678
- ],
- [
- 130.0409,
- 32.9407
- ],
- [
- 130.02501,
- 32.94164
- ],
- [
- 130.02456,
- 32.91647
- ],
- [
- 130.12457,
- 32.9172
- ],
- [
- 130.12457,
- 32.86739
- ],
- [
- 130.15031,
- 32.86683
- ],
- [
- 130.19578,
- 32.8661
- ],
- [
- 130.23334,
- 32.89183
- ],
- [
- 130.29198,
- 32.89183
- ],
- [
- 130.29243,
- 32.84991
- ],
- [
- 130.29153,
- 32.7916
- ],
- [
- 130.2922,
- 32.71725
- ],
- [
- 130.18343,
- 32.65791
- ],
- [
- 130.15034,
- 32.65002
- ],
- [
- 130.11539,
- 32.64962
- ],
- [
- 130.11744,
- 32.70014
- ],
- [
- 130.15903,
- 32.71706
- ],
- [
- 130.24856,
- 32.75867
- ],
- [
- 130.24968,
- 32.79085
- ],
- [
- 130.1333,
- 32.79235
- ],
- [
- 130.12569,
- 32.76751
- ],
- [
- 130.00147,
- 32.74963
- ],
- [
- 129.9294,
- 32.67317
- ],
- [
- 129.80048,
- 32.57459
- ],
- [
- 129.80003,
- 32.54704
- ],
- [
- 129.77425,
- 32.54749
- ],
- [
- 129.71767,
- 32.54987
- ],
- [
- 129.71632,
- 32.59043
- ],
- [
- 129.7499,
- 32.67487
- ],
- [
- 129.75012,
- 32.72459
- ],
- [
- 129.80025,
- 32.72553
- ],
- [
- 129.74161,
- 32.77523
- ],
- [
- 129.62411,
- 32.8501
- ],
- [
- 129.62646,
- 32.91787
- ],
- [
- 129.83159,
- 32.91738
- ],
- [
- 129.87121,
- 32.91644
- ],
- [
- 129.89269,
- 32.94105
- ],
- [
- 129.93343,
- 33.00827
- ],
- [
- 129.967,
- 33.07469
- ],
- [
- 130.05809,
- 33.12025
- ],
- [
- 130.05876,
- 33.21693
- ],
- [
- 130.24946,
- 33.21674
- ],
- [
- 130.2499,
- 33.33331
- ],
- [
- 130.21566,
- 33.3335
- ],
- [
- 130.0422,
- 33.33331
- ],
- [
- 129.92559,
- 33.33294
- ],
- [
- 129.90836,
- 33.35837
- ],
- [
- 129.90791,
- 33.38304
- ],
- [
- 129.86695,
- 33.38285
- ],
- [
- 129.86697,
- 33.36012
- ],
- [
- 129.83338,
- 33.34079
- ],
- [
- 129.80093,
- 33.34098
- ],
- [
- 129.80003,
- 33.31592
- ],
- [
- 129.75057,
- 33.31686
- ],
- [
- 129.75034,
- 33.27533
- ],
- [
- 129.72572,
- 33.27477
- ],
- [
- 129.6917,
- 33.30807
- ],
- [
- 129.69237,
- 33.25025
- ],
- [
- 129.87479,
- 33.25025
- ],
- [
- 129.8759,
- 33.21299
- ],
- [
- 129.87521,
- 33.11856
- ],
- [
- 129.87523,
- 33.03323
- ],
- [
- 129.80831,
- 33.03305
- ],
- [
- 129.7499,
- 33.05031
- ],
- [
- 129.734,
- 33.058
- ],
- [
- 129.72658,
- 33.08172
- ],
- [
- 129.69842,
- 33.09982
- ],
- [
- 129.62413,
- 33.09928
- ],
- [
- 129.62374,
- 33.12377
- ],
- [
- 129.62501,
- 33.24201
- ],
- [
- 129.59255,
- 33.24108
- ],
- [
- 129.59255,
- 33.29928
- ],
- [
- 129.54197,
- 33.3004
- ],
- [
- 129.50012,
- 33.31761
- ],
- [
- 129.49989,
- 33.41686
- ],
- [
- 129.59949,
- 33.41593
- ],
- [
- 129.66753,
- 33.40864
- ],
- [
- 129.66775,
- 33.43274
- ],
- [
- 129.8336,
- 33.56656
- ],
- [
- 129.93208,
- 33.56787
- ],
- [
- 129.93522,
- 33.40827
- ],
- [
- 130.04131,
- 33.3836
- ],
- [
- 130.04108,
- 33.48428
- ],
- [
- 130.24901,
- 33.48465
- ],
- [
- 130.25057,
- 33.61681
- ],
- [
- 130.28504,
- 33.63405
- ],
- [
- 130.28303,
- 33.69151
- ],
- [
- 130.30888,
- 33.69151
- ],
- [
- 130.32365,
- 33.66712
- ],
- [
- 130.39225,
- 33.69179
- ],
- [
- 130.41777,
- 33.72484
- ],
- [
- 130.43388,
- 33.77546
- ],
- [
- 130.39024,
- 33.87047
- ],
- [
- 130.39113,
- 33.92509
- ],
- [
- 130.50774,
- 33.92621
- ],
- [
- 130.60555,
- 33.89166
- ],
- [
- 130.66665,
- 33.9496
- ],
- [
- 130.74991,
- 34.00844
- ],
- [
- 130.84973,
- 34.00825
- ],
- [
- 130.8504,
- 34.14155
- ],
- [
- 130.88308,
- 34.19192
- ],
- [
- 130.85801,
- 34.27519
- ],
- [
- 130.83228,
- 34.36706
- ],
- [
- 130.97127,
- 34.45052
- ],
- [
- 131.08608,
- 34.43336
- ],
- [
- 131.19307,
- 34.44166
- ],
- [
- 131.29356,
- 34.44092
- ],
- [
- 131.36518,
- 34.44591
- ],
- [
- 131.37548,
- 34.5328
- ],
- [
- 131.44934,
- 34.55013
- ],
- [
- 131.57445,
- 34.69176
- ],
- [
- 131.62526,
- 34.69158
- ],
- [
- 131.78596,
- 34.70078
- ],
- [
- 131.86989,
- 34.77435
- ],
- [
- 131.99545,
- 34.88146
- ],
- [
- 132.37594,
- 35.16739
- ],
- [
- 132.74972,
- 35.16684
- ],
- [
- 132.75084,
- 35.08318
- ],
- [
- 132.6255,
- 35.08337
- ],
- [
- 132.62505,
- 34.91671
- ],
- [
- 132.3755,
- 34.91689
- ],
- [
- 132.37527,
- 34.83426
- ],
- [
- 132.12482,
- 34.83298
- ],
- [
- 132.12482,
- 34.75008
- ],
- [
- 132.00038,
- 34.7499
- ],
- [
- 132.00038,
- 34.5833
- ],
- [
- 131.74989,
- 34.58326
- ],
- [
- 131.75139,
- 34.37954
- ],
- [
- 131.75147,
- 34.1671
- ],
- [
- 132.12497,
- 34.16683
- ],
- [
- 132.12481,
- 34.2914
- ],
- [
- 132.25016,
- 34.29193
- ],
- [
- 132.24929,
- 34.40917
- ],
- [
- 132.25016,
- 34.49983
- ],
- [
- 132.37249,
- 34.49996
- ],
- [
- 132.37503,
- 34.58339
- ],
- [
- 132.49167,
- 34.58339
- ],
- [
- 132.49182,
- 34.70831
- ],
- [
- 132.59177,
- 34.70824
- ],
- [
- 132.58365,
- 34.5417
- ],
- [
- 132.84148,
- 34.54133
- ],
- [
- 132.84193,
- 34.66623
- ],
- [
- 133.08343,
- 34.66678
- ],
- [
- 133.08365,
- 34.76631
- ],
- [
- 133.20743,
- 34.76687
- ],
- [
- 133.20787,
- 34.66678
- ],
- [
- 133.49973,
- 34.66642
- ],
- [
- 133.50026,
- 34.83314
- ],
- [
- 133.7012,
- 34.83357
- ],
- [
- 133.69941,
- 34.87526
- ],
- [
- 133.74984,
- 34.87535
- ],
- [
- 133.74984,
- 34.9999
- ],
- [
- 133.8751,
- 35.00003
- ],
- [
- 133.87518,
- 35.12504
- ],
- [
- 133.97425,
- 35.12517
- ],
- [
- 133.97546,
- 35.00097
- ],
- [
- 134.0585,
- 34.99997
- ],
- [
- 134.05816,
- 35.07464
- ],
- [
- 134.16654,
- 35.0748
- ],
- [
- 134.1667,
- 35.00016
- ],
- [
- 134.75338,
- 35.00016
- ],
- [
- 134.83324,
- 34.99997
- ],
- [
- 134.8333,
- 35.04176
- ],
- [
- 135.24494,
- 35.04176
- ],
- [
- 135.37472,
- 35.04153
- ],
- [
- 135.37535,
- 35.0836
- ],
- [
- 135.74948,
- 35.08335
- ],
- [
- 135.75066,
- 35.25004
- ],
- [
- 135.87474,
- 35.2503
- ],
- [
- 135.87529,
- 35.33388
- ],
- [
- 136.00001,
- 35.33356
- ],
- [
- 136.00024,
- 35.2587
- ],
- [
- 135.98331,
- 35.24255
- ],
- [
- 135.93361,
- 35.20027
- ],
- [
- 135.93306,
- 35.1667
- ],
- [
- 135.97539,
- 35.16664
- ],
- [
- 135.97523,
- 35.15597
- ],
- [
- 136.04993,
- 35.15829
- ],
- [
- 136.04993,
- 35.21663
- ],
- [
- 136.05895,
- 35.22484
- ],
- [
- 136.12455,
- 35.23344
- ],
- [
- 136.12536,
- 35.25011
- ],
- [
- 136.16667,
- 35.24997
- ],
- [
- 136.16651,
- 35.36441
- ],
- [
- 136.16664,
- 35.45873
- ],
- [
- 136.33347,
- 35.45857
- ],
- [
- 136.37478,
- 35.33382
- ],
- [
- 136.49981,
- 35.33356
- ],
- [
- 136.49965,
- 35.49981
- ],
- [
- 136.74991,
- 35.58365
- ],
- [
- 137.00003,
- 35.58344
- ],
- [
- 136.99984,
- 35.41254
- ],
- [
- 136.99999,
- 35.33351
- ],
- [
- 137.24995,
- 35.33357
- ],
- [
- 137.24998,
- 34.91665
- ],
- [
- 137.6249,
- 34.91658
- ],
- [
- 137.62516,
- 35.00034
- ],
- [
- 137.69186,
- 35.00052
- ],
- [
- 137.69182,
- 35.06711
- ],
- [
- 137.74199,
- 35.06668
- ],
- [
- 137.74222,
- 35.10789
- ],
- [
- 137.77489,
- 35.10844
- ],
- [
- 137.77474,
- 35.15015
- ],
- [
- 138.16671,
- 35.15021
- ],
- [
- 138.16666,
- 35.2918
- ],
- [
- 138.38224,
- 35.29138
- ],
- [
- 138.50029,
- 35.29187
- ],
- [
- 138.50119,
- 35.33333
- ],
- [
- 138.38256,
- 35.33369
- ],
- [
- 138.38319,
- 35.44169
- ],
- [
- 138.49985,
- 35.44208
- ],
- [
- 138.49988,
- 35.4584
- ],
- [
- 138.66644,
- 35.45855
- ],
- [
- 138.66704,
- 35.37476
- ],
- [
- 138.70818,
- 35.37519
- ],
- [
- 138.70818,
- 35.33348
- ],
- [
- 138.8334,
- 35.33357
- ],
- [
- 138.83329,
- 35.40832
- ],
- [
- 139.0082,
- 35.40836
- ],
- [
- 139.00858,
- 35.39192
- ],
- [
- 139.1243,
- 35.39228
- ],
- [
- 139.12498,
- 35.41668
- ],
- [
- 139.25001,
- 35.41667
- ],
- [
- 139.24995,
- 35.49996
- ],
- [
- 139.12487,
- 35.50005
- ],
- [
- 139.12492,
- 35.5833
- ],
- [
- 138.99999,
- 35.58333
- ],
- [
- 138.99999,
- 35.6667
- ],
- [
- 139.1249,
- 35.66678
- ],
- [
- 139.12504,
- 35.8092
- ],
- [
- 139.12474,
- 35.91713
- ],
- [
- 139.00053,
- 35.91713
- ],
- [
- 139.00006,
- 36.00001
- ],
- [
- 139.12492,
- 36.00012
- ],
- [
- 139.12547,
- 36.11894
- ],
- [
- 139.12495,
- 36.16664
- ],
- [
- 139,
- 36.16668
- ],
- [
- 138.99941,
- 36.25031
- ],
- [
- 138.95831,
- 36.25002
- ],
- [
- 138.95822,
- 36.29127
- ],
- [
- 138.91663,
- 36.29166
- ],
- [
- 138.91678,
- 36.37496
- ],
- [
- 138.95845,
- 36.37565
- ],
- [
- 138.95836,
- 36.45832
- ],
- [
- 139.08379,
- 36.45868
- ],
- [
- 139.08334,
- 36.5
- ],
- [
- 139.25009,
- 36.50012
- ],
- [
- 139.2496,
- 36.54136
- ],
- [
- 139.37464,
- 36.54189
- ],
- [
- 139.37505,
- 36.62499
- ],
- [
- 139.45022,
- 36.62528
- ],
- [
- 139.44999,
- 36.66667
- ],
- [
- 139.66374,
- 36.66671
- ],
- [
- 139.75002,
- 36.66665
- ],
- [
- 139.75005,
- 36.75003
- ],
- [
- 140,
- 36.75001
- ],
- [
- 139.99998,
- 36.62209
- ],
- [
- 140.00001,
- 36.41668
- ],
- [
- 140.25001,
- 36.41666
- ],
- [
- 140.24999,
- 36.04158
- ],
- [
- 140.50004,
- 36.04158
- ],
- [
- 140.49989,
- 35.83349
- ],
- [
- 140.41632,
- 35.83374
- ],
- [
- 140.4168,
- 35.7919
- ],
- [
- 140.45874,
- 35.79113
- ],
- [
- 140.45874,
- 35.72461
- ],
- [
- 140.51666,
- 35.72486
- ],
- [
- 140.51691,
- 35.7417
- ],
- [
- 140.59144,
- 35.74174
- ],
- [
- 140.5915,
- 35.94177
- ],
- [
- 140.65002,
- 35.94164
- ],
- [
- 140.64994,
- 36.00837
- ],
- [
- 140.67503,
- 36.00834
- ],
- [
- 140.71403,
- 35.92326
- ],
- [
- 140.77327,
- 35.83877
- ],
- [
- 140.81532,
- 35.78508
- ],
- [
- 140.89133,
- 35.7501
- ],
- [
- 140.89211,
- 35.71717
- ],
- [
- 140.86632,
- 35.67853
- ],
- [
- 140.80694,
- 35.70622
- ],
- [
- 140.72767,
- 35.6761
- ],
- [
- 140.68235,
- 35.68891
- ],
- [
- 140.60194,
- 35.63074
- ],
- [
- 140.48545,
- 35.54409
- ],
- [
- 140.4095,
- 35.42897
- ],
- [
- 140.40816,
- 35.33353
- ],
- [
- 140.30722,
- 35.33371
- ],
- [
- 140.30767,
- 35.41748
- ],
- [
- 140.30946,
- 35.45851
- ],
- [
- 140.20762,
- 35.45905
- ],
- [
- 140.20829,
- 35.37478
- ],
- [
- 140.12503,
- 35.37478
- ],
- [
- 140.12436,
- 35.33408
- ],
- [
- 140.29155,
- 35.33316
- ],
- [
- 140.29245,
- 35.20909
- ],
- [
- 140.31707,
- 35.20836
- ],
- [
- 140.31662,
- 35.18422
- ],
- [
- 140.35042,
- 35.18257
- ],
- [
- 140.3431,
- 35.13152
- ],
- [
- 140.23201,
- 35.10096
- ],
- [
- 140.13697,
- 35.09271
- ],
- [
- 140.05542,
- 35.03643
- ],
- [
- 139.98865,
- 34.98849
- ],
- [
- 139.96379,
- 34.91688
- ],
- [
- 139.91222,
- 34.88262
- ],
- [
- 139.82272,
- 34.89218
- ],
- [
- 139.78337,
- 34.93633
- ],
- [
- 139.73961,
- 34.95322
- ],
- [
- 139.7443,
- 34.99303
- ],
- [
- 139.81476,
- 35.00932
- ],
- [
- 139.7963,
- 35.05283
- ],
- [
- 139.80169,
- 35.09108
- ],
- [
- 139.80766,
- 35.1529
- ],
- [
- 139.80866,
- 35.19667
- ],
- [
- 139.85153,
- 35.24127
- ],
- [
- 139.8325,
- 35.29189
- ],
- [
- 139.74927,
- 35.2961
- ],
- [
- 139.76149,
- 35.33517
- ],
- [
- 139.79232,
- 35.35267
- ],
- [
- 139.81035,
- 35.49933
- ],
- [
- 140.0035,
- 35.49988
- ],
- [
- 140.03349,
- 35.53668
- ],
- [
- 140.06639,
- 35.58384
- ],
- [
- 139.79714,
- 35.58311
- ],
- [
- 139.80005,
- 35.50079
- ],
- [
- 139.77087,
- 35.47343
- ],
- [
- 139.70992,
- 35.44207
- ],
- [
- 139.6987,
- 35.40282
- ],
- [
- 139.66887,
- 35.36715
- ],
- [
- 139.68478,
- 35.30781
- ],
- [
- 139.73549,
- 35.2728
- ],
- [
- 139.75069,
- 35.25934
- ],
- [
- 139.73734,
- 35.23092
- ],
- [
- 139.74388,
- 35.20852
- ],
- [
- 139.69714,
- 35.18971
- ],
- [
- 139.67426,
- 35.1702
- ],
- [
- 139.68932,
- 35.15394
- ],
- [
- 139.68151,
- 35.13477
- ],
- [
- 139.62355,
- 35.12199
- ],
- [
- 139.59783,
- 35.1285
- ],
- [
- 139.60224,
- 35.17253
- ],
- [
- 139.58363,
- 35.18959
- ],
- [
- 139.59033,
- 35.24164
- ],
- [
- 139.5496,
- 35.28403
- ],
- [
- 139.49879,
- 35.30084
- ],
- [
- 139.42314,
- 35.30942
- ],
- [
- 139.29131,
- 35.30066
- ],
- [
- 139.23074,
- 35.27778
- ],
- [
- 139.15546,
- 35.23542
- ],
- [
- 139.15031,
- 35.17507
- ],
- [
- 139.16665,
- 35.13316
- ],
- [
- 139.12502,
- 35.13298
- ],
- [
- 139.09436,
- 35.13335
- ],
- [
- 139.05832,
- 35.13316
- ],
- [
- 139.05671,
- 35.00443
- ],
- [
- 139.03348,
- 34.98385
- ],
- [
- 138.99968,
- 34.98367
- ],
- [
- 139.00057,
- 34.88274
- ],
- [
- 139.14136,
- 34.88348
- ],
- [
- 139.11002,
- 34.84602
- ],
- [
- 139.08129,
- 34.79529
- ],
- [
- 139.01691,
- 34.74107
- ],
- [
- 138.9999,
- 34.64151
- ],
- [
- 138.90044,
- 34.6097
- ],
- [
- 138.87367,
- 34.59159
- ],
- [
- 138.80026,
- 34.59988
- ],
- [
- 138.75773,
- 34.65881
- ],
- [
- 138.72528,
- 34.67575
- ],
- [
- 138.72528,
- 34.72506
- ],
- [
- 138.83316,
- 34.72598
- ],
- [
- 138.83383,
- 34.74952
- ],
- [
- 138.7419,
- 34.75106
- ],
- [
- 138.7338,
- 34.8136
- ],
- [
- 138.74985,
- 34.90057
- ],
- [
- 138.76065,
- 34.93773
- ],
- [
- 138.75028,
- 34.98313
- ],
- [
- 138.77855,
- 35.04352
- ],
- [
- 138.87546,
- 35.03316
- ],
- [
- 138.87703,
- 35.04929
- ],
- [
- 138.85845,
- 35.04984
- ],
- [
- 138.76804,
- 35.12107
- ],
- [
- 138.68294,
- 35.12223
- ],
- [
- 138.61873,
- 35.09015
- ],
- [
- 138.55409,
- 35.05201
- ],
- [
- 138.54926,
- 34.99442
- ],
- [
- 138.49996,
- 34.95392
- ],
- [
- 138.39142,
- 34.91129
- ],
- [
- 138.35562,
- 34.86759
- ],
- [
- 138.33929,
- 34.80042
- ],
- [
- 138.27635,
- 34.72246
- ],
- [
- 138.24467,
- 34.66616
- ],
- [
- 138.24396,
- 34.58503
- ],
- [
- 138.12662,
- 34.58573
- ],
- [
- 138.01467,
- 34.62561
- ],
- [
- 137.88184,
- 34.65541
- ],
- [
- 137.79532,
- 34.63718
- ],
- [
- 137.68991,
- 34.65307
- ],
- [
- 137.57654,
- 34.66441
- ],
- [
- 137.38135,
- 34.64618
- ],
- [
- 137.18402,
- 34.58409
- ],
- [
- 137.03187,
- 34.5662
- ],
- [
- 137.00794,
- 34.57573
- ],
- [
- 137.0254,
- 34.61792
- ],
- [
- 137.0599,
- 34.66613
- ],
- [
- 137.17517,
- 34.66686
- ],
- [
- 137.30767,
- 34.75996
- ],
- [
- 137.29894,
- 34.77595
- ],
- [
- 137.29088,
- 34.79231
- ],
- [
- 137.25037,
- 34.79213
- ],
- [
- 137.21635,
- 34.76768
- ],
- [
- 137.15816,
- 34.74911
- ],
- [
- 137.08318,
- 34.75076
- ],
- [
- 137.03215,
- 34.76345
- ],
- [
- 136.94061,
- 34.80848
- ],
- [
- 136.93456,
- 34.77522
- ],
- [
- 136.98335,
- 34.72575
- ],
- [
- 137.06751,
- 34.74212
- ],
- [
- 137.06773,
- 34.70183
- ],
- [
- 137.02454,
- 34.70809
- ],
- [
- 137.01581,
- 34.64937
- ],
- [
- 136.98179,
- 34.65029
- ],
- [
- 136.82601,
- 34.74911
- ],
- [
- 136.84884,
- 34.82319
- ],
- [
- 136.79266,
- 34.82521
- ],
- [
- 136.79132,
- 35.00048
- ],
- [
- 136.75081,
- 35.00012
- ],
- [
- 136.74991,
- 34.95849
- ],
- [
- 136.68277,
- 34.96069
- ],
- [
- 136.6624,
- 34.89701
- ],
- [
- 136.59078,
- 34.80003
- ],
- [
- 136.53863,
- 34.72704
- ],
- [
- 136.58294,
- 34.62506
- ],
- [
- 136.75682,
- 34.54181
- ],
- [
- 136.85798,
- 34.54126
- ],
- [
- 136.93945,
- 34.54347
- ],
- [
- 136.91675,
- 34.49231
- ],
- [
- 136.94081,
- 34.46687
- ],
- [
- 136.94113,
- 34.40866
- ],
- [
- 136.92404,
- 34.35876
- ],
- [
- 136.90742,
- 34.30209
- ],
- [
- 136.90045,
- 34.2666
- ],
- [
- 136.84981,
- 34.23416
- ],
- [
- 136.81693,
- 34.1923
- ],
- [
- 136.79948,
- 34.19254
- ],
- [
- 136.79996,
- 34.22906
- ],
- [
- 136.74203,
- 34.25863
- ],
- [
- 136.73325,
- 34.28285
- ],
- [
- 136.70896,
- 34.28334
- ],
- [
- 136.64264,
- 34.25902
- ],
- [
- 136.5594,
- 34.22605
- ],
- [
- 136.53564,
- 34.22167
- ],
- [
- 136.50068,
- 34.20864
- ],
- [
- 136.44007,
- 34.20053
- ],
- [
- 136.38325,
- 34.16675
- ],
- [
- 136.3334,
- 34.14802
- ],
- [
- 136.31583,
- 34.08487
- ],
- [
- 136.2674,
- 34.08316
- ],
- [
- 136.12497,
- 34.08343
- ],
- [
- 136.12449,
- 34.16688
- ],
- [
- 136.24968,
- 34.16688
- ],
- [
- 136.24984,
- 34.25012
- ],
- [
- 136.37486,
- 34.25025
- ],
- [
- 136.37468,
- 34.33331
- ],
- [
- 136.50021,
- 34.33302
- ],
- [
- 136.49973,
- 34.49192
- ],
- [
- 136.45843,
- 34.49127
- ],
- [
- 136.45811,
- 34.5416
- ],
- [
- 136.4168,
- 34.54186
- ],
- [
- 136.41664,
- 34.62516
- ],
- [
- 136.37494,
- 34.62464
- ],
- [
- 136.37469,
- 34.68106
- ],
- [
- 136.37485,
- 34.74974
- ],
- [
- 136.33402,
- 34.75026
- ],
- [
- 136.33354,
- 34.79109
- ],
- [
- 136.37485,
- 34.79213
- ],
- [
- 136.37533,
- 34.95858
- ],
- [
- 136.33323,
- 34.95858
- ],
- [
- 136.33323,
- 34.83345
- ],
- [
- 136.29239,
- 34.83371
- ],
- [
- 136.29208,
- 34.792
- ],
- [
- 136.24966,
- 34.79213
- ],
- [
- 136.24998,
- 34.70838
- ],
- [
- 136.29192,
- 34.70851
- ],
- [
- 136.2916,
- 34.62475
- ],
- [
- 136.12487,
- 34.62512
- ],
- [
- 136.12498,
- 34.66674
- ],
- [
- 136.04161,
- 34.66655
- ],
- [
- 136.04094,
- 34.7499
- ],
- [
- 136.00023,
- 34.75009
- ],
- [
- 135.99991,
- 34.65993
- ],
- [
- 135.99975,
- 34.58387
- ],
- [
- 136.04153,
- 34.58374
- ],
- [
- 136.04185,
- 34.50017
- ],
- [
- 136.04989,
- 34.49997
- ],
- [
- 136.05005,
- 34.42503
- ],
- [
- 135.91674,
- 34.425
- ],
- [
- 135.91667,
- 34.35836
- ],
- [
- 135.81665,
- 34.35837
- ],
- [
- 135.81661,
- 34.31668
- ],
- [
- 135.74991,
- 34.31672
- ],
- [
- 135.75007,
- 34.29167
- ],
- [
- 135.64152,
- 34.29176
- ],
- [
- 135.64186,
- 34.27512
- ],
- [
- 135.53325,
- 34.27489
- ],
- [
- 135.53348,
- 34.25834
- ],
- [
- 135.475,
- 34.25834
- ],
- [
- 135.47511,
- 34.22498
- ],
- [
- 135.37507,
- 34.22512
- ],
- [
- 135.3749,
- 34.20814
- ],
- [
- 135.50001,
- 34.20837
- ],
- [
- 135.50001,
- 33.66652
- ],
- [
- 135.87502,
- 33.66661
- ],
- [
- 135.87558,
- 33.74983
- ],
- [
- 136.03371,
- 33.75021
- ],
- [
- 136.01272,
- 33.71062
- ],
- [
- 135.99681,
- 33.67327
- ],
- [
- 135.97948,
- 33.63389
- ],
- [
- 135.97195,
- 33.61271
- ],
- [
- 135.95831,
- 33.56798
- ],
- [
- 135.85332,
- 33.50522
- ],
- [
- 135.85353,
- 33.48302
- ],
- [
- 135.87591,
- 33.4814
- ],
- [
- 135.86057,
- 33.44051
- ],
- [
- 135.77718,
- 33.42558
- ],
- [
- 135.7418,
- 33.42534
- ],
- [
- 135.74163,
- 33.4665
- ],
- [
- 135.68498,
- 33.47915
- ],
- [
- 135.59008,
- 33.49633
- ],
- [
- 135.47373,
- 33.52819
- ],
- [
- 135.3902,
- 33.5752
- ],
- [
- 135.37485,
- 33.61633
- ],
- [
- 135.37533,
- 33.64967
- ],
- [
- 135.33371,
- 33.6498
- ],
- [
- 135.32468,
- 33.66653
- ],
- [
- 135.45794,
- 33.66666
- ],
- [
- 135.45842,
- 33.74987
- ],
- [
- 135.41727,
- 33.75
- ],
- [
- 135.41663,
- 33.78802
- ],
- [
- 135.41743,
- 33.83273
- ],
- [
- 135.37517,
- 33.83326
- ],
- [
- 135.37517,
- 33.79171
- ],
- [
- 135.3284,
- 33.78999
- ],
- [
- 135.28777,
- 33.75622
- ],
- [
- 135.21503,
- 33.7698
- ],
- [
- 135.14371,
- 33.85113
- ],
- [
- 135.12013,
- 33.87826
- ],
- [
- 135.05776,
- 33.87991
- ],
- [
- 135.05947,
- 33.96479
- ],
- [
- 135.07709,
- 34.00837
- ],
- [
- 135.11345,
- 34.05029
- ],
- [
- 135.06515,
- 34.06759
- ],
- [
- 135.07041,
- 34.121
- ],
- [
- 135.15522,
- 34.16286
- ],
- [
- 135.1163,
- 34.18742
- ],
- [
- 135.06316,
- 34.25849
- ],
- [
- 135.04915,
- 34.27082
- ],
- [
- 134.99554,
- 34.27152
- ],
- [
- 134.9955,
- 34.29122
- ],
- [
- 134.99945,
- 34.29894
- ],
- [
- 135.00904,
- 34.30357
- ],
- [
- 135.1457,
- 34.34721
- ],
- [
- 135.20804,
- 34.35108
- ],
- [
- 135.24174,
- 34.39165
- ],
- [
- 135.19145,
- 34.42482
- ],
- [
- 135.25012,
- 34.46056
- ],
- [
- 135.29487,
- 34.42658
- ],
- [
- 135.30902,
- 34.44119
- ],
- [
- 135.36647,
- 34.53277
- ],
- [
- 135.39147,
- 34.53394
- ],
- [
- 135.38308,
- 34.63128
- ],
- [
- 135.36409,
- 34.66669
- ],
- [
- 135.29161,
- 34.66695
- ],
- [
- 135.29061,
- 34.6245
- ],
- [
- 135.08349,
- 34.62463
- ],
- [
- 135.04725,
- 34.61643
- ],
- [
- 134.92905,
- 34.64799
- ],
- [
- 134.826,
- 34.69662
- ],
- [
- 134.75874,
- 34.74267
- ],
- [
- 134.71632,
- 34.74982
- ],
- [
- 134.52561,
- 34.74969
- ],
- [
- 134.41657,
- 34.70885
- ],
- [
- 134.31671,
- 34.66669
- ],
- [
- 134.25055,
- 34.66656
- ],
- [
- 134.24992,
- 34.68309
- ],
- [
- 134.15797,
- 34.68348
- ],
- [
- 134.15781,
- 34.70013
- ],
- [
- 134.12505,
- 34.7
- ],
- [
- 134.12474,
- 34.58386
- ],
- [
- 134.11666,
- 34.55845
- ],
- [
- 134.02519,
- 34.55024
- ],
- [
- 134.02535,
- 34.44785
- ],
- [
- 134.02788,
- 34.41639
- ],
- [
- 134.19168,
- 34.41678
- ],
- [
- 134.19152,
- 34.38401
- ],
- [
- 134.28347,
- 34.38296
- ],
- [
- 134.28347,
- 34.33371
- ],
- [
- 134.38082,
- 34.29415
- ],
- [
- 134.40952,
- 34.26539
- ],
- [
- 134.43268,
- 34.24648
- ],
- [
- 134.56265,
- 34.25055
- ],
- [
- 134.66663,
- 34.24963
- ],
- [
- 134.64146,
- 34.04963
- ],
- [
- 134.70809,
- 33.96554
- ],
- [
- 134.74006,
- 33.92825
- ],
- [
- 134.71221,
- 33.86773
- ],
- [
- 134.76918,
- 33.86691
- ],
- [
- 134.76712,
- 33.82524
- ],
- [
- 134.66742,
- 33.7754
- ],
- [
- 134.63102,
- 33.77487
- ],
- [
- 134.50018,
- 33.77493
- ],
- [
- 134.49978,
- 33.95855
- ],
- [
- 134.4582,
- 33.95874
- ],
- [
- 134.45816,
- 34.00006
- ],
- [
- 134.34679,
- 33.99889
- ],
- [
- 134.06047,
- 33.99988
- ],
- [
- 133.74955,
- 34.00047
- ],
- [
- 133.74998,
- 34.33337
- ],
- [
- 133.875,
- 34.33342
- ],
- [
- 133.87494,
- 34.41668
- ],
- [
- 133.95888,
- 34.41683
- ],
- [
- 133.95843,
- 34.44157
- ],
- [
- 133.85055,
- 34.44157
- ],
- [
- 133.84966,
- 34.46621
- ],
- [
- 133.82537,
- 34.46704
- ],
- [
- 133.81642,
- 34.44222
- ],
- [
- 133.84205,
- 34.43326
- ],
- [
- 133.84194,
- 34.41656
- ],
- [
- 133.75822,
- 34.41715
- ],
- [
- 133.74122,
- 34.44175
- ],
- [
- 133.6913,
- 34.44152
- ],
- [
- 133.69085,
- 34.45739
- ],
- [
- 133.69097,
- 34.46639
- ],
- [
- 133.70004,
- 34.48346
- ],
- [
- 133.61655,
- 34.48355
- ],
- [
- 133.61689,
- 34.45827
- ],
- [
- 133.53351,
- 34.45887
- ],
- [
- 133.53329,
- 34.41752
- ],
- [
- 133.4897,
- 34.41743
- ],
- [
- 133.46642,
- 34.43313
- ],
- [
- 133.46631,
- 34.44992
- ],
- [
- 133.4503,
- 34.45002
- ],
- [
- 133.45008,
- 34.4166
- ],
- [
- 133.41713,
- 34.41696
- ],
- [
- 133.41668,
- 34.35786
- ],
- [
- 133.34174,
- 34.3583
- ],
- [
- 133.30304,
- 34.37515
- ],
- [
- 133.2748,
- 34.35876
- ],
- [
- 133.21655,
- 34.35
- ],
- [
- 133.16694,
- 34.35007
- ],
- [
- 133.16662,
- 34.36659
- ],
- [
- 133.09184,
- 34.36659
- ],
- [
- 133.09176,
- 34.3417
- ],
- [
- 133.05837,
- 34.34164
- ],
- [
- 133.05829,
- 34.32491
- ],
- [
- 132.90003,
- 34.32517
- ],
- [
- 132.89148,
- 34.29164
- ],
- [
- 132.7917,
- 34.29164
- ],
- [
- 132.79133,
- 34.28281
- ],
- [
- 132.792,
- 34.24212
- ],
- [
- 132.77492,
- 34.22513
- ],
- [
- 132.71629,
- 34.22499
- ],
- [
- 132.71652,
- 34.21655
- ],
- [
- 132.75854,
- 34.21636
- ],
- [
- 132.775,
- 34.20877
- ],
- [
- 132.79218,
- 34.20095
- ],
- [
- 132.79223,
- 34.14177
- ],
- [
- 132.74138,
- 34.14173
- ],
- [
- 132.70838,
- 34.16655
- ],
- [
- 132.63354,
- 34.16665
- ],
- [
- 132.61664,
- 34.1917
- ],
- [
- 132.59185,
- 34.1916
- ],
- [
- 132.5749,
- 34.1666
- ],
- [
- 132.54155,
- 34.16674
- ],
- [
- 132.54178,
- 34.14196
- ],
- [
- 132.42515,
- 34.14165
- ],
- [
- 132.42503,
- 34.16657
- ],
- [
- 132.3749,
- 34.16663
- ],
- [
- 132.37515,
- 34.18348
- ],
- [
- 132.40833,
- 34.18343
- ],
- [
- 132.3752,
- 34.2168
- ],
- [
- 132.34991,
- 34.23331
- ],
- [
- 132.35014,
- 34.25834
- ],
- [
- 132.35814,
- 34.25843
- ],
- [
- 132.35819,
- 34.27503
- ],
- [
- 132.33922,
- 34.25834
- ],
- [
- 132.29166,
- 34.22494
- ],
- [
- 132.24992,
- 34.22494
- ],
- [
- 132.25003,
- 34.2043
- ],
- [
- 132.25809,
- 34.18324
- ],
- [
- 132.28327,
- 34.18352
- ],
- [
- 132.28321,
- 34.19995
- ],
- [
- 132.29183,
- 34.20837
- ],
- [
- 132.32501,
- 34.20847
- ],
- [
- 132.31684,
- 34.1753
- ],
- [
- 132.25843,
- 34.17533
- ],
- [
- 132.25843,
- 34.14171
- ],
- [
- 132.2502,
- 34.11675
- ],
- [
- 132.21669,
- 34.11684
- ],
- [
- 132.21685,
- 34.0585
- ],
- [
- 132.22491,
- 34.05827
- ],
- [
- 132.22502,
- 33.99163
- ],
- [
- 132.21669,
- 33.99177
- ],
- [
- 132.21652,
- 33.97516
- ],
- [
- 132.25037,
- 33.97526
- ],
- [
- 132.25014,
- 33.91622
- ],
- [
- 131.95761,
- 33.91733
- ],
- [
- 131.95783,
- 33.92512
- ],
- [
- 131.91755,
- 33.92495
- ],
- [
- 131.91586,
- 33.95863
- ],
- [
- 131.88699,
- 33.96671
- ],
- [
- 131.87569,
- 33.95891
- ],
- [
- 131.84973,
- 33.92502
- ],
- [
- 131.80049,
- 33.92439
- ],
- [
- 131.79948,
- 33.95046
- ],
- [
- 131.7752,
- 33.95057
- ],
- [
- 131.75058,
- 33.9668
- ],
- [
- 131.70828,
- 33.97508
- ],
- [
- 131.70918,
- 33.92551
- ],
- [
- 131.68366,
- 33.92513
- ],
- [
- 131.68321,
- 33.95056
- ],
- [
- 131.6916,
- 33.96717
- ],
- [
- 131.69988,
- 33.98323
- ],
- [
- 131.68332,
- 33.99937
- ],
- [
- 131.68354,
- 34.01681
- ],
- [
- 131.69999,
- 34.017
- ],
- [
- 131.70011,
- 34.03314
- ],
- [
- 131.68209,
- 34.03352
- ],
- [
- 131.67515,
- 34.02581
- ],
- [
- 131.62513,
- 34.02488
- ],
- [
- 131.59122,
- 33.97515
- ],
- [
- 131.38721,
- 33.97497
- ],
- [
- 131.29981,
- 33.91685
- ],
- [
- 131.16675,
- 33.91667
- ],
- [
- 131.1172,
- 33.97473
- ],
- [
- 131.06078,
- 34.02462
- ],
- [
- 131.03349,
- 34.02557
- ],
- [
- 131.04198,
- 34.00848
- ],
- [
- 131.04175,
- 33.7381
- ]
- ],
- [
- [
- 135.98583,
- 35.86595
- ],
- [
- 135.93905,
- 35.95517
- ],
- [
- 135.95723,
- 36.1316
- ],
- [
- 136.15271,
- 36.29666
- ],
- [
- 136.6596,
- 36.75695
- ],
- [
- 136.65846,
- 37.00603
- ],
- [
- 136.66642,
- 37.33477
- ],
- [
- 136.85167,
- 37.42328
- ],
- [
- 137.11307,
- 37.5288
- ],
- [
- 137.31877,
- 37.54953
- ],
- [
- 137.39151,
- 37.50356
- ],
- [
- 137.34765,
- 37.35791
- ],
- [
- 137.20218,
- 37.24762
- ],
- [
- 137.09307,
- 37.06828
- ],
- [
- 137.0223,
- 36.83795
- ],
- [
- 137.09532,
- 36.80133
- ],
- [
- 137.22971,
- 36.77368
- ],
- [
- 137.35387,
- 36.80451
- ],
- [
- 137.39706,
- 36.90966
- ],
- [
- 137.50588,
- 36.95883
- ],
- [
- 137.72267,
- 37.01579
- ],
- [
- 137.95199,
- 37.10656
- ],
- [
- 138.053,
- 37.16975
- ],
- [
- 138.18626,
- 37.18254
- ],
- [
- 138.28854,
- 37.24861
- ],
- [
- 138.43501,
- 37.34512
- ],
- [
- 138.54909,
- 37.41229
- ],
- [
- 138.61842,
- 37.49225
- ],
- [
- 138.73903,
- 37.51536
- ],
- [
- 138.78378,
- 37.5674
- ],
- [
- 138.82185,
- 37.62796
- ],
- [
- 138.91491,
- 37.63009
- ],
- [
- 138.924,
- 37.6032
- ],
- [
- 139.01321,
- 37.59757
- ],
- [
- 139.01421,
- 37.53507
- ],
- [
- 139.03452,
- 37.52325
- ],
- [
- 139.03793,
- 37.45798
- ],
- [
- 139.04887,
- 37.42358
- ],
- [
- 139.13027,
- 37.42312
- ],
- [
- 139.23881,
- 37.4326
- ],
- [
- 139.26282,
- 37.33326
- ],
- [
- 139.12289,
- 37.32784
- ],
- [
- 139.11408,
- 37.26354
- ],
- [
- 139.11422,
- 37.16748
- ],
- [
- 139.05555,
- 37.16658
- ],
- [
- 138.82825,
- 37.17133
- ],
- [
- 138.87072,
- 37.2338
- ],
- [
- 138.89104,
- 37.31316
- ],
- [
- 138.72965,
- 37.33259
- ],
- [
- 138.71403,
- 37.29474
- ],
- [
- 138.71715,
- 37.1642
- ],
- [
- 138.53517,
- 37.16533
- ],
- [
- 138.39907,
- 37.16692
- ],
- [
- 138.37478,
- 37.13261
- ],
- [
- 138.3725,
- 36.99907
- ],
- [
- 138.08823,
- 36.99839
- ],
- [
- 138.08596,
- 36.91586
- ],
- [
- 137.89233,
- 36.91768
- ],
- [
- 137.87798,
- 36.83517
- ],
- [
- 137.66517,
- 36.8321
- ],
- [
- 137.52111,
- 36.83142
- ],
- [
- 137.51216,
- 36.74222
- ],
- [
- 137.39482,
- 36.74427
- ],
- [
- 137.37138,
- 36.58325
- ],
- [
- 137.29367,
- 36.58371
- ],
- [
- 137.18016,
- 36.55028
- ],
- [
- 137.21383,
- 36.53133
- ],
- [
- 137.26384,
- 36.33176
- ],
- [
- 136.63321,
- 36.33496
- ],
- [
- 136.50436,
- 36.29227
- ],
- [
- 136.39412,
- 36.29444
- ],
- [
- 136.38034,
- 36.25493
- ],
- [
- 136.37778,
- 36.17665
- ],
- [
- 136.38218,
- 36.09507
- ],
- [
- 136.38758,
- 36.00065
- ],
- [
- 136.2593,
- 35.99399
- ],
- [
- 136.25532,
- 35.90923
- ],
- [
- 136.24992,
- 35.83337
- ],
- [
- 136.12207,
- 35.82876
- ],
- [
- 136.11184,
- 35.88725
- ],
- [
- 136.05984,
- 35.91165
- ],
- [
- 136.01793,
- 35.86676
- ],
- [
- 135.98583,
- 35.86595
- ]
- ],
- [
- [
- 140.03281,
- 37.29986
- ],
- [
- 140.03344,
- 37.34643
- ],
- [
- 140.03344,
- 37.47427
- ],
- [
- 140.03407,
- 37.48281
- ],
- [
- 139.99973,
- 37.48356
- ],
- [
- 140.00036,
- 37.44198
- ],
- [
- 139.94212,
- 37.44173
- ],
- [
- 139.94197,
- 37.35007
- ],
- [
- 139.89116,
- 37.35007
- ],
- [
- 139.89116,
- 37.41698
- ],
- [
- 139.81725,
- 37.41647
- ],
- [
- 139.81266,
- 37.57468
- ],
- [
- 139.74192,
- 37.57556
- ],
- [
- 139.74224,
- 37.79174
- ],
- [
- 139.81789,
- 37.79162
- ],
- [
- 139.98296,
- 37.79112
- ],
- [
- 139.98359,
- 37.58334
- ],
- [
- 140.0412,
- 37.58334
- ],
- [
- 140.04151,
- 37.47502
- ],
- [
- 140.1591,
- 37.47528
- ],
- [
- 140.15815,
- 37.63311
- ],
- [
- 140.3745,
- 37.63399
- ],
- [
- 140.37481,
- 37.83338
- ],
- [
- 140.5,
- 37.83525
- ],
- [
- 140.49989,
- 37.91662
- ],
- [
- 140.53144,
- 37.9168
- ],
- [
- 140.62489,
- 37.9167
- ],
- [
- 140.62489,
- 37.84641
- ],
- [
- 140.62534,
- 37.33359
- ],
- [
- 140.57502,
- 37.33284
- ],
- [
- 140.57486,
- 37.25881
- ],
- [
- 140.4579,
- 37.25855
- ],
- [
- 140.45774,
- 37.2084
- ],
- [
- 140.2501,
- 37.20866
- ],
- [
- 140.24994,
- 37.29998
- ],
- [
- 140.03281,
- 37.29986
- ]
- ],
- [
- [
- 141.00075,
- 38.16707
- ],
- [
- 140.84264,
- 38.16752
- ],
- [
- 140.68779,
- 38.16405
- ],
- [
- 140.70788,
- 38.09499
- ],
- [
- 140.70868,
- 38.03346
- ],
- [
- 140.61627,
- 38.03362
- ],
- [
- 140.53369,
- 38.11364
- ],
- [
- 140.5359,
- 38.14478
- ],
- [
- 140.61948,
- 38.14478
- ],
- [
- 140.62471,
- 38.2048
- ],
- [
- 140.6231,
- 38.27376
- ],
- [
- 140.63073,
- 38.33902
- ],
- [
- 140.81255,
- 38.33698
- ],
- [
- 141.00362,
- 38.33398
- ],
- [
- 141.00075,
- 38.16707
- ]
- ],
- [
- [
- 129.44454,
- 34.73675
- ],
- [
- 129.52524,
- 34.65452
- ],
- [
- 129.35703,
- 34.19046
- ],
- [
- 129.23088,
- 34.06063
- ],
- [
- 129.15132,
- 34.11616
- ],
- [
- 129.27179,
- 34.63488
- ],
- [
- 129.44454,
- 34.73675
- ]
- ]
- ],
- "terms_url": "http://www.gsi.go.jp/kikakuchousei/kikakuchousei40182.html",
- "terms_text": "GSI Japan"
- },
- {
- "id": "gsi.go.jp_std_map",
- "name": "Japan GSI Standard Map",
- "type": "tms",
- "template": "https://cyberjapandata.gsi.go.jp/xyz/std/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 5,
- 18
- ],
- "polygon": [
- [
- [
- 141.85547,
- 44.64912
- ],
- [
- 140.22949,
- 43.9691
- ],
- [
- 138.95508,
- 41.80408
- ],
- [
- 139.48242,
- 40.17887
- ],
- [
- 138.86719,
- 38.30718
- ],
- [
- 136.31836,
- 37.19533
- ],
- [
- 132.14355,
- 35.13788
- ],
- [
- 128.93555,
- 33.35806
- ],
- [
- 129.50684,
- 32.4727
- ],
- [
- 129.77051,
- 31.69078
- ],
- [
- 130.20996,
- 30.90223
- ],
- [
- 131.2207,
- 30.78904
- ],
- [
- 131.66016,
- 32.32428
- ],
- [
- 132.71484,
- 32.87959
- ],
- [
- 133.76953,
- 33.17434
- ],
- [
- 136.75781,
- 33.87042
- ],
- [
- 139.30664,
- 35.06597
- ],
- [
- 140.88867,
- 35.17381
- ],
- [
- 141.15234,
- 36.5626
- ],
- [
- 142.11914,
- 39.94344
- ],
- [
- 141.76758,
- 42.68243
- ],
- [
- 141.85547,
- 44.64912
- ]
- ]
- ],
- "terms_url": "https://maps.gsi.go.jp/help/use.html",
- "terms_text": "GSI Japan"
- },
- {
- "id": "Aargau-AGIS-2014",
- "name": "Kanton Aargau 25cm (AGIS 2014)",
- "type": "tms",
- "template": "https://mapproxy.osm.ch/tiles/AGIS2014/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
- "endDate": "2014-01-01T00:00:00.000Z",
- "startDate": "2014-01-01T00:00:00.000Z",
- "scaleExtent": [
- 8,
- 19
- ],
- "polygon": [
- [
- [
- 8.09602,
- 47.57882
- ],
- [
- 8.10323,
- 47.57879
- ],
- [
- 8.10323,
- 47.58583
- ],
- [
- 8.10591,
- 47.58732
- ],
- [
- 8.11019,
- 47.58878
- ],
- [
- 8.11589,
- 47.5893
- ],
- [
- 8.12168,
- 47.58916
- ],
- [
- 8.12546,
- 47.58873
- ],
- [
- 8.12959,
- 47.58888
- ],
- [
- 8.13023,
- 47.59122
- ],
- [
- 8.132,
- 47.59358
- ],
- [
- 8.13506,
- 47.59546
- ],
- [
- 8.13831,
- 47.59698
- ],
- [
- 8.14161,
- 47.59939
- ],
- [
- 8.14534,
- 47.60076
- ],
- [
- 8.14961,
- 47.60144
- ],
- [
- 8.15438,
- 47.60127
- ],
- [
- 8.15751,
- 47.60063
- ],
- [
- 8.16119,
- 47.59914
- ],
- [
- 8.16255,
- 47.59976
- ],
- [
- 8.16438,
- 47.60148
- ],
- [
- 8.16653,
- 47.60399
- ],
- [
- 8.17087,
- 47.60673
- ],
- [
- 8.17608,
- 47.60838
- ],
- [
- 8.17912,
- 47.60868
- ],
- [
- 8.18153,
- 47.6118
- ],
- [
- 8.18304,
- 47.61489
- ],
- [
- 8.18498,
- 47.6176
- ],
- [
- 8.18953,
- 47.62151
- ],
- [
- 8.19212,
- 47.62321
- ],
- [
- 8.22261,
- 47.623
- ],
- [
- 8.22561,
- 47.6212
- ],
- [
- 8.22849,
- 47.61842
- ],
- [
- 8.22959,
- 47.61621
- ],
- [
- 8.23008,
- 47.61501
- ],
- [
- 8.23261,
- 47.61686
- ],
- [
- 8.23657,
- 47.61803
- ],
- [
- 8.24,
- 47.61835
- ],
- [
- 8.24351,
- 47.61783
- ],
- [
- 8.24749,
- 47.61877
- ],
- [
- 8.25066,
- 47.61988
- ],
- [
- 8.25708,
- 47.6208
- ],
- [
- 8.26104,
- 47.62069
- ],
- [
- 8.26491,
- 47.61935
- ],
- [
- 8.26732,
- 47.61769
- ],
- [
- 8.26902,
- 47.61531
- ],
- [
- 8.27579,
- 47.61702
- ],
- [
- 8.28106,
- 47.61707
- ],
- [
- 8.28772,
- 47.61626
- ],
- [
- 8.29421,
- 47.61442
- ],
- [
- 8.29947,
- 47.61221
- ],
- [
- 8.30311,
- 47.60977
- ],
- [
- 8.30287,
- 47.59447
- ],
- [
- 8.30438,
- 47.59227
- ],
- [
- 8.30591,
- 47.59109
- ],
- [
- 8.30791,
- 47.59019
- ],
- [
- 8.31236,
- 47.58917
- ],
- [
- 8.31655,
- 47.58713
- ],
- [
- 8.32049,
- 47.58436
- ],
- [
- 8.32598,
- 47.57888
- ],
- [
- 8.32864,
- 47.57716
- ],
- [
- 8.33219,
- 47.57604
- ],
- [
- 8.33902,
- 47.57577
- ],
- [
- 8.34702,
- 47.57628
- ],
- [
- 8.35962,
- 47.57552
- ],
- [
- 8.36475,
- 47.57436
- ],
- [
- 8.37207,
- 47.57377
- ],
- [
- 8.38002,
- 47.57233
- ],
- [
- 8.38194,
- 47.57496
- ],
- [
- 8.38387,
- 47.57686
- ],
- [
- 8.38879,
- 47.58027
- ],
- [
- 8.39232,
- 47.58174
- ],
- [
- 8.39611,
- 47.58247
- ],
- [
- 8.40013,
- 47.58255
- ],
- [
- 8.40432,
- 47.58158
- ],
- [
- 8.41158,
- 47.57928
- ],
- [
- 8.418,
- 47.57602
- ],
- [
- 8.42381,
- 47.57452
- ],
- [
- 8.43039,
- 47.57228
- ],
- [
- 8.43275,
- 47.57035
- ],
- [
- 8.4336,
- 47.56849
- ],
- [
- 8.43353,
- 47.56669
- ],
- [
- 8.4319,
- 47.56444
- ],
- [
- 8.4286,
- 47.56217
- ],
- [
- 8.42575,
- 47.56121
- ],
- [
- 8.4259,
- 47.55854
- ],
- [
- 8.42498,
- 47.55624
- ],
- [
- 8.42353,
- 47.55469
- ],
- [
- 8.42296,
- 47.5537
- ],
- [
- 8.4246,
- 47.5517
- ],
- [
- 8.42492,
- 47.54981
- ],
- [
- 8.42434,
- 47.54836
- ],
- [
- 8.42539,
- 47.54679
- ],
- [
- 8.425,
- 47.54418
- ],
- [
- 8.4233,
- 47.5422
- ],
- [
- 8.421,
- 47.54106
- ],
- [
- 8.41832,
- 47.54049
- ],
- [
- 8.41551,
- 47.54062
- ],
- [
- 8.4139,
- 47.53924
- ],
- [
- 8.41283,
- 47.5372
- ],
- [
- 8.41194,
- 47.53626
- ],
- [
- 8.41241,
- 47.53415
- ],
- [
- 8.41185,
- 47.53237
- ],
- [
- 8.41117,
- 47.53158
- ],
- [
- 8.40143,
- 47.53169
- ],
- [
- 8.40124,
- 47.52443
- ],
- [
- 8.39936,
- 47.5222
- ],
- [
- 8.39666,
- 47.52082
- ],
- [
- 8.39385,
- 47.51988
- ],
- [
- 8.39085,
- 47.51973
- ],
- [
- 8.38877,
- 47.52014
- ],
- [
- 8.38809,
- 47.5146
- ],
- [
- 8.38551,
- 47.51075
- ],
- [
- 8.38366,
- 47.50944
- ],
- [
- 8.36776,
- 47.50953
- ],
- [
- 8.36739,
- 47.48709
- ],
- [
- 8.3751,
- 47.48689
- ],
- [
- 8.37889,
- 47.4853
- ],
- [
- 8.38196,
- 47.48188
- ],
- [
- 8.38184,
- 47.47521
- ],
- [
- 8.38328,
- 47.47192
- ],
- [
- 8.38244,
- 47.46879
- ],
- [
- 8.37943,
- 47.46643
- ],
- [
- 8.37751,
- 47.4659
- ],
- [
- 8.37787,
- 47.46496
- ],
- [
- 8.38238,
- 47.46423
- ],
- [
- 8.38671,
- 47.46097
- ],
- [
- 8.39171,
- 47.45743
- ],
- [
- 8.39315,
- 47.45349
- ],
- [
- 8.39514,
- 47.45031
- ],
- [
- 8.39418,
- 47.44722
- ],
- [
- 8.39171,
- 47.44535
- ],
- [
- 8.3896,
- 47.44449
- ],
- [
- 8.38996,
- 47.44339
- ],
- [
- 8.39111,
- 47.4416
- ],
- [
- 8.39213,
- 47.43924
- ],
- [
- 8.39339,
- 47.4359
- ],
- [
- 8.39249,
- 47.43411
- ],
- [
- 8.39369,
- 47.43143
- ],
- [
- 8.39568,
- 47.42854
- ],
- [
- 8.39959,
- 47.42463
- ],
- [
- 8.39953,
- 47.41954
- ],
- [
- 8.449,
- 47.41897
- ],
- [
- 8.45369,
- 47.41233
- ],
- [
- 8.45369,
- 47.40451
- ],
- [
- 8.44858,
- 47.39649
- ],
- [
- 8.40362,
- 47.39685
- ],
- [
- 8.40483,
- 47.39392
- ],
- [
- 8.4029,
- 47.38903
- ],
- [
- 8.4035,
- 47.38553
- ],
- [
- 8.40314,
- 47.38304
- ],
- [
- 8.40483,
- 47.37905
- ],
- [
- 8.40844,
- 47.37575
- ],
- [
- 8.41379,
- 47.37338
- ],
- [
- 8.4159,
- 47.37016
- ],
- [
- 8.41584,
- 47.36539
- ],
- [
- 8.4144,
- 47.36327
- ],
- [
- 8.41494,
- 47.35912
- ],
- [
- 8.41722,
- 47.35573
- ],
- [
- 8.41632,
- 47.35231
- ],
- [
- 8.41355,
- 47.34913
- ],
- [
- 8.41367,
- 47.34688
- ],
- [
- 8.41476,
- 47.3448
- ],
- [
- 8.41885,
- 47.34244
- ],
- [
- 8.42264,
- 47.34052
- ],
- [
- 8.42469,
- 47.33718
- ],
- [
- 8.42421,
- 47.33163
- ],
- [
- 8.42914,
- 47.33286
- ],
- [
- 8.4351,
- 47.33192
- ],
- [
- 8.43763,
- 47.33281
- ],
- [
- 8.44328,
- 47.33506
- ],
- [
- 8.44527,
- 47.33746
- ],
- [
- 8.45213,
- 47.3402
- ],
- [
- 8.45761,
- 47.33975
- ],
- [
- 8.46212,
- 47.33649
- ],
- [
- 8.46278,
- 47.33322
- ],
- [
- 8.46043,
- 47.32829
- ],
- [
- 8.45797,
- 47.32457
- ],
- [
- 8.45556,
- 47.32005
- ],
- [
- 8.44918,
- 47.31495
- ],
- [
- 8.44713,
- 47.31217
- ],
- [
- 8.44021,
- 47.30948
- ],
- [
- 8.43624,
- 47.29817
- ],
- [
- 8.43311,
- 47.29593
- ],
- [
- 8.42806,
- 47.29397
- ],
- [
- 8.42318,
- 47.29001
- ],
- [
- 8.41656,
- 47.28789
- ],
- [
- 8.41024,
- 47.28728
- ],
- [
- 8.4035,
- 47.28409
- ],
- [
- 8.40188,
- 47.2805
- ],
- [
- 8.40862,
- 47.27593
- ],
- [
- 8.41066,
- 47.2716
- ],
- [
- 8.40892,
- 47.26613
- ],
- [
- 8.41235,
- 47.2618
- ],
- [
- 8.41235,
- 47.25873
- ],
- [
- 8.41109,
- 47.25608
- ],
- [
- 8.41698,
- 47.25142
- ],
- [
- 8.41885,
- 47.2475
- ],
- [
- 8.41801,
- 47.24305
- ],
- [
- 8.4144,
- 47.23904
- ],
- [
- 8.41373,
- 47.23565
- ],
- [
- 8.4106,
- 47.23226
- ],
- [
- 8.40435,
- 47.22797
- ],
- [
- 8.40296,
- 47.2256
- ],
- [
- 8.40398,
- 47.22127
- ],
- [
- 8.40856,
- 47.21718
- ],
- [
- 8.40928,
- 47.21326
- ],
- [
- 8.40844,
- 47.20945
- ],
- [
- 8.41012,
- 47.20258
- ],
- [
- 8.41319,
- 47.19678
- ],
- [
- 8.41271,
- 47.1924
- ],
- [
- 8.4088,
- 47.18799
- ],
- [
- 8.40814,
- 47.18475
- ],
- [
- 8.4091,
- 47.1812
- ],
- [
- 8.41518,
- 47.17915
- ],
- [
- 8.41915,
- 47.17563
- ],
- [
- 8.42294,
- 47.16553
- ],
- [
- 8.42294,
- 47.15747
- ],
- [
- 8.42011,
- 47.15325
- ],
- [
- 8.42246,
- 47.14838
- ],
- [
- 8.42276,
- 47.14392
- ],
- [
- 8.42053,
- 47.13954
- ],
- [
- 8.41584,
- 47.13524
- ],
- [
- 8.40898,
- 47.13274
- ],
- [
- 8.40386,
- 47.13201
- ],
- [
- 8.40116,
- 47.13258
- ],
- [
- 8.39532,
- 47.1327
- ],
- [
- 8.38437,
- 47.1345
- ],
- [
- 8.37895,
- 47.13385
- ],
- [
- 8.37245,
- 47.13442
- ],
- [
- 8.36908,
- 47.13659
- ],
- [
- 8.368,
- 47.13876
- ],
- [
- 8.35656,
- 47.14228
- ],
- [
- 8.35409,
- 47.14564
- ],
- [
- 8.35331,
- 47.14916
- ],
- [
- 8.3506,
- 47.15161
- ],
- [
- 8.3503,
- 47.15419
- ],
- [
- 8.34772,
- 47.15669
- ],
- [
- 8.34561,
- 47.15923
- ],
- [
- 8.34086,
- 47.16164
- ],
- [
- 8.33935,
- 47.16512
- ],
- [
- 8.3373,
- 47.16896
- ],
- [
- 8.33315,
- 47.17154
- ],
- [
- 8.33261,
- 47.17351
- ],
- [
- 8.33062,
- 47.17792
- ],
- [
- 8.33002,
- 47.18717
- ],
- [
- 8.32924,
- 47.18786
- ],
- [
- 8.32936,
- 47.19494
- ],
- [
- 8.32292,
- 47.19514
- ],
- [
- 8.32148,
- 47.19854
- ],
- [
- 8.32196,
- 47.20115
- ],
- [
- 8.31835,
- 47.21043
- ],
- [
- 8.31413,
- 47.21178
- ],
- [
- 8.31089,
- 47.2153
- ],
- [
- 8.31107,
- 47.21857
- ],
- [
- 8.31221,
- 47.2198
- ],
- [
- 8.30884,
- 47.22433
- ],
- [
- 8.30932,
- 47.22646
- ],
- [
- 8.30715,
- 47.23042
- ],
- [
- 8.30727,
- 47.2321
- ],
- [
- 8.30595,
- 47.23582
- ],
- [
- 8.30607,
- 47.23949
- ],
- [
- 8.30378,
- 47.24366
- ],
- [
- 8.30144,
- 47.24677
- ],
- [
- 8.29554,
- 47.24836
- ],
- [
- 8.29187,
- 47.25293
- ],
- [
- 8.28814,
- 47.25869
- ],
- [
- 8.28766,
- 47.26143
- ],
- [
- 8.28627,
- 47.26519
- ],
- [
- 8.28723,
- 47.26805
- ],
- [
- 8.28838,
- 47.26964
- ],
- [
- 8.2823,
- 47.27478
- ],
- [
- 8.27718,
- 47.27576
- ],
- [
- 8.27273,
- 47.27531
- ],
- [
- 8.26749,
- 47.27593
- ],
- [
- 8.26533,
- 47.27719
- ],
- [
- 8.2616,
- 47.27695
- ],
- [
- 8.25793,
- 47.27781
- ],
- [
- 8.25576,
- 47.27887
- ],
- [
- 8.25317,
- 47.27678
- ],
- [
- 8.25034,
- 47.27548
- ],
- [
- 8.2501,
- 47.27348
- ],
- [
- 8.24956,
- 47.27017
- ],
- [
- 8.24559,
- 47.26715
- ],
- [
- 8.24095,
- 47.26678
- ],
- [
- 8.23452,
- 47.26727
- ],
- [
- 8.23145,
- 47.26278
- ],
- [
- 8.2309,
- 47.25931
- ],
- [
- 8.22663,
- 47.24942
- ],
- [
- 8.222,
- 47.24713
- ],
- [
- 8.21526,
- 47.24431
- ],
- [
- 8.21363,
- 47.24203
- ],
- [
- 8.21309,
- 47.23602
- ],
- [
- 8.21123,
- 47.23246
- ],
- [
- 8.21285,
- 47.22548
- ],
- [
- 8.21117,
- 47.22266
- ],
- [
- 8.20689,
- 47.22053
- ],
- [
- 8.19762,
- 47.22065
- ],
- [
- 8.19149,
- 47.21861
- ],
- [
- 8.16976,
- 47.21865
- ],
- [
- 8.16543,
- 47.22315
- ],
- [
- 8.16085,
- 47.22405
- ],
- [
- 8.15351,
- 47.2294
- ],
- [
- 8.15171,
- 47.2332
- ],
- [
- 8.14822,
- 47.23647
- ],
- [
- 8.14798,
- 47.241
- ],
- [
- 8.14635,
- 47.24203
- ],
- [
- 8.13823,
- 47.24166
- ],
- [
- 8.13558,
- 47.23941
- ],
- [
- 8.12673,
- 47.23606
- ],
- [
- 8.1218,
- 47.23631
- ],
- [
- 8.11614,
- 47.23872
- ],
- [
- 8.10675,
- 47.23945
- ],
- [
- 8.10266,
- 47.24113
- ],
- [
- 8.09983,
- 47.24436
- ],
- [
- 8.09766,
- 47.2493
- ],
- [
- 8.09797,
- 47.25069
- ],
- [
- 8.09339,
- 47.25567
- ],
- [
- 8.08852,
- 47.2569
- ],
- [
- 8.08485,
- 47.25583
- ],
- [
- 8.08323,
- 47.25405
- ],
- [
- 8.07995,
- 47.25246
- ],
- [
- 8.0769,
- 47.25054
- ],
- [
- 8.06854,
- 47.24284
- ],
- [
- 8.06325,
- 47.24098
- ],
- [
- 8.05134,
- 47.23865
- ],
- [
- 8.04857,
- 47.23886
- ],
- [
- 8.03575,
- 47.23747
- ],
- [
- 8.0322,
- 47.23555
- ],
- [
- 8.02714,
- 47.23534
- ],
- [
- 8.01139,
- 47.23967
- ],
- [
- 8.00927,
- 47.24116
- ],
- [
- 8.00791,
- 47.24312
- ],
- [
- 8.00783,
- 47.24821
- ],
- [
- 8.00857,
- 47.25042
- ],
- [
- 8.0084,
- 47.25769
- ],
- [
- 8.00712,
- 47.25922
- ],
- [
- 8.00299,
- 47.26162
- ],
- [
- 8.00052,
- 47.26486
- ],
- [
- 7.99759,
- 47.26789
- ],
- [
- 7.99627,
- 47.27271
- ],
- [
- 7.99474,
- 47.27369
- ],
- [
- 7.98993,
- 47.27121
- ],
- [
- 7.97278,
- 47.26907
- ],
- [
- 7.96857,
- 47.27008
- ],
- [
- 7.96737,
- 47.27098
- ],
- [
- 7.95861,
- 47.27112
- ],
- [
- 7.9601,
- 47.26748
- ],
- [
- 7.96274,
- 47.26396
- ],
- [
- 7.96576,
- 47.26171
- ],
- [
- 7.96699,
- 47.25879
- ],
- [
- 7.96695,
- 47.25001
- ],
- [
- 7.95963,
- 47.24582
- ],
- [
- 7.95112,
- 47.23918
- ],
- [
- 7.94469,
- 47.236
- ],
- [
- 7.93733,
- 47.23106
- ],
- [
- 7.93405,
- 47.23051
- ],
- [
- 7.9298,
- 47.23077
- ],
- [
- 7.9178,
- 47.23305
- ],
- [
- 7.90784,
- 47.23837
- ],
- [
- 7.89793,
- 47.2377
- ],
- [
- 7.8695,
- 47.23207
- ],
- [
- 7.85478,
- 47.22719
- ],
- [
- 7.85137,
- 47.22713
- ],
- [
- 7.83958,
- 47.22947
- ],
- [
- 7.83584,
- 47.22976
- ],
- [
- 7.83082,
- 47.23259
- ],
- [
- 7.82707,
- 47.23505
- ],
- [
- 7.82431,
- 47.23831
- ],
- [
- 7.82129,
- 47.24042
- ],
- [
- 7.82014,
- 47.24264
- ],
- [
- 7.81822,
- 47.24562
- ],
- [
- 7.81771,
- 47.24917
- ],
- [
- 7.81822,
- 47.25082
- ],
- [
- 7.81835,
- 47.25371
- ],
- [
- 7.81988,
- 47.25587
- ],
- [
- 7.82116,
- 47.2568
- ],
- [
- 7.82112,
- 47.25778
- ],
- [
- 7.8192,
- 47.26058
- ],
- [
- 7.81912,
- 47.26154
- ],
- [
- 7.81686,
- 47.26486
- ],
- [
- 7.8175,
- 47.26731
- ],
- [
- 7.81958,
- 47.26982
- ],
- [
- 7.82439,
- 47.27158
- ],
- [
- 7.82805,
- 47.2721
- ],
- [
- 7.83592,
- 47.27837
- ],
- [
- 7.83707,
- 47.28342
- ],
- [
- 7.84005,
- 47.2872
- ],
- [
- 7.84201,
- 47.29067
- ],
- [
- 7.84588,
- 47.29427
- ],
- [
- 7.84763,
- 47.2982
- ],
- [
- 7.85137,
- 47.30299
- ],
- [
- 7.8529,
- 47.30741
- ],
- [
- 7.85571,
- 47.31032
- ],
- [
- 7.86065,
- 47.31254
- ],
- [
- 7.86422,
- 47.31349
- ],
- [
- 7.87018,
- 47.31672
- ],
- [
- 7.87631,
- 47.31736
- ],
- [
- 7.88082,
- 47.31716
- ],
- [
- 7.88337,
- 47.31667
- ],
- [
- 7.88588,
- 47.31941
- ],
- [
- 7.88886,
- 47.32131
- ],
- [
- 7.88805,
- 47.32443
- ],
- [
- 7.88907,
- 47.3287
- ],
- [
- 7.8915,
- 47.33262
- ],
- [
- 7.8978,
- 47.34014
- ],
- [
- 7.9001,
- 47.34156
- ],
- [
- 7.90005,
- 47.3432
- ],
- [
- 7.90222,
- 47.34557
- ],
- [
- 7.90635,
- 47.34704
- ],
- [
- 7.90963,
- 47.34735
- ],
- [
- 7.91359,
- 47.34626
- ],
- [
- 7.91618,
- 47.34456
- ],
- [
- 7.91699,
- 47.34303
- ],
- [
- 7.92401,
- 47.33899
- ],
- [
- 7.93839,
- 47.33792
- ],
- [
- 7.94929,
- 47.33784
- ],
- [
- 7.95431,
- 47.33596
- ],
- [
- 7.95593,
- 47.33317
- ],
- [
- 7.95691,
- 47.32968
- ],
- [
- 7.95571,
- 47.32535
- ],
- [
- 7.96993,
- 47.32797
- ],
- [
- 7.97308,
- 47.33017
- ],
- [
- 7.98333,
- 47.33432
- ],
- [
- 7.98563,
- 47.33692
- ],
- [
- 7.98954,
- 47.33818
- ],
- [
- 7.99248,
- 47.33827
- ],
- [
- 7.99784,
- 47.34017
- ],
- [
- 7.99635,
- 47.34257
- ],
- [
- 7.99601,
- 47.34588
- ],
- [
- 7.99733,
- 47.34859
- ],
- [
- 8.00116,
- 47.35081
- ],
- [
- 8.00137,
- 47.3569
- ],
- [
- 8.00261,
- 47.3577
- ],
- [
- 8.00418,
- 47.36044
- ],
- [
- 8.00976,
- 47.36419
- ],
- [
- 8.01125,
- 47.36598
- ],
- [
- 8.01746,
- 47.36926
- ],
- [
- 8.01912,
- 47.37157
- ],
- [
- 8.0198,
- 47.37376
- ],
- [
- 8.02023,
- 47.37598
- ],
- [
- 8.02172,
- 47.37837
- ],
- [
- 8.02193,
- 47.38093
- ],
- [
- 8.02282,
- 47.38286
- ],
- [
- 8.02078,
- 47.38857
- ],
- [
- 8.01606,
- 47.38929
- ],
- [
- 8.01265,
- 47.38897
- ],
- [
- 8.00772,
- 47.39012
- ],
- [
- 8.00367,
- 47.39205
- ],
- [
- 8.00163,
- 47.39479
- ],
- [
- 8.00155,
- 47.39998
- ],
- [
- 8.00023,
- 47.40306
- ],
- [
- 7.99801,
- 47.40453
- ],
- [
- 7.99261,
- 47.40551
- ],
- [
- 7.98776,
- 47.40637
- ],
- [
- 7.98418,
- 47.40839
- ],
- [
- 7.98027,
- 47.4081
- ],
- [
- 7.9732,
- 47.41127
- ],
- [
- 7.96963,
- 47.41383
- ],
- [
- 7.95695,
- 47.41893
- ],
- [
- 7.95529,
- 47.4218
- ],
- [
- 7.95593,
- 47.42402
- ],
- [
- 7.95746,
- 47.42621
- ],
- [
- 7.96274,
- 47.42828
- ],
- [
- 7.97746,
- 47.43254
- ],
- [
- 7.97567,
- 47.43732
- ],
- [
- 7.97614,
- 47.44138
- ],
- [
- 7.97431,
- 47.44368
- ],
- [
- 7.95129,
- 47.45111
- ],
- [
- 7.94861,
- 47.4539
- ],
- [
- 7.94818,
- 47.4566
- ],
- [
- 7.94678,
- 47.45755
- ],
- [
- 7.94039,
- 47.45669
- ],
- [
- 7.93588,
- 47.45738
- ],
- [
- 7.93631,
- 47.47625
- ],
- [
- 7.9318,
- 47.47605
- ],
- [
- 7.92469,
- 47.47717
- ],
- [
- 7.91571,
- 47.47743
- ],
- [
- 7.90903,
- 47.47947
- ],
- [
- 7.90316,
- 47.47967
- ],
- [
- 7.90295,
- 47.48965
- ],
- [
- 7.8969,
- 47.4898
- ],
- [
- 7.8918,
- 47.49405
- ],
- [
- 7.89086,
- 47.49765
- ],
- [
- 7.8878,
- 47.49931
- ],
- [
- 7.88631,
- 47.5023
- ],
- [
- 7.87999,
- 47.50397
- ],
- [
- 7.87403,
- 47.50787
- ],
- [
- 7.86994,
- 47.50944
- ],
- [
- 7.87006,
- 47.51239
- ],
- [
- 7.86435,
- 47.51245
- ],
- [
- 7.85851,
- 47.51543
- ],
- [
- 7.8558,
- 47.51854
- ],
- [
- 7.85625,
- 47.52147
- ],
- [
- 7.8549,
- 47.52474
- ],
- [
- 7.85183,
- 47.5285
- ],
- [
- 7.84647,
- 47.52714
- ],
- [
- 7.84148,
- 47.52777
- ],
- [
- 7.8413,
- 47.52406
- ],
- [
- 7.84015,
- 47.51587
- ],
- [
- 7.83943,
- 47.51259
- ],
- [
- 7.83688,
- 47.51256
- ],
- [
- 7.83679,
- 47.51049
- ],
- [
- 7.83352,
- 47.50949
- ],
- [
- 7.83156,
- 47.50765
- ],
- [
- 7.82981,
- 47.50552
- ],
- [
- 7.82522,
- 47.50354
- ],
- [
- 7.82049,
- 47.5004
- ],
- [
- 7.81475,
- 47.49491
- ],
- [
- 7.81181,
- 47.49261
- ],
- [
- 7.80645,
- 47.4914
- ],
- [
- 7.80403,
- 47.49146
- ],
- [
- 7.80049,
- 47.49014
- ],
- [
- 7.77977,
- 47.49028
- ],
- [
- 7.77871,
- 47.49304
- ],
- [
- 7.7796,
- 47.496
- ],
- [
- 7.78386,
- 47.5004
- ],
- [
- 7.78203,
- 47.50368
- ],
- [
- 7.78088,
- 47.5073
- ],
- [
- 7.78109,
- 47.51018
- ],
- [
- 7.77977,
- 47.51265
- ],
- [
- 7.77969,
- 47.51529
- ],
- [
- 7.77045,
- 47.51802
- ],
- [
- 7.75905,
- 47.52003
- ],
- [
- 7.75266,
- 47.52009
- ],
- [
- 7.74781,
- 47.51957
- ],
- [
- 7.73368,
- 47.52291
- ],
- [
- 7.72781,
- 47.52719
- ],
- [
- 7.71985,
- 47.52978
- ],
- [
- 7.71262,
- 47.53095
- ],
- [
- 7.70764,
- 47.5344
- ],
- [
- 7.70551,
- 47.53917
- ],
- [
- 7.70696,
- 47.54279
- ],
- [
- 7.71415,
- 47.54627
- ],
- [
- 7.72245,
- 47.54756
- ],
- [
- 7.749,
- 47.54977
- ],
- [
- 7.75428,
- 47.55339
- ],
- [
- 7.76654,
- 47.55615
- ],
- [
- 7.77168,
- 47.55761
- ],
- [
- 7.78007,
- 47.55836
- ],
- [
- 7.78577,
- 47.55982
- ],
- [
- 7.7902,
- 47.5616
- ],
- [
- 7.79398,
- 47.56634
- ],
- [
- 7.80492,
- 47.57237
- ],
- [
- 7.80611,
- 47.57989
- ],
- [
- 7.81173,
- 47.58954
- ],
- [
- 7.81577,
- 47.59218
- ],
- [
- 7.82211,
- 47.59352
- ],
- [
- 7.83645,
- 47.59163
- ],
- [
- 7.83952,
- 47.59045
- ],
- [
- 7.84305,
- 47.58778
- ],
- [
- 7.84875,
- 47.58899
- ],
- [
- 7.85624,
- 47.59189
- ],
- [
- 7.86488,
- 47.59393
- ],
- [
- 7.87126,
- 47.5943
- ],
- [
- 7.87726,
- 47.59367
- ],
- [
- 7.88535,
- 47.59424
- ],
- [
- 7.89343,
- 47.59301
- ],
- [
- 7.90109,
- 47.58976
- ],
- [
- 7.90833,
- 47.58514
- ],
- [
- 7.91386,
- 47.57923
- ],
- [
- 7.91867,
- 47.57194
- ],
- [
- 7.91956,
- 47.56772
- ],
- [
- 7.91875,
- 47.56433
- ],
- [
- 7.9156,
- 47.56008
- ],
- [
- 7.91577,
- 47.55715
- ],
- [
- 7.91841,
- 47.55405
- ],
- [
- 7.92126,
- 47.55261
- ],
- [
- 7.92552,
- 47.55227
- ],
- [
- 7.93471,
- 47.55221
- ],
- [
- 7.9405,
- 47.55078
- ],
- [
- 7.94326,
- 47.54968
- ],
- [
- 7.94356,
- 47.55052
- ],
- [
- 7.94458,
- 47.55589
- ],
- [
- 7.94841,
- 47.55979
- ],
- [
- 7.95394,
- 47.56229
- ],
- [
- 7.96003,
- 47.56333
- ],
- [
- 7.96577,
- 47.56272
- ],
- [
- 7.97203,
- 47.5612
- ],
- [
- 7.97833,
- 47.56057
- ],
- [
- 7.98624,
- 47.56094
- ],
- [
- 7.99718,
- 47.56212
- ],
- [
- 8.0045,
- 47.56137
- ],
- [
- 8.01114,
- 47.55974
- ],
- [
- 8.01641,
- 47.55701
- ],
- [
- 8.02046,
- 47.55574
- ],
- [
- 8.0262,
- 47.55741
- ],
- [
- 8.03799,
- 47.55876
- ],
- [
- 8.04254,
- 47.56028
- ],
- [
- 8.0485,
- 47.56333
- ],
- [
- 8.05454,
- 47.56798
- ],
- [
- 8.05931,
- 47.56921
- ],
- [
- 8.0622,
- 47.56895
- ],
- [
- 8.06693,
- 47.57002
- ],
- [
- 8.07242,
- 47.56973
- ],
- [
- 8.07739,
- 47.56795
- ],
- [
- 8.08182,
- 47.56436
- ],
- [
- 8.08522,
- 47.56281
- ],
- [
- 8.08791,
- 47.56298
- ],
- [
- 8.09259,
- 47.56559
- ],
- [
- 8.09395,
- 47.56809
- ],
- [
- 8.09484,
- 47.57587
- ],
- [
- 8.09602,
- 47.57882
- ]
- ]
- ],
- "terms_text": "AGIS OF2014"
- },
- {
- "id": "Aargau-AGIS-2016",
- "name": "Kanton Aargau 25cm (AGIS 2016)",
- "type": "tms",
- "template": "https://mapproxy.osm.ch/tiles/AGIS2016/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
- "endDate": "2016-01-01T00:00:00.000Z",
- "startDate": "2016-01-01T00:00:00.000Z",
- "scaleExtent": [
- 8,
- 19
- ],
- "polygon": [
- [
- [
- 7.70438,
- 47.55794
- ],
- [
- 7.77076,
- 47.55772
- ],
- [
- 7.77103,
- 47.58025
- ],
- [
- 7.80408,
- 47.58017
- ],
- [
- 7.80433,
- 47.60248
- ],
- [
- 7.93713,
- 47.60217
- ],
- [
- 7.93703,
- 47.57962
- ],
- [
- 8.00374,
- 47.57917
- ],
- [
- 8.00338,
- 47.55687
- ],
- [
- 8.0364,
- 47.55665
- ],
- [
- 8.03681,
- 47.57928
- ],
- [
- 8.10313,
- 47.57881
- ],
- [
- 8.10387,
- 47.60112
- ],
- [
- 8.17011,
- 47.60086
- ],
- [
- 8.17036,
- 47.6235
- ],
- [
- 8.30311,
- 47.62235
- ],
- [
- 8.30305,
- 47.59988
- ],
- [
- 8.3362,
- 47.59927
- ],
- [
- 8.33585,
- 47.5771
- ],
- [
- 8.36913,
- 47.57694
- ],
- [
- 8.36943,
- 47.59931
- ],
- [
- 8.43564,
- 47.59877
- ],
- [
- 8.43454,
- 47.53133
- ],
- [
- 8.40144,
- 47.53162
- ],
- [
- 8.40096,
- 47.50926
- ],
- [
- 8.3678,
- 47.50959
- ],
- [
- 8.3675,
- 47.48698
- ],
- [
- 8.40042,
- 47.48666
- ],
- [
- 8.39939,
- 47.41929
- ],
- [
- 8.46558,
- 47.4187
- ],
- [
- 8.46515,
- 47.39647
- ],
- [
- 8.43206,
- 47.39654
- ],
- [
- 8.43125,
- 47.3516
- ],
- [
- 8.46434,
- 47.35128
- ],
- [
- 8.46327,
- 47.28387
- ],
- [
- 8.42997,
- 47.28421
- ],
- [
- 8.42714,
- 47.12676
- ],
- [
- 8.3293,
- 47.12753
- ],
- [
- 8.32937,
- 47.13007
- ],
- [
- 8.32833,
- 47.13007
- ],
- [
- 8.3285,
- 47.14529
- ],
- [
- 8.3294,
- 47.19502
- ],
- [
- 8.2964,
- 47.19526
- ],
- [
- 8.29714,
- 47.24022
- ],
- [
- 8.2641,
- 47.24046
- ],
- [
- 8.26446,
- 47.26297
- ],
- [
- 8.23141,
- 47.26316
- ],
- [
- 8.23075,
- 47.21822
- ],
- [
- 8.09886,
- 47.21912
- ],
- [
- 8.09874,
- 47.24135
- ],
- [
- 8.066,
- 47.24176
- ],
- [
- 8.06552,
- 47.2192
- ],
- [
- 7.99993,
- 47.21952
- ],
- [
- 8.00003,
- 47.26433
- ],
- [
- 7.96735,
- 47.26462
- ],
- [
- 7.96675,
- 47.21961
- ],
- [
- 7.80153,
- 47.22029
- ],
- [
- 7.80244,
- 47.28791
- ],
- [
- 7.83518,
- 47.28772
- ],
- [
- 7.83543,
- 47.31017
- ],
- [
- 7.86837,
- 47.31017
- ],
- [
- 7.86885,
- 47.35542
- ],
- [
- 8.00097,
- 47.3543
- ],
- [
- 8.00156,
- 47.39928
- ],
- [
- 7.9353,
- 47.39976
- ],
- [
- 7.93607,
- 47.46716
- ],
- [
- 7.90278,
- 47.46729
- ],
- [
- 7.90303,
- 47.48981
- ],
- [
- 7.86987,
- 47.48998
- ],
- [
- 7.86993,
- 47.5125
- ],
- [
- 7.83689,
- 47.51258
- ],
- [
- 7.83665,
- 47.4901
- ],
- [
- 7.77027,
- 47.49026
- ],
- [
- 7.77045,
- 47.51274
- ],
- [
- 7.70452,
- 47.51307
- ],
- [
- 7.70438,
- 47.55794
- ]
- ]
- ],
- "terms_text": "AGIS OF2016",
- "best": true
- },
- {
- "id": "Basel-Landschaft-2015",
- "name": "Kanton Basel-Landschaft 10cm (2015)",
- "type": "tms",
- "template": "https://mapproxy.osm.ch/tiles/KTBASELLANDSCHAFT2015/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
- "endDate": "2015-01-01T00:00:00.000Z",
- "startDate": "2015-01-01T00:00:00.000Z",
- "scaleExtent": [
- 18,
- 21
- ],
- "polygon": [
- [
- [
- 7.37028,
- 47.41368
- ],
- [
- 7.35758,
- 47.41508
- ],
- [
- 7.35792,
- 47.41827
- ],
- [
- 7.35354,
- 47.41961
- ],
- [
- 7.34488,
- 47.42402
- ],
- [
- 7.33973,
- 47.42971
- ],
- [
- 7.33269,
- 47.43024
- ],
- [
- 7.32685,
- 47.43192
- ],
- [
- 7.32528,
- 47.43489
- ],
- [
- 7.3305,
- 47.44176
- ],
- [
- 7.33899,
- 47.44109
- ],
- [
- 7.34496,
- 47.43608
- ],
- [
- 7.35266,
- 47.43436
- ],
- [
- 7.3812,
- 47.43208
- ],
- [
- 7.37599,
- 47.41431
- ],
- [
- 7.37815,
- 47.414
- ],
- [
- 7.38204,
- 47.41331
- ],
- [
- 7.38839,
- 47.41398
- ],
- [
- 7.41371,
- 47.41093
- ],
- [
- 7.42074,
- 47.4111
- ],
- [
- 7.42748,
- 47.41448
- ],
- [
- 7.43811,
- 47.41274
- ],
- [
- 7.4484,
- 47.41507
- ],
- [
- 7.45558,
- 47.42792
- ],
- [
- 7.45062,
- 47.43534
- ],
- [
- 7.43784,
- 47.44632
- ],
- [
- 7.42542,
- 47.44328
- ],
- [
- 7.4209,
- 47.44594
- ],
- [
- 7.42242,
- 47.45072
- ],
- [
- 7.4288,
- 47.45388
- ],
- [
- 7.43003,
- 47.45949
- ],
- [
- 7.44577,
- 47.46197
- ],
- [
- 7.44717,
- 47.45696
- ],
- [
- 7.45651,
- 47.44926
- ],
- [
- 7.49236,
- 47.45897
- ],
- [
- 7.53068,
- 47.46119
- ],
- [
- 7.52745,
- 47.47391
- ],
- [
- 7.53633,
- 47.48383
- ],
- [
- 7.53623,
- 47.49105
- ],
- [
- 7.5326,
- 47.49097
- ],
- [
- 7.53179,
- 47.4974
- ],
- [
- 7.52004,
- 47.49678
- ],
- [
- 7.51223,
- 47.49892
- ],
- [
- 7.50935,
- 47.50888
- ],
- [
- 7.49908,
- 47.51628
- ],
- [
- 7.49787,
- 47.52125
- ],
- [
- 7.50228,
- 47.51491
- ],
- [
- 7.51746,
- 47.51728
- ],
- [
- 7.5222,
- 47.51409
- ],
- [
- 7.53096,
- 47.52905
- ],
- [
- 7.51935,
- 47.53472
- ],
- [
- 7.51075,
- 47.52899
- ],
- [
- 7.5023,
- 47.5284
- ],
- [
- 7.49804,
- 47.53615
- ],
- [
- 7.50545,
- 47.54438
- ],
- [
- 7.51676,
- 47.54541
- ],
- [
- 7.52732,
- 47.55278
- ],
- [
- 7.55466,
- 47.56437
- ],
- [
- 7.56458,
- 47.55704
- ],
- [
- 7.56124,
- 47.55172
- ],
- [
- 7.55875,
- 47.55235
- ],
- [
- 7.55588,
- 47.54434
- ],
- [
- 7.56479,
- 47.54569
- ],
- [
- 7.58726,
- 47.5419
- ],
- [
- 7.58269,
- 47.53247
- ],
- [
- 7.58948,
- 47.52792
- ],
- [
- 7.59025,
- 47.51979
- ],
- [
- 7.59478,
- 47.51929
- ],
- [
- 7.61378,
- 47.53925
- ],
- [
- 7.6223,
- 47.53977
- ],
- [
- 7.62285,
- 47.55004
- ],
- [
- 7.61774,
- 47.55437
- ],
- [
- 7.61762,
- 47.55865
- ],
- [
- 7.63273,
- 47.56149
- ],
- [
- 7.63997,
- 47.55816
- ],
- [
- 7.649,
- 47.5483
- ],
- [
- 7.66131,
- 47.54483
- ],
- [
- 7.66586,
- 47.53746
- ],
- [
- 7.67467,
- 47.53375
- ],
- [
- 7.69494,
- 47.5325
- ],
- [
- 7.71347,
- 47.53978
- ],
- [
- 7.71596,
- 47.53582
- ],
- [
- 7.72362,
- 47.53675
- ],
- [
- 7.72716,
- 47.53293
- ],
- [
- 7.73322,
- 47.53275
- ],
- [
- 7.73797,
- 47.52732
- ],
- [
- 7.74902,
- 47.52498
- ],
- [
- 7.75786,
- 47.52605
- ],
- [
- 7.78763,
- 47.52012
- ],
- [
- 7.79014,
- 47.51864
- ],
- [
- 7.78887,
- 47.50683
- ],
- [
- 7.7928,
- 47.50068
- ],
- [
- 7.78663,
- 47.49312
- ],
- [
- 7.79889,
- 47.49565
- ],
- [
- 7.79816,
- 47.4994
- ],
- [
- 7.7994,
- 47.49748
- ],
- [
- 7.80742,
- 47.49714
- ],
- [
- 7.81471,
- 47.5048
- ],
- [
- 7.83198,
- 47.51474
- ],
- [
- 7.83321,
- 47.53382
- ],
- [
- 7.84653,
- 47.53266
- ],
- [
- 7.85233,
- 47.53524
- ],
- [
- 7.86257,
- 47.52692
- ],
- [
- 7.86396,
- 47.51931
- ],
- [
- 7.87666,
- 47.52269
- ],
- [
- 7.87567,
- 47.51319
- ],
- [
- 7.89399,
- 47.50606
- ],
- [
- 7.90477,
- 47.49218
- ],
- [
- 7.90482,
- 47.48491
- ],
- [
- 7.93329,
- 47.48141
- ],
- [
- 7.94702,
- 47.48489
- ],
- [
- 7.94003,
- 47.46202
- ],
- [
- 7.94885,
- 47.46378
- ],
- [
- 7.95761,
- 47.45881
- ],
- [
- 7.95785,
- 47.45128
- ],
- [
- 7.94678,
- 47.44319
- ],
- [
- 7.95003,
- 47.43172
- ],
- [
- 7.96183,
- 47.42183
- ],
- [
- 7.95657,
- 47.41968
- ],
- [
- 7.95504,
- 47.41561
- ],
- [
- 7.94839,
- 47.41627
- ],
- [
- 7.93493,
- 47.41177
- ],
- [
- 7.93672,
- 47.40806
- ],
- [
- 7.93266,
- 47.40527
- ],
- [
- 7.90974,
- 47.39852
- ],
- [
- 7.89022,
- 47.40714
- ],
- [
- 7.88333,
- 47.4061
- ],
- [
- 7.88344,
- 47.4012
- ],
- [
- 7.8777,
- 47.40126
- ],
- [
- 7.86914,
- 47.39551
- ],
- [
- 7.87943,
- 47.38799
- ],
- [
- 7.87881,
- 47.38351
- ],
- [
- 7.86265,
- 47.38198
- ],
- [
- 7.84012,
- 47.37476
- ],
- [
- 7.83055,
- 47.36512
- ],
- [
- 7.80217,
- 47.3611
- ],
- [
- 7.79637,
- 47.35347
- ],
- [
- 7.79356,
- 47.33905
- ],
- [
- 7.78529,
- 47.33788
- ],
- [
- 7.76896,
- 47.33891
- ],
- [
- 7.76642,
- 47.34273
- ],
- [
- 7.75152,
- 47.34433
- ],
- [
- 7.73415,
- 47.35776
- ],
- [
- 7.72791,
- 47.36886
- ],
- [
- 7.70195,
- 47.37245
- ],
- [
- 7.6442,
- 47.36721
- ],
- [
- 7.64176,
- 47.38047
- ],
- [
- 7.63558,
- 47.38059
- ],
- [
- 7.63332,
- 47.38291
- ],
- [
- 7.63331,
- 47.38534
- ],
- [
- 7.63725,
- 47.38607
- ],
- [
- 7.63272,
- 47.41003
- ],
- [
- 7.66405,
- 47.41002
- ],
- [
- 7.6798,
- 47.41751
- ],
- [
- 7.68658,
- 47.43366
- ],
- [
- 7.68297,
- 47.43872
- ],
- [
- 7.68485,
- 47.44784
- ],
- [
- 7.69227,
- 47.45421
- ],
- [
- 7.69883,
- 47.45586
- ],
- [
- 7.69993,
- 47.46191
- ],
- [
- 7.70988,
- 47.46938
- ],
- [
- 7.69976,
- 47.48063
- ],
- [
- 7.66833,
- 47.48635
- ],
- [
- 7.66612,
- 47.49687
- ],
- [
- 7.65217,
- 47.49581
- ],
- [
- 7.64865,
- 47.49183
- ],
- [
- 7.65539,
- 47.49021
- ],
- [
- 7.65051,
- 47.48826
- ],
- [
- 7.65593,
- 47.48739
- ],
- [
- 7.64442,
- 47.48564
- ],
- [
- 7.64097,
- 47.48273
- ],
- [
- 7.6073,
- 47.4894
- ],
- [
- 7.60885,
- 47.48353
- ],
- [
- 7.60563,
- 47.47936
- ],
- [
- 7.60815,
- 47.47521
- ],
- [
- 7.60449,
- 47.47045
- ],
- [
- 7.61887,
- 47.46745
- ],
- [
- 7.62607,
- 47.46291
- ],
- [
- 7.62217,
- 47.46195
- ],
- [
- 7.61646,
- 47.44523
- ],
- [
- 7.6158,
- 47.43275
- ],
- [
- 7.59207,
- 47.43271
- ],
- [
- 7.58121,
- 47.42878
- ],
- [
- 7.57842,
- 47.43491
- ],
- [
- 7.5689,
- 47.4369
- ],
- [
- 7.5683,
- 47.42233
- ],
- [
- 7.58074,
- 47.4147
- ],
- [
- 7.52524,
- 47.41163
- ],
- [
- 7.53117,
- 47.40353
- ],
- [
- 7.51862,
- 47.38822
- ],
- [
- 7.5113,
- 47.38974
- ],
- [
- 7.50226,
- 47.38481
- ],
- [
- 7.49233,
- 47.38523
- ],
- [
- 7.47841,
- 47.39056
- ],
- [
- 7.47747,
- 47.40128
- ],
- [
- 7.46448,
- 47.40251
- ],
- [
- 7.46092,
- 47.40068
- ],
- [
- 7.45002,
- 47.40393
- ],
- [
- 7.44951,
- 47.39976
- ],
- [
- 7.4434,
- 47.40231
- ],
- [
- 7.44131,
- 47.40018
- ],
- [
- 7.44357,
- 47.3889
- ],
- [
- 7.43732,
- 47.38089
- ],
- [
- 7.41169,
- 47.38057
- ],
- [
- 7.41628,
- 47.38479
- ],
- [
- 7.41449,
- 47.3943
- ],
- [
- 7.39894,
- 47.39684
- ],
- [
- 7.39592,
- 47.40338
- ],
- [
- 7.38869,
- 47.40302
- ],
- [
- 7.38405,
- 47.41236
- ],
- [
- 7.37968,
- 47.41281
- ],
- [
- 7.37584,
- 47.41401
- ],
- [
- 7.37028,
- 47.41368
- ]
- ]
- ],
- "terms_url": "https://www.geo.bl.ch/fileadmin/user_upload/Geodaten/Nutzungsbedingungen_GBD_BL_V3p2.pdf",
- "terms_text": "Geodaten des Kantons Basel-Landschaft 2015",
- "best": true
- },
- {
- "id": "KTBASELSTADT2015",
- "name": "Kanton Basel-Stadt 2015",
- "type": "tms",
- "template": "https://mapproxy.osm.ch/tiles/KTBASELSTADT2015/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
- "endDate": "2015-01-01T00:00:00.000Z",
- "startDate": "2015-01-01T00:00:00.000Z",
- "scaleExtent": [
- 8,
- 21
- ],
- "polygon": [
- [
- [
- 7.492,
- 47.4817
- ],
- [
- 7.492,
- 47.6342
- ],
- [
- 7.784,
- 47.6342
- ],
- [
- 7.784,
- 47.4817
- ],
- [
- 7.492,
- 47.4817
- ]
- ]
- ],
- "terms_text": "Kanton Basel-Stadt OF 2015"
- },
- {
- "id": "KTBASELSTADT2017",
- "name": "Kanton Basel-Stadt 2017",
- "type": "tms",
- "template": "https://mapproxy.osm.ch/tiles/KTBASELSTADT2017/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
- "endDate": "2017-01-01T00:00:00.000Z",
- "startDate": "2017-01-01T00:00:00.000Z",
- "scaleExtent": [
- 8,
- 21
- ],
- "polygon": [
- [
- [
- 7.67138,
- 47.59522
- ],
- [
- 7.67996,
- 47.60078
- ],
- [
- 7.68451,
- 47.60182
- ],
- [
- 7.69438,
- 47.60171
- ],
- [
- 7.69395,
- 47.59667
- ],
- [
- 7.68708,
- 47.59355
- ],
- [
- 7.67884,
- 47.58712
- ],
- [
- 7.68571,
- 47.58538
- ],
- [
- 7.68906,
- 47.57612
- ],
- [
- 7.69412,
- 47.5734
- ],
- [
- 7.6924,
- 47.56691
- ],
- [
- 7.6847,
- 47.5617
- ],
- [
- 7.66425,
- 47.56164
- ],
- [
- 7.64872,
- 47.55689
- ],
- [
- 7.63035,
- 47.55869
- ],
- [
- 7.62357,
- 47.55666
- ],
- [
- 7.62786,
- 47.55145
- ],
- [
- 7.62738,
- 47.53658
- ],
- [
- 7.61833,
- 47.53662
- ],
- [
- 7.61335,
- 47.53262
- ],
- [
- 7.59962,
- 47.51911
- ],
- [
- 7.58503,
- 47.51917
- ],
- [
- 7.58409,
- 47.52636
- ],
- [
- 7.57713,
- 47.53163
- ],
- [
- 7.58125,
- 47.53986
- ],
- [
- 7.5719,
- 47.54148
- ],
- [
- 7.55387,
- 47.54148
- ],
- [
- 7.55379,
- 47.55122
- ],
- [
- 7.55653,
- 47.55828
- ],
- [
- 7.5537,
- 47.56031
- ],
- [
- 7.55379,
- 47.57473
- ],
- [
- 7.56434,
- 47.58122
- ],
- [
- 7.57936,
- 47.57988
- ],
- [
- 7.58331,
- 47.59019
- ],
- [
- 7.58563,
- 47.59233
- ],
- [
- 7.59207,
- 47.59239
- ],
- [
- 7.59851,
- 47.59071
- ],
- [
- 7.60915,
- 47.58643
- ],
- [
- 7.60923,
- 47.5811
- ],
- [
- 7.6191,
- 47.58046
- ],
- [
- 7.63687,
- 47.59314
- ],
- [
- 7.63782,
- 47.59557
- ],
- [
- 7.64168,
- 47.59887
- ],
- [
- 7.64528,
- 47.60026
- ],
- [
- 7.66494,
- 47.59618
- ],
- [
- 7.67138,
- 47.59522
- ]
- ]
- ],
- "terms_text": "Kanton Basel-Stadt OF 2017",
- "best": true
- },
- {
- "id": "Solothurn-sogis2014-tms",
- "name": "Kanton Solothurn (SOGIS)",
- "type": "tms",
- "template": "https://mapproxy.osm.ch/tiles/sogis2014/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
- "endDate": "2017-01-01T00:00:00.000Z",
- "startDate": "2015-01-01T00:00:00.000Z",
- "scaleExtent": [
- 15,
- 19
- ],
- "polygon": [
- [
- [
- 7.95595,
- 47.47162
- ],
- [
- 7.98239,
- 47.47155
- ],
- [
- 7.98239,
- 47.45353
- ],
- [
- 7.99553,
- 47.45353
- ],
- [
- 7.99521,
- 47.41747
- ],
- [
- 8.0218,
- 47.41743
- ],
- [
- 8.02155,
- 47.39935
- ],
- [
- 8.03456,
- 47.39926
- ],
- [
- 8.03468,
- 47.39028
- ],
- [
- 8.04788,
- 47.39022
- ],
- [
- 8.04769,
- 47.37224
- ],
- [
- 8.03456,
- 47.37232
- ],
- [
- 8.03437,
- 47.3544
- ],
- [
- 8.02117,
- 47.35427
- ],
- [
- 8.02072,
- 47.32739
- ],
- [
- 7.99445,
- 47.32747
- ],
- [
- 7.99426,
- 47.31857
- ],
- [
- 7.96773,
- 47.31866
- ],
- [
- 7.96767,
- 47.30966
- ],
- [
- 7.94122,
- 47.30978
- ],
- [
- 7.94133,
- 47.32778
- ],
- [
- 7.91486,
- 47.32786
- ],
- [
- 7.91467,
- 47.30988
- ],
- [
- 7.9016,
- 47.31005
- ],
- [
- 7.9014,
- 47.30097
- ],
- [
- 7.87501,
- 47.3011
- ],
- [
- 7.87501,
- 47.29223
- ],
- [
- 7.86165,
- 47.29212
- ],
- [
- 7.86154,
- 47.27409
- ],
- [
- 7.84832,
- 47.27416
- ],
- [
- 7.8483,
- 47.26523
- ],
- [
- 7.83502,
- 47.2652
- ],
- [
- 7.83502,
- 47.25624
- ],
- [
- 7.79535,
- 47.25636
- ],
- [
- 7.7953,
- 47.24741
- ],
- [
- 7.72924,
- 47.24756
- ],
- [
- 7.72929,
- 47.25652
- ],
- [
- 7.71623,
- 47.25667
- ],
- [
- 7.71618,
- 47.26559
- ],
- [
- 7.70304,
- 47.26559
- ],
- [
- 7.70304,
- 47.27461
- ],
- [
- 7.68975,
- 47.27467
- ],
- [
- 7.68989,
- 47.28368
- ],
- [
- 7.66341,
- 47.28371
- ],
- [
- 7.66332,
- 47.2747
- ],
- [
- 7.61055,
- 47.27476
- ],
- [
- 7.61041,
- 47.24787
- ],
- [
- 7.62352,
- 47.24777
- ],
- [
- 7.62356,
- 47.23879
- ],
- [
- 7.64986,
- 47.23876
- ],
- [
- 7.64999,
- 47.22977
- ],
- [
- 7.6499,
- 47.22083
- ],
- [
- 7.66308,
- 47.22073
- ],
- [
- 7.6631,
- 47.21178
- ],
- [
- 7.66297,
- 47.20273
- ],
- [
- 7.67617,
- 47.2027
- ],
- [
- 7.67623,
- 47.19372
- ],
- [
- 7.68938,
- 47.19369
- ],
- [
- 7.68924,
- 47.17572
- ],
- [
- 7.70243,
- 47.1756
- ],
- [
- 7.70234,
- 47.14869
- ],
- [
- 7.66267,
- 47.14881
- ],
- [
- 7.66281,
- 47.13978
- ],
- [
- 7.63633,
- 47.1399
- ],
- [
- 7.63647,
- 47.14869
- ],
- [
- 7.5968,
- 47.14893
- ],
- [
- 7.59684,
- 47.13996
- ],
- [
- 7.57041,
- 47.13999
- ],
- [
- 7.57042,
- 47.15792
- ],
- [
- 7.55736,
- 47.15795
- ],
- [
- 7.55732,
- 47.14888
- ],
- [
- 7.54421,
- 47.14895
- ],
- [
- 7.54417,
- 47.13991
- ],
- [
- 7.53098,
- 47.13991
- ],
- [
- 7.53095,
- 47.13097
- ],
- [
- 7.51767,
- 47.13097
- ],
- [
- 7.51765,
- 47.12196
- ],
- [
- 7.51769,
- 47.11292
- ],
- [
- 7.49131,
- 47.11301
- ],
- [
- 7.49135,
- 47.10403
- ],
- [
- 7.4782,
- 47.104
- ],
- [
- 7.47813,
- 47.07705
- ],
- [
- 7.46493,
- 47.07708
- ],
- [
- 7.46498,
- 47.06807
- ],
- [
- 7.42552,
- 47.06801
- ],
- [
- 7.42543,
- 47.08601
- ],
- [
- 7.37279,
- 47.08598
- ],
- [
- 7.37288,
- 47.10403
- ],
- [
- 7.3596,
- 47.10403
- ],
- [
- 7.35955,
- 47.131
- ],
- [
- 7.41228,
- 47.131
- ],
- [
- 7.41223,
- 47.14901
- ],
- [
- 7.42538,
- 47.14901
- ],
- [
- 7.42552,
- 47.15801
- ],
- [
- 7.3727,
- 47.15796
- ],
- [
- 7.3727,
- 47.18498
- ],
- [
- 7.34627,
- 47.18492
- ],
- [
- 7.34636,
- 47.20287
- ],
- [
- 7.33307,
- 47.2029
- ],
- [
- 7.33307,
- 47.22096
- ],
- [
- 7.34614,
- 47.22096
- ],
- [
- 7.34614,
- 47.22991
- ],
- [
- 7.37256,
- 47.22991
- ],
- [
- 7.3727,
- 47.2389
- ],
- [
- 7.399,
- 47.23896
- ],
- [
- 7.39913,
- 47.24792
- ],
- [
- 7.41228,
- 47.24792
- ],
- [
- 7.41228,
- 47.26592
- ],
- [
- 7.45186,
- 47.26589
- ],
- [
- 7.45195,
- 47.2749
- ],
- [
- 7.46505,
- 47.27493
- ],
- [
- 7.4651,
- 47.28385
- ],
- [
- 7.47829,
- 47.28385
- ],
- [
- 7.47834,
- 47.29293
- ],
- [
- 7.5046,
- 47.29288
- ],
- [
- 7.50473,
- 47.30183
- ],
- [
- 7.5312,
- 47.30181
- ],
- [
- 7.53129,
- 47.31979
- ],
- [
- 7.54448,
- 47.31985
- ],
- [
- 7.54453,
- 47.3288
- ],
- [
- 7.55768,
- 47.32883
- ],
- [
- 7.55768,
- 47.33786
- ],
- [
- 7.53125,
- 47.33786
- ],
- [
- 7.53133,
- 47.35586
- ],
- [
- 7.51801,
- 47.35583
- ],
- [
- 7.5181,
- 47.36483
- ],
- [
- 7.3988,
- 47.36484
- ],
- [
- 7.39889,
- 47.39182
- ],
- [
- 7.38564,
- 47.39181
- ],
- [
- 7.38564,
- 47.4008
- ],
- [
- 7.37234,
- 47.4008
- ],
- [
- 7.37234,
- 47.40978
- ],
- [
- 7.34584,
- 47.40978
- ],
- [
- 7.34584,
- 47.41878
- ],
- [
- 7.31925,
- 47.41878
- ],
- [
- 7.31925,
- 47.44578
- ],
- [
- 7.4121,
- 47.44578
- ],
- [
- 7.4121,
- 47.49078
- ],
- [
- 7.42535,
- 47.49078
- ],
- [
- 7.42535,
- 47.49981
- ],
- [
- 7.43856,
- 47.49981
- ],
- [
- 7.43856,
- 47.50876
- ],
- [
- 7.49177,
- 47.50876
- ],
- [
- 7.49178,
- 47.63468
- ],
- [
- 7.7845,
- 47.63428
- ],
- [
- 7.78415,
- 47.57123
- ],
- [
- 7.81074,
- 47.57114
- ],
- [
- 7.81074,
- 47.56216
- ],
- [
- 7.82395,
- 47.56206
- ],
- [
- 7.82387,
- 47.54414
- ],
- [
- 7.86368,
- 47.54397
- ],
- [
- 7.86363,
- 47.53498
- ],
- [
- 7.87679,
- 47.53495
- ],
- [
- 7.87675,
- 47.52599
- ],
- [
- 7.8901,
- 47.52596
- ],
- [
- 7.89006,
- 47.51695
- ],
- [
- 7.90319,
- 47.51692
- ],
- [
- 7.9031,
- 47.49886
- ],
- [
- 7.91649,
- 47.49883
- ],
- [
- 7.91645,
- 47.48976
- ],
- [
- 7.95612,
- 47.48967
- ],
- [
- 7.95595,
- 47.47162
- ]
- ]
- ],
- "terms_text": "Orthofoto WMS Solothurn",
- "best": true,
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQBAMAAADt3eJSAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAIVBMVEX///+LKCbMAABycnL+/v7v7+9sbGz39/fz8/Pw8PD8/Pz60siYAAAAAWJLR0QAiAUdSAAAAAd0SU1FB+AIGAsXN84mS+sAAAA4SURBVAjXY2AUBAMBBkYlMCCXwcwABgZYGCwGIJo5AMQGAjYgLgYxLICY05iBwRisjsvY2IGBAQAGpQmjMKkg/wAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAxNi0wOC0yNFQxMToyMzo1NS0wNDowMLEFqzIAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMTYtMDgtMjRUMTE6MjM6NTUtMDQ6MDDAWBOOAAAAAElFTkSuQmCC"
- },
- {
- "id": "Solothurn-infrared-SOGIS",
- "name": "Kanton Solothurn Infrarot (SOGIS)",
- "type": "wms",
- "template": "https://geoweb.so.ch/wms/sogis_orthofoto.wms?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Orthofoto_CIR_SO&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:4326",
- "endDate": "2017-01-01T00:00:00.000Z",
- "startDate": "2015-01-01T00:00:00.000Z",
- "scaleExtent": [
- 15,
- 19
- ],
- "polygon": [
- [
- [
- 7.57042,
- 47.15792
- ],
- [
- 7.55736,
- 47.15795
- ],
- [
- 7.55732,
- 47.14888
- ],
- [
- 7.54421,
- 47.14895
- ],
- [
- 7.54417,
- 47.13991
- ],
- [
- 7.53098,
- 47.13991
- ],
- [
- 7.53093,
- 47.12196
- ],
- [
- 7.51765,
- 47.12196
- ],
- [
- 7.51769,
- 47.11292
- ],
- [
- 7.49131,
- 47.11301
- ],
- [
- 7.49135,
- 47.10403
- ],
- [
- 7.4782,
- 47.104
- ],
- [
- 7.47816,
- 47.09496
- ],
- [
- 7.49144,
- 47.09499
- ],
- [
- 7.4914,
- 47.07702
- ],
- [
- 7.47816,
- 47.07705
- ],
- [
- 7.4782,
- 47.06804
- ],
- [
- 7.42552,
- 47.06801
- ],
- [
- 7.42543,
- 47.08601
- ],
- [
- 7.37279,
- 47.08598
- ],
- [
- 7.37288,
- 47.10403
- ],
- [
- 7.3596,
- 47.10403
- ],
- [
- 7.35955,
- 47.131
- ],
- [
- 7.41228,
- 47.131
- ],
- [
- 7.41223,
- 47.14901
- ],
- [
- 7.42538,
- 47.14901
- ],
- [
- 7.42552,
- 47.15801
- ],
- [
- 7.39913,
- 47.15804
- ],
- [
- 7.39913,
- 47.14901
- ],
- [
- 7.3727,
- 47.14898
- ],
- [
- 7.3727,
- 47.18498
- ],
- [
- 7.34627,
- 47.18492
- ],
- [
- 7.34636,
- 47.19391
- ],
- [
- 7.33307,
- 47.19394
- ],
- [
- 7.33307,
- 47.22991
- ],
- [
- 7.37256,
- 47.22991
- ],
- [
- 7.3727,
- 47.2389
- ],
- [
- 7.399,
- 47.23896
- ],
- [
- 7.39913,
- 47.24792
- ],
- [
- 7.41228,
- 47.24792
- ],
- [
- 7.41228,
- 47.26592
- ],
- [
- 7.45186,
- 47.26589
- ],
- [
- 7.45195,
- 47.2749
- ],
- [
- 7.46505,
- 47.27493
- ],
- [
- 7.4651,
- 47.28385
- ],
- [
- 7.47829,
- 47.28385
- ],
- [
- 7.47834,
- 47.29293
- ],
- [
- 7.49149,
- 47.29289
- ],
- [
- 7.49162,
- 47.30184
- ],
- [
- 7.5312,
- 47.30181
- ],
- [
- 7.53129,
- 47.31979
- ],
- [
- 7.54448,
- 47.31985
- ],
- [
- 7.54453,
- 47.3288
- ],
- [
- 7.55768,
- 47.32883
- ],
- [
- 7.55768,
- 47.33786
- ],
- [
- 7.53125,
- 47.33786
- ],
- [
- 7.53133,
- 47.35586
- ],
- [
- 7.51801,
- 47.35583
- ],
- [
- 7.5181,
- 47.36483
- ],
- [
- 7.43862,
- 47.36492
- ],
- [
- 7.43867,
- 47.37389
- ],
- [
- 7.42538,
- 47.37395
- ],
- [
- 7.42543,
- 47.40081
- ],
- [
- 7.38558,
- 47.4009
- ],
- [
- 7.38567,
- 47.4098
- ],
- [
- 7.35915,
- 47.4098
- ],
- [
- 7.35915,
- 47.41878
- ],
- [
- 7.37239,
- 47.41884
- ],
- [
- 7.37247,
- 47.43682
- ],
- [
- 7.38571,
- 47.43682
- ],
- [
- 7.38571,
- 47.44104
- ],
- [
- 7.39563,
- 47.44016
- ],
- [
- 7.3963,
- 47.44258
- ],
- [
- 7.40761,
- 47.4411
- ],
- [
- 7.40793,
- 47.44225
- ],
- [
- 7.40313,
- 47.44246
- ],
- [
- 7.39738,
- 47.44331
- ],
- [
- 7.39832,
- 47.44583
- ],
- [
- 7.41214,
- 47.44583
- ],
- [
- 7.41228,
- 47.45478
- ],
- [
- 7.43867,
- 47.45488
- ],
- [
- 7.4388,
- 47.47053
- ],
- [
- 7.45007,
- 47.46941
- ],
- [
- 7.45007,
- 47.47223
- ],
- [
- 7.44647,
- 47.47223
- ],
- [
- 7.44647,
- 47.47381
- ],
- [
- 7.44293,
- 47.4739
- ],
- [
- 7.44288,
- 47.47553
- ],
- [
- 7.43921,
- 47.4756
- ],
- [
- 7.43921,
- 47.4772
- ],
- [
- 7.43557,
- 47.47729
- ],
- [
- 7.43548,
- 47.47899
- ],
- [
- 7.4174,
- 47.47896
- ],
- [
- 7.41744,
- 47.48573
- ],
- [
- 7.42099,
- 47.48573
- ],
- [
- 7.42108,
- 47.49082
- ],
- [
- 7.42763,
- 47.49073
- ],
- [
- 7.42852,
- 47.49349
- ],
- [
- 7.43099,
- 47.49643
- ],
- [
- 7.43485,
- 47.49889
- ],
- [
- 7.4419,
- 47.49552
- ],
- [
- 7.44665,
- 47.49455
- ],
- [
- 7.45011,
- 47.49176
- ],
- [
- 7.45087,
- 47.4907
- ],
- [
- 7.46451,
- 47.49073
- ],
- [
- 7.46456,
- 47.48903
- ],
- [
- 7.46819,
- 47.489
- ],
- [
- 7.46819,
- 47.48566
- ],
- [
- 7.47187,
- 47.48573
- ],
- [
- 7.47192,
- 47.48233
- ],
- [
- 7.48269,
- 47.48239
- ],
- [
- 7.48264,
- 47.48388
- ],
- [
- 7.48623,
- 47.48397
- ],
- [
- 7.48637,
- 47.48566
- ],
- [
- 7.48991,
- 47.48566
- ],
- [
- 7.49,
- 47.4907
- ],
- [
- 7.4997,
- 47.49073
- ],
- [
- 7.49965,
- 47.4914
- ],
- [
- 7.49175,
- 47.49194
- ],
- [
- 7.49175,
- 47.49513
- ],
- [
- 7.49822,
- 47.49479
- ],
- [
- 7.49889,
- 47.49585
- ],
- [
- 7.49566,
- 47.49628
- ],
- [
- 7.49171,
- 47.49625
- ],
- [
- 7.4918,
- 47.49973
- ],
- [
- 7.50504,
- 47.4997
- ],
- [
- 7.50504,
- 47.50874
- ],
- [
- 7.5448,
- 47.50871
- ],
- [
- 7.54474,
- 47.45482
- ],
- [
- 7.49169,
- 47.45469
- ],
- [
- 7.49175,
- 47.44581
- ],
- [
- 7.46529,
- 47.44577
- ],
- [
- 7.46522,
- 47.40983
- ],
- [
- 7.49156,
- 47.40979
- ],
- [
- 7.49175,
- 47.39192
- ],
- [
- 7.50489,
- 47.39183
- ],
- [
- 7.50489,
- 47.40068
- ],
- [
- 7.51821,
- 47.40077
- ],
- [
- 7.51834,
- 47.41876
- ],
- [
- 7.55794,
- 47.41872
- ],
- [
- 7.55813,
- 47.44581
- ],
- [
- 7.58453,
- 47.44572
- ],
- [
- 7.58441,
- 47.43667
- ],
- [
- 7.61094,
- 47.43662
- ],
- [
- 7.611,
- 47.4637
- ],
- [
- 7.59767,
- 47.4637
- ],
- [
- 7.59793,
- 47.49964
- ],
- [
- 7.62433,
- 47.49969
- ],
- [
- 7.62445,
- 47.4906
- ],
- [
- 7.63778,
- 47.49055
- ],
- [
- 7.63784,
- 47.4996
- ],
- [
- 7.67757,
- 47.49947
- ],
- [
- 7.67745,
- 47.49047
- ],
- [
- 7.70385,
- 47.49043
- ],
- [
- 7.70391,
- 47.48146
- ],
- [
- 7.71711,
- 47.48129
- ],
- [
- 7.71711,
- 47.45452
- ],
- [
- 7.70397,
- 47.45452
- ],
- [
- 7.70385,
- 47.44559
- ],
- [
- 7.69046,
- 47.44551
- ],
- [
- 7.69033,
- 47.40957
- ],
- [
- 7.67713,
- 47.40949
- ],
- [
- 7.67713,
- 47.40068
- ],
- [
- 7.65066,
- 47.40068
- ],
- [
- 7.65047,
- 47.37365
- ],
- [
- 7.67706,
- 47.37357
- ],
- [
- 7.67706,
- 47.38251
- ],
- [
- 7.71667,
- 47.38251
- ],
- [
- 7.71679,
- 47.37344
- ],
- [
- 7.74307,
- 47.3734
- ],
- [
- 7.74307,
- 47.35538
- ],
- [
- 7.7562,
- 47.35534
- ],
- [
- 7.75633,
- 47.3464
- ],
- [
- 7.78261,
- 47.34627
- ],
- [
- 7.78292,
- 47.36433
- ],
- [
- 7.79612,
- 47.36428
- ],
- [
- 7.79619,
- 47.37327
- ],
- [
- 7.82265,
- 47.37314
- ],
- [
- 7.82271,
- 47.38229
- ],
- [
- 7.84912,
- 47.38212
- ],
- [
- 7.84924,
- 47.39106
- ],
- [
- 7.86251,
- 47.39097
- ],
- [
- 7.86263,
- 47.40906
- ],
- [
- 7.8759,
- 47.40897
- ],
- [
- 7.87602,
- 47.41803
- ],
- [
- 7.90242,
- 47.41795
- ],
- [
- 7.90242,
- 47.40897
- ],
- [
- 7.92889,
- 47.4088
- ],
- [
- 7.92914,
- 47.41782
- ],
- [
- 7.94215,
- 47.41769
- ],
- [
- 7.94266,
- 47.46276
- ],
- [
- 7.95592,
- 47.46259
- ],
- [
- 7.95612,
- 47.47164
- ],
- [
- 7.98239,
- 47.47155
- ],
- [
- 7.98239,
- 47.45353
- ],
- [
- 7.99553,
- 47.45353
- ],
- [
- 7.99521,
- 47.41747
- ],
- [
- 8.0218,
- 47.41743
- ],
- [
- 8.02155,
- 47.39935
- ],
- [
- 8.03456,
- 47.39926
- ],
- [
- 8.03468,
- 47.39028
- ],
- [
- 8.04788,
- 47.39015
- ],
- [
- 8.04769,
- 47.37224
- ],
- [
- 8.03456,
- 47.37232
- ],
- [
- 8.03437,
- 47.3544
- ],
- [
- 8.02117,
- 47.35427
- ],
- [
- 8.02072,
- 47.32739
- ],
- [
- 7.99445,
- 47.32747
- ],
- [
- 7.99426,
- 47.31857
- ],
- [
- 7.96773,
- 47.31866
- ],
- [
- 7.96767,
- 47.30966
- ],
- [
- 7.9412,
- 47.30992
- ],
- [
- 7.94133,
- 47.32778
- ],
- [
- 7.91486,
- 47.32786
- ],
- [
- 7.91467,
- 47.30988
- ],
- [
- 7.9016,
- 47.31005
- ],
- [
- 7.9014,
- 47.30097
- ],
- [
- 7.87501,
- 47.3011
- ],
- [
- 7.87501,
- 47.29223
- ],
- [
- 7.86165,
- 47.29212
- ],
- [
- 7.86154,
- 47.27409
- ],
- [
- 7.84843,
- 47.27415
- ],
- [
- 7.8483,
- 47.26523
- ],
- [
- 7.83502,
- 47.2652
- ],
- [
- 7.83502,
- 47.25624
- ],
- [
- 7.79535,
- 47.25636
- ],
- [
- 7.7953,
- 47.24741
- ],
- [
- 7.72924,
- 47.24756
- ],
- [
- 7.72929,
- 47.25652
- ],
- [
- 7.71623,
- 47.25667
- ],
- [
- 7.71618,
- 47.26559
- ],
- [
- 7.70304,
- 47.26559
- ],
- [
- 7.70304,
- 47.27461
- ],
- [
- 7.68975,
- 47.27467
- ],
- [
- 7.68989,
- 47.28368
- ],
- [
- 7.66341,
- 47.28371
- ],
- [
- 7.66332,
- 47.2747
- ],
- [
- 7.61055,
- 47.27476
- ],
- [
- 7.61041,
- 47.24787
- ],
- [
- 7.62352,
- 47.24765
- ],
- [
- 7.62356,
- 47.23879
- ],
- [
- 7.64986,
- 47.23876
- ],
- [
- 7.64999,
- 47.22977
- ],
- [
- 7.66305,
- 47.22971
- ],
- [
- 7.6631,
- 47.21178
- ],
- [
- 7.67621,
- 47.21169
- ],
- [
- 7.67623,
- 47.19372
- ],
- [
- 7.68938,
- 47.19369
- ],
- [
- 7.68924,
- 47.17572
- ],
- [
- 7.70243,
- 47.1756
- ],
- [
- 7.70248,
- 47.16663
- ],
- [
- 7.71567,
- 47.16663
- ],
- [
- 7.71558,
- 47.15769
- ],
- [
- 7.70239,
- 47.15766
- ],
- [
- 7.70234,
- 47.14869
- ],
- [
- 7.66267,
- 47.14881
- ],
- [
- 7.66281,
- 47.13978
- ],
- [
- 7.63633,
- 47.1399
- ],
- [
- 7.63647,
- 47.14869
- ],
- [
- 7.5968,
- 47.14893
- ],
- [
- 7.59684,
- 47.13996
- ],
- [
- 7.57041,
- 47.13999
- ],
- [
- 7.57042,
- 47.15792
- ]
- ]
- ],
- "terms_text": "Orthofoto WMS Solothurn",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQBAMAAADt3eJSAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAIVBMVEX///+LKCbMAABycnL+/v7v7+9sbGz39/fz8/Pw8PD8/Pz60siYAAAAAWJLR0QAiAUdSAAAAAd0SU1FB+AIGAsXN84mS+sAAAA4SURBVAjXY2AUBAMBBkYlMCCXwcwABgZYGCwGIJo5AMQGAjYgLgYxLICY05iBwRisjsvY2IGBAQAGpQmjMKkg/wAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAxNi0wOC0yNFQxMToyMzo1NS0wNDowMLEFqzIAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMTYtMDgtMjRUMTE6MjM6NTUtMDQ6MDDAWBOOAAAAAElFTkSuQmCC"
- },
- {
- "id": "KTTHURGAU2017",
- "name": "Kanton Thurgau OF 2017",
- "type": "tms",
- "template": "https://mapproxy.osm.ch/tiles/KTTHURGAU2017/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
- "scaleExtent": [
- 8,
- 21
- ],
- "polygon": [
- [
- [
- 8.63768,
- 47.70041
- ],
- [
- 8.78328,
- 47.6988
- ],
- [
- 8.78304,
- 47.68533
- ],
- [
- 8.87027,
- 47.68427
- ],
- [
- 8.86997,
- 47.6709
- ],
- [
- 8.89901,
- 47.67047
- ],
- [
- 8.89867,
- 47.65698
- ],
- [
- 8.9277,
- 47.65661
- ],
- [
- 8.92828,
- 47.67015
- ],
- [
- 8.95726,
- 47.66973
- ],
- [
- 8.95774,
- 47.68327
- ],
- [
- 9.19061,
- 47.67994
- ],
- [
- 9.19027,
- 47.66645
- ],
- [
- 9.21922,
- 47.66603
- ],
- [
- 9.21899,
- 47.65256
- ],
- [
- 9.24784,
- 47.6521
- ],
- [
- 9.24747,
- 47.63864
- ],
- [
- 9.3057,
- 47.63765
- ],
- [
- 9.30526,
- 47.6242
- ],
- [
- 9.33417,
- 47.62371
- ],
- [
- 9.33348,
- 47.59674
- ],
- [
- 9.39151,
- 47.59577
- ],
- [
- 9.39114,
- 47.58235
- ],
- [
- 9.42007,
- 47.58176
- ],
- [
- 9.4186,
- 47.54139
- ],
- [
- 9.44754,
- 47.54084
- ],
- [
- 9.44717,
- 47.5273
- ],
- [
- 9.47605,
- 47.52681
- ],
- [
- 9.47519,
- 47.49986
- ],
- [
- 9.50414,
- 47.49935
- ],
- [
- 9.5031,
- 47.47242
- ],
- [
- 9.41596,
- 47.47392
- ],
- [
- 9.41554,
- 47.46045
- ],
- [
- 9.3576,
- 47.46141
- ],
- [
- 9.35818,
- 47.47498
- ],
- [
- 9.32896,
- 47.47534
- ],
- [
- 9.32864,
- 47.46188
- ],
- [
- 9.18361,
- 47.4642
- ],
- [
- 9.18411,
- 47.47769
- ],
- [
- 9.15492,
- 47.4781
- ],
- [
- 9.15466,
- 47.46463
- ],
- [
- 9.06736,
- 47.46583
- ],
- [
- 9.06718,
- 47.45234
- ],
- [
- 9.09609,
- 47.45193
- ],
- [
- 9.09582,
- 47.43853
- ],
- [
- 9.06663,
- 47.43883
- ],
- [
- 9.06642,
- 47.42537
- ],
- [
- 9.00829,
- 47.4262
- ],
- [
- 9.00714,
- 47.38573
- ],
- [
- 8.97811,
- 47.38616
- ],
- [
- 8.9774,
- 47.35913
- ],
- [
- 8.9194,
- 47.35989
- ],
- [
- 8.92032,
- 47.38697
- ],
- [
- 8.89136,
- 47.38725
- ],
- [
- 8.89286,
- 47.44117
- ],
- [
- 8.86398,
- 47.44149
- ],
- [
- 8.86604,
- 47.52251
- ],
- [
- 8.80784,
- 47.52317
- ],
- [
- 8.80894,
- 47.56373
- ],
- [
- 8.77985,
- 47.56403
- ],
- [
- 8.78024,
- 47.57751
- ],
- [
- 8.72209,
- 47.57814
- ],
- [
- 8.72337,
- 47.63213
- ],
- [
- 8.6652,
- 47.63273
- ],
- [
- 8.6658,
- 47.6598
- ],
- [
- 8.63674,
- 47.66
- ],
- [
- 8.63768,
- 47.70041
- ]
- ]
- ],
- "terms_text": "Kanton Thurgau OF 2017",
- "best": true
- },
- {
- "id": "KTZUERICH2015",
- "name": "Kanton Zürich 2015 10cm",
- "type": "tms",
- "template": "https://mapproxy.osm.ch/tiles/KTZUERICH2015/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
- "endDate": "2015-01-01T00:00:00.000Z",
- "startDate": "2014-01-01T00:00:00.000Z",
- "scaleExtent": [
- 8,
- 21
- ],
- "polygon": [
- [
- [
- 8.71338,
- 47.21388
- ],
- [
- 8.7137,
- 47.22737
- ],
- [
- 8.8117,
- 47.22626
- ],
- [
- 8.80337,
- 47.23858
- ],
- [
- 8.80866,
- 47.2431
- ],
- [
- 8.82448,
- 47.24656
- ],
- [
- 8.82971,
- 47.24539
- ],
- [
- 8.83652,
- 47.24257
- ],
- [
- 8.84568,
- 47.24253
- ],
- [
- 8.84837,
- 47.24322
- ],
- [
- 8.85232,
- 47.24034
- ],
- [
- 8.86206,
- 47.23882
- ],
- [
- 8.86472,
- 47.23966
- ],
- [
- 8.86863,
- 47.23968
- ],
- [
- 8.87339,
- 47.24125
- ],
- [
- 8.87882,
- 47.24476
- ],
- [
- 8.88054,
- 47.24791
- ],
- [
- 8.89878,
- 47.24976
- ],
- [
- 8.90281,
- 47.25094
- ],
- [
- 8.91025,
- 47.25003
- ],
- [
- 8.92735,
- 47.25406
- ],
- [
- 8.93644,
- 47.25499
- ],
- [
- 8.94233,
- 47.25849
- ],
- [
- 8.94423,
- 47.26173
- ],
- [
- 8.94882,
- 47.26536
- ],
- [
- 8.95094,
- 47.2686
- ],
- [
- 8.95068,
- 47.27108
- ],
- [
- 8.953,
- 47.27285
- ],
- [
- 8.95411,
- 47.27505
- ],
- [
- 8.95504,
- 47.28251
- ],
- [
- 8.95171,
- 47.28527
- ],
- [
- 8.94664,
- 47.28647
- ],
- [
- 8.95258,
- 47.28844
- ],
- [
- 8.95454,
- 47.28982
- ],
- [
- 8.96141,
- 47.30098
- ],
- [
- 8.97552,
- 47.30245
- ],
- [
- 8.98006,
- 47.30416
- ],
- [
- 8.99153,
- 47.31893
- ],
- [
- 8.99069,
- 47.32183
- ],
- [
- 8.98637,
- 47.32542
- ],
- [
- 8.98548,
- 47.32778
- ],
- [
- 8.98364,
- 47.32931
- ],
- [
- 8.98592,
- 47.33815
- ],
- [
- 8.98464,
- 47.34061
- ],
- [
- 8.98079,
- 47.34237
- ],
- [
- 8.98088,
- 47.34835
- ],
- [
- 8.97785,
- 47.35437
- ],
- [
- 8.9759,
- 47.35606
- ],
- [
- 8.97002,
- 47.35843
- ],
- [
- 8.96572,
- 47.3589
- ],
- [
- 8.96238,
- 47.36252
- ],
- [
- 8.95665,
- 47.37432
- ],
- [
- 8.9521,
- 47.37836
- ],
- [
- 8.94778,
- 47.37971
- ],
- [
- 8.95023,
- 47.38346
- ],
- [
- 8.95018,
- 47.38596
- ],
- [
- 8.9488,
- 47.38836
- ],
- [
- 8.9397,
- 47.39403
- ],
- [
- 8.93637,
- 47.39496
- ],
- [
- 8.93251,
- 47.39871
- ],
- [
- 8.92801,
- 47.40148
- ],
- [
- 8.92278,
- 47.4038
- ],
- [
- 8.91388,
- 47.40569
- ],
- [
- 8.91924,
- 47.41213
- ],
- [
- 8.92049,
- 47.41915
- ],
- [
- 8.91829,
- 47.42323
- ],
- [
- 8.92094,
- 47.42544
- ],
- [
- 8.92107,
- 47.42828
- ],
- [
- 8.92571,
- 47.42695
- ],
- [
- 8.93437,
- 47.42796
- ],
- [
- 8.93877,
- 47.43173
- ],
- [
- 8.93974,
- 47.43411
- ],
- [
- 8.93889,
- 47.43725
- ],
- [
- 8.93511,
- 47.43973
- ],
- [
- 8.92349,
- 47.43953
- ],
- [
- 8.91973,
- 47.44081
- ],
- [
- 8.91322,
- 47.44119
- ],
- [
- 8.91162,
- 47.44347
- ],
- [
- 8.91527,
- 47.44628
- ],
- [
- 8.91499,
- 47.45004
- ],
- [
- 8.91196,
- 47.45378
- ],
- [
- 8.90517,
- 47.45791
- ],
- [
- 8.90183,
- 47.46435
- ],
- [
- 8.89735,
- 47.46898
- ],
- [
- 8.89581,
- 47.47219
- ],
- [
- 8.89135,
- 47.4738
- ],
- [
- 8.89143,
- 47.47821
- ],
- [
- 8.90142,
- 47.48133
- ],
- [
- 8.90428,
- 47.48449
- ],
- [
- 8.90314,
- 47.48928
- ],
- [
- 8.90001,
- 47.49187
- ],
- [
- 8.89967,
- 47.49885
- ],
- [
- 8.90357,
- 47.50404
- ],
- [
- 8.90413,
- 47.50745
- ],
- [
- 8.90322,
- 47.51948
- ],
- [
- 8.90497,
- 47.52447
- ],
- [
- 8.90365,
- 47.52691
- ],
- [
- 8.89982,
- 47.52965
- ],
- [
- 8.88423,
- 47.53392
- ],
- [
- 8.87883,
- 47.53277
- ],
- [
- 8.87061,
- 47.53477
- ],
- [
- 8.8602,
- 47.53488
- ],
- [
- 8.85674,
- 47.53594
- ],
- [
- 8.84782,
- 47.5358
- ],
- [
- 8.84614,
- 47.54087
- ],
- [
- 8.8403,
- 47.54654
- ],
- [
- 8.83728,
- 47.55278
- ],
- [
- 8.84275,
- 47.5537
- ],
- [
- 8.84648,
- 47.5562
- ],
- [
- 8.85269,
- 47.55645
- ],
- [
- 8.8562,
- 47.55792
- ],
- [
- 8.85775,
- 47.56141
- ],
- [
- 8.85728,
- 47.56489
- ],
- [
- 8.85511,
- 47.56721
- ],
- [
- 8.85079,
- 47.56818
- ],
- [
- 8.84763,
- 47.57023
- ],
- [
- 8.84538,
- 47.57061
- ],
- [
- 8.8448,
- 47.57309
- ],
- [
- 8.84211,
- 47.57513
- ],
- [
- 8.83326,
- 47.57769
- ],
- [
- 8.82962,
- 47.57778
- ],
- [
- 8.82661,
- 47.57662
- ],
- [
- 8.82137,
- 47.57756
- ],
- [
- 8.81432,
- 47.57598
- ],
- [
- 8.81234,
- 47.5778
- ],
- [
- 8.81222,
- 47.58473
- ],
- [
- 8.81067,
- 47.58639
- ],
- [
- 8.80812,
- 47.58738
- ],
- [
- 8.76818,
- 47.59674
- ],
- [
- 8.7543,
- 47.59729
- ],
- [
- 8.75529,
- 47.60108
- ],
- [
- 8.75416,
- 47.60273
- ],
- [
- 8.74883,
- 47.60588
- ],
- [
- 8.74829,
- 47.60874
- ],
- [
- 8.7507,
- 47.60981
- ],
- [
- 8.75255,
- 47.61292
- ],
- [
- 8.75575,
- 47.61217
- ],
- [
- 8.76102,
- 47.61335
- ],
- [
- 8.78169,
- 47.60634
- ],
- [
- 8.78165,
- 47.60345
- ],
- [
- 8.78467,
- 47.59993
- ],
- [
- 8.80168,
- 47.5966
- ],
- [
- 8.80512,
- 47.59686
- ],
- [
- 8.80895,
- 47.59938
- ],
- [
- 8.81074,
- 47.60981
- ],
- [
- 8.81866,
- 47.61372
- ],
- [
- 8.82001,
- 47.61526
- ],
- [
- 8.82089,
- 47.62058
- ],
- [
- 8.82015,
- 47.62415
- ],
- [
- 8.82415,
- 47.6256
- ],
- [
- 8.83079,
- 47.63206
- ],
- [
- 8.83448,
- 47.64099
- ],
- [
- 8.83182,
- 47.64945
- ],
- [
- 8.82695,
- 47.65206
- ],
- [
- 8.81168,
- 47.65599
- ],
- [
- 8.81112,
- 47.6621
- ],
- [
- 8.81192,
- 47.66454
- ],
- [
- 8.81041,
- 47.66752
- ],
- [
- 8.80881,
- 47.66857
- ],
- [
- 8.80293,
- 47.66978
- ],
- [
- 8.79299,
- 47.66919
- ],
- [
- 8.78685,
- 47.66978
- ],
- [
- 8.78453,
- 47.66899
- ],
- [
- 8.78216,
- 47.66659
- ],
- [
- 8.77921,
- 47.65695
- ],
- [
- 8.77763,
- 47.65563
- ],
- [
- 8.77398,
- 47.65435
- ],
- [
- 8.76623,
- 47.65438
- ],
- [
- 8.76108,
- 47.65257
- ],
- [
- 8.75852,
- 47.65033
- ],
- [
- 8.75464,
- 47.64883
- ],
- [
- 8.7534,
- 47.64733
- ],
- [
- 8.74839,
- 47.64613
- ],
- [
- 8.74329,
- 47.64749
- ],
- [
- 8.73882,
- 47.64651
- ],
- [
- 8.72376,
- 47.64753
- ],
- [
- 8.72063,
- 47.64664
- ],
- [
- 8.71492,
- 47.64885
- ],
- [
- 8.70826,
- 47.64764
- ],
- [
- 8.70481,
- 47.65039
- ],
- [
- 8.70053,
- 47.65199
- ],
- [
- 8.69427,
- 47.65307
- ],
- [
- 8.69242,
- 47.65581
- ],
- [
- 8.68632,
- 47.66094
- ],
- [
- 8.68485,
- 47.66413
- ],
- [
- 8.68574,
- 47.66799
- ],
- [
- 8.68326,
- 47.67315
- ],
- [
- 8.68056,
- 47.67561
- ],
- [
- 8.67521,
- 47.6776
- ],
- [
- 8.67642,
- 47.68177
- ],
- [
- 8.67561,
- 47.68661
- ],
- [
- 8.67427,
- 47.68799
- ],
- [
- 8.67227,
- 47.68891
- ],
- [
- 8.66273,
- 47.69029
- ],
- [
- 8.64644,
- 47.69847
- ],
- [
- 8.63968,
- 47.69877
- ],
- [
- 8.6355,
- 47.69743
- ],
- [
- 8.62162,
- 47.69554
- ],
- [
- 8.61818,
- 47.69279
- ],
- [
- 8.61744,
- 47.69087
- ],
- [
- 8.62007,
- 47.68134
- ],
- [
- 8.61478,
- 47.68308
- ],
- [
- 8.60917,
- 47.68188
- ],
- [
- 8.60199,
- 47.67451
- ],
- [
- 8.59954,
- 47.66923
- ],
- [
- 8.60275,
- 47.66132
- ],
- [
- 8.60979,
- 47.6568
- ],
- [
- 8.6141,
- 47.6564
- ],
- [
- 8.61574,
- 47.65557
- ],
- [
- 8.62231,
- 47.65104
- ],
- [
- 8.62227,
- 47.65024
- ],
- [
- 8.62048,
- 47.64758
- ],
- [
- 8.61939,
- 47.65043
- ],
- [
- 8.61521,
- 47.65452
- ],
- [
- 8.6093,
- 47.65677
- ],
- [
- 8.60324,
- 47.65654
- ],
- [
- 8.60069,
- 47.65541
- ],
- [
- 8.59788,
- 47.65276
- ],
- [
- 8.59645,
- 47.64876
- ],
- [
- 8.59092,
- 47.64623
- ],
- [
- 8.58937,
- 47.6444
- ],
- [
- 8.58874,
- 47.63936
- ],
- [
- 8.59116,
- 47.62755
- ],
- [
- 8.59325,
- 47.62233
- ],
- [
- 8.59838,
- 47.61587
- ],
- [
- 8.59854,
- 47.6145
- ],
- [
- 8.59114,
- 47.60917
- ],
- [
- 8.58937,
- 47.60682
- ],
- [
- 8.58796,
- 47.60319
- ],
- [
- 8.58788,
- 47.59909
- ],
- [
- 8.58203,
- 47.59793
- ],
- [
- 8.57398,
- 47.59329
- ],
- [
- 8.57146,
- 47.58988
- ],
- [
- 8.57035,
- 47.58633
- ],
- [
- 8.57203,
- 47.57985
- ],
- [
- 8.56771,
- 47.57799
- ],
- [
- 8.56506,
- 47.57524
- ],
- [
- 8.56117,
- 47.56407
- ],
- [
- 8.55707,
- 47.55947
- ],
- [
- 8.55616,
- 47.56336
- ],
- [
- 8.55206,
- 47.56904
- ],
- [
- 8.55334,
- 47.57146
- ],
- [
- 8.5526,
- 47.57599
- ],
- [
- 8.55007,
- 47.57806
- ],
- [
- 8.54666,
- 47.57923
- ],
- [
- 8.5435,
- 47.58228
- ],
- [
- 8.54319,
- 47.5851
- ],
- [
- 8.54888,
- 47.5879
- ],
- [
- 8.55175,
- 47.58777
- ],
- [
- 8.55764,
- 47.58963
- ],
- [
- 8.56114,
- 47.59151
- ],
- [
- 8.56265,
- 47.5946
- ],
- [
- 8.56668,
- 47.59565
- ],
- [
- 8.56902,
- 47.59748
- ],
- [
- 8.56953,
- 47.60049
- ],
- [
- 8.57237,
- 47.60386
- ],
- [
- 8.57308,
- 47.60641
- ],
- [
- 8.57562,
- 47.60676
- ],
- [
- 8.579,
- 47.60845
- ],
- [
- 8.58076,
- 47.61031
- ],
- [
- 8.58125,
- 47.61203
- ],
- [
- 8.58025,
- 47.61456
- ],
- [
- 8.57712,
- 47.61636
- ],
- [
- 8.57525,
- 47.61957
- ],
- [
- 8.57277,
- 47.6211
- ],
- [
- 8.56785,
- 47.62164
- ],
- [
- 8.56341,
- 47.62697
- ],
- [
- 8.56105,
- 47.62838
- ],
- [
- 8.54803,
- 47.62998
- ],
- [
- 8.54558,
- 47.63122
- ],
- [
- 8.54498,
- 47.63297
- ],
- [
- 8.54288,
- 47.63458
- ],
- [
- 8.53995,
- 47.63565
- ],
- [
- 8.52769,
- 47.63634
- ],
- [
- 8.52112,
- 47.63887
- ],
- [
- 8.51478,
- 47.6385
- ],
- [
- 8.50932,
- 47.63559
- ],
- [
- 8.50829,
- 47.62942
- ],
- [
- 8.50161,
- 47.62597
- ],
- [
- 8.5007,
- 47.62421
- ],
- [
- 8.50149,
- 47.62154
- ],
- [
- 8.49253,
- 47.61893
- ],
- [
- 8.48884,
- 47.61953
- ],
- [
- 8.47669,
- 47.61937
- ],
- [
- 8.47439,
- 47.61838
- ],
- [
- 8.47154,
- 47.61495
- ],
- [
- 8.47129,
- 47.61307
- ],
- [
- 8.46785,
- 47.61272
- ],
- [
- 8.46446,
- 47.61109
- ],
- [
- 8.46173,
- 47.60659
- ],
- [
- 8.45519,
- 47.60676
- ],
- [
- 8.45061,
- 47.60411
- ],
- [
- 8.4499,
- 47.60164
- ],
- [
- 8.4507,
- 47.59584
- ],
- [
- 8.45382,
- 47.59343
- ],
- [
- 8.45428,
- 47.5866
- ],
- [
- 8.4563,
- 47.5848
- ],
- [
- 8.46014,
- 47.58382
- ],
- [
- 8.46332,
- 47.58044
- ],
- [
- 8.46881,
- 47.5795
- ],
- [
- 8.46219,
- 47.57653
- ],
- [
- 8.45419,
- 47.57668
- ],
- [
- 8.43642,
- 47.57154
- ],
- [
- 8.43161,
- 47.57102
- ],
- [
- 8.42476,
- 47.57231
- ],
- [
- 8.41477,
- 47.56879
- ],
- [
- 8.41304,
- 47.56745
- ],
- [
- 8.41034,
- 47.56194
- ],
- [
- 8.41039,
- 47.55972
- ],
- [
- 8.40789,
- 47.55465
- ],
- [
- 8.40846,
- 47.55018
- ],
- [
- 8.39964,
- 47.54444
- ],
- [
- 8.39609,
- 47.543
- ],
- [
- 8.39469,
- 47.54094
- ],
- [
- 8.39495,
- 47.53674
- ],
- [
- 8.39136,
- 47.53568
- ],
- [
- 8.38835,
- 47.53305
- ],
- [
- 8.38525,
- 47.53316
- ],
- [
- 8.38113,
- 47.53219
- ],
- [
- 8.3774,
- 47.52969
- ],
- [
- 8.37518,
- 47.52679
- ],
- [
- 8.37279,
- 47.51651
- ],
- [
- 8.36579,
- 47.51663
- ],
- [
- 8.35666,
- 47.51348
- ],
- [
- 8.35439,
- 47.51104
- ],
- [
- 8.35103,
- 47.50314
- ],
- [
- 8.3524,
- 47.49957
- ],
- [
- 8.35163,
- 47.4973
- ],
- [
- 8.35274,
- 47.49484
- ],
- [
- 8.3545,
- 47.49355
- ],
- [
- 8.3557,
- 47.48979
- ],
- [
- 8.35533,
- 47.48525
- ],
- [
- 8.35698,
- 47.47931
- ],
- [
- 8.35891,
- 47.47743
- ],
- [
- 8.36187,
- 47.47645
- ],
- [
- 8.36722,
- 47.47654
- ],
- [
- 8.36702,
- 47.47487
- ],
- [
- 8.36073,
- 47.47222
- ],
- [
- 8.35903,
- 47.46604
- ],
- [
- 8.35996,
- 47.46381
- ],
- [
- 8.36326,
- 47.46204
- ],
- [
- 8.3673,
- 47.45653
- ],
- [
- 8.36975,
- 47.45504
- ],
- [
- 8.37393,
- 47.45472
- ],
- [
- 8.37754,
- 47.45201
- ],
- [
- 8.37583,
- 47.45068
- ],
- [
- 8.37441,
- 47.44614
- ],
- [
- 8.37623,
- 47.43818
- ],
- [
- 8.37168,
- 47.43675
- ],
- [
- 8.36855,
- 47.43406
- ],
- [
- 8.3681,
- 47.43158
- ],
- [
- 8.36904,
- 47.42863
- ],
- [
- 8.37222,
- 47.42603
- ],
- [
- 8.38283,
- 47.42346
- ],
- [
- 8.38371,
- 47.42251
- ],
- [
- 8.38073,
- 47.42207
- ],
- [
- 8.37555,
- 47.4178
- ],
- [
- 8.37598,
- 47.41378
- ],
- [
- 8.37441,
- 47.40906
- ],
- [
- 8.36067,
- 47.40664
- ],
- [
- 8.35789,
- 47.40542
- ],
- [
- 8.35629,
- 47.40377
- ],
- [
- 8.35661,
- 47.39961
- ],
- [
- 8.36195,
- 47.39516
- ],
- [
- 8.36577,
- 47.39429
- ],
- [
- 8.37601,
- 47.3947
- ],
- [
- 8.37743,
- 47.39218
- ],
- [
- 8.38036,
- 47.39048
- ],
- [
- 8.38761,
- 47.39035
- ],
- [
- 8.38832,
- 47.38012
- ],
- [
- 8.39034,
- 47.37527
- ],
- [
- 8.39355,
- 47.3719
- ],
- [
- 8.39387,
- 47.36945
- ],
- [
- 8.39574,
- 47.3671
- ],
- [
- 8.39902,
- 47.36608
- ],
- [
- 8.39836,
- 47.36408
- ],
- [
- 8.40012,
- 47.36094
- ],
- [
- 8.40103,
- 47.35433
- ],
- [
- 8.39728,
- 47.34677
- ],
- [
- 8.39779,
- 47.34475
- ],
- [
- 8.40186,
- 47.3391
- ],
- [
- 8.40931,
- 47.33409
- ],
- [
- 8.4061,
- 47.32975
- ],
- [
- 8.40578,
- 47.32667
- ],
- [
- 8.40689,
- 47.32447
- ],
- [
- 8.41295,
- 47.3205
- ],
- [
- 8.41611,
- 47.31996
- ],
- [
- 8.42948,
- 47.32227
- ],
- [
- 8.43556,
- 47.32083
- ],
- [
- 8.43437,
- 47.31954
- ],
- [
- 8.43155,
- 47.31851
- ],
- [
- 8.42609,
- 47.31375
- ],
- [
- 8.42276,
- 47.30706
- ],
- [
- 8.42311,
- 47.30368
- ],
- [
- 8.41745,
- 47.3015
- ],
- [
- 8.41372,
- 47.29824
- ],
- [
- 8.40012,
- 47.29564
- ],
- [
- 8.39768,
- 47.29392
- ],
- [
- 8.39518,
- 47.29516
- ],
- [
- 8.39108,
- 47.29552
- ],
- [
- 8.38602,
- 47.29437
- ],
- [
- 8.38272,
- 47.29225
- ],
- [
- 8.38198,
- 47.29034
- ],
- [
- 8.38255,
- 47.2881
- ],
- [
- 8.38508,
- 47.28565
- ],
- [
- 8.38977,
- 47.27507
- ],
- [
- 8.39563,
- 47.271
- ],
- [
- 8.39407,
- 47.26672
- ],
- [
- 8.39415,
- 47.26361
- ],
- [
- 8.39756,
- 47.25986
- ],
- [
- 8.39614,
- 47.25481
- ],
- [
- 8.39742,
- 47.25189
- ],
- [
- 8.40647,
- 47.24452
- ],
- [
- 8.40826,
- 47.24118
- ],
- [
- 8.40761,
- 47.23957
- ],
- [
- 8.4096,
- 47.23585
- ],
- [
- 8.41073,
- 47.22799
- ],
- [
- 8.41248,
- 47.22433
- ],
- [
- 8.41695,
- 47.22014
- ],
- [
- 8.41959,
- 47.21902
- ],
- [
- 8.42269,
- 47.21886
- ],
- [
- 8.42977,
- 47.22
- ],
- [
- 8.43936,
- 47.21937
- ],
- [
- 8.45,
- 47.21363
- ],
- [
- 8.4546,
- 47.21334
- ],
- [
- 8.45625,
- 47.21081
- ],
- [
- 8.4591,
- 47.20934
- ],
- [
- 8.46447,
- 47.20928
- ],
- [
- 8.46609,
- 47.20862
- ],
- [
- 8.46868,
- 47.20533
- ],
- [
- 8.47329,
- 47.20398
- ],
- [
- 8.47693,
- 47.20458
- ],
- [
- 8.48399,
- 47.20392
- ],
- [
- 8.49489,
- 47.20738
- ],
- [
- 8.504,
- 47.20768
- ],
- [
- 8.51538,
- 47.21152
- ],
- [
- 8.51753,
- 47.21271
- ],
- [
- 8.51906,
- 47.21495
- ],
- [
- 8.5306,
- 47.21306
- ],
- [
- 8.53307,
- 47.21325
- ],
- [
- 8.5415,
- 47.21778
- ],
- [
- 8.54456,
- 47.21707
- ],
- [
- 8.55407,
- 47.21726
- ],
- [
- 8.55858,
- 47.21517
- ],
- [
- 8.56984,
- 47.2139
- ],
- [
- 8.57491,
- 47.21255
- ],
- [
- 8.57749,
- 47.20771
- ],
- [
- 8.58044,
- 47.2064
- ],
- [
- 8.58408,
- 47.20603
- ],
- [
- 8.59012,
- 47.20714
- ],
- [
- 8.58965,
- 47.2046
- ],
- [
- 8.59074,
- 47.20195
- ],
- [
- 8.59358,
- 47.1986
- ],
- [
- 8.59581,
- 47.19753
- ],
- [
- 8.60168,
- 47.19722
- ],
- [
- 8.60653,
- 47.1992
- ],
- [
- 8.60725,
- 47.19885
- ],
- [
- 8.61097,
- 47.19387
- ],
- [
- 8.61128,
- 47.19059
- ],
- [
- 8.61391,
- 47.18838
- ],
- [
- 8.61522,
- 47.18515
- ],
- [
- 8.61938,
- 47.18045
- ],
- [
- 8.61976,
- 47.17918
- ],
- [
- 8.61721,
- 47.17359
- ],
- [
- 8.6196,
- 47.1698
- ],
- [
- 8.62292,
- 47.16821
- ],
- [
- 8.6339,
- 47.16715
- ],
- [
- 8.63561,
- 47.16578
- ],
- [
- 8.63965,
- 47.16459
- ],
- [
- 8.64287,
- 47.16443
- ],
- [
- 8.65216,
- 47.16598
- ],
- [
- 8.65425,
- 47.16552
- ],
- [
- 8.6549,
- 47.15967
- ],
- [
- 8.65649,
- 47.15783
- ],
- [
- 8.65882,
- 47.15658
- ],
- [
- 8.66853,
- 47.15492
- ],
- [
- 8.67847,
- 47.15558
- ],
- [
- 8.68241,
- 47.15759
- ],
- [
- 8.69361,
- 47.15898
- ],
- [
- 8.69804,
- 47.16134
- ],
- [
- 8.69886,
- 47.16303
- ],
- [
- 8.6977,
- 47.17033
- ],
- [
- 8.69599,
- 47.17232
- ],
- [
- 8.68919,
- 47.17566
- ],
- [
- 8.6872,
- 47.17959
- ],
- [
- 8.6879,
- 47.18229
- ],
- [
- 8.69186,
- 47.18485
- ],
- [
- 8.69824,
- 47.19205
- ],
- [
- 8.70323,
- 47.19326
- ],
- [
- 8.70852,
- 47.19602
- ],
- [
- 8.71423,
- 47.19693
- ],
- [
- 8.71692,
- 47.19893
- ],
- [
- 8.74212,
- 47.2071
- ],
- [
- 8.74218,
- 47.21355
- ],
- [
- 8.71338,
- 47.21388
- ]
- ]
- ],
- "terms_text": "Kanton Zürich Orthophotos 2014/2015",
- "best": true
- },
- {
- "id": "kartverket-dom-skygge",
- "name": "Kartverket DOM Digital Surface Model",
- "type": "wms",
- "template": "https://wms.geonorge.no/skwms1/wms.hoyde-dom_somlos_skyggerelieff?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=las_dom_skyggerelieff_somlos&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "scaleExtent": [
- 0,
- 24
- ],
- "polygon": [
- [
- [
- 11.53568,
- 58.86659
- ],
- [
- 11.66192,
- 58.89784
- ],
- [
- 11.7935,
- 59.09471
- ],
- [
- 11.84243,
- 59.239
- ],
- [
- 11.82877,
- 59.34509
- ],
- [
- 11.71279,
- 59.60387
- ],
- [
- 11.86205,
- 59.63771
- ],
- [
- 11.95608,
- 59.69196
- ],
- [
- 11.93389,
- 59.86895
- ],
- [
- 12.17881,
- 59.8786
- ],
- [
- 12.46948,
- 60.03124
- ],
- [
- 12.55438,
- 60.18972
- ],
- [
- 12.51237,
- 60.31659
- ],
- [
- 12.61793,
- 60.40065
- ],
- [
- 12.61883,
- 60.51512
- ],
- [
- 12.25387,
- 61.01106
- ],
- [
- 12.69195,
- 61.04632
- ],
- [
- 12.90756,
- 61.34802
- ],
- [
- 12.57493,
- 61.57623
- ],
- [
- 12.42465,
- 61.57175
- ],
- [
- 12.15233,
- 61.72694
- ],
- [
- 12.31212,
- 62.26512
- ],
- [
- 12.07078,
- 62.61109
- ],
- [
- 12.14907,
- 62.7455
- ],
- [
- 12.08883,
- 62.89668
- ],
- [
- 12.23464,
- 62.99952
- ],
- [
- 11.99225,
- 63.26684
- ],
- [
- 12.23327,
- 63.47505
- ],
- [
- 12.17971,
- 63.57117
- ],
- [
- 12.69313,
- 63.96344
- ],
- [
- 13.21378,
- 64.0839
- ],
- [
- 13.99183,
- 64.00514
- ],
- [
- 14.17035,
- 64.18236
- ],
- [
- 14.13253,
- 64.47516
- ],
- [
- 13.67658,
- 64.58356
- ],
- [
- 14.02455,
- 64.88119
- ],
- [
- 14.33572,
- 65.11098
- ],
- [
- 14.51699,
- 65.30365
- ],
- [
- 14.54177,
- 65.67762
- ],
- [
- 14.63674,
- 65.81299
- ],
- [
- 14.53903,
- 66.12496
- ],
- [
- 15.03881,
- 66.14245
- ],
- [
- 15.50033,
- 66.27956
- ],
- [
- 15.39368,
- 66.4795
- ],
- [
- 15.63473,
- 66.59685
- ],
- [
- 16.04695,
- 66.90283
- ],
- [
- 16.39832,
- 67.03827
- ],
- [
- 16.41439,
- 67.21036
- ],
- [
- 16.10744,
- 67.43617
- ],
- [
- 16.16455,
- 67.5087
- ],
- [
- 16.42318,
- 67.52589
- ],
- [
- 16.5866,
- 67.64528
- ],
- [
- 16.7471,
- 67.90466
- ],
- [
- 17.34741,
- 68.09995
- ],
- [
- 17.90583,
- 67.95885
- ],
- [
- 18.16489,
- 68.19424
- ],
- [
- 18.13721,
- 68.52675
- ],
- [
- 18.40761,
- 68.57059
- ],
- [
- 18.62222,
- 68.49607
- ],
- [
- 18.98574,
- 68.50591
- ],
- [
- 19.92752,
- 68.34558
- ],
- [
- 20.24505,
- 68.49201
- ],
- [
- 19.99237,
- 68.55586
- ],
- [
- 20.21137,
- 68.65685
- ],
- [
- 20.34848,
- 68.79976
- ],
- [
- 20.31623,
- 68.93227
- ],
- [
- 20.10322,
- 69.0359
- ],
- [
- 20.55694,
- 69.04926
- ],
- [
- 20.7206,
- 69.10837
- ],
- [
- 21.06178,
- 69.02541
- ],
- [
- 21.12098,
- 69.10587
- ],
- [
- 21.01135,
- 69.21086
- ],
- [
- 21.2824,
- 69.30076
- ],
- [
- 21.62645,
- 69.26589
- ],
- [
- 22.33512,
- 68.81965
- ],
- [
- 22.37485,
- 68.70596
- ],
- [
- 22.5377,
- 68.73329
- ],
- [
- 22.80161,
- 68.67674
- ],
- [
- 23.04635,
- 68.67833
- ],
- [
- 23.16467,
- 68.61903
- ],
- [
- 23.68789,
- 68.70049
- ],
- [
- 23.79776,
- 68.81592
- ],
- [
- 23.96804,
- 68.82287
- ],
- [
- 24.17541,
- 68.7314
- ],
- [
- 24.76043,
- 68.63655
- ],
- [
- 24.8544,
- 68.55285
- ],
- [
- 24.90827,
- 68.54387
- ],
- [
- 24.93347,
- 68.6025
- ],
- [
- 25.12435,
- 68.62003
- ],
- [
- 25.1667,
- 68.79008
- ],
- [
- 25.43334,
- 68.87886
- ],
- [
- 25.62945,
- 68.88103
- ],
- [
- 25.79589,
- 69.01157
- ],
- [
- 25.73272,
- 69.19428
- ],
- [
- 26.02249,
- 69.66758
- ],
- [
- 26.56631,
- 69.94207
- ],
- [
- 27.10601,
- 69.89539
- ],
- [
- 27.63679,
- 70.05317
- ],
- [
- 27.93548,
- 70.07401
- ],
- [
- 27.96569,
- 70.00415
- ],
- [
- 28.40312,
- 69.80824
- ],
- [
- 29.1014,
- 69.69095
- ],
- [
- 29.328,
- 69.47585
- ],
- [
- 28.82859,
- 69.2316
- ],
- [
- 28.7931,
- 69.0943
- ],
- [
- 29.04485,
- 68.99986
- ],
- [
- 29.25292,
- 69.10601
- ],
- [
- 29.32641,
- 69.22982
- ],
- [
- 29.29229,
- 69.27632
- ],
- [
- 29.39117,
- 69.31298
- ],
- [
- 29.57038,
- 69.31201
- ],
- [
- 29.85191,
- 69.41631
- ],
- [
- 29.96795,
- 69.39916
- ],
- [
- 30.13069,
- 69.4667
- ],
- [
- 30.2008,
- 69.5658
- ],
- [
- 30.13137,
- 69.6609
- ],
- [
- 30.15678,
- 69.66496
- ],
- [
- 30.51589,
- 69.53787
- ],
- [
- 30.82077,
- 69.52371
- ],
- [
- 30.95329,
- 69.55563
- ],
- [
- 30.96221,
- 69.67832
- ],
- [
- 30.83578,
- 69.79192
- ],
- [
- 31.65161,
- 70.17579
- ],
- [
- 31.78344,
- 70.4662
- ],
- [
- 30.49255,
- 70.86989
- ],
- [
- 28.43261,
- 71.30079
- ],
- [
- 25.66406,
- 71.40266
- ],
- [
- 23.81835,
- 71.29374
- ],
- [
- 18.30322,
- 70.40734
- ],
- [
- 14.24926,
- 69.07641
- ],
- [
- 11.18408,
- 67.47913
- ],
- [
- 11.74438,
- 66.90852
- ],
- [
- 9.95361,
- 64.88393
- ],
- [
- 4.72961,
- 62.3649
- ],
- [
- 4.12948,
- 61.69247
- ],
- [
- 4.08142,
- 61.02637
- ],
- [
- 4.4577,
- 59.19421
- ],
- [
- 5.31188,
- 58.4276
- ],
- [
- 6.47094,
- 57.84475
- ],
- [
- 7.56408,
- 57.72468
- ],
- [
- 8.4375,
- 57.91776
- ],
- [
- 10.59792,
- 58.75006
- ],
- [
- 10.64905,
- 58.88203
- ],
- [
- 11.09035,
- 58.97673
- ],
- [
- 11.16173,
- 59.06743
- ],
- [
- 11.34175,
- 59.10293
- ],
- [
- 11.44922,
- 58.99078
- ],
- [
- 11.45194,
- 58.88136
- ],
- [
- 11.53568,
- 58.86659
- ]
- ]
- ],
- "terms_url": "https://hoydedata.no/",
- "terms_text": "© Kartverket",
- "description": "Shaded relief representation of the Norwegian digital surface model (DOM), i.e. earth surface including trees, buildings and other objects on top of it.",
- "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png"
- },
- {
- "id": "kartverket-dtm-skygge",
- "name": "Kartverket DTM Digital Terrain Model",
- "type": "wms",
- "template": "https://wms.geonorge.no/skwms1/wms.hoyde-dtm_somlos_skyggerelieff?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=las_dtm_skyggerelieff_somlos&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "scaleExtent": [
- 0,
- 24
- ],
- "polygon": [
- [
- [
- 11.53568,
- 58.86659
- ],
- [
- 11.66192,
- 58.89784
- ],
- [
- 11.7935,
- 59.09471
- ],
- [
- 11.84243,
- 59.239
- ],
- [
- 11.82877,
- 59.34509
- ],
- [
- 11.71279,
- 59.60387
- ],
- [
- 11.86205,
- 59.63771
- ],
- [
- 11.95608,
- 59.69196
- ],
- [
- 11.93389,
- 59.86895
- ],
- [
- 12.17881,
- 59.8786
- ],
- [
- 12.46948,
- 60.03124
- ],
- [
- 12.55438,
- 60.18972
- ],
- [
- 12.51237,
- 60.31659
- ],
- [
- 12.61793,
- 60.40065
- ],
- [
- 12.61883,
- 60.51512
- ],
- [
- 12.25387,
- 61.01106
- ],
- [
- 12.69195,
- 61.04632
- ],
- [
- 12.90756,
- 61.34802
- ],
- [
- 12.57493,
- 61.57623
- ],
- [
- 12.42465,
- 61.57175
- ],
- [
- 12.15233,
- 61.72694
- ],
- [
- 12.31212,
- 62.26512
- ],
- [
- 12.07078,
- 62.61109
- ],
- [
- 12.14907,
- 62.7455
- ],
- [
- 12.08883,
- 62.89668
- ],
- [
- 12.23464,
- 62.99952
- ],
- [
- 11.99225,
- 63.26684
- ],
- [
- 12.23327,
- 63.47505
- ],
- [
- 12.17971,
- 63.57117
- ],
- [
- 12.69313,
- 63.96344
- ],
- [
- 13.21378,
- 64.0839
- ],
- [
- 13.99183,
- 64.00514
- ],
- [
- 14.17035,
- 64.18236
- ],
- [
- 14.13253,
- 64.47516
- ],
- [
- 13.67658,
- 64.58356
- ],
- [
- 14.02455,
- 64.88119
- ],
- [
- 14.33572,
- 65.11098
- ],
- [
- 14.51699,
- 65.30365
- ],
- [
- 14.54177,
- 65.67762
- ],
- [
- 14.63674,
- 65.81299
- ],
- [
- 14.53903,
- 66.12496
- ],
- [
- 15.03881,
- 66.14245
- ],
- [
- 15.50033,
- 66.27956
- ],
- [
- 15.39368,
- 66.4795
- ],
- [
- 15.63473,
- 66.59685
- ],
- [
- 16.04695,
- 66.90283
- ],
- [
- 16.39832,
- 67.03827
- ],
- [
- 16.41439,
- 67.21036
- ],
- [
- 16.10744,
- 67.43617
- ],
- [
- 16.16455,
- 67.5087
- ],
- [
- 16.42318,
- 67.52589
- ],
- [
- 16.5866,
- 67.64528
- ],
- [
- 16.7471,
- 67.90466
- ],
- [
- 17.34741,
- 68.09995
- ],
- [
- 17.90583,
- 67.95885
- ],
- [
- 18.16489,
- 68.19424
- ],
- [
- 18.13721,
- 68.52675
- ],
- [
- 18.40761,
- 68.57059
- ],
- [
- 18.62222,
- 68.49607
- ],
- [
- 18.98574,
- 68.50591
- ],
- [
- 19.92752,
- 68.34558
- ],
- [
- 20.24505,
- 68.49201
- ],
- [
- 19.99237,
- 68.55586
- ],
- [
- 20.21137,
- 68.65685
- ],
- [
- 20.34848,
- 68.79976
- ],
- [
- 20.31623,
- 68.93227
- ],
- [
- 20.10322,
- 69.0359
- ],
- [
- 20.55694,
- 69.04926
- ],
- [
- 20.7206,
- 69.10837
- ],
- [
- 21.06178,
- 69.02541
- ],
- [
- 21.12098,
- 69.10587
- ],
- [
- 21.01135,
- 69.21086
- ],
- [
- 21.2824,
- 69.30076
- ],
- [
- 21.62645,
- 69.26589
- ],
- [
- 22.33512,
- 68.81965
- ],
- [
- 22.37485,
- 68.70596
- ],
- [
- 22.5377,
- 68.73329
- ],
- [
- 22.80161,
- 68.67674
- ],
- [
- 23.04635,
- 68.67833
- ],
- [
- 23.16467,
- 68.61903
- ],
- [
- 23.68789,
- 68.70049
- ],
- [
- 23.79776,
- 68.81592
- ],
- [
- 23.96804,
- 68.82287
- ],
- [
- 24.17541,
- 68.7314
- ],
- [
- 24.76043,
- 68.63655
- ],
- [
- 24.8544,
- 68.55285
- ],
- [
- 24.90827,
- 68.54387
- ],
- [
- 24.93347,
- 68.6025
- ],
- [
- 25.12435,
- 68.62003
- ],
- [
- 25.1667,
- 68.79008
- ],
- [
- 25.43334,
- 68.87886
- ],
- [
- 25.62945,
- 68.88103
- ],
- [
- 25.79589,
- 69.01157
- ],
- [
- 25.73272,
- 69.19428
- ],
- [
- 26.02249,
- 69.66758
- ],
- [
- 26.56631,
- 69.94207
- ],
- [
- 27.10601,
- 69.89539
- ],
- [
- 27.63679,
- 70.05317
- ],
- [
- 27.93548,
- 70.07401
- ],
- [
- 27.96569,
- 70.00415
- ],
- [
- 28.40312,
- 69.80824
- ],
- [
- 29.1014,
- 69.69095
- ],
- [
- 29.328,
- 69.47585
- ],
- [
- 28.82859,
- 69.2316
- ],
- [
- 28.7931,
- 69.0943
- ],
- [
- 29.04485,
- 68.99986
- ],
- [
- 29.25292,
- 69.10601
- ],
- [
- 29.32641,
- 69.22982
- ],
- [
- 29.29229,
- 69.27632
- ],
- [
- 29.39117,
- 69.31298
- ],
- [
- 29.57038,
- 69.31201
- ],
- [
- 29.85191,
- 69.41631
- ],
- [
- 29.96795,
- 69.39916
- ],
- [
- 30.13069,
- 69.4667
- ],
- [
- 30.2008,
- 69.5658
- ],
- [
- 30.13137,
- 69.6609
- ],
- [
- 30.15678,
- 69.66496
- ],
- [
- 30.51589,
- 69.53787
- ],
- [
- 30.82077,
- 69.52371
- ],
- [
- 30.95329,
- 69.55563
- ],
- [
- 30.96221,
- 69.67832
- ],
- [
- 30.83578,
- 69.79192
- ],
- [
- 31.65161,
- 70.17579
- ],
- [
- 31.78344,
- 70.4662
- ],
- [
- 30.49255,
- 70.86989
- ],
- [
- 28.43261,
- 71.30079
- ],
- [
- 25.66406,
- 71.40266
- ],
- [
- 23.81835,
- 71.29374
- ],
- [
- 18.30322,
- 70.40734
- ],
- [
- 14.24926,
- 69.07641
- ],
- [
- 11.18408,
- 67.47913
- ],
- [
- 11.74438,
- 66.90852
- ],
- [
- 9.95361,
- 64.88393
- ],
- [
- 4.72961,
- 62.3649
- ],
- [
- 4.12948,
- 61.69247
- ],
- [
- 4.08142,
- 61.02637
- ],
- [
- 4.4577,
- 59.19421
- ],
- [
- 5.31188,
- 58.4276
- ],
- [
- 6.47094,
- 57.84475
- ],
- [
- 7.56408,
- 57.72468
- ],
- [
- 8.4375,
- 57.91776
- ],
- [
- 10.59792,
- 58.75006
- ],
- [
- 10.64905,
- 58.88203
- ],
- [
- 11.09035,
- 58.97673
- ],
- [
- 11.16173,
- 59.06743
- ],
- [
- 11.34175,
- 59.10293
- ],
- [
- 11.44922,
- 58.99078
- ],
- [
- 11.45194,
- 58.88136
- ],
- [
- 11.53568,
- 58.86659
- ]
- ]
- ],
- "terms_url": "https://hoydedata.no/",
- "terms_text": "© Kartverket",
- "description": "Shaded relief representation of the Norwegian digital terrain model (DTM), i.e. earth surface without trees, buildings and other objects.",
- "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png"
- },
- {
- "id": "kartverket-friluft",
- "name": "Kartverket Hiking Trails",
- "type": "wms",
- "template": "https://wms.geonorge.no/skwms1/wms.friluftsruter2?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Fotrute&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "scaleExtent": [
- 6,
- 24
- ],
- "polygon": [
- [
- [
- 11.53568,
- 58.86659
- ],
- [
- 11.66192,
- 58.89784
- ],
- [
- 11.7935,
- 59.09471
- ],
- [
- 11.84243,
- 59.239
- ],
- [
- 11.82877,
- 59.34509
- ],
- [
- 11.71279,
- 59.60387
- ],
- [
- 11.86205,
- 59.63771
- ],
- [
- 11.95608,
- 59.69196
- ],
- [
- 11.93389,
- 59.86895
- ],
- [
- 12.17881,
- 59.8786
- ],
- [
- 12.46948,
- 60.03124
- ],
- [
- 12.55438,
- 60.18972
- ],
- [
- 12.51237,
- 60.31659
- ],
- [
- 12.61793,
- 60.40065
- ],
- [
- 12.61883,
- 60.51512
- ],
- [
- 12.25387,
- 61.01106
- ],
- [
- 12.69195,
- 61.04632
- ],
- [
- 12.90756,
- 61.34802
- ],
- [
- 12.57493,
- 61.57623
- ],
- [
- 12.42465,
- 61.57175
- ],
- [
- 12.15233,
- 61.72694
- ],
- [
- 12.31212,
- 62.26512
- ],
- [
- 12.07078,
- 62.61109
- ],
- [
- 12.14907,
- 62.7455
- ],
- [
- 12.08883,
- 62.89668
- ],
- [
- 12.23464,
- 62.99952
- ],
- [
- 11.99225,
- 63.26684
- ],
- [
- 12.23327,
- 63.47505
- ],
- [
- 12.17971,
- 63.57117
- ],
- [
- 12.69313,
- 63.96344
- ],
- [
- 13.21378,
- 64.0839
- ],
- [
- 13.99183,
- 64.00514
- ],
- [
- 14.17035,
- 64.18236
- ],
- [
- 14.13253,
- 64.47516
- ],
- [
- 13.67658,
- 64.58356
- ],
- [
- 14.02455,
- 64.88119
- ],
- [
- 14.33572,
- 65.11098
- ],
- [
- 14.51699,
- 65.30365
- ],
- [
- 14.54177,
- 65.67762
- ],
- [
- 14.63674,
- 65.81299
- ],
- [
- 14.53903,
- 66.12496
- ],
- [
- 15.03881,
- 66.14245
- ],
- [
- 15.50033,
- 66.27956
- ],
- [
- 15.39368,
- 66.4795
- ],
- [
- 15.63473,
- 66.59685
- ],
- [
- 16.04695,
- 66.90283
- ],
- [
- 16.39832,
- 67.03827
- ],
- [
- 16.41439,
- 67.21036
- ],
- [
- 16.10744,
- 67.43617
- ],
- [
- 16.16455,
- 67.5087
- ],
- [
- 16.42318,
- 67.52589
- ],
- [
- 16.5866,
- 67.64528
- ],
- [
- 16.7471,
- 67.90466
- ],
- [
- 17.34741,
- 68.09995
- ],
- [
- 17.90583,
- 67.95885
- ],
- [
- 18.16489,
- 68.19424
- ],
- [
- 18.13721,
- 68.52675
- ],
- [
- 18.40761,
- 68.57059
- ],
- [
- 18.62222,
- 68.49607
- ],
- [
- 18.98574,
- 68.50591
- ],
- [
- 19.92752,
- 68.34558
- ],
- [
- 20.24505,
- 68.49201
- ],
- [
- 19.99237,
- 68.55586
- ],
- [
- 20.21137,
- 68.65685
- ],
- [
- 20.34848,
- 68.79976
- ],
- [
- 20.31623,
- 68.93227
- ],
- [
- 20.10322,
- 69.0359
- ],
- [
- 20.55694,
- 69.04926
- ],
- [
- 20.7206,
- 69.10837
- ],
- [
- 21.06178,
- 69.02541
- ],
- [
- 21.12098,
- 69.10587
- ],
- [
- 21.01135,
- 69.21086
- ],
- [
- 21.2824,
- 69.30076
- ],
- [
- 21.62645,
- 69.26589
- ],
- [
- 22.33512,
- 68.81965
- ],
- [
- 22.37485,
- 68.70596
- ],
- [
- 22.5377,
- 68.73329
- ],
- [
- 22.80161,
- 68.67674
- ],
- [
- 23.04635,
- 68.67833
- ],
- [
- 23.16467,
- 68.61903
- ],
- [
- 23.68789,
- 68.70049
- ],
- [
- 23.79776,
- 68.81592
- ],
- [
- 23.96804,
- 68.82287
- ],
- [
- 24.17541,
- 68.7314
- ],
- [
- 24.76043,
- 68.63655
- ],
- [
- 24.8544,
- 68.55285
- ],
- [
- 24.90827,
- 68.54387
- ],
- [
- 24.93347,
- 68.6025
- ],
- [
- 25.12435,
- 68.62003
- ],
- [
- 25.1667,
- 68.79008
- ],
- [
- 25.43334,
- 68.87886
- ],
- [
- 25.62945,
- 68.88103
- ],
- [
- 25.79589,
- 69.01157
- ],
- [
- 25.73272,
- 69.19428
- ],
- [
- 26.02249,
- 69.66758
- ],
- [
- 26.56631,
- 69.94207
- ],
- [
- 27.10601,
- 69.89539
- ],
- [
- 27.63679,
- 70.05317
- ],
- [
- 27.93548,
- 70.07401
- ],
- [
- 27.96569,
- 70.00415
- ],
- [
- 28.40312,
- 69.80824
- ],
- [
- 29.1014,
- 69.69095
- ],
- [
- 29.328,
- 69.47585
- ],
- [
- 28.82859,
- 69.2316
- ],
- [
- 28.7931,
- 69.0943
- ],
- [
- 29.04485,
- 68.99986
- ],
- [
- 29.25292,
- 69.10601
- ],
- [
- 29.32641,
- 69.22982
- ],
- [
- 29.29229,
- 69.27632
- ],
- [
- 29.39117,
- 69.31298
- ],
- [
- 29.57038,
- 69.31201
- ],
- [
- 29.85191,
- 69.41631
- ],
- [
- 29.96795,
- 69.39916
- ],
- [
- 30.13069,
- 69.4667
- ],
- [
- 30.2008,
- 69.5658
- ],
- [
- 30.13137,
- 69.6609
- ],
- [
- 30.15678,
- 69.66496
- ],
- [
- 30.51589,
- 69.53787
- ],
- [
- 30.82077,
- 69.52371
- ],
- [
- 30.95329,
- 69.55563
- ],
- [
- 30.96221,
- 69.67832
- ],
- [
- 30.83578,
- 69.79192
- ],
- [
- 31.65161,
- 70.17579
- ],
- [
- 31.78344,
- 70.4662
- ],
- [
- 30.49255,
- 70.86989
- ],
- [
- 28.43261,
- 71.30079
- ],
- [
- 25.66406,
- 71.40266
- ],
- [
- 23.81835,
- 71.29374
- ],
- [
- 18.30322,
- 70.40734
- ],
- [
- 14.24926,
- 69.07641
- ],
- [
- 11.18408,
- 67.47913
- ],
- [
- 11.74438,
- 66.90852
- ],
- [
- 9.95361,
- 64.88393
- ],
- [
- 4.72961,
- 62.3649
- ],
- [
- 4.12948,
- 61.69247
- ],
- [
- 4.08142,
- 61.02637
- ],
- [
- 4.4577,
- 59.19421
- ],
- [
- 5.31188,
- 58.4276
- ],
- [
- 6.47094,
- 57.84475
- ],
- [
- 7.56408,
- 57.72468
- ],
- [
- 8.4375,
- 57.91776
- ],
- [
- 10.59792,
- 58.75006
- ],
- [
- 10.64905,
- 58.88203
- ],
- [
- 11.09035,
- 58.97673
- ],
- [
- 11.16173,
- 59.06743
- ],
- [
- 11.34175,
- 59.10293
- ],
- [
- 11.44922,
- 58.99078
- ],
- [
- 11.45194,
- 58.88136
- ],
- [
- 11.53568,
- 58.86659
- ]
- ]
- ],
- "terms_url": "https://kartverket.no/geodataarbeid/temadata/nasjonal-database-for-tur--og-friluftsruter/",
- "terms_text": "© Kartverket",
- "description": "Hiking trails from the Norwegian database `Tur- og Friluftsruter´, including DNT routes.",
- "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
- "overlay": true
- },
- {
- "id": "kartverket-topo4",
- "name": "Kartverket N50 topo",
- "type": "tms",
- "template": "https://opencache{switch:,2,3}.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=topo4&zoom={zoom}&x={x}&y={y}",
- "scaleExtent": [
- 3,
- 15
- ],
- "polygon": [
- [
- [
- 11.53568,
- 58.86659
- ],
- [
- 11.66192,
- 58.89784
- ],
- [
- 11.7935,
- 59.09471
- ],
- [
- 11.84243,
- 59.239
- ],
- [
- 11.82877,
- 59.34509
- ],
- [
- 11.71279,
- 59.60387
- ],
- [
- 11.86205,
- 59.63771
- ],
- [
- 11.95608,
- 59.69196
- ],
- [
- 11.93389,
- 59.86895
- ],
- [
- 12.17881,
- 59.8786
- ],
- [
- 12.46948,
- 60.03124
- ],
- [
- 12.55438,
- 60.18972
- ],
- [
- 12.51237,
- 60.31659
- ],
- [
- 12.61793,
- 60.40065
- ],
- [
- 12.61883,
- 60.51512
- ],
- [
- 12.25387,
- 61.01106
- ],
- [
- 12.69195,
- 61.04632
- ],
- [
- 12.90756,
- 61.34802
- ],
- [
- 12.57493,
- 61.57623
- ],
- [
- 12.42465,
- 61.57175
- ],
- [
- 12.15233,
- 61.72694
- ],
- [
- 12.31212,
- 62.26512
- ],
- [
- 12.07078,
- 62.61109
- ],
- [
- 12.14907,
- 62.7455
- ],
- [
- 12.08883,
- 62.89668
- ],
- [
- 12.23464,
- 62.99952
- ],
- [
- 11.99225,
- 63.26684
- ],
- [
- 12.23327,
- 63.47505
- ],
- [
- 12.17971,
- 63.57117
- ],
- [
- 12.69313,
- 63.96344
- ],
- [
- 13.21378,
- 64.0839
- ],
- [
- 13.99183,
- 64.00514
- ],
- [
- 14.17035,
- 64.18236
- ],
- [
- 14.13253,
- 64.47516
- ],
- [
- 13.67658,
- 64.58356
- ],
- [
- 14.02455,
- 64.88119
- ],
- [
- 14.33572,
- 65.11098
- ],
- [
- 14.51699,
- 65.30365
- ],
- [
- 14.54177,
- 65.67762
- ],
- [
- 14.63674,
- 65.81299
- ],
- [
- 14.53903,
- 66.12496
- ],
- [
- 15.03881,
- 66.14245
- ],
- [
- 15.50033,
- 66.27956
- ],
- [
- 15.39368,
- 66.4795
- ],
- [
- 15.63473,
- 66.59685
- ],
- [
- 16.04695,
- 66.90283
- ],
- [
- 16.39832,
- 67.03827
- ],
- [
- 16.41439,
- 67.21036
- ],
- [
- 16.10744,
- 67.43617
- ],
- [
- 16.16455,
- 67.5087
- ],
- [
- 16.42318,
- 67.52589
- ],
- [
- 16.5866,
- 67.64528
- ],
- [
- 16.7471,
- 67.90466
- ],
- [
- 17.34741,
- 68.09995
- ],
- [
- 17.90583,
- 67.95885
- ],
- [
- 18.16489,
- 68.19424
- ],
- [
- 18.13721,
- 68.52675
- ],
- [
- 18.40761,
- 68.57059
- ],
- [
- 18.62222,
- 68.49607
- ],
- [
- 18.98574,
- 68.50591
- ],
- [
- 19.92752,
- 68.34558
- ],
- [
- 20.24505,
- 68.49201
- ],
- [
- 19.99237,
- 68.55586
- ],
- [
- 20.21137,
- 68.65685
- ],
- [
- 20.34848,
- 68.79976
- ],
- [
- 20.31623,
- 68.93227
- ],
- [
- 20.10322,
- 69.0359
- ],
- [
- 20.55694,
- 69.04926
- ],
- [
- 20.7206,
- 69.10837
- ],
- [
- 21.06178,
- 69.02541
- ],
- [
- 21.12098,
- 69.10587
- ],
- [
- 21.01135,
- 69.21086
- ],
- [
- 21.2824,
- 69.30076
- ],
- [
- 21.62645,
- 69.26589
- ],
- [
- 22.33512,
- 68.81965
- ],
- [
- 22.37485,
- 68.70596
- ],
- [
- 22.5377,
- 68.73329
- ],
- [
- 22.80161,
- 68.67674
- ],
- [
- 23.04635,
- 68.67833
- ],
- [
- 23.16467,
- 68.61903
- ],
- [
- 23.68789,
- 68.70049
- ],
- [
- 23.79776,
- 68.81592
- ],
- [
- 23.96804,
- 68.82287
- ],
- [
- 24.17541,
- 68.7314
- ],
- [
- 24.76043,
- 68.63655
- ],
- [
- 24.8544,
- 68.55285
- ],
- [
- 24.90827,
- 68.54387
- ],
- [
- 24.93347,
- 68.6025
- ],
- [
- 25.12435,
- 68.62003
- ],
- [
- 25.1667,
- 68.79008
- ],
- [
- 25.43334,
- 68.87886
- ],
- [
- 25.62945,
- 68.88103
- ],
- [
- 25.79589,
- 69.01157
- ],
- [
- 25.73272,
- 69.19428
- ],
- [
- 26.02249,
- 69.66758
- ],
- [
- 26.56631,
- 69.94207
- ],
- [
- 27.10601,
- 69.89539
- ],
- [
- 27.63679,
- 70.05317
- ],
- [
- 27.93548,
- 70.07401
- ],
- [
- 27.96569,
- 70.00415
- ],
- [
- 28.40312,
- 69.80824
- ],
- [
- 29.1014,
- 69.69095
- ],
- [
- 29.328,
- 69.47585
- ],
- [
- 28.82859,
- 69.2316
- ],
- [
- 28.7931,
- 69.0943
- ],
- [
- 29.04485,
- 68.99986
- ],
- [
- 29.25292,
- 69.10601
- ],
- [
- 29.32641,
- 69.22982
- ],
- [
- 29.29229,
- 69.27632
- ],
- [
- 29.39117,
- 69.31298
- ],
- [
- 29.57038,
- 69.31201
- ],
- [
- 29.85191,
- 69.41631
- ],
- [
- 29.96795,
- 69.39916
- ],
- [
- 30.13069,
- 69.4667
- ],
- [
- 30.2008,
- 69.5658
- ],
- [
- 30.13137,
- 69.6609
- ],
- [
- 30.15678,
- 69.66496
- ],
- [
- 30.51589,
- 69.53787
- ],
- [
- 30.82077,
- 69.52371
- ],
- [
- 30.95329,
- 69.55563
- ],
- [
- 30.96221,
- 69.67832
- ],
- [
- 30.83578,
- 69.79192
- ],
- [
- 31.65161,
- 70.17579
- ],
- [
- 31.78344,
- 70.4662
- ],
- [
- 30.49255,
- 70.86989
- ],
- [
- 28.43261,
- 71.30079
- ],
- [
- 25.66406,
- 71.40266
- ],
- [
- 23.81835,
- 71.29374
- ],
- [
- 18.30322,
- 70.40734
- ],
- [
- 14.24926,
- 69.07641
- ],
- [
- 11.18408,
- 67.47913
- ],
- [
- 11.74438,
- 66.90852
- ],
- [
- 9.95361,
- 64.88393
- ],
- [
- 4.72961,
- 62.3649
- ],
- [
- 4.12948,
- 61.69247
- ],
- [
- 4.08142,
- 61.02637
- ],
- [
- 4.4577,
- 59.19421
- ],
- [
- 5.31188,
- 58.4276
- ],
- [
- 6.47094,
- 57.84475
- ],
- [
- 7.56408,
- 57.72468
- ],
- [
- 8.4375,
- 57.91776
- ],
- [
- 10.59792,
- 58.75006
- ],
- [
- 10.64905,
- 58.88203
- ],
- [
- 11.09035,
- 58.97673
- ],
- [
- 11.16173,
- 59.06743
- ],
- [
- 11.34175,
- 59.10293
- ],
- [
- 11.44922,
- 58.99078
- ],
- [
- 11.45194,
- 58.88136
- ],
- [
- 11.53568,
- 58.86659
- ]
- ]
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/No:Kartverket_import",
- "terms_text": "© Kartverket",
- "description": "Topographic map N50, equivalent to Norway 1:50.000 paper map series.",
- "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png"
- },
- {
- "id": "kartverket-vegnett",
- "name": "Kartverket Road Network",
- "type": "wms",
- "template": "https://openwms.statkart.no/skwms1/wms.vegnett?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=all&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "scaleExtent": [
- 3,
- 24
- ],
- "polygon": [
- [
- [
- 11.53568,
- 58.86659
- ],
- [
- 11.66192,
- 58.89784
- ],
- [
- 11.7935,
- 59.09471
- ],
- [
- 11.84243,
- 59.239
- ],
- [
- 11.82877,
- 59.34509
- ],
- [
- 11.71279,
- 59.60387
- ],
- [
- 11.86205,
- 59.63771
- ],
- [
- 11.95608,
- 59.69196
- ],
- [
- 11.93389,
- 59.86895
- ],
- [
- 12.17881,
- 59.8786
- ],
- [
- 12.46948,
- 60.03124
- ],
- [
- 12.55438,
- 60.18972
- ],
- [
- 12.51237,
- 60.31659
- ],
- [
- 12.61793,
- 60.40065
- ],
- [
- 12.61883,
- 60.51512
- ],
- [
- 12.25387,
- 61.01106
- ],
- [
- 12.69195,
- 61.04632
- ],
- [
- 12.90756,
- 61.34802
- ],
- [
- 12.57493,
- 61.57623
- ],
- [
- 12.42465,
- 61.57175
- ],
- [
- 12.15233,
- 61.72694
- ],
- [
- 12.31212,
- 62.26512
- ],
- [
- 12.07078,
- 62.61109
- ],
- [
- 12.14907,
- 62.7455
- ],
- [
- 12.08883,
- 62.89668
- ],
- [
- 12.23464,
- 62.99952
- ],
- [
- 11.99225,
- 63.26684
- ],
- [
- 12.23327,
- 63.47505
- ],
- [
- 12.17971,
- 63.57117
- ],
- [
- 12.69313,
- 63.96344
- ],
- [
- 13.21378,
- 64.0839
- ],
- [
- 13.99183,
- 64.00514
- ],
- [
- 14.17035,
- 64.18236
- ],
- [
- 14.13253,
- 64.47516
- ],
- [
- 13.67658,
- 64.58356
- ],
- [
- 14.02455,
- 64.88119
- ],
- [
- 14.33572,
- 65.11098
- ],
- [
- 14.51699,
- 65.30365
- ],
- [
- 14.54177,
- 65.67762
- ],
- [
- 14.63674,
- 65.81299
- ],
- [
- 14.53903,
- 66.12496
- ],
- [
- 15.03881,
- 66.14245
- ],
- [
- 15.50033,
- 66.27956
- ],
- [
- 15.39368,
- 66.4795
- ],
- [
- 15.63473,
- 66.59685
- ],
- [
- 16.04695,
- 66.90283
- ],
- [
- 16.39832,
- 67.03827
- ],
- [
- 16.41439,
- 67.21036
- ],
- [
- 16.10744,
- 67.43617
- ],
- [
- 16.16455,
- 67.5087
- ],
- [
- 16.42318,
- 67.52589
- ],
- [
- 16.5866,
- 67.64528
- ],
- [
- 16.7471,
- 67.90466
- ],
- [
- 17.34741,
- 68.09995
- ],
- [
- 17.90583,
- 67.95885
- ],
- [
- 18.16489,
- 68.19424
- ],
- [
- 18.13721,
- 68.52675
- ],
- [
- 18.40761,
- 68.57059
- ],
- [
- 18.62222,
- 68.49607
- ],
- [
- 18.98574,
- 68.50591
- ],
- [
- 19.92752,
- 68.34558
- ],
- [
- 20.24505,
- 68.49201
- ],
- [
- 19.99237,
- 68.55586
- ],
- [
- 20.21137,
- 68.65685
- ],
- [
- 20.34848,
- 68.79976
- ],
- [
- 20.31623,
- 68.93227
- ],
- [
- 20.10322,
- 69.0359
- ],
- [
- 20.55694,
- 69.04926
- ],
- [
- 20.7206,
- 69.10837
- ],
- [
- 21.06178,
- 69.02541
- ],
- [
- 21.12098,
- 69.10587
- ],
- [
- 21.01135,
- 69.21086
- ],
- [
- 21.2824,
- 69.30076
- ],
- [
- 21.62645,
- 69.26589
- ],
- [
- 22.33512,
- 68.81965
- ],
- [
- 22.37485,
- 68.70596
- ],
- [
- 22.5377,
- 68.73329
- ],
- [
- 22.80161,
- 68.67674
- ],
- [
- 23.04635,
- 68.67833
- ],
- [
- 23.16467,
- 68.61903
- ],
- [
- 23.68789,
- 68.70049
- ],
- [
- 23.79776,
- 68.81592
- ],
- [
- 23.96804,
- 68.82287
- ],
- [
- 24.17541,
- 68.7314
- ],
- [
- 24.76043,
- 68.63655
- ],
- [
- 24.8544,
- 68.55285
- ],
- [
- 24.90827,
- 68.54387
- ],
- [
- 24.93347,
- 68.6025
- ],
- [
- 25.12435,
- 68.62003
- ],
- [
- 25.1667,
- 68.79008
- ],
- [
- 25.43334,
- 68.87886
- ],
- [
- 25.62945,
- 68.88103
- ],
- [
- 25.79589,
- 69.01157
- ],
- [
- 25.73272,
- 69.19428
- ],
- [
- 26.02249,
- 69.66758
- ],
- [
- 26.56631,
- 69.94207
- ],
- [
- 27.10601,
- 69.89539
- ],
- [
- 27.63679,
- 70.05317
- ],
- [
- 27.93548,
- 70.07401
- ],
- [
- 27.96569,
- 70.00415
- ],
- [
- 28.40312,
- 69.80824
- ],
- [
- 29.1014,
- 69.69095
- ],
- [
- 29.328,
- 69.47585
- ],
- [
- 28.82859,
- 69.2316
- ],
- [
- 28.7931,
- 69.0943
- ],
- [
- 29.04485,
- 68.99986
- ],
- [
- 29.25292,
- 69.10601
- ],
- [
- 29.32641,
- 69.22982
- ],
- [
- 29.29229,
- 69.27632
- ],
- [
- 29.39117,
- 69.31298
- ],
- [
- 29.57038,
- 69.31201
- ],
- [
- 29.85191,
- 69.41631
- ],
- [
- 29.96795,
- 69.39916
- ],
- [
- 30.13069,
- 69.4667
- ],
- [
- 30.2008,
- 69.5658
- ],
- [
- 30.13137,
- 69.6609
- ],
- [
- 30.15678,
- 69.66496
- ],
- [
- 30.51589,
- 69.53787
- ],
- [
- 30.82077,
- 69.52371
- ],
- [
- 30.95329,
- 69.55563
- ],
- [
- 30.96221,
- 69.67832
- ],
- [
- 30.83578,
- 69.79192
- ],
- [
- 31.65161,
- 70.17579
- ],
- [
- 31.78344,
- 70.4662
- ],
- [
- 30.49255,
- 70.86989
- ],
- [
- 28.43261,
- 71.30079
- ],
- [
- 25.66406,
- 71.40266
- ],
- [
- 23.81835,
- 71.29374
- ],
- [
- 18.30322,
- 70.40734
- ],
- [
- 14.24926,
- 69.07641
- ],
- [
- 11.18408,
- 67.47913
- ],
- [
- 11.74438,
- 66.90852
- ],
- [
- 9.95361,
- 64.88393
- ],
- [
- 4.72961,
- 62.3649
- ],
- [
- 4.12948,
- 61.69247
- ],
- [
- 4.08142,
- 61.02637
- ],
- [
- 4.4577,
- 59.19421
- ],
- [
- 5.31188,
- 58.4276
- ],
- [
- 6.47094,
- 57.84475
- ],
- [
- 7.56408,
- 57.72468
- ],
- [
- 8.4375,
- 57.91776
- ],
- [
- 10.59792,
- 58.75006
- ],
- [
- 10.64905,
- 58.88203
- ],
- [
- 11.09035,
- 58.97673
- ],
- [
- 11.16173,
- 59.06743
- ],
- [
- 11.34175,
- 59.10293
- ],
- [
- 11.44922,
- 58.99078
- ],
- [
- 11.45194,
- 58.88136
- ],
- [
- 11.53568,
- 58.86659
- ]
- ]
- ],
- "terms_url": "https://www.kartverket.no/data/kartdata/vegdata/",
- "terms_text": "© Kartverket",
- "description": "Norwegian road network from the National Road database (NVDB). Colours represent national, county, municipal, private and forest roads + footways/cycleways.",
- "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
- "overlay": true
- },
- {
- "id": "kelowna_2012",
- "name": "Kelowna 2012",
- "type": "tms",
- "template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/kelowna2012/{zoom}/{x}/{y}.png",
- "endDate": "2012-05-14T00:00:00.000Z",
- "startDate": "2012-05-13T00:00:00.000Z",
- "scaleExtent": [
- 9,
- 20
- ],
- "polygon": [
- [
- [
- -119.58673,
- 49.79281
- ],
- [
- -119.54657,
- 49.79281
- ],
- [
- -119.54657,
- 49.80138
- ],
- [
- -119.53434,
- 49.80138
- ],
- [
- -119.53434,
- 49.80473
- ],
- [
- -119.52962,
- 49.80473
- ],
- [
- -119.52962,
- 49.81196
- ],
- [
- -119.51045,
- 49.81196
- ],
- [
- -119.51157,
- 49.87443
- ],
- [
- -119.51089,
- 49.87449
- ],
- [
- -119.51141,
- 49.88433
- ],
- [
- -119.51141,
- 49.92218
- ],
- [
- -119.49386,
- 49.92235
- ],
- [
- -119.49405,
- 49.9313
- ],
- [
- -119.48039,
- 49.93175
- ],
- [
- -119.48046,
- 49.94075
- ],
- [
- -119.46667,
- 49.94099
- ],
- [
- -119.46928,
- 49.99137
- ],
- [
- -119.45513,
- 49.99161
- ],
- [
- -119.45567,
- 50.01212
- ],
- [
- -119.44167,
- 50.01239
- ],
- [
- -119.44173,
- 50.01363
- ],
- [
- -119.42215,
- 50.01404
- ],
- [
- -119.4221,
- 50.01193
- ],
- [
- -119.41213,
- 50.01217
- ],
- [
- -119.41261,
- 50.02169
- ],
- [
- -119.41234,
- 50.02169
- ],
- [
- -119.41248,
- 50.02508
- ],
- [
- -119.41209,
- 50.02508
- ],
- [
- -119.4122,
- 50.02708
- ],
- [
- -119.41261,
- 50.02707
- ],
- [
- -119.41283,
- 50.03219
- ],
- [
- -119.39363,
- 50.03264
- ],
- [
- -119.39353,
- 50.03078
- ],
- [
- -119.37957,
- 50.03101
- ],
- [
- -119.37954,
- 50.02876
- ],
- [
- -119.37358,
- 50.02886
- ],
- [
- -119.37154,
- 49.97936
- ],
- [
- -119.35735,
- 49.97936
- ],
- [
- -119.35484,
- 49.92561
- ],
- [
- -119.32681,
- 49.92572
- ],
- [
- -119.32566,
- 49.88041
- ],
- [
- -119.31389,
- 49.88065
- ],
- [
- -119.31371,
- 49.87717
- ],
- [
- -119.31322,
- 49.87722
- ],
- [
- -119.31315,
- 49.87497
- ],
- [
- -119.31245,
- 49.87491
- ],
- [
- -119.31223,
- 49.87236
- ],
- [
- -119.31176,
- 49.87233
- ],
- [
- -119.3116,
- 49.86961
- ],
- [
- -119.31122,
- 49.86942
- ],
- [
- -119.31092,
- 49.86324
- ],
- [
- -119.31037,
- 49.86327
- ],
- [
- -119.30951,
- 49.85124
- ],
- [
- -119.31064,
- 49.85123
- ],
- [
- -119.31039,
- 49.84626
- ],
- [
- -119.32453,
- 49.846
- ],
- [
- -119.3246,
- 49.84507
- ],
- [
- -119.3367,
- 49.84488
- ],
- [
- -119.33675,
- 49.84351
- ],
- [
- -119.33794,
- 49.84347
- ],
- [
- -119.3378,
- 49.83821
- ],
- [
- -119.33836,
- 49.8381
- ],
- [
- -119.33837,
- 49.83512
- ],
- [
- -119.33909,
- 49.83511
- ],
- [
- -119.3388,
- 49.83212
- ],
- [
- -119.33915,
- 49.83206
- ],
- [
- -119.33917,
- 49.82933
- ],
- [
- -119.33946,
- 49.82933
- ],
- [
- -119.33959,
- 49.82679
- ],
- [
- -119.35001,
- 49.82658
- ],
- [
- -119.34937,
- 49.81806
- ],
- [
- -119.4047,
- 49.81638
- ],
- [
- -119.40457,
- 49.8099
- ],
- [
- -119.41016,
- 49.8099
- ],
- [
- -119.41029,
- 49.80728
- ],
- [
- -119.43195,
- 49.80691
- ],
- [
- -119.43226,
- 49.7908
- ],
- [
- -119.44598,
- 49.79055
- ],
- [
- -119.44529,
- 49.78202
- ],
- [
- -119.49674,
- 49.78116
- ],
- [
- -119.49661,
- 49.77849
- ],
- [
- -119.54184,
- 49.77751
- ],
- [
- -119.54159,
- 49.77183
- ],
- [
- -119.55603,
- 49.77149
- ],
- [
- -119.55612,
- 49.77184
- ],
- [
- -119.57157,
- 49.77151
- ],
- [
- -119.57162,
- 49.77173
- ],
- [
- -119.58192,
- 49.77149
- ],
- [
- -119.58201,
- 49.77177
- ],
- [
- -119.5923,
- 49.77152
- ],
- [
- -119.59234,
- 49.77181
- ],
- [
- -119.60038,
- 49.7716
- ],
- [
- -119.60119,
- 49.78391
- ],
- [
- -119.58644,
- 49.78439
- ],
- [
- -119.58673,
- 49.79281
- ]
- ]
- ],
- "description": "High quality aerial imagery taken for the City of Kelowna"
- },
- {
- "id": "kelowna_roads",
- "name": "Kelowna Roads overlay",
- "type": "tms",
- "template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/kelowna_overlay/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 9,
- 20
- ],
- "polygon": [
- [
- [
- -119.58673,
- 49.79281
- ],
- [
- -119.54657,
- 49.79281
- ],
- [
- -119.54657,
- 49.80138
- ],
- [
- -119.53434,
- 49.80138
- ],
- [
- -119.53434,
- 49.80473
- ],
- [
- -119.52962,
- 49.80473
- ],
- [
- -119.52962,
- 49.81196
- ],
- [
- -119.51045,
- 49.81196
- ],
- [
- -119.51157,
- 49.87443
- ],
- [
- -119.51089,
- 49.87449
- ],
- [
- -119.51141,
- 49.88433
- ],
- [
- -119.51141,
- 49.92218
- ],
- [
- -119.49386,
- 49.92235
- ],
- [
- -119.49405,
- 49.9313
- ],
- [
- -119.48039,
- 49.93175
- ],
- [
- -119.48046,
- 49.94075
- ],
- [
- -119.46667,
- 49.94099
- ],
- [
- -119.46928,
- 49.99137
- ],
- [
- -119.45513,
- 49.99161
- ],
- [
- -119.45567,
- 50.01212
- ],
- [
- -119.44167,
- 50.01239
- ],
- [
- -119.44173,
- 50.01363
- ],
- [
- -119.42215,
- 50.01404
- ],
- [
- -119.4221,
- 50.01193
- ],
- [
- -119.41213,
- 50.01217
- ],
- [
- -119.41261,
- 50.02169
- ],
- [
- -119.41234,
- 50.02169
- ],
- [
- -119.41248,
- 50.02508
- ],
- [
- -119.41209,
- 50.02508
- ],
- [
- -119.4122,
- 50.02708
- ],
- [
- -119.41261,
- 50.02707
- ],
- [
- -119.41283,
- 50.03219
- ],
- [
- -119.39363,
- 50.03264
- ],
- [
- -119.39353,
- 50.03078
- ],
- [
- -119.37957,
- 50.03101
- ],
- [
- -119.37954,
- 50.02876
- ],
- [
- -119.37358,
- 50.02886
- ],
- [
- -119.37154,
- 49.97936
- ],
- [
- -119.35735,
- 49.97936
- ],
- [
- -119.35484,
- 49.92561
- ],
- [
- -119.32681,
- 49.92572
- ],
- [
- -119.32566,
- 49.88041
- ],
- [
- -119.31389,
- 49.88065
- ],
- [
- -119.31371,
- 49.87717
- ],
- [
- -119.31322,
- 49.87722
- ],
- [
- -119.31315,
- 49.87497
- ],
- [
- -119.31245,
- 49.87491
- ],
- [
- -119.31223,
- 49.87236
- ],
- [
- -119.31176,
- 49.87233
- ],
- [
- -119.3116,
- 49.86961
- ],
- [
- -119.31122,
- 49.86942
- ],
- [
- -119.31092,
- 49.86324
- ],
- [
- -119.31037,
- 49.86327
- ],
- [
- -119.30951,
- 49.85124
- ],
- [
- -119.31064,
- 49.85123
- ],
- [
- -119.31039,
- 49.84626
- ],
- [
- -119.32453,
- 49.846
- ],
- [
- -119.3246,
- 49.84507
- ],
- [
- -119.3367,
- 49.84488
- ],
- [
- -119.33675,
- 49.84351
- ],
- [
- -119.33794,
- 49.84347
- ],
- [
- -119.3378,
- 49.83821
- ],
- [
- -119.33836,
- 49.8381
- ],
- [
- -119.33837,
- 49.83512
- ],
- [
- -119.33909,
- 49.83511
- ],
- [
- -119.3388,
- 49.83212
- ],
- [
- -119.33915,
- 49.83206
- ],
- [
- -119.33917,
- 49.82933
- ],
- [
- -119.33946,
- 49.82933
- ],
- [
- -119.33959,
- 49.82679
- ],
- [
- -119.35001,
- 49.82658
- ],
- [
- -119.34937,
- 49.81806
- ],
- [
- -119.4047,
- 49.81638
- ],
- [
- -119.40457,
- 49.8099
- ],
- [
- -119.41016,
- 49.8099
- ],
- [
- -119.41029,
- 49.80728
- ],
- [
- -119.43195,
- 49.80691
- ],
- [
- -119.43226,
- 49.7908
- ],
- [
- -119.44598,
- 49.79055
- ],
- [
- -119.44529,
- 49.78202
- ],
- [
- -119.49674,
- 49.78116
- ],
- [
- -119.49661,
- 49.77849
- ],
- [
- -119.54184,
- 49.77751
- ],
- [
- -119.54159,
- 49.77183
- ],
- [
- -119.55603,
- 49.77149
- ],
- [
- -119.55612,
- 49.77184
- ],
- [
- -119.57157,
- 49.77151
- ],
- [
- -119.57162,
- 49.77173
- ],
- [
- -119.58192,
- 49.77149
- ],
- [
- -119.58201,
- 49.77177
- ],
- [
- -119.5923,
- 49.77152
- ],
- [
- -119.59234,
- 49.77181
- ],
- [
- -119.60038,
- 49.7716
- ],
- [
- -119.60119,
- 49.78391
- ],
- [
- -119.58644,
- 49.78439
- ],
- [
- -119.58673,
- 49.79281
- ]
- ]
- ],
- "overlay": true
- },
- {
- "id": "landsat_233055",
- "name": "Landsat 233055",
- "type": "tms",
- "template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/landsat_233055/{zoom}/{x}/{y}.png",
- "endDate": "2013-09-03T00:00:00.000Z",
- "startDate": "2013-09-03T00:00:00.000Z",
- "scaleExtent": [
- 5,
- 14
- ],
- "polygon": [
- [
- [
- -60.855,
- 6.1765
- ],
- [
- -60.47626,
- 7.91883
- ],
- [
- -62.16169,
- 8.27787
- ],
- [
- -62.53225,
- 6.53755
- ],
- [
- -60.855,
- 6.1765
- ]
- ]
- ],
- "description": "Recent Landsat imagery"
- },
- {
- "id": "osmse-ekonomiska",
- "name": "Lantmäteriet Economic Map (historic)",
- "type": "tms",
- "template": "https://mapproxy.openstreetmap.se/tms/1.0.0/ek_EPSG3857/{zoom}/{x}/{-y}.jpeg",
- "scaleExtent": [
- 3,
- 17
- ],
- "polygon": [
- [
- [
- 12.71117,
- 55.2666
- ],
- [
- 14.38109,
- 55.29163
- ],
- [
- 19.65453,
- 57.24934
- ],
- [
- 19.85228,
- 59.75087
- ],
- [
- 17.77587,
- 61.13794
- ],
- [
- 18.06151,
- 62.27815
- ],
- [
- 20.97289,
- 63.5779
- ],
- [
- 24.35668,
- 65.60842
- ],
- [
- 23.96117,
- 66.79191
- ],
- [
- 20.61034,
- 66.45189
- ],
- [
- 17.13866,
- 63.96632
- ],
- [
- 11.99706,
- 61.03702
- ],
- [
- 12.29369,
- 60.31607
- ],
- [
- 10.70067,
- 58.81375
- ],
- [
- 12.71117,
- 55.2666
- ]
- ]
- ],
- "terms_url": "https://www.lantmateriet.se",
- "terms_text": "© Lantmäteriet",
- "description": "Scan of ´Economic maps´ ca 1950-1980",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAA0CAMAAADPNIq/AAAA7VBMVEVHcEz1NzT1NjT4NzTwNTLzNjP4ODX3NzTyNTPyNS/zNjPyNjPxNTP2NzTvMi70NjPzNjP0NjL1NjP3NzP1NzT1NjP0NjP3NzT/Njb0NjP3NzT4ODP0NjPzNjP2NzX2NzTvLCzzNjTtNC/zNTPyNDP5NzT0NjTzNjP1NjPtMy72NzT5ODX3ODT1NjT1NzTyNjP1NzTyODD0NzT/Ozj/OjfzNzT9OTb3NzT0NDH/ODX6ODX1NzT/PDn5NTL4ODX0NjP2PTr8YmL1OTb9Y2P2QT/4TUz3R0X+Zmb7ODX8X1/4Skj6UlH7W1r+NjP5T03RuQwnAAAAMnRSTlMA8SH8F63p7FkZsHRcsw/ErCddmTKo2/QD+34roLpExwfMG25W1djATRKRk9CG+VOkPjR6UnQAAAIzSURBVEjHnZXpVuowEIDZC3gBBRQEBNerqN4lk9bS1FIqUAH0/R/HbkmT0haOc/jDnK/zTZihyWR+GP3my6BaHbw0+2lUrvecn3gBYD33cglY5akz+TTMuROmOjWw3nmqxHHNEn4zv7armROrDZoiZOilX7vcI3yam5ltv7thrywHRLICj1HuVFeXM3u23SyWy+V6bboccoueitxAVxf2ajFHahAoCKIPeO7I4d4XlqpOUTSIfhRy7fzbemvGUJ4932ZgYzLfIBXFhwwNyj0AWVpJnCOHhwC8x6bFaQkxiEDCfTBey0CMkzXAhoFBk/kuT/wjA/90tnXbbv9tSULSP3gNuHZqwSbkahD6oeamumdKmOHm8C98XjnrOolCVgsTlyF4+ZsV0LIFJ3FybrCCTX5cZVbSOHdP00cU1KQ6D9alDwoid99zfyiIR+KmNLBQccx6xBcieIGFHrusaXwlgldYOHWmSJs2OsJ/pJKlPUHVS9xAZAJ0ScP8jT8EdhqtdM0VLGmRWYczlPFoTLnxCNO9AHrI//iVSe6Gfm54x8QED+nTRZBZTaXRK5d7DYXVk4OjeO1I4V4QDNj5hKvzIV3zY+V3mghfxAU4Bjnpr1UVhlDg5EIoUuRFJco58c5rqqjL+8WJ8h1xgjxGLP7sKeJYeaw4Rp4g3vnZZSgmXh+FknKAOCJPEQvyNLEgTxVzcgLlfbemJ98nZnJFKuy/iG+BHCD2bzv9+KC7vd5q1TM/j284bszID7oc+QAAAABJRU5ErkJggg=="
- },
- {
- "id": "lu.geoportail.opendata.ortholatest",
- "name": "Latest available ortho geoportail.lu",
- "type": "tms",
- "template": "http://{switch:wmts1,wmts2}.geoportail.lu/opendata/wmts/ortho_latest/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg",
- "endDate": "2017-06-22T00:00:00.000Z",
- "startDate": "2017-06-14T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- 5.96175,
- 50.17631
- ],
- [
- 6.02627,
- 50.18496
- ],
- [
- 6.03318,
- 50.16395
- ],
- [
- 6.06069,
- 50.15536
- ],
- [
- 6.07668,
- 50.15913
- ],
- [
- 6.07824,
- 50.17255
- ],
- [
- 6.10176,
- 50.17199
- ],
- [
- 6.1225,
- 50.16437
- ],
- [
- 6.1201,
- 50.15594
- ],
- [
- 6.1277,
- 50.14993
- ],
- [
- 6.11323,
- 50.13739
- ],
- [
- 6.12369,
- 50.13719
- ],
- [
- 6.14093,
- 50.1305
- ],
- [
- 6.13555,
- 50.11899
- ],
- [
- 6.13808,
- 50.10263
- ],
- [
- 6.13108,
- 50.09964
- ],
- [
- 6.13547,
- 50.09119
- ],
- [
- 6.12194,
- 50.09059
- ],
- [
- 6.12634,
- 50.07817
- ],
- [
- 6.13186,
- 50.07348
- ],
- [
- 6.12117,
- 50.064
- ],
- [
- 6.11444,
- 50.06139
- ],
- [
- 6.11563,
- 50.05817
- ],
- [
- 6.12361,
- 50.06323
- ],
- [
- 6.13661,
- 50.04178
- ],
- [
- 6.13034,
- 50.02975
- ],
- [
- 6.14821,
- 50.02307
- ],
- [
- 6.13868,
- 50.01572
- ],
- [
- 6.13594,
- 50.01485
- ],
- [
- 6.13138,
- 50.01905
- ],
- [
- 6.13024,
- 50.01819
- ],
- [
- 6.13934,
- 50.01116
- ],
- [
- 6.1517,
- 50.01058
- ],
- [
- 6.14546,
- 49.99689
- ],
- [
- 6.13966,
- 49.9994
- ],
- [
- 6.13852,
- 49.99829
- ],
- [
- 6.14218,
- 49.99535
- ],
- [
- 6.15023,
- 49.99518
- ],
- [
- 6.15625,
- 49.98867
- ],
- [
- 6.17305,
- 49.98589
- ],
- [
- 6.17348,
- 49.98344
- ],
- [
- 6.17035,
- 49.98376
- ],
- [
- 6.16549,
- 49.97115
- ],
- [
- 6.17151,
- 49.96298
- ],
- [
- 6.1763,
- 49.962
- ],
- [
- 6.17995,
- 49.95386
- ],
- [
- 6.18339,
- 49.9548
- ],
- [
- 6.17983,
- 49.96307
- ],
- [
- 6.18331,
- 49.9686
- ],
- [
- 6.19277,
- 49.97158
- ],
- [
- 6.19978,
- 49.95352
- ],
- [
- 6.20707,
- 49.95672
- ],
- [
- 6.21269,
- 49.9514
- ],
- [
- 6.22502,
- 49.95039
- ],
- [
- 6.22044,
- 49.94369
- ],
- [
- 6.22824,
- 49.93726
- ],
- [
- 6.22635,
- 49.92766
- ],
- [
- 6.21913,
- 49.92354
- ],
- [
- 6.22986,
- 49.92125
- ],
- [
- 6.23603,
- 49.91355
- ],
- [
- 6.23187,
- 49.91064
- ],
- [
- 6.22769,
- 49.91062
- ],
- [
- 6.23229,
- 49.9072
- ],
- [
- 6.23381,
- 49.90028
- ],
- [
- 6.24692,
- 49.89535
- ],
- [
- 6.25781,
- 49.88724
- ],
- [
- 6.26301,
- 49.88101
- ],
- [
- 6.27646,
- 49.87725
- ],
- [
- 6.28113,
- 49.87957
- ],
- [
- 6.29166,
- 49.87548
- ],
- [
- 6.2977,
- 49.86673
- ],
- [
- 6.30989,
- 49.87107
- ],
- [
- 6.31532,
- 49.8673
- ],
- [
- 6.31465,
- 49.86057
- ],
- [
- 6.32361,
- 49.85188
- ],
- [
- 6.32158,
- 49.8409
- ],
- [
- 6.32741,
- 49.83673
- ],
- [
- 6.33656,
- 49.83998
- ],
- [
- 6.33937,
- 49.8507
- ],
- [
- 6.36465,
- 49.85164
- ],
- [
- 6.4022,
- 49.82098
- ],
- [
- 6.42643,
- 49.81629
- ],
- [
- 6.42807,
- 49.81186
- ],
- [
- 6.43097,
- 49.81129
- ],
- [
- 6.44161,
- 49.81547
- ],
- [
- 6.44344,
- 49.81233
- ],
- [
- 6.45366,
- 49.81275
- ],
- [
- 6.46454,
- 49.81975
- ],
- [
- 6.47057,
- 49.82385
- ],
- [
- 6.49681,
- 49.81277
- ],
- [
- 6.50669,
- 49.80993
- ],
- [
- 6.51155,
- 49.80238
- ],
- [
- 6.51485,
- 49.80513
- ],
- [
- 6.5196,
- 49.81446
- ],
- [
- 6.52981,
- 49.81048
- ],
- [
- 6.53225,
- 49.80686
- ],
- [
- 6.53083,
- 49.80116
- ],
- [
- 6.50622,
- 49.78899
- ],
- [
- 6.51917,
- 49.78344
- ],
- [
- 6.51105,
- 49.77422
- ],
- [
- 6.52056,
- 49.76818
- ],
- [
- 6.52052,
- 49.76134
- ],
- [
- 6.50373,
- 49.75086
- ],
- [
- 6.50263,
- 49.73298
- ],
- [
- 6.50727,
- 49.72938
- ],
- [
- 6.51809,
- 49.7242
- ],
- [
- 6.51642,
- 49.72129
- ],
- [
- 6.51176,
- 49.72016
- ],
- [
- 6.50479,
- 49.725
- ],
- [
- 6.49891,
- 49.72639
- ],
- [
- 6.49558,
- 49.72443
- ],
- [
- 6.50712,
- 49.71655
- ],
- [
- 6.50788,
- 49.71215
- ],
- [
- 6.5046,
- 49.71227
- ],
- [
- 6.42714,
- 49.66237
- ],
- [
- 6.4399,
- 49.66025
- ],
- [
- 6.44251,
- 49.65591
- ],
- [
- 6.42178,
- 49.61809
- ],
- [
- 6.39898,
- 49.60094
- ],
- [
- 6.37941,
- 49.59526
- ],
- [
- 6.37551,
- 49.58809
- ],
- [
- 6.38443,
- 49.5801
- ],
- [
- 6.38119,
- 49.57509
- ],
- [
- 6.36909,
- 49.5783
- ],
- [
- 6.35791,
- 49.57166
- ],
- [
- 6.3849,
- 49.55817
- ],
- [
- 6.38009,
- 49.54856
- ],
- [
- 6.35855,
- 49.53296
- ],
- [
- 6.35932,
- 49.52481
- ],
- [
- 6.37076,
- 49.50545
- ],
- [
- 6.37056,
- 49.45732
- ],
- [
- 6.3334,
- 49.46493
- ],
- [
- 6.32189,
- 49.47244
- ],
- [
- 6.29503,
- 49.47928
- ],
- [
- 6.28789,
- 49.48379
- ],
- [
- 6.27191,
- 49.49995
- ],
- [
- 6.24133,
- 49.50693
- ],
- [
- 6.19669,
- 49.50331
- ],
- [
- 6.17337,
- 49.50577
- ],
- [
- 6.16086,
- 49.50085
- ],
- [
- 6.1671,
- 49.49006
- ],
- [
- 6.14018,
- 49.48525
- ],
- [
- 6.12937,
- 49.48803
- ],
- [
- 6.12725,
- 49.47081
- ],
- [
- 6.1014,
- 49.46726
- ],
- [
- 6.10483,
- 49.45076
- ],
- [
- 6.08167,
- 49.45417
- ],
- [
- 6.07722,
- 49.46139
- ],
- [
- 6.05917,
- 49.46306
- ],
- [
- 6.05222,
- 49.46028
- ],
- [
- 6.04421,
- 49.44553
- ],
- [
- 6.02529,
- 49.44703
- ],
- [
- 6.02154,
- 49.45127
- ],
- [
- 6.01574,
- 49.44885
- ],
- [
- 5.99412,
- 49.45301
- ],
- [
- 5.97657,
- 49.44885
- ],
- [
- 5.97773,
- 49.45955
- ],
- [
- 5.97232,
- 49.46087
- ],
- [
- 5.96891,
- 49.48202
- ],
- [
- 5.9616,
- 49.49026
- ],
- [
- 5.91578,
- 49.49835
- ],
- [
- 5.89033,
- 49.4948
- ],
- [
- 5.86332,
- 49.50006
- ],
- [
- 5.84897,
- 49.50826
- ],
- [
- 5.84828,
- 49.51397
- ],
- [
- 5.83641,
- 49.51817
- ],
- [
- 5.83187,
- 49.52639
- ],
- [
- 5.84308,
- 49.53081
- ],
- [
- 5.83562,
- 49.54114
- ],
- [
- 5.81625,
- 49.53325
- ],
- [
- 5.8052,
- 49.54272
- ],
- [
- 5.85943,
- 49.57158
- ],
- [
- 5.86866,
- 49.587
- ],
- [
- 5.86289,
- 49.58525
- ],
- [
- 5.8511,
- 49.58379
- ],
- [
- 5.84712,
- 49.58961
- ],
- [
- 5.84565,
- 49.5981
- ],
- [
- 5.8694,
- 49.6106
- ],
- [
- 5.88182,
- 49.63815
- ],
- [
- 5.89998,
- 49.63907
- ],
- [
- 5.89934,
- 49.66239
- ],
- [
- 5.85656,
- 49.67628
- ],
- [
- 5.85628,
- 49.68211
- ],
- [
- 5.8757,
- 49.71118
- ],
- [
- 5.86481,
- 49.72331
- ],
- [
- 5.84325,
- 49.71822
- ],
- [
- 5.82191,
- 49.72128
- ],
- [
- 5.82489,
- 49.73767
- ],
- [
- 5.82073,
- 49.74878
- ],
- [
- 5.78626,
- 49.79079
- ],
- [
- 5.76517,
- 49.78961
- ],
- [
- 5.75094,
- 49.79094
- ],
- [
- 5.74159,
- 49.82126
- ],
- [
- 5.74581,
- 49.82435
- ],
- [
- 5.7372,
- 49.83353
- ],
- [
- 5.74053,
- 49.84142
- ],
- [
- 5.74701,
- 49.84048
- ],
- [
- 5.74624,
- 49.84783
- ],
- [
- 5.75399,
- 49.84878
- ],
- [
- 5.74066,
- 49.85152
- ],
- [
- 5.75229,
- 49.85922
- ],
- [
- 5.74955,
- 49.87554
- ],
- [
- 5.77567,
- 49.87438
- ],
- [
- 5.77505,
- 49.88057
- ],
- [
- 5.7346,
- 49.89341
- ],
- [
- 5.73303,
- 49.90285
- ],
- [
- 5.75783,
- 49.91737
- ],
- [
- 5.76039,
- 49.93252
- ],
- [
- 5.77073,
- 49.93711
- ],
- [
- 5.76878,
- 49.94239
- ],
- [
- 5.7688,
- 49.96104
- ],
- [
- 5.78672,
- 49.96816
- ],
- [
- 5.80524,
- 49.96677
- ],
- [
- 5.80652,
- 49.97321
- ],
- [
- 5.83129,
- 49.97995
- ],
- [
- 5.83462,
- 49.98656
- ],
- [
- 5.81806,
- 49.99936
- ],
- [
- 5.81561,
- 50.01437
- ],
- [
- 5.84792,
- 50.02809
- ],
- [
- 5.86189,
- 50.04581
- ],
- [
- 5.85087,
- 50.0563
- ],
- [
- 5.85781,
- 50.07186
- ],
- [
- 5.881,
- 50.08069
- ],
- [
- 5.89196,
- 50.12041
- ],
- [
- 5.95286,
- 50.13384
- ],
- [
- 5.96175,
- 50.17631
- ]
- ]
- ],
- "terms_url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts",
- "terms_text": "Administration du Cadastre et de la Topographie",
- "best": true,
- "icon": "https://www.geoportail.lu/static/img/lion.png"
- },
- {
- "id": "landsat_047026",
- "name": "Latest southwest British Columbia Landsat",
- "type": "tms",
- "template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/landsat_047026/{zoom}/{x}/{y}.png",
- "endDate": "2013-09-12T00:00:00.000Z",
- "startDate": "2013-09-12T00:00:00.000Z",
- "scaleExtent": [
- 5,
- 13
- ],
- "polygon": [
- [
- [
- -121.93555,
- 47.78206
- ],
- [
- -121.57206,
- 48.64101
- ],
- [
- -121.20155,
- 49.48462
- ],
- [
- -121.83755,
- 49.60232
- ],
- [
- -122.4767,
- 49.71617
- ],
- [
- -123.11891,
- 49.82688
- ],
- [
- -123.76023,
- 49.93358
- ],
- [
- -124.08877,
- 49.08705
- ],
- [
- -124.41289,
- 48.22526
- ],
- [
- -123.79277,
- 48.11973
- ],
- [
- -123.17279,
- 48.01096
- ],
- [
- -122.55355,
- 47.89823
- ],
- [
- -121.93555,
- 47.78206
- ]
- ]
- ],
- "description": "Recent lower-resolution landsat imagery for southwest British Columbia"
- },
- {
- "id": "Lausanne-2012",
- "name": "Lausanne - Orthophoto technique 2012",
- "type": "tms",
- "template": "http://osmdata.asitvd.ch/tiles/lausanne2012/{zoom}/{x}/{y}.png",
- "endDate": "2012-01-01T00:00:00.000Z",
- "startDate": "2012-01-01T00:00:00.000Z",
- "scaleExtent": [
- 14,
- 20
- ],
- "polygon": [
- [
- [
- 6.66668,
- 46.49441
- ],
- [
- 6.61637,
- 46.49406
- ],
- [
- 6.61636,
- 46.49836
- ],
- [
- 6.60135,
- 46.49825
- ],
- [
- 6.60131,
- 46.50227
- ],
- [
- 6.55923,
- 46.50194
- ],
- [
- 6.55773,
- 46.59687
- ],
- [
- 6.72895,
- 46.59805
- ],
- [
- 6.7304,
- 46.49004
- ],
- [
- 6.67702,
- 46.48978
- ],
- [
- 6.67703,
- 46.49011
- ],
- [
- 6.67345,
- 46.49006
- ],
- [
- 6.67347,
- 46.49041
- ],
- [
- 6.66672,
- 46.49036
- ],
- [
- 6.66668,
- 46.49441
- ]
- ]
- ],
- "terms_url": "http://carto.lausanne.ch/lausanne-gc/",
- "terms_text": "Ville de Lausanne - Orthophoto technique 2012"
- },
- {
- "id": "LINZ_NZ_Aerial_Imagery",
- "name": "LINZ NZ Aerial Imagery",
- "type": "tms",
- "template": "https://tiles-a.data-cdn.linz.govt.nz/services;key=3197c6d0e5cb494a95d58dc2de3216c2/tiles/v4/set=2/EPSG:3857/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 21
- ],
- "polygon": [
- [
- [
- 167.25037,
- -47.21957
- ],
- [
- 167.24487,
- -47.28016
- ],
- [
- 167.50305,
- -47.37975
- ],
- [
- 168.25012,
- -47.1561
- ],
- [
- 168.74451,
- -46.7963
- ],
- [
- 169.32678,
- -46.75492
- ],
- [
- 169.78271,
- -46.60417
- ],
- [
- 170.42542,
- -46.11133
- ],
- [
- 170.80444,
- -45.95115
- ],
- [
- 170.95276,
- -45.44086
- ],
- [
- 171.30981,
- -44.91036
- ],
- [
- 171.40869,
- -44.39062
- ],
- [
- 172.56226,
- -43.92955
- ],
- [
- 172.90283,
- -43.9691
- ],
- [
- 173.16101,
- -43.90977
- ],
- [
- 173.25989,
- -43.69568
- ],
- [
- 172.97424,
- -43.5366
- ],
- [
- 172.76001,
- -43.37711
- ],
- [
- 173.15002,
- -43.17714
- ],
- [
- 173.70483,
- -42.63396
- ],
- [
- 174.36401,
- -41.7836
- ],
- [
- 174.32007,
- -41.40978
- ],
- [
- 174.84741,
- -41.52914
- ],
- [
- 175.07263,
- -41.70573
- ],
- [
- 175.50659,
- -41.67291
- ],
- [
- 176.2262,
- -41.10833
- ],
- [
- 176.83044,
- -40.42604
- ],
- [
- 177.17102,
- -39.67337
- ],
- [
- 177.03918,
- -39.39375
- ],
- [
- 177.44568,
- -39.18118
- ],
- [
- 177.60498,
- -39.33005
- ],
- [
- 177.97852,
- -39.36828
- ],
- [
- 178.33557,
- -38.65978
- ],
- [
- 178.70911,
- -37.74466
- ],
- [
- 178.62671,
- -37.54458
- ],
- [
- 178.3136,
- -37.43125
- ],
- [
- 177.62146,
- -37.37889
- ],
- [
- 177.03918,
- -37.39635
- ],
- [
- 176.56128,
- -37.37016
- ],
- [
- 176.33606,
- -37.05956
- ],
- [
- 176.00647,
- -36.29742
- ],
- [
- 175.67688,
- -36.05354
- ],
- [
- 174.67163,
- -35.1783
- ],
- [
- 173.19397,
- -34.28445
- ],
- [
- 172.67761,
- -34.23451
- ],
- [
- 172.38647,
- -34.40238
- ],
- [
- 172.47986,
- -34.71904
- ],
- [
- 172.98523,
- -35.32185
- ],
- [
- 173.56201,
- -36.14231
- ],
- [
- 174.30908,
- -37.07709
- ],
- [
- 174.55627,
- -38.05242
- ],
- [
- 174.47937,
- -38.65549
- ],
- [
- 174.32556,
- -38.86537
- ],
- [
- 173.79822,
- -38.95941
- ],
- [
- 173.60596,
- -39.23225
- ],
- [
- 173.69934,
- -39.56335
- ],
- [
- 174.58923,
- -39.95607
- ],
- [
- 174.98474,
- -40.21664
- ],
- [
- 174.98474,
- -40.49292
- ],
- [
- 174.72107,
- -40.80549
- ],
- [
- 174.14978,
- -40.65147
- ],
- [
- 173.28186,
- -40.4344
- ],
- [
- 172.58972,
- -40.35073
- ],
- [
- 172.08435,
- -40.53468
- ],
- [
- 171.76575,
- -40.82628
- ],
- [
- 171.57349,
- -41.39742
- ],
- [
- 171.28235,
- -41.65239
- ],
- [
- 170.87585,
- -42.53284
- ],
- [
- 170.354,
- -42.87194
- ],
- [
- 168.27759,
- -43.92955
- ],
- [
- 167.6239,
- -44.47691
- ],
- [
- 166.55273,
- -45.38688
- ],
- [
- 166.27258,
- -45.91677
- ],
- [
- 166.48132,
- -46.22545
- ],
- [
- 167.67883,
- -46.47192
- ],
- [
- 167.25037,
- -47.21957
- ]
- ]
- ],
- "terms_url": "https://www.linz.govt.nz/data/licensing-and-using-data/attributing-elevation-or-aerial-imagery-data",
- "terms_text": "Sourced from LINZ CC-BY 4.0",
- "best": true
- },
- {
- "id": "LINZ_NZ_Topo50_Gridless_Maps",
- "name": "LINZ NZ Topo50 Gridless Maps",
- "type": "tms",
- "template": "https://tiles-a.data-cdn.linz.govt.nz/services;key=3197c6d0e5cb494a95d58dc2de3216c2/tiles/v4/layer=2343/EPSG:3857/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 21
- ],
- "polygon": [
- [
- [
- 167.25037,
- -47.21957
- ],
- [
- 167.24487,
- -47.28016
- ],
- [
- 167.50305,
- -47.37975
- ],
- [
- 168.25012,
- -47.1561
- ],
- [
- 168.74451,
- -46.7963
- ],
- [
- 169.32678,
- -46.75492
- ],
- [
- 169.78271,
- -46.60417
- ],
- [
- 170.42542,
- -46.11133
- ],
- [
- 170.80444,
- -45.95115
- ],
- [
- 170.95276,
- -45.44086
- ],
- [
- 171.30981,
- -44.91036
- ],
- [
- 171.40869,
- -44.39062
- ],
- [
- 172.56226,
- -43.92955
- ],
- [
- 172.90283,
- -43.9691
- ],
- [
- 173.16101,
- -43.90977
- ],
- [
- 173.25989,
- -43.69568
- ],
- [
- 172.97424,
- -43.5366
- ],
- [
- 172.76001,
- -43.37711
- ],
- [
- 173.15002,
- -43.17714
- ],
- [
- 173.70483,
- -42.63396
- ],
- [
- 174.36401,
- -41.7836
- ],
- [
- 174.32007,
- -41.40978
- ],
- [
- 174.84741,
- -41.52914
- ],
- [
- 175.07263,
- -41.70573
- ],
- [
- 175.50659,
- -41.67291
- ],
- [
- 176.2262,
- -41.10833
- ],
- [
- 176.83044,
- -40.42604
- ],
- [
- 177.17102,
- -39.67337
- ],
- [
- 177.03918,
- -39.39375
- ],
- [
- 177.44568,
- -39.18118
- ],
- [
- 177.60498,
- -39.33005
- ],
- [
- 177.97852,
- -39.36828
- ],
- [
- 178.33557,
- -38.65978
- ],
- [
- 178.70911,
- -37.74466
- ],
- [
- 178.62671,
- -37.54458
- ],
- [
- 178.3136,
- -37.43125
- ],
- [
- 177.62146,
- -37.37889
- ],
- [
- 177.03918,
- -37.39635
- ],
- [
- 176.56128,
- -37.37016
- ],
- [
- 176.33606,
- -37.05956
- ],
- [
- 176.00647,
- -36.29742
- ],
- [
- 175.67688,
- -36.05354
- ],
- [
- 174.67163,
- -35.1783
- ],
- [
- 173.19397,
- -34.28445
- ],
- [
- 172.67761,
- -34.23451
- ],
- [
- 172.38647,
- -34.40238
- ],
- [
- 172.47986,
- -34.71904
- ],
- [
- 172.98523,
- -35.32185
- ],
- [
- 173.56201,
- -36.14231
- ],
- [
- 174.30908,
- -37.07709
- ],
- [
- 174.55627,
- -38.05242
- ],
- [
- 174.47937,
- -38.65549
- ],
- [
- 174.32556,
- -38.86537
- ],
- [
- 173.79822,
- -38.95941
- ],
- [
- 173.60596,
- -39.23225
- ],
- [
- 173.69934,
- -39.56335
- ],
- [
- 174.58923,
- -39.95607
- ],
- [
- 174.98474,
- -40.21664
- ],
- [
- 174.98474,
- -40.49292
- ],
- [
- 174.72107,
- -40.80549
- ],
- [
- 174.14978,
- -40.65147
- ],
- [
- 173.28186,
- -40.4344
- ],
- [
- 172.58972,
- -40.35073
- ],
- [
- 172.08435,
- -40.53468
- ],
- [
- 171.76575,
- -40.82628
- ],
- [
- 171.57349,
- -41.39742
- ],
- [
- 171.28235,
- -41.65239
- ],
- [
- 170.87585,
- -42.53284
- ],
- [
- 170.354,
- -42.87194
- ],
- [
- 168.27759,
- -43.92955
- ],
- [
- 167.6239,
- -44.47691
- ],
- [
- 166.55273,
- -45.38688
- ],
- [
- 166.27258,
- -45.91677
- ],
- [
- 166.48132,
- -46.22545
- ],
- [
- 167.67883,
- -46.47192
- ],
- [
- 167.25037,
- -47.21957
- ]
- ]
- ],
- "terms_url": "https://data.linz.govt.nz/layer/2343-nz-mainland-topo50-gridless-maps",
- "terms_text": "CC BY 4.0 Land Information New Zealand"
- },
- {
- "id": "ORT10LT",
- "name": "Lithuania - NŽT ORT10LT",
- "type": "tms",
- "template": "https://ort10lt.openmap.lt/g16/{zoom}/{x}/{y}.jpeg",
- "endDate": "2016-01-01T00:00:00.000Z",
- "startDate": "2010-01-01T00:00:00.000Z",
- "scaleExtent": [
- 4,
- 18
- ],
- "polygon": [
- [
- [
- 26.21384,
- 55.85075
- ],
- [
- 26.38583,
- 55.70453
- ],
- [
- 26.63036,
- 55.68067
- ],
- [
- 26.62053,
- 55.56892
- ],
- [
- 26.52422,
- 55.50992
- ],
- [
- 26.55415,
- 55.38883
- ],
- [
- 26.43993,
- 55.34794
- ],
- [
- 26.79197,
- 55.3212
- ],
- [
- 26.82913,
- 55.27635
- ],
- [
- 26.74346,
- 55.25399
- ],
- [
- 26.67648,
- 55.15883
- ],
- [
- 26.46112,
- 55.12856
- ],
- [
- 26.35774,
- 55.15054
- ],
- [
- 26.22963,
- 55.10732
- ],
- [
- 26.27138,
- 55.07759
- ],
- [
- 26.20851,
- 54.99741
- ],
- [
- 26.06191,
- 54.94161
- ],
- [
- 25.85782,
- 54.9276
- ],
- [
- 25.74298,
- 54.81506
- ],
- [
- 25.76261,
- 54.5769
- ],
- [
- 25.53194,
- 54.34182
- ],
- [
- 25.67716,
- 54.32381
- ],
- [
- 25.78573,
- 54.23362
- ],
- [
- 25.78588,
- 54.15506
- ],
- [
- 25.55508,
- 54.14619
- ],
- [
- 25.51095,
- 54.17503
- ],
- [
- 25.58967,
- 54.22858
- ],
- [
- 25.51362,
- 54.30785
- ],
- [
- 25.26893,
- 54.27447
- ],
- [
- 25.0706,
- 54.13363
- ],
- [
- 24.95737,
- 54.17206
- ],
- [
- 24.81338,
- 54.14486
- ],
- [
- 24.77902,
- 54.09991
- ],
- [
- 24.87128,
- 54.0349
- ],
- [
- 24.81957,
- 53.99772
- ],
- [
- 24.68459,
- 53.96211
- ],
- [
- 24.69787,
- 54.01714
- ],
- [
- 24.62591,
- 54.0105
- ],
- [
- 24.43426,
- 53.90144
- ],
- [
- 24.35206,
- 53.89679
- ],
- [
- 24.20161,
- 53.97001
- ],
- [
- 23.96833,
- 53.9267
- ],
- [
- 23.91302,
- 53.96968
- ],
- [
- 23.77812,
- 53.89892
- ],
- [
- 23.70977,
- 53.93945
- ],
- [
- 23.53704,
- 53.94307
- ],
- [
- 23.48224,
- 53.98938
- ],
- [
- 23.52734,
- 54.04735
- ],
- [
- 23.48586,
- 54.15323
- ],
- [
- 23.38679,
- 54.22484
- ],
- [
- 23.04212,
- 54.31597
- ],
- [
- 23.01021,
- 54.3828
- ],
- [
- 22.85469,
- 54.4104
- ],
- [
- 22.792,
- 54.36332
- ],
- [
- 22.70234,
- 54.4529
- ],
- [
- 22.68386,
- 54.58597
- ],
- [
- 22.74897,
- 54.63198
- ],
- [
- 22.74297,
- 54.72682
- ],
- [
- 22.88668,
- 54.8135
- ],
- [
- 22.8204,
- 54.91198
- ],
- [
- 22.6424,
- 54.97134
- ],
- [
- 22.58924,
- 55.07024
- ],
- [
- 22.0806,
- 55.02448
- ],
- [
- 22.03241,
- 55.0841
- ],
- [
- 21.91307,
- 55.08168
- ],
- [
- 21.64919,
- 55.18081
- ],
- [
- 21.50151,
- 55.18682
- ],
- [
- 21.38437,
- 55.2937
- ],
- [
- 21.27098,
- 55.24501
- ],
- [
- 21.09836,
- 55.25639
- ],
- [
- 20.94217,
- 55.28245
- ],
- [
- 21.08635,
- 55.56183
- ],
- [
- 21.03995,
- 55.83636
- ],
- [
- 21.06403,
- 56.06995
- ],
- [
- 21.20478,
- 56.08117
- ],
- [
- 21.2308,
- 56.16233
- ],
- [
- 21.5021,
- 56.2955
- ],
- [
- 21.72359,
- 56.31382
- ],
- [
- 21.83566,
- 56.37162
- ],
- [
- 21.96954,
- 56.37665
- ],
- [
- 22.0153,
- 56.42428
- ],
- [
- 22.43727,
- 56.4064
- ],
- [
- 22.68,
- 56.35159
- ],
- [
- 22.91917,
- 56.37902
- ],
- [
- 22.94668,
- 56.41465
- ],
- [
- 23.09325,
- 56.30464
- ],
- [
- 23.17034,
- 56.36677
- ],
- [
- 23.30645,
- 56.38305
- ],
- [
- 23.55717,
- 56.33382
- ],
- [
- 23.7648,
- 56.37332
- ],
- [
- 23.76669,
- 56.32381
- ],
- [
- 24.019,
- 56.32976
- ],
- [
- 24.12146,
- 56.2489
- ],
- [
- 24.28574,
- 56.30064
- ],
- [
- 24.45415,
- 56.25816
- ],
- [
- 24.57947,
- 56.28824
- ],
- [
- 24.62841,
- 56.37533
- ],
- [
- 24.90238,
- 56.48053
- ],
- [
- 25.12774,
- 56.20591
- ],
- [
- 25.57714,
- 56.18241
- ],
- [
- 25.67312,
- 56.14937
- ],
- [
- 26.21384,
- 55.85075
- ]
- ]
- ],
- "terms_url": "https://www.geoportal.lt",
- "terms_text": "NŽT ORT10LT",
- "best": true
- },
- {
- "id": "mapbox_locator_overlay",
- "name": "Locator Overlay",
- "type": "tms",
- "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/openstreetmap.map-inh76ba2/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJncjlmd0t3In0.DmZsIeOW-3x-C5eX-wAqTw",
- "scaleExtent": [
- 0,
- 16
- ],
- "overzoom": false,
- "terms_url": "https://www.mapbox.com/about/maps",
- "terms_text": "Terms & Feedback",
- "default": true,
- "description": "Shows major features to help orient you.",
- "overlay": true
- },
- {
- "id": "Loire_Atlantique-Orthophotos-2012",
- "name": "Loire-Atlantique - Orthophotos 2012 - 20 cm",
- "type": "tms",
- "template": "http://{switch:a,b,c,d,e,f,g,h}.tiles.cg44.makina-corpus.net/ortho-2012/{zoom}/{x}/{-y}.jpg",
- "endDate": "2012-01-01T00:00:00.000Z",
- "startDate": "2012-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 19
- ],
- "polygon": [
- [
- [
- -1.48638,
- 46.87691
- ],
- [
- -1.54437,
- 46.84873
- ],
- [
- -1.73468,
- 46.87246
- ],
- [
- -1.89276,
- 46.94234
- ],
- [
- -1.95475,
- 46.98084
- ],
- [
- -2.07067,
- 47.08521
- ],
- [
- -2.2678,
- 47.12656
- ],
- [
- -2.22627,
- 47.17124
- ],
- [
- -2.19217,
- 47.16914
- ],
- [
- -2.19341,
- 47.25546
- ],
- [
- -2.29694,
- 47.22769
- ],
- [
- -2.41658,
- 47.25336
- ],
- [
- -2.54862,
- 47.28575
- ],
- [
- -2.63913,
- 47.41678
- ],
- [
- -2.50573,
- 47.50812
- ],
- [
- -2.31063,
- 47.53021
- ],
- [
- -2.24836,
- 47.52384
- ],
- [
- -2.23223,
- 47.51499
- ],
- [
- -2.12109,
- 47.54674
- ],
- [
- -2.11783,
- 47.60126
- ],
- [
- -2.1001,
- 47.61123
- ],
- [
- -2.09981,
- 47.62005
- ],
- [
- -2.11141,
- 47.62873
- ],
- [
- -2.10055,
- 47.65141
- ],
- [
- -2.08121,
- 47.66578
- ],
- [
- -1.98016,
- 47.70751
- ],
- [
- -1.83077,
- 47.72419
- ],
- [
- -1.67455,
- 47.72544
- ],
- [
- -1.63735,
- 47.77463
- ],
- [
- -1.49601,
- 47.81752
- ],
- [
- -1.49911,
- 47.84166
- ],
- [
- -1.38133,
- 47.84415
- ],
- [
- -1.346,
- 47.81086
- ],
- [
- -1.23007,
- 47.78587
- ],
- [
- -1.21643,
- 47.75838
- ],
- [
- -1.22635,
- 47.73628
- ],
- [
- -1.21086,
- 47.7317
- ],
- [
- -1.18668,
- 47.73462
- ],
- [
- -1.15196,
- 47.69332
- ],
- [
- -1.13151,
- 47.63654
- ],
- [
- -1.09121,
- 47.6332
- ],
- [
- -0.99265,
- 47.6027
- ],
- [
- -0.98459,
- 47.58598
- ],
- [
- -1.0317,
- 47.55001
- ],
- [
- -1.13585,
- 47.55628
- ],
- [
- -1.13275,
- 47.5161
- ],
- [
- -1.0317,
- 47.51778
- ],
- [
- -0.94863,
- 47.50103
- ],
- [
- -0.93686,
- 47.47715
- ],
- [
- -0.93376,
- 47.43859
- ],
- [
- -0.9009,
- 47.39874
- ],
- [
- -0.92694,
- 47.37482
- ],
- [
- -0.97157,
- 47.35845
- ],
- [
- -1.28339,
- 47.32736
- ],
- [
- -1.23379,
- 47.26093
- ],
- [
- -1.20032,
- 47.26935
- ],
- [
- -1.16498,
- 47.24957
- ],
- [
- -1.14143,
- 47.1763
- ],
- [
- -1.1563,
- 47.15818
- ],
- [
- -1.20652,
- 47.12402
- ],
- [
- -1.20838,
- 47.10968
- ],
- [
- -1.15568,
- 47.10504
- ],
- [
- -1.14081,
- 47.08056
- ],
- [
- -1.09431,
- 47.0717
- ],
- [
- -1.09989,
- 47.03199
- ],
- [
- -1.14453,
- 47.01636
- ],
- [
- -1.21582,
- 47.02904
- ],
- [
- -1.26727,
- 47.06325
- ],
- [
- -1.28524,
- 47.02185
- ],
- [
- -1.34972,
- 47.02397
- ],
- [
- -1.33918,
- 46.969
- ],
- [
- -1.3491,
- 46.94446
- ],
- [
- -1.45014,
- 46.91186
- ],
- [
- -1.47504,
- 46.9176
- ],
- [
- -1.48775,
- 46.93063
- ],
- [
- -1.49235,
- 46.98433
- ],
- [
- -1.48644,
- 46.99943
- ],
- [
- -1.49213,
- 47.02722
- ],
- [
- -1.52764,
- 47.00541
- ],
- [
- -1.52961,
- 46.97252
- ],
- [
- -1.50507,
- 46.94439
- ],
- [
- -1.50222,
- 46.92973
- ],
- [
- -1.51142,
- 46.91371
- ],
- [
- -1.48622,
- 46.89724
- ],
- [
- -1.48638,
- 46.87691
- ]
- ]
- ],
- "terms_url": "http://data.loire-atlantique.fr/licence",
- "terms_text": "Département de Loire-Atlantique"
- },
- {
- "id": "Lombardia-Italy-CTR-DBT",
- "name": "Lombardia - Italy (CTR DBT)",
- "type": "wms",
- "template": "https://www.cartografia.servizirl.it/arcgis/services/wms/ctr_wms/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Sfondo%20C.T.R.%2010000&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- 8.4816,
- 45.28938
- ],
- [
- 8.63085,
- 45.01372
- ],
- [
- 8.78009,
- 44.98189
- ],
- [
- 8.86775,
- 45.02712
- ],
- [
- 9.07148,
- 44.80063
- ],
- [
- 9.14966,
- 44.79055
- ],
- [
- 9.19467,
- 44.67106
- ],
- [
- 9.31549,
- 44.65758
- ],
- [
- 9.36997,
- 44.698
- ],
- [
- 9.37945,
- 44.82752
- ],
- [
- 9.33207,
- 44.91483
- ],
- [
- 9.41025,
- 45.03716
- ],
- [
- 9.78692,
- 45.04386
- ],
- [
- 9.78692,
- 45.00032
- ],
- [
- 9.93853,
- 45.002
- ],
- [
- 9.93379,
- 45.08903
- ],
- [
- 10.00013,
- 45.09071
- ],
- [
- 10.00013,
- 44.99697
- ],
- [
- 10.20149,
- 45.002
- ],
- [
- 10.20149,
- 44.95004
- ],
- [
- 10.40523,
- 44.9534
- ],
- [
- 10.40523,
- 44.90476
- ],
- [
- 10.49288,
- 44.90308
- ],
- [
- 10.49288,
- 44.8628
- ],
- [
- 10.6516,
- 44.85776
- ],
- [
- 10.64686,
- 44.90308
- ],
- [
- 11.35282,
- 44.89469
- ],
- [
- 11.35519,
- 44.93663
- ],
- [
- 11.45706,
- 44.93328
- ],
- [
- 11.44758,
- 44.97351
- ],
- [
- 11.3623,
- 45.00032
- ],
- [
- 11.35282,
- 45.09238
- ],
- [
- 11.25806,
- 45.09572
- ],
- [
- 11.25806,
- 45.13752
- ],
- [
- 11.16094,
- 45.14253
- ],
- [
- 11.16094,
- 45.18262
- ],
- [
- 11.05196,
- 45.19097
- ],
- [
- 11.05196,
- 45.23436
- ],
- [
- 10.9572,
- 45.23269
- ],
- [
- 10.9572,
- 45.28605
- ],
- [
- 10.8577,
- 45.28438
- ],
- [
- 10.85534,
- 45.32271
- ],
- [
- 10.74636,
- 45.32937
- ],
- [
- 10.75347,
- 45.47408
- ],
- [
- 10.64686,
- 45.48073
- ],
- [
- 10.60301,
- 45.51074
- ],
- [
- 10.57636,
- 45.47379
- ],
- [
- 10.53549,
- 45.50036
- ],
- [
- 10.59116,
- 45.53148
- ],
- [
- 10.61666,
- 45.61304
- ],
- [
- 10.87429,
- 45.84001
- ],
- [
- 10.82217,
- 45.85982
- ],
- [
- 10.67529,
- 45.85817
- ],
- [
- 10.57342,
- 45.8103
- ],
- [
- 10.58624,
- 46.00773
- ],
- [
- 10.5016,
- 46.01596
- ],
- [
- 10.59325,
- 46.11529
- ],
- [
- 10.60896,
- 46.35583
- ],
- [
- 10.65634,
- 46.38688
- ],
- [
- 10.64686,
- 46.46037
- ],
- [
- 10.4147,
- 46.57285
- ],
- [
- 10.32705,
- 46.56797
- ],
- [
- 10.25124,
- 46.65422
- ],
- [
- 10.07357,
- 46.62494
- ],
- [
- 10.02382,
- 46.53212
- ],
- [
- 10.02855,
- 46.43588
- ],
- [
- 10.07357,
- 46.39832
- ],
- [
- 10.12095,
- 46.39669
- ],
- [
- 10.0783,
- 46.32802
- ],
- [
- 10.14464,
- 46.26582
- ],
- [
- 10.10436,
- 46.24781
- ],
- [
- 9.97407,
- 46.40812
- ],
- [
- 9.71111,
- 46.3689
- ],
- [
- 9.68742,
- 46.32312
- ],
- [
- 9.61872,
- 46.30675
- ],
- [
- 9.55712,
- 46.32475
- ],
- [
- 9.50264,
- 46.39015
- ],
- [
- 9.47895,
- 46.5256
- ],
- [
- 9.25626,
- 46.51582
- ],
- [
- 9.22546,
- 46.44078
- ],
- [
- 9.27284,
- 46.34438
- ],
- [
- 9.17098,
- 46.19044
- ],
- [
- 9.04305,
- 46.12808
- ],
- [
- 9.062,
- 46.09195
- ],
- [
- 8.97435,
- 46.04593
- ],
- [
- 8.98856,
- 46.00152
- ],
- [
- 8.93882,
- 45.97354
- ],
- [
- 9.04068,
- 45.8961
- ],
- [
- 9.01936,
- 45.84827
- ],
- [
- 8.84879,
- 46.0081
- ],
- [
- 8.89854,
- 46.07059
- ],
- [
- 8.8251,
- 46.11823
- ],
- [
- 8.70902,
- 46.11659
- ],
- [
- 8.67823,
- 46.07552
- ],
- [
- 8.7185,
- 46.01468
- ],
- [
- 8.55504,
- 45.90434
- ],
- [
- 8.59768,
- 45.83836
- ],
- [
- 8.53372,
- 45.79378
- ],
- [
- 8.6877,
- 45.49235
- ],
- [
- 8.78009,
- 45.41591
- ],
- [
- 8.68533,
- 45.37931
- ],
- [
- 8.71139,
- 45.34103
- ],
- [
- 8.69481,
- 45.32104
- ],
- [
- 8.62848,
- 45.37765
- ],
- [
- 8.5124,
- 45.35768
- ],
- [
- 8.4816,
- 45.28938
- ]
- ]
- ],
- "terms_url": "https://www.dati.gov.it/content/italian-open-data-license-v20",
- "terms_text": "CTR DBT 10000 Regione Lombardia"
- },
- {
- "id": "Lombardia-Italy-CTR",
- "name": "Lombardia - Italy (CTR)",
- "type": "wms",
- "template": "https://www.cartografia.regione.lombardia.it/ArcGIS10/services/wms/ctr_wms/MapServer/WMSServer?STYLES=&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=0&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- 8.4816,
- 45.28938
- ],
- [
- 8.63085,
- 45.01372
- ],
- [
- 8.78009,
- 44.98189
- ],
- [
- 8.86775,
- 45.02712
- ],
- [
- 9.07148,
- 44.80063
- ],
- [
- 9.14966,
- 44.79055
- ],
- [
- 9.19467,
- 44.67106
- ],
- [
- 9.31549,
- 44.65758
- ],
- [
- 9.36997,
- 44.698
- ],
- [
- 9.37945,
- 44.82752
- ],
- [
- 9.33207,
- 44.91483
- ],
- [
- 9.41025,
- 45.03716
- ],
- [
- 9.78692,
- 45.04386
- ],
- [
- 9.78692,
- 45.00032
- ],
- [
- 9.93853,
- 45.002
- ],
- [
- 9.93379,
- 45.08903
- ],
- [
- 10.00013,
- 45.09071
- ],
- [
- 10.00013,
- 44.99697
- ],
- [
- 10.20149,
- 45.002
- ],
- [
- 10.20149,
- 44.95004
- ],
- [
- 10.40523,
- 44.9534
- ],
- [
- 10.40523,
- 44.90476
- ],
- [
- 10.49288,
- 44.90308
- ],
- [
- 10.49288,
- 44.8628
- ],
- [
- 10.6516,
- 44.85776
- ],
- [
- 10.64686,
- 44.90308
- ],
- [
- 11.35282,
- 44.89469
- ],
- [
- 11.35519,
- 44.93663
- ],
- [
- 11.45706,
- 44.93328
- ],
- [
- 11.44758,
- 44.97351
- ],
- [
- 11.3623,
- 45.00032
- ],
- [
- 11.35282,
- 45.09238
- ],
- [
- 11.25806,
- 45.09572
- ],
- [
- 11.25806,
- 45.13752
- ],
- [
- 11.16094,
- 45.14253
- ],
- [
- 11.16094,
- 45.18262
- ],
- [
- 11.05196,
- 45.19097
- ],
- [
- 11.05196,
- 45.23436
- ],
- [
- 10.9572,
- 45.23269
- ],
- [
- 10.9572,
- 45.28605
- ],
- [
- 10.8577,
- 45.28438
- ],
- [
- 10.85534,
- 45.32271
- ],
- [
- 10.74636,
- 45.32937
- ],
- [
- 10.75347,
- 45.47408
- ],
- [
- 10.64686,
- 45.48073
- ],
- [
- 10.60301,
- 45.51074
- ],
- [
- 10.57636,
- 45.47379
- ],
- [
- 10.53549,
- 45.50036
- ],
- [
- 10.59116,
- 45.53148
- ],
- [
- 10.61666,
- 45.61304
- ],
- [
- 10.87429,
- 45.84001
- ],
- [
- 10.82217,
- 45.85982
- ],
- [
- 10.67529,
- 45.85817
- ],
- [
- 10.57342,
- 45.8103
- ],
- [
- 10.58624,
- 46.00773
- ],
- [
- 10.5016,
- 46.01596
- ],
- [
- 10.59325,
- 46.11529
- ],
- [
- 10.60896,
- 46.35583
- ],
- [
- 10.65634,
- 46.38688
- ],
- [
- 10.64686,
- 46.46037
- ],
- [
- 10.4147,
- 46.57285
- ],
- [
- 10.32705,
- 46.56797
- ],
- [
- 10.25124,
- 46.65422
- ],
- [
- 10.07357,
- 46.62494
- ],
- [
- 10.02382,
- 46.53212
- ],
- [
- 10.02855,
- 46.43588
- ],
- [
- 10.07357,
- 46.39832
- ],
- [
- 10.12095,
- 46.39669
- ],
- [
- 10.0783,
- 46.32802
- ],
- [
- 10.14464,
- 46.26582
- ],
- [
- 10.10436,
- 46.24781
- ],
- [
- 9.97407,
- 46.40812
- ],
- [
- 9.71111,
- 46.3689
- ],
- [
- 9.68742,
- 46.32312
- ],
- [
- 9.61872,
- 46.30675
- ],
- [
- 9.55712,
- 46.32475
- ],
- [
- 9.50264,
- 46.39015
- ],
- [
- 9.47895,
- 46.5256
- ],
- [
- 9.25626,
- 46.51582
- ],
- [
- 9.22546,
- 46.44078
- ],
- [
- 9.27284,
- 46.34438
- ],
- [
- 9.17098,
- 46.19044
- ],
- [
- 9.04305,
- 46.12808
- ],
- [
- 9.062,
- 46.09195
- ],
- [
- 8.97435,
- 46.04593
- ],
- [
- 8.98856,
- 46.00152
- ],
- [
- 8.93882,
- 45.97354
- ],
- [
- 9.04068,
- 45.8961
- ],
- [
- 9.01936,
- 45.84827
- ],
- [
- 8.84879,
- 46.0081
- ],
- [
- 8.89854,
- 46.07059
- ],
- [
- 8.8251,
- 46.11823
- ],
- [
- 8.70902,
- 46.11659
- ],
- [
- 8.67823,
- 46.07552
- ],
- [
- 8.7185,
- 46.01468
- ],
- [
- 8.55504,
- 45.90434
- ],
- [
- 8.59768,
- 45.83836
- ],
- [
- 8.53372,
- 45.79378
- ],
- [
- 8.6877,
- 45.49235
- ],
- [
- 8.78009,
- 45.41591
- ],
- [
- 8.68533,
- 45.37931
- ],
- [
- 8.71139,
- 45.34103
- ],
- [
- 8.69481,
- 45.32104
- ],
- [
- 8.62848,
- 45.37765
- ],
- [
- 8.5124,
- 45.35768
- ],
- [
- 8.4816,
- 45.28938
- ]
- ]
- ],
- "terms_url": "https://www.dati.gov.it/content/italian-open-data-license-v20",
- "terms_text": "Regione Lombardia - Infrastruttura per l'informazione territoriale"
- },
- {
- "id": "londrina2011",
- "name": "Londrina Ortofoto 2011",
- "type": "tms",
- "template": "https://siglon.londrina.pr.gov.br/arcgis/rest/services/Imagens/Ortofotos_2011_Paranacidade/MapServer/WMTS/tile/1.0.0/Imagens_Ortofotos_2011_Paranacidade/default/GoogleMapsCompatible/{zoom}/{y}/{x}",
- "endDate": "2011-01-01T00:00:00.000Z",
- "startDate": "2011-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- -51.10903,
- -23.39275
- ],
- [
- -51.11015,
- -23.39112
- ],
- [
- -51.11198,
- -23.3896
- ],
- [
- -51.11358,
- -23.38977
- ],
- [
- -51.121,
- -23.38593
- ],
- [
- -51.12225,
- -23.38511
- ],
- [
- -51.12483,
- -23.3835
- ],
- [
- -51.12538,
- -23.38187
- ],
- [
- -51.12482,
- -23.3777
- ],
- [
- -51.12446,
- -23.37505
- ],
- [
- -51.12437,
- -23.3723
- ],
- [
- -51.12244,
- -23.37033
- ],
- [
- -51.12302,
- -23.36643
- ],
- [
- -51.12856,
- -23.36548
- ],
- [
- -51.12832,
- -23.35884
- ],
- [
- -51.12477,
- -23.35476
- ],
- [
- -51.12703,
- -23.35091
- ],
- [
- -51.12412,
- -23.3468
- ],
- [
- -51.12025,
- -23.34781
- ],
- [
- -51.11765,
- -23.33969
- ],
- [
- -51.11265,
- -23.34129
- ],
- [
- -51.1094,
- -23.33489
- ],
- [
- -51.10756,
- -23.33409
- ],
- [
- -51.10486,
- -23.33398
- ],
- [
- -51.10253,
- -23.33419
- ],
- [
- -51.09987,
- -23.33102
- ],
- [
- -51.09801,
- -23.32936
- ],
- [
- -51.09999,
- -23.32831
- ],
- [
- -51.10323,
- -23.32532
- ],
- [
- -51.10473,
- -23.32319
- ],
- [
- -51.10466,
- -23.32129
- ],
- [
- -51.10515,
- -23.31844
- ],
- [
- -51.10636,
- -23.31575
- ],
- [
- -51.10661,
- -23.31467
- ],
- [
- -51.1105,
- -23.31167
- ],
- [
- -51.11158,
- -23.30842
- ],
- [
- -51.0995,
- -23.30947
- ],
- [
- -51.0974,
- -23.30863
- ],
- [
- -51.09512,
- -23.30745
- ],
- [
- -51.09202,
- -23.30494
- ],
- [
- -51.09036,
- -23.30371
- ],
- [
- -51.09205,
- -23.29875
- ],
- [
- -51.09269,
- -23.2975
- ],
- [
- -51.09408,
- -23.29295
- ],
- [
- -51.10074,
- -23.29332
- ],
- [
- -51.10102,
- -23.28871
- ],
- [
- -51.10068,
- -23.28837
- ],
- [
- -51.10085,
- -23.28778
- ],
- [
- -51.09938,
- -23.28664
- ],
- [
- -51.09632,
- -23.27791
- ],
- [
- -51.10285,
- -23.27302
- ],
- [
- -51.10836,
- -23.27034
- ],
- [
- -51.1131,
- -23.2684
- ],
- [
- -51.1316,
- -23.26534
- ],
- [
- -51.13188,
- -23.26201
- ],
- [
- -51.13173,
- -23.25506
- ],
- [
- -51.1329,
- -23.25468
- ],
- [
- -51.13296,
- -23.25075
- ],
- [
- -51.13474,
- -23.25127
- ],
- [
- -51.13534,
- -23.25133
- ],
- [
- -51.13517,
- -23.24359
- ],
- [
- -51.13535,
- -23.24118
- ],
- [
- -51.13752,
- -23.24219
- ],
- [
- -51.13885,
- -23.2435
- ],
- [
- -51.14109,
- -23.24521
- ],
- [
- -51.14717,
- -23.24318
- ],
- [
- -51.14761,
- -23.23828
- ],
- [
- -51.14908,
- -23.23588
- ],
- [
- -51.14977,
- -23.23681
- ],
- [
- -51.15139,
- -23.23854
- ],
- [
- -51.15289,
- -23.23884
- ],
- [
- -51.15384,
- -23.23895
- ],
- [
- -51.1582,
- -23.23814
- ],
- [
- -51.16045,
- -23.23816
- ],
- [
- -51.16035,
- -23.24658
- ],
- [
- -51.15912,
- -23.24783
- ],
- [
- -51.16131,
- -23.24777
- ],
- [
- -51.16659,
- -23.24594
- ],
- [
- -51.17193,
- -23.24582
- ],
- [
- -51.17205,
- -23.24956
- ],
- [
- -51.17424,
- -23.2484
- ],
- [
- -51.17514,
- -23.24932
- ],
- [
- -51.17686,
- -23.24816
- ],
- [
- -51.17947,
- -23.25169
- ],
- [
- -51.18135,
- -23.25381
- ],
- [
- -51.18274,
- -23.25363
- ],
- [
- -51.18379,
- -23.25326
- ],
- [
- -51.18496,
- -23.2533
- ],
- [
- -51.18627,
- -23.25215
- ],
- [
- -51.18665,
- -23.24748
- ],
- [
- -51.19118,
- -23.24914
- ],
- [
- -51.19142,
- -23.25286
- ],
- [
- -51.19369,
- -23.25278
- ],
- [
- -51.19384,
- -23.26074
- ],
- [
- -51.20097,
- -23.26055
- ],
- [
- -51.20127,
- -23.2426
- ],
- [
- -51.20994,
- -23.24278
- ],
- [
- -51.2109,
- -23.26988
- ],
- [
- -51.21969,
- -23.27222
- ],
- [
- -51.22597,
- -23.27453
- ],
- [
- -51.22934,
- -23.2786
- ],
- [
- -51.23452,
- -23.2816
- ],
- [
- -51.23498,
- -23.28325
- ],
- [
- -51.23507,
- -23.28544
- ],
- [
- -51.23371,
- -23.2859
- ],
- [
- -51.23216,
- -23.28802
- ],
- [
- -51.2287,
- -23.29229
- ],
- [
- -51.2274,
- -23.2946
- ],
- [
- -51.22679,
- -23.29548
- ],
- [
- -51.2256,
- -23.29657
- ],
- [
- -51.22393,
- -23.29721
- ],
- [
- -51.22048,
- -23.30073
- ],
- [
- -51.21864,
- -23.3013
- ],
- [
- -51.21668,
- -23.30212
- ],
- [
- -51.21424,
- -23.30441
- ],
- [
- -51.21097,
- -23.30697
- ],
- [
- -51.22328,
- -23.3183
- ],
- [
- -51.22439,
- -23.31459
- ],
- [
- -51.22521,
- -23.31289
- ],
- [
- -51.22512,
- -23.31258
- ],
- [
- -51.22521,
- -23.31251
- ],
- [
- -51.22553,
- -23.31253
- ],
- [
- -51.22595,
- -23.31239
- ],
- [
- -51.22617,
- -23.31183
- ],
- [
- -51.22936,
- -23.31489
- ],
- [
- -51.22802,
- -23.31661
- ],
- [
- -51.22789,
- -23.31902
- ],
- [
- -51.22767,
- -23.32023
- ],
- [
- -51.22723,
- -23.32151
- ],
- [
- -51.22739,
- -23.32223
- ],
- [
- -51.22725,
- -23.32285
- ],
- [
- -51.23033,
- -23.32558
- ],
- [
- -51.23046,
- -23.32671
- ],
- [
- -51.22954,
- -23.32789
- ],
- [
- -51.22916,
- -23.3305
- ],
- [
- -51.22929,
- -23.33178
- ],
- [
- -51.22681,
- -23.33447
- ],
- [
- -51.22602,
- -23.33657
- ],
- [
- -51.22473,
- -23.33839
- ],
- [
- -51.2221,
- -23.34023
- ],
- [
- -51.22257,
- -23.34196
- ],
- [
- -51.22381,
- -23.34339
- ],
- [
- -51.22384,
- -23.34531
- ],
- [
- -51.22441,
- -23.347
- ],
- [
- -51.22454,
- -23.34829
- ],
- [
- -51.22404,
- -23.34968
- ],
- [
- -51.22351,
- -23.35011
- ],
- [
- -51.22382,
- -23.35077
- ],
- [
- -51.22305,
- -23.35174
- ],
- [
- -51.2226,
- -23.35296
- ],
- [
- -51.22587,
- -23.35481
- ],
- [
- -51.2265,
- -23.36706
- ],
- [
- -51.22354,
- -23.36915
- ],
- [
- -51.22367,
- -23.37968
- ],
- [
- -51.22038,
- -23.38163
- ],
- [
- -51.21647,
- -23.3817
- ],
- [
- -51.21416,
- -23.37995
- ],
- [
- -51.20928,
- -23.37395
- ],
- [
- -51.20738,
- -23.36814
- ],
- [
- -51.20629,
- -23.36723
- ],
- [
- -51.20472,
- -23.36627
- ],
- [
- -51.19823,
- -23.36668
- ],
- [
- -51.19297,
- -23.36651
- ],
- [
- -51.18986,
- -23.36544
- ],
- [
- -51.18806,
- -23.36464
- ],
- [
- -51.18718,
- -23.36453
- ],
- [
- -51.1858,
- -23.36374
- ],
- [
- -51.18304,
- -23.36359
- ],
- [
- -51.18071,
- -23.36376
- ],
- [
- -51.17907,
- -23.36158
- ],
- [
- -51.17764,
- -23.35836
- ],
- [
- -51.16684,
- -23.35626
- ],
- [
- -51.16614,
- -23.35854
- ],
- [
- -51.16476,
- -23.36039
- ],
- [
- -51.16077,
- -23.35922
- ],
- [
- -51.15983,
- -23.3666
- ],
- [
- -51.16204,
- -23.36861
- ],
- [
- -51.16276,
- -23.37416
- ],
- [
- -51.15845,
- -23.3758
- ],
- [
- -51.15505,
- -23.37631
- ],
- [
- -51.15396,
- -23.37903
- ],
- [
- -51.15299,
- -23.38105
- ],
- [
- -51.15119,
- -23.38208
- ],
- [
- -51.14917,
- -23.38251
- ],
- [
- -51.14722,
- -23.38216
- ],
- [
- -51.14518,
- -23.38259
- ],
- [
- -51.1441,
- -23.38376
- ],
- [
- -51.14512,
- -23.38808
- ],
- [
- -51.1418,
- -23.3894
- ],
- [
- -51.14031,
- -23.3888
- ],
- [
- -51.14068,
- -23.39161
- ],
- [
- -51.14127,
- -23.39354
- ],
- [
- -51.14094,
- -23.39443
- ],
- [
- -51.14046,
- -23.39536
- ],
- [
- -51.13939,
- -23.3951
- ],
- [
- -51.13739,
- -23.39315
- ],
- [
- -51.13609,
- -23.3898
- ],
- [
- -51.13429,
- -23.38976
- ],
- [
- -51.13216,
- -23.39007
- ],
- [
- -51.13172,
- -23.39286
- ],
- [
- -51.12259,
- -23.38864
- ],
- [
- -51.12228,
- -23.39166
- ],
- [
- -51.11883,
- -23.39317
- ],
- [
- -51.11568,
- -23.39335
- ],
- [
- -51.10903,
- -23.39275
- ]
- ],
- [
- [
- -51.13829,
- -23.41601
- ],
- [
- -51.13331,
- -23.41867
- ],
- [
- -51.13209,
- -23.41644
- ],
- [
- -51.13002,
- -23.41829
- ],
- [
- -51.12869,
- -23.41901
- ],
- [
- -51.12824,
- -23.42103
- ],
- [
- -51.12696,
- -23.42186
- ],
- [
- -51.12533,
- -23.42269
- ],
- [
- -51.12445,
- -23.42097
- ],
- [
- -51.12151,
- -23.42411
- ],
- [
- -51.12063,
- -23.42327
- ],
- [
- -51.11971,
- -23.42312
- ],
- [
- -51.11977,
- -23.42157
- ],
- [
- -51.1188,
- -23.42155
- ],
- [
- -51.11643,
- -23.42084
- ],
- [
- -51.11943,
- -23.41917
- ],
- [
- -51.11787,
- -23.41678
- ],
- [
- -51.11655,
- -23.41731
- ],
- [
- -51.1157,
- -23.4157
- ],
- [
- -51.11512,
- -23.41309
- ],
- [
- -51.11908,
- -23.41111
- ],
- [
- -51.1196,
- -23.4117
- ],
- [
- -51.12052,
- -23.41489
- ],
- [
- -51.12148,
- -23.41714
- ],
- [
- -51.12309,
- -23.41863
- ],
- [
- -51.12755,
- -23.41654
- ],
- [
- -51.12803,
- -23.4174
- ],
- [
- -51.1312,
- -23.41557
- ],
- [
- -51.1308,
- -23.41477
- ],
- [
- -51.13279,
- -23.41264
- ],
- [
- -51.13522,
- -23.41106
- ],
- [
- -51.13586,
- -23.41096
- ],
- [
- -51.13682,
- -23.41119
- ],
- [
- -51.13721,
- -23.41158
- ],
- [
- -51.1373,
- -23.41324
- ],
- [
- -51.13743,
- -23.41471
- ],
- [
- -51.13829,
- -23.41601
- ]
- ],
- [
- [
- -51.18929,
- -23.61469
- ],
- [
- -51.18869,
- -23.61385
- ],
- [
- -51.18818,
- -23.61339
- ],
- [
- -51.18731,
- -23.61302
- ],
- [
- -51.18629,
- -23.61314
- ],
- [
- -51.18402,
- -23.61396
- ],
- [
- -51.18349,
- -23.61397
- ],
- [
- -51.18183,
- -23.61284
- ],
- [
- -51.1814,
- -23.61344
- ],
- [
- -51.18063,
- -23.61314
- ],
- [
- -51.18001,
- -23.61409
- ],
- [
- -51.17866,
- -23.61329
- ],
- [
- -51.18065,
- -23.6106
- ],
- [
- -51.17972,
- -23.61018
- ],
- [
- -51.18062,
- -23.60849
- ],
- [
- -51.18212,
- -23.6085
- ],
- [
- -51.18261,
- -23.60775
- ],
- [
- -51.1832,
- -23.60804
- ],
- [
- -51.18415,
- -23.60628
- ],
- [
- -51.18511,
- -23.60666
- ],
- [
- -51.18649,
- -23.6047
- ],
- [
- -51.18902,
- -23.6061
- ],
- [
- -51.18821,
- -23.60742
- ],
- [
- -51.18919,
- -23.60802
- ],
- [
- -51.1889,
- -23.60953
- ],
- [
- -51.18962,
- -23.60993
- ],
- [
- -51.19119,
- -23.61119
- ],
- [
- -51.19015,
- -23.61245
- ],
- [
- -51.19054,
- -23.61276
- ],
- [
- -51.19029,
- -23.61378
- ],
- [
- -51.18929,
- -23.61469
- ]
- ],
- [
- [
- -51.08006,
- -23.52984
- ],
- [
- -51.07962,
- -23.52205
- ],
- [
- -51.08468,
- -23.52194
- ],
- [
- -51.08582,
- -23.52404
- ],
- [
- -51.08589,
- -23.52704
- ],
- [
- -51.08579,
- -23.52777
- ],
- [
- -51.0853,
- -23.52806
- ],
- [
- -51.08514,
- -23.52857
- ],
- [
- -51.08512,
- -23.52982
- ],
- [
- -51.08471,
- -23.53024
- ],
- [
- -51.08343,
- -23.53024
- ],
- [
- -51.0833,
- -23.52978
- ],
- [
- -51.08006,
- -23.52984
- ]
- ]
- ],
- "terms_url": "http://siglon.londrina.pr.gov.br",
- "terms_text": "Prefeitura do Londrinas, PR"
- },
- {
- "id": "LPI_NSW_Administrative_Boundaries_County",
- "name": "LPI NSW Administrative Boundaries County",
- "type": "wms",
- "template": "https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=4&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE",
- "projection": "EPSG:3857",
- "scaleExtent": [
- 1,
- 21
- ],
- "polygon": [
- [
- [
- 159.00339,
- -31.48767
- ],
- [
- 159.03789,
- -31.70558
- ],
- [
- 159.31098,
- -31.85952
- ],
- [
- 159.37278,
- -31.77892
- ],
- [
- 159.17443,
- -31.4374
- ],
- [
- 159.00339,
- -31.48767
- ]
- ],
- [
- [
- 140.99865,
- -28.99893
- ],
- [
- 148.9452,
- -28.99487
- ],
- [
- 149.48562,
- -28.5615
- ],
- [
- 150.29914,
- -28.53373
- ],
- [
- 151.0954,
- -28.71792
- ],
- [
- 151.39436,
- -28.97978
- ],
- [
- 151.98941,
- -28.73557
- ],
- [
- 151.92904,
- -28.49836
- ],
- [
- 152.49246,
- -28.2353
- ],
- [
- 153.57907,
- -28.14156
- ],
- [
- 153.69692,
- -28.64983
- ],
- [
- 153.25847,
- -30.97354
- ],
- [
- 152.75437,
- -32.50849
- ],
- [
- 151.90879,
- -33.05535
- ],
- [
- 151.25834,
- -34.38081
- ],
- [
- 151.01442,
- -35.11568
- ],
- [
- 150.46154,
- -36.1203
- ],
- [
- 150.41275,
- -36.61786
- ],
- [
- 149.97847,
- -37.507
- ],
- [
- 148.20135,
- -36.80566
- ],
- [
- 148.07918,
- -36.81716
- ],
- [
- 147.88542,
- -36.09019
- ],
- [
- 147.69029,
- -36.04418
- ],
- [
- 146.82844,
- -36.18868
- ],
- [
- 145.23484,
- -35.98499
- ],
- [
- 144.84457,
- -36.21492
- ],
- [
- 144.51935,
- -36.1296
- ],
- [
- 143.20218,
- -35.13174
- ],
- [
- 142.47856,
- -34.81194
- ],
- [
- 140.9937,
- -34.07017
- ],
- [
- 141.0026,
- -34.01974
- ],
- [
- 140.99865,
- -28.99893
- ]
- ]
- ],
- "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
- "terms_text": "© Land and Property Information 2017",
- "overlay": true
- },
- {
- "id": "LPI_NSW_Administrative_Boundaries_LGA",
- "name": "LPI NSW Administrative Boundaries LGA",
- "type": "wms",
- "template": "https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=6&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE",
- "projection": "EPSG:3857",
- "scaleExtent": [
- 1,
- 21
- ],
- "polygon": [
- [
- [
- 159.00339,
- -31.48767
- ],
- [
- 159.03789,
- -31.70558
- ],
- [
- 159.31098,
- -31.85952
- ],
- [
- 159.37278,
- -31.77892
- ],
- [
- 159.17443,
- -31.4374
- ],
- [
- 159.00339,
- -31.48767
- ]
- ],
- [
- [
- 140.99865,
- -28.99893
- ],
- [
- 148.9452,
- -28.99487
- ],
- [
- 149.48562,
- -28.5615
- ],
- [
- 150.29914,
- -28.53373
- ],
- [
- 151.0954,
- -28.71792
- ],
- [
- 151.39436,
- -28.97978
- ],
- [
- 151.98941,
- -28.73557
- ],
- [
- 151.92904,
- -28.49836
- ],
- [
- 152.49246,
- -28.2353
- ],
- [
- 153.57907,
- -28.14156
- ],
- [
- 153.69692,
- -28.64983
- ],
- [
- 153.25847,
- -30.97354
- ],
- [
- 152.75437,
- -32.50849
- ],
- [
- 151.90879,
- -33.05535
- ],
- [
- 151.25834,
- -34.38081
- ],
- [
- 151.01442,
- -35.11568
- ],
- [
- 150.46154,
- -36.1203
- ],
- [
- 150.41275,
- -36.61786
- ],
- [
- 149.97847,
- -37.507
- ],
- [
- 148.20135,
- -36.80566
- ],
- [
- 148.07918,
- -36.81716
- ],
- [
- 147.88542,
- -36.09019
- ],
- [
- 147.69029,
- -36.04418
- ],
- [
- 146.82844,
- -36.18868
- ],
- [
- 145.23484,
- -35.98499
- ],
- [
- 144.84457,
- -36.21492
- ],
- [
- 144.51935,
- -36.1296
- ],
- [
- 143.20218,
- -35.13174
- ],
- [
- 142.47856,
- -34.81194
- ],
- [
- 140.9937,
- -34.07017
- ],
- [
- 141.0026,
- -34.01974
- ],
- [
- 140.99865,
- -28.99893
- ]
- ]
- ],
- "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
- "terms_text": "© Land and Property Information 2017",
- "overlay": true
- },
- {
- "id": "LPI_NSW_Administrative_Boundaries_NPWS_Reserve",
- "name": "LPI NSW Administrative Boundaries NPWS Reserve",
- "type": "wms",
- "template": "https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=1&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE",
- "projection": "EPSG:3857",
- "scaleExtent": [
- 1,
- 21
- ],
- "polygon": [
- [
- [
- 159.00339,
- -31.48767
- ],
- [
- 159.03789,
- -31.70558
- ],
- [
- 159.31098,
- -31.85952
- ],
- [
- 159.37278,
- -31.77892
- ],
- [
- 159.17443,
- -31.4374
- ],
- [
- 159.00339,
- -31.48767
- ]
- ],
- [
- [
- 140.99865,
- -28.99893
- ],
- [
- 148.9452,
- -28.99487
- ],
- [
- 149.48562,
- -28.5615
- ],
- [
- 150.29914,
- -28.53373
- ],
- [
- 151.0954,
- -28.71792
- ],
- [
- 151.39436,
- -28.97978
- ],
- [
- 151.98941,
- -28.73557
- ],
- [
- 151.92904,
- -28.49836
- ],
- [
- 152.49246,
- -28.2353
- ],
- [
- 153.57907,
- -28.14156
- ],
- [
- 153.69692,
- -28.64983
- ],
- [
- 153.25847,
- -30.97354
- ],
- [
- 152.75437,
- -32.50849
- ],
- [
- 151.90879,
- -33.05535
- ],
- [
- 151.25834,
- -34.38081
- ],
- [
- 151.01442,
- -35.11568
- ],
- [
- 150.46154,
- -36.1203
- ],
- [
- 150.41275,
- -36.61786
- ],
- [
- 149.97847,
- -37.507
- ],
- [
- 148.20135,
- -36.80566
- ],
- [
- 148.07918,
- -36.81716
- ],
- [
- 147.88542,
- -36.09019
- ],
- [
- 147.69029,
- -36.04418
- ],
- [
- 146.82844,
- -36.18868
- ],
- [
- 145.23484,
- -35.98499
- ],
- [
- 144.84457,
- -36.21492
- ],
- [
- 144.51935,
- -36.1296
- ],
- [
- 143.20218,
- -35.13174
- ],
- [
- 142.47856,
- -34.81194
- ],
- [
- 140.9937,
- -34.07017
- ],
- [
- 141.0026,
- -34.01974
- ],
- [
- 140.99865,
- -28.99893
- ]
- ]
- ],
- "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
- "terms_text": "© Land and Property Information 2017",
- "overlay": true
- },
- {
- "id": "LPI_NSW_Administrative_Boundaries_Parish",
- "name": "LPI NSW Administrative Boundaries Parish",
- "type": "wms",
- "template": "https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=3&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE",
- "projection": "EPSG:3857",
- "scaleExtent": [
- 1,
- 21
- ],
- "polygon": [
- [
- [
- 159.00339,
- -31.48767
- ],
- [
- 159.03789,
- -31.70558
- ],
- [
- 159.31098,
- -31.85952
- ],
- [
- 159.37278,
- -31.77892
- ],
- [
- 159.17443,
- -31.4374
- ],
- [
- 159.00339,
- -31.48767
- ]
- ],
- [
- [
- 140.99865,
- -28.99893
- ],
- [
- 148.9452,
- -28.99487
- ],
- [
- 149.48562,
- -28.5615
- ],
- [
- 150.29914,
- -28.53373
- ],
- [
- 151.0954,
- -28.71792
- ],
- [
- 151.39436,
- -28.97978
- ],
- [
- 151.98941,
- -28.73557
- ],
- [
- 151.92904,
- -28.49836
- ],
- [
- 152.49246,
- -28.2353
- ],
- [
- 153.57907,
- -28.14156
- ],
- [
- 153.69692,
- -28.64983
- ],
- [
- 153.25847,
- -30.97354
- ],
- [
- 152.75437,
- -32.50849
- ],
- [
- 151.90879,
- -33.05535
- ],
- [
- 151.25834,
- -34.38081
- ],
- [
- 151.01442,
- -35.11568
- ],
- [
- 150.46154,
- -36.1203
- ],
- [
- 150.41275,
- -36.61786
- ],
- [
- 149.97847,
- -37.507
- ],
- [
- 148.20135,
- -36.80566
- ],
- [
- 148.07918,
- -36.81716
- ],
- [
- 147.88542,
- -36.09019
- ],
- [
- 147.69029,
- -36.04418
- ],
- [
- 146.82844,
- -36.18868
- ],
- [
- 145.23484,
- -35.98499
- ],
- [
- 144.84457,
- -36.21492
- ],
- [
- 144.51935,
- -36.1296
- ],
- [
- 143.20218,
- -35.13174
- ],
- [
- 142.47856,
- -34.81194
- ],
- [
- 140.9937,
- -34.07017
- ],
- [
- 141.0026,
- -34.01974
- ],
- [
- 140.99865,
- -28.99893
- ]
- ]
- ],
- "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
- "terms_text": "© Land and Property Information 2017",
- "overlay": true
- },
- {
- "id": "LPI_NSW_Administrative_Boundaries_StateForest",
- "name": "LPI NSW Administrative Boundaries State Forest",
- "type": "wms",
- "template": "https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=2&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE",
- "projection": "EPSG:3857",
- "scaleExtent": [
- 1,
- 21
- ],
- "polygon": [
- [
- [
- 159.00339,
- -31.48767
- ],
- [
- 159.03789,
- -31.70558
- ],
- [
- 159.31098,
- -31.85952
- ],
- [
- 159.37278,
- -31.77892
- ],
- [
- 159.17443,
- -31.4374
- ],
- [
- 159.00339,
- -31.48767
- ]
- ],
- [
- [
- 140.99865,
- -28.99893
- ],
- [
- 148.9452,
- -28.99487
- ],
- [
- 149.48562,
- -28.5615
- ],
- [
- 150.29914,
- -28.53373
- ],
- [
- 151.0954,
- -28.71792
- ],
- [
- 151.39436,
- -28.97978
- ],
- [
- 151.98941,
- -28.73557
- ],
- [
- 151.92904,
- -28.49836
- ],
- [
- 152.49246,
- -28.2353
- ],
- [
- 153.57907,
- -28.14156
- ],
- [
- 153.69692,
- -28.64983
- ],
- [
- 153.25847,
- -30.97354
- ],
- [
- 152.75437,
- -32.50849
- ],
- [
- 151.90879,
- -33.05535
- ],
- [
- 151.25834,
- -34.38081
- ],
- [
- 151.01442,
- -35.11568
- ],
- [
- 150.46154,
- -36.1203
- ],
- [
- 150.41275,
- -36.61786
- ],
- [
- 149.97847,
- -37.507
- ],
- [
- 148.20135,
- -36.80566
- ],
- [
- 148.07918,
- -36.81716
- ],
- [
- 147.88542,
- -36.09019
- ],
- [
- 147.69029,
- -36.04418
- ],
- [
- 146.82844,
- -36.18868
- ],
- [
- 145.23484,
- -35.98499
- ],
- [
- 144.84457,
- -36.21492
- ],
- [
- 144.51935,
- -36.1296
- ],
- [
- 143.20218,
- -35.13174
- ],
- [
- 142.47856,
- -34.81194
- ],
- [
- 140.9937,
- -34.07017
- ],
- [
- 141.0026,
- -34.01974
- ],
- [
- 140.99865,
- -28.99893
- ]
- ]
- ],
- "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
- "terms_text": "© Land and Property Information 2017",
- "overlay": true
- },
- {
- "id": "LPI_NSW_Administrative_Boundaries_Suburb",
- "name": "LPI NSW Administrative Boundaries Suburb",
- "type": "wms",
- "template": "https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=7&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE",
- "projection": "EPSG:3857",
- "scaleExtent": [
- 1,
- 21
- ],
- "polygon": [
- [
- [
- 159.00339,
- -31.48767
- ],
- [
- 159.03789,
- -31.70558
- ],
- [
- 159.31098,
- -31.85952
- ],
- [
- 159.37278,
- -31.77892
- ],
- [
- 159.17443,
- -31.4374
- ],
- [
- 159.00339,
- -31.48767
- ]
- ],
- [
- [
- 140.99865,
- -28.99893
- ],
- [
- 148.9452,
- -28.99487
- ],
- [
- 149.48562,
- -28.5615
- ],
- [
- 150.29914,
- -28.53373
- ],
- [
- 151.0954,
- -28.71792
- ],
- [
- 151.39436,
- -28.97978
- ],
- [
- 151.98941,
- -28.73557
- ],
- [
- 151.92904,
- -28.49836
- ],
- [
- 152.49246,
- -28.2353
- ],
- [
- 153.57907,
- -28.14156
- ],
- [
- 153.69692,
- -28.64983
- ],
- [
- 153.25847,
- -30.97354
- ],
- [
- 152.75437,
- -32.50849
- ],
- [
- 151.90879,
- -33.05535
- ],
- [
- 151.25834,
- -34.38081
- ],
- [
- 151.01442,
- -35.11568
- ],
- [
- 150.46154,
- -36.1203
- ],
- [
- 150.41275,
- -36.61786
- ],
- [
- 149.97847,
- -37.507
- ],
- [
- 148.20135,
- -36.80566
- ],
- [
- 148.07918,
- -36.81716
- ],
- [
- 147.88542,
- -36.09019
- ],
- [
- 147.69029,
- -36.04418
- ],
- [
- 146.82844,
- -36.18868
- ],
- [
- 145.23484,
- -35.98499
- ],
- [
- 144.84457,
- -36.21492
- ],
- [
- 144.51935,
- -36.1296
- ],
- [
- 143.20218,
- -35.13174
- ],
- [
- 142.47856,
- -34.81194
- ],
- [
- 140.9937,
- -34.07017
- ],
- [
- 141.0026,
- -34.01974
- ],
- [
- 140.99865,
- -28.99893
- ]
- ]
- ],
- "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
- "terms_text": "© Land and Property Information 2017",
- "overlay": true
- },
- {
- "id": "NSW_LPI_BaseMap",
- "name": "LPI NSW Base Map",
- "type": "tms",
- "template": "https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Base_Map/MapServer/tile/{zoom}/{y}/{x}",
- "scaleExtent": [
- 1,
- 19
- ],
- "polygon": [
- [
- [
- 140.99486,
- -28.95297
- ],
- [
- 148.96114,
- -28.89977
- ],
- [
- 148.98701,
- -28.48623
- ],
- [
- 151.01361,
- -28.47865
- ],
- [
- 151.10847,
- -28.70329
- ],
- [
- 151.87599,
- -28.68312
- ],
- [
- 151.93348,
- -28.40788
- ],
- [
- 152.25544,
- -28.23327
- ],
- [
- 153.06608,
- -28.21047
- ],
- [
- 153.14082,
- -28.1091
- ],
- [
- 153.47351,
- -28.11648
- ],
- [
- 153.35765,
- -27.69361
- ],
- [
- 159.49383,
- -27.69925
- ],
- [
- 159.4857,
- -37.84741
- ],
- [
- 149.52569,
- -37.82815
- ],
- [
- 149.91596,
- -37.487
- ],
- [
- 148.04859,
- -36.81317
- ],
- [
- 147.9681,
- -36.15679
- ],
- [
- 146.71477,
- -36.28666
- ],
- [
- 145.30046,
- -36.15679
- ],
- [
- 144.53007,
- -36.14751
- ],
- [
- 142.8398,
- -35.02543
- ],
- [
- 142.35686,
- -34.78025
- ],
- [
- 141.97741,
- -34.40162
- ],
- [
- 140.99503,
- -34.13718
- ],
- [
- 140.99486,
- -28.95297
- ]
- ]
- ],
- "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
- "terms_text": "© Land and Property Information 2017"
- },
- {
- "id": "NSW_LPI_Imagery",
- "name": "LPI NSW Imagery",
- "type": "tms",
- "template": "https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Imagery/MapServer/tile/{zoom}/{y}/{x}",
- "scaleExtent": [
- 1,
- 21
- ],
- "polygon": [
- [
- [
- 140.98687,
- -28.98878
- ],
- [
- 148.99515,
- -28.97275
- ],
- [
- 148.99667,
- -28.49151
- ],
- [
- 151.0029,
- -28.49307
- ],
- [
- 151.0029,
- -28.72617
- ],
- [
- 151.49151,
- -28.73239
- ],
- [
- 151.49187,
- -28.71553
- ],
- [
- 151.92282,
- -28.71964
- ],
- [
- 151.92516,
- -28.48971
- ],
- [
- 151.99559,
- -28.48987
- ],
- [
- 151.99899,
- -28.11927
- ],
- [
- 152.49676,
- -28.12209
- ],
- [
- 152.49682,
- -28.11464
- ],
- [
- 153.00446,
- -28.11544
- ],
- [
- 153.00446,
- -28.1204
- ],
- [
- 153.50386,
- -28.11934
- ],
- [
- 153.50393,
- -28.12271
- ],
- [
- 153.59194,
- -28.12236
- ],
- [
- 153.59266,
- -28.17769
- ],
- [
- 153.61112,
- -28.17579
- ],
- [
- 153.61139,
- -28.18252
- ],
- [
- 153.74268,
- -28.21621
- ],
- [
- 153.77873,
- -28.71091
- ],
- [
- 152.6238,
- -32.58772
- ],
- [
- 152.3124,
- -32.63288
- ],
- [
- 151.41419,
- -33.57904
- ],
- [
- 150.89299,
- -35.26487
- ],
- [
- 150.46207,
- -35.77773
- ],
- [
- 150.01565,
- -37.51036
- ],
- [
- 149.99181,
- -37.51268
- ],
- [
- 149.51978,
- -37.51307
- ],
- [
- 149.51996,
- -37.52169
- ],
- [
- 149.4463,
- -37.53537
- ],
- [
- 149.06334,
- -37.5358
- ],
- [
- 148.98366,
- -37.52176
- ],
- [
- 148.98169,
- -37.5192
- ],
- [
- 148.98638,
- -37.2585
- ],
- [
- 148.48754,
- -37.26585
- ],
- [
- 148.48248,
- -37.00927
- ],
- [
- 147.99439,
- -37.01434
- ],
- [
- 147.98829,
- -36.53322
- ],
- [
- 147.95297,
- -36.52607
- ],
- [
- 147.94865,
- -36.0686
- ],
- [
- 147.5035,
- -36.07168
- ],
- [
- 147.50477,
- -36.2651
- ],
- [
- 146.492,
- -36.26613
- ],
- [
- 146.49225,
- -36.2565
- ],
- [
- 145.99298,
- -36.25343
- ],
- [
- 145.99659,
- -36.01881
- ],
- [
- 145.98316,
- -36.01871
- ],
- [
- 145.96245,
- -36.0219
- ],
- [
- 145.94624,
- -36.01209
- ],
- [
- 145.94543,
- -36.00603
- ],
- [
- 145.50415,
- -36.00136
- ],
- [
- 145.50379,
- -36.01091
- ],
- [
- 145.0072,
- -36.00362
- ],
- [
- 145.00354,
- -36.15204
- ],
- [
- 144.48608,
- -36.14231
- ],
- [
- 144.48741,
- -36.01375
- ],
- [
- 143.98747,
- -36.00241
- ],
- [
- 143.99329,
- -35.57238
- ],
- [
- 143.49717,
- -35.58371
- ],
- [
- 143.4918,
- -35.40656
- ],
- [
- 143.46134,
- -35.36749
- ],
- [
- 143.45856,
- -35.35559
- ],
- [
- 143.48978,
- -35.33965
- ],
- [
- 143.48955,
- -35.33221
- ],
- [
- 143.4317,
- -35.25706
- ],
- [
- 143.25055,
- -35.26066
- ],
- [
- 143.24384,
- -35.01327
- ],
- [
- 142.99333,
- -35.01772
- ],
- [
- 142.99198,
- -34.79619
- ],
- [
- 142.49714,
- -34.80323
- ],
- [
- 142.49732,
- -34.80076
- ],
- [
- 142.42114,
- -34.80176
- ],
- [
- 142.42092,
- -34.78383
- ],
- [
- 142.23309,
- -34.78592
- ],
- [
- 142.23077,
- -34.78075
- ],
- [
- 142.227,
- -34.50613
- ],
- [
- 141.99753,
- -34.50837
- ],
- [
- 141.9946,
- -34.25267
- ],
- [
- 141.49823,
- -34.25569
- ],
- [
- 141.49817,
- -34.25228
- ],
- [
- 140.99454,
- -34.25284
- ],
- [
- 140.98687,
- -28.98878
- ]
- ]
- ],
- "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
- "terms_text": "© Land and Property Information 2017",
- "best": true
- },
- {
- "id": "NSW_LPI_Imagery_Dates",
- "name": "LPI NSW Imagery Dates",
- "type": "wms",
- "template": "https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Imagery_Dates/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=0&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE",
- "projection": "EPSG:3857",
- "scaleExtent": [
- 0,
- 21
- ],
- "polygon": [
- [
- [
- 140.98687,
- -28.98878
- ],
- [
- 148.99515,
- -28.97275
- ],
- [
- 148.99667,
- -28.49151
- ],
- [
- 151.0029,
- -28.49307
- ],
- [
- 151.0029,
- -28.72617
- ],
- [
- 151.49151,
- -28.73239
- ],
- [
- 151.49187,
- -28.71553
- ],
- [
- 151.92282,
- -28.71964
- ],
- [
- 151.92516,
- -28.48971
- ],
- [
- 151.99559,
- -28.48987
- ],
- [
- 151.99899,
- -28.11927
- ],
- [
- 152.49676,
- -28.12209
- ],
- [
- 152.49682,
- -28.11464
- ],
- [
- 153.00446,
- -28.11544
- ],
- [
- 153.00446,
- -28.1204
- ],
- [
- 153.50386,
- -28.11934
- ],
- [
- 153.50393,
- -28.12271
- ],
- [
- 153.59194,
- -28.12236
- ],
- [
- 153.59266,
- -28.17769
- ],
- [
- 153.61112,
- -28.17579
- ],
- [
- 153.61139,
- -28.18252
- ],
- [
- 153.74268,
- -28.21621
- ],
- [
- 153.77873,
- -28.71091
- ],
- [
- 152.6238,
- -32.58772
- ],
- [
- 152.3124,
- -32.63288
- ],
- [
- 151.41419,
- -33.57904
- ],
- [
- 150.89299,
- -35.26487
- ],
- [
- 150.46207,
- -35.77773
- ],
- [
- 150.01565,
- -37.51036
- ],
- [
- 149.99181,
- -37.51268
- ],
- [
- 149.51978,
- -37.51307
- ],
- [
- 149.51996,
- -37.52169
- ],
- [
- 149.4463,
- -37.53537
- ],
- [
- 149.06334,
- -37.5358
- ],
- [
- 148.98366,
- -37.52176
- ],
- [
- 148.98169,
- -37.5192
- ],
- [
- 148.98638,
- -37.2585
- ],
- [
- 148.48754,
- -37.26585
- ],
- [
- 148.48248,
- -37.00927
- ],
- [
- 147.99439,
- -37.01434
- ],
- [
- 147.98829,
- -36.53322
- ],
- [
- 147.95297,
- -36.52607
- ],
- [
- 147.94865,
- -36.0686
- ],
- [
- 147.5035,
- -36.07168
- ],
- [
- 147.50477,
- -36.2651
- ],
- [
- 146.492,
- -36.26613
- ],
- [
- 146.49225,
- -36.2565
- ],
- [
- 145.99298,
- -36.25343
- ],
- [
- 145.99659,
- -36.01881
- ],
- [
- 145.98316,
- -36.01871
- ],
- [
- 145.96245,
- -36.0219
- ],
- [
- 145.94624,
- -36.01209
- ],
- [
- 145.94543,
- -36.00603
- ],
- [
- 145.50415,
- -36.00136
- ],
- [
- 145.50379,
- -36.01091
- ],
- [
- 145.0072,
- -36.00362
- ],
- [
- 145.00354,
- -36.15204
- ],
- [
- 144.48608,
- -36.14231
- ],
- [
- 144.48741,
- -36.01375
- ],
- [
- 143.98747,
- -36.00241
- ],
- [
- 143.99329,
- -35.57238
- ],
- [
- 143.49717,
- -35.58371
- ],
- [
- 143.4918,
- -35.40656
- ],
- [
- 143.46134,
- -35.36749
- ],
- [
- 143.45856,
- -35.35559
- ],
- [
- 143.48978,
- -35.33965
- ],
- [
- 143.48955,
- -35.33221
- ],
- [
- 143.4317,
- -35.25706
- ],
- [
- 143.25055,
- -35.26066
- ],
- [
- 143.24384,
- -35.01327
- ],
- [
- 142.99333,
- -35.01772
- ],
- [
- 142.99198,
- -34.79619
- ],
- [
- 142.49714,
- -34.80323
- ],
- [
- 142.49732,
- -34.80076
- ],
- [
- 142.42114,
- -34.80176
- ],
- [
- 142.42092,
- -34.78383
- ],
- [
- 142.23309,
- -34.78592
- ],
- [
- 142.23077,
- -34.78075
- ],
- [
- 142.227,
- -34.50613
- ],
- [
- 141.99753,
- -34.50837
- ],
- [
- 141.9946,
- -34.25267
- ],
- [
- 141.49823,
- -34.25569
- ],
- [
- 141.49817,
- -34.25228
- ],
- [
- 140.99454,
- -34.25284
- ],
- [
- 140.98687,
- -28.98878
- ]
- ]
- ],
- "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
- "terms_text": "© Land and Property Information 2017",
- "overlay": true
- },
- {
- "id": "NSW_LPI_TopographicMap",
- "name": "LPI NSW Topographic Map",
- "type": "tms",
- "template": "https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Topo_Map/MapServer/tile/{zoom}/{y}/{x}",
- "scaleExtent": [
- 1,
- 16
- ],
- "polygon": [
- [
- [
- 140.99884,
- -28.99924
- ],
- [
- 148.95024,
- -28.99937
- ],
- [
- 148.94988,
- -28.96653
- ],
- [
- 148.99983,
- -28.96653
- ],
- [
- 149.00009,
- -28.81658
- ],
- [
- 149.10007,
- -28.81658
- ],
- [
- 149.0997,
- -28.74885
- ],
- [
- 148.99985,
- -28.74974
- ],
- [
- 148.99982,
- -28.50003
- ],
- [
- 151.00005,
- -28.50052
- ],
- [
- 151.00059,
- -28.73258
- ],
- [
- 151.02395,
- -28.73274
- ],
- [
- 151.02413,
- -28.74188
- ],
- [
- 151.03293,
- -28.74188
- ],
- [
- 151.03383,
- -28.75054
- ],
- [
- 151.99998,
- -28.74953
- ],
- [
- 151.99998,
- -28.71645
- ],
- [
- 152.0334,
- -28.71661
- ],
- [
- 152.03322,
- -28.6832
- ],
- [
- 152.00007,
- -28.68335
- ],
- [
- 151.99988,
- -28.64163
- ],
- [
- 151.98299,
- -28.64139
- ],
- [
- 151.98317,
- -28.62491
- ],
- [
- 151.93313,
- -28.62475
- ],
- [
- 151.93341,
- -28.50007
- ],
- [
- 151.99989,
- -28.50023
- ],
- [
- 151.99986,
- -28.37496
- ],
- [
- 152.24997,
- -28.37507
- ],
- [
- 152.24994,
- -28.25001
- ],
- [
- 152.99972,
- -28.24986
- ],
- [
- 152.9999,
- -28.28324
- ],
- [
- 153.1165,
- -28.2834
- ],
- [
- 153.11659,
- -28.24986
- ],
- [
- 153.16663,
- -28.25001
- ],
- [
- 153.16672,
- -28.23316
- ],
- [
- 153.24999,
- -28.23324
- ],
- [
- 153.25003,
- -28.12497
- ],
- [
- 153.62496,
- -28.12508
- ],
- [
- 153.62484,
- -28.49991
- ],
- [
- 153.7498,
- -28.49999
- ],
- [
- 153.74959,
- -28.7498
- ],
- [
- 153.62481,
- -28.75011
- ],
- [
- 153.62497,
- -28.99993
- ],
- [
- 153.49977,
- -29.00006
- ],
- [
- 153.49984,
- -29.49951
- ],
- [
- 153.3748,
- -29.50005
- ],
- [
- 153.37541,
- -29.87503
- ],
- [
- 153.49991,
- -29.87514
- ],
- [
- 153.49991,
- -30.00009
- ],
- [
- 153.24989,
- -29.99976
- ],
- [
- 153.25002,
- -30.19177
- ],
- [
- 153.27482,
- -30.19162
- ],
- [
- 153.27482,
- -30.21685
- ],
- [
- 153.21661,
- -30.21661
- ],
- [
- 153.21661,
- -30.25006
- ],
- [
- 153.25002,
- -30.25006
- ],
- [
- 153.24975,
- -30.37519
- ],
- [
- 153.12436,
- -30.37497
- ],
- [
- 153.12465,
- -30.62504
- ],
- [
- 153.03317,
- -30.62505
- ],
- [
- 153.03339,
- -30.87508
- ],
- [
- 153.12492,
- -30.87503
- ],
- [
- 153.12493,
- -31.12505
- ],
- [
- 153.00824,
- -31.12497
- ],
- [
- 153.00829,
- -31.24998
- ],
- [
- 153,
- -31.25
- ],
- [
- 152.99994,
- -31.62499
- ],
- [
- 152.87494,
- -31.62505
- ],
- [
- 152.87496,
- -31.74995
- ],
- [
- 152.78329,
- -31.75
- ],
- [
- 152.7832,
- -31.87486
- ],
- [
- 152.74991,
- -31.87501
- ],
- [
- 152.75004,
- -32.00002
- ],
- [
- 152.6249,
- -31.99994
- ],
- [
- 152.62491,
- -32.5
- ],
- [
- 152.49998,
- -32.49996
- ],
- [
- 152.50003,
- -32.56664
- ],
- [
- 152.41667,
- -32.56634
- ],
- [
- 152.41676,
- -32.625
- ],
- [
- 152.34985,
- -32.62499
- ],
- [
- 152.34985,
- -32.63323
- ],
- [
- 152.28308,
- -32.63322
- ],
- [
- 152.28326,
- -32.62498
- ],
- [
- 152.24948,
- -32.62498
- ],
- [
- 152.24981,
- -32.87491
- ],
- [
- 151.87457,
- -32.87504
- ],
- [
- 151.87485,
- -33.00001
- ],
- [
- 151.74977,
- -33.00015
- ],
- [
- 151.75047,
- -33.25004
- ],
- [
- 151.62524,
- -33.24974
- ],
- [
- 151.62508,
- -33.37516
- ],
- [
- 151.49958,
- -33.37514
- ],
- [
- 151.50031,
- -33.62494
- ],
- [
- 151.37415,
- -33.62437
- ],
- [
- 151.37279,
- -34.00196
- ],
- [
- 151.24778,
- -34.00112
- ],
- [
- 151.24778,
- -34.24931
- ],
- [
- 150.99573,
- -34.25015
- ],
- [
- 151.00081,
- -34.62483
- ],
- [
- 150.87174,
- -34.6265
- ],
- [
- 150.87276,
- -35.12427
- ],
- [
- 150.76706,
- -35.12344
- ],
- [
- 150.76909,
- -35.24638
- ],
- [
- 150.62579,
- -35.2497
- ],
- [
- 150.62803,
- -35.37515
- ],
- [
- 150.49997,
- -35.37515
- ],
- [
- 150.49591,
- -35.6275
- ],
- [
- 150.37192,
- -35.62503
- ],
- [
- 150.37497,
- -35.7538
- ],
- [
- 150.26724,
- -35.75132
- ],
- [
- 150.2652,
- -35.87412
- ],
- [
- 150.24792,
- -35.87083
- ],
- [
- 150.24589,
- -36.37488
- ],
- [
- 150.12292,
- -36.37488
- ],
- [
- 150.12597,
- -36.62243
- ],
- [
- 150.02535,
- -36.62407
- ],
- [
- 150.0284,
- -36.74713
- ],
- [
- 149.99283,
- -36.74958
- ],
- [
- 150.00401,
- -37.12245
- ],
- [
- 150.05889,
- -37.12731
- ],
- [
- 150.05686,
- -37.37809
- ],
- [
- 149.99791,
- -37.37324
- ],
- [
- 149.99994,
- -37.48301
- ],
- [
- 149.98774,
- -37.48462
- ],
- [
- 149.98571,
- -37.508
- ],
- [
- 148.06846,
- -36.80624
- ],
- [
- 147.99306,
- -36.138
- ],
- [
- 147.81483,
- -36.00556
- ],
- [
- 147.38939,
- -36.01137
- ],
- [
- 147.38221,
- -36.13103
- ],
- [
- 146.99725,
- -36.12755
- ],
- [
- 146.98863,
- -36.25283
- ],
- [
- 146.49564,
- -36.24471
- ],
- [
- 146.50426,
- -36.12639
- ],
- [
- 145.00118,
- -36.00795
- ],
- [
- 145.01541,
- -36.25421
- ],
- [
- 144.50725,
- -36.24765
- ],
- [
- 144.49912,
- -36.0211
- ],
- [
- 143.99654,
- -35.98105
- ],
- [
- 143.33826,
- -35.23318
- ],
- [
- 142.40976,
- -34.76694
- ],
- [
- 142.03614,
- -34.37588
- ],
- [
- 140.99652,
- -34.13858
- ],
- [
- 140.99884,
- -28.99924
- ]
- ]
- ],
- "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
- "terms_text": "© Land and Property Information 2017"
- },
- {
- "id": "orthophoto_lyon_2012",
- "name": "Lyon Orthophoto 2012-03 10cm",
- "type": "wms",
- "template": "https://download.data.grandlyon.com/wms/grandlyon?language=fre&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=1830_5150_10cm_CC46,1830_5155_10cm_CC46,1830_5160_10cm_CC46,1830_5165_10cm_CC46,1830_5170_10cm_CC46,1830_5175_10cm_CC46,1830_5180_10cm_CC46,1830_5185_10cm_CC46,1830_5190_10cm_CC46,1835_5150_10cm_CC46,1835_5155_10cm_CC46,1835_5160_10cm_CC46,1835_5165_10cm_CC46,1835_5170_10cm_CC46,1835_5175_10cm_CC46,1835_5180_10cm_CC46,1835_5185_10cm_CC46,1835_5190_10cm_CC46,1840_5150_10cm_CC46,1840_5155_10cm_CC46,1840_5160_10cm_CC46,1840_5165_10cm_CC46,1840_5170_10cm_CC46,1840_5175_10cm_CC46,1840_5180_10cm_CC46,1840_5185_10cm_CC46,1840_5190_10cm_CC46,1845_5150_10cm_CC46,1845_5155_10cm_CC46,1845_5160_10cm_CC46,1845_5165_10cm_CC46,1845_5170_10cm_CC46,1845_5175_10cm_CC46,1845_5180_10cm_CC46,1845_5185_10cm_CC46,1845_5190_10cm_CC46,1850_5155_10cm_CC46,1850_5160_10cm_CC46,1850_5165_10cm_CC46,1850_5170_10cm_CC46,1850_5175_10cm_CC46,1850_5180_10cm_CC46,1850_5185_10cm_CC46,1855_5155_10cm_CC46,1855_5165_10cm_CC46,1855_5170_10cm_CC46,1855_5175_10cm_CC46,1855_5180_10cm_CC46,1855_5185_10cm_CC46,1860_5155_10cm_CC46,1860_5160_10cm_CC46,1860_5165_10cm_CC46,1860_5170_10cm_CC46,1860_5175_10cm_CC46,1860_5180_10cm_CC46,1860_5185_10cm_CC46,1865_5155_10cm_CC46,1865_5160_10cm_CC46,1865_5165_10cm_CC46,1865_5170_10cm_CC46&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2012-03-01T00:00:00.000Z",
- "startDate": "2012-03-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 4.69049,
- 45.54652
- ],
- [
- 4.83131,
- 45.54652
- ],
- [
- 4.83131,
- 45.57131
- ],
- [
- 4.88344,
- 45.57131
- ],
- [
- 4.88344,
- 45.59745
- ],
- [
- 5.16622,
- 45.59745
- ],
- [
- 5.16622,
- 45.74533
- ],
- [
- 5.10793,
- 45.74533
- ],
- [
- 5.10793,
- 45.88145
- ],
- [
- 4.90698,
- 45.88145
- ],
- [
- 4.90698,
- 45.92107
- ],
- [
- 4.84377,
- 45.92107
- ],
- [
- 4.84377,
- 45.94011
- ],
- [
- 4.71543,
- 45.94011
- ],
- [
- 4.71543,
- 45.87018
- ],
- [
- 4.67458,
- 45.87018
- ],
- [
- 4.67458,
- 45.7178
- ],
- [
- 4.69567,
- 45.7178
- ],
- [
- 4.69049,
- 45.54652
- ]
- ]
- ],
- "terms_url": "https://data.grandlyon.com/imagerie/orthophotographie-2012-du-grand-lyon",
- "terms_text": "Grand Lyon Smart Data DSIT"
- },
- {
- "id": "orthophoto_lyon_2015_8cm",
- "name": "Lyon Orthophoto 2015-05 8cm",
- "type": "wms",
- "template": "https://download.data.grandlyon.com/wms/grandlyon?language=fre&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=1835_5155_8cm_CC46,1835_5160_8cm_CC46,1835_5165_8cm_CC46,1835_5170_8cm_CC46,1835_5180_8cm_CC46,1835_5175_8cm_CC46,1845_5175_8cm_CC46,1845_5180_8cm_CC46,1845_5185_8cm_CC46,1845_5190_8cm_CC46,1850_5165_8cm_CC46,1850_5160_8cm_CC46,1850_5155_8cm_CC46,1850_5170_8cm_CC46,1850_5175_8cm_CC46,1850_5180_8cm_CC46,1850_5185_8cm_CC46,1855_5155_8cm_CC46,1855_5160_8cm_CC46,1855_5185_8cm_CC46,1855_5180_8cm_CC46,1855_5175_8cm_CC46,1855_5170_8cm_CC46,1855_5165_8cm_CC46,1860_5160_8cm_CC46,1860_5155_8cm_CC46,1860_5165_8cm_CC46,1835_5185_8cm_CC46,1835_5190_8cm_CC46,1835_5195_8cm_CC46,1840_5160_8cm_CC46,1840_5155_8cm_CC46,1840_5150_8cm_CC46,1830_5195_8cm_CC46,1830_5190_8cm_CC46,1830_5175_8cm_CC46,1830_5170_8cm_CC46,1830_5165_8cm_CC46,1830_5160_8cm_CC46,1830_5155_8cm_CC46,1830_5180_8cm_CC46,1830_5185_8cm_CC46,1835_5150_8cm_CC46,1860_5170_8cm_CC46,1860_5175_8cm_CC46,1840_5180_8cm_CC46,1840_5175_8cm_CC46,1840_5185_8cm_CC46,1840_5190_8cm_CC46,1840_5195_8cm_CC46,1845_5150_8cm_CC46,1845_5155_8cm_CC46,1845_5160_8cm_CC46,1845_5170_8cm_CC46,1845_5165_8cm_CC46,1840_5170_8cm_CC46,1840_5165_8cm_CC46,1860_5180_8cm_CC46,1860_5185_8cm_CC46,1865_5155_8cm_CC46,1865_5160_8cm_CC46,1865_5165_8cm_CC46,1865_5170_8cm_CC46,1830_5150_8cm_CC46&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2015-05-01T00:00:00.000Z",
- "startDate": "2015-05-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 4.66489,
- 45.54688
- ],
- [
- 4.88253,
- 45.54348
- ],
- [
- 4.88435,
- 45.59745
- ],
- [
- 5.16623,
- 45.59242
- ],
- [
- 5.17217,
- 45.74532
- ],
- [
- 5.10793,
- 45.74653
- ],
- [
- 5.11305,
- 45.88145
- ],
- [
- 4.90698,
- 45.88508
- ],
- [
- 4.90822,
- 45.92106
- ],
- [
- 4.84377,
- 45.92212
- ],
- [
- 4.84497,
- 45.9581
- ],
- [
- 4.67729,
- 45.96069
- ],
- [
- 4.66489,
- 45.54688
- ]
- ]
- ],
- "terms_url": "https://data.grandlyon.com/imagerie/orthophotographie-2015-du-grand-lyon",
- "terms_text": "Métropole de Lyon DINSI",
- "best": true
- },
- {
- "id": "MainRoadsWA_Road_Hierarchy",
- "name": "Main Roads WA Road Hierarchy",
- "type": "wms",
- "template": "https://services.slip.wa.gov.au/public/services/SLIP_Public_Services/Transport/MapServer/WMSServer?LAYERS=8&TRANSPARENT=TRUE&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&STYLES=&FORMAT=image%2Fpng&SRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}",
- "projection": "EPSG:3857",
- "scaleExtent": [
- 0,
- 21
- ],
- "polygon": [
- [
- [
- 129.00009,
- -31.68764
- ],
- [
- 128.99872,
- -14.58225
- ],
- [
- 127.08984,
- -12.29707
- ],
- [
- 124.76074,
- -12.98315
- ],
- [
- 121.24512,
- -15.70766
- ],
- [
- 119.0918,
- -17.60214
- ],
- [
- 115.53223,
- -18.85431
- ],
- [
- 112.41211,
- -20.46819
- ],
- [
- 111.24756,
- -22.83695
- ],
- [
- 111.00586,
- -25.62172
- ],
- [
- 111.64307,
- -29.66896
- ],
- [
- 111.68701,
- -32.3614
- ],
- [
- 112.14844,
- -34.47034
- ],
- [
- 113.35693,
- -36.10238
- ],
- [
- 116.98242,
- -36.70366
- ],
- [
- 119.44336,
- -36.94989
- ],
- [
- 122.27783,
- -36.61553
- ],
- [
- 125.99121,
- -35.40696
- ],
- [
- 127.59521,
- -34.57895
- ],
- [
- 128.86963,
- -33.59632
- ],
- [
- 129.00009,
- -31.68764
- ]
- ]
- ],
- "terms_url": "https://catalogue.data.wa.gov.au/dataset/clss-road-hierarchy",
- "terms_text": "Main Roads Western Australia",
- "overlay": true
- },
- {
- "id": "mainzlatestaerialimagery",
- "name": "Mainz latest aerial imagery",
- "type": "wms",
- "template": "https://gint.mainz.de/gint1-cgi/mapserv?map=/data/mapbender-int/umn-www/client/a62/luftbild.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Luftbild_f_mz_2016&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:4326",
- "scaleExtent": [
- 17,
- 22
- ],
- "polygon": [
- [
- [
- 8.10355,
- 49.865
- ],
- [
- 8.38356,
- 49.865
- ],
- [
- 8.38356,
- 50.0466
- ],
- [
- 8.10355,
- 50.0466
- ],
- [
- 8.10355,
- 49.865
- ]
- ]
- ],
- "terms_url": "https://www.mainz.de/vv/oe/100140100000035141.php#tab-infos",
- "terms_text": "Vermessung und Geoinformation Mainz",
- "icon": "https://www.mainz.de/configuration.inc.php.media/27432/Logo-72px.png"
- },
- {
- "id": "major_isidoro",
- "name": "Major Isidoro AL",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Major%20Isidoro&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -36.94048,
- -9.57588
- ],
- [
- -36.94106,
- -9.48536
- ],
- [
- -37.03215,
- -9.48606
- ],
- [
- -37.03164,
- -9.57639
- ],
- [
- -36.94048,
- -9.57588
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "Mapbox",
- "name": "Mapbox Satellite",
- "type": "tms",
- "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/openstreetmap/cj8gojt0i1eau2rnn7q4mdgu7/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJhNVlHd29ZIn0.ti6wATGDWOmCnCYen-Ip7Q",
- "scaleExtent": [
- 0,
- 22
- ],
- "terms_url": "https://www.mapbox.com/about/maps",
- "terms_text": "Terms & Feedback",
- "default": true,
- "description": "Satellite and aerial imagery.",
- "icon": "data:image/png;base64,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"
- },
- {
- "id": "Maps4BW-LGL_BW",
- "name": "Maps4BW (LGL-BW, www.lgl-bw.de)",
- "type": "wms",
- "template": "http://www.webatlasde.de/arcgis/services/Maps4BW/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Halbtonvariante&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- 9.06954,
- 49.57679
- ],
- [
- 9.10577,
- 49.57952
- ],
- [
- 9.16079,
- 49.58263
- ],
- [
- 9.24212,
- 49.58402
- ],
- [
- 9.27192,
- 49.63515
- ],
- [
- 9.30454,
- 49.65561
- ],
- [
- 9.36753,
- 49.65893
- ],
- [
- 9.38253,
- 49.64341
- ],
- [
- 9.41191,
- 49.66033
- ],
- [
- 9.39602,
- 49.67143
- ],
- [
- 9.41828,
- 49.69706
- ],
- [
- 9.40378,
- 49.71957
- ],
- [
- 9.37769,
- 49.70357
- ],
- [
- 9.35828,
- 49.70334
- ],
- [
- 9.29438,
- 49.73958
- ],
- [
- 9.31467,
- 49.76859
- ],
- [
- 9.42435,
- 49.79099
- ],
- [
- 9.50417,
- 49.78962
- ],
- [
- 9.51808,
- 49.78214
- ],
- [
- 9.65623,
- 49.79286
- ],
- [
- 9.65317,
- 49.73944
- ],
- [
- 9.63435,
- 49.70076
- ],
- [
- 9.67054,
- 49.69515
- ],
- [
- 9.67721,
- 49.71846
- ],
- [
- 9.71079,
- 49.72918
- ],
- [
- 9.8014,
- 49.73429
- ],
- [
- 9.83728,
- 49.70237
- ],
- [
- 9.87656,
- 49.61362
- ],
- [
- 9.83362,
- 49.55607
- ],
- [
- 9.84954,
- 49.54793
- ],
- [
- 9.87463,
- 49.5836
- ],
- [
- 9.91419,
- 49.58955
- ],
- [
- 9.93066,
- 49.56097
- ],
- [
- 9.92482,
- 49.48951
- ],
- [
- 10.01787,
- 49.48673
- ],
- [
- 10.03352,
- 49.52978
- ],
- [
- 10.06372,
- 49.55129
- ],
- [
- 10.09052,
- 49.54218
- ],
- [
- 10.12792,
- 49.51192
- ],
- [
- 10.11027,
- 49.49272
- ],
- [
- 10.16753,
- 49.38589
- ],
- [
- 10.12627,
- 49.3809
- ],
- [
- 10.14385,
- 49.32772
- ],
- [
- 10.16061,
- 49.27043
- ],
- [
- 10.13569,
- 49.26189
- ],
- [
- 10.14311,
- 49.20387
- ],
- [
- 10.25161,
- 49.15031
- ],
- [
- 10.26279,
- 49.12959
- ],
- [
- 10.26869,
- 49.05202
- ],
- [
- 10.36527,
- 49.02557
- ],
- [
- 10.45894,
- 48.93581
- ],
- [
- 10.46208,
- 48.83947
- ],
- [
- 10.42886,
- 48.74973
- ],
- [
- 10.46648,
- 48.73627
- ],
- [
- 10.49761,
- 48.68581
- ],
- [
- 10.45007,
- 48.66277
- ],
- [
- 10.3553,
- 48.65068
- ],
- [
- 10.32297,
- 48.68241
- ],
- [
- 10.26028,
- 48.67842
- ],
- [
- 10.32542,
- 48.60763
- ],
- [
- 10.31448,
- 48.52323
- ],
- [
- 10.17973,
- 48.45977
- ],
- [
- 10.12892,
- 48.45301
- ],
- [
- 10.10938,
- 48.47445
- ],
- [
- 10.06355,
- 48.45381
- ],
- [
- 10.03918,
- 48.45125
- ],
- [
- 10.04492,
- 48.43158
- ],
- [
- 10.0152,
- 48.40323
- ],
- [
- 9.98709,
- 48.38565
- ],
- [
- 9.97328,
- 48.37944
- ],
- [
- 9.97549,
- 48.36558
- ],
- [
- 9.99071,
- 48.3734
- ],
- [
- 10.00265,
- 48.3632
- ],
- [
- 9.99992,
- 48.35572
- ],
- [
- 10.06698,
- 48.28172
- ],
- [
- 10.08111,
- 48.2253
- ],
- [
- 10.11306,
- 48.12632
- ],
- [
- 10.13966,
- 48.11307
- ],
- [
- 10.14695,
- 48.07455
- ],
- [
- 10.13763,
- 48.01938
- ],
- [
- 10.11725,
- 47.9755
- ],
- [
- 10.11359,
- 47.93422
- ],
- [
- 10.10709,
- 47.86711
- ],
- [
- 10.14174,
- 47.80956
- ],
- [
- 10.0732,
- 47.78686
- ],
- [
- 10.11825,
- 47.76126
- ],
- [
- 10.14213,
- 47.70165
- ],
- [
- 10.13262,
- 47.67678
- ],
- [
- 10.07445,
- 47.63472
- ],
- [
- 10.06303,
- 47.66923
- ],
- [
- 10.00359,
- 47.67526
- ],
- [
- 9.95808,
- 47.64376
- ],
- [
- 9.84481,
- 47.67533
- ],
- [
- 9.83488,
- 47.66042
- ],
- [
- 9.74926,
- 47.60206
- ],
- [
- 9.70817,
- 47.60007
- ],
- [
- 9.65788,
- 47.60599
- ],
- [
- 9.64742,
- 47.58931
- ],
- [
- 9.61389,
- 47.57809
- ],
- [
- 9.56602,
- 47.53274
- ],
- [
- 9.51199,
- 47.53246
- ],
- [
- 9.25717,
- 47.65752
- ],
- [
- 9.18684,
- 47.65697
- ],
- [
- 9.17591,
- 47.65379
- ],
- [
- 9.17028,
- 47.65474
- ],
- [
- 9.15555,
- 47.666
- ],
- [
- 9.1494,
- 47.66713
- ],
- [
- 9.13947,
- 47.66367
- ],
- [
- 9.02005,
- 47.68616
- ],
- [
- 8.94127,
- 47.65569
- ],
- [
- 8.89825,
- 47.64821
- ],
- [
- 8.88263,
- 47.65327
- ],
- [
- 8.87474,
- 47.6545
- ],
- [
- 8.87235,
- 47.66971
- ],
- [
- 8.84949,
- 47.68089
- ],
- [
- 8.84993,
- 47.70233
- ],
- [
- 8.81816,
- 47.71242
- ],
- [
- 8.80108,
- 47.72811
- ],
- [
- 8.77231,
- 47.71606
- ],
- [
- 8.81295,
- 47.6959
- ],
- [
- 8.79373,
- 47.67216
- ],
- [
- 8.7533,
- 47.68997
- ],
- [
- 8.72575,
- 47.6917
- ],
- [
- 8.71002,
- 47.68829
- ],
- [
- 8.68937,
- 47.69318
- ],
- [
- 8.67046,
- 47.68235
- ],
- [
- 8.65783,
- 47.68883
- ],
- [
- 8.66161,
- 47.71454
- ],
- [
- 8.70596,
- 47.71584
- ],
- [
- 8.70932,
- 47.73275
- ],
- [
- 8.73033,
- 47.75527
- ],
- [
- 8.72003,
- 47.76273
- ],
- [
- 8.68871,
- 47.75314
- ],
- [
- 8.67898,
- 47.78306
- ],
- [
- 8.64981,
- 47.79435
- ],
- [
- 8.65592,
- 47.76948
- ],
- [
- 8.63132,
- 47.75749
- ],
- [
- 8.61918,
- 47.76216
- ],
- [
- 8.61351,
- 47.78451
- ],
- [
- 8.61686,
- 47.79705
- ],
- [
- 8.568,
- 47.79977
- ],
- [
- 8.57611,
- 47.79015
- ],
- [
- 8.57847,
- 47.78102
- ],
- [
- 8.56315,
- 47.77654
- ],
- [
- 8.48889,
- 47.76458
- ],
- [
- 8.45742,
- 47.74126
- ],
- [
- 8.4623,
- 47.72909
- ],
- [
- 8.44929,
- 47.71663
- ],
- [
- 8.41471,
- 47.69991
- ],
- [
- 8.4273,
- 47.68562
- ],
- [
- 8.41061,
- 47.6743
- ],
- [
- 8.46839,
- 47.6568
- ],
- [
- 8.52474,
- 47.64677
- ],
- [
- 8.5269,
- 47.66373
- ],
- [
- 8.56441,
- 47.67261
- ],
- [
- 8.57853,
- 47.66373
- ],
- [
- 8.60454,
- 47.6751
- ],
- [
- 8.63333,
- 47.65212
- ],
- [
- 8.62386,
- 47.63922
- ],
- [
- 8.60395,
- 47.63193
- ],
- [
- 8.61281,
- 47.61327
- ],
- [
- 8.57951,
- 47.59306
- ],
- [
- 8.5602,
- 47.59867
- ],
- [
- 8.56765,
- 47.61442
- ],
- [
- 8.53394,
- 47.62984
- ],
- [
- 8.51208,
- 47.61641
- ],
- [
- 8.46581,
- 47.60137
- ],
- [
- 8.46631,
- 47.58666
- ],
- [
- 8.48985,
- 47.59139
- ],
- [
- 8.5,
- 47.58062
- ],
- [
- 8.43414,
- 47.5629
- ],
- [
- 8.39882,
- 47.57559
- ],
- [
- 8.38525,
- 47.56408
- ],
- [
- 8.32701,
- 47.56893
- ],
- [
- 8.29483,
- 47.59077
- ],
- [
- 8.2948,
- 47.60497
- ],
- [
- 8.26293,
- 47.60823
- ],
- [
- 8.22435,
- 47.60446
- ],
- [
- 8.18644,
- 47.60508
- ],
- [
- 8.16904,
- 47.59394
- ],
- [
- 8.13615,
- 47.58246
- ],
- [
- 8.10503,
- 47.56795
- ],
- [
- 8.09873,
- 47.55933
- ],
- [
- 8.08261,
- 47.55624
- ],
- [
- 8.07095,
- 47.56299
- ],
- [
- 8.0274,
- 47.54931
- ],
- [
- 7.94632,
- 47.54209
- ],
- [
- 7.90966,
- 47.54825
- ],
- [
- 7.90676,
- 47.5603
- ],
- [
- 7.88681,
- 47.58765
- ],
- [
- 7.83987,
- 47.58122
- ],
- [
- 7.79648,
- 47.55517
- ],
- [
- 7.69208,
- 47.53137
- ],
- [
- 7.66583,
- 47.53403
- ],
- [
- 7.63159,
- 47.56044
- ],
- [
- 7.63879,
- 47.56619
- ],
- [
- 7.68607,
- 47.57205
- ],
- [
- 7.65278,
- 47.59418
- ],
- [
- 7.62247,
- 47.57767
- ],
- [
- 7.60473,
- 47.57822
- ],
- [
- 7.58771,
- 47.59015
- ],
- [
- 7.52156,
- 47.65161
- ],
- [
- 7.50399,
- 47.70235
- ],
- [
- 7.52096,
- 47.77685
- ],
- [
- 7.55712,
- 47.84839
- ],
- [
- 7.54946,
- 47.8792
- ],
- [
- 7.57461,
- 47.93028
- ],
- [
- 7.61318,
- 47.96804
- ],
- [
- 7.6119,
- 47.9871
- ],
- [
- 7.56124,
- 48.03836
- ],
- [
- 7.57491,
- 48.1258
- ],
- [
- 7.59534,
- 48.15977
- ],
- [
- 7.63305,
- 48.19717
- ],
- [
- 7.66275,
- 48.22473
- ],
- [
- 7.68466,
- 48.30305
- ],
- [
- 7.76346,
- 48.49158
- ],
- [
- 7.80046,
- 48.5126
- ],
- [
- 7.79958,
- 48.5878
- ],
- [
- 7.83409,
- 48.64439
- ],
- [
- 7.91211,
- 48.68899
- ],
- [
- 7.96723,
- 48.75716
- ],
- [
- 8.02069,
- 48.78879
- ],
- [
- 8.04302,
- 48.7956
- ],
- [
- 8.08647,
- 48.81306
- ],
- [
- 8.13644,
- 48.89782
- ],
- [
- 8.19706,
- 48.96021
- ],
- [
- 8.28161,
- 48.9949
- ],
- [
- 8.29967,
- 49.02597
- ],
- [
- 8.31243,
- 49.05996
- ],
- [
- 8.38654,
- 49.23497
- ],
- [
- 8.46083,
- 49.28407
- ],
- [
- 8.48783,
- 49.29326
- ],
- [
- 8.47577,
- 49.3079
- ],
- [
- 8.44839,
- 49.31693
- ],
- [
- 8.45152,
- 49.33135
- ],
- [
- 8.46288,
- 49.3869
- ],
- [
- 8.49407,
- 49.40186
- ],
- [
- 8.49762,
- 49.41583
- ],
- [
- 8.50721,
- 49.43414
- ],
- [
- 8.49834,
- 49.44187
- ],
- [
- 8.47977,
- 49.44391
- ],
- [
- 8.46414,
- 49.44151
- ],
- [
- 8.44696,
- 49.44516
- ],
- [
- 8.43947,
- 49.45214
- ],
- [
- 8.44407,
- 49.46085
- ],
- [
- 8.45992,
- 49.46498
- ],
- [
- 8.46312,
- 49.47135
- ],
- [
- 8.4554,
- 49.48107
- ],
- [
- 8.44184,
- 49.49297
- ],
- [
- 8.41194,
- 49.55852
- ],
- [
- 8.42193,
- 49.5843
- ],
- [
- 8.44117,
- 49.59081
- ],
- [
- 8.45482,
- 49.59157
- ],
- [
- 8.47738,
- 49.5874
- ],
- [
- 8.56161,
- 49.52237
- ],
- [
- 8.61486,
- 49.54175
- ],
- [
- 8.59165,
- 49.59179
- ],
- [
- 8.58706,
- 49.61156
- ],
- [
- 8.65189,
- 49.6209
- ],
- [
- 8.69494,
- 49.62762
- ],
- [
- 8.70105,
- 49.59869
- ],
- [
- 8.68726,
- 49.57096
- ],
- [
- 8.72597,
- 49.53085
- ],
- [
- 8.78493,
- 49.51775
- ],
- [
- 8.81467,
- 49.53187
- ],
- [
- 8.88863,
- 49.51091
- ],
- [
- 8.90168,
- 49.50363
- ],
- [
- 8.90315,
- 49.486
- ],
- [
- 8.87995,
- 49.46561
- ],
- [
- 8.83117,
- 49.42147
- ],
- [
- 8.80845,
- 49.40981
- ],
- [
- 8.82075,
- 49.39647
- ],
- [
- 8.83009,
- 49.41316
- ],
- [
- 8.85107,
- 49.39663
- ],
- [
- 8.90247,
- 49.44632
- ],
- [
- 8.93863,
- 49.48179
- ],
- [
- 8.95154,
- 49.50562
- ],
- [
- 8.98498,
- 49.51153
- ],
- [
- 9.03553,
- 49.50079
- ],
- [
- 9.05731,
- 49.532
- ],
- [
- 9.10023,
- 49.52728
- ],
- [
- 9.11009,
- 49.51213
- ],
- [
- 9.12424,
- 49.51722
- ],
- [
- 9.11286,
- 49.53337
- ],
- [
- 9.08284,
- 49.54211
- ],
- [
- 9.06694,
- 49.56433
- ],
- [
- 9.06954,
- 49.57679
- ]
- ]
- ],
- "terms_url": "https://www.lgl-bw.de/",
- "terms_text": "Datengrundlage: LGL, www.lgl-bw.de"
- },
- {
- "id": "mar_vermelho_al",
- "name": "Mar Vermelho AL",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Mar%20Vermelho&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -36.34201,
- -9.49289
- ],
- [
- -36.3422,
- -9.47533
- ],
- [
- -36.34275,
- -9.4029
- ],
- [
- -36.34473,
- -9.4029
- ],
- [
- -36.34537,
- -9.40279
- ],
- [
- -36.34702,
- -9.40293
- ],
- [
- -36.3508,
- -9.40291
- ],
- [
- -36.359,
- -9.40307
- ],
- [
- -36.36109,
- -9.403
- ],
- [
- -36.36289,
- -9.40307
- ],
- [
- -36.3659,
- -9.40305
- ],
- [
- -36.36713,
- -9.40301
- ],
- [
- -36.37571,
- -9.40307
- ],
- [
- -36.38049,
- -9.40308
- ],
- [
- -36.38663,
- -9.4032
- ],
- [
- -36.38852,
- -9.40312
- ],
- [
- -36.39286,
- -9.40325
- ],
- [
- -36.39656,
- -9.40322
- ],
- [
- -36.40309,
- -9.40327
- ],
- [
- -36.41973,
- -9.40338
- ],
- [
- -36.43368,
- -9.4034
- ],
- [
- -36.43355,
- -9.41685
- ],
- [
- -36.43344,
- -9.42386
- ],
- [
- -36.43338,
- -9.43753
- ],
- [
- -36.43329,
- -9.45012
- ],
- [
- -36.433,
- -9.49359
- ],
- [
- -36.40839,
- -9.4935
- ],
- [
- -36.40442,
- -9.49354
- ],
- [
- -36.40008,
- -9.49351
- ],
- [
- -36.39787,
- -9.49342
- ],
- [
- -36.39168,
- -9.49328
- ],
- [
- -36.38757,
- -9.49331
- ],
- [
- -36.38536,
- -9.49341
- ],
- [
- -36.37673,
- -9.49331
- ],
- [
- -36.37427,
- -9.49319
- ],
- [
- -36.36707,
- -9.49299
- ],
- [
- -36.36502,
- -9.493
- ],
- [
- -36.36043,
- -9.49299
- ],
- [
- -36.35955,
- -9.49295
- ],
- [
- -36.35895,
- -9.49304
- ],
- [
- -36.35703,
- -9.49294
- ],
- [
- -36.35665,
- -9.493
- ],
- [
- -36.3526,
- -9.493
- ],
- [
- -36.34767,
- -9.49297
- ],
- [
- -36.34201,
- -9.49289
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "geodata.md.gov-MD_SixInchImagery",
- "name": "MD Latest 6 Inch Aerial Imagery",
- "type": "wms",
- "template": "https://geodata.md.gov/imap/services/Imagery/MD_SixInchImagery/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=MD_SixInchImagery&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2016-01-01T00:00:00.000Z",
- "startDate": "2013-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- -76.23413,
- 37.92037
- ],
- [
- -76.59805,
- 38.15832
- ],
- [
- -76.94,
- 38.27053
- ],
- [
- -77.03819,
- 38.41379
- ],
- [
- -77.23526,
- 38.33627
- ],
- [
- -77.31216,
- 38.41056
- ],
- [
- -77.26273,
- 38.56642
- ],
- [
- -77.043,
- 38.71338
- ],
- [
- -77.04987,
- 38.7937
- ],
- [
- -76.92627,
- 38.8925
- ],
- [
- -77.04094,
- 38.9845
- ],
- [
- -77.12162,
- 38.92523
- ],
- [
- -77.15012,
- 38.95514
- ],
- [
- -77.25243,
- 38.97543
- ],
- [
- -77.25929,
- 39.02425
- ],
- [
- -77.34581,
- 39.05492
- ],
- [
- -77.46185,
- 39.07038
- ],
- [
- -77.53738,
- 39.13965
- ],
- [
- -77.47421,
- 39.22481
- ],
- [
- -77.57275,
- 39.30428
- ],
- [
- -77.72347,
- 39.32899
- ],
- [
- -77.77702,
- 39.46323
- ],
- [
- -77.86148,
- 39.51622
- ],
- [
- -77.84088,
- 39.60886
- ],
- [
- -77.95624,
- 39.59299
- ],
- [
- -78.16635,
- 39.69556
- ],
- [
- -78.27003,
- 39.62156
- ],
- [
- -78.3387,
- 39.64007
- ],
- [
- -78.46641,
- 39.52364
- ],
- [
- -78.6628,
- 39.54006
- ],
- [
- -78.79875,
- 39.60622
- ],
- [
- -78.9814,
- 39.4468
- ],
- [
- -79.06723,
- 39.47649
- ],
- [
- -79.48505,
- 39.19954
- ],
- [
- -79.48557,
- 39.72158
- ],
- [
- -75.78836,
- 39.72181
- ],
- [
- -75.69099,
- 38.46058
- ],
- [
- -75.04924,
- 38.45816
- ],
- [
- -75.04984,
- 38.40222
- ],
- [
- -75.08151,
- 38.32321
- ],
- [
- -75.09773,
- 38.30907
- ],
- [
- -75.187,
- 38.09755
- ],
- [
- -75.23798,
- 38.0224
- ],
- [
- -75.61821,
- 37.98967
- ],
- [
- -75.86369,
- 37.90953
- ],
- [
- -76.23413,
- 37.92037
- ]
- ]
- ],
- "terms_url": "http://imap.maryland.gov/Pages/imagery-products.aspx",
- "terms_text": "DoIT, MD iMap, MDP",
- "description": "Six Inch resolution aerial imagery for the State of Maryland"
- },
- {
- "id": "geodata.md.gov-MD_ThreeInchImagery",
- "name": "MD Three Inch Aerial Imagery",
- "type": "wms",
- "template": "https://geodata.md.gov/imap/services/Imagery/MD_ThreeInchImagery/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=MD_ThreeInchImagery&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- -76.46299,
- 38.9808
- ],
- [
- -76.46326,
- 38.94779
- ],
- [
- -76.49499,
- 38.9369
- ],
- [
- -76.51617,
- 38.93697
- ],
- [
- -76.54763,
- 38.9591
- ],
- [
- -76.54745,
- 38.98667
- ],
- [
- -76.51559,
- 39.00306
- ],
- [
- -76.4839,
- 39.00292
- ],
- [
- -76.46299,
- 38.9808
- ]
- ],
- [
- [
- -76.09548,
- 38.84133
- ],
- [
- -76.0428,
- 38.8409
- ],
- [
- -76.04289,
- 38.8298
- ],
- [
- -76.03229,
- 38.8297
- ],
- [
- -76.03277,
- 38.79667
- ],
- [
- -76.02545,
- 38.79664
- ],
- [
- -76.02541,
- 38.77462
- ],
- [
- -76.03308,
- 38.77472
- ],
- [
- -76.03366,
- 38.73073
- ],
- [
- -76.05462,
- 38.73094
- ],
- [
- -76.0548,
- 38.72005
- ],
- [
- -76.10753,
- 38.72043
- ],
- [
- -76.10714,
- 38.75338
- ],
- [
- -76.11754,
- 38.75346
- ],
- [
- -76.11701,
- 38.79731
- ],
- [
- -76.09601,
- 38.79715
- ],
- [
- -76.09548,
- 38.84133
- ]
- ],
- [
- [
- -77.23397,
- 39.16838
- ],
- [
- -77.25516,
- 39.14647
- ],
- [
- -77.25496,
- 39.11343
- ],
- [
- -77.18093,
- 39.05337
- ],
- [
- -77.14907,
- 39.0477
- ],
- [
- -77.12798,
- 39.04779
- ],
- [
- -77.10683,
- 39.05325
- ],
- [
- -77.10688,
- 39.0917
- ],
- [
- -77.11775,
- 39.10827
- ],
- [
- -77.16011,
- 39.12485
- ],
- [
- -77.15975,
- 39.15214
- ],
- [
- -77.17048,
- 39.16302
- ],
- [
- -77.21284,
- 39.17272
- ],
- [
- -77.23397,
- 39.16838
- ]
- ]
- ],
- "terms_url": "http://imap.maryland.gov/Pages/imagery-products.aspx",
- "terms_text": "DoIT, MD iMap, MDP",
- "description": "Three Inch Resolution Imagery for the cities of Rockville, Gaithersburg and Annapolis"
- },
- {
- "id": "geodata.md.gov-MD_ColorBasemap",
- "name": "MD Transportation Basemap",
- "type": "wms",
- "template": "https://geodata.md.gov/imap/services/Transportation/MD_ColorBasemap/MapServer/WmsServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=MD_ColorBasemap&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -76.23413,
- 37.92037
- ],
- [
- -76.59805,
- 38.15832
- ],
- [
- -76.94,
- 38.27053
- ],
- [
- -77.03819,
- 38.41379
- ],
- [
- -77.23526,
- 38.33627
- ],
- [
- -77.31216,
- 38.41056
- ],
- [
- -77.26273,
- 38.56642
- ],
- [
- -77.043,
- 38.71338
- ],
- [
- -77.04987,
- 38.7937
- ],
- [
- -76.92627,
- 38.8925
- ],
- [
- -77.04094,
- 38.9845
- ],
- [
- -77.12162,
- 38.92523
- ],
- [
- -77.15012,
- 38.95514
- ],
- [
- -77.25243,
- 38.97543
- ],
- [
- -77.25929,
- 39.02425
- ],
- [
- -77.34581,
- 39.05492
- ],
- [
- -77.46185,
- 39.07038
- ],
- [
- -77.53738,
- 39.13965
- ],
- [
- -77.47421,
- 39.22481
- ],
- [
- -77.57275,
- 39.30428
- ],
- [
- -77.72347,
- 39.32899
- ],
- [
- -77.77702,
- 39.46323
- ],
- [
- -77.86148,
- 39.51622
- ],
- [
- -77.84088,
- 39.60886
- ],
- [
- -77.95624,
- 39.59299
- ],
- [
- -78.16635,
- 39.69556
- ],
- [
- -78.27003,
- 39.62156
- ],
- [
- -78.3387,
- 39.64007
- ],
- [
- -78.46641,
- 39.52364
- ],
- [
- -78.6628,
- 39.54006
- ],
- [
- -78.79875,
- 39.60622
- ],
- [
- -78.9814,
- 39.4468
- ],
- [
- -79.06723,
- 39.47649
- ],
- [
- -79.48505,
- 39.19954
- ],
- [
- -79.48557,
- 39.72158
- ],
- [
- -75.78836,
- 39.72181
- ],
- [
- -75.69099,
- 38.46058
- ],
- [
- -75.04924,
- 38.45816
- ],
- [
- -75.04984,
- 38.40222
- ],
- [
- -75.08151,
- 38.32321
- ],
- [
- -75.09773,
- 38.30907
- ],
- [
- -75.187,
- 38.09755
- ],
- [
- -75.23798,
- 38.0224
- ],
- [
- -75.61821,
- 37.98967
- ],
- [
- -75.86369,
- 37.90953
- ],
- [
- -76.23413,
- 37.92037
- ]
- ]
- ],
- "terms_url": "http://imap.maryland.gov/Pages/imagery-products.aspx",
- "terms_text": "DoIT, MD iMap, MDP",
- "description": "Maryland State Highway Administration road features and additional Maryland focused landmarks"
- },
- {
- "id": "miljodirektoratet-friluftsomrader",
- "name": "Miljødirektoratet Public Recreation Areas overlay",
- "type": "wms",
- "template": "https://arcgisproxy.miljodirektoratet.no/arcgis/services/friluftsliv_statlig_sikra/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=friluftsliv_statlig_sikra&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:4326",
- "scaleExtent": [
- 0,
- 22
- ],
- "polygon": [
- [
- [
- 31.90425,
- 70.43681
- ],
- [
- 28.47652,
- 71.32896
- ],
- [
- 23.6865,
- 71.25143
- ],
- [
- 16.80906,
- 70.07308
- ],
- [
- 11.16207,
- 67.52539
- ],
- [
- 9.97554,
- 64.81158
- ],
- [
- 4.21871,
- 62.145
- ],
- [
- 4.37254,
- 59.1872
- ],
- [
- 6.17431,
- 57.8915
- ],
- [
- 7.93212,
- 57.73936
- ],
- [
- 10.77758,
- 58.86491
- ],
- [
- 11.7224,
- 58.76251
- ],
- [
- 12.72216,
- 60.11415
- ],
- [
- 13.05175,
- 61.34935
- ],
- [
- 12.52439,
- 63.61699
- ],
- [
- 14.23826,
- 63.98561
- ],
- [
- 15.11717,
- 65.90166
- ],
- [
- 18.69871,
- 68.37491
- ],
- [
- 20.06101,
- 68.26126
- ],
- [
- 21.00584,
- 68.78415
- ],
- [
- 25.24656,
- 68.3506
- ],
- [
- 26.93845,
- 69.8472
- ],
- [
- 28.76219,
- 69.61121
- ],
- [
- 28.5864,
- 68.8556
- ],
- [
- 31.06931,
- 69.51915
- ],
- [
- 31.90425,
- 70.43681
- ]
- ]
- ],
- "terms_url": "http://www.miljostatus.no/tema/friluftsliv/statlig-sikra-friluftlivsomrader/",
- "terms_text": "© Miljødirektoratet",
- "description": "Public recreation areas with State ownership (\"friluftsområder\").",
- "icon": "http://www.miljodirektoratet.no/Framework/favicon-32.png",
- "overlay": true
- },
- {
- "id": "minador_do_negrao",
- "name": "Minador do Negrão",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Minador%20do%20Negrao&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -36.8196,
- -9.35174
- ],
- [
- -36.82017,
- -9.26142
- ],
- [
- -36.82465,
- -9.26133
- ],
- [
- -36.83064,
- -9.26147
- ],
- [
- -36.83673,
- -9.2615
- ],
- [
- -36.84228,
- -9.26148
- ],
- [
- -36.84562,
- -9.2616
- ],
- [
- -36.85564,
- -9.2616
- ],
- [
- -36.86214,
- -9.26159
- ],
- [
- -36.8659,
- -9.26147
- ],
- [
- -36.86724,
- -9.2615
- ],
- [
- -36.86952,
- -9.26149
- ],
- [
- -36.87127,
- -9.26157
- ],
- [
- -36.87476,
- -9.26153
- ],
- [
- -36.87816,
- -9.26163
- ],
- [
- -36.88321,
- -9.2617
- ],
- [
- -36.88565,
- -9.26167
- ],
- [
- -36.88857,
- -9.26148
- ],
- [
- -36.89217,
- -9.26151
- ],
- [
- -36.89383,
- -9.26163
- ],
- [
- -36.8974,
- -9.26175
- ],
- [
- -36.91122,
- -9.26183
- ],
- [
- -36.9111,
- -9.26651
- ],
- [
- -36.91112,
- -9.28542
- ],
- [
- -36.91121,
- -9.29066
- ],
- [
- -36.91118,
- -9.29368
- ],
- [
- -36.91099,
- -9.29929
- ],
- [
- -36.91091,
- -9.30729
- ],
- [
- -36.9109,
- -9.3123
- ],
- [
- -36.91083,
- -9.31597
- ],
- [
- -36.91084,
- -9.32013
- ],
- [
- -36.91098,
- -9.32395
- ],
- [
- -36.91099,
- -9.32587
- ],
- [
- -36.91079,
- -9.32964
- ],
- [
- -36.91079,
- -9.33523
- ],
- [
- -36.91074,
- -9.33944
- ],
- [
- -36.91092,
- -9.34311
- ],
- [
- -36.91084,
- -9.34471
- ],
- [
- -36.91066,
- -9.35229
- ],
- [
- -36.89277,
- -9.35225
- ],
- [
- -36.87735,
- -9.35212
- ],
- [
- -36.86463,
- -9.35203
- ],
- [
- -36.85761,
- -9.35194
- ],
- [
- -36.84344,
- -9.35191
- ],
- [
- -36.83115,
- -9.3518
- ],
- [
- -36.8196,
- -9.35174
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "mml-tausta",
- "name": "MML Background Map",
- "type": "tms",
- "template": "http://tiles.kartat.kapsi.fi/taustakartta/{zoom}/{x}/{y}.jpg",
- "scaleExtent": [
- 2,
- 19
- ],
- "polygon": [
- [
- [
- 27.96569,
- 70.0988
- ],
- [
- 27.57431,
- 70.07728
- ],
- [
- 27.10876,
- 69.93548
- ],
- [
- 26.70913,
- 69.97549
- ],
- [
- 26.45507,
- 69.94207
- ],
- [
- 25.87142,
- 69.6671
- ],
- [
- 25.94833,
- 69.61024
- ],
- [
- 25.83023,
- 69.55323
- ],
- [
- 25.66955,
- 69.20794
- ],
- [
- 25.73822,
- 69.01797
- ],
- [
- 25.60089,
- 68.90309
- ],
- [
- 25.45806,
- 68.91199
- ],
- [
- 25.11749,
- 68.80699
- ],
- [
- 25.07354,
- 68.64355
- ],
- [
- 24.88128,
- 68.62003
- ],
- [
- 23.97491,
- 68.84568
- ],
- [
- 23.74969,
- 68.8308
- ],
- [
- 23.63433,
- 68.71645
- ],
- [
- 23.18939,
- 68.68053
- ],
- [
- 22.52197,
- 68.7553
- ],
- [
- 21.63894,
- 69.28191
- ],
- [
- 21.26953,
- 69.31783
- ],
- [
- 20.94131,
- 69.21622
- ],
- [
- 21.08963,
- 69.09307
- ],
- [
- 21.05941,
- 69.04352
- ],
- [
- 20.72296,
- 69.12491
- ],
- [
- 20.54443,
- 69.0558
- ],
- [
- 20.84655,
- 68.97416
- ],
- [
- 20.81634,
- 68.91742
- ],
- [
- 21.38754,
- 68.68461
- ],
- [
- 22.04734,
- 68.47066
- ],
- [
- 22.80212,
- 68.35464
- ],
- [
- 23.12072,
- 68.13169
- ],
- [
- 23.5437,
- 67.9633
- ],
- [
- 23.44757,
- 67.8393
- ],
- [
- 23.48602,
- 67.59352
- ],
- [
- 23.36517,
- 67.46545
- ],
- [
- 23.71124,
- 67.41592
- ],
- [
- 23.72772,
- 67.32186
- ],
- [
- 23.54644,
- 67.26885
- ],
- [
- 23.53128,
- 67.16724
- ],
- [
- 23.89251,
- 66.86863
- ],
- [
- 23.84582,
- 66.57775
- ],
- [
- 23.61843,
- 66.44562
- ],
- [
- 23.67171,
- 66.20303
- ],
- [
- 23.87191,
- 66.14551
- ],
- [
- 24.09988,
- 65.87247
- ],
- [
- 24.1658,
- 65.66959
- ],
- [
- 24.11636,
- 65.39143
- ],
- [
- 21.37939,
- 63.68037
- ],
- [
- 20.17639,
- 63.29787
- ],
- [
- 19.08325,
- 60.16064
- ],
- [
- 20.22033,
- 59.44786
- ],
- [
- 22.29125,
- 59.44507
- ],
- [
- 25.82336,
- 59.933
- ],
- [
- 27.52075,
- 60.23435
- ],
- [
- 27.83386,
- 60.53229
- ],
- [
- 29.29641,
- 61.26165
- ],
- [
- 31.20803,
- 62.44759
- ],
- [
- 31.62826,
- 62.90585
- ],
- [
- 31.2635,
- 63.22106
- ],
- [
- 29.99605,
- 63.75387
- ],
- [
- 30.28656,
- 63.81704
- ],
- [
- 30.58319,
- 64.0782
- ],
- [
- 30.5104,
- 64.26428
- ],
- [
- 30.09979,
- 64.39218
- ],
- [
- 30.02563,
- 64.58736
- ],
- [
- 30.16845,
- 64.63329
- ],
- [
- 30.09429,
- 64.79518
- ],
- [
- 29.78393,
- 64.79811
- ],
- [
- 29.65347,
- 64.89733
- ],
- [
- 29.65759,
- 65.05939
- ],
- [
- 29.91027,
- 65.09527
- ],
- [
- 29.93225,
- 65.20895
- ],
- [
- 29.72076,
- 65.27853
- ],
- [
- 29.91577,
- 65.63788
- ],
- [
- 30.1863,
- 65.66223
- ],
- [
- 29.9913,
- 66.09771
- ],
- [
- 29.07119,
- 66.91983
- ],
- [
- 30.11077,
- 67.63431
- ],
- [
- 29.3486,
- 68.08099
- ],
- [
- 28.67568,
- 68.20166
- ],
- [
- 28.46547,
- 68.54039
- ],
- [
- 28.72375,
- 68.72642
- ],
- [
- 28.82675,
- 68.87341
- ],
- [
- 28.44985,
- 68.90792
- ],
- [
- 28.95996,
- 69.05089
- ],
- [
- 28.83324,
- 69.10563
- ],
- [
- 28.87207,
- 69.22132
- ],
- [
- 29.36096,
- 69.46526
- ],
- [
- 29.15634,
- 69.69667
- ],
- [
- 28.38455,
- 69.83488
- ],
- [
- 28.35845,
- 69.88312
- ],
- [
- 28.17169,
- 69.92511
- ],
- [
- 28.00415,
- 70.01495
- ],
- [
- 27.96569,
- 70.0988
- ]
- ]
- ],
- "terms_url": "https://www.maanmittauslaitos.fi/en/",
- "terms_text": "© Maanmittauslaitos",
- "description": "Background map from the National Land Survey of Finland",
- "icon": "https://www.maanmittauslaitos.fi/apple-touch-icon.png"
- },
- {
- "id": "mml-orto",
- "name": "MML Orthophoto",
- "type": "tms",
- "template": "http://tiles.kartat.kapsi.fi/ortokuva/{zoom}/{x}/{y}.jpg",
- "scaleExtent": [
- 2,
- 19
- ],
- "polygon": [
- [
- [
- 27.96569,
- 70.0988
- ],
- [
- 27.57431,
- 70.07728
- ],
- [
- 27.10876,
- 69.93548
- ],
- [
- 26.70913,
- 69.97549
- ],
- [
- 26.45507,
- 69.94207
- ],
- [
- 25.87142,
- 69.6671
- ],
- [
- 25.94833,
- 69.61024
- ],
- [
- 25.83023,
- 69.55323
- ],
- [
- 25.66955,
- 69.20794
- ],
- [
- 25.73822,
- 69.01797
- ],
- [
- 25.60089,
- 68.90309
- ],
- [
- 25.45806,
- 68.91199
- ],
- [
- 25.11749,
- 68.80699
- ],
- [
- 25.07354,
- 68.64355
- ],
- [
- 24.88128,
- 68.62003
- ],
- [
- 23.97491,
- 68.84568
- ],
- [
- 23.74969,
- 68.8308
- ],
- [
- 23.63433,
- 68.71645
- ],
- [
- 23.18939,
- 68.68053
- ],
- [
- 22.52197,
- 68.7553
- ],
- [
- 21.63894,
- 69.28191
- ],
- [
- 21.26953,
- 69.31783
- ],
- [
- 20.94131,
- 69.21622
- ],
- [
- 21.08963,
- 69.09307
- ],
- [
- 21.05941,
- 69.04352
- ],
- [
- 20.72296,
- 69.12491
- ],
- [
- 20.54443,
- 69.0558
- ],
- [
- 20.84655,
- 68.97416
- ],
- [
- 20.81634,
- 68.91742
- ],
- [
- 21.38754,
- 68.68461
- ],
- [
- 22.04734,
- 68.47066
- ],
- [
- 22.80212,
- 68.35464
- ],
- [
- 23.12072,
- 68.13169
- ],
- [
- 23.5437,
- 67.9633
- ],
- [
- 23.44757,
- 67.8393
- ],
- [
- 23.48602,
- 67.59352
- ],
- [
- 23.36517,
- 67.46545
- ],
- [
- 23.71124,
- 67.41592
- ],
- [
- 23.72772,
- 67.32186
- ],
- [
- 23.54644,
- 67.26885
- ],
- [
- 23.53128,
- 67.16724
- ],
- [
- 23.89251,
- 66.86863
- ],
- [
- 23.84582,
- 66.57775
- ],
- [
- 23.61843,
- 66.44562
- ],
- [
- 23.67171,
- 66.20303
- ],
- [
- 23.87191,
- 66.14551
- ],
- [
- 24.09988,
- 65.87247
- ],
- [
- 24.1658,
- 65.66959
- ],
- [
- 24.11636,
- 65.39143
- ],
- [
- 21.37939,
- 63.68037
- ],
- [
- 20.17639,
- 63.29787
- ],
- [
- 19.08325,
- 60.16064
- ],
- [
- 20.22033,
- 59.44786
- ],
- [
- 22.29125,
- 59.44507
- ],
- [
- 25.82336,
- 59.933
- ],
- [
- 27.52075,
- 60.23435
- ],
- [
- 27.83386,
- 60.53229
- ],
- [
- 29.29641,
- 61.26165
- ],
- [
- 31.20803,
- 62.44759
- ],
- [
- 31.62826,
- 62.90585
- ],
- [
- 31.2635,
- 63.22106
- ],
- [
- 29.99605,
- 63.75387
- ],
- [
- 30.28656,
- 63.81704
- ],
- [
- 30.58319,
- 64.0782
- ],
- [
- 30.5104,
- 64.26428
- ],
- [
- 30.09979,
- 64.39218
- ],
- [
- 30.02563,
- 64.58736
- ],
- [
- 30.16845,
- 64.63329
- ],
- [
- 30.09429,
- 64.79518
- ],
- [
- 29.78393,
- 64.79811
- ],
- [
- 29.65347,
- 64.89733
- ],
- [
- 29.65759,
- 65.05939
- ],
- [
- 29.91027,
- 65.09527
- ],
- [
- 29.93225,
- 65.20895
- ],
- [
- 29.72076,
- 65.27853
- ],
- [
- 29.91577,
- 65.63788
- ],
- [
- 30.1863,
- 65.66223
- ],
- [
- 29.9913,
- 66.09771
- ],
- [
- 29.07119,
- 66.91983
- ],
- [
- 30.11077,
- 67.63431
- ],
- [
- 29.3486,
- 68.08099
- ],
- [
- 28.67568,
- 68.20166
- ],
- [
- 28.46547,
- 68.54039
- ],
- [
- 28.72375,
- 68.72642
- ],
- [
- 28.82675,
- 68.87341
- ],
- [
- 28.44985,
- 68.90792
- ],
- [
- 28.95996,
- 69.05089
- ],
- [
- 28.83324,
- 69.10563
- ],
- [
- 28.87207,
- 69.22132
- ],
- [
- 29.36096,
- 69.46526
- ],
- [
- 29.15634,
- 69.69667
- ],
- [
- 28.38455,
- 69.83488
- ],
- [
- 28.35845,
- 69.88312
- ],
- [
- 28.17169,
- 69.92511
- ],
- [
- 28.00415,
- 70.01495
- ],
- [
- 27.96569,
- 70.0988
- ]
- ]
- ],
- "terms_url": "https://www.maanmittauslaitos.fi/en/",
- "terms_text": "© Maanmittauslaitos",
- "best": true,
- "description": "Ortophotos from the National Land Survey of Finland",
- "icon": "https://www.maanmittauslaitos.fi/apple-touch-icon.png"
- },
- {
- "id": "mml-topo",
- "name": "MML Topographic Map",
- "type": "tms",
- "template": "http://tiles.kartat.kapsi.fi/peruskartta/{zoom}/{x}/{y}.jpg",
- "scaleExtent": [
- 2,
- 19
- ],
- "polygon": [
- [
- [
- 27.96569,
- 70.0988
- ],
- [
- 27.57431,
- 70.07728
- ],
- [
- 27.10876,
- 69.93548
- ],
- [
- 26.70913,
- 69.97549
- ],
- [
- 26.45507,
- 69.94207
- ],
- [
- 25.87142,
- 69.6671
- ],
- [
- 25.94833,
- 69.61024
- ],
- [
- 25.83023,
- 69.55323
- ],
- [
- 25.66955,
- 69.20794
- ],
- [
- 25.73822,
- 69.01797
- ],
- [
- 25.60089,
- 68.90309
- ],
- [
- 25.45806,
- 68.91199
- ],
- [
- 25.11749,
- 68.80699
- ],
- [
- 25.07354,
- 68.64355
- ],
- [
- 24.88128,
- 68.62003
- ],
- [
- 23.97491,
- 68.84568
- ],
- [
- 23.74969,
- 68.8308
- ],
- [
- 23.63433,
- 68.71645
- ],
- [
- 23.18939,
- 68.68053
- ],
- [
- 22.52197,
- 68.7553
- ],
- [
- 21.63894,
- 69.28191
- ],
- [
- 21.26953,
- 69.31783
- ],
- [
- 20.94131,
- 69.21622
- ],
- [
- 21.08963,
- 69.09307
- ],
- [
- 21.05941,
- 69.04352
- ],
- [
- 20.72296,
- 69.12491
- ],
- [
- 20.54443,
- 69.0558
- ],
- [
- 20.84655,
- 68.97416
- ],
- [
- 20.81634,
- 68.91742
- ],
- [
- 21.38754,
- 68.68461
- ],
- [
- 22.04734,
- 68.47066
- ],
- [
- 22.80212,
- 68.35464
- ],
- [
- 23.12072,
- 68.13169
- ],
- [
- 23.5437,
- 67.9633
- ],
- [
- 23.44757,
- 67.8393
- ],
- [
- 23.48602,
- 67.59352
- ],
- [
- 23.36517,
- 67.46545
- ],
- [
- 23.71124,
- 67.41592
- ],
- [
- 23.72772,
- 67.32186
- ],
- [
- 23.54644,
- 67.26885
- ],
- [
- 23.53128,
- 67.16724
- ],
- [
- 23.89251,
- 66.86863
- ],
- [
- 23.84582,
- 66.57775
- ],
- [
- 23.61843,
- 66.44562
- ],
- [
- 23.67171,
- 66.20303
- ],
- [
- 23.87191,
- 66.14551
- ],
- [
- 24.09988,
- 65.87247
- ],
- [
- 24.1658,
- 65.66959
- ],
- [
- 24.11636,
- 65.39143
- ],
- [
- 21.37939,
- 63.68037
- ],
- [
- 20.17639,
- 63.29787
- ],
- [
- 19.08325,
- 60.16064
- ],
- [
- 20.22033,
- 59.44786
- ],
- [
- 22.29125,
- 59.44507
- ],
- [
- 25.82336,
- 59.933
- ],
- [
- 27.52075,
- 60.23435
- ],
- [
- 27.83386,
- 60.53229
- ],
- [
- 29.29641,
- 61.26165
- ],
- [
- 31.20803,
- 62.44759
- ],
- [
- 31.62826,
- 62.90585
- ],
- [
- 31.2635,
- 63.22106
- ],
- [
- 29.99605,
- 63.75387
- ],
- [
- 30.28656,
- 63.81704
- ],
- [
- 30.58319,
- 64.0782
- ],
- [
- 30.5104,
- 64.26428
- ],
- [
- 30.09979,
- 64.39218
- ],
- [
- 30.02563,
- 64.58736
- ],
- [
- 30.16845,
- 64.63329
- ],
- [
- 30.09429,
- 64.79518
- ],
- [
- 29.78393,
- 64.79811
- ],
- [
- 29.65347,
- 64.89733
- ],
- [
- 29.65759,
- 65.05939
- ],
- [
- 29.91027,
- 65.09527
- ],
- [
- 29.93225,
- 65.20895
- ],
- [
- 29.72076,
- 65.27853
- ],
- [
- 29.91577,
- 65.63788
- ],
- [
- 30.1863,
- 65.66223
- ],
- [
- 29.9913,
- 66.09771
- ],
- [
- 29.07119,
- 66.91983
- ],
- [
- 30.11077,
- 67.63431
- ],
- [
- 29.3486,
- 68.08099
- ],
- [
- 28.67568,
- 68.20166
- ],
- [
- 28.46547,
- 68.54039
- ],
- [
- 28.72375,
- 68.72642
- ],
- [
- 28.82675,
- 68.87341
- ],
- [
- 28.44985,
- 68.90792
- ],
- [
- 28.95996,
- 69.05089
- ],
- [
- 28.83324,
- 69.10563
- ],
- [
- 28.87207,
- 69.22132
- ],
- [
- 29.36096,
- 69.46526
- ],
- [
- 29.15634,
- 69.69667
- ],
- [
- 28.38455,
- 69.83488
- ],
- [
- 28.35845,
- 69.88312
- ],
- [
- 28.17169,
- 69.92511
- ],
- [
- 28.00415,
- 70.01495
- ],
- [
- 27.96569,
- 70.0988
- ]
- ]
- ],
- "terms_url": "https://www.maanmittauslaitos.fi/en/",
- "terms_text": "© Maanmittauslaitos",
- "description": "Topographic map from the National Land Survey of Finland",
- "icon": "https://www.maanmittauslaitos.fi/apple-touch-icon.png"
- },
- {
- "id": "MunichLatestAerialImagery",
- "name": "Munich latest aerial imagery 60cm",
- "type": "wms",
- "template": "https://ogc.muenchen.de/wms/opendata_luftbild?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=bgl0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2015-01-01T00:00:00.000Z",
- "startDate": "2015-01-01T00:00:00.000Z",
- "scaleExtent": [
- 11,
- 22
- ],
- "polygon": [
- [
- [
- 11.48878,
- 48.053
- ],
- [
- 11.55589,
- 48.05323
- ],
- [
- 11.55583,
- 48.06224
- ],
- [
- 11.56915,
- 48.06229
- ],
- [
- 11.56908,
- 48.07128
- ],
- [
- 11.64986,
- 48.07155
- ],
- [
- 11.64993,
- 48.06256
- ],
- [
- 11.70326,
- 48.06274
- ],
- [
- 11.70313,
- 48.08074
- ],
- [
- 11.71673,
- 48.08079
- ],
- [
- 11.71667,
- 48.08968
- ],
- [
- 11.7299,
- 48.08972
- ],
- [
- 11.72963,
- 48.12566
- ],
- [
- 11.74313,
- 48.1257
- ],
- [
- 11.74292,
- 48.15276
- ],
- [
- 11.72943,
- 48.15271
- ],
- [
- 11.72936,
- 48.16152
- ],
- [
- 11.71612,
- 48.16147
- ],
- [
- 11.71592,
- 48.18859
- ],
- [
- 11.7027,
- 48.18855
- ],
- [
- 11.70263,
- 48.19752
- ],
- [
- 11.67558,
- 48.19743
- ],
- [
- 11.67537,
- 48.22446
- ],
- [
- 11.66176,
- 48.22441
- ],
- [
- 11.66169,
- 48.23355
- ],
- [
- 11.64863,
- 48.2335
- ],
- [
- 11.64857,
- 48.24246
- ],
- [
- 11.54064,
- 48.2421
- ],
- [
- 11.54058,
- 48.25093
- ],
- [
- 11.52735,
- 48.25088
- ],
- [
- 11.52728,
- 48.26001
- ],
- [
- 11.47335,
- 48.25983
- ],
- [
- 11.47356,
- 48.23291
- ],
- [
- 11.46014,
- 48.23287
- ],
- [
- 11.46021,
- 48.22373
- ],
- [
- 11.43336,
- 48.22364
- ],
- [
- 11.43343,
- 48.21439
- ],
- [
- 11.3798,
- 48.21421
- ],
- [
- 11.37987,
- 48.20518
- ],
- [
- 11.36607,
- 48.20514
- ],
- [
- 11.36621,
- 48.18741
- ],
- [
- 11.35259,
- 48.18737
- ],
- [
- 11.35266,
- 48.17817
- ],
- [
- 11.33946,
- 48.17813
- ],
- [
- 11.33973,
- 48.14216
- ],
- [
- 11.36684,
- 48.14225
- ],
- [
- 11.36697,
- 48.12443
- ],
- [
- 11.38083,
- 48.12448
- ],
- [
- 11.3809,
- 48.11558
- ],
- [
- 11.44769,
- 48.1158
- ],
- [
- 11.44804,
- 48.07087
- ],
- [
- 11.46186,
- 48.07091
- ],
- [
- 11.46193,
- 48.06193
- ],
- [
- 11.48872,
- 48.06202
- ],
- [
- 11.48878,
- 48.053
- ]
- ]
- ],
- "terms_url": "http://www.geodatenservice-muenchen.de/",
- "terms_text": "Datenquelle: dl-de/by-2-0: Landeshauptstadt München – Kommunalreferat – GeodatenService – www.geodatenservice-muenchen.de",
- "icon": "http://www.muenchen.de/media/css/images/favicon_114x114.png"
- },
- {
- "id": "openlabs-geoportal-public-transport",
- "name": "Municipality of Tirana - Public Transport (Open Labs GeoPortal) (overlay)",
- "type": "tms",
- "template": "https://geoportal.openlabs.cc/mapcache/tms/1.0.0/public-transport@GoogleMapsCompatibleExtended/{zoom}/{x}/{-y}.png",
- "endDate": "2017-01-01T00:00:00.000Z",
- "startDate": "2017-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 21
- ],
- "polygon": [
- [
- [
- 19.73762,
- 41.30154
- ],
- [
- 19.88628,
- 41.27213
- ],
- [
- 19.86877,
- 41.38582
- ],
- [
- 19.68338,
- 41.3732
- ],
- [
- 19.73762,
- 41.30154
- ]
- ]
- ],
- "terms_url": "https://geoportal.openlabs.cc/",
- "terms_text": "Data provided by the Muncipality of Tirana hosted by Open Labs",
- "description": "Bus stops & lines provided by the Muncipality of Tirana hosted by Open Labs",
- "overlay": true
- },
- {
- "id": "openlabs-geoportal-tirana",
- "name": "Municipality of Tirana (Open Labs GeoPortal)",
- "type": "tms",
- "template": "https://geoportal.openlabs.cc/mapcache/tms/1.0.0/tirana@GoogleMapsCompatibleExtended/{zoom}/{x}/{-y}.png",
- "endDate": "2017-01-01T00:00:00.000Z",
- "startDate": "2017-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 21
- ],
- "polygon": [
- [
- [
- 19.70226,
- 41.1404
- ],
- [
- 19.77573,
- 41.11868
- ],
- [
- 19.86431,
- 41.12126
- ],
- [
- 20.24986,
- 41.3495
- ],
- [
- 20.03082,
- 41.41184
- ],
- [
- 19.92577,
- 41.5204
- ],
- [
- 19.88869,
- 41.50755
- ],
- [
- 19.88937,
- 41.42265
- ],
- [
- 19.81659,
- 41.46177
- ],
- [
- 19.7335,
- 41.43037
- ],
- [
- 19.74174,
- 41.37887
- ],
- [
- 19.65797,
- 41.37475
- ],
- [
- 19.57214,
- 41.24322
- ],
- [
- 19.61815,
- 41.22567
- ],
- [
- 19.67171,
- 41.22722
- ],
- [
- 19.70226,
- 41.1404
- ]
- ]
- ],
- "terms_url": "https://geoportal.openlabs.cc",
- "terms_text": "Data provided by the Muncipality of Tirana hosted by Open Labs",
- "description": "Streets & Builings provided by the Muncipality of Tirana hosted by Open Labs"
- },
- {
- "id": "NC-US",
- "name": "NC Latest Orthoimagery",
- "type": "wms",
- "template": "https://services.nconemap.gov/secure/services/Imagery/Orthoimagery_All/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2013-01-01T00:00:00.000Z",
- "startDate": "1995-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- -81.6792,
- 36.5974
- ],
- [
- -80.25359,
- 36.54793
- ],
- [
- -75.8409,
- 36.5671
- ],
- [
- -75.4323,
- 35.6441
- ],
- [
- -75.50475,
- 35.18806
- ],
- [
- -75.70525,
- 35.17684
- ],
- [
- -76.14745,
- 34.94077
- ],
- [
- -76.53472,
- 34.55487
- ],
- [
- -76.69676,
- 34.66789
- ],
- [
- -77.27904,
- 34.53224
- ],
- [
- -77.68828,
- 34.26482
- ],
- [
- -77.9435,
- 33.8269
- ],
- [
- -78.21288,
- 33.89402
- ],
- [
- -78.5301,
- 33.8304
- ],
- [
- -79.6693,
- 34.7916
- ],
- [
- -80.8122,
- 34.8085
- ],
- [
- -80.84685,
- 34.96329
- ],
- [
- -80.95122,
- 35.05552
- ],
- [
- -81.06383,
- 35.01729
- ],
- [
- -81.07482,
- 35.13417
- ],
- [
- -82.3632,
- 35.1805
- ],
- [
- -82.9989,
- 34.9919
- ],
- [
- -84.3333,
- 34.9767
- ],
- [
- -84.27184,
- 35.28229
- ],
- [
- -84.09056,
- 35.27332
- ],
- [
- -83.91478,
- 35.53301
- ],
- [
- -83.55498,
- 35.5911
- ],
- [
- -83.2556,
- 35.73392
- ],
- [
- -82.98644,
- 35.81414
- ],
- [
- -82.92327,
- 35.96767
- ],
- [
- -82.67882,
- 36.0854
- ],
- [
- -82.60192,
- 36.08984
- ],
- [
- -82.536,
- 35.96989
- ],
- [
- -82.35472,
- 36.14752
- ],
- [
- -82.04436,
- 36.14309
- ],
- [
- -81.90428,
- 36.33803
- ],
- [
- -81.74224,
- 36.37342
- ],
- [
- -81.6792,
- 36.5974
- ]
- ]
- ],
- "description": "Most recent true color imagery for the state of North Carolina. The imagery has a pixel resolution of 6 inches and is comprised of imagery flown in 2010, 2012, 2013, and 2014"
- },
- {
- "id": "geodata.state.nj.us-Infrared2015",
- "name": "NJ 2015 Aerial Imagery (Infrared)",
- "type": "wms",
- "template": "https://geodata.state.nj.us/imagerywms/Infrared2015?FORMAT=image/png&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&SRS={proj}&WIDTH={width}&HEIGHT={height}&LAYERS=Infrared2015&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2015-05-03T00:00:00.000Z",
- "startDate": "2015-03-29T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- -74.86599,
- 40.08543
- ],
- [
- -74.84093,
- 40.10722
- ],
- [
- -74.8229,
- 40.13033
- ],
- [
- -74.78805,
- 40.12468
- ],
- [
- -74.72609,
- 40.14949
- ],
- [
- -74.72918,
- 40.16392
- ],
- [
- -74.76334,
- 40.19172
- ],
- [
- -74.77552,
- 40.21428
- ],
- [
- -74.84402,
- 40.24796
- ],
- [
- -74.86839,
- 40.29157
- ],
- [
- -74.94461,
- 40.33817
- ],
- [
- -74.9671,
- 40.3952
- ],
- [
- -75.00263,
- 40.40605
- ],
- [
- -75.02684,
- 40.40252
- ],
- [
- -75.06134,
- 40.4165
- ],
- [
- -75.07421,
- 40.45505
- ],
- [
- -75.06906,
- 40.5365
- ],
- [
- -75.10237,
- 40.56702
- ],
- [
- -75.13593,
- 40.57361
- ],
- [
- -75.16777,
- 40.55907
- ],
- [
- -75.19764,
- 40.57367
- ],
- [
- -75.20373,
- 40.61832
- ],
- [
- -75.20506,
- 40.69131
- ],
- [
- -75.19833,
- 40.75389
- ],
- [
- -75.1724,
- 40.78067
- ],
- [
- -75.1367,
- 40.77729
- ],
- [
- -75.09018,
- 40.82238
- ],
- [
- -75.10099,
- 40.83927
- ],
- [
- -75.09687,
- 40.85096
- ],
- [
- -75.06846,
- 40.85037
- ],
- [
- -75.05705,
- 40.86757
- ],
- [
- -75.13773,
- 40.97309
- ],
- [
- -75.13515,
- 40.99441
- ],
- [
- -75.03902,
- 41.03819
- ],
- [
- -74.98152,
- 41.1126
- ],
- [
- -74.90547,
- 41.17038
- ],
- [
- -74.84024,
- 41.27864
- ],
- [
- -74.79801,
- 41.32268
- ],
- [
- -74.75716,
- 41.34769
- ],
- [
- -74.6957,
- 41.36058
- ],
- [
- -74.04105,
- 41.05909
- ],
- [
- -74.04105,
- 41.05909
- ],
- [
- -74.04105,
- 41.05909
- ],
- [
- -74.04105,
- 41.05909
- ],
- [
- -74.04105,
- 41.05909
- ],
- [
- -73.89027,
- 40.99804
- ],
- [
- -73.93341,
- 40.88208
- ],
- [
- -73.93341,
- 40.88208
- ],
- [
- -73.93341,
- 40.88208
- ],
- [
- -73.93341,
- 40.88208
- ],
- [
- -74.01146,
- 40.75558
- ],
- [
- -74.02454,
- 40.70944
- ],
- [
- -74.06605,
- 40.65173
- ],
- [
- -74.15222,
- 40.63897
- ],
- [
- -74.18312,
- 40.64457
- ],
- [
- -74.20046,
- 40.63128
- ],
- [
- -74.19926,
- 40.59844
- ],
- [
- -74.21505,
- 40.55803
- ],
- [
- -74.24681,
- 40.54811
- ],
- [
- -74.24715,
- 40.51954
- ],
- [
- -74.26758,
- 40.48965
- ],
- [
- -74.26054,
- 40.46928
- ],
- [
- -74.19926,
- 40.44564
- ],
- [
- -74.18106,
- 40.4604
- ],
- [
- -74.13643,
- 40.45909
- ],
- [
- -73.99756,
- 40.4135
- ],
- [
- -74.02657,
- 40.47777
- ],
- [
- -74.00391,
- 40.48404
- ],
- [
- -73.97781,
- 40.45204
- ],
- [
- -73.96477,
- 40.33189
- ],
- [
- -74.08836,
- 39.75682
- ],
- [
- -74.35684,
- 39.38341
- ],
- [
- -74.60953,
- 39.21523
- ],
- [
- -74.77638,
- 38.99891
- ],
- [
- -74.86359,
- 38.93164
- ],
- [
- -74.93122,
- 38.92069
- ],
- [
- -74.98032,
- 38.9303
- ],
- [
- -74.96075,
- 39.00798
- ],
- [
- -74.90547,
- 39.10023
- ],
- [
- -74.89998,
- 39.16414
- ],
- [
- -75.10117,
- 39.2014
- ],
- [
- -75.1355,
- 39.17106
- ],
- [
- -75.42595,
- 39.3781
- ],
- [
- -75.47504,
- 39.43195
- ],
- [
- -75.54336,
- 39.4574
- ],
- [
- -75.55229,
- 39.48284
- ],
- [
- -75.5389,
- 39.54191
- ],
- [
- -75.51968,
- 39.56997
- ],
- [
- -75.57117,
- 39.60807
- ],
- [
- -75.5777,
- 39.62552
- ],
- [
- -75.53993,
- 39.65646
- ],
- [
- -75.47298,
- 39.74745
- ],
- [
- -75.46625,
- 39.75076
- ],
- [
- -75.46625,
- 39.75076
- ],
- [
- -75.46625,
- 39.75076
- ],
- [
- -75.46625,
- 39.75076
- ],
- [
- -75.46625,
- 39.75077
- ],
- [
- -75.46625,
- 39.75077
- ],
- [
- -75.46625,
- 39.75077
- ],
- [
- -75.46625,
- 39.75077
- ],
- [
- -75.46509,
- 39.76448
- ],
- [
- -75.41504,
- 39.80179
- ],
- [
- -75.32467,
- 39.85889
- ],
- [
- -75.24605,
- 39.86469
- ],
- [
- -75.14374,
- 39.90026
- ],
- [
- -75.14236,
- 39.95791
- ],
- [
- -75.07061,
- 39.98712
- ],
- [
- -75.05653,
- 40.00868
- ],
- [
- -74.93534,
- 40.07256
- ],
- [
- -74.86599,
- 40.08543
- ]
- ]
- ],
- "terms_url": "https://njgin.state.nj.us/NJ_NJGINExplorer/ShowMetadata.jsp?docId={E30775F2-6370-4525-8E68-C371ED29BBB3}",
- "terms_text": "NJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS)",
- "description": "Digital orthophotography of New Jersey, Near Infrared, 1 foot resolution"
- },
- {
- "id": "geodata.state.nj.us-Natural2015",
- "name": "NJ 2015 Aerial Imagery (Natural Color)",
- "type": "wms",
- "template": "https://geodata.state.nj.us/imagerywms/Natural2015?FORMAT=image/png&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&SRS={proj}&WIDTH={width}&HEIGHT={height}&LAYERS=Natural2015&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2015-05-03T00:00:00.000Z",
- "startDate": "2015-03-29T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- -74.86599,
- 40.08543
- ],
- [
- -74.84093,
- 40.10722
- ],
- [
- -74.8229,
- 40.13033
- ],
- [
- -74.78805,
- 40.12468
- ],
- [
- -74.72609,
- 40.14949
- ],
- [
- -74.72918,
- 40.16392
- ],
- [
- -74.76334,
- 40.19172
- ],
- [
- -74.77552,
- 40.21428
- ],
- [
- -74.84402,
- 40.24796
- ],
- [
- -74.86839,
- 40.29157
- ],
- [
- -74.94461,
- 40.33817
- ],
- [
- -74.9671,
- 40.3952
- ],
- [
- -75.00263,
- 40.40605
- ],
- [
- -75.02684,
- 40.40252
- ],
- [
- -75.06134,
- 40.4165
- ],
- [
- -75.07421,
- 40.45505
- ],
- [
- -75.06906,
- 40.5365
- ],
- [
- -75.10237,
- 40.56702
- ],
- [
- -75.13593,
- 40.57361
- ],
- [
- -75.16777,
- 40.55907
- ],
- [
- -75.19764,
- 40.57367
- ],
- [
- -75.20373,
- 40.61832
- ],
- [
- -75.20506,
- 40.69131
- ],
- [
- -75.19833,
- 40.75389
- ],
- [
- -75.1724,
- 40.78067
- ],
- [
- -75.1367,
- 40.77729
- ],
- [
- -75.09018,
- 40.82238
- ],
- [
- -75.10099,
- 40.83927
- ],
- [
- -75.09687,
- 40.85096
- ],
- [
- -75.06846,
- 40.85037
- ],
- [
- -75.05705,
- 40.86757
- ],
- [
- -75.13773,
- 40.97309
- ],
- [
- -75.13515,
- 40.99441
- ],
- [
- -75.03902,
- 41.03819
- ],
- [
- -74.98152,
- 41.1126
- ],
- [
- -74.90547,
- 41.17038
- ],
- [
- -74.84024,
- 41.27864
- ],
- [
- -74.79801,
- 41.32268
- ],
- [
- -74.75716,
- 41.34769
- ],
- [
- -74.6957,
- 41.36058
- ],
- [
- -74.04105,
- 41.05909
- ],
- [
- -74.04105,
- 41.05909
- ],
- [
- -74.04105,
- 41.05909
- ],
- [
- -74.04105,
- 41.05909
- ],
- [
- -74.04105,
- 41.05909
- ],
- [
- -73.89027,
- 40.99804
- ],
- [
- -73.93341,
- 40.88208
- ],
- [
- -73.93341,
- 40.88208
- ],
- [
- -73.93341,
- 40.88208
- ],
- [
- -73.93341,
- 40.88208
- ],
- [
- -74.01146,
- 40.75558
- ],
- [
- -74.02454,
- 40.70944
- ],
- [
- -74.06605,
- 40.65173
- ],
- [
- -74.15222,
- 40.63897
- ],
- [
- -74.18312,
- 40.64457
- ],
- [
- -74.20046,
- 40.63128
- ],
- [
- -74.19926,
- 40.59844
- ],
- [
- -74.21505,
- 40.55803
- ],
- [
- -74.24681,
- 40.54811
- ],
- [
- -74.24715,
- 40.51954
- ],
- [
- -74.26758,
- 40.48965
- ],
- [
- -74.26054,
- 40.46928
- ],
- [
- -74.19926,
- 40.44564
- ],
- [
- -74.18106,
- 40.4604
- ],
- [
- -74.13643,
- 40.45909
- ],
- [
- -73.99756,
- 40.4135
- ],
- [
- -74.02657,
- 40.47777
- ],
- [
- -74.00391,
- 40.48404
- ],
- [
- -73.97781,
- 40.45204
- ],
- [
- -73.96477,
- 40.33189
- ],
- [
- -74.08836,
- 39.75682
- ],
- [
- -74.35684,
- 39.38341
- ],
- [
- -74.60953,
- 39.21523
- ],
- [
- -74.77638,
- 38.99891
- ],
- [
- -74.86359,
- 38.93164
- ],
- [
- -74.93122,
- 38.92069
- ],
- [
- -74.98032,
- 38.9303
- ],
- [
- -74.96075,
- 39.00798
- ],
- [
- -74.90547,
- 39.10023
- ],
- [
- -74.89998,
- 39.16414
- ],
- [
- -75.10117,
- 39.2014
- ],
- [
- -75.1355,
- 39.17106
- ],
- [
- -75.42595,
- 39.3781
- ],
- [
- -75.47504,
- 39.43195
- ],
- [
- -75.54336,
- 39.4574
- ],
- [
- -75.55229,
- 39.48284
- ],
- [
- -75.5389,
- 39.54191
- ],
- [
- -75.51968,
- 39.56997
- ],
- [
- -75.57117,
- 39.60807
- ],
- [
- -75.5777,
- 39.62552
- ],
- [
- -75.53993,
- 39.65646
- ],
- [
- -75.47298,
- 39.74745
- ],
- [
- -75.46625,
- 39.75076
- ],
- [
- -75.46625,
- 39.75076
- ],
- [
- -75.46625,
- 39.75076
- ],
- [
- -75.46625,
- 39.75076
- ],
- [
- -75.46625,
- 39.75077
- ],
- [
- -75.46625,
- 39.75077
- ],
- [
- -75.46625,
- 39.75077
- ],
- [
- -75.46625,
- 39.75077
- ],
- [
- -75.46509,
- 39.76448
- ],
- [
- -75.41504,
- 39.80179
- ],
- [
- -75.32467,
- 39.85889
- ],
- [
- -75.24605,
- 39.86469
- ],
- [
- -75.14374,
- 39.90026
- ],
- [
- -75.14236,
- 39.95791
- ],
- [
- -75.07061,
- 39.98712
- ],
- [
- -75.05653,
- 40.00868
- ],
- [
- -74.93534,
- 40.07256
- ],
- [
- -74.86599,
- 40.08543
- ]
- ]
- ],
- "terms_url": "https://njgin.state.nj.us/NJ_NJGINExplorer/ShowMetadata.jsp?docId={CDC67AB8-ADA1-4B4B-9087-67A82CB9151C}",
- "terms_text": "NJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS)",
- "description": "Digital orthophotography of New Jersey, Natural Color, 1 foot resolution"
- },
- {
- "id": "NLSC-EMAP5",
- "name": "NLSC General Map with Contour line",
- "type": "tms",
- "template": "https://wmts.nlsc.gov.tw/wmts/EMAP5_OPENDATA/default/EPSG:3857/{zoom}/{y}/{x}",
- "startDate": "2015-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 15
- ],
- "polygon": [
- [
- [
- 120.45706,
- 26.39706
- ],
- [
- 120.44256,
- 26.3708
- ],
- [
- 120.44713,
- 26.35315
- ],
- [
- 120.4673,
- 26.34058
- ],
- [
- 120.49787,
- 26.33409
- ],
- [
- 120.5141,
- 26.34016
- ],
- [
- 120.53412,
- 26.36416
- ],
- [
- 120.5297,
- 26.38421
- ],
- [
- 120.49567,
- 26.40158
- ],
- [
- 120.45706,
- 26.39706
- ]
- ],
- [
- [
- 119.90072,
- 25.98586
- ],
- [
- 119.89601,
- 25.96489
- ],
- [
- 119.91313,
- 25.94704
- ],
- [
- 119.95035,
- 25.92785
- ],
- [
- 119.99056,
- 25.92606
- ],
- [
- 120.01984,
- 25.93633
- ],
- [
- 120.02778,
- 25.95574
- ],
- [
- 120.02753,
- 25.98452
- ],
- [
- 119.99899,
- 26.00103
- ],
- [
- 119.94043,
- 26.00281
- ],
- [
- 119.90072,
- 25.98586
- ]
- ],
- [
- [
- 122.089,
- 24.5485
- ],
- [
- 121.709,
- 23.4541
- ],
- [
- 121.717,
- 22.698
- ],
- [
- 121.818,
- 21.95
- ],
- [
- 121.803,
- 21.8735
- ],
- [
- 121.759,
- 21.8087
- ],
- [
- 121.694,
- 21.7653
- ],
- [
- 120.861,
- 21.5631
- ],
- [
- 120.815,
- 21.5576
- ],
- [
- 120.739,
- 21.5728
- ],
- [
- 120.661,
- 21.6296
- ],
- [
- 120.202,
- 22.1809
- ],
- [
- 119.27,
- 23.0542
- ],
- [
- 119.153,
- 23.2049
- ],
- [
- 119.128,
- 23.2485
- ],
- [
- 119.103,
- 23.4
- ],
- [
- 119.118,
- 23.4765
- ],
- [
- 119.137,
- 23.512
- ],
- [
- 119.361,
- 23.8885
- ],
- [
- 119.406,
- 23.9407
- ],
- [
- 120.968,
- 25.2284
- ],
- [
- 121.408,
- 25.4687
- ],
- [
- 121.989,
- 25.8147
- ],
- [
- 122.065,
- 25.8299
- ],
- [
- 122.141,
- 25.8147
- ],
- [
- 122.216,
- 25.7663
- ],
- [
- 122.26,
- 25.7015
- ],
- [
- 122.297,
- 25.48
- ],
- [
- 122.196,
- 24.9696
- ],
- [
- 122.089,
- 24.5485
- ]
- ],
- [
- [
- 116.6855,
- 20.85476
- ],
- [
- 116.63091,
- 20.81496
- ],
- [
- 116.59417,
- 20.76008
- ],
- [
- 116.57972,
- 20.69675
- ],
- [
- 116.58931,
- 20.63259
- ],
- [
- 116.62177,
- 20.57534
- ],
- [
- 116.67319,
- 20.53192
- ],
- [
- 116.73737,
- 20.50758
- ],
- [
- 116.80657,
- 20.50527
- ],
- [
- 116.87244,
- 20.52526
- ],
- [
- 116.92703,
- 20.56514
- ],
- [
- 116.96377,
- 20.62008
- ],
- [
- 116.97822,
- 20.68345
- ],
- [
- 116.96863,
- 20.74759
- ],
- [
- 116.93617,
- 20.80477
- ],
- [
- 116.88475,
- 20.84811
- ],
- [
- 116.82057,
- 20.8724
- ],
- [
- 116.75137,
- 20.87471
- ],
- [
- 116.6855,
- 20.85476
- ]
- ],
- [
- [
- 118.22615,
- 24.45633
- ],
- [
- 118.29364,
- 24.45385
- ],
- [
- 118.28515,
- 24.4751
- ],
- [
- 118.30974,
- 24.49168
- ],
- [
- 118.37677,
- 24.47293
- ],
- [
- 118.41009,
- 24.53323
- ],
- [
- 118.4479,
- 24.52841
- ],
- [
- 118.47464,
- 24.45993
- ],
- [
- 118.51299,
- 24.43155
- ],
- [
- 118.50658,
- 24.42023
- ],
- [
- 118.48116,
- 24.43324
- ],
- [
- 118.46106,
- 24.40892
- ],
- [
- 118.42615,
- 24.39704
- ],
- [
- 118.39701,
- 24.42842
- ],
- [
- 118.37656,
- 24.42584
- ],
- [
- 118.33976,
- 24.38146
- ],
- [
- 118.30319,
- 24.37058
- ],
- [
- 118.25742,
- 24.41392
- ],
- [
- 118.13813,
- 24.37248
- ],
- [
- 118.16173,
- 24.40224
- ],
- [
- 118.20942,
- 24.41396
- ],
- [
- 118.18958,
- 24.43522
- ],
- [
- 118.21763,
- 24.43021
- ],
- [
- 118.22615,
- 24.45633
- ]
- ],
- [
- [
- 120.22345,
- 26.30045
- ],
- [
- 120.25508,
- 26.31004
- ],
- [
- 120.26989,
- 26.33687
- ],
- [
- 120.25919,
- 26.36522
- ],
- [
- 120.22925,
- 26.37848
- ],
- [
- 120.19762,
- 26.3689
- ],
- [
- 120.18282,
- 26.34207
- ],
- [
- 120.19352,
- 26.31372
- ],
- [
- 120.22345,
- 26.30045
- ]
- ],
- [
- [
- 119.43745,
- 25.00475
- ],
- [
- 119.4342,
- 24.98862
- ],
- [
- 119.45419,
- 24.97226
- ],
- [
- 119.48274,
- 24.97184
- ],
- [
- 119.48984,
- 24.99379
- ],
- [
- 119.47159,
- 25.00692
- ],
- [
- 119.43745,
- 25.00475
- ]
- ],
- [
- [
- 119.88699,
- 26.18038
- ],
- [
- 119.89323,
- 26.12031
- ],
- [
- 119.92851,
- 26.10802
- ],
- [
- 119.97794,
- 26.12236
- ],
- [
- 120.03668,
- 26.15173
- ],
- [
- 120.10981,
- 26.21349
- ],
- [
- 120.11927,
- 26.27137
- ],
- [
- 120.06292,
- 26.31726
- ],
- [
- 119.99237,
- 26.31649
- ],
- [
- 119.94677,
- 26.28988
- ],
- [
- 119.90204,
- 26.24398
- ],
- [
- 119.88699,
- 26.18038
- ]
- ]
- ],
- "terms_url": "https://maps.nlsc.gov.tw",
- "terms_text": "© National Land Surveying and Mapping Center, Taiwan OGDL 1.0",
- "description": "The emap from Taiwan National Land Surveying and Mapping Center",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABHNCSVQICAgIfAhkiAAAAxJJREFUOI3tlF9oW2UYxn9f4nKW2ixfjJGYMnuctRUZ5mhEpjdJEEaHtmsZaKHq0qt6ZdtZL3Zhk3ilIKS9Ui806UStE7Edjln8kwzEwaB6IshsmJIqK1ttZ7Qlzel2eryQhqZrsDC8EHyuvu993+/53j+8D/yPfxtip4GqH1X1owLkdHI3RSwbkbFu1yAPdx4t3hpSS6YLAM05i/vCqcmzZwpj9T6pIZYOZNArNADhsQj3RVNjtyS1DcKtiHlPIb96PTn67nJiq8++cRgJicTpQ7Yz0oHc7cQZeakzPbTyqr9iKXUr0lfbqOx7LHJgbXrux5/X9M0+G0C8SySeeWTPQPSLxu4jn1vd4tE7m4euDNclrCEvt6E+25/e6H+VuKen57vEe1b8I29b8cKyo6j6Uece6I/VK387jC70crgjMFBDPDEx8aA5aOPkG+f7FhcX9YhGZLIUBSD7VAtSsZOKNpGKNgFU710tbiJ7G0lFm9DucCL2R7uCXjTpQFZbMV6wMu+EbWnpQOIJVKcvFTuDIR+az4nmc1Zt6h4HuV9XGHjIx1D2EvrCKtLnUgE+Pig+kQ6kDeDFc9YQwJdP2rLuBlfzRjklw7yh7JJh0vfZL6Tb70IqdqRSnT/5JfQTBcZfDom4HaBiUjn5k/Xh0VYRe85ztZ11QX53K4ZQyPxwFcO0yP+2Ste9bi6XrxPbfxuvnV9g6uIfPK/dTskwURbOFfPTM2PSIeTT99Bzw4KMhERi5ICIl667OOHuYNzdQV5p/ccBxi89kUmm5vveDou06kLddvNSibasbvZGXvj9fYJGgbldAaYaI+SVVoq7ApxtCNXEH7ZyhL8+Nho00YJeoT3+6Xp0W2KtBU07NpzNlHulem2ecHmGzpUcmlGg+dp83aynitbkK99ayfwSel2tiLUTo3M4lSn3ys12ub5MsFL4O4GGWZq/fyszfvrPsfwSNZtnpw70i+jMfjPdf//MfXf7UYtrASqWQkUoeNzLtHumS0buzePJD4zjV1a5vPX9jmRT9aNGNCKbZXMn0vnfwl+e9BTflqrxKAAAAABJRU5ErkJggg=="
- },
- {
- "id": "IBGE_Salvador_Streets",
- "name": "Nomes de Ruas IBGE Salvador-BA",
- "type": "tms",
- "template": "https://api.mapbox.com/styles/v1/wille/cj8lp78dn62wl2rquim47qo0g/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoid2lsbGUiLCJhIjoicFNVWk5VWSJ9.hluCd0YGvYHNlFi_utWe2g",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- -38.48974,
- -12.81113
- ],
- [
- -38.54485,
- -13.01392
- ],
- [
- -38.47755,
- -13.03466
- ],
- [
- -38.33473,
- -12.94685
- ],
- [
- -38.30006,
- -12.90669
- ],
- [
- -38.33954,
- -12.90435
- ],
- [
- -38.35482,
- -12.83021
- ],
- [
- -38.38091,
- -12.82184
- ],
- [
- -38.40717,
- -12.86754
- ],
- [
- -38.46537,
- -12.81599
- ],
- [
- -38.48974,
- -12.81113
- ]
- ]
- ],
- "description": "Streets geometry and names of Salvador, Bahia. Source: Faces de Logradouro - IBGE.",
- "overlay": true
- },
- {
- "id": "geovekst-nib",
- "name": "Norway Orthophoto",
- "type": "tms",
- "template": "https://waapi.webatlas.no/maptiles/tiles/webatlas-orto-newup/wa_grid/{zoom}/{x}/{y}.jpeg?api_key=b8e36d51-119a-423b-b156-d744d54123d5",
- "scaleExtent": [
- 0,
- 21
- ],
- "polygon": [
- [
- [
- 11.53568,
- 58.86659
- ],
- [
- 11.66192,
- 58.89784
- ],
- [
- 11.7935,
- 59.09471
- ],
- [
- 11.84243,
- 59.239
- ],
- [
- 11.82877,
- 59.34509
- ],
- [
- 11.71279,
- 59.60387
- ],
- [
- 11.86205,
- 59.63771
- ],
- [
- 11.95608,
- 59.69196
- ],
- [
- 11.93389,
- 59.86895
- ],
- [
- 12.17881,
- 59.8786
- ],
- [
- 12.46948,
- 60.03124
- ],
- [
- 12.55438,
- 60.18972
- ],
- [
- 12.51237,
- 60.31659
- ],
- [
- 12.61793,
- 60.40065
- ],
- [
- 12.61883,
- 60.51512
- ],
- [
- 12.25387,
- 61.01106
- ],
- [
- 12.69195,
- 61.04632
- ],
- [
- 12.90756,
- 61.34802
- ],
- [
- 12.57493,
- 61.57623
- ],
- [
- 12.42465,
- 61.57175
- ],
- [
- 12.15233,
- 61.72694
- ],
- [
- 12.31212,
- 62.26512
- ],
- [
- 12.07078,
- 62.61109
- ],
- [
- 12.14907,
- 62.7455
- ],
- [
- 12.08883,
- 62.89668
- ],
- [
- 12.23464,
- 62.99952
- ],
- [
- 11.99225,
- 63.26684
- ],
- [
- 12.23327,
- 63.47505
- ],
- [
- 12.17971,
- 63.57117
- ],
- [
- 12.69313,
- 63.96344
- ],
- [
- 13.21378,
- 64.0839
- ],
- [
- 13.99183,
- 64.00514
- ],
- [
- 14.17035,
- 64.18236
- ],
- [
- 14.13253,
- 64.47516
- ],
- [
- 13.67658,
- 64.58356
- ],
- [
- 14.02455,
- 64.88119
- ],
- [
- 14.33572,
- 65.11098
- ],
- [
- 14.51699,
- 65.30365
- ],
- [
- 14.54177,
- 65.67762
- ],
- [
- 14.63674,
- 65.81299
- ],
- [
- 14.53903,
- 66.12496
- ],
- [
- 15.03881,
- 66.14245
- ],
- [
- 15.50033,
- 66.27956
- ],
- [
- 15.39368,
- 66.4795
- ],
- [
- 15.63473,
- 66.59685
- ],
- [
- 16.04695,
- 66.90283
- ],
- [
- 16.39832,
- 67.03827
- ],
- [
- 16.41439,
- 67.21036
- ],
- [
- 16.10744,
- 67.43617
- ],
- [
- 16.16455,
- 67.5087
- ],
- [
- 16.42318,
- 67.52589
- ],
- [
- 16.5866,
- 67.64528
- ],
- [
- 16.7471,
- 67.90466
- ],
- [
- 17.34741,
- 68.09995
- ],
- [
- 17.90583,
- 67.95885
- ],
- [
- 18.16489,
- 68.19424
- ],
- [
- 18.13721,
- 68.52675
- ],
- [
- 18.40761,
- 68.57059
- ],
- [
- 18.62222,
- 68.49607
- ],
- [
- 18.98574,
- 68.50591
- ],
- [
- 19.92752,
- 68.34558
- ],
- [
- 20.24505,
- 68.49201
- ],
- [
- 19.99237,
- 68.55586
- ],
- [
- 20.21137,
- 68.65685
- ],
- [
- 20.34848,
- 68.79976
- ],
- [
- 20.31623,
- 68.93227
- ],
- [
- 20.10322,
- 69.0359
- ],
- [
- 20.55694,
- 69.04926
- ],
- [
- 20.7206,
- 69.10837
- ],
- [
- 21.06178,
- 69.02541
- ],
- [
- 21.12098,
- 69.10587
- ],
- [
- 21.01135,
- 69.21086
- ],
- [
- 21.2824,
- 69.30076
- ],
- [
- 21.62645,
- 69.26589
- ],
- [
- 22.33512,
- 68.81965
- ],
- [
- 22.37485,
- 68.70596
- ],
- [
- 22.5377,
- 68.73329
- ],
- [
- 22.80161,
- 68.67674
- ],
- [
- 23.04635,
- 68.67833
- ],
- [
- 23.16467,
- 68.61903
- ],
- [
- 23.68789,
- 68.70049
- ],
- [
- 23.79776,
- 68.81592
- ],
- [
- 23.96804,
- 68.82287
- ],
- [
- 24.17541,
- 68.7314
- ],
- [
- 24.76043,
- 68.63655
- ],
- [
- 24.8544,
- 68.55285
- ],
- [
- 24.90827,
- 68.54387
- ],
- [
- 24.93347,
- 68.6025
- ],
- [
- 25.12435,
- 68.62003
- ],
- [
- 25.1667,
- 68.79008
- ],
- [
- 25.43334,
- 68.87886
- ],
- [
- 25.62945,
- 68.88103
- ],
- [
- 25.79589,
- 69.01157
- ],
- [
- 25.73272,
- 69.19428
- ],
- [
- 26.02249,
- 69.66758
- ],
- [
- 26.56631,
- 69.94207
- ],
- [
- 27.10601,
- 69.89539
- ],
- [
- 27.63679,
- 70.05317
- ],
- [
- 27.93548,
- 70.07401
- ],
- [
- 27.96569,
- 70.00415
- ],
- [
- 28.40312,
- 69.80824
- ],
- [
- 29.1014,
- 69.69095
- ],
- [
- 29.328,
- 69.47585
- ],
- [
- 28.82859,
- 69.2316
- ],
- [
- 28.7931,
- 69.0943
- ],
- [
- 29.04485,
- 68.99986
- ],
- [
- 29.25292,
- 69.10601
- ],
- [
- 29.32641,
- 69.22982
- ],
- [
- 29.29229,
- 69.27632
- ],
- [
- 29.39117,
- 69.31298
- ],
- [
- 29.57038,
- 69.31201
- ],
- [
- 29.85191,
- 69.41631
- ],
- [
- 29.96795,
- 69.39916
- ],
- [
- 30.13069,
- 69.4667
- ],
- [
- 30.2008,
- 69.5658
- ],
- [
- 30.13137,
- 69.6609
- ],
- [
- 30.15678,
- 69.66496
- ],
- [
- 30.51589,
- 69.53787
- ],
- [
- 30.82077,
- 69.52371
- ],
- [
- 30.95329,
- 69.55563
- ],
- [
- 30.96221,
- 69.67832
- ],
- [
- 30.83578,
- 69.79192
- ],
- [
- 31.65161,
- 70.17579
- ],
- [
- 31.78344,
- 70.4662
- ],
- [
- 30.49255,
- 70.86989
- ],
- [
- 28.43261,
- 71.30079
- ],
- [
- 25.66406,
- 71.40266
- ],
- [
- 23.81835,
- 71.29374
- ],
- [
- 18.30322,
- 70.40734
- ],
- [
- 14.24926,
- 69.07641
- ],
- [
- 11.18408,
- 67.47913
- ],
- [
- 11.74438,
- 66.90852
- ],
- [
- 9.95361,
- 64.88393
- ],
- [
- 4.72961,
- 62.3649
- ],
- [
- 4.12948,
- 61.69247
- ],
- [
- 4.08142,
- 61.02637
- ],
- [
- 4.4577,
- 59.19421
- ],
- [
- 5.31188,
- 58.4276
- ],
- [
- 6.47094,
- 57.84475
- ],
- [
- 7.56408,
- 57.72468
- ],
- [
- 8.4375,
- 57.91776
- ],
- [
- 10.59792,
- 58.75006
- ],
- [
- 10.64905,
- 58.88203
- ],
- [
- 11.09035,
- 58.97673
- ],
- [
- 11.16173,
- 59.06743
- ],
- [
- 11.34175,
- 59.10293
- ],
- [
- 11.44922,
- 58.99078
- ],
- [
- 11.45194,
- 58.88136
- ],
- [
- 11.53568,
- 58.86659
- ]
- ]
- ],
- "terms_url": "https://www.norgeibilder.no",
- "terms_text": "© Geovekst",
- "best": true,
- "description": "Most recent Norwegian orthophotos, courtesy of Geovekst and Norkart.",
- "icon": "https://register.geonorge.no/data/organizations/_L_norgeibilder96x96.png"
- },
- {
- "id": "npd-offshore",
- "name": "NPD Offshore Installations overlay",
- "type": "wms",
- "template": "http://npdwms.npd.no/NPD_FactMap.asp?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Surface_labels,Surface,Pipelines,Pipelines_labels,Fields_labels,Fields&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "scaleExtent": [
- 6,
- 20
- ],
- "polygon": [
- [
- [
- 8.51989,
- 57.6454
- ],
- [
- 3.25195,
- 56.08737
- ],
- [
- 2.61185,
- 56.59434
- ],
- [
- 1.96321,
- 57.90482
- ],
- [
- 1.48178,
- 58.42936
- ],
- [
- 1.98303,
- 60.31063
- ],
- [
- 1.78802,
- 61.35659
- ],
- [
- -0.49061,
- 63.88725
- ],
- [
- 1.36226,
- 67.01603
- ],
- [
- 14.99771,
- 74.50082
- ],
- [
- 36.99371,
- 74.50155
- ],
- [
- 36.99989,
- 73.68633
- ],
- [
- 32.06909,
- 70.27429
- ],
- [
- 23.97215,
- 70.47356
- ],
- [
- 16.25974,
- 68.58447
- ],
- [
- 12.12888,
- 64.81157
- ],
- [
- 5.38328,
- 61.92862
- ],
- [
- 5.7678,
- 58.85355
- ],
- [
- 8.51989,
- 57.6454
- ]
- ]
- ],
- "terms_url": "http://www.npd.no/no/Kart/Faktakart/",
- "terms_text": "© Oljedirektoratet",
- "description": "Production platforms and oil/natural gas fields on the Norwegian continental shelf",
- "icon": "https://register.geonorge.no/data/organizations/870917732_od_liten.png",
- "overlay": true
- },
- {
- "id": "orthos.dhses.ny.gov_latest",
- "name": "NYS Orthos Online",
- "type": "wms",
- "template": "http://www.orthos.dhses.ny.gov/arcgis/services/Latest/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0,1,2,3,4&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2018-01-01T00:00:00.000Z",
- "startDate": "2013-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 19
- ],
- "polygon": [
- [
- [
- -74.91231,
- 45.03606
- ],
- [
- -73.47788,
- 45.02996
- ],
- [
- -73.33846,
- 45.03098
- ],
- [
- -73.31978,
- 45.00558
- ],
- [
- -73.32265,
- 44.98525
- ],
- [
- -73.34852,
- 44.9283
- ],
- [
- -73.36721,
- 44.8397
- ],
- [
- -73.34277,
- 44.81727
- ],
- [
- -73.34565,
- 44.77647
- ],
- [
- -73.37296,
- 44.73463
- ],
- [
- -73.37008,
- 44.67946
- ],
- [
- -73.39739,
- 44.64471
- ],
- [
- -73.39308,
- 44.60276
- ],
- [
- -73.39739,
- 44.54543
- ],
- [
- -73.34996,
- 44.51264
- ],
- [
- -73.34565,
- 44.49521
- ],
- [
- -73.37871,
- 44.4706
- ],
- [
- -73.30828,
- 44.43572
- ],
- [
- -73.30397,
- 44.41827
- ],
- [
- -73.33271,
- 44.33917
- ],
- [
- -73.30828,
- 44.27128
- ],
- [
- -73.30828,
- 44.25172
- ],
- [
- -73.38014,
- 44.14868
- ],
- [
- -73.40458,
- 44.04133
- ],
- [
- -73.3399,
- 43.79596
- ],
- [
- -73.28097,
- 43.64222
- ],
- [
- -73.2091,
- 43.54957
- ],
- [
- -73.21342,
- 43.51206
- ],
- [
- -73.24647,
- 42.67557
- ],
- [
- -73.45919,
- 42.14284
- ],
- [
- -73.47069,
- 42.03938
- ],
- [
- -73.48794,
- 41.73764
- ],
- [
- -73.49944,
- 41.64319
- ],
- [
- -73.47788,
- 41.62708
- ],
- [
- -73.43189,
- 41.57979
- ],
- [
- -73.42614,
- 41.56366
- ],
- [
- -73.42685,
- 41.45926
- ],
- [
- -73.43979,
- 41.40322
- ],
- [
- -73.44985,
- 41.38328
- ],
- [
- -73.43835,
- 41.37033
- ],
- [
- -73.42757,
- 41.35901
- ],
- [
- -73.41751,
- 41.3439
- ],
- [
- -73.41895,
- 41.27642
- ],
- [
- -73.43045,
- 41.24455
- ],
- [
- -73.46566,
- 41.19752
- ],
- [
- -73.52962,
- 41.14505
- ],
- [
- -73.55477,
- 41.13368
- ],
- [
- -73.61586,
- 41.13531
- ],
- [
- -73.62664,
- 41.10878
- ],
- [
- -73.62736,
- 41.05407
- ],
- [
- -73.63958,
- 40.99118
- ],
- [
- -73.61873,
- 40.98195
- ],
- [
- -73.59933,
- 40.96568
- ],
- [
- -73.59933,
- 40.93474
- ],
- [
- -73.63455,
- 40.91682
- ],
- [
- -73.68054,
- 40.89183
- ],
- [
- -73.69851,
- 40.87988
- ],
- [
- -73.68629,
- 40.87064
- ],
- [
- -73.66257,
- 40.87934
- ],
- [
- -73.63814,
- 40.90541
- ],
- [
- -73.59789,
- 40.91193
- ],
- [
- -73.57562,
- 40.9179
- ],
- [
- -73.52675,
- 40.92388
- ],
- [
- -73.50159,
- 40.94288
- ],
- [
- -73.4901,
- 40.95374
- ],
- [
- -73.41751,
- 40.96079
- ],
- [
- -73.38374,
- 40.96133
- ],
- [
- -73.33702,
- 40.95591
- ],
- [
- -73.30828,
- 40.93637
- ],
- [
- -73.27091,
- 40.92659
- ],
- [
- -73.2091,
- 40.91953
- ],
- [
- -73.18682,
- 40.92714
- ],
- [
- -73.16814,
- 40.93148
- ],
- [
- -73.16598,
- 40.95971
- ],
- [
- -73.16886,
- 40.97002
- ],
- [
- -73.12933,
- 40.98195
- ],
- [
- -73.10777,
- 40.98195
- ],
- [
- -73.06681,
- 40.9749
- ],
- [
- -72.8584,
- 40.97436
- ],
- [
- -72.71826,
- 40.98195
- ],
- [
- -72.65574,
- 41.00528
- ],
- [
- -72.64424,
- 41.00473
- ],
- [
- -72.62628,
- 40.99226
- ],
- [
- -72.54148,
- 41.03889
- ],
- [
- -72.4768,
- 41.06328
- ],
- [
- -72.45811,
- 41.08928
- ],
- [
- -72.41859,
- 41.09308
- ],
- [
- -72.36612,
- 41.13856
- ],
- [
- -72.36037,
- 41.1418
- ],
- [
- -72.32229,
- 41.15479
- ],
- [
- -72.29067,
- 41.16399
- ],
- [
- -72.21449,
- 41.18238
- ],
- [
- -72.20083,
- 41.19157
- ],
- [
- -72.04848,
- 41.25914
- ],
- [
- -72.02548,
- 41.2937
- ],
- [
- -71.93924,
- 41.30774
- ],
- [
- -71.92343,
- 41.30666
- ],
- [
- -71.90259,
- 41.2991
- ],
- [
- -71.90187,
- 41.28939
- ],
- [
- -71.99458,
- 41.24509
- ],
- [
- -72.10453,
- 41.19806
- ],
- [
- -72.18287,
- 41.16723
- ],
- [
- -72.18934,
- 41.16237
- ],
- [
- -72.25186,
- 41.12232
- ],
- [
- -72.30432,
- 41.10445
- ],
- [
- -72.31582,
- 41.09524
- ],
- [
- -72.27917,
- 41.08441
- ],
- [
- -72.2727,
- 41.08062
- ],
- [
- -72.26839,
- 41.04973
- ],
- [
- -72.21736,
- 41.04811
- ],
- [
- -72.19652,
- 41.04215
- ],
- [
- -72.18646,
- 41.05298
- ],
- [
- -72.17137,
- 41.0584
- ],
- [
- -72.14981,
- 41.05895
- ],
- [
- -72.15628,
- 41.09633
- ],
- [
- -72.15268,
- 41.1077
- ],
- [
- -72.14909,
- 41.14667
- ],
- [
- -72.134,
- 41.14505
- ],
- [
- -72.07076,
- 41.10553
- ],
- [
- -72.07435,
- 41.05678
- ],
- [
- -72.08657,
- 41.03185
- ],
- [
- -72.10957,
- 41.0069
- ],
- [
- -72.08729,
- 41.01287
- ],
- [
- -72.06213,
- 41.02534
- ],
- [
- -72.04561,
- 41.03239
- ],
- [
- -72.01902,
- 41.03293
- ],
- [
- -72.00895,
- 41.04215
- ],
- [
- -72.00177,
- 41.05136
- ],
- [
- -71.96368,
- 41.07737
- ],
- [
- -71.922,
- 41.08874
- ],
- [
- -71.88966,
- 41.08766
- ],
- [
- -71.85588,
- 41.08062
- ],
- [
- -71.84582,
- 41.07466
- ],
- [
- -71.85588,
- 41.05298
- ],
- [
- -71.89038,
- 41.03727
- ],
- [
- -71.91625,
- 41.03022
- ],
- [
- -71.99099,
- 41.00365
- ],
- [
- -72.07938,
- 40.97273
- ],
- [
- -72.31941,
- 40.88205
- ],
- [
- -72.4423,
- 40.8402
- ],
- [
- -72.62771,
- 40.7869
- ],
- [
- -72.76569,
- 40.75043
- ],
- [
- -72.88499,
- 40.71286
- ],
- [
- -72.95973,
- 40.68671
- ],
- [
- -73.03735,
- 40.66
- ],
- [
- -73.08118,
- 40.64855
- ],
- [
- -73.22994,
- 40.61637
- ],
- [
- -73.32193,
- 40.6131
- ],
- [
- -73.35211,
- 40.61855
- ],
- [
- -73.55477,
- 40.56944
- ],
- [
- -73.75959,
- 40.57708
- ],
- [
- -73.88248,
- 40.54815
- ],
- [
- -73.9335,
- 40.53449
- ],
- [
- -73.945,
- 40.53395
- ],
- [
- -73.94572,
- 40.56289
- ],
- [
- -74.08227,
- 40.56234
- ],
- [
- -74.08011,
- 40.54924
- ],
- [
- -74.12251,
- 40.52084
- ],
- [
- -74.15772,
- 40.51373
- ],
- [
- -74.18719,
- 40.50117
- ],
- [
- -74.22887,
- 40.48696
- ],
- [
- -74.26121,
- 40.48532
- ],
- [
- -74.2763,
- 40.4957
- ],
- [
- -74.27918,
- 40.54378
- ],
- [
- -74.26983,
- 40.56671
- ],
- [
- -74.25834,
- 40.57217
- ],
- [
- -74.22528,
- 40.57217
- ],
- [
- -74.226,
- 40.58309
- ],
- [
- -74.25115,
- 40.59564
- ],
- [
- -74.25259,
- 40.62237
- ],
- [
- -74.24324,
- 40.64091
- ],
- [
- -74.2339,
- 40.64909
- ],
- [
- -74.20228,
- 40.654
- ],
- [
- -74.12538,
- 40.65673
- ],
- [
- -74.11532,
- 40.69107
- ],
- [
- -74.09951,
- 40.68998
- ],
- [
- -74.07795,
- 40.71068
- ],
- [
- -74.06286,
- 40.7183
- ],
- [
- -74.05208,
- 40.7439
- ],
- [
- -74.02549,
- 40.79288
- ],
- [
- -73.98094,
- 40.86901
- ],
- [
- -73.96225,
- 40.92551
- ],
- [
- -73.94931,
- 40.96459
- ],
- [
- -73.94644,
- 40.99877
- ],
- [
- -73.98165,
- 41.01612
- ],
- [
- -74.04561,
- 41.04323
- ],
- [
- -74.18072,
- 41.09524
- ],
- [
- -74.30792,
- 41.14938
- ],
- [
- -74.44087,
- 41.21537
- ],
- [
- -74.52783,
- 41.25914
- ],
- [
- -74.61335,
- 41.30234
- ],
- [
- -74.65791,
- 41.31098
- ],
- [
- -74.70246,
- 41.33581
- ],
- [
- -74.76714,
- 41.38975
- ],
- [
- -74.79661,
- 41.41023
- ],
- [
- -74.85338,
- 41.42263
- ],
- [
- -74.90728,
- 41.43179
- ],
- [
- -74.99783,
- 41.47111
- ],
- [
- -75.04167,
- 41.52708
- ],
- [
- -75.08479,
- 41.59323
- ],
- [
- -75.08407,
- 41.61848
- ],
- [
- -75.07329,
- 41.66467
- ],
- [
- -75.08766,
- 41.70278
- ],
- [
- -75.08766,
- 41.71351
- ],
- [
- -75.12144,
- 41.76177
- ],
- [
- -75.11928,
- 41.79232
- ],
- [
- -75.13078,
- 41.81696
- ],
- [
- -75.18755,
- 41.83838
- ],
- [
- -75.25295,
- 41.84962
- ],
- [
- -75.28745,
- 41.85497
- ],
- [
- -75.29823,
- 41.88227
- ],
- [
- -75.30613,
- 41.9304
- ],
- [
- -75.34063,
- 41.94003
- ],
- [
- -75.3665,
- 41.9566
- ],
- [
- -75.37225,
- 41.97744
- ],
- [
- -75.58066,
- 41.97957
- ],
- [
- -75.58137,
- 41.92399
- ],
- [
- -75.78906,
- 41.92666
- ],
- [
- -75.78691,
- 41.98278
- ],
- [
- -79.77687,
- 41.98118
- ],
- [
- -79.7819,
- 42.20994
- ],
- [
- -79.77184,
- 42.28017
- ],
- [
- -79.72153,
- 42.29824
- ],
- [
- -79.57349,
- 42.36731
- ],
- [
- -79.42976,
- 42.46599
- ],
- [
- -79.3737,
- 42.49991
- ],
- [
- -79.25728,
- 42.54546
- ],
- [
- -79.18973,
- 42.5624
- ],
- [
- -79.16529,
- 42.56981
- ],
- [
- -79.12074,
- 42.62483
- ],
- [
- -79.0963,
- 42.64598
- ],
- [
- -79.06899,
- 42.6967
- ],
- [
- -79.03162,
- 42.71043
- ],
- [
- -78.98851,
- 42.72311
- ],
- [
- -78.88358,
- 42.77693
- ],
- [
- -78.88646,
- 42.8149
- ],
- [
- -78.93964,
- 42.88655
- ],
- [
- -78.93964,
- 42.93603
- ],
- [
- -79.04887,
- 42.96969
- ],
- [
- -79.04743,
- 43.05167
- ],
- [
- -79.09343,
- 43.05272
- ],
- [
- -79.09199,
- 43.09262
- ],
- [
- -79.08624,
- 43.26556
- ],
- [
- -79.06468,
- 43.27602
- ],
- [
- -78.84909,
- 43.33041
- ],
- [
- -78.72979,
- 43.35237
- ],
- [
- -78.63924,
- 43.37013
- ],
- [
- -78.54869,
- 43.37953
- ],
- [
- -78.47826,
- 43.38789
- ],
- [
- -77.95508,
- 43.38476
- ],
- [
- -77.73158,
- 43.34714
- ],
- [
- -77.71146,
- 43.34034
- ],
- [
- -77.66259,
- 43.31159
- ],
- [
- -77.61516,
- 43.28387
- ],
- [
- -77.55336,
- 43.253
- ],
- [
- -77.5282,
- 43.25509
- ],
- [
- -77.45634,
- 43.27864
- ],
- [
- -77.42256,
- 43.28492
- ],
- [
- -77.16385,
- 43.29433
- ],
- [
- -77.0503,
- 43.29381
- ],
- [
- -76.94178,
- 43.29329
- ],
- [
- -76.91447,
- 43.30793
- ],
- [
- -76.85051,
- 43.3163
- ],
- [
- -76.80236,
- 43.32832
- ],
- [
- -76.75996,
- 43.35184
- ],
- [
- -76.64785,
- 43.42809
- ],
- [
- -76.54509,
- 43.48026
- ],
- [
- -76.51993,
- 43.49486
- ],
- [
- -76.44304,
- 43.52717
- ],
- [
- -76.4222,
- 43.53811
- ],
- [
- -76.28206,
- 43.53863
- ],
- [
- -76.23822,
- 43.55686
- ],
- [
- -76.24038,
- 43.74147
- ],
- [
- -76.30649,
- 43.82915
- ],
- [
- -76.31152,
- 43.8675
- ],
- [
- -76.34602,
- 43.8618
- ],
- [
- -76.40064,
- 43.86128
- ],
- [
- -76.47178,
- 43.88408
- ],
- [
- -76.46675,
- 43.90893
- ],
- [
- -76.4186,
- 43.93119
- ],
- [
- -76.37189,
- 43.93223
- ],
- [
- -76.36974,
- 43.90272
- ],
- [
- -76.33308,
- 43.92964
- ],
- [
- -76.27847,
- 43.92964
- ],
- [
- -76.27847,
- 43.90427
- ],
- [
- -76.26697,
- 43.89599
- ],
- [
- -76.23607,
- 43.91204
- ],
- [
- -76.19295,
- 43.93326
- ],
- [
- -76.19007,
- 43.95086
- ],
- [
- -76.21523,
- 43.96017
- ],
- [
- -76.25044,
- 43.94982
- ],
- [
- -76.31224,
- 43.94775
- ],
- [
- -76.30578,
- 43.9762
- ],
- [
- -76.33093,
- 44.00464
- ],
- [
- -76.39561,
- 44.0248
- ],
- [
- -76.39848,
- 44.06251
- ],
- [
- -76.37548,
- 44.06457
- ],
- [
- -76.3762,
- 44.0909
- ],
- [
- -76.47107,
- 44.09297
- ],
- [
- -76.46604,
- 44.10948
- ],
- [
- -76.44232,
- 44.1296
- ],
- [
- -76.39848,
- 44.13218
- ],
- [
- -76.39776,
- 44.20435
- ],
- [
- -76.3762,
- 44.21671
- ],
- [
- -76.23966,
- 44.21929
- ],
- [
- -76.23966,
- 44.22804
- ],
- [
- -76.21738,
- 44.22856
- ],
- [
- -76.21523,
- 44.3479
- ],
- [
- -76.11893,
- 44.37103
- ],
- [
- -76.04634,
- 44.39157
- ],
- [
- -75.93423,
- 44.43418
- ],
- [
- -75.83721,
- 44.50341
- ],
- [
- -75.76822,
- 44.55823
- ],
- [
- -75.69923,
- 44.60379
- ],
- [
- -75.63168,
- 44.64829
- ],
- [
- -75.56772,
- 44.70501
- ],
- [
- -75.50448,
- 44.74586
- ],
- [
- -75.45274,
- 44.78157
- ],
- [
- -75.31763,
- 44.8723
- ],
- [
- -75.15378,
- 44.93745
- ],
- [
- -75.09054,
- 44.97305
- ],
- [
- -74.97411,
- 45.02793
- ],
- [
- -74.91985,
- 45.03682
- ],
- [
- -74.91231,
- 45.03606
- ]
- ]
- ],
- "terms_url": "https://gis.ny.gov/gateway/orthoprogram/index.cfm",
- "terms_text": "New York State Statewide Digital Orthoimagery Program",
- "description": "New York State High Resolution Digital Orthoimagery, 1 foot resolution",
- "icon": "data:image/png:base64,iVBORw0KGgoAAAANSUhEUgAAAG0AAABCCAYAAABdAli1AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QTA1Nzc1NjVGNjM2MTFFMzk5NkFGRERGMEYyODU3RTciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QTA1Nzc1NjZGNjM2MTFFMzk5NkFGRERGMEYyODU3RTciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBMDU3NzU2M0Y2MzYxMUUzOTk2QUZEREYwRjI4NTdFNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBMDU3NzU2NEY2MzYxMUUzOTk2QUZEREYwRjI4NTdFNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PhMlZyIAAA02SURBVHja7F1djNxW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"
- },
- {
- "id": "olho_dagua_do_casado",
- "name": "Olho d'Agua do Casado AL",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Olho%20Dagua%20do%20Casado&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -37.7822,
- -9.54444
- ],
- [
- -37.7826,
- -9.45388
- ],
- [
- -37.81147,
- -9.45412
- ],
- [
- -37.81735,
- -9.45451
- ],
- [
- -37.82057,
- -9.45416
- ],
- [
- -37.87394,
- -9.45428
- ],
- [
- -37.87358,
- -9.54475
- ],
- [
- -37.7822,
- -9.54444
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "osmbe",
- "name": "OpenStreetMap (Belgian Style)",
- "type": "tms",
- "template": "https://tile.openstreetmap.be/osmbe/{zoom}/{x}/{y}.png",
- "polygon": [
- [
- [
- 5.47007,
- 49.49196
- ],
- [
- 5.44409,
- 49.51409
- ],
- [
- 5.46213,
- 49.53677
- ],
- [
- 5.43766,
- 49.54766
- ],
- [
- 5.42566,
- 49.59145
- ],
- [
- 5.40775,
- 49.60448
- ],
- [
- 5.35207,
- 49.62396
- ],
- [
- 5.34232,
- 49.61192
- ],
- [
- 5.30544,
- 49.60645
- ],
- [
- 5.3026,
- 49.63608
- ],
- [
- 5.32535,
- 49.6575
- ],
- [
- 5.27025,
- 49.68827
- ],
- [
- 5.24458,
- 49.67985
- ],
- [
- 5.16215,
- 49.6918
- ],
- [
- 5.16164,
- 49.71172
- ],
- [
- 5.12622,
- 49.70442
- ],
- [
- 5.09058,
- 49.75946
- ],
- [
- 5.06262,
- 49.75724
- ],
- [
- 5.01261,
- 49.77534
- ],
- [
- 4.9921,
- 49.79533
- ],
- [
- 4.95485,
- 49.79586
- ],
- [
- 4.94404,
- 49.78583
- ],
- [
- 4.90589,
- 49.78055
- ],
- [
- 4.84827,
- 49.78972
- ],
- [
- 4.86599,
- 49.81918
- ],
- [
- 4.84266,
- 49.86913
- ],
- [
- 4.85659,
- 49.86973
- ],
- [
- 4.87961,
- 49.91078
- ],
- [
- 4.84433,
- 49.94482
- ],
- [
- 4.78844,
- 49.95381
- ],
- [
- 4.78535,
- 49.97018
- ],
- [
- 4.79004,
- 49.98569
- ],
- [
- 4.81194,
- 49.99563
- ],
- [
- 4.81579,
- 50.02853
- ],
- [
- 4.83599,
- 50.04069
- ],
- [
- 4.82339,
- 50.04664
- ],
- [
- 4.81641,
- 50.06702
- ],
- [
- 4.83456,
- 50.06856
- ],
- [
- 4.83709,
- 50.09442
- ],
- [
- 4.84472,
- 50.10023
- ],
- [
- 4.85447,
- 50.1029
- ],
- [
- 4.866,
- 50.09623
- ],
- [
- 4.86587,
- 50.12038
- ],
- [
- 4.8776,
- 50.13223
- ],
- [
- 4.89443,
- 50.13779
- ],
- [
- 4.88043,
- 50.1403
- ],
- [
- 4.87725,
- 50.15205
- ],
- [
- 4.8529,
- 50.15168
- ],
- [
- 4.83169,
- 50.1526
- ],
- [
- 4.82334,
- 50.15923
- ],
- [
- 4.78067,
- 50.14092
- ],
- [
- 4.76486,
- 50.13634
- ],
- [
- 4.75217,
- 50.11158
- ],
- [
- 4.71293,
- 50.09598
- ],
- [
- 4.70278,
- 50.09336
- ],
- [
- 4.68851,
- 50.06595
- ],
- [
- 4.70309,
- 50.05587
- ],
- [
- 4.68731,
- 50.01802
- ],
- [
- 4.69495,
- 49.99662
- ],
- [
- 4.69461,
- 49.99504
- ],
- [
- 4.63074,
- 49.98584
- ],
- [
- 4.58965,
- 49.98336
- ],
- [
- 4.55981,
- 49.96757
- ],
- [
- 4.54315,
- 49.9679
- ],
- [
- 4.52365,
- 49.94973
- ],
- [
- 4.51156,
- 49.94579
- ],
- [
- 4.47953,
- 49.94584
- ],
- [
- 4.44588,
- 49.93656
- ],
- [
- 4.40593,
- 49.94785
- ],
- [
- 4.39149,
- 49.94697
- ],
- [
- 4.38072,
- 49.95088
- ],
- [
- 4.34921,
- 49.95202
- ],
- [
- 4.3137,
- 49.96541
- ],
- [
- 4.19616,
- 49.9536
- ],
- [
- 4.19304,
- 49.95746
- ],
- [
- 4.19582,
- 49.96629
- ],
- [
- 4.13704,
- 49.97691
- ],
- [
- 4.15996,
- 49.99544
- ],
- [
- 4.13683,
- 50.00786
- ],
- [
- 4.13272,
- 50.01973
- ],
- [
- 4.16174,
- 50.05032
- ],
- [
- 4.17458,
- 50.04772
- ],
- [
- 4.22857,
- 50.06873
- ],
- [
- 4.19529,
- 50.10571
- ],
- [
- 4.19766,
- 50.12037
- ],
- [
- 4.19566,
- 50.13394
- ],
- [
- 4.15448,
- 50.12716
- ],
- [
- 4.13656,
- 50.12909
- ],
- [
- 4.12568,
- 50.13511
- ],
- [
- 4.13677,
- 50.15213
- ],
- [
- 4.14989,
- 50.1647
- ],
- [
- 4.14686,
- 50.17314
- ],
- [
- 4.15567,
- 50.19785
- ],
- [
- 4.14799,
- 50.21344
- ],
- [
- 4.15979,
- 50.21579
- ],
- [
- 4.19179,
- 50.24106
- ],
- [
- 4.21836,
- 50.25492
- ],
- [
- 4.20676,
- 50.27068
- ],
- [
- 4.17487,
- 50.27492
- ],
- [
- 4.16567,
- 50.28779
- ],
- [
- 4.155,
- 50.27742
- ],
- [
- 4.16937,
- 50.26848
- ],
- [
- 4.16851,
- 50.25626
- ],
- [
- 4.13426,
- 50.25572
- ],
- [
- 4.13228,
- 50.26754
- ],
- [
- 4.12086,
- 50.27276
- ],
- [
- 4.12139,
- 50.29732
- ],
- [
- 4.10928,
- 50.30112
- ],
- [
- 4.0977,
- 50.31201
- ],
- [
- 4.08017,
- 50.30809
- ],
- [
- 4.07339,
- 50.31754
- ],
- [
- 4.03817,
- 50.33987
- ],
- [
- 4.02738,
- 50.35491
- ],
- [
- 3.98611,
- 50.34137
- ],
- [
- 3.96482,
- 50.34012
- ],
- [
- 3.96355,
- 50.34742
- ],
- [
- 3.90223,
- 50.3257
- ],
- [
- 3.88419,
- 50.32554
- ],
- [
- 3.88429,
- 50.33511
- ],
- [
- 3.85645,
- 50.34099
- ],
- [
- 3.84244,
- 50.35243
- ],
- [
- 3.81321,
- 50.34251
- ],
- [
- 3.80551,
- 50.35098
- ],
- [
- 3.74124,
- 50.34624
- ],
- [
- 3.73556,
- 50.32532
- ],
- [
- 3.73175,
- 50.30705
- ],
- [
- 3.70911,
- 50.3021
- ],
- [
- 3.68231,
- 50.31988
- ],
- [
- 3.66397,
- 50.34724
- ],
- [
- 3.65542,
- 50.37075
- ],
- [
- 3.66788,
- 50.38597
- ],
- [
- 3.67276,
- 50.40227
- ],
- [
- 3.66777,
- 50.42262
- ],
- [
- 3.66743,
- 50.43635
- ],
- [
- 3.65685,
- 50.4464
- ],
- [
- 3.66129,
- 50.45399
- ],
- [
- 3.64419,
- 50.4618
- ],
- [
- 3.6099,
- 50.4935
- ],
- [
- 3.58162,
- 50.48917
- ],
- [
- 3.56897,
- 50.4982
- ],
- [
- 3.49868,
- 50.48577
- ],
- [
- 3.49448,
- 50.49918
- ],
- [
- 3.51582,
- 50.52075
- ],
- [
- 3.4742,
- 50.53204
- ],
- [
- 3.44739,
- 50.50415
- ],
- [
- 3.43663,
- 50.5083
- ],
- [
- 3.42736,
- 50.50327
- ],
- [
- 3.37405,
- 50.48993
- ],
- [
- 3.35949,
- 50.50325
- ],
- [
- 3.32767,
- 50.50732
- ],
- [
- 3.31872,
- 50.51788
- ],
- [
- 3.30319,
- 50.51966
- ],
- [
- 3.28718,
- 50.52552
- ],
- [
- 3.27549,
- 50.53872
- ],
- [
- 3.27524,
- 50.59381
- ],
- [
- 3.25497,
- 50.62115
- ],
- [
- 3.24349,
- 50.64031
- ],
- [
- 3.23893,
- 50.65864
- ],
- [
- 3.24019,
- 50.67023
- ],
- [
- 3.26029,
- 50.67692
- ],
- [
- 3.25131,
- 50.69091
- ],
- [
- 3.25881,
- 50.69312
- ],
- [
- 3.24518,
- 50.71225
- ],
- [
- 3.23779,
- 50.71086
- ],
- [
- 3.22148,
- 50.70958
- ],
- [
- 3.20498,
- 50.71072
- ],
- [
- 3.18953,
- 50.72603
- ],
- [
- 3.19445,
- 50.7316
- ],
- [
- 3.14457,
- 50.78871
- ],
- [
- 3.12547,
- 50.78553
- ],
- [
- 3.11348,
- 50.79278
- ],
- [
- 3.10455,
- 50.78042
- ],
- [
- 3.08585,
- 50.77064
- ],
- [
- 3.05758,
- 50.77987
- ],
- [
- 3.04064,
- 50.77484
- ],
- [
- 3.03691,
- 50.77003
- ],
- [
- 3.02927,
- 50.76813
- ],
- [
- 3.01945,
- 50.77263
- ],
- [
- 2.99536,
- 50.76043
- ],
- [
- 2.96822,
- 50.74763
- ],
- [
- 2.9557,
- 50.75181
- ],
- [
- 2.93962,
- 50.74441
- ],
- [
- 2.94602,
- 50.73167
- ],
- [
- 2.9349,
- 50.72822
- ],
- [
- 2.92939,
- 50.70786
- ],
- [
- 2.92206,
- 50.70224
- ],
- [
- 2.91184,
- 50.70267
- ],
- [
- 2.91281,
- 50.69463
- ],
- [
- 2.90742,
- 50.69209
- ],
- [
- 2.90017,
- 50.69202
- ],
- [
- 2.88533,
- 50.70547
- ],
- [
- 2.87992,
- 50.70199
- ],
- [
- 2.86855,
- 50.70242
- ],
- [
- 2.84646,
- 50.72043
- ],
- [
- 2.81843,
- 50.71386
- ],
- [
- 2.78869,
- 50.72508
- ],
- [
- 2.77811,
- 50.74686
- ],
- [
- 2.76469,
- 50.75397
- ],
- [
- 2.75409,
- 50.76251
- ],
- [
- 2.75922,
- 50.77052
- ],
- [
- 2.73745,
- 50.77967
- ],
- [
- 2.7236,
- 50.79079
- ],
- [
- 2.71636,
- 50.8123
- ],
- [
- 2.6788,
- 50.81207
- ],
- [
- 2.67057,
- 50.81562
- ],
- [
- 2.63543,
- 50.80987
- ],
- [
- 2.61055,
- 50.84419
- ],
- [
- 2.59427,
- 50.84743
- ],
- [
- 2.60628,
- 50.86565
- ],
- [
- 2.60151,
- 50.90993
- ],
- [
- 2.58525,
- 50.91825
- ],
- [
- 2.62479,
- 50.94743
- ],
- [
- 2.62148,
- 50.95406
- ],
- [
- 2.60263,
- 50.98638
- ],
- [
- 2.56946,
- 51.00113
- ],
- [
- 2.55892,
- 51.06596
- ],
- [
- 2.34072,
- 51.31453
- ],
- [
- 3.01078,
- 51.59839
- ],
- [
- 3.32658,
- 51.43728
- ],
- [
- 3.37581,
- 51.3584
- ],
- [
- 3.38739,
- 51.33392
- ],
- [
- 3.36094,
- 51.31523
- ],
- [
- 3.3789,
- 51.30251
- ],
- [
- 3.36832,
- 51.29778
- ],
- [
- 3.38177,
- 51.28732
- ],
- [
- 3.38342,
- 51.27485
- ],
- [
- 3.38922,
- 51.27329
- ],
- [
- 3.41852,
- 51.25984
- ],
- [
- 3.43471,
- 51.24621
- ],
- [
- 3.45031,
- 51.24219
- ],
- [
- 3.527,
- 51.24651
- ],
- [
- 3.51433,
- 51.28799
- ],
- [
- 3.54179,
- 51.29123
- ],
- [
- 3.56145,
- 51.29637
- ],
- [
- 3.57559,
- 51.29428
- ],
- [
- 3.58905,
- 51.30652
- ],
- [
- 3.63839,
- 51.29078
- ],
- [
- 3.6582,
- 51.29056
- ],
- [
- 3.69139,
- 51.28043
- ],
- [
- 3.71763,
- 51.27428
- ],
- [
- 3.77605,
- 51.26777
- ],
- [
- 3.79652,
- 51.25635
- ],
- [
- 3.79031,
- 51.24163
- ],
- [
- 3.78934,
- 51.22711
- ],
- [
- 3.79294,
- 51.21546
- ],
- [
- 3.85827,
- 51.21334
- ],
- [
- 3.88901,
- 51.22423
- ],
- [
- 3.89467,
- 51.21743
- ],
- [
- 3.88782,
- 51.20283
- ],
- [
- 3.91256,
- 51.20837
- ],
- [
- 3.91482,
- 51.21509
- ],
- [
- 3.9281,
- 51.22508
- ],
- [
- 3.93751,
- 51.2174
- ],
- [
- 3.95603,
- 51.22117
- ],
- [
- 4.01551,
- 51.24825
- ],
- [
- 4.0551,
- 51.24402
- ],
- [
- 4.1651,
- 51.2938
- ],
- [
- 4.23804,
- 51.35274
- ],
- [
- 4.21772,
- 51.36206
- ],
- [
- 4.21546,
- 51.37487
- ],
- [
- 4.33535,
- 51.37775
- ],
- [
- 4.34197,
- 51.36012
- ],
- [
- 4.38556,
- 51.35574
- ],
- [
- 4.39906,
- 51.35785
- ],
- [
- 4.42462,
- 51.3668
- ],
- [
- 4.42309,
- 51.37577
- ],
- [
- 4.38147,
- 51.41805
- ],
- [
- 4.39426,
- 51.44251
- ],
- [
- 4.37771,
- 51.44595
- ],
- [
- 4.38055,
- 51.45075
- ],
- [
- 4.4768,
- 51.47912
- ],
- [
- 4.53739,
- 51.48358
- ],
- [
- 4.54967,
- 51.47364
- ],
- [
- 4.53097,
- 51.44965
- ],
- [
- 4.53758,
- 51.42456
- ],
- [
- 4.57427,
- 51.43404
- ],
- [
- 4.6431,
- 51.42478
- ],
- [
- 4.64951,
- 51.42741
- ],
- [
- 4.66744,
- 51.42777
- ],
- [
- 4.66465,
- 51.44625
- ],
- [
- 4.69115,
- 51.45283
- ],
- [
- 4.70175,
- 51.46691
- ],
- [
- 4.72792,
- 51.48435
- ],
- [
- 4.74476,
- 51.48977
- ],
- [
- 4.74945,
- 51.49905
- ],
- [
- 4.75827,
- 51.50302
- ],
- [
- 4.7766,
- 51.50625
- ],
- [
- 4.81666,
- 51.49552
- ],
- [
- 4.82318,
- 51.48441
- ],
- [
- 4.84355,
- 51.48177
- ],
- [
- 4.83884,
- 51.46588
- ],
- [
- 4.84529,
- 51.45817
- ],
- [
- 4.82521,
- 51.44674
- ],
- [
- 4.83103,
- 51.42488
- ],
- [
- 4.88072,
- 51.4166
- ],
- [
- 4.91431,
- 51.45952
- ],
- [
- 4.95767,
- 51.4548
- ],
- [
- 4.94134,
- 51.42928
- ],
- [
- 4.93775,
- 51.40655
- ],
- [
- 4.96007,
- 51.42194
- ],
- [
- 4.99955,
- 51.44324
- ],
- [
- 5.00816,
- 51.47134
- ],
- [
- 5.01937,
- 51.48074
- ],
- [
- 5.03235,
- 51.48827
- ],
- [
- 5.04093,
- 51.4876
- ],
- [
- 5.04722,
- 51.47217
- ],
- [
- 5.08032,
- 51.47226
- ],
- [
- 5.10643,
- 51.43135
- ],
- [
- 5.0727,
- 51.39365
- ],
- [
- 5.11662,
- 51.36118
- ],
- [
- 5.13225,
- 51.3472
- ],
- [
- 5.13581,
- 51.31594
- ],
- [
- 5.15592,
- 51.31278
- ],
- [
- 5.20039,
- 51.32325
- ],
- [
- 5.24326,
- 51.3057
- ],
- [
- 5.22742,
- 51.26844
- ],
- [
- 5.238,
- 51.26255
- ],
- [
- 5.26216,
- 51.26778
- ],
- [
- 5.335,
- 51.26474
- ],
- [
- 5.34493,
- 51.27681
- ],
- [
- 5.41551,
- 51.2639
- ],
- [
- 5.44065,
- 51.28246
- ],
- [
- 5.48215,
- 51.30064
- ],
- [
- 5.51628,
- 51.29599
- ],
- [
- 5.55816,
- 51.26613
- ],
- [
- 5.56283,
- 51.22287
- ],
- [
- 5.65253,
- 51.19899
- ],
- [
- 5.65947,
- 51.19052
- ],
- [
- 5.71011,
- 51.18671
- ],
- [
- 5.74598,
- 51.19455
- ],
- [
- 5.76873,
- 51.18843
- ],
- [
- 5.78118,
- 51.18082
- ],
- [
- 5.78447,
- 51.15925
- ],
- [
- 5.82594,
- 51.16827
- ],
- [
- 5.85709,
- 51.14477
- ],
- [
- 5.83976,
- 51.12993
- ],
- [
- 5.81435,
- 51.11524
- ],
- [
- 5.83555,
- 51.10842
- ],
- [
- 5.8338,
- 51.09577
- ],
- [
- 5.82291,
- 51.09124
- ],
- [
- 5.8119,
- 51.0943
- ],
- [
- 5.79816,
- 51.09023
- ],
- [
- 5.80612,
- 51.07955
- ],
- [
- 5.80458,
- 51.05888
- ],
- [
- 5.77731,
- 51.05804
- ],
- [
- 5.76027,
- 51.03223
- ],
- [
- 5.77383,
- 51.02859
- ],
- [
- 5.77829,
- 51.02399
- ],
- [
- 5.76759,
- 51.00526
- ],
- [
- 5.76846,
- 50.9985
- ],
- [
- 5.76419,
- 50.99502
- ],
- [
- 5.74816,
- 50.98087
- ],
- [
- 5.72174,
- 50.96128
- ],
- [
- 5.73469,
- 50.95683
- ],
- [
- 5.7426,
- 50.96113
- ],
- [
- 5.74604,
- 50.96209
- ],
- [
- 5.75617,
- 50.95898
- ],
- [
- 5.76011,
- 50.95227
- ],
- [
- 5.73223,
- 50.9221
- ],
- [
- 5.72625,
- 50.9059
- ],
- [
- 5.70051,
- 50.90955
- ],
- [
- 5.69711,
- 50.8958
- ],
- [
- 5.68051,
- 50.88068
- ],
- [
- 5.64516,
- 50.86533
- ],
- [
- 5.64337,
- 50.84974
- ],
- [
- 5.64049,
- 50.84701
- ],
- [
- 5.64576,
- 50.83961
- ],
- [
- 5.64567,
- 50.83789
- ],
- [
- 5.65094,
- 50.83431
- ],
- [
- 5.65568,
- 50.82591
- ],
- [
- 5.70296,
- 50.80821
- ],
- [
- 5.69338,
- 50.79687
- ],
- [
- 5.70259,
- 50.78396
- ],
- [
- 5.69204,
- 50.75629
- ],
- [
- 5.7218,
- 50.76538
- ],
- [
- 5.73762,
- 50.75842
- ],
- [
- 5.73912,
- 50.76522
- ],
- [
- 5.76476,
- 50.7837
- ],
- [
- 5.77748,
- 50.78344
- ],
- [
- 5.78519,
- 50.7684
- ],
- [
- 5.7927,
- 50.77138
- ],
- [
- 5.80759,
- 50.75681
- ],
- [
- 5.84525,
- 50.76609
- ],
- [
- 5.84901,
- 50.75975
- ],
- [
- 5.88667,
- 50.77108
- ],
- [
- 5.89689,
- 50.75501
- ],
- [
- 5.95896,
- 50.76308
- ],
- [
- 6.02001,
- 50.75521
- ],
- [
- 6.04208,
- 50.74557
- ],
- [
- 6.03953,
- 50.7295
- ],
- [
- 6.11623,
- 50.72364
- ],
- [
- 6.1491,
- 50.68465
- ],
- [
- 6.16312,
- 50.67169
- ],
- [
- 6.17755,
- 50.65576
- ],
- [
- 6.18715,
- 50.6505
- ],
- [
- 6.18348,
- 50.6457
- ],
- [
- 6.18205,
- 50.63583
- ],
- [
- 6.26822,
- 50.62829
- ],
- [
- 6.27251,
- 50.62033
- ],
- [
- 6.24102,
- 50.58657
- ],
- [
- 6.22795,
- 50.58535
- ],
- [
- 6.18304,
- 50.55597
- ],
- [
- 6.1833,
- 50.54646
- ],
- [
- 6.19789,
- 50.53715
- ],
- [
- 6.22586,
- 50.49832
- ],
- [
- 6.26954,
- 50.50961
- ],
- [
- 6.35349,
- 50.49244
- ],
- [
- 6.34706,
- 50.46422
- ],
- [
- 6.37423,
- 50.45989
- ],
- [
- 6.3825,
- 50.43975
- ],
- [
- 6.37408,
- 50.40637
- ],
- [
- 6.35129,
- 50.38206
- ],
- [
- 6.40305,
- 50.34866
- ],
- [
- 6.41162,
- 50.32769
- ],
- [
- 6.40783,
- 50.31893
- ],
- [
- 6.38558,
- 50.31658
- ],
- [
- 6.36388,
- 50.30021
- ],
- [
- 6.32792,
- 50.3186
- ],
- [
- 6.31289,
- 50.31636
- ],
- [
- 6.29335,
- 50.2909
- ],
- [
- 6.29547,
- 50.27422
- ],
- [
- 6.28111,
- 50.26236
- ],
- [
- 6.23624,
- 50.25692
- ],
- [
- 6.21151,
- 50.24816
- ],
- [
- 6.1981,
- 50.23275
- ],
- [
- 6.18166,
- 50.23125
- ],
- [
- 6.1789,
- 50.22147
- ],
- [
- 6.19337,
- 50.20761
- ],
- [
- 6.19683,
- 50.17988
- ],
- [
- 6.15231,
- 50.16841
- ],
- [
- 6.15923,
- 50.14002
- ],
- [
- 6.13978,
- 50.12527
- ],
- [
- 6.10856,
- 50.1326
- ],
- [
- 6.11273,
- 50.16093
- ],
- [
- 6.10156,
- 50.16551
- ],
- [
- 6.08452,
- 50.16697
- ],
- [
- 6.0821,
- 50.15275
- ],
- [
- 6.06344,
- 50.14834
- ],
- [
- 6.03055,
- 50.15829
- ],
- [
- 6.02136,
- 50.17685
- ],
- [
- 5.96932,
- 50.16795
- ],
- [
- 5.96515,
- 50.12813
- ],
- [
- 5.90347,
- 50.11172
- ],
- [
- 5.89064,
- 50.07554
- ],
- [
- 5.86237,
- 50.06368
- ],
- [
- 5.8749,
- 50.04624
- ],
- [
- 5.86392,
- 50.02594
- ],
- [
- 5.82586,
- 50.00934
- ],
- [
- 5.82665,
- 50.00135
- ],
- [
- 5.8448,
- 49.99123
- ],
- [
- 5.83952,
- 49.9756
- ],
- [
- 5.80883,
- 49.95773
- ],
- [
- 5.78215,
- 49.957
- ],
- [
- 5.76822,
- 49.91307
- ],
- [
- 5.74481,
- 49.89975
- ],
- [
- 5.78087,
- 49.88794
- ],
- [
- 5.78897,
- 49.87213
- ],
- [
- 5.77636,
- 49.86265
- ],
- [
- 5.75667,
- 49.8703
- ],
- [
- 5.76191,
- 49.85693
- ],
- [
- 5.75803,
- 49.84287
- ],
- [
- 5.74291,
- 49.83555
- ],
- [
- 5.75151,
- 49.81985
- ],
- [
- 5.75473,
- 49.79514
- ],
- [
- 5.7909,
- 49.79765
- ],
- [
- 5.8179,
- 49.75977
- ],
- [
- 5.83544,
- 49.74713
- ],
- [
- 5.82702,
- 49.72616
- ],
- [
- 5.86996,
- 49.72777
- ],
- [
- 5.88817,
- 49.70952
- ],
- [
- 5.86372,
- 49.68213
- ],
- [
- 5.91262,
- 49.66488
- ],
- [
- 5.90382,
- 49.65192
- ],
- [
- 5.90876,
- 49.63876
- ],
- [
- 5.89899,
- 49.63401
- ],
- [
- 5.89117,
- 49.63469
- ],
- [
- 5.87663,
- 49.60771
- ],
- [
- 5.84953,
- 49.59399
- ],
- [
- 5.87403,
- 49.58991
- ],
- [
- 5.8736,
- 49.57435
- ],
- [
- 5.84053,
- 49.55222
- ],
- [
- 5.82582,
- 49.54931
- ],
- [
- 5.81858,
- 49.5461
- ],
- [
- 5.79504,
- 49.55029
- ],
- [
- 5.77149,
- 49.55832
- ],
- [
- 5.76226,
- 49.554
- ],
- [
- 5.76126,
- 49.53952
- ],
- [
- 5.74792,
- 49.53452
- ],
- [
- 5.73009,
- 49.53954
- ],
- [
- 5.6987,
- 49.53744
- ],
- [
- 5.66008,
- 49.55039
- ],
- [
- 5.64371,
- 49.54565
- ],
- [
- 5.6228,
- 49.5283
- ],
- [
- 5.62589,
- 49.51698
- ],
- [
- 5.61175,
- 49.50102
- ],
- [
- 5.59116,
- 49.51734
- ],
- [
- 5.55638,
- 49.52373
- ],
- [
- 5.54257,
- 49.5105
- ],
- [
- 5.47007,
- 49.49196
- ]
- ]
- ],
- "terms_url": "https://openstreetmap.org/",
- "terms_text": "© OpenStreetMap contributors, CC-BY-SA; Tiles courtesy of GEO-6",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAGb0lEQVR4Xq3MS2xcVx3H8e855z7m3vH1jMdjO43zshIrtpM0SZ3WFEcRVFFKoRWPBYtAHwgWCFUsQN100QeCsqAhCESrirRASdWWIkoUqgKFJm3UZ5o2oW2akrR5uXbi2ON4PPfOfZ17iERW2bCAz1/f3V8/cfDC02UEj4OxKHjdFMUfmUzOlAeXZFZuuVIKN8zi1dPh7Hcn5091G2EOB5b//NplA28/9tAT4bq111jD64ZKHR2VQWPEbULI0aHqZz7NZeLNmSeVMOJu4AfGgNEGLsR/95YuetcRzprcFJvaaVxrpm2mmqfp8FxKSYk8ck+0pt1nykFp0A/k9Tnt/lq3T2dHEOmi2DxSu+EdAAFwcPqp640xe42h26Qa2hqnXsFVHs04pNFuYgvbtOWCmD3aMj2VNaLi1+jwyxgpCKOQRCdMN6ZMd5Bmw1cPfG+5O/7LeX0ECyBppx9Zrn0c6BbNHJNr4qhFYWtsJCWpSFUm3ntxips2bxe+p1BKIJQECpRbkCQ2wu0XzbnIeemvhzYCVNR6JMDm5bdNF9qcwhiKbpvMg2KujZDmUgX1jgqT719gy+iX6QxsPM9F2YqclHbRRpUEXmCRZTGFlZGKxSMbR6+uA0gu863OzLc7cVUZN6jgKI8kicl0ykzjAiW5lGrVAWUwokApSa3UTY/XR2B3UlDgVy1sB8od7tgt2++4AcACOHL+uRW2bW8QQiCxcUoS6XssyBbnF6Y5+8kci8vjlJwqjnQwWpDlgtRYZDpHmxJzWUyk26gOYXxK0g+8G4bXX/snC0DZcmVh9EoQ5DpDSIVJYmIiGvkCurAQpkLU9kkTEEJeCjxbURSCZgTkfVjOApoM6Qtc3109Nj7uWO9M70EbPQT4YMhNjrWQEdHmTPs8SgfUisUgDLoAgcGyEjJtEaeaVlKQ5gVSGYwBhETaEmVJcemQaZ44aRpvyLIEnedGoNHNkNTTeI5DT2kRljeJziVhnKNlE1GaJFfnuRi3SXMDxmA7IUqCI20qdifkxfED+/dlanzb1cYL3BFhsTXPU4Ep0FGKUVALegCb1oLN7FlNpd5HIUNQLYxIsO0EKcByWljuAmXbp7fcIwgVb7xyaNeep3YfUnt272PLjaP1em/lZqmEk4cJQoMKfBxVIcwjlAp47okX6ap3XaoP221CIREyx7La2E6O7/h0eTXK+Bw+8uHrP7znvocXLe6flwCHXj06kab5hJAS6dhQFOgiJ2qXsKLVuHqAgdVD7HrwXibPTKJzFyMMAgECHGXTJTqxE4t3T5xMD7y29+mFRjgpLSUlYJ793T9ORWF0Lk1StCzQNqTTAle30flbzJ/bx6n3Xsa2Fb9/5Eccfu19wnlNFBniWJA3JecbDfa/8y5nJg7bW7ZeuyYKZwyF0QIAkC988Ogzfof6SppapHGZqgNTExPsfngfgaXpqyWk9QF6lwWk7YJlK1fQaTysqk8sE6LwIq4OEMql1DH3/O03PnBHUCk3JMCeA7/q6u1a0ltiNZ1eL719cPrcWR752d+Yn2lx/HSDY40qY2Pb2PapjYxv3YBX1syZ88weP3bp90Omw3PMOxNUe9FTn9gn5uemQqfk5BbAisHBlVo7g7PFx9TdgDMnZvjtzheI51qkWY5xYWxTLxXfJ5IVevIZ6gMDxCYnPjWDXZ0nSiOkEmYqO5l8cGT6FSD6+NhRJMCF1sWV88VkX6f3n/FHd+xl9uwsrTDEOIbPfWEj120eorw0JEzLhGWfop3ixxKrP0CTIQSAEVmhw5/f94uXAANg3b/r+1YrnV1T86ucPDzBrp3PcvHcHGmaUekL+OKtm9m0ailOUEe4FrXyWaKFblM4HmUvElNzF4jTxFiOhRRSJO34JHCOy6RU0i60uepfx07nO+593FycapAkCbX+Kl+/cxvXfXYIU3GjN/Yf2vPPg2/9JVxoNYNqQ+hcilznlKWDcpSwlCWiZrtx/O3Tf+AKClj88I9v/9aD99/aHBkaLlYNDTXuvPubH/3kN3e9vP3bn78HGAP6gSXA6K3fufnOXz+/888vHH3i9O4XH3j1roe+8dDo1pGvAeuAClfa/+aTQH35Yztuenz7l4aPLB9c81O/3H3L5VHFlUACZaAH6AQc/pv1o9cEiwbWbRlev+mrazeOblg3usnj/6nWV2fVyFp71fCa0sDgkOKyq5av4H/xb0Ky8po5hQEuAAAAAElFTkSuQmCC"
- },
- {
- "id": "MAPNIK",
- "name": "OpenStreetMap (Standard)",
- "type": "tms",
- "template": "https://{switch:a,b,c}.tile.openstreetmap.org/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 19
- ],
- "terms_url": "https://www.openstreetmap.org",
- "terms_text": "© OpenStreetMap contributors, CC-BY-SA",
- "default": true,
- "description": "The default OpenStreetMap layer.",
- "icon": "data:image/png;base64,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"
- },
- {
- "id": "OpenStreetMap-turistautak",
- "name": "OpenStreetMap (turistautak)",
- "type": "tms",
- "template": "http://{switch:h,i,j}.tile.openstreetmap.hu/turistautak/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 18
- ],
- "polygon": [
- [
- [
- 16.11391,
- 46.8691
- ],
- [
- 16.17897,
- 46.90662
- ],
- [
- 16.20004,
- 46.94151
- ],
- [
- 16.22175,
- 46.93554
- ],
- [
- 16.24628,
- 46.94639
- ],
- [
- 16.25532,
- 46.96421
- ],
- [
- 16.27647,
- 46.96261
- ],
- [
- 16.29058,
- 47.01398
- ],
- [
- 16.30162,
- 46.99923
- ],
- [
- 16.34146,
- 46.99652
- ],
- [
- 16.35052,
- 47.01063
- ],
- [
- 16.3734,
- 46.99859
- ],
- [
- 16.41277,
- 47.00475
- ],
- [
- 16.43327,
- 46.99274
- ],
- [
- 16.44781,
- 47.00389
- ],
- [
- 16.48,
- 46.99412
- ],
- [
- 16.5122,
- 47.00117
- ],
- [
- 16.46356,
- 47.03227
- ],
- [
- 16.44786,
- 47.02275
- ],
- [
- 16.43912,
- 47.02966
- ],
- [
- 16.44567,
- 47.03887
- ],
- [
- 16.52032,
- 47.0561
- ],
- [
- 16.47321,
- 47.07362
- ],
- [
- 16.46372,
- 47.09392
- ],
- [
- 16.5008,
- 47.11006
- ],
- [
- 16.50004,
- 47.12329
- ],
- [
- 16.52953,
- 47.12874
- ],
- [
- 16.51716,
- 47.14969
- ],
- [
- 16.45495,
- 47.14259
- ],
- [
- 16.46487,
- 47.16833
- ],
- [
- 16.45556,
- 47.18756
- ],
- [
- 16.43056,
- 47.1847
- ],
- [
- 16.4195,
- 47.19491
- ],
- [
- 16.41892,
- 47.21071
- ],
- [
- 16.43713,
- 47.2097
- ],
- [
- 16.44263,
- 47.23371
- ],
- [
- 16.43131,
- 47.25276
- ],
- [
- 16.46715,
- 47.25317
- ],
- [
- 16.48923,
- 47.27989
- ],
- [
- 16.46463,
- 47.33385
- ],
- [
- 16.4337,
- 47.35281
- ],
- [
- 16.45851,
- 47.36705
- ],
- [
- 16.44546,
- 47.40702
- ],
- [
- 16.48317,
- 47.40936
- ],
- [
- 16.49638,
- 47.38927
- ],
- [
- 16.51709,
- 47.41002
- ],
- [
- 16.57491,
- 47.40542
- ],
- [
- 16.58073,
- 47.41917
- ],
- [
- 16.66185,
- 47.4556
- ],
- [
- 16.67064,
- 47.47422
- ],
- [
- 16.65234,
- 47.50034
- ],
- [
- 16.68956,
- 47.51016
- ],
- [
- 16.71478,
- 47.5402
- ],
- [
- 16.66354,
- 47.56773
- ],
- [
- 16.6732,
- 47.60495
- ],
- [
- 16.65953,
- 47.6061
- ],
- [
- 16.65276,
- 47.62285
- ],
- [
- 16.63142,
- 47.62832
- ],
- [
- 16.57391,
- 47.61967
- ],
- [
- 16.51474,
- 47.6462
- ],
- [
- 16.49675,
- 47.63931
- ],
- [
- 16.42546,
- 47.66217
- ],
- [
- 16.44374,
- 47.67421
- ],
- [
- 16.44805,
- 47.69647
- ],
- [
- 16.4747,
- 47.68116
- ],
- [
- 16.48722,
- 47.69798
- ],
- [
- 16.55217,
- 47.72255
- ],
- [
- 16.53638,
- 47.73678
- ],
- [
- 16.54798,
- 47.75154
- ],
- [
- 16.60952,
- 47.76037
- ],
- [
- 16.63441,
- 47.75908
- ],
- [
- 16.65729,
- 47.74149
- ],
- [
- 16.72094,
- 47.73536
- ],
- [
- 16.75341,
- 47.68282
- ],
- [
- 16.83016,
- 47.68106
- ],
- [
- 16.83943,
- 47.70451
- ],
- [
- 16.86689,
- 47.72115
- ],
- [
- 16.87668,
- 47.68765
- ],
- [
- 17.09374,
- 47.70777
- ],
- [
- 17.07066,
- 47.72854
- ],
- [
- 17.0516,
- 47.79385
- ],
- [
- 17.07495,
- 47.8085
- ],
- [
- 17.04714,
- 47.82856
- ],
- [
- 17.05195,
- 47.83777
- ],
- [
- 17.01055,
- 47.85818
- ],
- [
- 17.01639,
- 47.86733
- ],
- [
- 17.08575,
- 47.87462
- ],
- [
- 17.11317,
- 47.92716
- ],
- [
- 17.09171,
- 47.93429
- ],
- [
- 17.11838,
- 47.96011
- ],
- [
- 17.09466,
- 47.97088
- ],
- [
- 17.20103,
- 48.01999
- ],
- [
- 17.24177,
- 48.02247
- ],
- [
- 17.25795,
- 47.99865
- ],
- [
- 17.33465,
- 47.99312
- ],
- [
- 17.40299,
- 47.94785
- ],
- [
- 17.45392,
- 47.88526
- ],
- [
- 17.52674,
- 47.86551
- ],
- [
- 17.56758,
- 47.81513
- ],
- [
- 17.6084,
- 47.82189
- ],
- [
- 17.70858,
- 47.75668
- ],
- [
- 17.77987,
- 47.73949
- ],
- [
- 17.8661,
- 47.74575
- ],
- [
- 17.90013,
- 47.73926
- ],
- [
- 17.94687,
- 47.74467
- ],
- [
- 17.97087,
- 47.75784
- ],
- [
- 18.00441,
- 47.74634
- ],
- [
- 18.03806,
- 47.75768
- ],
- [
- 18.29588,
- 47.73146
- ],
- [
- 18.45407,
- 47.76512
- ],
- [
- 18.49316,
- 47.75276
- ],
- [
- 18.55908,
- 47.766
- ],
- [
- 18.64609,
- 47.75909
- ],
- [
- 18.72607,
- 47.78904
- ],
- [
- 18.74118,
- 47.81382
- ],
- [
- 18.792,
- 47.82309
- ],
- [
- 18.84854,
- 47.81672
- ],
- [
- 18.85588,
- 47.82608
- ],
- [
- 18.82801,
- 47.83429
- ],
- [
- 18.81357,
- 47.85555
- ],
- [
- 18.76353,
- 47.8716
- ],
- [
- 18.75686,
- 47.89684
- ],
- [
- 18.77675,
- 47.95509
- ],
- [
- 18.75525,
- 47.97635
- ],
- [
- 18.81574,
- 47.99344
- ],
- [
- 18.82,
- 48.03968
- ],
- [
- 18.83327,
- 48.04824
- ],
- [
- 18.87494,
- 48.04707
- ],
- [
- 18.88667,
- 48.05868
- ],
- [
- 18.90898,
- 48.05114
- ],
- [
- 18.9439,
- 48.05886
- ],
- [
- 18.98161,
- 48.0536
- ],
- [
- 19.01486,
- 48.07818
- ],
- [
- 19.05852,
- 48.05735
- ],
- [
- 19.08436,
- 48.07278
- ],
- [
- 19.1074,
- 48.0656
- ],
- [
- 19.13529,
- 48.07415
- ],
- [
- 19.24137,
- 48.05365
- ],
- [
- 19.25578,
- 48.07156
- ],
- [
- 19.30311,
- 48.08871
- ],
- [
- 19.3866,
- 48.09191
- ],
- [
- 19.40002,
- 48.0823
- ],
- [
- 19.45405,
- 48.10144
- ],
- [
- 19.46735,
- 48.08393
- ],
- [
- 19.49442,
- 48.10991
- ],
- [
- 19.49238,
- 48.13966
- ],
- [
- 19.51282,
- 48.15466
- ],
- [
- 19.50452,
- 48.17344
- ],
- [
- 19.52897,
- 48.19036
- ],
- [
- 19.52604,
- 48.20313
- ],
- [
- 19.5775,
- 48.21601
- ],
- [
- 19.63083,
- 48.25007
- ],
- [
- 19.64452,
- 48.23917
- ],
- [
- 19.66986,
- 48.23921
- ],
- [
- 19.69122,
- 48.20389
- ],
- [
- 19.72113,
- 48.20147
- ],
- [
- 19.74618,
- 48.21651
- ],
- [
- 19.78716,
- 48.19253
- ],
- [
- 19.79873,
- 48.19482
- ],
- [
- 19.80528,
- 48.18373
- ],
- [
- 19.78242,
- 48.16504
- ],
- [
- 19.79481,
- 48.15353
- ],
- [
- 19.82133,
- 48.16908
- ],
- [
- 19.84528,
- 48.16274
- ],
- [
- 19.85517,
- 48.17843
- ],
- [
- 19.86013,
- 48.16941
- ],
- [
- 19.89875,
- 48.16631
- ],
- [
- 19.91454,
- 48.14686
- ],
- [
- 19.8983,
- 48.1249
- ],
- [
- 19.93738,
- 48.13112
- ],
- [
- 19.97439,
- 48.166
- ],
- [
- 19.98871,
- 48.16217
- ],
- [
- 20.02904,
- 48.17768
- ],
- [
- 20.04945,
- 48.1672
- ],
- [
- 20.07299,
- 48.17961
- ],
- [
- 20.07004,
- 48.1917
- ],
- [
- 20.13409,
- 48.22518
- ],
- [
- 20.13319,
- 48.25398
- ],
- [
- 20.20616,
- 48.25098
- ],
- [
- 20.20383,
- 48.26191
- ],
- [
- 20.22847,
- 48.26278
- ],
- [
- 20.23495,
- 48.27993
- ],
- [
- 20.28686,
- 48.26164
- ],
- [
- 20.32571,
- 48.27279
- ],
- [
- 20.33746,
- 48.30167
- ],
- [
- 20.36566,
- 48.31661
- ],
- [
- 20.38408,
- 48.35118
- ],
- [
- 20.40983,
- 48.36586
- ],
- [
- 20.40253,
- 48.38256
- ],
- [
- 20.42053,
- 48.40386
- ],
- [
- 20.41623,
- 48.41854
- ],
- [
- 20.50793,
- 48.48936
- ],
- [
- 20.50651,
- 48.53442
- ],
- [
- 20.53747,
- 48.52788
- ],
- [
- 20.54649,
- 48.54429
- ],
- [
- 20.58659,
- 48.53576
- ],
- [
- 20.65387,
- 48.56141
- ],
- [
- 20.83636,
- 48.58284
- ],
- [
- 20.8378,
- 48.57421
- ],
- [
- 20.85044,
- 48.58163
- ],
- [
- 20.84533,
- 48.5665
- ],
- [
- 20.86815,
- 48.55182
- ],
- [
- 20.92232,
- 48.55945
- ],
- [
- 20.93463,
- 48.53834
- ],
- [
- 20.95588,
- 48.53396
- ],
- [
- 20.9562,
- 48.52167
- ],
- [
- 20.98158,
- 48.51777
- ],
- [
- 21.01511,
- 48.53231
- ],
- [
- 21.06632,
- 48.52589
- ],
- [
- 21.11745,
- 48.49105
- ],
- [
- 21.16087,
- 48.5215
- ],
- [
- 21.17963,
- 48.51823
- ],
- [
- 21.22106,
- 48.5375
- ],
- [
- 21.30549,
- 48.52225
- ],
- [
- 21.31338,
- 48.55084
- ],
- [
- 21.32688,
- 48.55413
- ],
- [
- 21.31938,
- 48.5612
- ],
- [
- 21.41545,
- 48.55895
- ],
- [
- 21.42266,
- 48.57882
- ],
- [
- 21.44061,
- 48.5851
- ],
- [
- 21.51409,
- 48.55107
- ],
- [
- 21.54202,
- 48.5084
- ],
- [
- 21.61393,
- 48.50942
- ],
- [
- 21.62019,
- 48.46983
- ],
- [
- 21.66355,
- 48.41796
- ],
- [
- 21.66456,
- 48.39216
- ],
- [
- 21.70174,
- 48.3807
- ],
- [
- 21.71187,
- 48.35762
- ],
- [
- 21.81741,
- 48.33279
- ],
- [
- 21.8352,
- 48.33464
- ],
- [
- 21.83721,
- 48.36325
- ],
- [
- 21.8843,
- 48.35605
- ],
- [
- 21.88484,
- 48.36754
- ],
- [
- 21.89788,
- 48.36256
- ],
- [
- 21.8998,
- 48.37022
- ],
- [
- 21.92819,
- 48.3616
- ],
- [
- 21.92681,
- 48.3709
- ],
- [
- 21.9492,
- 48.37873
- ],
- [
- 21.99446,
- 48.37732
- ],
- [
- 22.02133,
- 48.39275
- ],
- [
- 22.0546,
- 48.37753
- ],
- [
- 22.07649,
- 48.38724
- ],
- [
- 22.08674,
- 48.37156
- ],
- [
- 22.13591,
- 48.38052
- ],
- [
- 22.13106,
- 48.39123
- ],
- [
- 22.15277,
- 48.39624
- ],
- [
- 22.15619,
- 48.40931
- ],
- [
- 22.21257,
- 48.42565
- ],
- [
- 22.23714,
- 48.41004
- ],
- [
- 22.26549,
- 48.40987
- ],
- [
- 22.23988,
- 48.38701
- ],
- [
- 22.26757,
- 48.36116
- ],
- [
- 22.31781,
- 48.35454
- ],
- [
- 22.31329,
- 48.32507
- ],
- [
- 22.33729,
- 48.30791
- ],
- [
- 22.33843,
- 48.27921
- ],
- [
- 22.38475,
- 48.23396
- ],
- [
- 22.40064,
- 48.2492
- ],
- [
- 22.43284,
- 48.25252
- ],
- [
- 22.45639,
- 48.24231
- ],
- [
- 22.4899,
- 48.25342
- ],
- [
- 22.49722,
- 48.23955
- ],
- [
- 22.51615,
- 48.23797
- ],
- [
- 22.53111,
- 48.20943
- ],
- [
- 22.57114,
- 48.19614
- ],
- [
- 22.56164,
- 48.18161
- ],
- [
- 22.59824,
- 48.14476
- ],
- [
- 22.59028,
- 48.10734
- ],
- [
- 22.67545,
- 48.092
- ],
- [
- 22.73472,
- 48.11985
- ],
- [
- 22.75762,
- 48.12006
- ],
- [
- 22.77039,
- 48.10902
- ],
- [
- 22.77232,
- 48.12187
- ],
- [
- 22.80277,
- 48.12211
- ],
- [
- 22.80253,
- 48.10708
- ],
- [
- 22.82543,
- 48.11751
- ],
- [
- 22.83644,
- 48.08025
- ],
- [
- 22.86113,
- 48.07503
- ],
- [
- 22.8678,
- 48.05243
- ],
- [
- 22.88204,
- 48.05481
- ],
- [
- 22.86597,
- 48.01132
- ],
- [
- 22.83556,
- 47.9906
- ],
- [
- 22.84076,
- 47.98136
- ],
- [
- 22.87257,
- 47.97527
- ],
- [
- 22.86973,
- 47.96596
- ],
- [
- 22.89157,
- 47.96724
- ],
- [
- 22.89744,
- 47.95406
- ],
- [
- 22.84733,
- 47.90776
- ],
- [
- 22.79281,
- 47.89086
- ],
- [
- 22.75869,
- 47.89414
- ],
- [
- 22.77775,
- 47.84225
- ],
- [
- 22.71363,
- 47.83609
- ],
- [
- 22.68019,
- 47.78775
- ],
- [
- 22.61112,
- 47.77175
- ],
- [
- 22.549,
- 47.77222
- ],
- [
- 22.48121,
- 47.81089
- ],
- [
- 22.45131,
- 47.80339
- ],
- [
- 22.43133,
- 47.73981
- ],
- [
- 22.35662,
- 47.74862
- ],
- [
- 22.31777,
- 47.76609
- ],
- [
- 22.31762,
- 47.74337
- ],
- [
- 22.28514,
- 47.72928
- ],
- [
- 22.26432,
- 47.73107
- ],
- [
- 22.259,
- 47.69791
- ],
- [
- 22.23068,
- 47.6932
- ],
- [
- 22.17965,
- 47.59161
- ],
- [
- 22.12892,
- 47.5979
- ],
- [
- 22.09428,
- 47.55836
- ],
- [
- 22.07826,
- 47.56213
- ],
- [
- 22.05345,
- 47.54748
- ],
- [
- 22.07122,
- 47.53807
- ],
- [
- 22.06179,
- 47.5288
- ],
- [
- 22.04513,
- 47.53989
- ],
- [
- 22.03672,
- 47.53267
- ],
- [
- 22.00719,
- 47.48362
- ],
- [
- 22.03279,
- 47.45084
- ],
- [
- 22.02388,
- 47.39086
- ],
- [
- 22.01198,
- 47.3758
- ],
- [
- 21.96274,
- 47.38105
- ],
- [
- 21.93825,
- 47.37253
- ],
- [
- 21.87779,
- 47.28578
- ],
- [
- 21.88728,
- 47.27305
- ],
- [
- 21.85349,
- 47.23976
- ],
- [
- 21.85807,
- 47.18736
- ],
- [
- 21.81248,
- 47.16675
- ],
- [
- 21.79241,
- 47.10598
- ],
- [
- 21.72683,
- 47.09839
- ],
- [
- 21.6976,
- 47.05792
- ],
- [
- 21.65042,
- 47.04083
- ],
- [
- 21.68887,
- 47.002
- ],
- [
- 21.66787,
- 46.97123
- ],
- [
- 21.68149,
- 46.96521
- ],
- [
- 21.6382,
- 46.93305
- ],
- [
- 21.59845,
- 46.92747
- ],
- [
- 21.61429,
- 46.88673
- ],
- [
- 21.60167,
- 46.86682
- ],
- [
- 21.52033,
- 46.83737
- ],
- [
- 21.51861,
- 46.80007
- ],
- [
- 21.48318,
- 46.76502
- ],
- [
- 21.52634,
- 46.73932
- ],
- [
- 21.52937,
- 46.72097
- ],
- [
- 21.49233,
- 46.68597
- ],
- [
- 21.47284,
- 46.69591
- ],
- [
- 21.4299,
- 46.69394
- ],
- [
- 21.43096,
- 46.67814
- ],
- [
- 21.45467,
- 46.66086
- ],
- [
- 21.41624,
- 46.64262
- ],
- [
- 21.4098,
- 46.62181
- ],
- [
- 21.3657,
- 46.63795
- ],
- [
- 21.33005,
- 46.63182
- ],
- [
- 21.31397,
- 46.61767
- ],
- [
- 21.30124,
- 46.59087
- ],
- [
- 21.32079,
- 46.58286
- ],
- [
- 21.2743,
- 46.54074
- ],
- [
- 21.26003,
- 46.50216
- ],
- [
- 21.27442,
- 46.47673
- ],
- [
- 21.29645,
- 46.4763
- ],
- [
- 21.31743,
- 46.45073
- ],
- [
- 21.28952,
- 46.41548
- ],
- [
- 21.29633,
- 46.40696
- ],
- [
- 21.22501,
- 46.41369
- ],
- [
- 21.20642,
- 46.40338
- ],
- [
- 21.19926,
- 46.3479
- ],
- [
- 21.17623,
- 46.33577
- ],
- [
- 21.1805,
- 46.30445
- ],
- [
- 21.11554,
- 46.30185
- ],
- [
- 21.10305,
- 46.26246
- ],
- [
- 21.07088,
- 46.2539
- ],
- [
- 21.06608,
- 46.24294
- ],
- [
- 21.03662,
- 46.24804
- ],
- [
- 21.02467,
- 46.26653
- ],
- [
- 20.96082,
- 46.2623
- ],
- [
- 20.94658,
- 46.2793
- ],
- [
- 20.92507,
- 46.27662
- ],
- [
- 20.92181,
- 46.26181
- ],
- [
- 20.87327,
- 46.28776
- ],
- [
- 20.77565,
- 46.27596
- ],
- [
- 20.74905,
- 46.25085
- ],
- [
- 20.76186,
- 46.20456
- ],
- [
- 20.7274,
- 46.20775
- ],
- [
- 20.73411,
- 46.19394
- ],
- [
- 20.71405,
- 46.16605
- ],
- [
- 20.68436,
- 46.14478
- ],
- [
- 20.65492,
- 46.14977
- ],
- [
- 20.63945,
- 46.12676
- ],
- [
- 20.54505,
- 46.17909
- ],
- [
- 20.50148,
- 46.19033
- ],
- [
- 20.49494,
- 46.17099
- ],
- [
- 20.45923,
- 46.14288
- ],
- [
- 20.39751,
- 46.15747
- ],
- [
- 20.36853,
- 46.15286
- ],
- [
- 20.35571,
- 46.16963
- ],
- [
- 20.29681,
- 46.15215
- ],
- [
- 20.2549,
- 46.11585
- ],
- [
- 20.24848,
- 46.1301
- ],
- [
- 20.23301,
- 46.12417
- ],
- [
- 20.18174,
- 46.16011
- ],
- [
- 20.1365,
- 46.14495
- ],
- [
- 20.10097,
- 46.17728
- ],
- [
- 20.06362,
- 46.14373
- ],
- [
- 20.03461,
- 46.14589
- ],
- [
- 20.01581,
- 46.17684
- ],
- [
- 19.93541,
- 46.17642
- ],
- [
- 19.85335,
- 46.15
- ],
- [
- 19.81797,
- 46.12817
- ],
- [
- 19.75854,
- 46.14798
- ],
- [
- 19.69821,
- 46.18793
- ],
- [
- 19.68277,
- 46.18004
- ],
- [
- 19.66151,
- 46.19044
- ],
- [
- 19.63174,
- 46.1693
- ],
- [
- 19.56765,
- 46.17911
- ],
- [
- 19.5604,
- 46.16658
- ],
- [
- 19.50266,
- 46.14245
- ],
- [
- 19.52712,
- 46.12103
- ],
- [
- 19.4645,
- 46.09538
- ],
- [
- 19.46658,
- 46.08204
- ],
- [
- 19.416,
- 46.04605
- ],
- [
- 19.3804,
- 46.03587
- ],
- [
- 19.36409,
- 46.0523
- ],
- [
- 19.2819,
- 46.0148
- ],
- [
- 19.29653,
- 45.98812
- ],
- [
- 19.28565,
- 45.9969
- ],
- [
- 19.14799,
- 45.99634
- ],
- [
- 19.13384,
- 46.0371
- ],
- [
- 19.10487,
- 46.04017
- ],
- [
- 19.06604,
- 46.0002
- ],
- [
- 19.07968,
- 45.96364
- ],
- [
- 19.00598,
- 45.95907
- ],
- [
- 19.00927,
- 45.92366
- ],
- [
- 18.90613,
- 45.93538
- ],
- [
- 18.87946,
- 45.91668
- ],
- [
- 18.86471,
- 45.92085
- ],
- [
- 18.86856,
- 45.91134
- ],
- [
- 18.82768,
- 45.90517
- ],
- [
- 18.822,
- 45.91459
- ],
- [
- 18.80751,
- 45.90361
- ],
- [
- 18.80925,
- 45.87962
- ],
- [
- 18.79562,
- 45.87845
- ],
- [
- 18.70489,
- 45.91819
- ],
- [
- 18.67002,
- 45.91084
- ],
- [
- 18.65966,
- 45.91689
- ],
- [
- 18.66513,
- 45.89928
- ],
- [
- 18.64128,
- 45.88904
- ],
- [
- 18.65502,
- 45.87424
- ],
- [
- 18.62777,
- 45.87338
- ],
- [
- 18.61484,
- 45.85314
- ],
- [
- 18.62367,
- 45.83985
- ],
- [
- 18.57324,
- 45.81376
- ],
- [
- 18.57498,
- 45.80043
- ],
- [
- 18.55972,
- 45.8038
- ],
- [
- 18.52235,
- 45.78269
- ],
- [
- 18.49067,
- 45.79472
- ],
- [
- 18.48219,
- 45.7655
- ],
- [
- 18.45628,
- 45.76952
- ],
- [
- 18.44508,
- 45.76052
- ],
- [
- 18.44685,
- 45.73713
- ],
- [
- 18.40763,
- 45.73971
- ],
- [
- 18.39189,
- 45.7617
- ],
- [
- 18.36423,
- 45.77294
- ],
- [
- 18.33942,
- 45.74716
- ],
- [
- 18.29682,
- 45.76122
- ],
- [
- 18.24405,
- 45.76123
- ],
- [
- 18.23073,
- 45.77903
- ],
- [
- 18.19087,
- 45.78788
- ],
- [
- 18.16819,
- 45.77627
- ],
- [
- 18.12465,
- 45.78963
- ],
- [
- 18.10681,
- 45.77083
- ],
- [
- 18.08189,
- 45.76452
- ],
- [
- 17.99588,
- 45.79573
- ],
- [
- 17.93021,
- 45.78633
- ],
- [
- 17.90668,
- 45.79257
- ],
- [
- 17.86531,
- 45.76701
- ],
- [
- 17.82627,
- 45.81
- ],
- [
- 17.80898,
- 45.8041
- ],
- [
- 17.78091,
- 45.81749
- ],
- [
- 17.76034,
- 45.81192
- ],
- [
- 17.74086,
- 45.8296
- ],
- [
- 17.66329,
- 45.83818
- ],
- [
- 17.62762,
- 45.89794
- ],
- [
- 17.57007,
- 45.93582
- ],
- [
- 17.43783,
- 45.95038
- ],
- [
- 17.4259,
- 45.92727
- ],
- [
- 17.41081,
- 45.93997
- ],
- [
- 17.39215,
- 45.93021
- ],
- [
- 17.38287,
- 45.94757
- ],
- [
- 17.34762,
- 45.94234
- ],
- [
- 17.34388,
- 45.96053
- ],
- [
- 17.35377,
- 45.9525
- ],
- [
- 17.39054,
- 45.95819
- ],
- [
- 17.38742,
- 45.96618
- ],
- [
- 17.35835,
- 45.96427
- ],
- [
- 17.37549,
- 45.96869
- ],
- [
- 17.37519,
- 45.98811
- ],
- [
- 17.36357,
- 45.99154
- ],
- [
- 17.35672,
- 45.97358
- ],
- [
- 17.33396,
- 45.99608
- ],
- [
- 17.33198,
- 45.97289
- ],
- [
- 17.313,
- 45.96653
- ],
- [
- 17.32365,
- 45.98878
- ],
- [
- 17.29877,
- 45.98387
- ],
- [
- 17.3042,
- 46.00211
- ],
- [
- 17.25797,
- 46.01103
- ],
- [
- 17.29632,
- 46.02852
- ],
- [
- 17.25415,
- 46.03001
- ],
- [
- 17.27096,
- 46.05671
- ],
- [
- 17.23248,
- 46.0592
- ],
- [
- 17.25251,
- 46.06647
- ],
- [
- 17.23131,
- 46.07903
- ],
- [
- 17.20199,
- 46.07655
- ],
- [
- 17.23313,
- 46.09896
- ],
- [
- 17.2104,
- 46.10017
- ],
- [
- 17.21297,
- 46.11386
- ],
- [
- 17.17593,
- 46.10846
- ],
- [
- 17.17434,
- 46.12876
- ],
- [
- 17.18652,
- 46.13323
- ],
- [
- 17.1811,
- 46.15055
- ],
- [
- 17.15623,
- 46.15858
- ],
- [
- 17.15929,
- 46.16968
- ],
- [
- 17.1261,
- 46.16845
- ],
- [
- 17.12274,
- 46.17898
- ],
- [
- 17.07525,
- 46.18895
- ],
- [
- 17.06616,
- 46.2023
- ],
- [
- 16.97354,
- 46.2252
- ],
- [
- 16.97395,
- 46.24311
- ],
- [
- 16.95041,
- 46.24153
- ],
- [
- 16.88624,
- 46.28146
- ],
- [
- 16.87137,
- 46.32528
- ],
- [
- 16.88021,
- 46.3357
- ],
- [
- 16.86154,
- 46.34524
- ],
- [
- 16.86562,
- 46.35565
- ],
- [
- 16.8522,
- 46.35172
- ],
- [
- 16.84986,
- 46.36262
- ],
- [
- 16.83529,
- 46.36382
- ],
- [
- 16.83765,
- 46.3748
- ],
- [
- 16.82617,
- 46.3671
- ],
- [
- 16.79334,
- 46.38739
- ],
- [
- 16.75921,
- 46.37766
- ],
- [
- 16.72987,
- 46.40149
- ],
- [
- 16.71821,
- 46.38987
- ],
- [
- 16.67729,
- 46.44945
- ],
- [
- 16.66318,
- 46.4487
- ],
- [
- 16.66637,
- 46.4583
- ],
- [
- 16.61879,
- 46.46199
- ],
- [
- 16.60447,
- 46.47608
- ],
- [
- 16.5236,
- 46.50538
- ],
- [
- 16.53258,
- 46.5314
- ],
- [
- 16.51767,
- 46.53635
- ],
- [
- 16.50841,
- 46.56527
- ],
- [
- 16.483,
- 46.56604
- ],
- [
- 16.4834,
- 46.5786
- ],
- [
- 16.44557,
- 46.61095
- ],
- [
- 16.42486,
- 46.61316
- ],
- [
- 16.38594,
- 46.64425
- ],
- [
- 16.39154,
- 46.66373
- ],
- [
- 16.41985,
- 46.65848
- ],
- [
- 16.42863,
- 46.69397
- ],
- [
- 16.36892,
- 46.70401
- ],
- [
- 16.37983,
- 46.71539
- ],
- [
- 16.37109,
- 46.72229
- ],
- [
- 16.35706,
- 46.71424
- ],
- [
- 16.3186,
- 46.75414
- ],
- [
- 16.33054,
- 46.77521
- ],
- [
- 16.31216,
- 46.778
- ],
- [
- 16.31277,
- 46.79731
- ],
- [
- 16.34064,
- 46.80519
- ],
- [
- 16.35084,
- 46.83006
- ],
- [
- 16.34033,
- 46.84688
- ],
- [
- 16.3015,
- 46.85951
- ],
- [
- 16.29139,
- 46.87283
- ],
- [
- 16.23323,
- 46.87667
- ],
- [
- 16.15609,
- 46.85371
- ],
- [
- 16.12657,
- 46.85691
- ],
- [
- 16.11391,
- 46.8691
- ]
- ]
- ],
- "terms_url": "https://www.openstreetmap.org",
- "terms_text": "© OpenStreetMap contributors"
- },
- {
- "id": "osm-gps",
- "name": "OpenStreetMap GPS traces",
- "type": "tms",
- "template": "https://{switch:a,b,c}.gps-tile.openstreetmap.org/lines/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 20
- ],
- "terms_url": "https://www.openstreetmap.org/copyright",
- "terms_text": "© OpenStreetMap contributors",
- "terms_html": "GPS Direction: ← ↓ ↑ → © OpenStreetMap contributors.",
- "description": "Public GPS traces uploaded to OpenStreetMap.",
- "icon": "data:image/png;base64,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",
- "overlay": true
- },
- {
- "id": "lu.geoportail.opendata.ortho2010",
- "name": "Ortho 2010 geoportail.lu",
- "type": "tms",
- "template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/ortho_2010/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg",
- "endDate": "2010-07-02T00:00:00.000Z",
- "startDate": "2010-06-24T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- 5.96175,
- 50.17631
- ],
- [
- 6.02627,
- 50.18496
- ],
- [
- 6.03318,
- 50.16395
- ],
- [
- 6.06069,
- 50.15536
- ],
- [
- 6.07668,
- 50.15913
- ],
- [
- 6.07824,
- 50.17255
- ],
- [
- 6.10176,
- 50.17199
- ],
- [
- 6.1225,
- 50.16437
- ],
- [
- 6.1201,
- 50.15594
- ],
- [
- 6.1277,
- 50.14993
- ],
- [
- 6.11323,
- 50.13739
- ],
- [
- 6.12369,
- 50.13719
- ],
- [
- 6.14093,
- 50.1305
- ],
- [
- 6.13555,
- 50.11899
- ],
- [
- 6.13808,
- 50.10263
- ],
- [
- 6.13108,
- 50.09964
- ],
- [
- 6.13547,
- 50.09119
- ],
- [
- 6.12194,
- 50.09059
- ],
- [
- 6.12634,
- 50.07817
- ],
- [
- 6.13186,
- 50.07348
- ],
- [
- 6.12117,
- 50.064
- ],
- [
- 6.11444,
- 50.06139
- ],
- [
- 6.11563,
- 50.05817
- ],
- [
- 6.12361,
- 50.06323
- ],
- [
- 6.13661,
- 50.04178
- ],
- [
- 6.13034,
- 50.02975
- ],
- [
- 6.14821,
- 50.02307
- ],
- [
- 6.13868,
- 50.01572
- ],
- [
- 6.13594,
- 50.01485
- ],
- [
- 6.13138,
- 50.01905
- ],
- [
- 6.13024,
- 50.01819
- ],
- [
- 6.13934,
- 50.01116
- ],
- [
- 6.1517,
- 50.01058
- ],
- [
- 6.14546,
- 49.99689
- ],
- [
- 6.13966,
- 49.9994
- ],
- [
- 6.13852,
- 49.99829
- ],
- [
- 6.14218,
- 49.99535
- ],
- [
- 6.15023,
- 49.99518
- ],
- [
- 6.15625,
- 49.98867
- ],
- [
- 6.17305,
- 49.98589
- ],
- [
- 6.17348,
- 49.98344
- ],
- [
- 6.17035,
- 49.98376
- ],
- [
- 6.16549,
- 49.97115
- ],
- [
- 6.17151,
- 49.96298
- ],
- [
- 6.1763,
- 49.962
- ],
- [
- 6.17995,
- 49.95386
- ],
- [
- 6.18339,
- 49.9548
- ],
- [
- 6.17983,
- 49.96307
- ],
- [
- 6.18331,
- 49.9686
- ],
- [
- 6.19277,
- 49.97158
- ],
- [
- 6.19978,
- 49.95352
- ],
- [
- 6.20707,
- 49.95672
- ],
- [
- 6.21269,
- 49.9514
- ],
- [
- 6.22502,
- 49.95039
- ],
- [
- 6.22044,
- 49.94369
- ],
- [
- 6.22824,
- 49.93726
- ],
- [
- 6.22635,
- 49.92766
- ],
- [
- 6.21913,
- 49.92354
- ],
- [
- 6.22986,
- 49.92125
- ],
- [
- 6.23603,
- 49.91355
- ],
- [
- 6.23187,
- 49.91064
- ],
- [
- 6.22769,
- 49.91062
- ],
- [
- 6.23229,
- 49.9072
- ],
- [
- 6.23381,
- 49.90028
- ],
- [
- 6.24692,
- 49.89535
- ],
- [
- 6.25781,
- 49.88724
- ],
- [
- 6.26301,
- 49.88101
- ],
- [
- 6.27646,
- 49.87725
- ],
- [
- 6.28113,
- 49.87957
- ],
- [
- 6.29166,
- 49.87548
- ],
- [
- 6.2977,
- 49.86673
- ],
- [
- 6.30989,
- 49.87107
- ],
- [
- 6.31532,
- 49.8673
- ],
- [
- 6.31465,
- 49.86057
- ],
- [
- 6.32361,
- 49.85188
- ],
- [
- 6.32158,
- 49.8409
- ],
- [
- 6.32741,
- 49.83673
- ],
- [
- 6.33656,
- 49.83998
- ],
- [
- 6.33937,
- 49.8507
- ],
- [
- 6.36465,
- 49.85164
- ],
- [
- 6.4022,
- 49.82098
- ],
- [
- 6.42643,
- 49.81629
- ],
- [
- 6.42807,
- 49.81186
- ],
- [
- 6.43097,
- 49.81129
- ],
- [
- 6.44161,
- 49.81547
- ],
- [
- 6.44344,
- 49.81233
- ],
- [
- 6.45366,
- 49.81275
- ],
- [
- 6.46454,
- 49.81975
- ],
- [
- 6.47057,
- 49.82385
- ],
- [
- 6.49681,
- 49.81277
- ],
- [
- 6.50669,
- 49.80993
- ],
- [
- 6.51155,
- 49.80238
- ],
- [
- 6.51485,
- 49.80513
- ],
- [
- 6.5196,
- 49.81446
- ],
- [
- 6.52981,
- 49.81048
- ],
- [
- 6.53225,
- 49.80686
- ],
- [
- 6.53083,
- 49.80116
- ],
- [
- 6.50622,
- 49.78899
- ],
- [
- 6.51917,
- 49.78344
- ],
- [
- 6.51105,
- 49.77422
- ],
- [
- 6.52056,
- 49.76818
- ],
- [
- 6.52052,
- 49.76134
- ],
- [
- 6.50373,
- 49.75086
- ],
- [
- 6.50263,
- 49.73298
- ],
- [
- 6.50727,
- 49.72938
- ],
- [
- 6.51809,
- 49.7242
- ],
- [
- 6.51642,
- 49.72129
- ],
- [
- 6.51176,
- 49.72016
- ],
- [
- 6.50479,
- 49.725
- ],
- [
- 6.49891,
- 49.72639
- ],
- [
- 6.49558,
- 49.72443
- ],
- [
- 6.50712,
- 49.71655
- ],
- [
- 6.50788,
- 49.71215
- ],
- [
- 6.5046,
- 49.71227
- ],
- [
- 6.42714,
- 49.66237
- ],
- [
- 6.4399,
- 49.66025
- ],
- [
- 6.44251,
- 49.65591
- ],
- [
- 6.42178,
- 49.61809
- ],
- [
- 6.39898,
- 49.60094
- ],
- [
- 6.37941,
- 49.59526
- ],
- [
- 6.37551,
- 49.58809
- ],
- [
- 6.38443,
- 49.5801
- ],
- [
- 6.38119,
- 49.57509
- ],
- [
- 6.36909,
- 49.5783
- ],
- [
- 6.35791,
- 49.57166
- ],
- [
- 6.3849,
- 49.55817
- ],
- [
- 6.38009,
- 49.54856
- ],
- [
- 6.35855,
- 49.53296
- ],
- [
- 6.35932,
- 49.52481
- ],
- [
- 6.37076,
- 49.50545
- ],
- [
- 6.37056,
- 49.45732
- ],
- [
- 6.3334,
- 49.46493
- ],
- [
- 6.32189,
- 49.47244
- ],
- [
- 6.29503,
- 49.47928
- ],
- [
- 6.28789,
- 49.48379
- ],
- [
- 6.27191,
- 49.49995
- ],
- [
- 6.24133,
- 49.50693
- ],
- [
- 6.19669,
- 49.50331
- ],
- [
- 6.17337,
- 49.50577
- ],
- [
- 6.16086,
- 49.50085
- ],
- [
- 6.1671,
- 49.49006
- ],
- [
- 6.14018,
- 49.48525
- ],
- [
- 6.12937,
- 49.48803
- ],
- [
- 6.12725,
- 49.47081
- ],
- [
- 6.1014,
- 49.46726
- ],
- [
- 6.10483,
- 49.45076
- ],
- [
- 6.08167,
- 49.45417
- ],
- [
- 6.07722,
- 49.46139
- ],
- [
- 6.05917,
- 49.46306
- ],
- [
- 6.05222,
- 49.46028
- ],
- [
- 6.04421,
- 49.44553
- ],
- [
- 6.02529,
- 49.44703
- ],
- [
- 6.02154,
- 49.45127
- ],
- [
- 6.01574,
- 49.44885
- ],
- [
- 5.99412,
- 49.45301
- ],
- [
- 5.97657,
- 49.44885
- ],
- [
- 5.97773,
- 49.45955
- ],
- [
- 5.97232,
- 49.46087
- ],
- [
- 5.96891,
- 49.48202
- ],
- [
- 5.9616,
- 49.49026
- ],
- [
- 5.91578,
- 49.49835
- ],
- [
- 5.89033,
- 49.4948
- ],
- [
- 5.86332,
- 49.50006
- ],
- [
- 5.84897,
- 49.50826
- ],
- [
- 5.84828,
- 49.51397
- ],
- [
- 5.83641,
- 49.51817
- ],
- [
- 5.83187,
- 49.52639
- ],
- [
- 5.84308,
- 49.53081
- ],
- [
- 5.83562,
- 49.54114
- ],
- [
- 5.81625,
- 49.53325
- ],
- [
- 5.8052,
- 49.54272
- ],
- [
- 5.85943,
- 49.57158
- ],
- [
- 5.86866,
- 49.587
- ],
- [
- 5.86289,
- 49.58525
- ],
- [
- 5.8511,
- 49.58379
- ],
- [
- 5.84712,
- 49.58961
- ],
- [
- 5.84565,
- 49.5981
- ],
- [
- 5.8694,
- 49.6106
- ],
- [
- 5.88182,
- 49.63815
- ],
- [
- 5.89998,
- 49.63907
- ],
- [
- 5.89934,
- 49.66239
- ],
- [
- 5.85656,
- 49.67628
- ],
- [
- 5.85628,
- 49.68211
- ],
- [
- 5.8757,
- 49.71118
- ],
- [
- 5.86481,
- 49.72331
- ],
- [
- 5.84325,
- 49.71822
- ],
- [
- 5.82191,
- 49.72128
- ],
- [
- 5.82489,
- 49.73767
- ],
- [
- 5.82073,
- 49.74878
- ],
- [
- 5.78626,
- 49.79079
- ],
- [
- 5.76517,
- 49.78961
- ],
- [
- 5.75094,
- 49.79094
- ],
- [
- 5.74159,
- 49.82126
- ],
- [
- 5.74581,
- 49.82435
- ],
- [
- 5.7372,
- 49.83353
- ],
- [
- 5.74053,
- 49.84142
- ],
- [
- 5.74701,
- 49.84048
- ],
- [
- 5.74624,
- 49.84783
- ],
- [
- 5.75399,
- 49.84878
- ],
- [
- 5.74066,
- 49.85152
- ],
- [
- 5.75229,
- 49.85922
- ],
- [
- 5.74955,
- 49.87554
- ],
- [
- 5.77567,
- 49.87438
- ],
- [
- 5.77505,
- 49.88057
- ],
- [
- 5.7346,
- 49.89341
- ],
- [
- 5.73303,
- 49.90285
- ],
- [
- 5.75783,
- 49.91737
- ],
- [
- 5.76039,
- 49.93252
- ],
- [
- 5.77073,
- 49.93711
- ],
- [
- 5.76878,
- 49.94239
- ],
- [
- 5.7688,
- 49.96104
- ],
- [
- 5.78672,
- 49.96816
- ],
- [
- 5.80524,
- 49.96677
- ],
- [
- 5.80652,
- 49.97321
- ],
- [
- 5.83129,
- 49.97995
- ],
- [
- 5.83462,
- 49.98656
- ],
- [
- 5.81806,
- 49.99936
- ],
- [
- 5.81561,
- 50.01437
- ],
- [
- 5.84792,
- 50.02809
- ],
- [
- 5.86189,
- 50.04581
- ],
- [
- 5.85087,
- 50.0563
- ],
- [
- 5.85781,
- 50.07186
- ],
- [
- 5.881,
- 50.08069
- ],
- [
- 5.89196,
- 50.12041
- ],
- [
- 5.95286,
- 50.13384
- ],
- [
- 5.96175,
- 50.17631
- ]
- ]
- ],
- "terms_url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts",
- "terms_text": "Administration du Cadastre et de la Topographie",
- "icon": "https://www.geoportail.lu/static/img/lion.png"
- },
- {
- "id": "lu.geoportail.opendata.ortho2013",
- "name": "Ortho 2013 geoportail.lu",
- "type": "tms",
- "template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/ortho_2013/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg",
- "endDate": "2013-07-20T00:00:00.000Z",
- "startDate": "2013-07-19T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- 5.96175,
- 50.17631
- ],
- [
- 6.02627,
- 50.18496
- ],
- [
- 6.03318,
- 50.16395
- ],
- [
- 6.06069,
- 50.15536
- ],
- [
- 6.07668,
- 50.15913
- ],
- [
- 6.07824,
- 50.17255
- ],
- [
- 6.10176,
- 50.17199
- ],
- [
- 6.1225,
- 50.16437
- ],
- [
- 6.1201,
- 50.15594
- ],
- [
- 6.1277,
- 50.14993
- ],
- [
- 6.11323,
- 50.13739
- ],
- [
- 6.12369,
- 50.13719
- ],
- [
- 6.14093,
- 50.1305
- ],
- [
- 6.13555,
- 50.11899
- ],
- [
- 6.13808,
- 50.10263
- ],
- [
- 6.13108,
- 50.09964
- ],
- [
- 6.13547,
- 50.09119
- ],
- [
- 6.12194,
- 50.09059
- ],
- [
- 6.12634,
- 50.07817
- ],
- [
- 6.13186,
- 50.07348
- ],
- [
- 6.12117,
- 50.064
- ],
- [
- 6.11444,
- 50.06139
- ],
- [
- 6.11563,
- 50.05817
- ],
- [
- 6.12361,
- 50.06323
- ],
- [
- 6.13661,
- 50.04178
- ],
- [
- 6.13034,
- 50.02975
- ],
- [
- 6.14821,
- 50.02307
- ],
- [
- 6.13868,
- 50.01572
- ],
- [
- 6.13594,
- 50.01485
- ],
- [
- 6.13138,
- 50.01905
- ],
- [
- 6.13024,
- 50.01819
- ],
- [
- 6.13934,
- 50.01116
- ],
- [
- 6.1517,
- 50.01058
- ],
- [
- 6.14546,
- 49.99689
- ],
- [
- 6.13966,
- 49.9994
- ],
- [
- 6.13852,
- 49.99829
- ],
- [
- 6.14218,
- 49.99535
- ],
- [
- 6.15023,
- 49.99518
- ],
- [
- 6.15625,
- 49.98867
- ],
- [
- 6.17305,
- 49.98589
- ],
- [
- 6.17348,
- 49.98344
- ],
- [
- 6.17035,
- 49.98376
- ],
- [
- 6.16549,
- 49.97115
- ],
- [
- 6.17151,
- 49.96298
- ],
- [
- 6.1763,
- 49.962
- ],
- [
- 6.17995,
- 49.95386
- ],
- [
- 6.18339,
- 49.9548
- ],
- [
- 6.17983,
- 49.96307
- ],
- [
- 6.18331,
- 49.9686
- ],
- [
- 6.19277,
- 49.97158
- ],
- [
- 6.19978,
- 49.95352
- ],
- [
- 6.20707,
- 49.95672
- ],
- [
- 6.21269,
- 49.9514
- ],
- [
- 6.22502,
- 49.95039
- ],
- [
- 6.22044,
- 49.94369
- ],
- [
- 6.22824,
- 49.93726
- ],
- [
- 6.22635,
- 49.92766
- ],
- [
- 6.21913,
- 49.92354
- ],
- [
- 6.22986,
- 49.92125
- ],
- [
- 6.23603,
- 49.91355
- ],
- [
- 6.23187,
- 49.91064
- ],
- [
- 6.22769,
- 49.91062
- ],
- [
- 6.23229,
- 49.9072
- ],
- [
- 6.23381,
- 49.90028
- ],
- [
- 6.24692,
- 49.89535
- ],
- [
- 6.25781,
- 49.88724
- ],
- [
- 6.26301,
- 49.88101
- ],
- [
- 6.27646,
- 49.87725
- ],
- [
- 6.28113,
- 49.87957
- ],
- [
- 6.29166,
- 49.87548
- ],
- [
- 6.2977,
- 49.86673
- ],
- [
- 6.30989,
- 49.87107
- ],
- [
- 6.31532,
- 49.8673
- ],
- [
- 6.31465,
- 49.86057
- ],
- [
- 6.32361,
- 49.85188
- ],
- [
- 6.32158,
- 49.8409
- ],
- [
- 6.32741,
- 49.83673
- ],
- [
- 6.33656,
- 49.83998
- ],
- [
- 6.33937,
- 49.8507
- ],
- [
- 6.36465,
- 49.85164
- ],
- [
- 6.4022,
- 49.82098
- ],
- [
- 6.42643,
- 49.81629
- ],
- [
- 6.42807,
- 49.81186
- ],
- [
- 6.43097,
- 49.81129
- ],
- [
- 6.44161,
- 49.81547
- ],
- [
- 6.44344,
- 49.81233
- ],
- [
- 6.45366,
- 49.81275
- ],
- [
- 6.46454,
- 49.81975
- ],
- [
- 6.47057,
- 49.82385
- ],
- [
- 6.49681,
- 49.81277
- ],
- [
- 6.50669,
- 49.80993
- ],
- [
- 6.51155,
- 49.80238
- ],
- [
- 6.51485,
- 49.80513
- ],
- [
- 6.5196,
- 49.81446
- ],
- [
- 6.52981,
- 49.81048
- ],
- [
- 6.53225,
- 49.80686
- ],
- [
- 6.53083,
- 49.80116
- ],
- [
- 6.50622,
- 49.78899
- ],
- [
- 6.51917,
- 49.78344
- ],
- [
- 6.51105,
- 49.77422
- ],
- [
- 6.52056,
- 49.76818
- ],
- [
- 6.52052,
- 49.76134
- ],
- [
- 6.50373,
- 49.75086
- ],
- [
- 6.50263,
- 49.73298
- ],
- [
- 6.50727,
- 49.72938
- ],
- [
- 6.51809,
- 49.7242
- ],
- [
- 6.51642,
- 49.72129
- ],
- [
- 6.51176,
- 49.72016
- ],
- [
- 6.50479,
- 49.725
- ],
- [
- 6.49891,
- 49.72639
- ],
- [
- 6.49558,
- 49.72443
- ],
- [
- 6.50712,
- 49.71655
- ],
- [
- 6.50788,
- 49.71215
- ],
- [
- 6.5046,
- 49.71227
- ],
- [
- 6.42714,
- 49.66237
- ],
- [
- 6.4399,
- 49.66025
- ],
- [
- 6.44251,
- 49.65591
- ],
- [
- 6.42178,
- 49.61809
- ],
- [
- 6.39898,
- 49.60094
- ],
- [
- 6.37941,
- 49.59526
- ],
- [
- 6.37551,
- 49.58809
- ],
- [
- 6.38443,
- 49.5801
- ],
- [
- 6.38119,
- 49.57509
- ],
- [
- 6.36909,
- 49.5783
- ],
- [
- 6.35791,
- 49.57166
- ],
- [
- 6.3849,
- 49.55817
- ],
- [
- 6.38009,
- 49.54856
- ],
- [
- 6.35855,
- 49.53296
- ],
- [
- 6.35932,
- 49.52481
- ],
- [
- 6.37076,
- 49.50545
- ],
- [
- 6.37056,
- 49.45732
- ],
- [
- 6.3334,
- 49.46493
- ],
- [
- 6.32189,
- 49.47244
- ],
- [
- 6.29503,
- 49.47928
- ],
- [
- 6.28789,
- 49.48379
- ],
- [
- 6.27191,
- 49.49995
- ],
- [
- 6.24133,
- 49.50693
- ],
- [
- 6.19669,
- 49.50331
- ],
- [
- 6.17337,
- 49.50577
- ],
- [
- 6.16086,
- 49.50085
- ],
- [
- 6.1671,
- 49.49006
- ],
- [
- 6.14018,
- 49.48525
- ],
- [
- 6.12937,
- 49.48803
- ],
- [
- 6.12725,
- 49.47081
- ],
- [
- 6.1014,
- 49.46726
- ],
- [
- 6.10483,
- 49.45076
- ],
- [
- 6.08167,
- 49.45417
- ],
- [
- 6.07722,
- 49.46139
- ],
- [
- 6.05917,
- 49.46306
- ],
- [
- 6.05222,
- 49.46028
- ],
- [
- 6.04421,
- 49.44553
- ],
- [
- 6.02529,
- 49.44703
- ],
- [
- 6.02154,
- 49.45127
- ],
- [
- 6.01574,
- 49.44885
- ],
- [
- 5.99412,
- 49.45301
- ],
- [
- 5.97657,
- 49.44885
- ],
- [
- 5.97773,
- 49.45955
- ],
- [
- 5.97232,
- 49.46087
- ],
- [
- 5.96891,
- 49.48202
- ],
- [
- 5.9616,
- 49.49026
- ],
- [
- 5.91578,
- 49.49835
- ],
- [
- 5.89033,
- 49.4948
- ],
- [
- 5.86332,
- 49.50006
- ],
- [
- 5.84897,
- 49.50826
- ],
- [
- 5.84828,
- 49.51397
- ],
- [
- 5.83641,
- 49.51817
- ],
- [
- 5.83187,
- 49.52639
- ],
- [
- 5.84308,
- 49.53081
- ],
- [
- 5.83562,
- 49.54114
- ],
- [
- 5.81625,
- 49.53325
- ],
- [
- 5.8052,
- 49.54272
- ],
- [
- 5.85943,
- 49.57158
- ],
- [
- 5.86866,
- 49.587
- ],
- [
- 5.86289,
- 49.58525
- ],
- [
- 5.8511,
- 49.58379
- ],
- [
- 5.84712,
- 49.58961
- ],
- [
- 5.84565,
- 49.5981
- ],
- [
- 5.8694,
- 49.6106
- ],
- [
- 5.88182,
- 49.63815
- ],
- [
- 5.89998,
- 49.63907
- ],
- [
- 5.89934,
- 49.66239
- ],
- [
- 5.85656,
- 49.67628
- ],
- [
- 5.85628,
- 49.68211
- ],
- [
- 5.8757,
- 49.71118
- ],
- [
- 5.86481,
- 49.72331
- ],
- [
- 5.84325,
- 49.71822
- ],
- [
- 5.82191,
- 49.72128
- ],
- [
- 5.82489,
- 49.73767
- ],
- [
- 5.82073,
- 49.74878
- ],
- [
- 5.78626,
- 49.79079
- ],
- [
- 5.76517,
- 49.78961
- ],
- [
- 5.75094,
- 49.79094
- ],
- [
- 5.74159,
- 49.82126
- ],
- [
- 5.74581,
- 49.82435
- ],
- [
- 5.7372,
- 49.83353
- ],
- [
- 5.74053,
- 49.84142
- ],
- [
- 5.74701,
- 49.84048
- ],
- [
- 5.74624,
- 49.84783
- ],
- [
- 5.75399,
- 49.84878
- ],
- [
- 5.74066,
- 49.85152
- ],
- [
- 5.75229,
- 49.85922
- ],
- [
- 5.74955,
- 49.87554
- ],
- [
- 5.77567,
- 49.87438
- ],
- [
- 5.77505,
- 49.88057
- ],
- [
- 5.7346,
- 49.89341
- ],
- [
- 5.73303,
- 49.90285
- ],
- [
- 5.75783,
- 49.91737
- ],
- [
- 5.76039,
- 49.93252
- ],
- [
- 5.77073,
- 49.93711
- ],
- [
- 5.76878,
- 49.94239
- ],
- [
- 5.7688,
- 49.96104
- ],
- [
- 5.78672,
- 49.96816
- ],
- [
- 5.80524,
- 49.96677
- ],
- [
- 5.80652,
- 49.97321
- ],
- [
- 5.83129,
- 49.97995
- ],
- [
- 5.83462,
- 49.98656
- ],
- [
- 5.81806,
- 49.99936
- ],
- [
- 5.81561,
- 50.01437
- ],
- [
- 5.84792,
- 50.02809
- ],
- [
- 5.86189,
- 50.04581
- ],
- [
- 5.85087,
- 50.0563
- ],
- [
- 5.85781,
- 50.07186
- ],
- [
- 5.881,
- 50.08069
- ],
- [
- 5.89196,
- 50.12041
- ],
- [
- 5.95286,
- 50.13384
- ],
- [
- 5.96175,
- 50.17631
- ]
- ]
- ],
- "terms_url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts",
- "terms_text": "Administration du Cadastre et de la Topographie",
- "icon": "https://www.geoportail.lu/static/img/lion.png"
- },
- {
- "id": "lu.geoportail.opendata.ortho2016",
- "name": "Ortho 2016 geoportail.lu",
- "type": "tms",
- "template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/ortho_2016/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg",
- "endDate": "2016-08-16T00:00:00.000Z",
- "startDate": "2013-08-30T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- 5.96175,
- 50.17631
- ],
- [
- 6.02627,
- 50.18496
- ],
- [
- 6.03318,
- 50.16395
- ],
- [
- 6.06069,
- 50.15536
- ],
- [
- 6.07668,
- 50.15913
- ],
- [
- 6.07824,
- 50.17255
- ],
- [
- 6.10176,
- 50.17199
- ],
- [
- 6.1225,
- 50.16437
- ],
- [
- 6.1201,
- 50.15594
- ],
- [
- 6.1277,
- 50.14993
- ],
- [
- 6.11323,
- 50.13739
- ],
- [
- 6.12369,
- 50.13719
- ],
- [
- 6.14093,
- 50.1305
- ],
- [
- 6.13555,
- 50.11899
- ],
- [
- 6.13808,
- 50.10263
- ],
- [
- 6.13108,
- 50.09964
- ],
- [
- 6.13547,
- 50.09119
- ],
- [
- 6.12194,
- 50.09059
- ],
- [
- 6.12634,
- 50.07817
- ],
- [
- 6.13186,
- 50.07348
- ],
- [
- 6.12117,
- 50.064
- ],
- [
- 6.11444,
- 50.06139
- ],
- [
- 6.11563,
- 50.05817
- ],
- [
- 6.12361,
- 50.06323
- ],
- [
- 6.13661,
- 50.04178
- ],
- [
- 6.13034,
- 50.02975
- ],
- [
- 6.14821,
- 50.02307
- ],
- [
- 6.13868,
- 50.01572
- ],
- [
- 6.13594,
- 50.01485
- ],
- [
- 6.13138,
- 50.01905
- ],
- [
- 6.13024,
- 50.01819
- ],
- [
- 6.13934,
- 50.01116
- ],
- [
- 6.1517,
- 50.01058
- ],
- [
- 6.14546,
- 49.99689
- ],
- [
- 6.13966,
- 49.9994
- ],
- [
- 6.13852,
- 49.99829
- ],
- [
- 6.14218,
- 49.99535
- ],
- [
- 6.15023,
- 49.99518
- ],
- [
- 6.15625,
- 49.98867
- ],
- [
- 6.17305,
- 49.98589
- ],
- [
- 6.17348,
- 49.98344
- ],
- [
- 6.17035,
- 49.98376
- ],
- [
- 6.16549,
- 49.97115
- ],
- [
- 6.17151,
- 49.96298
- ],
- [
- 6.1763,
- 49.962
- ],
- [
- 6.17995,
- 49.95386
- ],
- [
- 6.18339,
- 49.9548
- ],
- [
- 6.17983,
- 49.96307
- ],
- [
- 6.18331,
- 49.9686
- ],
- [
- 6.19277,
- 49.97158
- ],
- [
- 6.19978,
- 49.95352
- ],
- [
- 6.20707,
- 49.95672
- ],
- [
- 6.21269,
- 49.9514
- ],
- [
- 6.22502,
- 49.95039
- ],
- [
- 6.22044,
- 49.94369
- ],
- [
- 6.22824,
- 49.93726
- ],
- [
- 6.22635,
- 49.92766
- ],
- [
- 6.21913,
- 49.92354
- ],
- [
- 6.22986,
- 49.92125
- ],
- [
- 6.23603,
- 49.91355
- ],
- [
- 6.23187,
- 49.91064
- ],
- [
- 6.22769,
- 49.91062
- ],
- [
- 6.23229,
- 49.9072
- ],
- [
- 6.23381,
- 49.90028
- ],
- [
- 6.24692,
- 49.89535
- ],
- [
- 6.25781,
- 49.88724
- ],
- [
- 6.26301,
- 49.88101
- ],
- [
- 6.27646,
- 49.87725
- ],
- [
- 6.28113,
- 49.87957
- ],
- [
- 6.29166,
- 49.87548
- ],
- [
- 6.2977,
- 49.86673
- ],
- [
- 6.30989,
- 49.87107
- ],
- [
- 6.31532,
- 49.8673
- ],
- [
- 6.31465,
- 49.86057
- ],
- [
- 6.32361,
- 49.85188
- ],
- [
- 6.32158,
- 49.8409
- ],
- [
- 6.32741,
- 49.83673
- ],
- [
- 6.33656,
- 49.83998
- ],
- [
- 6.33937,
- 49.8507
- ],
- [
- 6.36465,
- 49.85164
- ],
- [
- 6.4022,
- 49.82098
- ],
- [
- 6.42643,
- 49.81629
- ],
- [
- 6.42807,
- 49.81186
- ],
- [
- 6.43097,
- 49.81129
- ],
- [
- 6.44161,
- 49.81547
- ],
- [
- 6.44344,
- 49.81233
- ],
- [
- 6.45366,
- 49.81275
- ],
- [
- 6.46454,
- 49.81975
- ],
- [
- 6.47057,
- 49.82385
- ],
- [
- 6.49681,
- 49.81277
- ],
- [
- 6.50669,
- 49.80993
- ],
- [
- 6.51155,
- 49.80238
- ],
- [
- 6.51485,
- 49.80513
- ],
- [
- 6.5196,
- 49.81446
- ],
- [
- 6.52981,
- 49.81048
- ],
- [
- 6.53225,
- 49.80686
- ],
- [
- 6.53083,
- 49.80116
- ],
- [
- 6.50622,
- 49.78899
- ],
- [
- 6.51917,
- 49.78344
- ],
- [
- 6.51105,
- 49.77422
- ],
- [
- 6.52056,
- 49.76818
- ],
- [
- 6.52052,
- 49.76134
- ],
- [
- 6.50373,
- 49.75086
- ],
- [
- 6.50263,
- 49.73298
- ],
- [
- 6.50727,
- 49.72938
- ],
- [
- 6.51809,
- 49.7242
- ],
- [
- 6.51642,
- 49.72129
- ],
- [
- 6.51176,
- 49.72016
- ],
- [
- 6.50479,
- 49.725
- ],
- [
- 6.49891,
- 49.72639
- ],
- [
- 6.49558,
- 49.72443
- ],
- [
- 6.50712,
- 49.71655
- ],
- [
- 6.50788,
- 49.71215
- ],
- [
- 6.5046,
- 49.71227
- ],
- [
- 6.42714,
- 49.66237
- ],
- [
- 6.4399,
- 49.66025
- ],
- [
- 6.44251,
- 49.65591
- ],
- [
- 6.42178,
- 49.61809
- ],
- [
- 6.39898,
- 49.60094
- ],
- [
- 6.37941,
- 49.59526
- ],
- [
- 6.37551,
- 49.58809
- ],
- [
- 6.38443,
- 49.5801
- ],
- [
- 6.38119,
- 49.57509
- ],
- [
- 6.36909,
- 49.5783
- ],
- [
- 6.35791,
- 49.57166
- ],
- [
- 6.3849,
- 49.55817
- ],
- [
- 6.38009,
- 49.54856
- ],
- [
- 6.35855,
- 49.53296
- ],
- [
- 6.35932,
- 49.52481
- ],
- [
- 6.37076,
- 49.50545
- ],
- [
- 6.37056,
- 49.45732
- ],
- [
- 6.3334,
- 49.46493
- ],
- [
- 6.32189,
- 49.47244
- ],
- [
- 6.29503,
- 49.47928
- ],
- [
- 6.28789,
- 49.48379
- ],
- [
- 6.27191,
- 49.49995
- ],
- [
- 6.24133,
- 49.50693
- ],
- [
- 6.19669,
- 49.50331
- ],
- [
- 6.17337,
- 49.50577
- ],
- [
- 6.16086,
- 49.50085
- ],
- [
- 6.1671,
- 49.49006
- ],
- [
- 6.14018,
- 49.48525
- ],
- [
- 6.12937,
- 49.48803
- ],
- [
- 6.12725,
- 49.47081
- ],
- [
- 6.1014,
- 49.46726
- ],
- [
- 6.10483,
- 49.45076
- ],
- [
- 6.08167,
- 49.45417
- ],
- [
- 6.07722,
- 49.46139
- ],
- [
- 6.05917,
- 49.46306
- ],
- [
- 6.05222,
- 49.46028
- ],
- [
- 6.04421,
- 49.44553
- ],
- [
- 6.02529,
- 49.44703
- ],
- [
- 6.02154,
- 49.45127
- ],
- [
- 6.01574,
- 49.44885
- ],
- [
- 5.99412,
- 49.45301
- ],
- [
- 5.97657,
- 49.44885
- ],
- [
- 5.97773,
- 49.45955
- ],
- [
- 5.97232,
- 49.46087
- ],
- [
- 5.96891,
- 49.48202
- ],
- [
- 5.9616,
- 49.49026
- ],
- [
- 5.91578,
- 49.49835
- ],
- [
- 5.89033,
- 49.4948
- ],
- [
- 5.86332,
- 49.50006
- ],
- [
- 5.84897,
- 49.50826
- ],
- [
- 5.84828,
- 49.51397
- ],
- [
- 5.83641,
- 49.51817
- ],
- [
- 5.83187,
- 49.52639
- ],
- [
- 5.84308,
- 49.53081
- ],
- [
- 5.83562,
- 49.54114
- ],
- [
- 5.81625,
- 49.53325
- ],
- [
- 5.8052,
- 49.54272
- ],
- [
- 5.85943,
- 49.57158
- ],
- [
- 5.86866,
- 49.587
- ],
- [
- 5.86289,
- 49.58525
- ],
- [
- 5.8511,
- 49.58379
- ],
- [
- 5.84712,
- 49.58961
- ],
- [
- 5.84565,
- 49.5981
- ],
- [
- 5.8694,
- 49.6106
- ],
- [
- 5.88182,
- 49.63815
- ],
- [
- 5.89998,
- 49.63907
- ],
- [
- 5.89934,
- 49.66239
- ],
- [
- 5.85656,
- 49.67628
- ],
- [
- 5.85628,
- 49.68211
- ],
- [
- 5.8757,
- 49.71118
- ],
- [
- 5.86481,
- 49.72331
- ],
- [
- 5.84325,
- 49.71822
- ],
- [
- 5.82191,
- 49.72128
- ],
- [
- 5.82489,
- 49.73767
- ],
- [
- 5.82073,
- 49.74878
- ],
- [
- 5.78626,
- 49.79079
- ],
- [
- 5.76517,
- 49.78961
- ],
- [
- 5.75094,
- 49.79094
- ],
- [
- 5.74159,
- 49.82126
- ],
- [
- 5.74581,
- 49.82435
- ],
- [
- 5.7372,
- 49.83353
- ],
- [
- 5.74053,
- 49.84142
- ],
- [
- 5.74701,
- 49.84048
- ],
- [
- 5.74624,
- 49.84783
- ],
- [
- 5.75399,
- 49.84878
- ],
- [
- 5.74066,
- 49.85152
- ],
- [
- 5.75229,
- 49.85922
- ],
- [
- 5.74955,
- 49.87554
- ],
- [
- 5.77567,
- 49.87438
- ],
- [
- 5.77505,
- 49.88057
- ],
- [
- 5.7346,
- 49.89341
- ],
- [
- 5.73303,
- 49.90285
- ],
- [
- 5.75783,
- 49.91737
- ],
- [
- 5.76039,
- 49.93252
- ],
- [
- 5.77073,
- 49.93711
- ],
- [
- 5.76878,
- 49.94239
- ],
- [
- 5.7688,
- 49.96104
- ],
- [
- 5.78672,
- 49.96816
- ],
- [
- 5.80524,
- 49.96677
- ],
- [
- 5.80652,
- 49.97321
- ],
- [
- 5.83129,
- 49.97995
- ],
- [
- 5.83462,
- 49.98656
- ],
- [
- 5.81806,
- 49.99936
- ],
- [
- 5.81561,
- 50.01437
- ],
- [
- 5.84792,
- 50.02809
- ],
- [
- 5.86189,
- 50.04581
- ],
- [
- 5.85087,
- 50.0563
- ],
- [
- 5.85781,
- 50.07186
- ],
- [
- 5.881,
- 50.08069
- ],
- [
- 5.89196,
- 50.12041
- ],
- [
- 5.95286,
- 50.13384
- ],
- [
- 5.96175,
- 50.17631
- ]
- ]
- ],
- "terms_url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts",
- "terms_text": "Administration du Cadastre et de la Topographie",
- "icon": "https://www.geoportail.lu/static/img/lion.png"
- },
- {
- "id": "lu.geoportail.opendata.ortho2017",
- "name": "Ortho 2017 geoportail.lu",
- "type": "tms",
- "template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/ortho_2017/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg",
- "endDate": "2017-06-22T00:00:00.000Z",
- "startDate": "2017-06-14T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- 5.96175,
- 50.17631
- ],
- [
- 6.02627,
- 50.18496
- ],
- [
- 6.03318,
- 50.16395
- ],
- [
- 6.06069,
- 50.15536
- ],
- [
- 6.07668,
- 50.15913
- ],
- [
- 6.07824,
- 50.17255
- ],
- [
- 6.10176,
- 50.17199
- ],
- [
- 6.1225,
- 50.16437
- ],
- [
- 6.1201,
- 50.15594
- ],
- [
- 6.1277,
- 50.14993
- ],
- [
- 6.11323,
- 50.13739
- ],
- [
- 6.12369,
- 50.13719
- ],
- [
- 6.14093,
- 50.1305
- ],
- [
- 6.13555,
- 50.11899
- ],
- [
- 6.13808,
- 50.10263
- ],
- [
- 6.13108,
- 50.09964
- ],
- [
- 6.13547,
- 50.09119
- ],
- [
- 6.12194,
- 50.09059
- ],
- [
- 6.12634,
- 50.07817
- ],
- [
- 6.13186,
- 50.07348
- ],
- [
- 6.12117,
- 50.064
- ],
- [
- 6.11444,
- 50.06139
- ],
- [
- 6.11563,
- 50.05817
- ],
- [
- 6.12361,
- 50.06323
- ],
- [
- 6.13661,
- 50.04178
- ],
- [
- 6.13034,
- 50.02975
- ],
- [
- 6.14821,
- 50.02307
- ],
- [
- 6.13868,
- 50.01572
- ],
- [
- 6.13594,
- 50.01485
- ],
- [
- 6.13138,
- 50.01905
- ],
- [
- 6.13024,
- 50.01819
- ],
- [
- 6.13934,
- 50.01116
- ],
- [
- 6.1517,
- 50.01058
- ],
- [
- 6.14546,
- 49.99689
- ],
- [
- 6.13966,
- 49.9994
- ],
- [
- 6.13852,
- 49.99829
- ],
- [
- 6.14218,
- 49.99535
- ],
- [
- 6.15023,
- 49.99518
- ],
- [
- 6.15625,
- 49.98867
- ],
- [
- 6.17305,
- 49.98589
- ],
- [
- 6.17348,
- 49.98344
- ],
- [
- 6.17035,
- 49.98376
- ],
- [
- 6.16549,
- 49.97115
- ],
- [
- 6.17151,
- 49.96298
- ],
- [
- 6.1763,
- 49.962
- ],
- [
- 6.17995,
- 49.95386
- ],
- [
- 6.18339,
- 49.9548
- ],
- [
- 6.17983,
- 49.96307
- ],
- [
- 6.18331,
- 49.9686
- ],
- [
- 6.19277,
- 49.97158
- ],
- [
- 6.19978,
- 49.95352
- ],
- [
- 6.20707,
- 49.95672
- ],
- [
- 6.21269,
- 49.9514
- ],
- [
- 6.22502,
- 49.95039
- ],
- [
- 6.22044,
- 49.94369
- ],
- [
- 6.22824,
- 49.93726
- ],
- [
- 6.22635,
- 49.92766
- ],
- [
- 6.21913,
- 49.92354
- ],
- [
- 6.22986,
- 49.92125
- ],
- [
- 6.23603,
- 49.91355
- ],
- [
- 6.23187,
- 49.91064
- ],
- [
- 6.22769,
- 49.91062
- ],
- [
- 6.23229,
- 49.9072
- ],
- [
- 6.23381,
- 49.90028
- ],
- [
- 6.24692,
- 49.89535
- ],
- [
- 6.25781,
- 49.88724
- ],
- [
- 6.26301,
- 49.88101
- ],
- [
- 6.27646,
- 49.87725
- ],
- [
- 6.28113,
- 49.87957
- ],
- [
- 6.29166,
- 49.87548
- ],
- [
- 6.2977,
- 49.86673
- ],
- [
- 6.30989,
- 49.87107
- ],
- [
- 6.31532,
- 49.8673
- ],
- [
- 6.31465,
- 49.86057
- ],
- [
- 6.32361,
- 49.85188
- ],
- [
- 6.32158,
- 49.8409
- ],
- [
- 6.32741,
- 49.83673
- ],
- [
- 6.33656,
- 49.83998
- ],
- [
- 6.33937,
- 49.8507
- ],
- [
- 6.36465,
- 49.85164
- ],
- [
- 6.4022,
- 49.82098
- ],
- [
- 6.42643,
- 49.81629
- ],
- [
- 6.42807,
- 49.81186
- ],
- [
- 6.43097,
- 49.81129
- ],
- [
- 6.44161,
- 49.81547
- ],
- [
- 6.44344,
- 49.81233
- ],
- [
- 6.45366,
- 49.81275
- ],
- [
- 6.46454,
- 49.81975
- ],
- [
- 6.47057,
- 49.82385
- ],
- [
- 6.49681,
- 49.81277
- ],
- [
- 6.50669,
- 49.80993
- ],
- [
- 6.51155,
- 49.80238
- ],
- [
- 6.51485,
- 49.80513
- ],
- [
- 6.5196,
- 49.81446
- ],
- [
- 6.52981,
- 49.81048
- ],
- [
- 6.53225,
- 49.80686
- ],
- [
- 6.53083,
- 49.80116
- ],
- [
- 6.50622,
- 49.78899
- ],
- [
- 6.51917,
- 49.78344
- ],
- [
- 6.51105,
- 49.77422
- ],
- [
- 6.52056,
- 49.76818
- ],
- [
- 6.52052,
- 49.76134
- ],
- [
- 6.50373,
- 49.75086
- ],
- [
- 6.50263,
- 49.73298
- ],
- [
- 6.50727,
- 49.72938
- ],
- [
- 6.51809,
- 49.7242
- ],
- [
- 6.51642,
- 49.72129
- ],
- [
- 6.51176,
- 49.72016
- ],
- [
- 6.50479,
- 49.725
- ],
- [
- 6.49891,
- 49.72639
- ],
- [
- 6.49558,
- 49.72443
- ],
- [
- 6.50712,
- 49.71655
- ],
- [
- 6.50788,
- 49.71215
- ],
- [
- 6.5046,
- 49.71227
- ],
- [
- 6.42714,
- 49.66237
- ],
- [
- 6.4399,
- 49.66025
- ],
- [
- 6.44251,
- 49.65591
- ],
- [
- 6.42178,
- 49.61809
- ],
- [
- 6.39898,
- 49.60094
- ],
- [
- 6.37941,
- 49.59526
- ],
- [
- 6.37551,
- 49.58809
- ],
- [
- 6.38443,
- 49.5801
- ],
- [
- 6.38119,
- 49.57509
- ],
- [
- 6.36909,
- 49.5783
- ],
- [
- 6.35791,
- 49.57166
- ],
- [
- 6.3849,
- 49.55817
- ],
- [
- 6.38009,
- 49.54856
- ],
- [
- 6.35855,
- 49.53296
- ],
- [
- 6.35932,
- 49.52481
- ],
- [
- 6.37076,
- 49.50545
- ],
- [
- 6.37056,
- 49.45732
- ],
- [
- 6.3334,
- 49.46493
- ],
- [
- 6.32189,
- 49.47244
- ],
- [
- 6.29503,
- 49.47928
- ],
- [
- 6.28789,
- 49.48379
- ],
- [
- 6.27191,
- 49.49995
- ],
- [
- 6.24133,
- 49.50693
- ],
- [
- 6.19669,
- 49.50331
- ],
- [
- 6.17337,
- 49.50577
- ],
- [
- 6.16086,
- 49.50085
- ],
- [
- 6.1671,
- 49.49006
- ],
- [
- 6.14018,
- 49.48525
- ],
- [
- 6.12937,
- 49.48803
- ],
- [
- 6.12725,
- 49.47081
- ],
- [
- 6.1014,
- 49.46726
- ],
- [
- 6.10483,
- 49.45076
- ],
- [
- 6.08167,
- 49.45417
- ],
- [
- 6.07722,
- 49.46139
- ],
- [
- 6.05917,
- 49.46306
- ],
- [
- 6.05222,
- 49.46028
- ],
- [
- 6.04421,
- 49.44553
- ],
- [
- 6.02529,
- 49.44703
- ],
- [
- 6.02154,
- 49.45127
- ],
- [
- 6.01574,
- 49.44885
- ],
- [
- 5.99412,
- 49.45301
- ],
- [
- 5.97657,
- 49.44885
- ],
- [
- 5.97773,
- 49.45955
- ],
- [
- 5.97232,
- 49.46087
- ],
- [
- 5.96891,
- 49.48202
- ],
- [
- 5.9616,
- 49.49026
- ],
- [
- 5.91578,
- 49.49835
- ],
- [
- 5.89033,
- 49.4948
- ],
- [
- 5.86332,
- 49.50006
- ],
- [
- 5.84897,
- 49.50826
- ],
- [
- 5.84828,
- 49.51397
- ],
- [
- 5.83641,
- 49.51817
- ],
- [
- 5.83187,
- 49.52639
- ],
- [
- 5.84308,
- 49.53081
- ],
- [
- 5.83562,
- 49.54114
- ],
- [
- 5.81625,
- 49.53325
- ],
- [
- 5.8052,
- 49.54272
- ],
- [
- 5.85943,
- 49.57158
- ],
- [
- 5.86866,
- 49.587
- ],
- [
- 5.86289,
- 49.58525
- ],
- [
- 5.8511,
- 49.58379
- ],
- [
- 5.84712,
- 49.58961
- ],
- [
- 5.84565,
- 49.5981
- ],
- [
- 5.8694,
- 49.6106
- ],
- [
- 5.88182,
- 49.63815
- ],
- [
- 5.89998,
- 49.63907
- ],
- [
- 5.89934,
- 49.66239
- ],
- [
- 5.85656,
- 49.67628
- ],
- [
- 5.85628,
- 49.68211
- ],
- [
- 5.8757,
- 49.71118
- ],
- [
- 5.86481,
- 49.72331
- ],
- [
- 5.84325,
- 49.71822
- ],
- [
- 5.82191,
- 49.72128
- ],
- [
- 5.82489,
- 49.73767
- ],
- [
- 5.82073,
- 49.74878
- ],
- [
- 5.78626,
- 49.79079
- ],
- [
- 5.76517,
- 49.78961
- ],
- [
- 5.75094,
- 49.79094
- ],
- [
- 5.74159,
- 49.82126
- ],
- [
- 5.74581,
- 49.82435
- ],
- [
- 5.7372,
- 49.83353
- ],
- [
- 5.74053,
- 49.84142
- ],
- [
- 5.74701,
- 49.84048
- ],
- [
- 5.74624,
- 49.84783
- ],
- [
- 5.75399,
- 49.84878
- ],
- [
- 5.74066,
- 49.85152
- ],
- [
- 5.75229,
- 49.85922
- ],
- [
- 5.74955,
- 49.87554
- ],
- [
- 5.77567,
- 49.87438
- ],
- [
- 5.77505,
- 49.88057
- ],
- [
- 5.7346,
- 49.89341
- ],
- [
- 5.73303,
- 49.90285
- ],
- [
- 5.75783,
- 49.91737
- ],
- [
- 5.76039,
- 49.93252
- ],
- [
- 5.77073,
- 49.93711
- ],
- [
- 5.76878,
- 49.94239
- ],
- [
- 5.7688,
- 49.96104
- ],
- [
- 5.78672,
- 49.96816
- ],
- [
- 5.80524,
- 49.96677
- ],
- [
- 5.80652,
- 49.97321
- ],
- [
- 5.83129,
- 49.97995
- ],
- [
- 5.83462,
- 49.98656
- ],
- [
- 5.81806,
- 49.99936
- ],
- [
- 5.81561,
- 50.01437
- ],
- [
- 5.84792,
- 50.02809
- ],
- [
- 5.86189,
- 50.04581
- ],
- [
- 5.85087,
- 50.0563
- ],
- [
- 5.85781,
- 50.07186
- ],
- [
- 5.881,
- 50.08069
- ],
- [
- 5.89196,
- 50.12041
- ],
- [
- 5.95286,
- 50.13384
- ],
- [
- 5.96175,
- 50.17631
- ]
- ]
- ],
- "terms_url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts",
- "terms_text": "Administration du Cadastre et de la Topographie",
- "icon": "https://www.geoportail.lu/static/img/lion.png"
- },
- {
- "id": "OS-historic-25k-OSM_Limited",
- "name": "OS 1:25k historic (OSM)",
- "type": "tms",
- "template": "https://ooc.openstreetmap.org/os1/{zoom}/{x}/{y}.jpg",
- "scaleExtent": [
- 6,
- 17
- ],
- "polygon": [
- [
- [
- -6.45854,
- 49.90441
- ],
- [
- -6.3872,
- 49.98411
- ],
- [
- -6.22968,
- 49.98962
- ],
- [
- -6.21713,
- 49.86801
- ],
- [
- -6.45512,
- 49.85918
- ],
- [
- -6.45854,
- 49.90441
- ]
- ],
- [
- [
- -1.44951,
- 60.86341
- ],
- [
- -0.71671,
- 60.85451
- ],
- [
- -0.73497,
- 60.43598
- ],
- [
- -0.69388,
- 60.41682
- ],
- [
- -0.72584,
- 60.39427
- ],
- [
- -0.73954,
- 60.04847
- ],
- [
- -0.92674,
- 60.04619
- ],
- [
- -0.93815,
- 59.82662
- ],
- [
- -1.45865,
- 59.8312
- ],
- [
- -1.44552,
- 60.0536
- ],
- [
- -1.46321,
- 60.0536
- ],
- [
- -1.46435,
- 60.063
- ],
- [
- -1.57165,
- 60.06385
- ],
- [
- -1.56936,
- 60.179
- ],
- [
- -1.64356,
- 60.1807
- ],
- [
- -1.64356,
- 60.18922
- ],
- [
- -1.82162,
- 60.1895
- ],
- [
- -1.82048,
- 60.36155
- ],
- [
- -1.8416,
- 60.36973
- ],
- [
- -1.82162,
- 60.38328
- ],
- [
- -1.81799,
- 60.59343
- ],
- [
- -1.45317,
- 60.59343
- ],
- [
- -1.44951,
- 60.86341
- ]
- ],
- [
- [
- -4.90892,
- 54.42421
- ],
- [
- -4.2826,
- 54.44299
- ],
- [
- -4.25354,
- 54.02977
- ],
- [
- -4.87664,
- 54.02218
- ],
- [
- -4.90892,
- 54.42421
- ]
- ],
- [
- [
- -5.86674,
- 59.14446
- ],
- [
- -5.776,
- 59.14709
- ],
- [
- -5.772,
- 59.10141
- ],
- [
- -5.86218,
- 59.09906
- ],
- [
- -5.86674,
- 59.14446
- ]
- ],
- [
- [
- -1.70659,
- 59.57036
- ],
- [
- -1.55792,
- 59.56935
- ],
- [
- -1.55649,
- 59.49657
- ],
- [
- -1.70545,
- 59.49758
- ],
- [
- -1.70659,
- 59.57036
- ]
- ],
- [
- [
- -7.68658,
- 58.2941
- ],
- [
- -7.53306,
- 58.3007
- ],
- [
- -7.52564,
- 58.26469
- ],
- [
- -7.67973,
- 58.25779
- ],
- [
- -7.68658,
- 58.2941
- ]
- ],
- [
- [
- -4.53383,
- 59.03599
- ],
- [
- -4.48132,
- 59.03716
- ],
- [
- -4.47961,
- 59.01866
- ],
- [
- -4.53326,
- 59.01807
- ],
- [
- -4.53383,
- 59.03599
- ]
- ],
- [
- [
- -8.67107,
- 57.87699
- ],
- [
- -8.46732,
- 57.88973
- ],
- [
- -8.44678,
- 57.7907
- ],
- [
- -8.65109,
- 57.77792
- ],
- [
- -8.67107,
- 57.87699
- ]
- ],
- [
- [
- -5.23955,
- 50.35306
- ],
- [
- -5.79201,
- 50.33849
- ],
- [
- -5.76005,
- 49.9317
- ],
- [
- -4.65514,
- 49.95815
- ],
- [
- -4.67797,
- 50.28601
- ],
- [
- -4.24422,
- 50.28017
- ],
- [
- -4.24878,
- 50.20425
- ],
- [
- -3.38129,
- 50.20425
- ],
- [
- -3.42238,
- 50.51882
- ],
- [
- -3.11648,
- 50.52463
- ],
- [
- -3.12105,
- 50.65796
- ],
- [
- -2.67364,
- 50.66195
- ],
- [
- -2.59535,
- 50.63943
- ],
- [
- -2.5905,
- 50.57284
- ],
- [
- -2.47912,
- 50.57335
- ],
- [
- -2.47589,
- 50.50667
- ],
- [
- -2.39679,
- 50.50564
- ],
- [
- -2.40164,
- 50.57233
- ],
- [
- -1.04003,
- 50.57182
- ],
- [
- -1.03357,
- 50.70593
- ],
- [
- -0.5493,
- 50.70388
- ],
- [
- -0.54607,
- 50.78866
- ],
- [
- -0.09247,
- 50.7856
- ],
- [
- -0.08763,
- 50.71819
- ],
- [
- 0.47897,
- 50.71206
- ],
- [
- 0.48704,
- 50.81825
- ],
- [
- 0.97615,
- 50.80499
- ],
- [
- 0.99229,
- 51.01263
- ],
- [
- 1.44912,
- 51.00044
- ],
- [
- 1.47818,
- 51.40904
- ],
- [
- 1.02296,
- 51.42716
- ],
- [
- 1.03588,
- 51.76409
- ],
- [
- 1.61054,
- 51.7501
- ],
- [
- 1.64606,
- 52.156
- ],
- [
- 1.72677,
- 52.15402
- ],
- [
- 1.74937,
- 52.44818
- ],
- [
- 1.78707,
- 52.48116
- ],
- [
- 1.7591,
- 52.52251
- ],
- [
- 1.79335,
- 52.96027
- ],
- [
- 0.37981,
- 52.99585
- ],
- [
- 0.38952,
- 53.25112
- ],
- [
- 0.34786,
- 53.25112
- ],
- [
- 0.32389,
- 53.28219
- ],
- [
- 0.34615,
- 53.65385
- ],
- [
- 0.12849,
- 53.65755
- ],
- [
- 0.11658,
- 53.66747
- ],
- [
- 0.13506,
- 54.06557
- ],
- [
- -0.06098,
- 54.06591
- ],
- [
- -0.04142,
- 54.47094
- ],
- [
- -0.56627,
- 54.47718
- ],
- [
- -0.55921,
- 54.65651
- ],
- [
- -1.16656,
- 54.66235
- ],
- [
- -1.16374,
- 54.84261
- ],
- [
- -1.33162,
- 54.84391
- ],
- [
- -1.32571,
- 55.24708
- ],
- [
- -1.52945,
- 55.24871
- ],
- [
- -1.52418,
- 55.65401
- ],
- [
- -1.76388,
- 55.65401
- ],
- [
- -1.77337,
- 55.97191
- ],
- [
- -2.16079,
- 55.9683
- ],
- [
- -2.15433,
- 56.06214
- ],
- [
- -2.45781,
- 56.05853
- ],
- [
- -2.41906,
- 56.64172
- ],
- [
- -2.09622,
- 56.64172
- ],
- [
- -2.0833,
- 57.00213
- ],
- [
- -1.92834,
- 57.01268
- ],
- [
- -1.9181,
- 57.35909
- ],
- [
- -1.75022,
- 57.36257
- ],
- [
- -1.76959,
- 57.76086
- ],
- [
- -3.69376,
- 57.75742
- ],
- [
- -3.70667,
- 57.98064
- ],
- [
- -3.5969,
- 57.97721
- ],
- [
- -3.60336,
- 58.12073
- ],
- [
- -3.02223,
- 58.13096
- ],
- [
- -3.02869,
- 58.54108
- ],
- [
- -2.8479,
- 58.53097
- ],
- [
- -2.86081,
- 58.84305
- ],
- [
- -2.67962,
- 58.8415
- ],
- [
- -2.68419,
- 58.88517
- ],
- [
- -2.63397,
- 58.90522
- ],
- [
- -2.67962,
- 58.93351
- ],
- [
- -2.68876,
- 59.02292
- ],
- [
- -2.36687,
- 59.02292
- ],
- [
- -2.37029,
- 59.26529
- ],
- [
- -2.3429,
- 59.2822
- ],
- [
- -2.37144,
- 59.29969
- ],
- [
- -2.37372,
- 59.37071
- ],
- [
- -2.3429,
- 59.38582
- ],
- [
- -2.37258,
- 59.40035
- ],
- [
- -2.37144,
- 59.42591
- ],
- [
- -3.07342,
- 59.42301
- ],
- [
- -3.07114,
- 59.34336
- ],
- [
- -3.1031,
- 59.33114
- ],
- [
- -3.07456,
- 59.31367
- ],
- [
- -3.07228,
- 59.2326
- ],
- [
- -3.38503,
- 59.14842
- ],
- [
- -3.37476,
- 58.93528
- ],
- [
- -3.56538,
- 58.93233
- ],
- [
- -3.55483,
- 58.69759
- ],
- [
- -5.28086,
- 58.66677
- ],
- [
- -5.25342,
- 58.35141
- ],
- [
- -5.50685,
- 58.34379
- ],
- [
- -5.47618,
- 58.03236
- ],
- [
- -5.8975,
- 58.02124
- ],
- [
- -5.8523,
- 57.61718
- ],
- [
- -6.13963,
- 57.61372
- ],
- [
- -6.15416,
- 57.74232
- ],
- [
- -6.29137,
- 57.73801
- ],
- [
- -6.33657,
- 58.13988
- ],
- [
- -6.11219,
- 58.14669
- ],
- [
- -6.14738,
- 58.51063
- ],
- [
- -6.29348,
- 58.54162
- ],
- [
- -6.84137,
- 58.29773
- ],
- [
- -7.00574,
- 58.29293
- ],
- [
- -7.10162,
- 58.20644
- ],
- [
- -7.25731,
- 58.17931
- ],
- [
- -7.25311,
- 58.10049
- ],
- [
- -7.40707,
- 58.09056
- ],
- [
- -7.39135,
- 57.79114
- ],
- [
- -7.79099,
- 57.77332
- ],
- [
- -7.76242,
- 57.54442
- ],
- [
- -7.6985,
- 57.14532
- ],
- [
- -7.79438,
- 57.13045
- ],
- [
- -7.71676,
- 56.73686
- ],
- [
- -7.01221,
- 56.76544
- ],
- [
- -6.97992,
- 56.54539
- ],
- [
- -7.06386,
- 56.54539
- ],
- [
- -7.04449,
- 56.35626
- ],
- [
- -6.50068,
- 56.38129
- ],
- [
- -6.44914,
- 55.97936
- ],
- [
- -6.56329,
- 55.96915
- ],
- [
- -6.53937,
- 55.70301
- ],
- [
- -6.55955,
- 55.69073
- ],
- [
- -6.53453,
- 55.67617
- ],
- [
- -6.52162,
- 55.57044
- ],
- [
- -5.89126,
- 55.59234
- ],
- [
- -5.85601,
- 55.23207
- ],
- [
- -5.22936,
- 55.2516
- ],
- [
- -5.18371,
- 54.62541
- ],
- [
- -3.6656,
- 54.65184
- ],
- [
- -3.64962,
- 54.432
- ],
- [
- -3.54004,
- 54.43067
- ],
- [
- -3.53091,
- 54.02902
- ],
- [
- -3.06977,
- 54.03036
- ],
- [
- -3.06757,
- 53.82214
- ],
- [
- -3.08049,
- 53.77399
- ],
- [
- -3.06192,
- 53.74775
- ],
- [
- -3.06112,
- 53.6737
- ],
- [
- -3.21447,
- 53.67084
- ],
- [
- -3.20577,
- 53.42262
- ],
- [
- -3.27996,
- 53.35522
- ],
- [
- -3.28967,
- 53.36084
- ],
- [
- -3.33275,
- 53.36493
- ],
- [
- -3.37613,
- 53.35403
- ],
- [
- -4.0889,
- 53.34331
- ],
- [
- -4.09455,
- 53.4612
- ],
- [
- -4.69741,
- 53.44486
- ],
- [
- -4.68828,
- 53.33186
- ],
- [
- -4.72024,
- 53.28958
- ],
- [
- -4.68371,
- 53.24862
- ],
- [
- -4.67687,
- 53.15426
- ],
- [
- -4.84808,
- 53.14468
- ],
- [
- -4.81783,
- 52.74403
- ],
- [
- -4.25458,
- 52.75589
- ],
- [
- -4.22888,
- 52.25488
- ],
- [
- -4.26076,
- 52.25364
- ],
- [
- -4.27246,
- 52.24326
- ],
- [
- -4.81363,
- 52.23009
- ],
- [
- -4.80792,
- 52.11389
- ],
- [
- -5.38891,
- 52.09917
- ],
- [
- -5.37179,
- 51.91297
- ],
- [
- -5.42087,
- 51.91015
- ],
- [
- -5.41402,
- 51.84532
- ],
- [
- -5.36836,
- 51.84744
- ],
- [
- -5.34668,
- 51.55953
- ],
- [
- -4.77368,
- 51.57585
- ],
- [
- -4.76569,
- 51.48851
- ],
- [
- -4.19154,
- 51.49704
- ],
- [
- -4.18698,
- 51.43447
- ],
- [
- -3.61512,
- 51.44443
- ],
- [
- -3.61055,
- 51.37465
- ],
- [
- -3.14941,
- 51.37893
- ],
- [
- -3.14941,
- 51.29193
- ],
- [
- -4.30387,
- 51.27459
- ],
- [
- -4.28612,
- 51.05087
- ],
- [
- -4.85433,
- 51.03666
- ],
- [
- -4.83722,
- 50.72128
- ],
- [
- -5.26183,
- 50.70827
- ],
- [
- -5.23955,
- 50.35306
- ]
- ],
- [
- [
- -2.15027,
- 60.17132
- ],
- [
- -2.00302,
- 60.16961
- ],
- [
- -2.00131,
- 60.0997
- ],
- [
- -2.14855,
- 60.10112
- ],
- [
- -2.15027,
- 60.17132
- ]
- ],
- [
- [
- -6.2086,
- 59.11635
- ],
- [
- -6.12299,
- 59.11664
- ],
- [
- -6.12185,
- 59.0715
- ],
- [
- -6.20974,
- 59.0715
- ],
- [
- -6.2086,
- 59.11635
- ]
- ],
- [
- [
- -4.41596,
- 59.0889
- ],
- [
- -4.4212,
- 59.07708
- ],
- [
- -4.39719,
- 59.07791
- ],
- [
- -4.39134,
- 59.08973
- ],
- [
- -4.41596,
- 59.0889
- ]
- ]
- ]
- },
- {
- "id": "OS-New_Popular_Edition-historic",
- "name": "OS New Popular Edition historic",
- "type": "tms",
- "template": "https://ooc.openstreetmap.org/npe/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 6,
- 22
- ],
- "polygon": [
- [
- [
- -3.68466,
- 55.23744
- ],
- [
- -3.65106,
- 54.42892
- ],
- [
- -3.54463,
- 54.43072
- ],
- [
- -3.52815,
- 54.02593
- ],
- [
- -3.07016,
- 54.03137
- ],
- [
- -3.06123,
- 53.6717
- ],
- [
- -3.21298,
- 53.67048
- ],
- [
- -3.20371,
- 53.35568
- ],
- [
- -4.10424,
- 53.34297
- ],
- [
- -4.11042,
- 53.46005
- ],
- [
- -4.71124,
- 53.44799
- ],
- [
- -4.69339,
- 53.15171
- ],
- [
- -4.84307,
- 53.1476
- ],
- [
- -4.81595,
- 52.74378
- ],
- [
- -4.25342,
- 52.75541
- ],
- [
- -4.22733,
- 52.24378
- ],
- [
- -4.81303,
- 52.23117
- ],
- [
- -4.80754,
- 52.11452
- ],
- [
- -5.38913,
- 52.09892
- ],
- [
- -5.3493,
- 51.56085
- ],
- [
- -4.77252,
- 51.57622
- ],
- [
- -4.76772,
- 51.48652
- ],
- [
- -4.19299,
- 51.49806
- ],
- [
- -4.18956,
- 51.43518
- ],
- [
- -3.61278,
- 51.44502
- ],
- [
- -3.61072,
- 51.37307
- ],
- [
- -3.15067,
- 51.37864
- ],
- [
- -3.14723,
- 51.28984
- ],
- [
- -4.29462,
- 51.2718
- ],
- [
- -4.28363,
- 51.04744
- ],
- [
- -4.85423,
- 51.03406
- ],
- [
- -4.83707,
- 50.76556
- ],
- [
- -5.2621,
- 50.75427
- ],
- [
- -5.23395,
- 50.34984
- ],
- [
- -5.79562,
- 50.33319
- ],
- [
- -5.76228,
- 49.92913
- ],
- [
- -4.64717,
- 49.96094
- ],
- [
- -4.66914,
- 50.2753
- ],
- [
- -4.25166,
- 50.2832
- ],
- [
- -4.24617,
- 50.19361
- ],
- [
- -3.40159,
- 50.20679
- ],
- [
- -3.41395,
- 50.52041
- ],
- [
- -3.13105,
- 50.52391
- ],
- [
- -3.1338,
- 50.66078
- ],
- [
- -2.66963,
- 50.66252
- ],
- [
- -2.66688,
- 50.5719
- ],
- [
- -1.04228,
- 50.56929
- ],
- [
- -1.04502,
- 50.70429
- ],
- [
- -0.54652,
- 50.69994
- ],
- [
- -0.54103,
- 50.79031
- ],
- [
- -0.08784,
- 50.78424
- ],
- [
- -0.08887,
- 50.72211
- ],
- [
- 0.47693,
- 50.70907
- ],
- [
- 0.48242,
- 50.81939
- ],
- [
- 0.98024,
- 50.8068
- ],
- [
- 0.99328,
- 51.01333
- ],
- [
- 1.44784,
- 51.00036
- ],
- [
- 1.47805,
- 51.40478
- ],
- [
- 1.018,
- 51.41634
- ],
- [
- 1.04272,
- 51.76742
- ],
- [
- 1.6195,
- 51.75084
- ],
- [
- 1.65246,
- 52.15456
- ],
- [
- 1.72662,
- 52.15245
- ],
- [
- 1.79529,
- 52.9594
- ],
- [
- 0.60396,
- 52.99123
- ],
- [
- 0.60327,
- 52.97222
- ],
- [
- 0.38148,
- 52.97883
- ],
- [
- 0.39625,
- 53.24796
- ],
- [
- 0.31934,
- 53.24961
- ],
- [
- 0.34269,
- 53.65319
- ],
- [
- 0.11609,
- 53.65726
- ],
- [
- 0.13738,
- 54.06181
- ],
- [
- -0.06243,
- 54.06584
- ],
- [
- -0.04183,
- 54.46924
- ],
- [
- -0.56781,
- 54.47722
- ],
- [
- -0.56163,
- 54.65715
- ],
- [
- -1.18098,
- 54.66271
- ],
- [
- -1.17755,
- 54.84183
- ],
- [
- -1.33342,
- 54.84381
- ],
- [
- -1.32655,
- 55.24743
- ],
- [
- -1.53117,
- 55.24821
- ],
- [
- -1.52636,
- 55.6528
- ],
- [
- -1.76394,
- 55.6528
- ],
- [
- -1.76257,
- 55.96765
- ],
- [
- -2.40321,
- 55.96727
- ],
- [
- -2.39772,
- 55.56243
- ],
- [
- -2.16151,
- 55.56282
- ],
- [
- -2.15808,
- 55.2486
- ],
- [
- -2.92158,
- 55.24571
- ],
- [
- -3.68466,
- 55.23744
- ]
- ]
- ]
- },
- {
- "id": "OS-OpenData_Locator",
- "name": "OS OpenData Locator",
- "type": "tms",
- "template": "http://tiles.itoworld.com/os_locator/{zoom}/{x}/{y}.png",
- "polygon": [
- [
- [
- -0.88639,
- 61.11666
- ],
- [
- -9.24009,
- 57.92465
- ],
- [
- -6.61235,
- 55.46835
- ],
- [
- -6.1039,
- 55.40191
- ],
- [
- -5.61358,
- 55.06607
- ],
- [
- -5.40088,
- 54.90562
- ],
- [
- -5.29371,
- 54.77201
- ],
- [
- -5.11832,
- 54.5911
- ],
- [
- -4.92368,
- 54.38599
- ],
- [
- -4.94067,
- 53.59884
- ],
- [
- -5.44172,
- 52.27725
- ],
- [
- -6.03376,
- 51.6012
- ],
- [
- -7.54473,
- 49.33762
- ],
- [
- -2.59721,
- 50.2588
- ],
- [
- 0.65674,
- 50.64047
- ],
- [
- 1.32419,
- 50.83256
- ],
- [
- 1.87586,
- 51.19234
- ],
- [
- 2.05883,
- 52.88863
- ],
- [
- -1.61452,
- 56.47933
- ],
- [
- -1.21085,
- 57.64972
- ],
- [
- -1.69525,
- 59.08903
- ],
- [
- 0.21543,
- 60.43058
- ],
- [
- -0.88639,
- 61.11666
- ]
- ]
- ],
- "overlay": true
- },
- {
- "id": "OS-OpenData_StreetView",
- "name": "OS OpenData StreetView",
- "type": "tms",
- "template": "https://{switch:a,b,c}.os.openstreetmap.org/sv/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 1,
- 18
- ],
- "polygon": [
- [
- [
- -5.82929,
- 50.02297
- ],
- [
- -5.82929,
- 50.25482
- ],
- [
- -5.37336,
- 50.25482
- ],
- [
- -5.37336,
- 50.35306
- ],
- [
- -5.1756,
- 50.35306
- ],
- [
- -5.1756,
- 50.59254
- ],
- [
- -4.99707,
- 50.59254
- ],
- [
- -4.99707,
- 50.69356
- ],
- [
- -4.79657,
- 50.69356
- ],
- [
- -4.79657,
- 50.78221
- ],
- [
- -4.69495,
- 50.78221
- ],
- [
- -4.69495,
- 50.96074
- ],
- [
- -4.60431,
- 50.96074
- ],
- [
- -4.60431,
- 51.06921
- ],
- [
- -4.37922,
- 51.06921
- ],
- [
- -4.37922,
- 51.25218
- ],
- [
- -3.90393,
- 51.25218
- ],
- [
- -3.90393,
- 51.2917
- ],
- [
- -3.71717,
- 51.2917
- ],
- [
- -3.71717,
- 51.2453
- ],
- [
- -3.14862,
- 51.2453
- ],
- [
- -3.14862,
- 51.36207
- ],
- [
- -3.74463,
- 51.36207
- ],
- [
- -3.74463,
- 51.43404
- ],
- [
- -3.82978,
- 51.43404
- ],
- [
- -3.82978,
- 51.52982
- ],
- [
- -4.08521,
- 51.52982
- ],
- [
- -4.08521,
- 51.49393
- ],
- [
- -4.37922,
- 51.49393
- ],
- [
- -4.37922,
- 51.54272
- ],
- [
- -5.14442,
- 51.54272
- ],
- [
- -5.14442,
- 51.6296
- ],
- [
- -5.73871,
- 51.6296
- ],
- [
- -5.73871,
- 51.77404
- ],
- [
- -5.50954,
- 51.77404
- ],
- [
- -5.50954,
- 51.98026
- ],
- [
- -5.1988,
- 51.98026
- ],
- [
- -5.1988,
- 52.09734
- ],
- [
- -4.88806,
- 52.09734
- ],
- [
- -4.88806,
- 52.18316
- ],
- [
- -4.49575,
- 52.18316
- ],
- [
- -4.49575,
- 52.29257
- ],
- [
- -4.30154,
- 52.29257
- ],
- [
- -4.30154,
- 52.36853
- ],
- [
- -4.18112,
- 52.36853
- ],
- [
- -4.18112,
- 52.79337
- ],
- [
- -4.44137,
- 52.79337
- ],
- [
- -4.44137,
- 52.73696
- ],
- [
- -4.85698,
- 52.73696
- ],
- [
- -4.85698,
- 52.93173
- ],
- [
- -4.7288,
- 52.93173
- ],
- [
- -4.7288,
- 53.50386
- ],
- [
- -4.15782,
- 53.50386
- ],
- [
- -4.15782,
- 53.41135
- ],
- [
- -3.31105,
- 53.41135
- ],
- [
- -3.31105,
- 53.50386
- ],
- [
- -3.23337,
- 53.50386
- ],
- [
- -3.23337,
- 54.01592
- ],
- [
- -3.39262,
- 54.01592
- ],
- [
- -3.39262,
- 54.1981
- ],
- [
- -3.55964,
- 54.1981
- ],
- [
- -3.55964,
- 54.43373
- ],
- [
- -3.7189,
- 54.43373
- ],
- [
- -3.7189,
- 54.7219
- ],
- [
- -4.30154,
- 54.7219
- ],
- [
- -4.30154,
- 54.61407
- ],
- [
- -5.04731,
- 54.61407
- ],
- [
- -5.04731,
- 54.75329
- ],
- [
- -5.22987,
- 54.75329
- ],
- [
- -5.22987,
- 55.21908
- ],
- [
- -5.65326,
- 55.21908
- ],
- [
- -5.65326,
- 55.25009
- ],
- [
- -5.89796,
- 55.25009
- ],
- [
- -5.89796,
- 55.48225
- ],
- [
- -6.59332,
- 55.48225
- ],
- [
- -6.59332,
- 56.30134
- ],
- [
- -7.17277,
- 56.30134
- ],
- [
- -7.17277,
- 56.56018
- ],
- [
- -6.81717,
- 56.56018
- ],
- [
- -6.81717,
- 56.69917
- ],
- [
- -6.53153,
- 56.69917
- ],
- [
- -6.53153,
- 56.9067
- ],
- [
- -6.81168,
- 56.9067
- ],
- [
- -6.81168,
- 57.37166
- ],
- [
- -6.8721,
- 57.37166
- ],
- [
- -6.8721,
- 57.55189
- ],
- [
- -7.09732,
- 57.55189
- ],
- [
- -7.09732,
- 57.24111
- ],
- [
- -7.17423,
- 57.24111
- ],
- [
- -7.17423,
- 56.9067
- ],
- [
- -7.37198,
- 56.9067
- ],
- [
- -7.37198,
- 56.80759
- ],
- [
- -7.5203,
- 56.80759
- ],
- [
- -7.5203,
- 56.71425
- ],
- [
- -7.83068,
- 56.71425
- ],
- [
- -7.83068,
- 56.89946
- ],
- [
- -7.64941,
- 56.89946
- ],
- [
- -7.64941,
- 57.47396
- ],
- [
- -7.83068,
- 57.47396
- ],
- [
- -7.83068,
- 57.79156
- ],
- [
- -7.47362,
- 57.79156
- ],
- [
- -7.47362,
- 58.08606
- ],
- [
- -7.18798,
- 58.08606
- ],
- [
- -7.18798,
- 58.3672
- ],
- [
- -6.80346,
- 58.3672
- ],
- [
- -6.80346,
- 58.41558
- ],
- [
- -6.63866,
- 58.41558
- ],
- [
- -6.63866,
- 58.46733
- ],
- [
- -6.51781,
- 58.46733
- ],
- [
- -6.51781,
- 58.56256
- ],
- [
- -6.05362,
- 58.56256
- ],
- [
- -6.05362,
- 58.15688
- ],
- [
- -6.14701,
- 58.15688
- ],
- [
- -6.14701,
- 58.11059
- ],
- [
- -6.27998,
- 58.11059
- ],
- [
- -6.27998,
- 57.71227
- ],
- [
- -6.15913,
- 57.71227
- ],
- [
- -6.15913,
- 57.66676
- ],
- [
- -5.93391,
- 57.66676
- ],
- [
- -5.93391,
- 57.88925
- ],
- [
- -5.80643,
- 57.88925
- ],
- [
- -5.80643,
- 57.96218
- ],
- [
- -5.61417,
- 57.96218
- ],
- [
- -5.61417,
- 58.09112
- ],
- [
- -5.49082,
- 58.09112
- ],
- [
- -5.49082,
- 58.37333
- ],
- [
- -5.31991,
- 58.37333
- ],
- [
- -5.31991,
- 58.75015
- ],
- [
- -3.572,
- 58.75015
- ],
- [
- -3.572,
- 59.20918
- ],
- [
- -3.19445,
- 59.20918
- ],
- [
- -3.19445,
- 59.47592
- ],
- [
- -2.24358,
- 59.47592
- ],
- [
- -2.24358,
- 59.13887
- ],
- [
- -2.4611,
- 59.13887
- ],
- [
- -2.4611,
- 58.81859
- ],
- [
- -2.74077,
- 58.81859
- ],
- [
- -2.74077,
- 58.58047
- ],
- [
- -2.91167,
- 58.58047
- ],
- [
- -2.91167,
- 58.11575
- ],
- [
- -3.48654,
- 58.11575
- ],
- [
- -3.48654,
- 57.74039
- ],
- [
- -1.71532,
- 57.74039
- ],
- [
- -1.71532,
- 57.22256
- ],
- [
- -1.97945,
- 57.22256
- ],
- [
- -1.97945,
- 56.87607
- ],
- [
- -2.1659,
- 56.87607
- ],
- [
- -2.1659,
- 56.63332
- ],
- [
- -2.36011,
- 56.63332
- ],
- [
- -2.36011,
- 56.04775
- ],
- [
- -1.97945,
- 56.04775
- ],
- [
- -1.97945,
- 55.86509
- ],
- [
- -1.4745,
- 55.86509
- ],
- [
- -1.4745,
- 55.24999
- ],
- [
- -1.3222,
- 55.24999
- ],
- [
- -1.3222,
- 54.82217
- ],
- [
- -1.055,
- 54.82217
- ],
- [
- -1.055,
- 54.67466
- ],
- [
- -0.66188,
- 54.67466
- ],
- [
- -0.66188,
- 54.55275
- ],
- [
- -0.32476,
- 54.55275
- ],
- [
- -0.32476,
- 54.28652
- ],
- [
- 0.00928,
- 54.28652
- ],
- [
- 0.00928,
- 53.79385
- ],
- [
- 0.2082,
- 53.79385
- ],
- [
- 0.2082,
- 53.52177
- ],
- [
- 0.41635,
- 53.52177
- ],
- [
- 0.41635,
- 53.02989
- ],
- [
- 1.42734,
- 53.02989
- ],
- [
- 1.42734,
- 52.92021
- ],
- [
- 1.83339,
- 52.92021
- ],
- [
- 1.83339,
- 52.04249
- ],
- [
- 1.52355,
- 52.04249
- ],
- [
- 1.52355,
- 51.82613
- ],
- [
- 1.2697,
- 51.82613
- ],
- [
- 1.2697,
- 51.69675
- ],
- [
- 1.11665,
- 51.69675
- ],
- [
- 1.11665,
- 51.44035
- ],
- [
- 1.52355,
- 51.44035
- ],
- [
- 1.52355,
- 51.33318
- ],
- [
- 1.45076,
- 51.33318
- ],
- [
- 1.45076,
- 51.02076
- ],
- [
- 1.06999,
- 51.02076
- ],
- [
- 1.06999,
- 50.90084
- ],
- [
- 0.77881,
- 50.90084
- ],
- [
- 0.77881,
- 50.72984
- ],
- [
- -0.7256,
- 50.72984
- ],
- [
- -0.7256,
- 50.70384
- ],
- [
- -1.00744,
- 50.70384
- ],
- [
- -1.00744,
- 50.57363
- ],
- [
- -2.36253,
- 50.57363
- ],
- [
- -2.36253,
- 50.48464
- ],
- [
- -2.49878,
- 50.48464
- ],
- [
- -2.49878,
- 50.57363
- ],
- [
- -3.40964,
- 50.57363
- ],
- [
- -3.40964,
- 50.20578
- ],
- [
- -3.69224,
- 50.20578
- ],
- [
- -3.69224,
- 50.13477
- ],
- [
- -5.00547,
- 50.13477
- ],
- [
- -5.00547,
- 49.94745
- ],
- [
- -5.28395,
- 49.94745
- ],
- [
- -5.28395,
- 50.02297
- ],
- [
- -5.82929,
- 50.02297
- ]
- ],
- [
- [
- -6.45807,
- 49.86736
- ],
- [
- -6.45807,
- 49.94999
- ],
- [
- -6.39788,
- 49.94999
- ],
- [
- -6.39788,
- 50.00538
- ],
- [
- -6.17996,
- 50.00538
- ],
- [
- -6.17996,
- 49.91686
- ],
- [
- -6.25402,
- 49.91686
- ],
- [
- -6.25402,
- 49.86736
- ],
- [
- -6.45807,
- 49.86736
- ]
- ],
- [
- [
- -5.83432,
- 49.93216
- ],
- [
- -5.83432,
- 49.97546
- ],
- [
- -5.76833,
- 49.97546
- ],
- [
- -5.76833,
- 49.93216
- ],
- [
- -5.83432,
- 49.93216
- ]
- ],
- [
- [
- -1.94838,
- 60.68857
- ],
- [
- -1.94838,
- 60.30588
- ],
- [
- -1.75431,
- 60.30588
- ],
- [
- -1.75431,
- 60.12844
- ],
- [
- -1.57549,
- 60.12844
- ],
- [
- -1.57549,
- 59.79792
- ],
- [
- -1.0317,
- 59.79792
- ],
- [
- -1.0317,
- 60.03545
- ],
- [
- -0.66269,
- 60.03545
- ],
- [
- -0.66269,
- 60.91039
- ],
- [
- -1.10344,
- 60.91039
- ],
- [
- -1.10344,
- 60.804
- ],
- [
- -1.35063,
- 60.804
- ],
- [
- -1.35063,
- 60.68857
- ],
- [
- -1.94838,
- 60.68857
- ]
- ],
- [
- [
- -2.20338,
- 60.19686
- ],
- [
- -2.20338,
- 60.09294
- ],
- [
- -1.9864,
- 60.09294
- ],
- [
- -1.9864,
- 60.19686
- ],
- [
- -2.20338,
- 60.19686
- ]
- ],
- [
- [
- -1.75431,
- 59.56983
- ],
- [
- -1.75431,
- 59.46394
- ],
- [
- -1.53733,
- 59.46394
- ],
- [
- -1.53733,
- 59.56983
- ],
- [
- -1.75431,
- 59.56983
- ]
- ],
- [
- [
- -4.5586,
- 59.13705
- ],
- [
- -4.5586,
- 58.95691
- ],
- [
- -4.2867,
- 58.95691
- ],
- [
- -4.2867,
- 59.13705
- ],
- [
- -4.5586,
- 59.13705
- ]
- ],
- [
- [
- -6.27877,
- 59.20257
- ],
- [
- -6.27877,
- 59.02278
- ],
- [
- -5.66506,
- 59.02278
- ],
- [
- -5.66506,
- 59.20257
- ],
- [
- -6.27877,
- 59.20257
- ]
- ],
- [
- [
- -8.71635,
- 57.94406
- ],
- [
- -8.71635,
- 57.73059
- ],
- [
- -8.35929,
- 57.73059
- ],
- [
- -8.35929,
- 57.94406
- ],
- [
- -8.71635,
- 57.94406
- ]
- ],
- [
- [
- -7.6077,
- 50.4021
- ],
- [
- -7.6077,
- 50.26887
- ],
- [
- -7.39072,
- 50.26887
- ],
- [
- -7.39072,
- 50.4021
- ],
- [
- -7.6077,
- 50.4021
- ]
- ],
- [
- [
- -7.73043,
- 58.35799
- ],
- [
- -7.73043,
- 58.24831
- ],
- [
- -7.51345,
- 58.24831
- ],
- [
- -7.51345,
- 58.35799
- ],
- [
- -7.73043,
- 58.35799
- ]
- ]
- ]
- },
- {
- "id": "OS-Scottish_Popular-historic",
- "name": "OS Scottish Popular historic",
- "type": "tms",
- "template": "https://ooc.openstreetmap.org/npescotland/{zoom}/{x}/{y}.jpg",
- "scaleExtent": [
- 6,
- 15
- ],
- "polygon": [
- [
- [
- -6.37546,
- 57.1045
- ],
- [
- -6.12998,
- 57.11183
- ],
- [
- -6.12586,
- 56.94143
- ],
- [
- -6.26045,
- 56.93892
- ],
- [
- -6.26045,
- 56.83765
- ],
- [
- -6.24259,
- 56.65806
- ],
- [
- -6.3552,
- 56.65655
- ],
- [
- -6.37649,
- 56.79029
- ],
- [
- -7.02812,
- 56.76396
- ],
- [
- -6.99636,
- 56.54246
- ],
- [
- -7.04391,
- 56.53937
- ],
- [
- -7.03206,
- 56.44201
- ],
- [
- -6.98331,
- 56.44353
- ],
- [
- -6.97593,
- 56.36063
- ],
- [
- -6.45271,
- 56.37964
- ],
- [
- -6.44035,
- 56.2013
- ],
- [
- -6.19315,
- 56.21199
- ],
- [
- -6.18354,
- 56.12483
- ],
- [
- -6.36379,
- 56.11641
- ],
- [
- -6.36173,
- 55.98258
- ],
- [
- -6.48944,
- 55.97912
- ],
- [
- -6.47777,
- 55.84134
- ],
- [
- -6.55467,
- 55.8371
- ],
- [
- -6.53545,
- 55.66049
- ],
- [
- -6.45442,
- 55.66087
- ],
- [
- -6.44412,
- 55.57285
- ],
- [
- -6.19985,
- 55.57266
- ],
- [
- -5.96845,
- 55.58857
- ],
- [
- -5.98562,
- 55.7686
- ],
- [
- -5.90665,
- 55.77169
- ],
- [
- -5.88949,
- 55.59284
- ],
- [
- -5.80983,
- 55.594
- ],
- [
- -5.79335,
- 55.41395
- ],
- [
- -5.827,
- 55.41395
- ],
- [
- -5.80915,
- 55.24247
- ],
- [
- -5.61826,
- 55.24873
- ],
- [
- -5.62101,
- 55.26713
- ],
- [
- -5.46239,
- 55.27026
- ],
- [
- -5.48642,
- 55.514
- ],
- [
- -5.43836,
- 55.51516
- ],
- [
- -5.42943,
- 55.42681
- ],
- [
- -5.24129,
- 55.43071
- ],
- [
- -5.19464,
- 54.80351
- ],
- [
- -5.07105,
- 54.80668
- ],
- [
- -5.05221,
- 54.62471
- ],
- [
- -4.3223,
- 54.65173
- ],
- [
- -4.33123,
- 54.7319
- ],
- [
- -4.06786,
- 54.73697
- ],
- [
- -4.06786,
- 54.76471
- ],
- [
- -3.55699,
- 54.77342
- ],
- [
- -3.55837,
- 54.83754
- ],
- [
- -2.42098,
- 54.84671
- ],
- [
- -2.42647,
- 55.25265
- ],
- [
- -2.03097,
- 55.25265
- ],
- [
- -2.01449,
- 55.56606
- ],
- [
- -1.76455,
- 55.56606
- ],
- [
- -1.76455,
- 55.9724
- ],
- [
- -2.35026,
- 55.96548
- ],
- [
- -2.5796,
- 56.06527
- ],
- [
- -2.58234,
- 56.37071
- ],
- [
- -2.65032,
- 56.36919
- ],
- [
- -2.65581,
- 56.50585
- ],
- [
- -2.48965,
- 56.50509
- ],
- [
- -2.42785,
- 56.55356
- ],
- [
- -2.42373,
- 56.73026
- ],
- [
- -2.1628,
- 56.73177
- ],
- [
- -2.17104,
- 56.99301
- ],
- [
- -2.00075,
- 56.99301
- ],
- [
- -1.98479,
- 57.3159
- ],
- [
- -1.83476,
- 57.31553
- ],
- [
- -1.83441,
- 57.36074
- ],
- [
- -1.75167,
- 57.36111
- ],
- [
- -1.74893,
- 57.63046
- ],
- [
- -1.83613,
- 57.63009
- ],
- [
- -1.83544,
- 57.70171
- ],
- [
- -2.00436,
- 57.70207
- ],
- [
- -2.00367,
- 57.71968
- ],
- [
- -3.22281,
- 57.71418
- ],
- [
- -3.22629,
- 57.76157
- ],
- [
- -3.51331,
- 57.77622
- ],
- [
- -3.50914,
- 57.71051
- ],
- [
- -3.84766,
- 57.70611
- ],
- [
- -3.85182,
- 57.76853
- ],
- [
- -3.79925,
- 57.76989
- ],
- [
- -3.80474,
- 57.88578
- ],
- [
- -3.85556,
- 57.88651
- ],
- [
- -3.85937,
- 57.97558
- ],
- [
- -3.79513,
- 57.97656
- ],
- [
- -3.79483,
- 58.03052
- ],
- [
- -3.69733,
- 58.03161
- ],
- [
- -3.69458,
- 58.06722
- ],
- [
- -3.52391,
- 58.07437
- ],
- [
- -3.52978,
- 58.16007
- ],
- [
- -3.35774,
- 58.16286
- ],
- [
- -3.3483,
- 58.28742
- ],
- [
- -3.07638,
- 58.29121
- ],
- [
- -3.03004,
- 58.43744
- ],
- [
- -3.01768,
- 58.65814
- ],
- [
- -2.85837,
- 58.66028
- ],
- [
- -2.86524,
- 58.7943
- ],
- [
- -2.75812,
- 58.79715
- ],
- [
- -2.76636,
- 58.87461
- ],
- [
- -2.6208,
- 58.88668
- ],
- [
- -2.62766,
- 58.97527
- ],
- [
- -2.54114,
- 58.97668
- ],
- [
- -2.54217,
- 59.0841
- ],
- [
- -2.52363,
- 59.08375
- ],
- [
- -2.52913,
- 59.1574
- ],
- [
- -2.43849,
- 59.15705
- ],
- [
- -2.4378,
- 59.246
- ],
- [
- -2.36914,
- 59.24705
- ],
- [
- -2.3688,
- 59.40748
- ],
- [
- -2.52947,
- 59.40748
- ],
- [
- -2.52741,
- 59.33436
- ],
- [
- -2.70319,
- 59.33576
- ],
- [
- -2.70525,
- 59.40608
- ],
- [
- -3.12891,
- 59.40433
- ],
- [
- -3.12411,
- 59.15951
- ],
- [
- -3.40288,
- 59.1574
- ],
- [
- -3.39464,
- 58.9689
- ],
- [
- -3.4276,
- 58.96961
- ],
- [
- -3.42572,
- 58.88526
- ],
- [
- -3.45215,
- 58.87071
- ],
- [
- -3.51017,
- 58.86911
- ],
- [
- -3.50708,
- 58.78826
- ],
- [
- -3.38555,
- 58.79004
- ],
- [
- -3.3828,
- 58.6999
- ],
- [
- -3.4494,
- 58.69847
- ],
- [
- -3.45078,
- 58.65385
- ],
- [
- -3.50159,
- 58.65421
- ],
- [
- -3.5009,
- 58.62705
- ],
- [
- -3.72612,
- 58.62383
- ],
- [
- -3.72475,
- 58.60595
- ],
- [
- -4.6476,
- 58.5895
- ],
- [
- -4.65996,
- 58.67171
- ],
- [
- -5.10697,
- 58.66135
- ],
- [
- -5.09804,
- 58.58091
- ],
- [
- -5.23743,
- 58.57769
- ],
- [
- -5.22455,
- 58.26305
- ],
- [
- -5.4127,
- 58.25818
- ],
- [
- -5.39965,
- 58.12245
- ],
- [
- -5.53286,
- 58.11991
- ],
- [
- -5.52393,
- 57.99494
- ],
- [
- -5.55346,
- 57.99422
- ],
- [
- -5.54728,
- 57.93995
- ],
- [
- -5.85696,
- 57.93157
- ],
- [
- -5.83181,
- 57.73361
- ],
- [
- -5.86374,
- 57.73224
- ],
- [
- -5.85773,
- 57.66096
- ],
- [
- -6.19624,
- 57.64975
- ],
- [
- -6.20242,
- 57.72353
- ],
- [
- -6.41666,
- 57.7162
- ],
- [
- -6.42421,
- 57.75945
- ],
- [
- -6.4764,
- 57.75725
- ],
- [
- -6.46884,
- 57.71326
- ],
- [
- -6.53339,
- 57.71216
- ],
- [
- -6.52721,
- 57.6391
- ],
- [
- -6.692,
- 57.63395
- ],
- [
- -6.68102,
- 57.54341
- ],
- [
- -6.78195,
- 57.53826
- ],
- [
- -6.75311,
- 57.31608
- ],
- [
- -6.50592,
- 57.32498
- ],
- [
- -6.49768,
- 57.28084
- ],
- [
- -6.4812,
- 57.27824
- ],
- [
- -6.47159,
- 57.19203
- ],
- [
- -6.38644,
- 57.19352
- ],
- [
- -6.37546,
- 57.1045
- ]
- ],
- [
- [
- -7.65043,
- 56.77461
- ],
- [
- -7.40667,
- 56.79304
- ],
- [
- -7.41972,
- 56.88281
- ],
- [
- -7.38676,
- 56.90268
- ],
- [
- -7.25836,
- 56.91056
- ],
- [
- -7.24806,
- 57.07141
- ],
- [
- -7.11485,
- 57.077
- ],
- [
- -7.16772,
- 57.43466
- ],
- [
- -7.0352,
- 57.44094
- ],
- [
- -7.05236,
- 57.69026
- ],
- [
- -6.86834,
- 57.6976
- ],
- [
- -6.87315,
- 57.71631
- ],
- [
- -6.70286,
- 57.72217
- ],
- [
- -6.71591,
- 57.81117
- ],
- [
- -6.53188,
- 57.81958
- ],
- [
- -6.53875,
- 57.88133
- ],
- [
- -6.22015,
- 57.89265
- ],
- [
- -6.24143,
- 58.09935
- ],
- [
- -6.12676,
- 58.10152
- ],
- [
- -6.17758,
- 58.53105
- ],
- [
- -6.46734,
- 58.52029
- ],
- [
- -6.4591,
- 58.45102
- ],
- [
- -6.63145,
- 58.44455
- ],
- [
- -6.6239,
- 58.39169
- ],
- [
- -6.79212,
- 58.38485
- ],
- [
- -6.78869,
- 58.34956
- ],
- [
- -6.90885,
- 58.34415
- ],
- [
- -6.89718,
- 58.25503
- ],
- [
- -7.20136,
- 58.24166
- ],
- [
- -7.14094,
- 57.83201
- ],
- [
- -7.37509,
- 57.82104
- ],
- [
- -7.36822,
- 57.69503
- ],
- [
- -7.6573,
- 57.68292
- ],
- [
- -7.67652,
- 57.80715
- ],
- [
- -7.79257,
- 57.80202
- ],
- [
- -7.77327,
- 57.67734
- ],
- [
- -7.70756,
- 57.68024
- ],
- [
- -7.69376,
- 57.59088
- ],
- [
- -7.75947,
- 57.58797
- ],
- [
- -7.74587,
- 57.49965
- ],
- [
- -7.51241,
- 57.5085
- ],
- [
- -7.47911,
- 57.29468
- ],
- [
- -7.52855,
- 57.2932
- ],
- [
- -7.51276,
- 57.05871
- ],
- [
- -7.61163,
- 57.05386
- ],
- [
- -7.59859,
- 56.87493
- ],
- [
- -7.66725,
- 56.87268
- ],
- [
- -7.65043,
- 56.77461
- ]
- ],
- [
- [
- -1.46238,
- 59.82831
- ],
- [
- -1.21519,
- 59.83107
- ],
- [
- -1.21519,
- 59.96194
- ],
- [
- -1.10533,
- 59.96056
- ],
- [
- -1.0986,
- 60.09498
- ],
- [
- -0.97632,
- 60.09346
- ],
- [
- -0.96352,
- 60.3476
- ],
- [
- -0.74028,
- 60.34484
- ],
- [
- -0.7147,
- 60.84722
- ],
- [
- -1.08215,
- 60.85901
- ],
- [
- -1.08455,
- 60.76944
- ],
- [
- -1.21296,
- 60.77011
- ],
- [
- -1.21579,
- 60.68079
- ],
- [
- -1.23364,
- 60.68113
- ],
- [
- -1.23467,
- 60.5909
- ],
- [
- -1.27132,
- 60.59191
- ],
- [
- -1.27338,
- 60.64581
- ],
- [
- -1.45466,
- 60.64648
- ],
- [
- -1.45397,
- 60.59224
- ],
- [
- -1.6373,
- 60.59292
- ],
- [
- -1.63954,
- 60.3507
- ],
- [
- -1.73172,
- 60.35095
- ],
- [
- -1.73172,
- 60.18067
- ],
- [
- -1.64177,
- 60.17931
- ],
- [
- -1.64177,
- 60.1448
- ],
- [
- -1.46393,
- 60.14344
- ],
- [
- -1.46238,
- 59.82831
- ]
- ],
- [
- [
- -6.21496,
- 56.97437
- ],
- [
- -6.22525,
- 57.06445
- ],
- [
- -6.29117,
- 57.06184
- ],
- [
- -6.29237,
- 57.08062
- ],
- [
- -6.62162,
- 57.06943
- ],
- [
- -6.61338,
- 57.00629
- ],
- [
- -6.46163,
- 57.01302
- ],
- [
- -6.4582,
- 56.96776
- ],
- [
- -6.21496,
- 56.97437
- ]
- ],
- [
- [
- -2.12774,
- 60.10855
- ],
- [
- -2.12803,
- 60.16207
- ],
- [
- -2.00203,
- 60.16224
- ],
- [
- -2.00174,
- 60.10872
- ],
- [
- -2.12774,
- 60.10855
- ]
- ],
- [
- [
- -6.68977,
- 56.95804
- ],
- [
- -6.69228,
- 56.9759
- ],
- [
- -6.65984,
- 56.97726
- ],
- [
- -6.65733,
- 56.9594
- ],
- [
- -6.68977,
- 56.95804
- ]
- ],
- [
- [
- -7.66365,
- 58.25846
- ],
- [
- -7.66844,
- 58.28502
- ],
- [
- -7.54896,
- 58.29098
- ],
- [
- -7.54417,
- 58.26442
- ],
- [
- -7.66365,
- 58.25846
- ]
- ],
- [
- [
- -8.65104,
- 57.78885
- ],
- [
- -8.66674,
- 57.875
- ],
- [
- -8.48272,
- 57.88449
- ],
- [
- -8.46702,
- 57.79836
- ],
- [
- -8.65104,
- 57.78885
- ]
- ]
- ]
- },
- {
- "id": "al_palestina",
- "name": "Palestina AL",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Palestina&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -37.28907,
- -9.71916
- ],
- [
- -37.28904,
- -9.71114
- ],
- [
- -37.28911,
- -9.7022
- ],
- [
- -37.28915,
- -9.69175
- ],
- [
- -37.28919,
- -9.68886
- ],
- [
- -37.28927,
- -9.68069
- ],
- [
- -37.28926,
- -9.67732
- ],
- [
- -37.28936,
- -9.66999
- ],
- [
- -37.28936,
- -9.66599
- ],
- [
- -37.28931,
- -9.66133
- ],
- [
- -37.28941,
- -9.65526
- ],
- [
- -37.28946,
- -9.64556
- ],
- [
- -37.2895,
- -9.63489
- ],
- [
- -37.28954,
- -9.62926
- ],
- [
- -37.2964,
- -9.62885
- ],
- [
- -37.31188,
- -9.62897
- ],
- [
- -37.32762,
- -9.62914
- ],
- [
- -37.33181,
- -9.62919
- ],
- [
- -37.34338,
- -9.62917
- ],
- [
- -37.35876,
- -9.62923
- ],
- [
- -37.37175,
- -9.6293
- ],
- [
- -37.37839,
- -9.62913
- ],
- [
- -37.38051,
- -9.62922
- ],
- [
- -37.38061,
- -9.63143
- ],
- [
- -37.38054,
- -9.63785
- ],
- [
- -37.38043,
- -9.63895
- ],
- [
- -37.38053,
- -9.64147
- ],
- [
- -37.38051,
- -9.64876
- ],
- [
- -37.3805,
- -9.6543
- ],
- [
- -37.38043,
- -9.656
- ],
- [
- -37.38024,
- -9.66028
- ],
- [
- -37.38022,
- -9.66551
- ],
- [
- -37.38019,
- -9.67054
- ],
- [
- -37.38016,
- -9.67896
- ],
- [
- -37.38013,
- -9.68781
- ],
- [
- -37.38009,
- -9.70116
- ],
- [
- -37.38003,
- -9.71053
- ],
- [
- -37.3801,
- -9.71743
- ],
- [
- -37.38005,
- -9.71959
- ],
- [
- -37.37932,
- -9.71954
- ],
- [
- -37.37392,
- -9.71956
- ],
- [
- -37.36582,
- -9.71945
- ],
- [
- -37.35849,
- -9.71946
- ],
- [
- -37.35334,
- -9.71938
- ],
- [
- -37.34414,
- -9.71937
- ],
- [
- -37.33423,
- -9.71923
- ],
- [
- -37.32933,
- -9.71927
- ],
- [
- -37.3218,
- -9.71924
- ],
- [
- -37.31983,
- -9.71927
- ],
- [
- -37.31094,
- -9.7192
- ],
- [
- -37.29589,
- -9.71921
- ],
- [
- -37.28907,
- -9.71916
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "palmeira_dos_indios",
- "name": "Palmeira dos Indios AL",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Palmeira%20dos%20Indios&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -36.58664,
- -9.46124
- ],
- [
- -36.58665,
- -9.45851
- ],
- [
- -36.58619,
- -9.41968
- ],
- [
- -36.58604,
- -9.41452
- ],
- [
- -36.58596,
- -9.40593
- ],
- [
- -36.58585,
- -9.39509
- ],
- [
- -36.58579,
- -9.39163
- ],
- [
- -36.58565,
- -9.38983
- ],
- [
- -36.58549,
- -9.38249
- ],
- [
- -36.58529,
- -9.37965
- ],
- [
- -36.58511,
- -9.37744
- ],
- [
- -36.58503,
- -9.37059
- ],
- [
- -36.5889,
- -9.37058
- ],
- [
- -36.59064,
- -9.37065
- ],
- [
- -36.59389,
- -9.3706
- ],
- [
- -36.60037,
- -9.37073
- ],
- [
- -36.61046,
- -9.37049
- ],
- [
- -36.62288,
- -9.37021
- ],
- [
- -36.63377,
- -9.37002
- ],
- [
- -36.63835,
- -9.36986
- ],
- [
- -36.64743,
- -9.36997
- ],
- [
- -36.65141,
- -9.36994
- ],
- [
- -36.65534,
- -9.36972
- ],
- [
- -36.65647,
- -9.36974
- ],
- [
- -36.66111,
- -9.37024
- ],
- [
- -36.66276,
- -9.37026
- ],
- [
- -36.66704,
- -9.36973
- ],
- [
- -36.67052,
- -9.36966
- ],
- [
- -36.67325,
- -9.36966
- ],
- [
- -36.67602,
- -9.36987
- ],
- [
- -36.67593,
- -9.3726
- ],
- [
- -36.67597,
- -9.37679
- ],
- [
- -36.67639,
- -9.38138
- ],
- [
- -36.67654,
- -9.38464
- ],
- [
- -36.67663,
- -9.39265
- ],
- [
- -36.67675,
- -9.39829
- ],
- [
- -36.67689,
- -9.40875
- ],
- [
- -36.67707,
- -9.41887
- ],
- [
- -36.67717,
- -9.43179
- ],
- [
- -36.67724,
- -9.43395
- ],
- [
- -36.67718,
- -9.43753
- ],
- [
- -36.67728,
- -9.44311
- ],
- [
- -36.6773,
- -9.44933
- ],
- [
- -36.67741,
- -9.45528
- ],
- [
- -36.6774,
- -9.45938
- ],
- [
- -36.67735,
- -9.46017
- ],
- [
- -36.67568,
- -9.46021
- ],
- [
- -36.66625,
- -9.4603
- ],
- [
- -36.66224,
- -9.4603
- ],
- [
- -36.65736,
- -9.46042
- ],
- [
- -36.6504,
- -9.46047
- ],
- [
- -36.63543,
- -9.46065
- ],
- [
- -36.61979,
- -9.46083
- ],
- [
- -36.61433,
- -9.46083
- ],
- [
- -36.61029,
- -9.46097
- ],
- [
- -36.60647,
- -9.46097
- ],
- [
- -36.60186,
- -9.46099
- ],
- [
- -36.59426,
- -9.46112
- ],
- [
- -36.58664,
- -9.46124
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "Pangasinan_Bulacan_HiRes",
- "name": "Pangasinán/Bulacan (Philippines HiRes)",
- "type": "tms",
- "template": "https://gravitystorm.dev.openstreetmap.org/imagery/philippines/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 12,
- 19
- ],
- "polygon": [
- [
- [
- 120.33659,
- 15.98577
- ],
- [
- 120.44599,
- 15.984
- ],
- [
- 120.44613,
- 15.97446
- ],
- [
- 120.47646,
- 15.97459
- ],
- [
- 120.59425,
- 15.94683
- ],
- [
- 120.59806,
- 16.09079
- ],
- [
- 120.59654,
- 16.198
- ],
- [
- 120.36854,
- 16.21853
- ],
- [
- 120.34758,
- 16.04231
- ],
- [
- 120.33659,
- 15.98577
- ]
- ],
- [
- [
- 120.8268,
- 15.3658
- ],
- [
- 121.2684,
- 15.2602
- ],
- [
- 121.2699,
- 14.7025
- ],
- [
- 120.695,
- 14.8423
- ],
- [
- 120.8268,
- 15.3658
- ]
- ]
- ]
- },
- {
- "id": "pao_de_acucar",
- "name": "Pão de Açucar AL",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Pao%20de%20Acucar&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -37.39003,
- -9.78589
- ],
- [
- -37.39019,
- -9.7762
- ],
- [
- -37.38993,
- -9.76575
- ],
- [
- -37.38991,
- -9.75256
- ],
- [
- -37.39015,
- -9.74102
- ],
- [
- -37.39003,
- -9.73201
- ],
- [
- -37.39012,
- -9.72254
- ],
- [
- -37.39015,
- -9.71289
- ],
- [
- -37.39019,
- -9.70341
- ],
- [
- -37.3902,
- -9.69548
- ],
- [
- -37.40377,
- -9.6955
- ],
- [
- -37.41728,
- -9.6956
- ],
- [
- -37.43224,
- -9.69569
- ],
- [
- -37.44319,
- -9.69573
- ],
- [
- -37.44723,
- -9.69582
- ],
- [
- -37.45682,
- -9.69585
- ],
- [
- -37.47062,
- -9.69591
- ],
- [
- -37.47373,
- -9.69591
- ],
- [
- -37.47586,
- -9.69604
- ],
- [
- -37.48128,
- -9.69605
- ],
- [
- -37.48131,
- -9.6989
- ],
- [
- -37.48122,
- -9.70087
- ],
- [
- -37.48121,
- -9.70239
- ],
- [
- -37.48135,
- -9.70545
- ],
- [
- -37.48138,
- -9.71046
- ],
- [
- -37.48134,
- -9.71617
- ],
- [
- -37.4812,
- -9.71875
- ],
- [
- -37.48125,
- -9.72035
- ],
- [
- -37.48136,
- -9.72134
- ],
- [
- -37.48134,
- -9.7241
- ],
- [
- -37.4813,
- -9.72506
- ],
- [
- -37.48103,
- -9.72732
- ],
- [
- -37.48102,
- -9.73088
- ],
- [
- -37.48127,
- -9.73462
- ],
- [
- -37.48131,
- -9.73638
- ],
- [
- -37.48131,
- -9.73893
- ],
- [
- -37.48131,
- -9.74388
- ],
- [
- -37.4813,
- -9.74989
- ],
- [
- -37.48122,
- -9.75315
- ],
- [
- -37.48102,
- -9.75855
- ],
- [
- -37.48084,
- -9.7642
- ],
- [
- -37.48085,
- -9.76526
- ],
- [
- -37.48094,
- -9.76675
- ],
- [
- -37.48093,
- -9.76881
- ],
- [
- -37.48084,
- -9.7721
- ],
- [
- -37.48087,
- -9.77486
- ],
- [
- -37.48076,
- -9.77993
- ],
- [
- -37.48081,
- -9.7863
- ],
- [
- -37.46382,
- -9.78623
- ],
- [
- -37.45353,
- -9.7862
- ],
- [
- -37.43979,
- -9.78611
- ],
- [
- -37.42998,
- -9.78607
- ],
- [
- -37.4208,
- -9.786
- ],
- [
- -37.40853,
- -9.78596
- ],
- [
- -37.39545,
- -9.78593
- ],
- [
- -37.39003,
- -9.78589
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "PCN-Italy-2006",
- "name": "PCN 2006 - Italy",
- "type": "wms",
- "template": "http://wms.pcn.minambiente.it/ogc?map=/ms_ogc/WMS_v1.3/raster/ortofoto_colore_06.map&FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=OI.ORTOIMMAGINI.2006.33,OI.ORTOIMMAGINI.2006.32&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2006-01-01T00:00:00.000Z",
- "startDate": "2006-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 7.54795,
- 43.73118
- ],
- [
- 8.10697,
- 43.86701
- ],
- [
- 8.73593,
- 44.38944
- ],
- [
- 10.18338,
- 43.85116
- ],
- [
- 9.55016,
- 43.13605
- ],
- [
- 10.27725,
- 42.27515
- ],
- [
- 11.69748,
- 42.08118
- ],
- [
- 12.90059,
- 40.84897
- ],
- [
- 14.97466,
- 40.20869
- ],
- [
- 16.04773,
- 38.8953
- ],
- [
- 13.1086,
- 38.74113
- ],
- [
- 11.77717,
- 37.93605
- ],
- [
- 14.40624,
- 36.74299
- ],
- [
- 15.13467,
- 36.59364
- ],
- [
- 15.42867,
- 37.027
- ],
- [
- 15.21993,
- 37.43376
- ],
- [
- 15.4836,
- 37.92936
- ],
- [
- 16.01644,
- 37.8036
- ],
- [
- 17.21669,
- 38.87425
- ],
- [
- 17.21669,
- 39.40468
- ],
- [
- 16.55477,
- 39.78775
- ],
- [
- 17.05464,
- 40.45144
- ],
- [
- 18.32906,
- 39.70539
- ],
- [
- 18.68773,
- 40.0587
- ],
- [
- 18.04964,
- 40.67064
- ],
- [
- 16.00545,
- 41.52122
- ],
- [
- 16.38448,
- 41.85964
- ],
- [
- 15.51837,
- 42.1537
- ],
- [
- 14.57997,
- 42.2461
- ],
- [
- 13.56099,
- 43.65128
- ],
- [
- 12.57889,
- 44.0867
- ],
- [
- 12.28795,
- 44.62204
- ],
- [
- 12.56398,
- 44.97092
- ],
- [
- 12.34151,
- 45.17458
- ],
- [
- 12.41696,
- 45.40557
- ],
- [
- 13.09252,
- 45.62826
- ],
- [
- 13.69549,
- 45.70806
- ],
- [
- 13.78445,
- 45.5825
- ],
- [
- 13.9191,
- 45.6322
- ],
- [
- 13.8235,
- 45.7176
- ],
- [
- 13.59784,
- 45.8072
- ],
- [
- 13.64307,
- 45.98326
- ],
- [
- 13.52963,
- 45.96588
- ],
- [
- 13.47474,
- 46.00546
- ],
- [
- 13.66472,
- 46.17392
- ],
- [
- 13.47587,
- 46.22725
- ],
- [
- 13.42218,
- 46.20758
- ],
- [
- 13.37671,
- 46.29668
- ],
- [
- 13.59777,
- 46.44137
- ],
- [
- 13.68684,
- 46.43881
- ],
- [
- 13.7148,
- 46.5222
- ],
- [
- 12.9151,
- 46.60953
- ],
- [
- 12.38708,
- 46.71529
- ],
- [
- 12.27591,
- 46.88651
- ],
- [
- 12.17486,
- 46.90895
- ],
- [
- 12.11675,
- 47.01241
- ],
- [
- 12.21781,
- 47.03996
- ],
- [
- 12.19254,
- 47.09331
- ],
- [
- 11.74789,
- 46.98484
- ],
- [
- 11.33355,
- 46.99862
- ],
- [
- 11.10618,
- 46.92966
- ],
- [
- 11.00764,
- 46.76896
- ],
- [
- 10.72974,
- 46.78972
- ],
- [
- 10.75753,
- 46.82258
- ],
- [
- 10.66405,
- 46.87614
- ],
- [
- 10.47197,
- 46.85698
- ],
- [
- 10.38659,
- 46.67847
- ],
- [
- 10.49375,
- 46.62049
- ],
- [
- 10.46136,
- 46.53164
- ],
- [
- 10.25309,
- 46.57432
- ],
- [
- 10.23674,
- 46.63484
- ],
- [
- 10.10307,
- 46.61003
- ],
- [
- 10.03715,
- 46.44479
- ],
- [
- 10.165,
- 46.41051
- ],
- [
- 10.10506,
- 46.3372
- ],
- [
- 10.17862,
- 46.25626
- ],
- [
- 10.07055,
- 46.21668
- ],
- [
- 9.95249,
- 46.38045
- ],
- [
- 9.73086,
- 46.35071
- ],
- [
- 9.71273,
- 46.29266
- ],
- [
- 9.57015,
- 46.2958
- ],
- [
- 9.46117,
- 46.37481
- ],
- [
- 9.45936,
- 46.50873
- ],
- [
- 9.40487,
- 46.46621
- ],
- [
- 9.36128,
- 46.5081
- ],
- [
- 9.28136,
- 46.49685
- ],
- [
- 9.24503,
- 46.23616
- ],
- [
- 8.95601,
- 45.96503
- ],
- [
- 9.09065,
- 45.89906
- ],
- [
- 9.0298,
- 45.82127
- ],
- [
- 8.90992,
- 45.8333
- ],
- [
- 8.9408,
- 45.86682
- ],
- [
- 8.88904,
- 45.95465
- ],
- [
- 8.78551,
- 45.99063
- ],
- [
- 8.85617,
- 46.0748
- ],
- [
- 8.62242,
- 46.12112
- ],
- [
- 8.45032,
- 46.26869
- ],
- [
- 8.42464,
- 46.46367
- ],
- [
- 8.08814,
- 46.26692
- ],
- [
- 8.15493,
- 46.1834
- ],
- [
- 8.11383,
- 46.11577
- ],
- [
- 8.02906,
- 46.10331
- ],
- [
- 7.98881,
- 45.99867
- ],
- [
- 7.9049,
- 45.99945
- ],
- [
- 7.85949,
- 45.91485
- ],
- [
- 7.56343,
- 45.97421
- ],
- [
- 7.10685,
- 45.85653
- ],
- [
- 7.04151,
- 45.92435
- ],
- [
- 6.95315,
- 45.85163
- ],
- [
- 6.80785,
- 45.83265
- ],
- [
- 6.80785,
- 45.71864
- ],
- [
- 6.98948,
- 45.63869
- ],
- [
- 7.00037,
- 45.509
- ],
- [
- 7.18019,
- 45.40071
- ],
- [
- 7.10572,
- 45.32924
- ],
- [
- 7.13115,
- 45.25386
- ],
- [
- 6.85144,
- 45.13226
- ],
- [
- 6.7697,
- 45.16044
- ],
- [
- 6.62803,
- 45.11175
- ],
- [
- 6.66981,
- 45.02324
- ],
- [
- 6.74791,
- 45.01939
- ],
- [
- 6.75518,
- 44.89915
- ],
- [
- 7.02217,
- 44.82519
- ],
- [
- 7.07484,
- 44.68073
- ],
- [
- 6.95133,
- 44.66264
- ],
- [
- 6.85507,
- 44.53072
- ],
- [
- 6.94504,
- 44.43112
- ],
- [
- 6.88784,
- 44.42043
- ],
- [
- 6.89171,
- 44.36637
- ],
- [
- 7.00764,
- 44.23736
- ],
- [
- 7.36364,
- 44.11882
- ],
- [
- 7.68694,
- 44.17487
- ],
- [
- 7.72508,
- 44.07578
- ],
- [
- 7.49355,
- 43.86551
- ],
- [
- 7.54795,
- 43.73118
- ]
- ],
- [
- [
- 8.17134,
- 39.14848
- ],
- [
- 8.62453,
- 38.75119
- ],
- [
- 9.09831,
- 39.03764
- ],
- [
- 9.03102,
- 39.13144
- ],
- [
- 9.26585,
- 39.18575
- ],
- [
- 9.64076,
- 39.0227
- ],
- [
- 9.89894,
- 40.67991
- ],
- [
- 9.50068,
- 41.39257
- ],
- [
- 8.30317,
- 40.91071
- ],
- [
- 8.41304,
- 41.16139
- ],
- [
- 8.21254,
- 41.13864
- ],
- [
- 8.07521,
- 40.59862
- ],
- [
- 8.36154,
- 40.35
- ],
- [
- 8.27914,
- 39.98585
- ],
- [
- 8.38283,
- 39.6536
- ],
- [
- 8.17134,
- 39.14848
- ]
- ],
- [
- [
- 12.51489,
- 35.53423
- ],
- [
- 12.64054,
- 35.5306
- ],
- [
- 12.63861,
- 35.48641
- ],
- [
- 12.51296,
- 35.49005
- ],
- [
- 12.51489,
- 35.53423
- ]
- ],
- [
- [
- 11.91218,
- 36.85688
- ],
- [
- 12.08179,
- 36.85523
- ],
- [
- 12.07958,
- 36.70974
- ],
- [
- 11.90998,
- 36.71139
- ],
- [
- 11.91218,
- 36.85688
- ]
- ],
- [
- [
- 12.84019,
- 35.88131
- ],
- [
- 12.89186,
- 35.88145
- ],
- [
- 12.89198,
- 35.85003
- ],
- [
- 12.84031,
- 35.84989
- ],
- [
- 12.84019,
- 35.88131
- ]
- ]
- ]
- },
- {
- "id": "PCN-Lazio_Umbria-2008",
- "name": "PCN 2008 - IT Lazio+Umbria",
- "type": "wms",
- "template": "http://wms.pcn.minambiente.it/ogc?map=/ms_ogc/WMS_v1.3/raster/ortofoto_colore_08.map&FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=OI.ORTOIMMAGINI.2008.33&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2008-01-01T00:00:00.000Z",
- "startDate": "2008-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 12.33149,
- 41.64637
- ],
- [
- 12.41178,
- 41.64791
- ],
- [
- 12.41499,
- 41.54635
- ],
- [
- 12.49574,
- 41.54789
- ],
- [
- 12.4985,
- 41.49619
- ],
- [
- 12.57948,
- 41.49843
- ],
- [
- 12.58062,
- 41.42932
- ],
- [
- 12.60632,
- 41.4288
- ],
- [
- 12.60746,
- 41.39663
- ],
- [
- 12.8293,
- 41.39818
- ],
- [
- 12.83159,
- 41.34688
- ],
- [
- 12.9128,
- 41.34843
- ],
- [
- 12.9151,
- 41.29726
- ],
- [
- 12.99585,
- 41.2983
- ],
- [
- 12.99791,
- 41.19636
- ],
- [
- 13.1679,
- 41.19808
- ],
- [
- 13.16721,
- 41.24692
- ],
- [
- 13.41337,
- 41.24829
- ],
- [
- 13.4152,
- 41.19705
- ],
- [
- 13.8341,
- 41.19808
- ],
- [
- 13.83341,
- 41.2476
- ],
- [
- 13.91737,
- 41.24847
- ],
- [
- 13.91668,
- 41.39749
- ],
- [
- 14.0011,
- 41.39784
- ],
- [
- 13.99996,
- 41.49774
- ],
- [
- 14.08415,
- 41.49826
- ],
- [
- 14.08346,
- 41.65014
- ],
- [
- 14.00087,
- 41.6498
- ],
- [
- 13.99973,
- 41.75051
- ],
- [
- 13.83433,
- 41.74965
- ],
- [
- 13.83364,
- 41.80047
- ],
- [
- 13.75151,
- 41.79978
- ],
- [
- 13.7499,
- 41.84987
- ],
- [
- 13.41841,
- 41.8497
- ],
- [
- 13.41681,
- 41.95027
- ],
- [
- 13.33445,
- 41.94959
- ],
- [
- 13.3333,
- 42.00041
- ],
- [
- 13.25141,
- 41.99973
- ],
- [
- 13.25003,
- 42.05051
- ],
- [
- 13.08509,
- 42.04966
- ],
- [
- 13.08394,
- 42.097
- ],
- [
- 13.33399,
- 42.09819
- ],
- [
- 13.33376,
- 42.1472
- ],
- [
- 13.41772,
- 42.14822
- ],
- [
- 13.41635,
- 42.25052
- ],
- [
- 13.33399,
- 42.24984
- ],
- [
- 13.33353,
- 42.30094
- ],
- [
- 13.25141,
- 42.29992
- ],
- [
- 13.25003,
- 42.54699
- ],
- [
- 13.41795,
- 42.54817
- ],
- [
- 13.41589,
- 42.75065
- ],
- [
- 13.33468,
- 42.74947
- ],
- [
- 13.33307,
- 42.90056
- ],
- [
- 13.16836,
- 42.89938
- ],
- [
- 13.16721,
- 42.95079
- ],
- [
- 12.96419,
- 42.95012
- ],
- [
- 12.96258,
- 43.0003
- ],
- [
- 12.91877,
- 42.9998
- ],
- [
- 12.91601,
- 43.25078
- ],
- [
- 12.83526,
- 43.24994
- ],
- [
- 12.83228,
- 43.50107
- ],
- [
- 12.66321,
- 43.4994
- ],
- [
- 12.66482,
- 43.45112
- ],
- [
- 12.58567,
- 43.44996
- ],
- [
- 12.58246,
- 43.5508
- ],
- [
- 12.50171,
- 43.5498
- ],
- [
- 12.49987,
- 43.65131
- ],
- [
- 12.16242,
- 43.64915
- ],
- [
- 12.16494,
- 43.60132
- ],
- [
- 12.07891,
- 43.5995
- ],
- [
- 12.0819,
- 43.45196
- ],
- [
- 11.99541,
- 43.44913
- ],
- [
- 11.99862,
- 43.34661
- ],
- [
- 12.07891,
- 43.34795
- ],
- [
- 12.08075,
- 43.30189
- ],
- [
- 11.9961,
- 43.29955
- ],
- [
- 11.99862,
- 43.20214
- ],
- [
- 11.91237,
- 43.19929
- ],
- [
- 11.91466,
- 43.15212
- ],
- [
- 11.83207,
- 43.14944
- ],
- [
- 11.8323,
- 43.09653
- ],
- [
- 11.91099,
- 43.09837
- ],
- [
- 11.91466,
- 42.90191
- ],
- [
- 11.82909,
- 42.89922
- ],
- [
- 11.83139,
- 42.85231
- ],
- [
- 11.74582,
- 42.84945
- ],
- [
- 11.74811,
- 42.65236
- ],
- [
- 11.6731,
- 42.64966
- ],
- [
- 11.67493,
- 42.6105
- ],
- [
- 11.49485,
- 42.59936
- ],
- [
- 11.49852,
- 42.49593
- ],
- [
- 11.57812,
- 42.49796
- ],
- [
- 11.58156,
- 42.45244
- ],
- [
- 11.41226,
- 42.44872
- ],
- [
- 11.41524,
- 42.34656
- ],
- [
- 11.49599,
- 42.34792
- ],
- [
- 11.49921,
- 42.29636
- ],
- [
- 11.57835,
- 42.29822
- ],
- [
- 11.58225,
- 42.24628
- ],
- [
- 11.66185,
- 42.24832
- ],
- [
- 11.66621,
- 42.09649
- ],
- [
- 11.74536,
- 42.09819
- ],
- [
- 11.74903,
- 41.99666
- ],
- [
- 11.91443,
- 41.99922
- ],
- [
- 11.91535,
- 41.98626
- ],
- [
- 11.99403,
- 41.98745
- ],
- [
- 11.99862,
- 41.89685
- ],
- [
- 12.07868,
- 41.89907
- ],
- [
- 12.08144,
- 41.84594
- ],
- [
- 12.16311,
- 41.84799
- ],
- [
- 12.16563,
- 41.6964
- ],
- [
- 12.3292,
- 41.69863
- ],
- [
- 12.33149,
- 41.64637
- ]
- ]
- ]
- },
- {
- "id": "Actueel_ortho25_WMS",
- "name": "PDOK aerial imagery Beeldmateriaal.nl 25cm latest",
- "type": "tms",
- "template": "https://geodata.nationaalgeoregister.nl/luchtfoto/rgb/wmts?FORMAT=image/jpeg&SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=Actueel_ortho25&STYLE=&FORMAT=image/jpeg&tileMatrixSet=OGC:1.0:GoogleMapsCompatible&tileMatrix={zoom}&tileRow={y}&tileCol={x}",
- "scaleExtent": [
- 0,
- 19
- ],
- "polygon": [
- [
- [
- 3.14377,
- 51.35984
- ],
- [
- 3.1575,
- 51.24113
- ],
- [
- 3.33878,
- 51.11544
- ],
- [
- 3.91281,
- 51.05851
- ],
- [
- 4.65714,
- 51.28067
- ],
- [
- 4.89334,
- 51.26348
- ],
- [
- 5.17899,
- 51.12579
- ],
- [
- 5.38498,
- 51.13096
- ],
- [
- 5.54428,
- 51.05678
- ],
- [
- 5.42069,
- 50.85956
- ],
- [
- 5.46738,
- 50.70326
- ],
- [
- 5.65689,
- 50.61926
- ],
- [
- 6.14853,
- 50.62143
- ],
- [
- 6.30234,
- 50.85782
- ],
- [
- 6.29959,
- 50.95438
- ],
- [
- 6.26389,
- 51.01835
- ],
- [
- 6.37238,
- 51.09259
- ],
- [
- 6.40122,
- 51.20114
- ],
- [
- 6.37375,
- 51.25102
- ],
- [
- 6.44516,
- 51.31587
- ],
- [
- 6.42044,
- 51.5496
- ],
- [
- 6.34354,
- 51.67922
- ],
- [
- 6.79672,
- 51.76429
- ],
- [
- 7.04666,
- 51.91024
- ],
- [
- 7.07138,
- 52.04559
- ],
- [
- 7.27188,
- 52.17041
- ],
- [
- 7.30759,
- 52.38551
- ],
- [
- 7.20596,
- 52.53195
- ],
- [
- 7.28287,
- 52.61458
- ],
- [
- 7.29935,
- 52.77853
- ],
- [
- 7.44217,
- 52.97827
- ],
- [
- 7.43393,
- 53.28314
- ],
- [
- 7.04392,
- 53.55159
- ],
- [
- 6.78299,
- 53.63635
- ],
- [
- 6.23917,
- 53.54016
- ],
- [
- 5.6871,
- 53.51241
- ],
- [
- 5.17349,
- 53.43885
- ],
- [
- 4.81644,
- 53.23384
- ],
- [
- 4.65164,
- 53.06583
- ],
- [
- 4.54178,
- 52.48598
- ],
- [
- 4.32205,
- 52.19568
- ],
- [
- 4.08104,
- 52.01369
- ],
- [
- 4.02199,
- 52.01623
- ],
- [
- 3.93684,
- 51.96379
- ],
- [
- 3.95195,
- 51.88079
- ],
- [
- 3.84483,
- 51.84942
- ],
- [
- 3.62373,
- 51.70752
- ],
- [
- 3.65532,
- 51.66069
- ],
- [
- 3.63335,
- 51.62746
- ],
- [
- 3.54683,
- 51.62234
- ],
- [
- 3.39577,
- 51.56091
- ],
- [
- 3.38203,
- 51.51735
- ],
- [
- 3.49876,
- 51.43267
- ],
- [
- 3.32985,
- 51.38556
- ],
- [
- 3.14377,
- 51.35984
- ]
- ]
- ],
- "terms_url": "https://www.nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/search?facet.q=license%2FCC-BY&isChild=%27false%27&resultType=details&any_OR_title_OR_keyword=luchtfoto&fast=index&_content_type=json&from=1&to=20&sortBy=relevance",
- "terms_text": "Kadaster / Beeldmateriaal.nl, CC BY 4.0",
- "best": true,
- "description": "Nationwide data set 25cm resolution color aerial imagery of the most recent year.",
- "icon": "data:image/png;base64,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"
- },
- {
- "id": "al_piranhas",
- "name": "Piranhas AL",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Piranhas&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -37.71918,
- -9.65236
- ],
- [
- -37.71918,
- -9.63874
- ],
- [
- -37.71914,
- -9.6321
- ],
- [
- -37.71924,
- -9.62114
- ],
- [
- -37.71929,
- -9.61023
- ],
- [
- -37.71934,
- -9.59988
- ],
- [
- -37.7194,
- -9.58891
- ],
- [
- -37.71945,
- -9.57802
- ],
- [
- -37.71944,
- -9.57173
- ],
- [
- -37.71952,
- -9.56684
- ],
- [
- -37.71956,
- -9.56225
- ],
- [
- -37.71998,
- -9.56218
- ],
- [
- -37.72258,
- -9.56195
- ],
- [
- -37.72818,
- -9.56203
- ],
- [
- -37.73254,
- -9.562
- ],
- [
- -37.74107,
- -9.56206
- ],
- [
- -37.74845,
- -9.56202
- ],
- [
- -37.75926,
- -9.56216
- ],
- [
- -37.76972,
- -9.56227
- ],
- [
- -37.78036,
- -9.56244
- ],
- [
- -37.78537,
- -9.56236
- ],
- [
- -37.78907,
- -9.56233
- ],
- [
- -37.79562,
- -9.56245
- ],
- [
- -37.79771,
- -9.56237
- ],
- [
- -37.81006,
- -9.56243
- ],
- [
- -37.81061,
- -9.56241
- ],
- [
- -37.81053,
- -9.56531
- ],
- [
- -37.81049,
- -9.57629
- ],
- [
- -37.81046,
- -9.58742
- ],
- [
- -37.81038,
- -9.59757
- ],
- [
- -37.81031,
- -9.61798
- ],
- [
- -37.81018,
- -9.65197
- ],
- [
- -37.81018,
- -9.6523
- ],
- [
- -37.81024,
- -9.65259
- ],
- [
- -37.80664,
- -9.65245
- ],
- [
- -37.80206,
- -9.65253
- ],
- [
- -37.79597,
- -9.65237
- ],
- [
- -37.79179,
- -9.65252
- ],
- [
- -37.78815,
- -9.65246
- ],
- [
- -37.78723,
- -9.65242
- ],
- [
- -37.78035,
- -9.65241
- ],
- [
- -37.77865,
- -9.65223
- ],
- [
- -37.77625,
- -9.6523
- ],
- [
- -37.77475,
- -9.65219
- ],
- [
- -37.77234,
- -9.65223
- ],
- [
- -37.7696,
- -9.65245
- ],
- [
- -37.76623,
- -9.65251
- ],
- [
- -37.76345,
- -9.65246
- ],
- [
- -37.7604,
- -9.6525
- ],
- [
- -37.75102,
- -9.65237
- ],
- [
- -37.75012,
- -9.65249
- ],
- [
- -37.74155,
- -9.65248
- ],
- [
- -37.7403,
- -9.65239
- ],
- [
- -37.73785,
- -9.65246
- ],
- [
- -37.73443,
- -9.65238
- ],
- [
- -37.73106,
- -9.65243
- ],
- [
- -37.72651,
- -9.65237
- ],
- [
- -37.72195,
- -9.65225
- ],
- [
- -37.71992,
- -9.65228
- ],
- [
- -37.71918,
- -9.65236
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "PNOA-Spain-TMS",
- "name": "PNOA Spain",
- "type": "tms",
- "template": "https://www.ign.es/wmts/pnoa-ma?request=GetTile&service=WMTS&VERSION=1.0.0&Layer=OI.OrthoimageCoverage&Style=default&Format=image/png&TileMatrixSet=GoogleMapsCompatible&TileMatrix={zoom}&TileRow={y}&TileCol={x}",
- "polygon": [
- [
- [
- -17.88463,
- 28.44606
- ],
- [
- -17.89395,
- 28.52255
- ],
- [
- -18.02125,
- 28.74819
- ],
- [
- -18.02241,
- 28.80384
- ],
- [
- -17.9424,
- 28.87261
- ],
- [
- -17.89118,
- 28.87371
- ],
- [
- -17.89033,
- 28.85151
- ],
- [
- -17.76759,
- 28.85378
- ],
- [
- -17.76698,
- 28.83122
- ],
- [
- -17.74127,
- 28.832
- ],
- [
- -17.73949,
- 28.76422
- ],
- [
- -17.71398,
- 28.76497
- ],
- [
- -17.71293,
- 28.73037
- ],
- [
- -17.75744,
- 28.69318
- ],
- [
- -17.75708,
- 28.67413
- ],
- [
- -17.74579,
- 28.67435
- ],
- [
- -17.74573,
- 28.61656
- ],
- [
- -17.75197,
- 28.58337
- ],
- [
- -17.76225,
- 28.5592
- ],
- [
- -17.78331,
- 28.54167
- ],
- [
- -17.78316,
- 28.49366
- ],
- [
- -17.80861,
- 28.4925
- ],
- [
- -17.80601,
- 28.4469
- ],
- [
- -17.88463,
- 28.44606
- ]
- ],
- [
- [
- -18.1661,
- 27.78516
- ],
- [
- -18.16349,
- 27.69492
- ],
- [
- -18.08898,
- 27.69634
- ],
- [
- -18.08734,
- 27.67387
- ],
- [
- -18.03641,
- 27.67537
- ],
- [
- -18.03501,
- 27.63026
- ],
- [
- -17.959,
- 27.6324
- ],
- [
- -17.86033,
- 27.7926
- ],
- [
- -17.86303,
- 27.83688
- ],
- [
- -17.8884,
- 27.83649
- ],
- [
- -17.88913,
- 27.85905
- ],
- [
- -17.99065,
- 27.85675
- ],
- [
- -18.03868,
- 27.76558
- ],
- [
- -18.11464,
- 27.76379
- ],
- [
- -18.11546,
- 27.78636
- ],
- [
- -18.1661,
- 27.78516
- ]
- ],
- [
- [
- -17.36038,
- 28.06398
- ],
- [
- -17.36297,
- 28.17572
- ],
- [
- -17.33756,
- 28.17637
- ],
- [
- -17.33846,
- 28.2213
- ],
- [
- -17.18579,
- 28.22388
- ],
- [
- -17.08208,
- 28.13518
- ],
- [
- -17.08084,
- 28.068
- ],
- [
- -17.13154,
- 28.06681
- ],
- [
- -17.15633,
- 28.02146
- ],
- [
- -17.23211,
- 28.02037
- ],
- [
- -17.23199,
- 27.99804
- ],
- [
- -17.25768,
- 27.99784
- ],
- [
- -17.25785,
- 28.01997
- ],
- [
- -17.30867,
- 28.01923
- ],
- [
- -17.36038,
- 28.06398
- ]
- ],
- [
- [
- -16.92782,
- 28.32758
- ],
- [
- -16.92866,
- 28.37219
- ],
- [
- -16.87767,
- 28.37293
- ],
- [
- -16.87807,
- 28.39542
- ],
- [
- -16.52143,
- 28.42261
- ],
- [
- -16.44571,
- 28.49113
- ],
- [
- -16.44625,
- 28.53597
- ],
- [
- -16.42059,
- 28.53627
- ],
- [
- -16.42092,
- 28.55884
- ],
- [
- -16.34433,
- 28.55976
- ],
- [
- -16.3446,
- 28.58221
- ],
- [
- -16.19125,
- 28.58372
- ],
- [
- -16.19162,
- 28.60684
- ],
- [
- -16.12793,
- 28.60782
- ],
- [
- -16.1278,
- 28.59218
- ],
- [
- -16.09951,
- 28.5925
- ],
- [
- -16.09934,
- 28.51638
- ],
- [
- -16.16481,
- 28.51612
- ],
- [
- -16.16475,
- 28.49386
- ],
- [
- -16.23858,
- 28.44847
- ],
- [
- -16.26535,
- 28.44761
- ],
- [
- -16.26586,
- 28.403
- ],
- [
- -16.31675,
- 28.40176
- ],
- [
- -16.31631,
- 28.38019
- ],
- [
- -16.34208,
- 28.37951
- ],
- [
- -16.34083,
- 28.2893
- ],
- [
- -16.41584,
- 28.19761
- ],
- [
- -16.4151,
- 28.13113
- ],
- [
- -16.51533,
- 28.01648
- ],
- [
- -16.61684,
- 28.01532
- ],
- [
- -16.61681,
- 27.99305
- ],
- [
- -16.71842,
- 27.99192
- ],
- [
- -16.7191,
- 28.03714
- ],
- [
- -16.7447,
- 28.03679
- ],
- [
- -16.74534,
- 28.08181
- ],
- [
- -16.7707,
- 28.08161
- ],
- [
- -16.8224,
- 28.1259
- ],
- [
- -16.82317,
- 28.17087
- ],
- [
- -16.8487,
- 28.17075
- ],
- [
- -16.85028,
- 28.26079
- ],
- [
- -16.87565,
- 28.26055
- ],
- [
- -16.87608,
- 28.28322
- ],
- [
- -16.90151,
- 28.28277
- ],
- [
- -16.90239,
- 28.32793
- ],
- [
- -16.92782,
- 28.32758
- ]
- ],
- [
- [
- -15.85374,
- 27.90089
- ],
- [
- -15.8542,
- 27.99018
- ],
- [
- -15.82895,
- 27.99066
- ],
- [
- -15.82911,
- 28.03558
- ],
- [
- -15.7783,
- 28.03632
- ],
- [
- -15.75328,
- 28.08143
- ],
- [
- -15.72788,
- 28.08157
- ],
- [
- -15.72826,
- 28.17186
- ],
- [
- -15.49897,
- 28.1728
- ],
- [
- -15.49874,
- 28.15041
- ],
- [
- -15.44978,
- 28.15075
- ],
- [
- -15.45016,
- 28.19614
- ],
- [
- -15.39728,
- 28.19614
- ],
- [
- -15.39644,
- 28.03836
- ],
- [
- -15.37103,
- 28.03802
- ],
- [
- -15.37065,
- 28.01532
- ],
- [
- -15.34578,
- 28.01532
- ],
- [
- -15.34548,
- 27.92544
- ],
- [
- -15.3708,
- 27.92524
- ],
- [
- -15.37057,
- 27.83521
- ],
- [
- -15.39598,
- 27.83474
- ],
- [
- -15.421,
- 27.78797
- ],
- [
- -15.47181,
- 27.78939
- ],
- [
- -15.47188,
- 27.76665
- ],
- [
- -15.52277,
- 27.76678
- ],
- [
- -15.54771,
- 27.72161
- ],
- [
- -15.62361,
- 27.72134
- ],
- [
- -15.62415,
- 27.74199
- ],
- [
- -15.70075,
- 27.74335
- ],
- [
- -15.80167,
- 27.81105
- ],
- [
- -15.85374,
- 27.90089
- ]
- ],
- [
- [
- -14.52156,
- 28.04678
- ],
- [
- -14.52244,
- 28.11841
- ],
- [
- -14.41575,
- 28.11561
- ],
- [
- -14.21688,
- 28.22788
- ],
- [
- -14.21537,
- 28.33903
- ],
- [
- -14.16417,
- 28.45283
- ],
- [
- -14.11151,
- 28.4748
- ],
- [
- -14.03358,
- 28.72267
- ],
- [
- -13.95652,
- 28.74494
- ],
- [
- -13.95617,
- 28.76659
- ],
- [
- -13.82902,
- 28.76643
- ],
- [
- -13.82896,
- 28.78798
- ],
- [
- -13.80007,
- 28.78793
- ],
- [
- -13.8013,
- 28.71899
- ],
- [
- -13.82757,
- 28.71935
- ],
- [
- -13.82786,
- 28.6518
- ],
- [
- -13.80258,
- 28.6519
- ],
- [
- -13.80339,
- 28.53842
- ],
- [
- -13.82885,
- 28.53847
- ],
- [
- -13.83151,
- 28.39702
- ],
- [
- -13.91582,
- 28.22414
- ],
- [
- -13.98564,
- 28.22357
- ],
- [
- -14.03696,
- 28.17958
- ],
- [
- -14.13871,
- 28.17999
- ],
- [
- -14.13866,
- 28.15791
- ],
- [
- -14.21537,
- 28.15781
- ],
- [
- -14.21472,
- 28.11189
- ],
- [
- -14.29132,
- 28.04524
- ],
- [
- -14.33197,
- 28.03687
- ],
- [
- -14.44578,
- 28.04698
- ],
- [
- -14.44666,
- 28.0658
- ],
- [
- -14.49628,
- 28.06826
- ],
- [
- -14.49593,
- 28.04585
- ],
- [
- -14.52156,
- 28.04678
- ]
- ],
- [
- [
- -13.80066,
- 28.84566
- ],
- [
- -13.80093,
- 28.82311
- ],
- [
- -13.77569,
- 28.82305
- ],
- [
- -13.69729,
- 28.88982
- ],
- [
- -13.69729,
- 28.91277
- ],
- [
- -13.60725,
- 28.9118
- ],
- [
- -13.43886,
- 29.00024
- ],
- [
- -13.43746,
- 29.13513
- ],
- [
- -13.4117,
- 29.13499
- ],
- [
- -13.41056,
- 29.22298
- ],
- [
- -13.45928,
- 29.25559
- ],
- [
- -13.45974,
- 29.2942
- ],
- [
- -13.50913,
- 29.29456
- ],
- [
- -13.51006,
- 29.31635
- ],
- [
- -13.56354,
- 29.31729
- ],
- [
- -13.56406,
- 29.27138
- ],
- [
- -13.53892,
- 29.2712
- ],
- [
- -13.53897,
- 29.25004
- ],
- [
- -13.56613,
- 29.25013
- ],
- [
- -13.5666,
- 29.203
- ],
- [
- -13.51565,
- 29.20223
- ],
- [
- -13.51565,
- 29.18206
- ],
- [
- -13.5398,
- 29.18278
- ],
- [
- -13.54089,
- 29.13753
- ],
- [
- -13.65782,
- 29.13685
- ],
- [
- -13.71322,
- 29.09351
- ],
- [
- -13.76634,
- 29.09345
- ],
- [
- -13.85025,
- 29.01659
- ],
- [
- -13.85182,
- 28.98343
- ],
- [
- -13.85244,
- 28.91486
- ],
- [
- -13.90131,
- 28.89245
- ],
- [
- -13.9024,
- 28.84698
- ],
- [
- -13.80066,
- 28.84566
- ]
- ],
- [
- [
- 1.64799,
- 38.99907
- ],
- [
- 1.73217,
- 38.99936
- ],
- [
- 1.73147,
- 39.04417
- ],
- [
- 1.64895,
- 39.04319
- ],
- [
- 1.64816,
- 39.12764
- ],
- [
- 1.39486,
- 39.12657
- ],
- [
- 1.39544,
- 39.08642
- ],
- [
- 1.22811,
- 39.08526
- ],
- [
- 1.22911,
- 39.0029
- ],
- [
- 1.14487,
- 39.0018
- ],
- [
- 1.14528,
- 38.832
- ],
- [
- 1.31136,
- 38.83316
- ],
- [
- 1.31219,
- 38.79065
- ],
- [
- 1.39469,
- 38.79162
- ],
- [
- 1.39519,
- 38.75296
- ],
- [
- 1.31128,
- 38.75193
- ],
- [
- 1.31259,
- 38.62388
- ],
- [
- 1.6489,
- 38.62511
- ],
- [
- 1.64807,
- 38.71115
- ],
- [
- 1.58456,
- 38.71012
- ],
- [
- 1.58116,
- 38.70054
- ],
- [
- 1.54915,
- 38.70028
- ],
- [
- 1.51972,
- 38.70921
- ],
- [
- 1.50355,
- 38.72532
- ],
- [
- 1.48133,
- 38.91551
- ],
- [
- 1.55189,
- 38.92544
- ],
- [
- 1.56673,
- 38.95666
- ],
- [
- 1.64874,
- 38.95833
- ],
- [
- 1.64799,
- 38.99907
- ]
- ],
- [
- [
- 2.54507,
- 39.41667
- ],
- [
- 2.43933,
- 39.41611
- ],
- [
- 2.43871,
- 39.48469
- ],
- [
- 2.43902,
- 39.49934
- ],
- [
- 2.31223,
- 39.49934
- ],
- [
- 2.31192,
- 39.54179
- ],
- [
- 2.22907,
- 39.541
- ],
- [
- 2.22835,
- 39.62606
- ],
- [
- 2.34601,
- 39.62709
- ],
- [
- 2.92704,
- 39.96016
- ],
- [
- 3.14566,
- 39.96005
- ],
- [
- 3.14608,
- 40.00198
- ],
- [
- 3.23139,
- 40.00198
- ],
- [
- 3.23129,
- 39.83292
- ],
- [
- 3.14823,
- 39.83316
- ],
- [
- 3.14844,
- 39.79357
- ],
- [
- 3.48148,
- 39.79318
- ],
- [
- 3.48035,
- 39.5959
- ],
- [
- 3.31506,
- 39.47846
- ],
- [
- 3.31462,
- 39.37855
- ],
- [
- 3.08302,
- 39.24994
- ],
- [
- 2.97986,
- 39.25015
- ],
- [
- 2.97904,
- 39.3335
- ],
- [
- 2.72874,
- 39.33342
- ],
- [
- 2.72885,
- 39.45814
- ],
- [
- 2.64569,
- 39.45774
- ],
- [
- 2.64538,
- 39.49966
- ],
- [
- 2.54528,
- 39.49942
- ],
- [
- 2.54507,
- 39.41667
- ]
- ],
- [
- [
- 3.81204,
- 40.04344
- ],
- [
- 3.72908,
- 40.0438
- ],
- [
- 3.72862,
- 39.95842
- ],
- [
- 3.81266,
- 39.9576
- ],
- [
- 3.81228,
- 39.91644
- ],
- [
- 3.9609,
- 39.91598
- ],
- [
- 4.19381,
- 39.79131
- ],
- [
- 4.31503,
- 39.79058
- ],
- [
- 4.31599,
- 39.83293
- ],
- [
- 4.39874,
- 39.83204
- ],
- [
- 4.39737,
- 39.91858
- ],
- [
- 4.3158,
- 39.91933
- ],
- [
- 4.31619,
- 40.0434
- ],
- [
- 4.2319,
- 40.04436
- ],
- [
- 4.23248,
- 40.08478
- ],
- [
- 4.14915,
- 40.08611
- ],
- [
- 4.14906,
- 40.12552
- ],
- [
- 4.0628,
- 40.12722
- ],
- [
- 4.06242,
- 40.08499
- ],
- [
- 3.81287,
- 40.08529
- ],
- [
- 3.81204,
- 40.04344
- ]
- ],
- [
- [
- -8.89106,
- 41.82289
- ],
- [
- -9.1092,
- 42.57511
- ],
- [
- -9.03655,
- 42.73066
- ],
- [
- -9.08834,
- 42.72696
- ],
- [
- -9.14661,
- 42.77503
- ],
- [
- -9.21855,
- 42.90163
- ],
- [
- -9.2761,
- 42.86051
- ],
- [
- -9.30991,
- 42.93113
- ],
- [
- -9.27898,
- 42.9822
- ],
- [
- -9.30991,
- 43.06004
- ],
- [
- -9.25236,
- 43.10417
- ],
- [
- -9.2315,
- 43.17032
- ],
- [
- -9.14733,
- 43.21018
- ],
- [
- -9.06748,
- 43.19916
- ],
- [
- -9.03367,
- 43.24267
- ],
- [
- -8.99842,
- 43.24477
- ],
- [
- -8.99986,
- 43.29558
- ],
- [
- -8.93727,
- 43.30553
- ],
- [
- -8.92936,
- 43.32699
- ],
- [
- -8.8639,
- 43.32908
- ],
- [
- -8.87613,
- 43.37407
- ],
- [
- -8.82217,
- 43.37354
- ],
- [
- -8.78548,
- 43.31914
- ],
- [
- -8.70635,
- 43.305
- ],
- [
- -8.60996,
- 43.3296
- ],
- [
- -8.55097,
- 43.32332
- ],
- [
- -8.52435,
- 43.3364
- ],
- [
- -8.52507,
- 43.36465
- ],
- [
- -8.45745,
- 43.39184
- ],
- [
- -8.36105,
- 43.41118
- ],
- [
- -8.36033,
- 43.46342
- ],
- [
- -8.33444,
- 43.57974
- ],
- [
- -8.27761,
- 43.57088
- ],
- [
- -8.06467,
- 43.72392
- ],
- [
- -7.99921,
- 43.7234
- ],
- [
- -7.9172,
- 43.78264
- ],
- [
- -7.85605,
- 43.79146
- ],
- [
- -7.83591,
- 43.73743
- ],
- [
- -7.66284,
- 43.80982
- ],
- [
- -7.31889,
- 43.67827
- ],
- [
- -7.19975,
- 43.58308
- ],
- [
- -6.24882,
- 43.6075
- ],
- [
- -6.12293,
- 43.57901
- ],
- [
- -5.85204,
- 43.6799
- ],
- [
- -5.60363,
- 43.57087
- ],
- [
- -5.28553,
- 43.56191
- ],
- [
- -5.17875,
- 43.49916
- ],
- [
- -4.90899,
- 43.48367
- ],
- [
- -4.61562,
- 43.4192
- ],
- [
- -4.18399,
- 43.42492
- ],
- [
- -3.80295,
- 43.51954
- ],
- [
- -3.74,
- 43.48693
- ],
- [
- -3.56128,
- 43.54236
- ],
- [
- -3.1083,
- 43.38163
- ],
- [
- -2.93857,
- 43.46246
- ],
- [
- -2.74524,
- 43.47551
- ],
- [
- -2.30462,
- 43.31706
- ],
- [
- -1.9854,
- 43.3563
- ],
- [
- -1.85528,
- 43.39725
- ],
- [
- -1.7698,
- 43.39644
- ],
- [
- -1.77005,
- 43.37605
- ],
- [
- -1.71005,
- 43.37569
- ],
- [
- -1.71135,
- 43.33125
- ],
- [
- -1.72259,
- 43.31318
- ],
- [
- -1.68904,
- 43.31291
- ],
- [
- -1.68811,
- 43.33413
- ],
- [
- -1.64467,
- 43.33372
- ],
- [
- -1.64498,
- 43.31332
- ],
- [
- -1.60299,
- 43.31295
- ],
- [
- -1.60344,
- 43.29266
- ],
- [
- -1.56359,
- 43.29212
- ],
- [
- -1.56305,
- 43.31338
- ],
- [
- -1.47799,
- 43.31284
- ],
- [
- -1.36677,
- 43.27614
- ],
- [
- -1.35688,
- 43.23815
- ],
- [
- -1.37037,
- 43.1713
- ],
- [
- -1.44231,
- 43.08336
- ],
- [
- -1.41983,
- 43.06036
- ],
- [
- -1.37307,
- 43.05117
- ],
- [
- -1.36407,
- 43.11159
- ],
- [
- -1.30203,
- 43.13522
- ],
- [
- -1.23549,
- 43.13325
- ],
- [
- -1.27955,
- 43.07744
- ],
- [
- -1.19232,
- 43.06496
- ],
- [
- -1.00619,
- 43.00778
- ],
- [
- -0.94234,
- 42.9749
- ],
- [
- -0.7562,
- 42.98213
- ],
- [
- -0.71484,
- 42.96108
- ],
- [
- -0.69685,
- 42.90314
- ],
- [
- -0.55118,
- 42.82207
- ],
- [
- -0.50442,
- 42.84845
- ],
- [
- -0.42889,
- 42.82009
- ],
- [
- -0.31648,
- 42.86558
- ],
- [
- -0.14563,
- 42.81086
- ],
- [
- -0.03143,
- 42.71249
- ],
- [
- 0.18618,
- 42.7541
- ],
- [
- 0.30218,
- 42.71777
- ],
- [
- 0.36422,
- 42.74287
- ],
- [
- 0.44875,
- 42.71447
- ],
- [
- 0.62769,
- 42.7224
- ],
- [
- 0.64118,
- 42.85767
- ],
- [
- 0.71492,
- 42.88272
- ],
- [
- 0.9676,
- 42.81811
- ],
- [
- 1.10878,
- 42.79898
- ],
- [
- 1.17532,
- 42.73429
- ],
- [
- 1.36326,
- 42.74155
- ],
- [
- 1.41137,
- 42.70939
- ],
- [
- 1.48061,
- 42.71034
- ],
- [
- 1.4813,
- 42.50107
- ],
- [
- 1.64436,
- 42.50203
- ],
- [
- 1.64328,
- 42.54245
- ],
- [
- 1.73041,
- 42.54342
- ],
- [
- 1.73164,
- 42.50118
- ],
- [
- 2.06386,
- 42.50164
- ],
- [
- 2.06456,
- 42.45902
- ],
- [
- 2.39693,
- 42.45994
- ],
- [
- 2.39768,
- 42.41784
- ],
- [
- 2.48048,
- 42.41797
- ],
- [
- 2.48098,
- 42.37594
- ],
- [
- 2.64479,
- 42.37626
- ],
- [
- 2.64448,
- 42.45924
- ],
- [
- 2.81133,
- 42.45961
- ],
- [
- 2.81126,
- 42.50104
- ],
- [
- 3.06388,
- 42.50085
- ],
- [
- 3.06388,
- 42.45915
- ],
- [
- 3.23078,
- 42.45934
- ],
- [
- 3.23049,
- 42.37644
- ],
- [
- 3.31415,
- 42.37604
- ],
- [
- 3.31412,
- 42.33399
- ],
- [
- 3.39785,
- 42.33404
- ],
- [
- 3.39739,
- 42.29009
- ],
- [
- 3.31389,
- 42.29084
- ],
- [
- 3.31397,
- 42.20702
- ],
- [
- 3.14759,
- 42.2073
- ],
- [
- 3.14759,
- 42.12606
- ],
- [
- 3.23055,
- 42.126
- ],
- [
- 3.24668,
- 41.95294
- ],
- [
- 3.19452,
- 41.85589
- ],
- [
- 3.06054,
- 41.76474
- ],
- [
- 2.78358,
- 41.63718
- ],
- [
- 2.26293,
- 41.42716
- ],
- [
- 2.16492,
- 41.29893
- ],
- [
- 1.86008,
- 41.22322
- ],
- [
- 1.3763,
- 41.11627
- ],
- [
- 1.17937,
- 41.04646
- ],
- [
- 1.08585,
- 41.04849
- ],
- [
- 0.75854,
- 40.81956
- ],
- [
- 0.9114,
- 40.73376
- ],
- [
- 0.87813,
- 40.67514
- ],
- [
- 0.66502,
- 40.53587
- ],
- [
- 0.55801,
- 40.55022
- ],
- [
- 0.43392,
- 40.37576
- ],
- [
- 0.26756,
- 40.19192
- ],
- [
- 0.16415,
- 40.06472
- ],
- [
- 0.07513,
- 40.01447
- ],
- [
- 0.01039,
- 39.89522
- ],
- [
- -0.09392,
- 39.81169
- ],
- [
- -0.18474,
- 39.63117
- ],
- [
- -0.29085,
- 39.50363
- ],
- [
- -0.28636,
- 39.33343
- ],
- [
- -0.18564,
- 39.17746
- ],
- [
- -0.21352,
- 39.15585
- ],
- [
- -0.11101,
- 38.97222
- ],
- [
- 0.00949,
- 38.88268
- ],
- [
- 0.12189,
- 38.87218
- ],
- [
- 0.23429,
- 38.79864
- ],
- [
- 0.25587,
- 38.72642
- ],
- [
- 0.09581,
- 38.61338
- ],
- [
- -0.0022,
- 38.60706
- ],
- [
- -0.05705,
- 38.52691
- ],
- [
- -0.27197,
- 38.47624
- ],
- [
- -0.37987,
- 38.39312
- ],
- [
- -0.38347,
- 38.33813
- ],
- [
- -0.45091,
- 38.33108
- ],
- [
- -0.50487,
- 38.28309
- ],
- [
- -0.48238,
- 38.19481
- ],
- [
- -0.42933,
- 38.16583
- ],
- [
- -0.45451,
- 38.14886
- ],
- [
- -0.584,
- 38.17219
- ],
- [
- -0.61367,
- 38.11986
- ],
- [
- -0.63705,
- 37.96122
- ],
- [
- -0.68111,
- 37.94562
- ],
- [
- -0.73237,
- 37.88107
- ],
- [
- -0.72158,
- 37.78306
- ],
- [
- -0.68831,
- 37.734
- ],
- [
- -0.66415,
- 37.62315
- ],
- [
- -0.71939,
- 37.58784
- ],
- [
- -0.91963,
- 37.53758
- ],
- [
- -1.11071,
- 37.51641
- ],
- [
- -1.33832,
- 37.52867
- ],
- [
- -1.44089,
- 37.39037
- ],
- [
- -1.6767,
- 37.27652
- ],
- [
- -1.85408,
- 36.91229
- ],
- [
- -2.06835,
- 36.69291
- ],
- [
- -2.21588,
- 36.66192
- ],
- [
- -2.37219,
- 36.78018
- ],
- [
- -2.68129,
- 36.65911
- ],
- [
- -2.92015,
- 36.66756
- ],
- [
- -3.09402,
- 36.71263
- ],
- [
- -3.46108,
- 36.65488
- ],
- [
- -3.72804,
- 36.69291
- ],
- [
- -4.37435,
- 36.66333
- ],
- [
- -4.65712,
- 36.44042
- ],
- [
- -4.9188,
- 36.45313
- ],
- [
- -5.16995,
- 36.35135
- ],
- [
- -5.28411,
- 36.19702
- ],
- [
- -5.26809,
- 36.12418
- ],
- [
- -5.35248,
- 36.12247
- ],
- [
- -5.35161,
- 36.04014
- ],
- [
- -5.43658,
- 36.03889
- ],
- [
- -5.43532,
- 36.00344
- ],
- [
- -5.68886,
- 36.00365
- ],
- [
- -5.68996,
- 36.04053
- ],
- [
- -5.85506,
- 36.03856
- ],
- [
- -5.85668,
- 36.12421
- ],
- [
- -5.93848,
- 36.12215
- ],
- [
- -5.94003,
- 36.16556
- ],
- [
- -5.99834,
- 36.1645
- ],
- [
- -6.03573,
- 36.1781
- ],
- [
- -6.07752,
- 36.22241
- ],
- [
- -6.15061,
- 36.28646
- ],
- [
- -6.23154,
- 36.37701
- ],
- [
- -6.33585,
- 36.53106
- ],
- [
- -6.32146,
- 36.58163
- ],
- [
- -6.40419,
- 36.6235
- ],
- [
- -6.47433,
- 36.74897
- ],
- [
- -6.41588,
- 36.79939
- ],
- [
- -6.49052,
- 36.91738
- ],
- [
- -6.62989,
- 37.0194
- ],
- [
- -6.87448,
- 37.10838
- ],
- [
- -7.04264,
- 37.18507
- ],
- [
- -7.26474,
- 37.18435
- ],
- [
- -7.37535,
- 37.15354
- ],
- [
- -7.40832,
- 37.16822
- ],
- [
- -7.42029,
- 37.21183
- ],
- [
- -7.42492,
- 37.23505
- ],
- [
- -7.43805,
- 37.2452
- ],
- [
- -7.44597,
- 37.33261
- ],
- [
- -7.4481,
- 37.39094
- ],
- [
- -7.46963,
- 37.40758
- ],
- [
- -7.4647,
- 37.45305
- ],
- [
- -7.50197,
- 37.51641
- ],
- [
- -7.51916,
- 37.52292
- ],
- [
- -7.52196,
- 37.57237
- ],
- [
- -7.45013,
- 37.66958
- ],
- [
- -7.4249,
- 37.75992
- ],
- [
- -7.31666,
- 37.83997
- ],
- [
- -7.26833,
- 37.98895
- ],
- [
- -7.15368,
- 38.01552
- ],
- [
- -7.11771,
- 38.05536
- ],
- [
- -7.0143,
- 38.02438
- ],
- [
- -6.99632,
- 38.10756
- ],
- [
- -6.96147,
- 38.20125
- ],
- [
- -7.08062,
- 38.15708
- ],
- [
- -7.34027,
- 38.44024
- ],
- [
- -7.26383,
- 38.73807
- ],
- [
- -7.04352,
- 38.87297
- ],
- [
- -7.06151,
- 38.90796
- ],
- [
- -6.96934,
- 39.01983
- ],
- [
- -7.00081,
- 39.08879
- ],
- [
- -7.15368,
- 39.09577
- ],
- [
- -7.15255,
- 39.16029
- ],
- [
- -7.24472,
- 39.19689
- ],
- [
- -7.25596,
- 39.28133
- ],
- [
- -7.33689,
- 39.35351
- ],
- [
- -7.3279,
- 39.45599
- ],
- [
- -7.51449,
- 39.58865
- ],
- [
- -7.55271,
- 39.67954
- ],
- [
- -7.05027,
- 39.67522
- ],
- [
- -6.99519,
- 39.81954
- ],
- [
- -6.92213,
- 39.87909
- ],
- [
- -6.88616,
- 40.02299
- ],
- [
- -7.04128,
- 40.13479
- ],
- [
- -7.01767,
- 40.26615
- ],
- [
- -6.8086,
- 40.34501
- ],
- [
- -6.86818,
- 40.44516
- ],
- [
- -6.85356,
- 40.60664
- ],
- [
- -6.83783,
- 40.87576
- ],
- [
- -6.9536,
- 41.03704
- ],
- [
- -6.80186,
- 41.03959
- ],
- [
- -6.76814,
- 41.13871
- ],
- [
- -6.64112,
- 41.26556
- ],
- [
- -6.56244,
- 41.26303
- ],
- [
- -6.21737,
- 41.5791
- ],
- [
- -6.31628,
- 41.64465
- ],
- [
- -6.51523,
- 41.64129
- ],
- [
- -6.58717,
- 41.68832
- ],
- [
- -6.54783,
- 41.85597
- ],
- [
- -6.62988,
- 41.91121
- ],
- [
- -7.13345,
- 41.94048
- ],
- [
- -7.16829,
- 41.87188
- ],
- [
- -7.42569,
- 41.78477
- ],
- [
- -7.95398,
- 41.84593
- ],
- [
- -8.13045,
- 41.78058
- ],
- [
- -8.25185,
- 41.90786
- ],
- [
- -8.12933,
- 42.03488
- ],
- [
- -8.24848,
- 42.1008
- ],
- [
- -8.36762,
- 42.05575
- ],
- [
- -8.60704,
- 42.03405
- ],
- [
- -8.89106,
- 41.82289
- ]
- ]
- ],
- "terms_text": "PNOA",
- "best": true
- },
- {
- "id": "poco_das_trincheiras",
- "name": "Poço das Trincheiras AL",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Poco%20das%20Trincheiras&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -37.23942,
- -9.35157
- ],
- [
- -37.23947,
- -9.34387
- ],
- [
- -37.23942,
- -9.33792
- ],
- [
- -37.23954,
- -9.33022
- ],
- [
- -37.23973,
- -9.32791
- ],
- [
- -37.23974,
- -9.3228
- ],
- [
- -37.23964,
- -9.32085
- ],
- [
- -37.23971,
- -9.31864
- ],
- [
- -37.2398,
- -9.31706
- ],
- [
- -37.23982,
- -9.31561
- ],
- [
- -37.24053,
- -9.30933
- ],
- [
- -37.24051,
- -9.30004
- ],
- [
- -37.24008,
- -9.29687
- ],
- [
- -37.23998,
- -9.29546
- ],
- [
- -37.23992,
- -9.29319
- ],
- [
- -37.23989,
- -9.28978
- ],
- [
- -37.23995,
- -9.28818
- ],
- [
- -37.24008,
- -9.28641
- ],
- [
- -37.24036,
- -9.28212
- ],
- [
- -37.24038,
- -9.27897
- ],
- [
- -37.24051,
- -9.27557
- ],
- [
- -37.24004,
- -9.26979
- ],
- [
- -37.24018,
- -9.26721
- ],
- [
- -37.24018,
- -9.26612
- ],
- [
- -37.23995,
- -9.26455
- ],
- [
- -37.23983,
- -9.26151
- ],
- [
- -37.24333,
- -9.26136
- ],
- [
- -37.24936,
- -9.26146
- ],
- [
- -37.26445,
- -9.26161
- ],
- [
- -37.28016,
- -9.26172
- ],
- [
- -37.28294,
- -9.26171
- ],
- [
- -37.29581,
- -9.26178
- ],
- [
- -37.30685,
- -9.26178
- ],
- [
- -37.31419,
- -9.26189
- ],
- [
- -37.32437,
- -9.26192
- ],
- [
- -37.33078,
- -9.26175
- ],
- [
- -37.33057,
- -9.27275
- ],
- [
- -37.33048,
- -9.28007
- ],
- [
- -37.33054,
- -9.28117
- ],
- [
- -37.33069,
- -9.28427
- ],
- [
- -37.3307,
- -9.28535
- ],
- [
- -37.33064,
- -9.28617
- ],
- [
- -37.33071,
- -9.28717
- ],
- [
- -37.33064,
- -9.28769
- ],
- [
- -37.33062,
- -9.29027
- ],
- [
- -37.33043,
- -9.29308
- ],
- [
- -37.33038,
- -9.29655
- ],
- [
- -37.33034,
- -9.30591
- ],
- [
- -37.3304,
- -9.31203
- ],
- [
- -37.33038,
- -9.32194
- ],
- [
- -37.33041,
- -9.3342
- ],
- [
- -37.33035,
- -9.34185
- ],
- [
- -37.3303,
- -9.34783
- ],
- [
- -37.33035,
- -9.35202
- ],
- [
- -37.31509,
- -9.35194
- ],
- [
- -37.30011,
- -9.3519
- ],
- [
- -37.29531,
- -9.35183
- ],
- [
- -37.28899,
- -9.35171
- ],
- [
- -37.28497,
- -9.35182
- ],
- [
- -37.27851,
- -9.35173
- ],
- [
- -37.27431,
- -9.35181
- ],
- [
- -37.27115,
- -9.3517
- ],
- [
- -37.26351,
- -9.35168
- ],
- [
- -37.26046,
- -9.35164
- ],
- [
- -37.25402,
- -9.35177
- ],
- [
- -37.24705,
- -9.35163
- ],
- [
- -37.23942,
- -9.35157
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "rio2013",
- "name": "Rio Mosaic 2013",
- "type": "wms",
- "template": "http://geo.rio.rj.gov.br/ArcGIS/services/Imagens/Mosaico_2013/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=1&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2013-01-01T00:00:00.000Z",
- "startDate": "2013-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- -43.17709,
- -22.96971
- ],
- [
- -43.14586,
- -22.96959
- ],
- [
- -43.14605,
- -22.92719
- ],
- [
- -43.15625,
- -22.92731
- ],
- [
- -43.15647,
- -22.87557
- ],
- [
- -43.17739,
- -22.87494
- ],
- [
- -43.17742,
- -22.88553
- ],
- [
- -43.19804,
- -22.88571
- ],
- [
- -43.19804,
- -22.85429
- ],
- [
- -43.21875,
- -22.85444
- ],
- [
- -43.21901,
- -22.83365
- ],
- [
- -43.22937,
- -22.83365
- ],
- [
- -43.22934,
- -22.82371
- ],
- [
- -43.19869,
- -22.82353
- ],
- [
- -43.19856,
- -22.83413
- ],
- [
- -43.18826,
- -22.83398
- ],
- [
- -43.18804,
- -22.84448
- ],
- [
- -43.16667,
- -22.84442
- ],
- [
- -43.16683,
- -22.83404
- ],
- [
- -43.15638,
- -22.83407
- ],
- [
- -43.15654,
- -22.81336
- ],
- [
- -43.10436,
- -22.81306
- ],
- [
- -43.10446,
- -22.80288
- ],
- [
- -43.09387,
- -22.80276
- ],
- [
- -43.0941,
- -22.73998
- ],
- [
- -43.13599,
- -22.73992
- ],
- [
- -43.13569,
- -22.75067
- ],
- [
- -43.12573,
- -22.75055
- ],
- [
- -43.12556,
- -22.77118
- ],
- [
- -43.14595,
- -22.77109
- ],
- [
- -43.14612,
- -22.76055
- ],
- [
- -43.17771,
- -22.76088
- ],
- [
- -43.17758,
- -22.77115
- ],
- [
- -43.18807,
- -22.7713
- ],
- [
- -43.18807,
- -22.78166
- ],
- [
- -43.25067,
- -22.78163
- ],
- [
- -43.25057,
- -22.79198
- ],
- [
- -43.28054,
- -22.79282
- ],
- [
- -43.30343,
- -22.79312
- ],
- [
- -43.33353,
- -22.79297
- ],
- [
- -43.33347,
- -22.80258
- ],
- [
- -43.38574,
- -22.8024
- ],
- [
- -43.38542,
- -22.81255
- ],
- [
- -43.41691,
- -22.81285
- ],
- [
- -43.41675,
- -22.82341
- ],
- [
- -43.42717,
- -22.82335
- ],
- [
- -43.4274,
- -22.83374
- ],
- [
- -43.45844,
- -22.83362
- ],
- [
- -43.45864,
- -22.81276
- ],
- [
- -43.48984,
- -22.813
- ],
- [
- -43.48994,
- -22.7965
- ],
- [
- -43.50208,
- -22.79746
- ],
- [
- -43.51543,
- -22.79737
- ],
- [
- -43.52078,
- -22.79591
- ],
- [
- -43.54169,
- -22.79603
- ],
- [
- -43.54179,
- -22.80234
- ],
- [
- -43.54653,
- -22.80246
- ],
- [
- -43.54666,
- -22.81189
- ],
- [
- -43.55251,
- -22.81279
- ],
- [
- -43.56991,
- -22.81294
- ],
- [
- -43.56998,
- -22.8197
- ],
- [
- -43.57361,
- -22.82326
- ],
- [
- -43.58348,
- -22.82329
- ],
- [
- -43.58352,
- -22.83347
- ],
- [
- -43.59391,
- -22.83374
- ],
- [
- -43.59394,
- -22.85468
- ],
- [
- -43.66099,
- -22.85459
- ],
- [
- -43.66099,
- -22.85983
- ],
- [
- -43.70852,
- -22.86019
- ],
- [
- -43.70836,
- -22.86503
- ],
- [
- -43.72206,
- -22.86488
- ],
- [
- -43.72213,
- -22.86847
- ],
- [
- -43.75015,
- -22.86859
- ],
- [
- -43.75009,
- -22.8753
- ],
- [
- -43.76038,
- -22.87527
- ],
- [
- -43.75992,
- -22.8785
- ],
- [
- -43.75976,
- -22.88457
- ],
- [
- -43.76132,
- -22.88586
- ],
- [
- -43.78129,
- -22.8858
- ],
- [
- -43.78126,
- -22.89591
- ],
- [
- -43.80213,
- -22.89621
- ],
- [
- -43.80135,
- -22.91137
- ],
- [
- -43.80119,
- -22.92758
- ],
- [
- -43.79213,
- -22.92776
- ],
- [
- -43.7922,
- -22.93822
- ],
- [
- -43.78191,
- -22.93799
- ],
- [
- -43.78184,
- -22.94869
- ],
- [
- -43.75067,
- -22.94845
- ],
- [
- -43.7506,
- -22.95909
- ],
- [
- -43.72986,
- -22.95886
- ],
- [
- -43.72966,
- -22.97984
- ],
- [
- -43.70904,
- -22.97966
- ],
- [
- -43.70891,
- -22.99033
- ],
- [
- -43.69846,
- -22.99006
- ],
- [
- -43.69836,
- -23.00065
- ],
- [
- -43.66735,
- -23.00044
- ],
- [
- -43.66726,
- -23.01117
- ],
- [
- -43.63125,
- -23.00937
- ],
- [
- -43.63131,
- -23.02079
- ],
- [
- -43.63586,
- -23.02091
- ],
- [
- -43.63602,
- -23.03164
- ],
- [
- -43.67771,
- -23.03164
- ],
- [
- -43.67765,
- -23.04233
- ],
- [
- -43.67086,
- -23.0423
- ],
- [
- -43.67109,
- -23.0631
- ],
- [
- -43.64599,
- -23.06304
- ],
- [
- -43.64605,
- -23.05276
- ],
- [
- -43.60475,
- -23.05255
- ],
- [
- -43.60452,
- -23.06307
- ],
- [
- -43.58381,
- -23.06289
- ],
- [
- -43.58368,
- -23.08404
- ],
- [
- -43.54186,
- -23.08383
- ],
- [
- -43.54195,
- -23.06319
- ],
- [
- -43.52147,
- -23.06301
- ],
- [
- -43.5213,
- -23.07352
- ],
- [
- -43.50043,
- -23.07337
- ],
- [
- -43.50043,
- -23.04218
- ],
- [
- -43.45877,
- -23.04221
- ],
- [
- -43.4587,
- -23.03194
- ],
- [
- -43.43782,
- -23.03182
- ],
- [
- -43.43776,
- -23.02154
- ],
- [
- -43.3235,
- -23.02121
- ],
- [
- -43.3233,
- -23.04212
- ],
- [
- -43.31291,
- -23.04195
- ],
- [
- -43.31275,
- -23.05267
- ],
- [
- -43.30239,
- -23.05258
- ],
- [
- -43.30236,
- -23.04227
- ],
- [
- -43.29194,
- -23.04215
- ],
- [
- -43.29197,
- -23.03194
- ],
- [
- -43.27109,
- -23.03182
- ],
- [
- -43.27119,
- -23.01093
- ],
- [
- -43.26061,
- -23.01087
- ],
- [
- -43.26067,
- -23.00059
- ],
- [
- -43.25057,
- -23.00047
- ],
- [
- -43.25054,
- -23.01126
- ],
- [
- -43.23989,
- -23.01102
- ],
- [
- -43.23986,
- -23.00062
- ],
- [
- -43.21908,
- -23.0005
- ],
- [
- -43.21904,
- -22.99021
- ],
- [
- -43.20901,
- -22.99009
- ],
- [
- -43.20862,
- -23.08389
- ],
- [
- -43.18768,
- -23.08377
- ],
- [
- -43.18761,
- -23.07334
- ],
- [
- -43.13582,
- -23.07337
- ],
- [
- -43.13589,
- -23.05249
- ],
- [
- -43.17732,
- -23.05255
- ],
- [
- -43.17709,
- -22.96971
- ]
- ]
- ],
- "terms_url": "https://pgeo3.rio.rj.gov.br/arcgis/rest/services/Imagens/Mosaico_2013_UTM/MapServer",
- "terms_text": "Instituto Pereira Passos - Prefeitura da Cidade do Rio de Janeiro."
- },
- {
- "id": "rio2015",
- "name": "Rio Mosaic 2015",
- "type": "wms",
- "template": "https://pgeo3.rio.rj.gov.br/arcgis/services/Imagens/Mosaico_2015_UTM/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2015-01-01T00:00:00.000Z",
- "startDate": "2015-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 13
- ],
- "polygon": [
- [
- [
- -42.30363,
- -22.43698
- ],
- [
- -44.10842,
- -22.06579
- ],
- [
- -44.5313,
- -23.7863
- ],
- [
- -42.70469,
- -24.16178
- ],
- [
- -42.30363,
- -22.43698
- ]
- ]
- ],
- "terms_url": "https://pgeo3.rio.rj.gov.br/arcgis/rest/services/Imagens/Mosaico_2015_UTM/MapServer",
- "terms_text": "Instituto Pereira Passos - Prefeitura da Cidade do Rio de Janeiro."
- },
- {
- "id": "route500",
- "name": "Route 500",
- "type": "tms",
- "template": "https://{switch:a,b,c}.tile.openstreetmap.fr/route500/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 12,
- 20
- ],
- "polygon": [
- [
- [
- -2.7,
- 43.9
- ],
- [
- -6.3,
- 48.98
- ],
- [
- -2.25,
- 50.09
- ],
- [
- 1.31,
- 50.88
- ],
- [
- 2.35816,
- 51.32937
- ],
- [
- 2.5488,
- 51.09759
- ],
- [
- 2.57048,
- 51.07409
- ],
- [
- 2.58741,
- 51.01763
- ],
- [
- 2.59845,
- 51.0051
- ],
- [
- 2.61558,
- 50.99749
- ],
- [
- 2.63986,
- 50.95766
- ],
- [
- 2.64225,
- 50.94578
- ],
- [
- 2.62452,
- 50.9256
- ],
- [
- 2.61962,
- 50.91067
- ],
- [
- 2.62396,
- 50.86071
- ],
- [
- 2.62781,
- 50.85054
- ],
- [
- 2.63786,
- 50.83696
- ],
- [
- 2.6511,
- 50.82906
- ],
- [
- 2.73267,
- 50.81738
- ],
- [
- 2.79995,
- 50.73795
- ],
- [
- 2.81655,
- 50.73092
- ],
- [
- 2.85265,
- 50.73335
- ],
- [
- 2.89072,
- 50.7162
- ],
- [
- 2.90492,
- 50.71536
- ],
- [
- 2.9161,
- 50.72418
- ],
- [
- 2.93508,
- 50.75592
- ],
- [
- 3.00718,
- 50.78377
- ],
- [
- 3.08218,
- 50.78749
- ],
- [
- 3.09244,
- 50.79092
- ],
- [
- 3.11412,
- 50.80566
- ],
- [
- 3.14877,
- 50.80195
- ],
- [
- 3.2154,
- 50.73111
- ],
- [
- 3.22149,
- 50.7267
- ],
- [
- 3.27051,
- 50.70375
- ],
- [
- 3.27545,
- 50.67757
- ],
- [
- 3.26576,
- 50.6604
- ],
- [
- 3.26588,
- 50.64054
- ],
- [
- 3.28922,
- 50.60028
- ],
- [
- 3.29219,
- 50.55037
- ],
- [
- 3.3056,
- 50.53267
- ],
- [
- 3.37551,
- 50.50839
- ],
- [
- 3.3898,
- 50.50884
- ],
- [
- 3.4748,
- 50.54445
- ],
- [
- 3.52173,
- 50.53459
- ],
- [
- 3.53266,
- 50.51873
- ],
- [
- 3.54779,
- 50.51012
- ],
- [
- 3.61523,
- 50.50558
- ],
- [
- 3.67378,
- 50.45642
- ],
- [
- 3.68415,
- 50.35277
- ],
- [
- 3.6901,
- 50.34044
- ],
- [
- 3.70258,
- 50.33482
- ],
- [
- 3.71576,
- 50.33854
- ],
- [
- 3.74935,
- 50.36279
- ],
- [
- 3.84109,
- 50.36558
- ],
- [
- 3.90189,
- 50.3436
- ],
- [
- 3.91317,
- 50.34291
- ],
- [
- 4.02672,
- 50.36904
- ],
- [
- 4.13761,
- 50.29984
- ],
- [
- 4.14388,
- 50.29727
- ],
- [
- 4.21444,
- 50.28167
- ],
- [
- 4.22904,
- 50.26664
- ],
- [
- 4.23078,
- 50.25233
- ],
- [
- 4.17084,
- 50.18579
- ],
- [
- 4.16601,
- 50.16888
- ],
- [
- 4.1764,
- 50.1547
- ],
- [
- 4.21195,
- 50.13602
- ],
- [
- 4.24074,
- 50.07102
- ],
- [
- 4.23193,
- 50.05551
- ],
- [
- 4.18164,
- 50.03436
- ],
- [
- 4.17177,
- 50.02537
- ],
- [
- 4.16976,
- 50.01217
- ],
- [
- 4.1765,
- 50.00065
- ],
- [
- 4.20633,
- 49.97546
- ],
- [
- 4.22164,
- 49.97089
- ],
- [
- 4.30877,
- 49.98145
- ],
- [
- 4.44542,
- 49.9523
- ],
- [
- 4.45469,
- 49.95251
- ],
- [
- 4.6581,
- 50.00609
- ],
- [
- 4.66936,
- 50.01392
- ],
- [
- 4.67293,
- 50.02716
- ],
- [
- 4.66924,
- 50.06972
- ],
- [
- 4.69517,
- 50.10472
- ],
- [
- 4.83123,
- 50.17941
- ],
- [
- 4.8815,
- 50.16436
- ],
- [
- 4.90479,
- 50.14451
- ],
- [
- 4.90426,
- 50.12639
- ],
- [
- 4.88076,
- 50.0815
- ],
- [
- 4.86277,
- 50.0745
- ],
- [
- 4.85104,
- 50.06216
- ],
- [
- 4.84331,
- 50.03884
- ],
- [
- 4.84331,
- 50.03883
- ],
- [
- 4.8433,
- 50.03881
- ],
- [
- 4.82678,
- 49.989
- ],
- [
- 4.82662,
- 49.97692
- ],
- [
- 4.83343,
- 49.96696
- ],
- [
- 4.89654,
- 49.91753
- ],
- [
- 4.89755,
- 49.89424
- ],
- [
- 4.87913,
- 49.86942
- ],
- [
- 4.87625,
- 49.85111
- ],
- [
- 4.88924,
- 49.81266
- ],
- [
- 4.89769,
- 49.80204
- ],
- [
- 4.91098,
- 49.79926
- ],
- [
- 4.99534,
- 49.81116
- ],
- [
- 5.01867,
- 49.79272
- ],
- [
- 5.02686,
- 49.78886
- ],
- [
- 5.09944,
- 49.77323
- ],
- [
- 5.13458,
- 49.73462
- ],
- [
- 5.1412,
- 49.72984
- ],
- [
- 5.18761,
- 49.70906
- ],
- [
- 5.19602,
- 49.70732
- ],
- [
- 5.28157,
- 49.70836
- ],
- [
- 5.33363,
- 49.67308
- ],
- [
- 5.344,
- 49.65049
- ],
- [
- 5.3544,
- 49.64041
- ],
- [
- 5.43141,
- 49.60791
- ],
- [
- 5.48205,
- 49.52815
- ],
- [
- 5.49294,
- 49.51979
- ],
- [
- 5.50666,
- 49.52042
- ],
- [
- 5.55401,
- 49.54025
- ],
- [
- 5.59311,
- 49.53424
- ],
- [
- 5.6076,
- 49.53761
- ],
- [
- 5.641,
- 49.56095
- ],
- [
- 5.70676,
- 49.55267
- ],
- [
- 5.71578,
- 49.55361
- ],
- [
- 5.77526,
- 49.57414
- ],
- [
- 5.8399,
- 49.55321
- ],
- [
- 5.86126,
- 49.52038
- ],
- [
- 5.876,
- 49.5114
- ],
- [
- 5.97516,
- 49.50129
- ],
- [
- 5.99801,
- 49.47317
- ],
- [
- 6.01627,
- 49.46597
- ],
- [
- 6.08635,
- 49.47562
- ],
- [
- 6.09319,
- 49.47787
- ],
- [
- 6.17397,
- 49.52187
- ],
- [
- 6.24643,
- 49.52511
- ],
- [
- 6.334,
- 49.48235
- ],
- [
- 6.34423,
- 49.48037
- ],
- [
- 6.43515,
- 49.487
- ],
- [
- 6.5451,
- 49.44384
- ],
- [
- 6.60639,
- 49.37868
- ],
- [
- 6.60497,
- 49.33739
- ],
- [
- 6.61627,
- 49.31869
- ],
- [
- 6.67013,
- 49.29269
- ],
- [
- 6.72996,
- 49.22917
- ],
- [
- 6.74328,
- 49.19086
- ],
- [
- 6.76026,
- 49.17752
- ],
- [
- 6.80904,
- 49.17284
- ],
- [
- 6.82473,
- 49.17826
- ],
- [
- 6.83093,
- 49.19366
- ],
- [
- 6.82982,
- 49.21802
- ],
- [
- 6.85119,
- 49.23136
- ],
- [
- 6.88453,
- 49.2239
- ],
- [
- 6.89322,
- 49.22389
- ],
- [
- 6.93753,
- 49.23369
- ],
- [
- 7.04055,
- 49.19794
- ],
- [
- 7.0463,
- 49.17503
- ],
- [
- 7.05478,
- 49.16313
- ],
- [
- 7.06908,
- 49.16018
- ],
- [
- 7.10494,
- 49.16634
- ],
- [
- 7.14315,
- 49.14159
- ],
- [
- 7.1535,
- 49.13839
- ],
- [
- 7.28683,
- 49.13488
- ],
- [
- 7.29893,
- 49.13856
- ],
- [
- 7.36095,
- 49.18259
- ],
- [
- 7.45012,
- 49.19517
- ],
- [
- 7.50113,
- 49.17672
- ],
- [
- 7.54379,
- 49.10572
- ],
- [
- 7.5579,
- 49.09626
- ],
- [
- 7.6296,
- 49.08527
- ],
- [
- 7.64722,
- 49.06722
- ],
- [
- 7.6612,
- 49.06119
- ],
- [
- 7.75401,
- 49.05963
- ],
- [
- 7.76073,
- 49.06067
- ],
- [
- 7.80291,
- 49.07489
- ],
- [
- 7.85525,
- 49.05329
- ],
- [
- 7.8673,
- 49.05227
- ],
- [
- 7.93826,
- 49.06832
- ],
- [
- 8.08069,
- 49.00688
- ],
- [
- 8.2225,
- 48.98787
- ],
- [
- 8.23704,
- 48.97683
- ],
- [
- 8.23589,
- 48.95817
- ],
- [
- 8.20888,
- 48.94863
- ],
- [
- 8.20089,
- 48.94339
- ],
- [
- 8.15824,
- 48.89753
- ],
- [
- 8.10087,
- 48.7993
- ],
- [
- 7.99071,
- 48.74478
- ],
- [
- 7.98534,
- 48.7409
- ],
- [
- 7.90422,
- 48.65865
- ],
- [
- 7.85605,
- 48.63606
- ],
- [
- 7.8484,
- 48.62977
- ],
- [
- 7.81842,
- 48.58883
- ],
- [
- 7.81456,
- 48.57704
- ],
- [
- 7.81449,
- 48.50968
- ],
- [
- 7.78547,
- 48.48337
- ],
- [
- 7.78055,
- 48.47652
- ],
- [
- 7.74506,
- 48.39484
- ],
- [
- 7.74357,
- 48.38427
- ],
- [
- 7.75159,
- 48.32322
- ],
- [
- 7.71085,
- 48.29841
- ],
- [
- 7.70241,
- 48.28803
- ],
- [
- 7.67661,
- 48.21555
- ],
- [
- 7.59605,
- 48.11698
- ],
- [
- 7.59165,
- 48.10648
- ],
- [
- 7.58522,
- 48.04694
- ],
- [
- 7.59127,
- 48.03035
- ],
- [
- 7.62437,
- 47.99865
- ],
- [
- 7.63205,
- 47.97081
- ],
- [
- 7.57554,
- 47.87436
- ],
- [
- 7.5728,
- 47.86435
- ],
- [
- 7.57267,
- 47.83631
- ],
- [
- 7.54581,
- 47.78793
- ],
- [
- 7.54418,
- 47.77232
- ],
- [
- 7.55758,
- 47.72899
- ],
- [
- 7.53526,
- 47.6989
- ],
- [
- 7.53136,
- 47.68564
- ],
- [
- 7.537,
- 47.67302
- ],
- [
- 7.60016,
- 47.60822
- ],
- [
- 7.58967,
- 47.56755
- ],
- [
- 7.55424,
- 47.55128
- ],
- [
- 7.54511,
- 47.54283
- ],
- [
- 7.51256,
- 47.48439
- ],
- [
- 7.38747,
- 47.42111
- ],
- [
- 7.32653,
- 47.4273
- ],
- [
- 7.24435,
- 47.40939
- ],
- [
- 7.16708,
- 47.4335
- ],
- [
- 7.15212,
- 47.47612
- ],
- [
- 7.14279,
- 47.48707
- ],
- [
- 7.12853,
- 47.48893
- ],
- [
- 7.0801,
- 47.47718
- ],
- [
- 7.03557,
- 47.48695
- ],
- [
- 7.02102,
- 47.48458
- ],
- [
- 7.01205,
- 47.47287
- ],
- [
- 7.003,
- 47.44095
- ],
- [
- 6.9551,
- 47.40808
- ],
- [
- 6.94716,
- 47.39698
- ],
- [
- 6.94818,
- 47.38337
- ],
- [
- 6.95769,
- 47.37359
- ],
- [
- 6.97126,
- 47.37218
- ],
- [
- 7.018,
- 47.38386
- ],
- [
- 7.05623,
- 47.37035
- ],
- [
- 7.07007,
- 47.35005
- ],
- [
- 7.05958,
- 47.32257
- ],
- [
- 6.97424,
- 47.27856
- ],
- [
- 6.96347,
- 47.26233
- ],
- [
- 6.96134,
- 47.23479
- ],
- [
- 6.89443,
- 47.19393
- ],
- [
- 6.88913,
- 47.18922
- ],
- [
- 6.85545,
- 47.14636
- ],
- [
- 6.76907,
- 47.10751
- ],
- [
- 6.76011,
- 47.09953
- ],
- [
- 6.72561,
- 47.0418
- ],
- [
- 6.62355,
- 46.9811
- ],
- [
- 6.4812,
- 46.9445
- ],
- [
- 6.46892,
- 46.93522
- ],
- [
- 6.46686,
- 46.91997
- ],
- [
- 6.47548,
- 46.88771
- ],
- [
- 6.4535,
- 46.8239
- ],
- [
- 6.45644,
- 46.80534
- ],
- [
- 6.46722,
- 46.79104
- ],
- [
- 6.46098,
- 46.76887
- ],
- [
- 6.15817,
- 46.59343
- ],
- [
- 6.14872,
- 46.58069
- ],
- [
- 6.15152,
- 46.56508
- ],
- [
- 6.16549,
- 46.54399
- ],
- [
- 6.15811,
- 46.52456
- ],
- [
- 6.10174,
- 46.46979
- ],
- [
- 6.09572,
- 46.45418
- ],
- [
- 6.09704,
- 46.43317
- ],
- [
- 6.10829,
- 46.41643
- ],
- [
- 6.16622,
- 46.38839
- ],
- [
- 6.17817,
- 46.36922
- ],
- [
- 6.13748,
- 46.31297
- ],
- [
- 6.13371,
- 46.30227
- ],
- [
- 6.13038,
- 46.23737
- ],
- [
- 6.1103,
- 46.22344
- ],
- [
- 6.08865,
- 46.23081
- ],
- [
- 6.07717,
- 46.23123
- ],
- [
- 6.01857,
- 46.21601
- ],
- [
- 6.00681,
- 46.20752
- ],
- [
- 6.00388,
- 46.19332
- ],
- [
- 6.00787,
- 46.16977
- ],
- [
- 6.01783,
- 46.15564
- ],
- [
- 6.03509,
- 46.15456
- ],
- [
- 6.05564,
- 46.16288
- ],
- [
- 6.12468,
- 46.15415
- ],
- [
- 6.13778,
- 46.15702
- ],
- [
- 6.24026,
- 46.22094
- ],
- [
- 6.24906,
- 46.23299
- ],
- [
- 6.24707,
- 46.24777
- ],
- [
- 6.21148,
- 46.31057
- ],
- [
- 6.21219,
- 46.32485
- ],
- [
- 6.23946,
- 46.36705
- ],
- [
- 6.31648,
- 46.41557
- ],
- [
- 6.41083,
- 46.42495
- ],
- [
- 6.41748,
- 46.42682
- ],
- [
- 6.50498,
- 46.46871
- ],
- [
- 6.63047,
- 46.47435
- ],
- [
- 6.74665,
- 46.45695
- ],
- [
- 6.82244,
- 46.42925
- ],
- [
- 6.81832,
- 46.38181
- ],
- [
- 6.80484,
- 46.36179
- ],
- [
- 6.80189,
- 46.34639
- ],
- [
- 6.81095,
- 46.33359
- ],
- [
- 6.86491,
- 46.30038
- ],
- [
- 6.87504,
- 46.28007
- ],
- [
- 6.86092,
- 46.2439
- ],
- [
- 6.82698,
- 46.21188
- ],
- [
- 6.82075,
- 46.19862
- ],
- [
- 6.81863,
- 46.16592
- ],
- [
- 6.82259,
- 46.15261
- ],
- [
- 6.83427,
- 46.14509
- ],
- [
- 6.90382,
- 46.12971
- ],
- [
- 6.90491,
- 46.09595
- ],
- [
- 6.90932,
- 46.08406
- ],
- [
- 6.92001,
- 46.07721
- ],
- [
- 6.94898,
- 46.0699
- ],
- [
- 7.01556,
- 46.00883
- ],
- [
- 7.05191,
- 45.93066
- ],
- [
- 7.04533,
- 45.92217
- ],
- [
- 7.04497,
- 45.92064
- ],
- [
- 7.04394,
- 45.92036
- ],
- [
- 6.99582,
- 45.85822
- ],
- [
- 6.94097,
- 45.83551
- ],
- [
- 6.84376,
- 45.82387
- ],
- [
- 6.83102,
- 45.81711
- ],
- [
- 6.82614,
- 45.80353
- ],
- [
- 6.82787,
- 45.73217
- ],
- [
- 6.83174,
- 45.72082
- ],
- [
- 6.8414,
- 45.71373
- ],
- [
- 6.90729,
- 45.69124
- ],
- [
- 6.92419,
- 45.66935
- ],
- [
- 6.94247,
- 45.66172
- ],
- [
- 6.97131,
- 45.66528
- ],
- [
- 7.00597,
- 45.64945
- ],
- [
- 7.01151,
- 45.63652
- ],
- [
- 6.9978,
- 45.60877
- ],
- [
- 6.99643,
- 45.59465
- ],
- [
- 7.0158,
- 45.52354
- ],
- [
- 7.02774,
- 45.5102
- ],
- [
- 7.1072,
- 45.47877
- ],
- [
- 7.1228,
- 45.44924
- ],
- [
- 7.13304,
- 45.44001
- ],
- [
- 7.1856,
- 45.41894
- ],
- [
- 7.19515,
- 45.40409
- ],
- [
- 7.17075,
- 45.35069
- ],
- [
- 7.14232,
- 45.32298
- ],
- [
- 7.13649,
- 45.30576
- ],
- [
- 7.14458,
- 45.25048
- ],
- [
- 7.08417,
- 45.20279
- ],
- [
- 6.99279,
- 45.19823
- ],
- [
- 6.98106,
- 45.19368
- ],
- [
- 6.90009,
- 45.12689
- ],
- [
- 6.85843,
- 45.11699
- ],
- [
- 6.78283,
- 45.14228
- ],
- [
- 6.77056,
- 45.14242
- ],
- [
- 6.67751,
- 45.11356
- ],
- [
- 6.6653,
- 45.10289
- ],
- [
- 6.66501,
- 45.08667
- ],
- [
- 6.68237,
- 45.04558
- ],
- [
- 6.69602,
- 45.03395
- ],
- [
- 6.75744,
- 45.01884
- ],
- [
- 6.78375,
- 44.9146
- ],
- [
- 6.7942,
- 44.90161
- ],
- [
- 6.86698,
- 44.86519
- ],
- [
- 6.8798,
- 44.86346
- ],
- [
- 6.93633,
- 44.87461
- ],
- [
- 7.01795,
- 44.84402
- ],
- [
- 7.03453,
- 44.82282
- ],
- [
- 7.03711,
- 44.75009
- ],
- [
- 7.0496,
- 44.73226
- ],
- [
- 7.07224,
- 44.72311
- ],
- [
- 7.08651,
- 44.6968
- ],
- [
- 7.08666,
- 44.68085
- ],
- [
- 7.07671,
- 44.67134
- ],
- [
- 6.99007,
- 44.67203
- ],
- [
- 6.97413,
- 44.66431
- ],
- [
- 6.97056,
- 44.64696
- ],
- [
- 6.97819,
- 44.61784
- ],
- [
- 6.94659,
- 44.57124
- ],
- [
- 6.88235,
- 44.53479
- ],
- [
- 6.87233,
- 44.5195
- ],
- [
- 6.87892,
- 44.50245
- ],
- [
- 6.95894,
- 44.43129
- ],
- [
- 6.95872,
- 44.42908
- ],
- [
- 6.92167,
- 44.41436
- ],
- [
- 6.91223,
- 44.40659
- ],
- [
- 6.90907,
- 44.39477
- ],
- [
- 6.90972,
- 44.38195
- ],
- [
- 6.91637,
- 44.36804
- ],
- [
- 6.99909,
- 44.29414
- ],
- [
- 7.01181,
- 44.256
- ],
- [
- 7.01983,
- 44.24558
- ],
- [
- 7.03259,
- 44.2424
- ],
- [
- 7.07312,
- 44.2461
- ],
- [
- 7.1651,
- 44.22112
- ],
- [
- 7.24533,
- 44.18544
- ],
- [
- 7.26053,
- 44.16682
- ],
- [
- 7.27537,
- 44.15947
- ],
- [
- 7.33878,
- 44.1574
- ],
- [
- 7.36278,
- 44.13834
- ],
- [
- 7.37776,
- 44.13416
- ],
- [
- 7.56283,
- 44.15792
- ],
- [
- 7.5642,
- 44.15836
- ],
- [
- 7.56478,
- 44.15817
- ],
- [
- 7.60548,
- 44.1634
- ],
- [
- 7.6162,
- 44.16827
- ],
- [
- 7.63989,
- 44.18928
- ],
- [
- 7.68608,
- 44.1861
- ],
- [
- 7.69422,
- 44.17795
- ],
- [
- 7.68937,
- 44.13869
- ],
- [
- 7.69445,
- 44.12276
- ],
- [
- 7.72786,
- 44.08615
- ],
- [
- 7.72403,
- 44.05704
- ],
- [
- 7.68603,
- 44.02371
- ],
- [
- 7.68077,
- 44.0164
- ],
- [
- 7.66016,
- 43.9672
- ],
- [
- 7.59624,
- 43.94466
- ],
- [
- 7.58419,
- 43.93287
- ],
- [
- 7.56858,
- 43.89159
- ],
- [
- 7.5271,
- 43.87434
- ],
- [
- 7.51649,
- 43.86397
- ],
- [
- 7.51594,
- 43.84915
- ],
- [
- 7.53622,
- 43.79234
- ],
- [
- 9.8,
- 43.1
- ],
- [
- 9.63227,
- 41.43244
- ],
- [
- 9.36968,
- 41.35052
- ],
- [
- 9.27311,
- 41.29196
- ],
- [
- 8.94186,
- 41.27688
- ],
- [
- 5.8,
- 41.64
- ],
- [
- 3.17358,
- 42.41768
- ],
- [
- 3.16081,
- 42.42757
- ],
- [
- 3.0944,
- 42.41457
- ],
- [
- 3.03402,
- 42.45331
- ],
- [
- 3.02214,
- 42.45645
- ],
- [
- 2.87822,
- 42.4487
- ],
- [
- 2.87019,
- 42.44653
- ],
- [
- 2.78424,
- 42.40256
- ],
- [
- 2.7413,
- 42.41128
- ],
- [
- 2.72928,
- 42.40998
- ],
- [
- 2.69331,
- 42.39417
- ],
- [
- 2.68378,
- 42.3854
- ],
- [
- 2.68162,
- 42.37263
- ],
- [
- 2.68585,
- 42.34679
- ],
- [
- 2.66719,
- 42.33008
- ],
- [
- 2.58106,
- 42.34418
- ],
- [
- 2.56777,
- 42.34173
- ],
- [
- 2.5338,
- 42.32197
- ],
- [
- 2.47795,
- 42.32986
- ],
- [
- 2.41933,
- 42.37658
- ],
- [
- 2.41222,
- 42.38021
- ],
- [
- 2.26719,
- 42.42055
- ],
- [
- 2.25973,
- 42.42117
- ],
- [
- 2.20694,
- 42.41558
- ],
- [
- 2.20653,
- 42.41526
- ],
- [
- 2.20526,
- 42.41541
- ],
- [
- 2.16028,
- 42.41065
- ],
- [
- 2.14881,
- 42.40545
- ],
- [
- 2.09393,
- 42.35474
- ],
- [
- 2.00861,
- 42.33818
- ],
- [
- 1.965,
- 42.36473
- ],
- [
- 1.93076,
- 42.42442
- ],
- [
- 1.92089,
- 42.43302
- ],
- [
- 1.88467,
- 42.44761
- ],
- [
- 1.88459,
- 42.44762
- ],
- [
- 1.88444,
- 42.4477
- ],
- [
- 1.82774,
- 42.47056
- ],
- [
- 1.72567,
- 42.48452
- ],
- [
- 1.71561,
- 42.50125
- ],
- [
- 1.7272,
- 42.56103
- ],
- [
- 1.72479,
- 42.57499
- ],
- [
- 1.71011,
- 42.59992
- ],
- [
- 1.69377,
- 42.60975
- ],
- [
- 1.60283,
- 42.61382
- ],
- [
- 1.56069,
- 42.6392
- ],
- [
- 1.54636,
- 42.64166
- ],
- [
- 1.50444,
- 42.6331
- ],
- [
- 1.4921,
- 42.62502
- ],
- [
- 1.47238,
- 42.59703
- ],
- [
- 1.43792,
- 42.59264
- ],
- [
- 1.41936,
- 42.60643
- ],
- [
- 1.38032,
- 42.67415
- ],
- [
- 1.37335,
- 42.68127
- ],
- [
- 1.33313,
- 42.70563
- ],
- [
- 1.32364,
- 42.7085
- ],
- [
- 1.23221,
- 42.71248
- ],
- [
- 1.16554,
- 42.69928
- ],
- [
- 1.08546,
- 42.76635
- ],
- [
- 1.07564,
- 42.77079
- ],
- [
- 0.95937,
- 42.78852
- ],
- [
- 0.95073,
- 42.78794
- ],
- [
- 0.92265,
- 42.7797
- ],
- [
- 0.84606,
- 42.8157
- ],
- [
- 0.71511,
- 42.8464
- ],
- [
- 0.70017,
- 42.84402
- ],
- [
- 0.69117,
- 42.83186
- ],
- [
- 0.67409,
- 42.76479
- ],
- [
- 0.67474,
- 42.75286
- ],
- [
- 0.69192,
- 42.70684
- ],
- [
- 0.669,
- 42.67901
- ],
- [
- 0.43024,
- 42.67863
- ],
- [
- 0.3715,
- 42.70308
- ],
- [
- 0.35954,
- 42.70415
- ],
- [
- 0.34912,
- 42.69817
- ],
- [
- 0.32567,
- 42.67274
- ],
- [
- 0.29571,
- 42.66388
- ],
- [
- 0.24594,
- 42.70175
- ],
- [
- 0.23972,
- 42.70494
- ],
- [
- 0.18967,
- 42.72039
- ],
- [
- 0.17919,
- 42.72075
- ],
- [
- -0.01993,
- 42.67389
- ],
- [
- -0.06726,
- 42.6848
- ],
- [
- -0.16949,
- 42.77157
- ],
- [
- -0.29987,
- 42.82697
- ],
- [
- -0.31683,
- 42.82635
- ],
- [
- -0.39208,
- 42.78766
- ],
- [
- -0.44354,
- 42.78453
- ],
- [
- -0.48842,
- 42.80255
- ],
- [
- -0.50868,
- 42.79935
- ],
- [
- -0.54499,
- 42.76906
- ],
- [
- -0.56721,
- 42.76937
- ],
- [
- -0.67446,
- 42.86392
- ],
- [
- -0.68094,
- 42.86775
- ],
- [
- -0.73372,
- 42.88666
- ],
- [
- -0.7476,
- 42.93879
- ],
- [
- -0.75711,
- 42.95107
- ],
- [
- -0.77253,
- 42.95284
- ],
- [
- -0.82114,
- 42.93865
- ],
- [
- -0.94508,
- 42.94192
- ],
- [
- -1.02313,
- 42.98206
- ],
- [
- -1.10852,
- 43.00409
- ],
- [
- -1.1156,
- 43.00461
- ],
- [
- -1.14775,
- 43.00124
- ],
- [
- -1.15845,
- 43.01452
- ],
- [
- -1.16736,
- 43.02083
- ],
- [
- -1.21622,
- 43.0381
- ],
- [
- -1.22612,
- 43.03898
- ],
- [
- -1.26236,
- 43.03303
- ],
- [
- -1.30643,
- 43.05531
- ],
- [
- -1.31992,
- 43.05696
- ],
- [
- -1.33135,
- 43.0496
- ],
- [
- -1.3542,
- 43.0197
- ],
- [
- -1.43868,
- 43.03371
- ],
- [
- -1.4775,
- 43.06889
- ],
- [
- -1.48311,
- 43.08561
- ],
- [
- -1.47641,
- 43.10248
- ],
- [
- -1.43479,
- 43.13087
- ],
- [
- -1.42732,
- 43.1404
- ],
- [
- -1.39411,
- 43.22935
- ],
- [
- -1.39531,
- 43.24596
- ],
- [
- -1.40868,
- 43.25591
- ],
- [
- -1.52629,
- 43.28099
- ],
- [
- -1.54626,
- 43.2737
- ],
- [
- -1.57149,
- 43.2412
- ],
- [
- -1.61053,
- 43.24223
- ],
- [
- -1.65,
- 43.29323
- ],
- [
- -1.66953,
- 43.30065
- ],
- [
- -1.73359,
- 43.28856
- ],
- [
- -1.75606,
- 43.31966
- ],
- [
- -1.76297,
- 43.32565
- ],
- [
- -1.79156,
- 43.34067
- ],
- [
- -1.80099,
- 43.37017
- ],
- [
- -1.78509,
- 43.39037
- ],
- [
- -1.7835,
- 43.39686
- ],
- [
- -2.7,
- 43.9
- ]
- ]
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/FR:Servers/tile.openstreetmap.fr#Route500.E2.84.A2.C2.A9.C2.AE",
- "terms_text": "Tiles © cquest@Openstreetmap France, data © IGN, LO/OL",
- "description": "Routes du réseau classé (autoroutes, nationales, départementales)",
- "overlay": true
- },
- {
- "id": "santana_do_ipanema",
- "name": "Santana do Ipanema AL",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Santana%20do%20Ipanema&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -37.20224,
- -9.41356
- ],
- [
- -37.20188,
- -9.37768
- ],
- [
- -37.20208,
- -9.37455
- ],
- [
- -37.20192,
- -9.36733
- ],
- [
- -37.20169,
- -9.36045
- ],
- [
- -37.20172,
- -9.35501
- ],
- [
- -37.20195,
- -9.35101
- ],
- [
- -37.20191,
- -9.34773
- ],
- [
- -37.20175,
- -9.33835
- ],
- [
- -37.2017,
- -9.33505
- ],
- [
- -37.20171,
- -9.33301
- ],
- [
- -37.20142,
- -9.32833
- ],
- [
- -37.20121,
- -9.32469
- ],
- [
- -37.20117,
- -9.32351
- ],
- [
- -37.21425,
- -9.32346
- ],
- [
- -37.21537,
- -9.3234
- ],
- [
- -37.22078,
- -9.32328
- ],
- [
- -37.23727,
- -9.32313
- ],
- [
- -37.25181,
- -9.32293
- ],
- [
- -37.2656,
- -9.32276
- ],
- [
- -37.2803,
- -9.32259
- ],
- [
- -37.29191,
- -9.32245
- ],
- [
- -37.29205,
- -9.33522
- ],
- [
- -37.29304,
- -9.4122
- ],
- [
- -37.28357,
- -9.41235
- ],
- [
- -37.27789,
- -9.4125
- ],
- [
- -37.2716,
- -9.41249
- ],
- [
- -37.26506,
- -9.41262
- ],
- [
- -37.26165,
- -9.41274
- ],
- [
- -37.25499,
- -9.41276
- ],
- [
- -37.24991,
- -9.41296
- ],
- [
- -37.24616,
- -9.41297
- ],
- [
- -37.24108,
- -9.41303
- ],
- [
- -37.23461,
- -9.41321
- ],
- [
- -37.2284,
- -9.41325
- ],
- [
- -37.22165,
- -9.41335
- ],
- [
- -37.21686,
- -9.41346
- ],
- [
- -37.21292,
- -9.41343
- ],
- [
- -37.20224,
- -9.41356
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "Sao_miguel_dos_campos",
- "name": "São Miguel dos Campos AL",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Sao_miguel_dos_campos&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -36.1415,
- -9.83171
- ],
- [
- -36.05047,
- -9.83246
- ],
- [
- -36.04959,
- -9.74246
- ],
- [
- -36.14059,
- -9.74166
- ],
- [
- -36.1415,
- -9.83171
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "GEOSN-DOP-RGB",
- "name": "Saxony latest aerial imagery",
- "type": "wms",
- "template": "https://geodienste.sachsen.de/wms_geosn_dop-rgb/guest?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=sn_dop_020&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- 13.54901,
- 50.69792
- ],
- [
- 13.84251,
- 50.71126
- ],
- [
- 13.93239,
- 50.74504
- ],
- [
- 14.04614,
- 50.79389
- ],
- [
- 14.25257,
- 50.85953
- ],
- [
- 14.40002,
- 50.88966
- ],
- [
- 14.42671,
- 50.9357
- ],
- [
- 14.35649,
- 50.97197
- ],
- [
- 14.32559,
- 50.99319
- ],
- [
- 14.27504,
- 50.99054
- ],
- [
- 14.31577,
- 51.04266
- ],
- [
- 14.41547,
- 51.01263
- ],
- [
- 14.51939,
- 51.0038
- ],
- [
- 14.5882,
- 50.9817
- ],
- [
- 14.54467,
- 50.91977
- ],
- [
- 14.57977,
- 50.90649
- ],
- [
- 14.64718,
- 50.92243
- ],
- [
- 14.64437,
- 50.90915
- ],
- [
- 14.60505,
- 50.85687
- ],
- [
- 14.7202,
- 50.81785
- ],
- [
- 14.81008,
- 50.81341
- ],
- [
- 14.85642,
- 50.89055
- ],
- [
- 14.91259,
- 50.94721
- ],
- [
- 14.99685,
- 51.08679
- ],
- [
- 15.05303,
- 51.24793
- ],
- [
- 15.05583,
- 51.29274
- ],
- [
- 14.99264,
- 51.34452
- ],
- [
- 14.98843,
- 51.398
- ],
- [
- 14.97719,
- 51.45754
- ],
- [
- 14.90979,
- 51.49603
- ],
- [
- 14.73986,
- 51.5371
- ],
- [
- 14.73986,
- 51.59122
- ],
- [
- 14.70054,
- 51.60605
- ],
- [
- 14.67948,
- 51.5982
- ],
- [
- 14.68369,
- 51.57813
- ],
- [
- 14.67386,
- 51.55806
- ],
- [
- 14.61769,
- 51.55718
- ],
- [
- 14.58399,
- 51.59035
- ],
- [
- 14.51939,
- 51.56941
- ],
- [
- 14.43513,
- 51.5598
- ],
- [
- 14.327,
- 51.52574
- ],
- [
- 14.13461,
- 51.55544
- ],
- [
- 14.0672,
- 51.49952
- ],
- [
- 14.02788,
- 51.47854
- ],
- [
- 14.04333,
- 51.45229
- ],
- [
- 13.99558,
- 51.39274
- ],
- [
- 13.95767,
- 51.40588
- ],
- [
- 13.88886,
- 51.38836
- ],
- [
- 13.72455,
- 51.37434
- ],
- [
- 13.55463,
- 51.39274
- ],
- [
- 13.40437,
- 51.45929
- ],
- [
- 13.35241,
- 51.43916
- ],
- [
- 13.3159,
- 51.44354
- ],
- [
- 13.28641,
- 51.41815
- ],
- [
- 13.22602,
- 51.40063
- ],
- [
- 13.21339,
- 51.46104
- ],
- [
- 13.219,
- 51.52661
- ],
- [
- 13.17406,
- 51.5982
- ],
- [
- 13.00274,
- 51.67751
- ],
- [
- 12.90584,
- 51.65312
- ],
- [
- 12.90303,
- 51.66619
- ],
- [
- 12.85388,
- 51.69318
- ],
- [
- 12.76401,
- 51.65922
- ],
- [
- 12.68817,
- 51.67054
- ],
- [
- 12.64324,
- 51.62959
- ],
- [
- 12.57723,
- 51.63046
- ],
- [
- 12.42557,
- 51.61041
- ],
- [
- 12.23037,
- 51.57028
- ],
- [
- 12.17701,
- 51.53011
- ],
- [
- 12.13909,
- 51.46017
- ],
- [
- 12.16718,
- 51.41727
- ],
- [
- 12.1742,
- 51.33487
- ],
- [
- 12.13207,
- 51.3182
- ],
- [
- 12.18684,
- 51.21364
- ],
- [
- 12.15875,
- 51.18812
- ],
- [
- 12.22054,
- 51.09296
- ],
- [
- 12.49017,
- 51.05414
- ],
- [
- 12.52106,
- 50.99319
- ],
- [
- 12.60532,
- 50.97286
- ],
- [
- 12.62639,
- 50.91889
- ],
- [
- 12.50281,
- 50.91092
- ],
- [
- 12.23739,
- 50.81874
- ],
- [
- 12.21352,
- 50.72993
- ],
- [
- 12.28654,
- 50.665
- ],
- [
- 12.21773,
- 50.6463
- ],
- [
- 12.13347,
- 50.6276
- ],
- [
- 12.05343,
- 50.56342
- ],
- [
- 12.01972,
- 50.64719
- ],
- [
- 11.85963,
- 50.54825
- ],
- [
- 11.87649,
- 50.50808
- ],
- [
- 11.92704,
- 50.5054
- ],
- [
- 11.93687,
- 50.48664
- ],
- [
- 11.87087,
- 50.44194
- ],
- [
- 11.93406,
- 50.39989
- ],
- [
- 11.96917,
- 50.33987
- ],
- [
- 12.12083,
- 50.29773
- ],
- [
- 12.17279,
- 50.3067
- ],
- [
- 12.18543,
- 50.26094
- ],
- [
- 12.21212,
- 50.25375
- ],
- [
- 12.25705,
- 50.21603
- ],
- [
- 12.28233,
- 50.15668
- ],
- [
- 12.35535,
- 50.15848
- ],
- [
- 12.35535,
- 50.22142
- ],
- [
- 12.41433,
- 50.28158
- ],
- [
- 12.51123,
- 50.34705
- ],
- [
- 12.53791,
- 50.38735
- ],
- [
- 12.67835,
- 50.40257
- ],
- [
- 12.71205,
- 50.38646
- ],
- [
- 12.7289,
- 50.39631
- ],
- [
- 12.75699,
- 50.42584
- ],
- [
- 12.78648,
- 50.43389
- ],
- [
- 12.81737,
- 50.41779
- ],
- [
- 12.84686,
- 50.43657
- ],
- [
- 12.94797,
- 50.38735
- ],
- [
- 13.00976,
- 50.41421
- ],
- [
- 13.04627,
- 50.44999
- ],
- [
- 13.0561,
- 50.48753
- ],
- [
- 13.21479,
- 50.49289
- ],
- [
- 13.27517,
- 50.56609
- ],
- [
- 13.34118,
- 50.56877
- ],
- [
- 13.39173,
- 50.61334
- ],
- [
- 13.47739,
- 50.58571
- ],
- [
- 13.54761,
- 50.63473
- ],
- [
- 13.56867,
- 50.67212
- ],
- [
- 13.54901,
- 50.69792
- ]
- ]
- ],
- "terms_url": "https://geoportal.sachsen.de/cps/metadaten_portal.html?id=cd01c334-7e32-482f-bd43-af286707178a",
- "terms_text": "Staatsbetrieb Geobasisinformation und Vermessung Sachsen",
- "best": true,
- "icon": "data:image/png;base64,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"
- },
- {
- "id": "Geodatastyrelsen_Denmark",
- "name": "SDFE aerial imagery",
- "type": "tms",
- "template": "https://osmtools.septima.dk/mapproxy/tiles/1.0.0/kortforsyningen_ortoforaar/EPSG3857/{zoom}/{x}/{y}.jpeg",
- "scaleExtent": [
- 0,
- 21
- ],
- "polygon": [
- [
- [
- 8.37439,
- 54.95517
- ],
- [
- 8.36838,
- 55.40421
- ],
- [
- 8.2104,
- 55.40398
- ],
- [
- 8.20873,
- 55.49373
- ],
- [
- 8.05027,
- 55.49247
- ],
- [
- 8.01851,
- 56.75014
- ],
- [
- 8.18192,
- 56.75099
- ],
- [
- 8.17633,
- 57.02089
- ],
- [
- 8.34133,
- 57.02199
- ],
- [
- 8.33925,
- 57.11196
- ],
- [
- 8.50544,
- 57.11232
- ],
- [
- 8.50339,
- 57.20205
- ],
- [
- 9.33163,
- 57.20276
- ],
- [
- 9.33191,
- 57.29248
- ],
- [
- 9.49789,
- 57.29196
- ],
- [
- 9.49886,
- 57.38206
- ],
- [
- 9.66497,
- 57.38116
- ],
- [
- 9.66873,
- 57.56056
- ],
- [
- 9.8352,
- 57.55963
- ],
- [
- 9.83749,
- 57.64933
- ],
- [
- 10.17257,
- 57.64628
- ],
- [
- 10.17542,
- 57.73678
- ],
- [
- 10.51183,
- 57.73303
- ],
- [
- 10.51521,
- 57.82289
- ],
- [
- 10.68349,
- 57.82077
- ],
- [
- 10.67516,
- 57.6412
- ],
- [
- 10.5077,
- 57.64331
- ],
- [
- 10.504,
- 57.55351
- ],
- [
- 10.67104,
- 57.55141
- ],
- [
- 10.65078,
- 57.10245
- ],
- [
- 10.48577,
- 57.10451
- ],
- [
- 10.47862,
- 56.92491
- ],
- [
- 10.3144,
- 56.92676
- ],
- [
- 10.31123,
- 56.83693
- ],
- [
- 10.47503,
- 56.83509
- ],
- [
- 10.4649,
- 56.56567
- ],
- [
- 10.95242,
- 56.55898
- ],
- [
- 10.94792,
- 56.46922
- ],
- [
- 11.10993,
- 56.46647
- ],
- [
- 11.10526,
- 56.37683
- ],
- [
- 10.94299,
- 56.37953
- ],
- [
- 10.93412,
- 56.19948
- ],
- [
- 10.77197,
- 56.20202
- ],
- [
- 10.76948,
- 56.11201
- ],
- [
- 10.60797,
- 56.11503
- ],
- [
- 10.44667,
- 56.11672
- ],
- [
- 10.28659,
- 56.11868
- ],
- [
- 10.28315,
- 56.02819
- ],
- [
- 10.44393,
- 56.02704
- ],
- [
- 10.44177,
- 55.75792
- ],
- [
- 10.4335,
- 55.66935
- ],
- [
- 10.74381,
- 55.66469
- ],
- [
- 10.74381,
- 55.57123
- ],
- [
- 10.8969,
- 55.57123
- ],
- [
- 10.90518,
- 55.39539
- ],
- [
- 11.06137,
- 55.38128
- ],
- [
- 11.0593,
- 55.11241
- ],
- [
- 11.04586,
- 55.03186
- ],
- [
- 11.20308,
- 55.02475
- ],
- [
- 11.20308,
- 55.11714
- ],
- [
- 11.0593,
- 55.11241
- ],
- [
- 11.06137,
- 55.38128
- ],
- [
- 11.07896,
- 55.57123
- ],
- [
- 10.8969,
- 55.57123
- ],
- [
- 10.92587,
- 55.66702
- ],
- [
- 10.74381,
- 55.66469
- ],
- [
- 10.75623,
- 55.75792
- ],
- [
- 10.44177,
- 55.75792
- ],
- [
- 10.44393,
- 56.02704
- ],
- [
- 10.44667,
- 56.11672
- ],
- [
- 10.60797,
- 56.11503
- ],
- [
- 10.60521,
- 56.02475
- ],
- [
- 10.92587,
- 56.02012
- ],
- [
- 10.91971,
- 55.93094
- ],
- [
- 11.08028,
- 55.92792
- ],
- [
- 11.08581,
- 56.01783
- ],
- [
- 11.7265,
- 56.00506
- ],
- [
- 11.732,
- 56.09521
- ],
- [
- 12.05403,
- 56.08713
- ],
- [
- 12.06085,
- 56.17626
- ],
- [
- 12.70235,
- 56.15944
- ],
- [
- 12.66111,
- 55.71143
- ],
- [
- 12.97923,
- 55.7014
- ],
- [
- 12.96129,
- 55.52173
- ],
- [
- 12.32687,
- 55.54121
- ],
- [
- 12.32061,
- 55.45137
- ],
- [
- 12.47782,
- 55.44707
- ],
- [
- 12.47024,
- 55.35705
- ],
- [
- 12.62697,
- 55.35238
- ],
- [
- 12.62009,
- 55.26326
- ],
- [
- 12.46273,
- 55.26722
- ],
- [
- 12.45529,
- 55.17782
- ],
- [
- 12.2987,
- 55.18223
- ],
- [
- 12.28973,
- 55.09236
- ],
- [
- 12.60486,
- 55.08329
- ],
- [
- 12.5872,
- 54.90363
- ],
- [
- 12.27666,
- 54.9119
- ],
- [
- 12.26102,
- 54.73316
- ],
- [
- 12.10707,
- 54.73782
- ],
- [
- 12.08586,
- 54.46817
- ],
- [
- 11.7795,
- 54.47536
- ],
- [
- 11.78374,
- 54.56548
- ],
- [
- 11.16585,
- 54.57822
- ],
- [
- 11.17064,
- 54.66865
- ],
- [
- 10.86172,
- 54.6734
- ],
- [
- 10.86512,
- 54.76347
- ],
- [
- 10.77136,
- 54.76439
- ],
- [
- 10.77073,
- 54.73728
- ],
- [
- 10.75514,
- 54.73758
- ],
- [
- 10.7544,
- 54.71957
- ],
- [
- 10.73891,
- 54.71976
- ],
- [
- 10.73844,
- 54.71085
- ],
- [
- 10.70745,
- 54.7113
- ],
- [
- 10.70411,
- 54.67567
- ],
- [
- 10.5511,
- 54.67817
- ],
- [
- 10.55472,
- 54.76702
- ],
- [
- 10.2424,
- 54.77059
- ],
- [
- 10.24598,
- 54.86047
- ],
- [
- 10.09023,
- 54.86221
- ],
- [
- 10.08737,
- 54.77239
- ],
- [
- 9.15558,
- 54.77696
- ],
- [
- 9.15628,
- 54.86754
- ],
- [
- 8.5322,
- 54.86638
- ],
- [
- 8.53143,
- 54.95516
- ],
- [
- 8.37439,
- 54.95517
- ]
- ],
- [
- [
- 11.45777,
- 56.81955
- ],
- [
- 11.78492,
- 56.81274
- ],
- [
- 11.77167,
- 56.63328
- ],
- [
- 11.44596,
- 56.64011
- ],
- [
- 11.45777,
- 56.81955
- ]
- ],
- [
- [
- 11.32747,
- 57.3613
- ],
- [
- 11.31618,
- 57.1818
- ],
- [
- 11.15087,
- 57.18473
- ],
- [
- 11.14566,
- 57.09496
- ],
- [
- 10.81577,
- 57.10017
- ],
- [
- 10.82906,
- 57.36953
- ],
- [
- 11.32747,
- 57.3613
- ]
- ],
- [
- [
- 11.58433,
- 56.27779
- ],
- [
- 11.57829,
- 56.18804
- ],
- [
- 11.73923,
- 56.18458
- ],
- [
- 11.74564,
- 56.27432
- ],
- [
- 11.58433,
- 56.27779
- ]
- ],
- [
- [
- 14.68259,
- 55.36394
- ],
- [
- 14.83952,
- 55.35652
- ],
- [
- 14.82638,
- 55.26713
- ],
- [
- 15.13934,
- 55.25174
- ],
- [
- 15.1532,
- 55.34108
- ],
- [
- 15.30992,
- 55.33306
- ],
- [
- 15.29572,
- 55.24374
- ],
- [
- 15.13934,
- 55.25174
- ],
- [
- 15.12556,
- 55.16238
- ],
- [
- 15.28158,
- 55.15442
- ],
- [
- 15.25356,
- 54.97576
- ],
- [
- 14.63175,
- 55.00625
- ],
- [
- 14.68259,
- 55.36394
- ]
- ]
- ],
- "terms_url": "https://download.kortforsyningen.dk/content/vilkaar-og-betingelser",
- "terms_text": "Geodatastyrelsen og Danske Kommuner",
- "best": true,
- "icon": "data:image/png;base64,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"
- },
- {
- "id": "Sicily-ATA2007",
- "name": "Sicily - Italy",
- "type": "wms",
- "template": "http://map.sitr.regione.sicilia.it/ArcGIS/services/WGS84_F33/Ortofoto_ATA20072008_f33/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=0&STYLES=default&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- 15.71165,
- 38.25894
- ],
- [
- 15.23718,
- 38.81938
- ],
- [
- 14.27124,
- 38.55246
- ],
- [
- 13.15063,
- 38.75408
- ],
- [
- 11.96411,
- 37.97451
- ],
- [
- 12.52441,
- 37.54022
- ],
- [
- 11.87897,
- 36.79609
- ],
- [
- 12.49695,
- 35.47409
- ],
- [
- 12.68921,
- 35.46962
- ],
- [
- 14.57336,
- 36.66401
- ],
- [
- 15.29709,
- 36.62875
- ],
- [
- 15.39854,
- 37.42171
- ],
- [
- 15.71165,
- 38.25894
- ]
- ]
- ]
- },
- {
- "id": "sc2012",
- "name": "SIG Santa Catarina OrtoRGB 2012",
- "type": "wms",
- "template": "http://sigsc.sc.gov.br:80/sigserver/SIGSC/wms?SERVICE=WMS&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OrtoRGB-Landsat-2012&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2012-01-01T00:00:00.000Z",
- "startDate": "2012-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- -48.62488,
- -26.91624
- ],
- [
- -48.62416,
- -26.83409
- ],
- [
- -48.56163,
- -26.83412
- ],
- [
- -48.56165,
- -26.74919
- ],
- [
- -48.62675,
- -26.74918
- ],
- [
- -48.62715,
- -26.73276
- ],
- [
- -48.64126,
- -26.733
- ],
- [
- -48.64174,
- -26.70912
- ],
- [
- -48.62414,
- -26.70913
- ],
- [
- -48.62418,
- -26.50079
- ],
- [
- -48.57099,
- -26.50077
- ],
- [
- -48.57155,
- -26.47415
- ],
- [
- -48.55418,
- -26.47381
- ],
- [
- -48.5545,
- -26.45736
- ],
- [
- -48.56155,
- -26.45747
- ],
- [
- -48.56161,
- -26.41746
- ],
- [
- -48.4991,
- -26.41747
- ],
- [
- -48.49909,
- -26.25081
- ],
- [
- -48.43664,
- -26.25079
- ],
- [
- -48.43661,
- -26.20752
- ],
- [
- -48.4601,
- -26.20751
- ],
- [
- -48.46195,
- -26.1242
- ],
- [
- -48.56161,
- -26.12419
- ],
- [
- -48.56163,
- -25.95753
- ],
- [
- -48.62411,
- -25.95753
- ],
- [
- -48.62411,
- -25.94507
- ],
- [
- -48.68838,
- -25.94607
- ],
- [
- -48.6884,
- -25.95752
- ],
- [
- -49.25089,
- -25.95752
- ],
- [
- -49.2509,
- -25.9992
- ],
- [
- -49.31339,
- -25.9992
- ],
- [
- -49.31338,
- -26.0825
- ],
- [
- -49.37591,
- -26.0825
- ],
- [
- -49.37591,
- -26.12419
- ],
- [
- -49.50093,
- -26.12418
- ],
- [
- -49.50092,
- -26.16586
- ],
- [
- -49.68661,
- -26.16585
- ],
- [
- -49.68661,
- -26.12417
- ],
- [
- -49.74907,
- -26.08246
- ],
- [
- -49.74908,
- -26.04084
- ],
- [
- -49.8116,
- -26.04085
- ],
- [
- -49.81159,
- -25.99918
- ],
- [
- -49.93657,
- -25.99915
- ],
- [
- -49.93661,
- -25.98244
- ],
- [
- -50.00091,
- -25.98288
- ],
- [
- -50.00094,
- -25.99915
- ],
- [
- -50.31338,
- -25.99916
- ],
- [
- -50.31342,
- -26.04083
- ],
- [
- -50.37411,
- -26.04084
- ],
- [
- -50.3741,
- -25.9992
- ],
- [
- -50.49914,
- -25.99918
- ],
- [
- -50.49911,
- -25.98414
- ],
- [
- -50.62593,
- -25.98452
- ],
- [
- -50.62595,
- -26.04084
- ],
- [
- -50.6884,
- -26.04161
- ],
- [
- -50.68845,
- -26.12416
- ],
- [
- -50.75094,
- -26.12414
- ],
- [
- -50.75095,
- -26.20752
- ],
- [
- -51.12595,
- -26.20747
- ],
- [
- -51.12595,
- -26.24913
- ],
- [
- -51.18848,
- -26.24918
- ],
- [
- -51.31344,
- -26.33245
- ],
- [
- -51.31347,
- -26.62414
- ],
- [
- -51.4366,
- -26.62415
- ],
- [
- -51.43659,
- -26.56476
- ],
- [
- -51.62409,
- -26.5641
- ],
- [
- -51.62411,
- -26.5408
- ],
- [
- -51.99907,
- -26.5408
- ],
- [
- -52.06158,
- -26.49911
- ],
- [
- -52.06158,
- -26.45747
- ],
- [
- -52.12408,
- -26.45749
- ],
- [
- -52.12406,
- -26.41579
- ],
- [
- -52.37407,
- -26.4158
- ],
- [
- -52.37409,
- -26.39133
- ],
- [
- -52.56156,
- -26.3894
- ],
- [
- -52.56158,
- -26.37415
- ],
- [
- -52.62408,
- -26.37417
- ],
- [
- -52.62409,
- -26.33247
- ],
- [
- -53.12408,
- -26.33247
- ],
- [
- -53.1241,
- -26.31707
- ],
- [
- -53.1618,
- -26.3165
- ],
- [
- -53.16136,
- -26.29082
- ],
- [
- -53.18656,
- -26.29083
- ],
- [
- -53.24907,
- -26.24911
- ],
- [
- -53.24906,
- -26.23919
- ],
- [
- -53.31159,
- -26.23824
- ],
- [
- -53.3741,
- -26.22882
- ],
- [
- -53.43845,
- -26.22777
- ],
- [
- -53.43843,
- -26.24914
- ],
- [
- -53.5616,
- -26.24916
- ],
- [
- -53.56159,
- -26.23983
- ],
- [
- -53.65501,
- -26.23814
- ],
- [
- -53.65623,
- -26.29263
- ],
- [
- -53.67011,
- -26.31684
- ],
- [
- -53.68846,
- -26.33242
- ],
- [
- -53.70322,
- -26.3741
- ],
- [
- -53.70929,
- -26.38449
- ],
- [
- -53.7098,
- -26.39568
- ],
- [
- -53.70619,
- -26.40722
- ],
- [
- -53.70721,
- -26.45927
- ],
- [
- -53.71438,
- -26.46168
- ],
- [
- -53.71476,
- -26.48118
- ],
- [
- -53.73047,
- -26.49913
- ],
- [
- -53.73146,
- -26.54081
- ],
- [
- -53.75096,
- -26.5408
- ],
- [
- -53.75095,
- -26.62417
- ],
- [
- -53.7602,
- -26.62414
- ],
- [
- -53.76125,
- -26.6675
- ],
- [
- -53.75098,
- -26.66751
- ],
- [
- -53.75096,
- -26.74298
- ],
- [
- -53.72737,
- -26.7434
- ],
- [
- -53.72133,
- -26.74905
- ],
- [
- -53.72141,
- -26.75093
- ],
- [
- -53.74571,
- -26.75943
- ],
- [
- -53.74612,
- -26.77704
- ],
- [
- -53.71948,
- -26.77755
- ],
- [
- -53.72084,
- -26.83416
- ],
- [
- -53.70047,
- -26.83414
- ],
- [
- -53.70277,
- -26.93108
- ],
- [
- -53.71168,
- -26.93091
- ],
- [
- -53.71224,
- -26.95557
- ],
- [
- -53.751,
- -26.95479
- ],
- [
- -53.75092,
- -26.99915
- ],
- [
- -53.76467,
- -26.99915
- ],
- [
- -53.8037,
- -27.03751
- ],
- [
- -53.80454,
- -27.07258
- ],
- [
- -53.80809,
- -27.07249
- ],
- [
- -53.80862,
- -27.09613
- ],
- [
- -53.8269,
- -27.09577
- ],
- [
- -53.82762,
- -27.12414
- ],
- [
- -53.84644,
- -27.12413
- ],
- [
- -53.84765,
- -27.17014
- ],
- [
- -53.83506,
- -27.18932
- ],
- [
- -53.83536,
- -27.20054
- ],
- [
- -53.68847,
- -27.20284
- ],
- [
- -53.68849,
- -27.22789
- ],
- [
- -53.43654,
- -27.23246
- ],
- [
- -53.43655,
- -27.16751
- ],
- [
- -53.37598,
- -27.16751
- ],
- [
- -53.37601,
- -27.23352
- ],
- [
- -53.24905,
- -27.23564
- ],
- [
- -53.24905,
- -27.20922
- ],
- [
- -53.06344,
- -27.20918
- ],
- [
- -53.06345,
- -27.2334
- ],
- [
- -52.81348,
- -27.23685
- ],
- [
- -52.81346,
- -27.27653
- ],
- [
- -52.75096,
- -27.27732
- ],
- [
- -52.75096,
- -27.29249
- ],
- [
- -52.4385,
- -27.29252
- ],
- [
- -52.43848,
- -27.32689
- ],
- [
- -52.37603,
- -27.32753
- ],
- [
- -52.37599,
- -27.3342
- ],
- [
- -52.25098,
- -27.33418
- ],
- [
- -52.25099,
- -27.34669
- ],
- [
- -52.18655,
- -27.34728
- ],
- [
- -52.18657,
- -27.33419
- ],
- [
- -52.12598,
- -27.3342
- ],
- [
- -52.12599,
- -27.36413
- ],
- [
- -52.02979,
- -27.36489
- ],
- [
- -52.03036,
- -27.42442
- ],
- [
- -51.97534,
- -27.42479
- ],
- [
- -51.97603,
- -27.50088
- ],
- [
- -51.93845,
- -27.50085
- ],
- [
- -51.93845,
- -27.54252
- ],
- [
- -51.68846,
- -27.54247
- ],
- [
- -51.68847,
- -27.55742
- ],
- [
- -51.59903,
- -27.5579
- ],
- [
- -51.59923,
- -27.59481
- ],
- [
- -51.56351,
- -27.59498
- ],
- [
- -51.56348,
- -27.62586
- ],
- [
- -51.50088,
- -27.62586
- ],
- [
- -51.50095,
- -27.66754
- ],
- [
- -51.43937,
- -27.6675
- ],
- [
- -51.43954,
- -27.70932
- ],
- [
- -51.37597,
- -27.7095
- ],
- [
- -51.37601,
- -27.75089
- ],
- [
- -51.31349,
- -27.7509
- ],
- [
- -51.31346,
- -27.79253
- ],
- [
- -51.18847,
- -27.79251
- ],
- [
- -51.18848,
- -27.87586
- ],
- [
- -51.12598,
- -27.87586
- ],
- [
- -51.12597,
- -27.91752
- ],
- [
- -51.06348,
- -27.9175
- ],
- [
- -51.06347,
- -27.95919
- ],
- [
- -51.00095,
- -28.00086
- ],
- [
- -50.9385,
- -28.00086
- ],
- [
- -50.93849,
- -28.16755
- ],
- [
- -50.81346,
- -28.16752
- ],
- [
- -50.81345,
- -28.29253
- ],
- [
- -50.75096,
- -28.29251
- ],
- [
- -50.68845,
- -28.33418
- ],
- [
- -50.68849,
- -28.41754
- ],
- [
- -50.626,
- -28.41752
- ],
- [
- -50.56352,
- -28.44094
- ],
- [
- -50.43848,
- -28.44051
- ],
- [
- -50.43847,
- -28.45917
- ],
- [
- -50.37597,
- -28.45921
- ],
- [
- -50.37598,
- -28.47554
- ],
- [
- -50.18844,
- -28.47454
- ],
- [
- -50.18849,
- -28.51143
- ],
- [
- -50.12398,
- -28.51104
- ],
- [
- -50.12402,
- -28.50086
- ],
- [
- -49.87597,
- -28.50085
- ],
- [
- -49.87601,
- -28.5142
- ],
- [
- -49.81347,
- -28.51369
- ],
- [
- -49.81347,
- -28.58255
- ],
- [
- -49.83003,
- -28.58251
- ],
- [
- -49.82951,
- -28.62597
- ],
- [
- -49.8759,
- -28.66572
- ],
- [
- -50.001,
- -28.74915
- ],
- [
- -50.001,
- -29.04083
- ],
- [
- -50.03319,
- -29.04081
- ],
- [
- -50.03219,
- -29.14711
- ],
- [
- -50.12602,
- -29.14774
- ],
- [
- -50.12598,
- -29.16579
- ],
- [
- -50.13613,
- -29.16581
- ],
- [
- -50.1885,
- -29.19623
- ],
- [
- -50.1885,
- -29.31905
- ],
- [
- -50.1422,
- -29.31873
- ],
- [
- -50.14208,
- -29.33422
- ],
- [
- -50.126,
- -29.33418
- ],
- [
- -50.12599,
- -29.36238
- ],
- [
- -49.99906,
- -29.36153
- ],
- [
- -49.99904,
- -29.24031
- ],
- [
- -49.93848,
- -29.23986
- ],
- [
- -49.93851,
- -29.25087
- ],
- [
- -49.87601,
- -29.25087
- ],
- [
- -49.876,
- -29.30098
- ],
- [
- -49.82262,
- -29.30052
- ],
- [
- -49.82227,
- -29.33419
- ],
- [
- -49.81347,
- -29.33422
- ],
- [
- -49.81354,
- -29.3411
- ],
- [
- -49.68654,
- -29.33991
- ],
- [
- -49.68651,
- -29.29255
- ],
- [
- -49.62399,
- -29.29252
- ],
- [
- -49.62398,
- -29.25085
- ],
- [
- -49.56149,
- -29.25083
- ],
- [
- -49.56145,
- -29.16749
- ],
- [
- -49.49901,
- -29.16746
- ],
- [
- -49.49902,
- -29.08419
- ],
- [
- -49.4365,
- -29.08418
- ],
- [
- -49.43651,
- -29.04251
- ],
- [
- -49.37405,
- -29.04248
- ],
- [
- -49.37402,
- -28.9592
- ],
- [
- -49.31153,
- -28.95917
- ],
- [
- -49.31152,
- -28.91749
- ],
- [
- -49.24898,
- -28.9175
- ],
- [
- -49.24897,
- -28.87582
- ],
- [
- -49.18655,
- -28.87585
- ],
- [
- -49.18653,
- -28.83414
- ],
- [
- -49.12402,
- -28.83418
- ],
- [
- -49.12401,
- -28.7925
- ],
- [
- -49.06149,
- -28.79247
- ],
- [
- -49.06146,
- -28.75084
- ],
- [
- -48.99903,
- -28.75085
- ],
- [
- -48.99903,
- -28.70919
- ],
- [
- -48.93658,
- -28.70918
- ],
- [
- -48.93658,
- -28.66752
- ],
- [
- -48.87405,
- -28.66751
- ],
- [
- -48.87404,
- -28.62585
- ],
- [
- -48.74912,
- -28.62585
- ],
- [
- -48.74912,
- -28.54254
- ],
- [
- -48.68656,
- -28.54253
- ],
- [
- -48.68658,
- -28.33417
- ],
- [
- -48.62408,
- -28.33416
- ],
- [
- -48.62406,
- -28.08418
- ],
- [
- -48.5616,
- -28.08418
- ],
- [
- -48.56159,
- -27.95919
- ],
- [
- -48.49905,
- -27.95916
- ],
- [
- -48.49904,
- -27.91581
- ],
- [
- -48.56157,
- -27.9158
- ],
- [
- -48.5616,
- -27.87584
- ],
- [
- -48.49902,
- -27.87586
- ],
- [
- -48.49902,
- -27.83422
- ],
- [
- -48.43657,
- -27.83418
- ],
- [
- -48.43661,
- -27.62583
- ],
- [
- -48.37406,
- -27.62585
- ],
- [
- -48.37405,
- -27.50086
- ],
- [
- -48.31157,
- -27.50086
- ],
- [
- -48.31153,
- -27.24913
- ],
- [
- -48.43657,
- -27.24913
- ],
- [
- -48.43654,
- -27.20916
- ],
- [
- -48.37402,
- -27.2092
- ],
- [
- -48.37405,
- -27.1658
- ],
- [
- -48.43656,
- -27.1658
- ],
- [
- -48.43656,
- -27.12415
- ],
- [
- -48.49906,
- -27.12413
- ],
- [
- -48.49907,
- -27.08667
- ],
- [
- -48.50022,
- -27.08666
- ],
- [
- -48.50031,
- -27.08247
- ],
- [
- -48.5616,
- -27.08248
- ],
- [
- -48.56159,
- -27.04252
- ],
- [
- -48.49906,
- -27.04252
- ],
- [
- -48.49906,
- -26.99913
- ],
- [
- -48.56156,
- -26.99913
- ],
- [
- -48.56157,
- -26.91579
- ],
- [
- -48.62488,
- -26.91624
- ]
- ]
- ],
- "terms_url": "http://sigsc.sds.sc.gov.br/download/termo_sigsc.pdf",
- "terms_text": "Sistema de Informações Geográficas - Governo de Santa Catarina"
- },
- {
- "id": "SIGIP-2012",
- "name": "SIGIP - Orthophoto 2012",
- "type": "tms",
- "template": "http://osmdata.asitvd.ch/tiles/sigip2012/{zoom}/{x}/{y}.png",
- "endDate": "2012-01-01T00:00:00.000Z",
- "startDate": "2012-01-01T00:00:00.000Z",
- "scaleExtent": [
- 14,
- 20
- ],
- "polygon": [
- [
- [
- 6.71057,
- 46.54396
- ],
- [
- 6.72968,
- 46.54408
- ],
- [
- 6.72995,
- 46.52605
- ],
- [
- 6.71085,
- 46.52596
- ],
- [
- 6.71113,
- 46.50796
- ],
- [
- 6.6922,
- 46.50788
- ],
- [
- 6.6923,
- 46.49883
- ],
- [
- 6.63531,
- 46.49847
- ],
- [
- 6.63488,
- 46.52547
- ],
- [
- 6.65381,
- 46.52558
- ],
- [
- 6.65361,
- 46.54358
- ],
- [
- 6.69163,
- 46.54384
- ],
- [
- 6.69155,
- 46.55284
- ],
- [
- 6.71047,
- 46.55293
- ],
- [
- 6.71057,
- 46.54396
- ]
- ]
- ],
- "terms_url": "https://www.sigip.ch/",
- "terms_text": "SIGIP"
- },
- {
- "id": "Slovakia-Historic-Maps",
- "name": "Slovakia Historic Maps",
- "type": "tms",
- "template": "http://tms.freemap.sk/historicke/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 12
- ],
- "polygon": [
- [
- [
- 16.81969,
- 47.49272
- ],
- [
- 16.81969,
- 49.50303
- ],
- [
- 22.83883,
- 49.50303
- ],
- [
- 22.83883,
- 47.49272
- ],
- [
- 16.81969,
- 47.49272
- ]
- ]
- ],
- "icon": "https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"
- },
- {
- "id": "Soskut_Pusztazamor_Tarnok_Diosd_orto_2017",
- "name": "Sóskút, Pusztazámor, Tárnok, Diósd ortophoto 2017",
- "type": "tms",
- "template": "http://adam.openstreetmap.hu/mapproxy/tiles/1.0.0/Soskut-Tarnok-Pusztazamor-Diosd/mercator/{zoom}/{x}/{y}.png",
- "endDate": "2017-03-01T00:00:00.000Z",
- "startDate": "2017-03-01T00:00:00.000Z",
- "scaleExtent": [
- 11,
- 20
- ],
- "polygon": [
- [
- [
- 18.79273,
- 47.37079
- ],
- [
- 18.79194,
- 47.37048
- ],
- [
- 18.79139,
- 47.37063
- ],
- [
- 18.79011,
- 47.37176
- ],
- [
- 18.78916,
- 47.37345
- ],
- [
- 18.78722,
- 47.37566
- ],
- [
- 18.78603,
- 47.37765
- ],
- [
- 18.78498,
- 47.37905
- ],
- [
- 18.7837,
- 47.38032
- ],
- [
- 18.78267,
- 47.38195
- ],
- [
- 18.7814,
- 47.38368
- ],
- [
- 18.77934,
- 47.38713
- ],
- [
- 18.77666,
- 47.3894
- ],
- [
- 18.76472,
- 47.3967
- ],
- [
- 18.7617,
- 47.39966
- ],
- [
- 18.75631,
- 47.40328
- ],
- [
- 18.75837,
- 47.40653
- ],
- [
- 18.7588,
- 47.40776
- ],
- [
- 18.762,
- 47.41217
- ],
- [
- 18.76304,
- 47.41315
- ],
- [
- 18.76593,
- 47.41471
- ],
- [
- 18.77041,
- 47.41766
- ],
- [
- 18.77247,
- 47.41809
- ],
- [
- 18.77248,
- 47.4203
- ],
- [
- 18.8086,
- 47.44041
- ],
- [
- 18.81742,
- 47.43539
- ],
- [
- 18.82092,
- 47.43572
- ],
- [
- 18.82804,
- 47.43755
- ],
- [
- 18.83021,
- 47.43526
- ],
- [
- 18.83585,
- 47.43754
- ],
- [
- 18.84049,
- 47.43346
- ],
- [
- 18.84765,
- 47.43572
- ],
- [
- 18.851,
- 47.43281
- ],
- [
- 18.869,
- 47.43961
- ],
- [
- 18.87361,
- 47.43597
- ],
- [
- 18.87499,
- 47.43342
- ],
- [
- 18.87386,
- 47.43248
- ],
- [
- 18.87604,
- 47.42797
- ],
- [
- 18.8605,
- 47.423
- ],
- [
- 18.86621,
- 47.41798
- ],
- [
- 18.87243,
- 47.41086
- ],
- [
- 18.8663,
- 47.40773
- ],
- [
- 18.86964,
- 47.40471
- ],
- [
- 18.86777,
- 47.40207
- ],
- [
- 18.86509,
- 47.40052
- ],
- [
- 18.87081,
- 47.39838
- ],
- [
- 18.86772,
- 47.39699
- ],
- [
- 18.86992,
- 47.39655
- ],
- [
- 18.87649,
- 47.39478
- ],
- [
- 18.87749,
- 47.39495
- ],
- [
- 18.87867,
- 47.39462
- ],
- [
- 18.88358,
- 47.38996
- ],
- [
- 18.88291,
- 47.38967
- ],
- [
- 18.88539,
- 47.3853
- ],
- [
- 18.87748,
- 47.38339
- ],
- [
- 18.88181,
- 47.37605
- ],
- [
- 18.87914,
- 47.37393
- ],
- [
- 18.88638,
- 47.36923
- ],
- [
- 18.88206,
- 47.36773
- ],
- [
- 18.87973,
- 47.36641
- ],
- [
- 18.8747,
- 47.36252
- ],
- [
- 18.87282,
- 47.36137
- ],
- [
- 18.87028,
- 47.36063
- ],
- [
- 18.86688,
- 47.35853
- ],
- [
- 18.86234,
- 47.35637
- ],
- [
- 18.85567,
- 47.35199
- ],
- [
- 18.84874,
- 47.34728
- ],
- [
- 18.83192,
- 47.33841
- ],
- [
- 18.82497,
- 47.34258
- ],
- [
- 18.8162,
- 47.34925
- ],
- [
- 18.81079,
- 47.35357
- ],
- [
- 18.80823,
- 47.356
- ],
- [
- 18.80645,
- 47.35854
- ],
- [
- 18.80708,
- 47.35902
- ],
- [
- 18.80635,
- 47.36021
- ],
- [
- 18.80465,
- 47.36175
- ],
- [
- 18.80381,
- 47.36335
- ],
- [
- 18.80055,
- 47.36545
- ],
- [
- 18.79988,
- 47.36617
- ],
- [
- 18.79416,
- 47.36975
- ],
- [
- 18.79273,
- 47.37079
- ]
- ],
- [
- [
- 18.91871,
- 47.40938
- ],
- [
- 18.91826,
- 47.40998
- ],
- [
- 18.92067,
- 47.41156
- ],
- [
- 18.9251,
- 47.41372
- ],
- [
- 18.93473,
- 47.41917
- ],
- [
- 18.94063,
- 47.42241
- ],
- [
- 18.94982,
- 47.41938
- ],
- [
- 18.95155,
- 47.4175
- ],
- [
- 18.9569,
- 47.41923
- ],
- [
- 18.9577,
- 47.41878
- ],
- [
- 18.95755,
- 47.41435
- ],
- [
- 18.96211,
- 47.40507
- ],
- [
- 18.96266,
- 47.40118
- ],
- [
- 18.96316,
- 47.39903
- ],
- [
- 18.95446,
- 47.39673
- ],
- [
- 18.95276,
- 47.39526
- ],
- [
- 18.95202,
- 47.39362
- ],
- [
- 18.95119,
- 47.39356
- ],
- [
- 18.94692,
- 47.39799
- ],
- [
- 18.94411,
- 47.39845
- ],
- [
- 18.94161,
- 47.39869
- ],
- [
- 18.93735,
- 47.39633
- ],
- [
- 18.93617,
- 47.39683
- ],
- [
- 18.93122,
- 47.4
- ],
- [
- 18.9312,
- 47.40023
- ],
- [
- 18.92924,
- 47.40205
- ],
- [
- 18.92561,
- 47.40605
- ],
- [
- 18.92466,
- 47.40635
- ],
- [
- 18.92293,
- 47.40926
- ],
- [
- 18.91871,
- 47.40938
- ]
- ]
- ],
- "terms_url": "http://fototerkep.hu",
- "terms_text": "Fototerkep.hu",
- "best": true,
- "description": "5 cm resolution bald image of 4 settlement"
- },
- {
- "id": "South_Africa-CD_NGI-Aerial",
- "name": "South Africa CD:NGI Aerial",
- "type": "tms",
- "template": "http://{switch:a,b,c}.aerial.openstreetmap.org.za/ngi-aerial/{zoom}/{x}/{y}.jpg",
- "scaleExtent": [
- 1,
- 22
- ],
- "polygon": [
- [
- [
- 17.83968,
- -32.79834
- ],
- [
- 17.88935,
- -32.69728
- ],
- [
- 18.00364,
- -32.69822
- ],
- [
- 18.09917,
- -32.74853
- ],
- [
- 18.28987,
- -32.55266
- ],
- [
- 18.29302,
- -32.04871
- ],
- [
- 18.10545,
- -31.6455
- ],
- [
- 17.85293,
- -31.3444
- ],
- [
- 17.548,
- -30.90217
- ],
- [
- 17.40445,
- -30.63747
- ],
- [
- 17.24937,
- -30.39917
- ],
- [
- 16.9937,
- -29.65436
- ],
- [
- 16.7988,
- -29.19437
- ],
- [
- 16.54941,
- -28.84159
- ],
- [
- 16.44987,
- -28.69188
- ],
- [
- 16.4491,
- -28.55158
- ],
- [
- 16.60026,
- -28.48257
- ],
- [
- 16.75141,
- -28.4487
- ],
- [
- 16.74622,
- -28.2459
- ],
- [
- 16.88551,
- -28.04729
- ],
- [
- 16.99295,
- -28.0244
- ],
- [
- 17.05297,
- -28.02571
- ],
- [
- 17.10076,
- -28.03388
- ],
- [
- 17.20115,
- -28.09305
- ],
- [
- 17.20263,
- -28.23284
- ],
- [
- 17.24746,
- -28.23382
- ],
- [
- 17.2508,
- -28.19889
- ],
- [
- 17.35119,
- -28.19759
- ],
- [
- 17.35156,
- -28.24427
- ],
- [
- 17.40158,
- -28.24524
- ],
- [
- 17.41491,
- -28.34898
- ],
- [
- 17.40083,
- -28.548
- ],
- [
- 17.4527,
- -28.54897
- ],
- [
- 17.45121,
- -28.64951
- ],
- [
- 17.49836,
- -28.68721
- ],
- [
- 17.60282,
- -28.683
- ],
- [
- 17.64997,
- -28.69679
- ],
- [
- 17.65259,
- -28.73815
- ],
- [
- 17.80139,
- -28.73815
- ],
- [
- 17.99943,
- -28.75606
- ],
- [
- 18.00027,
- -28.79562
- ],
- [
- 18.15745,
- -28.87181
- ],
- [
- 18.50638,
- -28.87181
- ],
- [
- 18.61536,
- -28.82959
- ],
- [
- 18.90875,
- -28.82775
- ],
- [
- 19.1047,
- -28.94885
- ],
- [
- 19.19691,
- -28.93785
- ],
- [
- 19.24301,
- -28.85162
- ],
- [
- 19.23149,
- -28.80296
- ],
- [
- 19.25873,
- -28.70099
- ],
- [
- 19.44315,
- -28.69732
- ],
- [
- 19.55003,
- -28.49583
- ],
- [
- 19.69673,
- -28.49399
- ],
- [
- 19.69882,
- -28.44794
- ],
- [
- 19.85076,
- -28.44333
- ],
- [
- 19.84971,
- -28.40278
- ],
- [
- 19.99536,
- -28.39909
- ],
- [
- 19.98937,
- -24.74979
- ],
- [
- 20.29167,
- -24.91923
- ],
- [
- 20.47246,
- -25.15017
- ],
- [
- 20.65324,
- -25.45294
- ],
- [
- 20.73326,
- -25.6802
- ],
- [
- 20.8281,
- -25.89635
- ],
- [
- 20.84292,
- -26.21585
- ],
- [
- 20.65028,
- -26.48409
- ],
- [
- 20.65324,
- -26.82049
- ],
- [
- 21.08891,
- -26.84693
- ],
- [
- 21.67277,
- -26.839
- ],
- [
- 21.7765,
- -26.66963
- ],
- [
- 21.97211,
- -26.64314
- ],
- [
- 22.28034,
- -26.32747
- ],
- [
- 22.57078,
- -26.1334
- ],
- [
- 22.77528,
- -25.67752
- ],
- [
- 23.00052,
- -25.27619
- ],
- [
- 23.46583,
- -25.27351
- ],
- [
- 23.88372,
- -25.59737
- ],
- [
- 24.2364,
- -25.6134
- ],
- [
- 24.60391,
- -25.78966
- ],
- [
- 25.1107,
- -25.73894
- ],
- [
- 25.50784,
- -25.68554
- ],
- [
- 25.64418,
- -25.48238
- ],
- [
- 25.84193,
- -24.78054
- ],
- [
- 25.84664,
- -24.75385
- ],
- [
- 26.39285,
- -24.63329
- ],
- [
- 26.47391,
- -24.56533
- ],
- [
- 26.509,
- -24.48424
- ],
- [
- 26.58619,
- -24.40758
- ],
- [
- 26.73006,
- -24.30145
- ],
- [
- 26.85674,
- -24.24995
- ],
- [
- 26.85744,
- -24.10269
- ],
- [
- 26.92155,
- -23.8991
- ],
- [
- 26.93183,
- -23.84619
- ],
- [
- 26.97148,
- -23.69943
- ],
- [
- 27.00061,
- -23.63676
- ],
- [
- 27.0578,
- -23.60526
- ],
- [
- 27.13605,
- -23.52034
- ],
- [
- 27.33396,
- -23.39738
- ],
- [
- 27.51441,
- -23.35939
- ],
- [
- 27.59581,
- -23.20855
- ],
- [
- 27.80986,
- -23.0995
- ],
- [
- 27.88285,
- -23.06205
- ],
- [
- 27.93829,
- -22.94965
- ],
- [
- 28.04076,
- -22.82551
- ],
- [
- 28.20568,
- -22.65529
- ],
- [
- 28.33972,
- -22.56394
- ],
- [
- 28.49061,
- -22.5607
- ],
- [
- 28.61088,
- -22.54002
- ],
- [
- 28.82818,
- -22.45502
- ],
- [
- 28.92853,
- -22.42323
- ],
- [
- 28.95941,
- -22.30901
- ],
- [
- 29.01626,
- -22.20834
- ],
- [
- 29.23241,
- -22.16935
- ],
- [
- 29.35312,
- -22.18429
- ],
- [
- 29.6549,
- -22.11864
- ],
- [
- 29.77771,
- -22.1362
- ],
- [
- 29.9293,
- -22.18494
- ],
- [
- 30.11668,
- -22.28303
- ],
- [
- 30.25634,
- -22.29148
- ],
- [
- 30.30336,
- -22.33952
- ],
- [
- 30.50618,
- -22.30576
- ],
- [
- 30.83743,
- -22.28498
- ],
- [
- 31.00586,
- -22.30771
- ],
- [
- 31.18342,
- -22.32329
- ],
- [
- 31.29306,
- -22.36746
- ],
- [
- 31.56806,
- -23.19034
- ],
- [
- 31.55683,
- -23.44308
- ],
- [
- 31.69311,
- -23.61752
- ],
- [
- 31.71197,
- -23.74114
- ],
- [
- 31.77747,
- -23.88006
- ],
- [
- 31.88863,
- -23.94811
- ],
- [
- 31.91444,
- -24.17467
- ],
- [
- 31.99483,
- -24.30409
- ],
- [
- 32.01667,
- -24.4406
- ],
- [
- 32.00773,
- -24.65366
- ],
- [
- 32.01964,
- -24.91407
- ],
- [
- 32.03552,
- -25.08498
- ],
- [
- 32.01964,
- -25.38214
- ],
- [
- 31.99285,
- -25.44938
- ],
- [
- 31.99979,
- -25.51657
- ],
- [
- 32.00575,
- -25.6079
- ],
- [
- 32.00575,
- -25.66248
- ],
- [
- 31.93627,
- -25.84037
- ],
- [
- 31.98094,
- -25.95465
- ],
- [
- 31.86878,
- -26.00373
- ],
- [
- 31.41621,
- -25.72777
- ],
- [
- 31.32291,
- -25.74386
- ],
- [
- 31.25046,
- -25.82965
- ],
- [
- 31.1393,
- -25.91627
- ],
- [
- 31.11647,
- -25.99124
- ],
- [
- 30.96561,
- -26.26658
- ],
- [
- 30.89217,
- -26.32797
- ],
- [
- 30.85346,
- -26.40356
- ],
- [
- 30.82269,
- -26.44888
- ],
- [
- 30.80226,
- -26.52407
- ],
- [
- 30.80384,
- -26.80821
- ],
- [
- 30.90209,
- -26.78075
- ],
- [
- 30.91003,
- -26.84895
- ],
- [
- 30.98249,
- -26.90826
- ],
- [
- 30.97653,
- -27.00292
- ],
- [
- 31.00344,
- -27.04416
- ],
- [
- 31.15433,
- -27.19804
- ],
- [
- 31.50156,
- -27.31112
- ],
- [
- 31.97002,
- -27.31112
- ],
- [
- 31.97002,
- -27.12047
- ],
- [
- 31.97697,
- -27.05066
- ],
- [
- 32.00025,
- -26.79839
- ],
- [
- 32.10698,
- -26.79846
- ],
- [
- 32.31145,
- -26.84795
- ],
- [
- 32.89999,
- -26.85161
- ],
- [
- 32.88609,
- -26.9817
- ],
- [
- 32.70943,
- -27.47854
- ],
- [
- 32.62407,
- -27.77751
- ],
- [
- 32.5814,
- -28.07479
- ],
- [
- 32.53872,
- -28.2288
- ],
- [
- 32.42756,
- -28.50216
- ],
- [
- 32.36404,
- -28.59457
- ],
- [
- 32.07026,
- -28.84698
- ],
- [
- 31.98788,
- -28.90695
- ],
- [
- 31.77648,
- -28.96949
- ],
- [
- 31.46385,
- -29.28593
- ],
- [
- 31.35963,
- -29.38543
- ],
- [
- 31.16808,
- -29.63074
- ],
- [
- 31.06486,
- -29.78935
- ],
- [
- 31.05345,
- -29.84705
- ],
- [
- 31.06699,
- -29.86403
- ],
- [
- 31.04555,
- -29.9502
- ],
- [
- 30.95186,
- -30.00339
- ],
- [
- 30.86518,
- -30.10241
- ],
- [
- 30.72447,
- -30.3925
- ],
- [
- 30.35563,
- -30.93089
- ],
- [
- 30.09724,
- -31.24583
- ],
- [
- 29.86731,
- -31.43043
- ],
- [
- 29.74094,
- -31.50147
- ],
- [
- 29.48131,
- -31.69787
- ],
- [
- 28.89432,
- -32.28989
- ],
- [
- 28.54971,
- -32.58946
- ],
- [
- 28.14365,
- -32.83207
- ],
- [
- 28.07487,
- -32.94169
- ],
- [
- 27.84509,
- -33.08287
- ],
- [
- 27.3758,
- -33.38607
- ],
- [
- 26.88054,
- -33.6459
- ],
- [
- 26.59169,
- -33.74808
- ],
- [
- 26.45273,
- -33.79358
- ],
- [
- 26.20675,
- -33.75489
- ],
- [
- 26.00779,
- -33.7224
- ],
- [
- 25.80555,
- -33.75243
- ],
- [
- 25.75111,
- -33.80065
- ],
- [
- 25.65291,
- -33.85436
- ],
- [
- 25.65291,
- -33.94698
- ],
- [
- 25.71958,
- -34.00401
- ],
- [
- 25.72028,
- -34.05112
- ],
- [
- 25.55089,
- -34.06315
- ],
- [
- 25.35046,
- -34.05026
- ],
- [
- 25.28106,
- -34.00203
- ],
- [
- 25.04763,
- -33.99946
- ],
- [
- 24.95472,
- -34.00436
- ],
- [
- 24.94966,
- -34.10104
- ],
- [
- 24.87704,
- -34.15065
- ],
- [
- 24.87629,
- -34.20053
- ],
- [
- 24.85326,
- -34.21896
- ],
- [
- 24.76453,
- -34.20179
- ],
- [
- 24.50014,
- -34.20033
- ],
- [
- 24.34867,
- -34.11638
- ],
- [
- 24.19888,
- -34.1019
- ],
- [
- 23.99634,
- -34.05144
- ],
- [
- 23.80175,
- -34.05243
- ],
- [
- 23.74936,
- -34.01119
- ],
- [
- 23.49735,
- -34.00901
- ],
- [
- 23.41552,
- -34.04346
- ],
- [
- 23.41543,
- -34.11404
- ],
- [
- 22.90009,
- -34.0993
- ],
- [
- 22.84124,
- -34.05479
- ],
- [
- 22.64703,
- -34.05026
- ],
- [
- 22.64598,
- -34.00728
- ],
- [
- 22.57002,
- -34.00641
- ],
- [
- 22.50505,
- -34.06459
- ],
- [
- 22.252,
- -34.06459
- ],
- [
- 22.22213,
- -34.10147
- ],
- [
- 22.16212,
- -34.1057
- ],
- [
- 22.17124,
- -34.15218
- ],
- [
- 22.15769,
- -34.21809
- ],
- [
- 22.00156,
- -34.21722
- ],
- [
- 21.9497,
- -34.322
- ],
- [
- 21.86115,
- -34.40071
- ],
- [
- 21.56147,
- -34.40201
- ],
- [
- 21.5468,
- -34.36612
- ],
- [
- 21.50174,
- -34.36699
- ],
- [
- 21.5007,
- -34.40201
- ],
- [
- 21.41949,
- -34.44652
- ],
- [
- 21.19787,
- -34.44782
- ],
- [
- 21.09882,
- -34.39913
- ],
- [
- 21.00337,
- -34.37539
- ],
- [
- 20.89319,
- -34.39971
- ],
- [
- 20.89766,
- -34.4854
- ],
- [
- 20.74468,
- -34.48281
- ],
- [
- 20.5042,
- -34.48626
- ],
- [
- 20.25272,
- -34.70148
- ],
- [
- 20.08035,
- -34.83619
- ],
- [
- 19.99233,
- -34.83791
- ],
- [
- 19.89907,
- -34.82758
- ],
- [
- 19.89383,
- -34.7936
- ],
- [
- 19.5973,
- -34.79618
- ],
- [
- 19.39297,
- -34.64202
- ],
- [
- 19.28771,
- -34.64048
- ],
- [
- 19.28614,
- -34.59866
- ],
- [
- 19.34744,
- -34.52445
- ],
- [
- 19.32853,
- -34.45344
- ],
- [
- 19.098,
- -34.44998
- ],
- [
- 19.07256,
- -34.38024
- ],
- [
- 19.00235,
- -34.35256
- ],
- [
- 18.95206,
- -34.39494
- ],
- [
- 18.7975,
- -34.39364
- ],
- [
- 18.79842,
- -34.10164
- ],
- [
- 18.50175,
- -34.10153
- ],
- [
- 18.49995,
- -34.36169
- ],
- [
- 18.44773,
- -34.362
- ],
- [
- 18.44799,
- -34.35227
- ],
- [
- 18.39744,
- -34.3514
- ],
- [
- 18.39717,
- -34.3023
- ],
- [
- 18.35657,
- -34.30056
- ],
- [
- 18.34793,
- -34.20204
- ],
- [
- 18.29721,
- -34.19503
- ],
- [
- 18.29511,
- -33.99371
- ],
- [
- 18.33745,
- -33.99141
- ],
- [
- 18.34766,
- -33.84924
- ],
- [
- 18.34793,
- -33.78155
- ],
- [
- 18.41247,
- -33.74488
- ],
- [
- 18.36155,
- -33.65016
- ],
- [
- 18.2992,
- -33.58559
- ],
- [
- 18.21668,
- -33.44887
- ],
- [
- 18.13899,
- -33.39741
- ],
- [
- 17.94735,
- -33.16026
- ],
- [
- 17.88552,
- -33.05757
- ],
- [
- 17.84859,
- -32.96685
- ],
- [
- 17.83968,
- -32.85073
- ],
- [
- 17.83968,
- -32.79834
- ]
- ]
- ],
- "best": true
- },
- {
- "id": "South-Tyrol-Orthofoto2011",
- "name": "South Tyrol Orthofoto 2011",
- "type": "tms",
- "template": "https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_OF_2011_EPSG3857&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg",
- "endDate": "2011-01-01T00:00:00.000Z",
- "startDate": "2011-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 18
- ],
- "polygon": [
- [
- [
- 10.38615,
- 46.68821
- ],
- [
- 10.39201,
- 46.69016
- ],
- [
- 10.40215,
- 46.70624
- ],
- [
- 10.41274,
- 46.70821
- ],
- [
- 10.41622,
- 46.71479
- ],
- [
- 10.4168,
- 46.71847
- ],
- [
- 10.39934,
- 46.73435
- ],
- [
- 10.43464,
- 46.75356
- ],
- [
- 10.44107,
- 46.75413
- ],
- [
- 10.44011,
- 46.77149
- ],
- [
- 10.42123,
- 46.78861
- ],
- [
- 10.42845,
- 46.79755
- ],
- [
- 10.43851,
- 46.79869
- ],
- [
- 10.44925,
- 46.80462
- ],
- [
- 10.45602,
- 46.81635
- ],
- [
- 10.45438,
- 46.82221
- ],
- [
- 10.4583,
- 46.82478
- ],
- [
- 10.45513,
- 46.83059
- ],
- [
- 10.45906,
- 46.83548
- ],
- [
- 10.46483,
- 46.83624
- ],
- [
- 10.46229,
- 46.8413
- ],
- [
- 10.46987,
- 46.84933
- ],
- [
- 10.46819,
- 46.8553
- ],
- [
- 10.47838,
- 46.86013
- ],
- [
- 10.48372,
- 46.85543
- ],
- [
- 10.49628,
- 46.85305
- ],
- [
- 10.49931,
- 46.84857
- ],
- [
- 10.52124,
- 46.84653
- ],
- [
- 10.5527,
- 46.8511
- ],
- [
- 10.55795,
- 46.84695
- ],
- [
- 10.55264,
- 46.8408
- ],
- [
- 10.55536,
- 46.84087
- ],
- [
- 10.58883,
- 46.85125
- ],
- [
- 10.59502,
- 46.85829
- ],
- [
- 10.60936,
- 46.8597
- ],
- [
- 10.62441,
- 46.86558
- ],
- [
- 10.64858,
- 46.86655
- ],
- [
- 10.66787,
- 46.87651
- ],
- [
- 10.67297,
- 46.87138
- ],
- [
- 10.69112,
- 46.86861
- ],
- [
- 10.69786,
- 46.86339
- ],
- [
- 10.69508,
- 46.85308
- ],
- [
- 10.70594,
- 46.84786
- ],
- [
- 10.71763,
- 46.84795
- ],
- [
- 10.72333,
- 46.83892
- ],
- [
- 10.75621,
- 46.83383
- ],
- [
- 10.76481,
- 46.82409
- ],
- [
- 10.76387,
- 46.81971
- ],
- [
- 10.75239,
- 46.81387
- ],
- [
- 10.74506,
- 46.80223
- ],
- [
- 10.7276,
- 46.79709
- ],
- [
- 10.73122,
- 46.78925
- ],
- [
- 10.75722,
- 46.78624
- ],
- [
- 10.77744,
- 46.79149
- ],
- [
- 10.78678,
- 46.79735
- ],
- [
- 10.81439,
- 46.77662
- ],
- [
- 10.82479,
- 46.77472
- ],
- [
- 10.83129,
- 46.78138
- ],
- [
- 10.84112,
- 46.78282
- ],
- [
- 10.85354,
- 46.77506
- ],
- [
- 10.86845,
- 46.77313
- ],
- [
- 10.86993,
- 46.7669
- ],
- [
- 10.88294,
- 46.76393
- ],
- [
- 10.88962,
- 46.76529
- ],
- [
- 10.8951,
- 46.77092
- ],
- [
- 10.90527,
- 46.76911
- ],
- [
- 10.92299,
- 46.7764
- ],
- [
- 10.92821,
- 46.77408
- ],
- [
- 10.94388,
- 46.77648
- ],
- [
- 10.97522,
- 46.77361
- ],
- [
- 10.97932,
- 46.77014
- ],
- [
- 10.99475,
- 46.76804
- ],
- [
- 11.01397,
- 46.77317
- ],
- [
- 11.02328,
- 46.76715
- ],
- [
- 11.0346,
- 46.79428
- ],
- [
- 11.04234,
- 46.801
- ],
- [
- 11.03792,
- 46.80562
- ],
- [
- 11.05633,
- 46.80928
- ],
- [
- 11.07279,
- 46.82092
- ],
- [
- 11.08171,
- 46.82252
- ],
- [
- 11.0762,
- 46.83384
- ],
- [
- 11.06887,
- 46.83793
- ],
- [
- 11.07303,
- 46.84345
- ],
- [
- 11.06988,
- 46.85348
- ],
- [
- 11.08742,
- 46.87927
- ],
- [
- 11.09961,
- 46.88922
- ],
- [
- 11.09538,
- 46.89178
- ],
- [
- 11.09795,
- 46.89844
- ],
- [
- 11.0946,
- 46.91247
- ],
- [
- 11.10792,
- 46.91706
- ],
- [
- 11.10804,
- 46.92632
- ],
- [
- 11.11418,
- 46.93234
- ],
- [
- 11.13851,
- 46.92865
- ],
- [
- 11.16322,
- 46.94091
- ],
- [
- 11.16642,
- 46.94479
- ],
- [
- 11.16114,
- 46.94979
- ],
- [
- 11.1637,
- 46.96677
- ],
- [
- 11.17598,
- 46.96367
- ],
- [
- 11.18658,
- 46.97062
- ],
- [
- 11.19527,
- 46.97152
- ],
- [
- 11.20418,
- 46.96877
- ],
- [
- 11.20688,
- 46.96403
- ],
- [
- 11.22047,
- 46.97025
- ],
- [
- 11.24139,
- 46.9708
- ],
- [
- 11.24865,
- 46.97517
- ],
- [
- 11.25582,
- 46.97535
- ],
- [
- 11.26272,
- 46.98169
- ],
- [
- 11.27662,
- 46.98168
- ],
- [
- 11.28762,
- 46.98699
- ],
- [
- 11.30709,
- 46.98525
- ],
- [
- 11.3205,
- 46.99345
- ],
- [
- 11.33765,
- 46.98606
- ],
- [
- 11.34516,
- 46.99169
- ],
- [
- 11.35932,
- 46.99154
- ],
- [
- 11.37697,
- 46.98025
- ],
- [
- 11.38324,
- 46.97168
- ],
- [
- 11.40465,
- 46.96609
- ],
- [
- 11.43929,
- 46.97601
- ],
- [
- 11.45134,
- 46.99294
- ],
- [
- 11.46803,
- 46.99582
- ],
- [
- 11.46859,
- 47.003
- ],
- [
- 11.47831,
- 47.01201
- ],
- [
- 11.50238,
- 47.01073
- ],
- [
- 11.50313,
- 47.00808
- ],
- [
- 11.51366,
- 47.00595
- ],
- [
- 11.51679,
- 47.00091
- ],
- [
- 11.53381,
- 46.99233
- ],
- [
- 11.53846,
- 46.98519
- ],
- [
- 11.55297,
- 46.99149
- ],
- [
- 11.57663,
- 46.99657
- ],
- [
- 11.58,
- 47.00277
- ],
- [
- 11.58879,
- 47.00641
- ],
- [
- 11.59901,
- 47.00657
- ],
- [
- 11.60944,
- 47.01207
- ],
- [
- 11.62697,
- 47.01437
- ],
- [
- 11.63629,
- 47.00383
- ],
- [
- 11.66542,
- 46.99304
- ],
- [
- 11.6885,
- 46.99658
- ],
- [
- 11.71226,
- 46.99416
- ],
- [
- 11.72897,
- 46.97322
- ],
- [
- 11.74698,
- 46.97013
- ],
- [
- 11.76411,
- 46.97412
- ],
- [
- 11.78106,
- 46.99342
- ],
- [
- 11.81526,
- 46.991
- ],
- [
- 11.83564,
- 46.99417
- ],
- [
- 11.84396,
- 47.0025
- ],
- [
- 11.85192,
- 47.0014
- ],
- [
- 11.86722,
- 47.01252
- ],
- [
- 11.87393,
- 47.01136
- ],
- [
- 11.8794,
- 47.01714
- ],
- [
- 11.89137,
- 47.01728
- ],
- [
- 11.91627,
- 47.03422
- ],
- [
- 11.9329,
- 47.03864
- ],
- [
- 11.94688,
- 47.03464
- ],
- [
- 11.95457,
- 47.04374
- ],
- [
- 11.96773,
- 47.04158
- ],
- [
- 11.97912,
- 47.0511
- ],
- [
- 11.98587,
- 47.04815
- ],
- [
- 11.99534,
- 47.05064
- ],
- [
- 12.02037,
- 47.04821
- ],
- [
- 12.02968,
- 47.05127
- ],
- [
- 12.03353,
- 47.0583
- ],
- [
- 12.04276,
- 47.06228
- ],
- [
- 12.07543,
- 47.0605
- ],
- [
- 12.08035,
- 47.06951
- ],
- [
- 12.09308,
- 47.07791
- ],
- [
- 12.10329,
- 47.07931
- ],
- [
- 12.11867,
- 47.07445
- ],
- [
- 12.13561,
- 47.08171
- ],
- [
- 12.15125,
- 47.08049
- ],
- [
- 12.15997,
- 47.08267
- ],
- [
- 12.18589,
- 47.09322
- ],
- [
- 12.2278,
- 47.08302
- ],
- [
- 12.24228,
- 47.06892
- ],
- [
- 12.23786,
- 47.0644
- ],
- [
- 12.21821,
- 47.05795
- ],
- [
- 12.2182,
- 47.04483
- ],
- [
- 12.20552,
- 47.02595
- ],
- [
- 12.18048,
- 47.02414
- ],
- [
- 12.16423,
- 47.01782
- ],
- [
- 12.14786,
- 47.02357
- ],
- [
- 12.12723,
- 47.01218
- ],
- [
- 12.12285,
- 47.00662
- ],
- [
- 12.1322,
- 46.99339
- ],
- [
- 12.12974,
- 46.98593
- ],
- [
- 12.13977,
- 46.982
- ],
- [
- 12.13808,
- 46.96514
- ],
- [
- 12.13328,
- 46.96292
- ],
- [
- 12.13882,
- 46.95764
- ],
- [
- 12.15927,
- 46.95133
- ],
- [
- 12.1702,
- 46.93758
- ],
- [
- 12.15414,
- 46.91654
- ],
- [
- 12.14675,
- 46.91413
- ],
- [
- 12.16205,
- 46.908
- ],
- [
- 12.16959,
- 46.91121
- ],
- [
- 12.19154,
- 46.90682
- ],
- [
- 12.20106,
- 46.8965
- ],
- [
- 12.2022,
- 46.88806
- ],
- [
- 12.21663,
- 46.87517
- ],
- [
- 12.22147,
- 46.88084
- ],
- [
- 12.23125,
- 46.88146
- ],
- [
- 12.2345,
- 46.88919
- ],
- [
- 12.24162,
- 46.89192
- ],
- [
- 12.27486,
- 46.88512
- ],
- [
- 12.27979,
- 46.87921
- ],
- [
- 12.27736,
- 46.87319
- ],
- [
- 12.29326,
- 46.86566
- ],
- [
- 12.2912,
- 46.85704
- ],
- [
- 12.29733,
- 46.84455
- ],
- [
- 12.30833,
- 46.84137
- ],
- [
- 12.30726,
- 46.83271
- ],
- [
- 12.285,
- 46.81503
- ],
- [
- 12.29383,
- 46.8027
- ],
- [
- 12.28905,
- 46.79948
- ],
- [
- 12.28889,
- 46.79427
- ],
- [
- 12.28232,
- 46.79153
- ],
- [
- 12.28539,
- 46.7839
- ],
- [
- 12.30943,
- 46.78603
- ],
- [
- 12.35837,
- 46.77583
- ],
- [
- 12.37036,
- 46.74163
- ],
- [
- 12.38475,
- 46.71745
- ],
- [
- 12.40283,
- 46.70811
- ],
- [
- 12.41103,
- 46.70701
- ],
- [
- 12.41522,
- 46.70163
- ],
- [
- 12.42862,
- 46.6997
- ],
- [
- 12.42943,
- 46.69567
- ],
- [
- 12.44268,
- 46.68979
- ],
- [
- 12.47501,
- 46.68756
- ],
- [
- 12.4795,
- 46.67969
- ],
- [
- 12.43473,
- 46.66714
- ],
- [
- 12.40648,
- 46.64167
- ],
- [
- 12.38115,
- 46.64183
- ],
- [
- 12.37944,
- 46.63733
- ],
- [
- 12.3915,
- 46.62765
- ],
- [
- 12.38577,
- 46.62154
- ],
- [
- 12.35939,
- 46.61829
- ],
- [
- 12.34465,
- 46.62376
- ],
- [
- 12.34034,
- 46.63022
- ],
- [
- 12.33578,
- 46.62732
- ],
- [
- 12.3172,
- 46.62876
- ],
- [
- 12.31785,
- 46.62355
- ],
- [
- 12.30802,
- 46.61811
- ],
- [
- 12.28413,
- 46.61623
- ],
- [
- 12.26982,
- 46.62003
- ],
- [
- 12.25931,
- 46.62809
- ],
- [
- 12.24502,
- 46.62326
- ],
- [
- 12.24198,
- 46.61586
- ],
- [
- 12.21241,
- 46.60918
- ],
- [
- 12.20444,
- 46.59836
- ],
- [
- 12.19228,
- 46.59321
- ],
- [
- 12.19261,
- 46.62059
- ],
- [
- 12.1818,
- 46.6192
- ],
- [
- 12.17117,
- 46.63275
- ],
- [
- 12.16062,
- 46.63574
- ],
- [
- 12.1511,
- 46.63215
- ],
- [
- 12.1436,
- 46.6327
- ],
- [
- 12.13739,
- 46.64122
- ],
- [
- 12.12342,
- 46.64475
- ],
- [
- 12.10949,
- 46.65204
- ],
- [
- 12.10609,
- 46.65783
- ],
- [
- 12.09345,
- 46.66123
- ],
- [
- 12.08826,
- 46.66638
- ],
- [
- 12.07985,
- 46.66686
- ],
- [
- 12.07038,
- 46.67386
- ],
- [
- 12.07173,
- 46.66064
- ],
- [
- 12.06686,
- 46.65364
- ],
- [
- 12.07479,
- 46.64329
- ],
- [
- 12.06837,
- 46.63997
- ],
- [
- 12.06495,
- 46.62121
- ],
- [
- 12.05448,
- 46.61778
- ],
- [
- 12.05318,
- 46.60989
- ],
- [
- 12.04613,
- 46.60716
- ],
- [
- 12.05043,
- 46.60016
- ],
- [
- 12.04763,
- 46.58357
- ],
- [
- 12.03665,
- 46.57668
- ],
- [
- 12.0266,
- 46.55871
- ],
- [
- 12.02189,
- 46.55791
- ],
- [
- 11.99941,
- 46.53208
- ],
- [
- 11.99411,
- 46.53345
- ],
- [
- 11.98704,
- 46.54417
- ],
- [
- 11.96633,
- 46.54363
- ],
- [
- 11.95094,
- 46.53869
- ],
- [
- 11.94719,
- 46.52879
- ],
- [
- 11.94147,
- 46.52689
- ],
- [
- 11.93294,
- 46.52631
- ],
- [
- 11.9121,
- 46.532
- ],
- [
- 11.8904,
- 46.52175
- ],
- [
- 11.85192,
- 46.51682
- ],
- [
- 11.82849,
- 46.50783
- ],
- [
- 11.82334,
- 46.51315
- ],
- [
- 11.82391,
- 46.52141
- ],
- [
- 11.81086,
- 46.53146
- ],
- [
- 11.79385,
- 46.52023
- ],
- [
- 11.79189,
- 46.51322
- ],
- [
- 11.76157,
- 46.50503
- ],
- [
- 11.74317,
- 46.50391
- ],
- [
- 11.73202,
- 46.50877
- ],
- [
- 11.71935,
- 46.50916
- ],
- [
- 11.71524,
- 46.51245
- ],
- [
- 11.69889,
- 46.50218
- ],
- [
- 11.6672,
- 46.49647
- ],
- [
- 11.64515,
- 46.49743
- ],
- [
- 11.63849,
- 46.50051
- ],
- [
- 11.63495,
- 46.49486
- ],
- [
- 11.64297,
- 46.49346
- ],
- [
- 11.65174,
- 46.48271
- ],
- [
- 11.64536,
- 46.47189
- ],
- [
- 11.64179,
- 46.47439
- ],
- [
- 11.62679,
- 46.4708
- ],
- [
- 11.62987,
- 46.46377
- ],
- [
- 11.61882,
- 46.44325
- ],
- [
- 11.62143,
- 46.42539
- ],
- [
- 11.60161,
- 46.39731
- ],
- [
- 11.60307,
- 46.38924
- ],
- [
- 11.5932,
- 46.38265
- ],
- [
- 11.56489,
- 46.38018
- ],
- [
- 11.55878,
- 46.35076
- ],
- [
- 11.55249,
- 46.34418
- ],
- [
- 11.54423,
- 46.34483
- ],
- [
- 11.53837,
- 46.35015
- ],
- [
- 11.52445,
- 46.35502
- ],
- [
- 11.47969,
- 46.36277
- ],
- [
- 11.48052,
- 46.3551
- ],
- [
- 11.46322,
- 46.34922
- ],
- [
- 11.45556,
- 46.33396
- ],
- [
- 11.42105,
- 46.32441
- ],
- [
- 11.40517,
- 46.32387
- ],
- [
- 11.39865,
- 46.31426
- ],
- [
- 11.39994,
- 46.30709
- ],
- [
- 11.39569,
- 46.3083
- ],
- [
- 11.38188,
- 46.30052
- ],
- [
- 11.36088,
- 46.29906
- ],
- [
- 11.36078,
- 46.29682
- ],
- [
- 11.38256,
- 46.29177
- ],
- [
- 11.3871,
- 46.28143
- ],
- [
- 11.39609,
- 46.27423
- ],
- [
- 11.39862,
- 46.264
- ],
- [
- 11.38756,
- 46.26029
- ],
- [
- 11.37347,
- 46.2629
- ],
- [
- 11.36836,
- 46.26135
- ],
- [
- 11.35783,
- 46.26481
- ],
- [
- 11.35495,
- 46.27564
- ],
- [
- 11.33912,
- 46.28306
- ],
- [
- 11.33379,
- 46.29049
- ],
- [
- 11.33471,
- 46.2962
- ],
- [
- 11.3129,
- 46.28256
- ],
- [
- 11.31737,
- 46.27303
- ],
- [
- 11.30645,
- 46.25786
- ],
- [
- 11.29124,
- 46.2604
- ],
- [
- 11.24743,
- 46.22933
- ],
- [
- 11.20622,
- 46.2187
- ],
- [
- 11.18267,
- 46.22496
- ],
- [
- 11.17077,
- 46.23806
- ],
- [
- 11.17994,
- 46.24434
- ],
- [
- 11.18351,
- 46.25269
- ],
- [
- 11.18935,
- 46.25354
- ],
- [
- 11.19448,
- 46.2461
- ],
- [
- 11.20029,
- 46.25566
- ],
- [
- 11.16604,
- 46.26129
- ],
- [
- 11.14885,
- 46.27904
- ],
- [
- 11.13725,
- 46.28336
- ],
- [
- 11.14293,
- 46.28934
- ],
- [
- 11.15847,
- 46.29059
- ],
- [
- 11.16439,
- 46.2986
- ],
- [
- 11.1761,
- 46.30346
- ],
- [
- 11.1847,
- 46.32104
- ],
- [
- 11.18894,
- 46.32151
- ],
- [
- 11.18696,
- 46.32673
- ],
- [
- 11.1942,
- 46.33016
- ],
- [
- 11.20204,
- 46.34212
- ],
- [
- 11.19001,
- 46.35984
- ],
- [
- 11.19263,
- 46.36578
- ],
- [
- 11.20393,
- 46.36765
- ],
- [
- 11.19792,
- 46.37232
- ],
- [
- 11.21275,
- 46.39804
- ],
- [
- 11.21345,
- 46.40675
- ],
- [
- 11.20565,
- 46.4166
- ],
- [
- 11.21026,
- 46.4206
- ],
- [
- 11.20347,
- 46.42682
- ],
- [
- 11.21416,
- 46.43556
- ],
- [
- 11.21634,
- 46.44255
- ],
- [
- 11.20903,
- 46.45293
- ],
- [
- 11.21419,
- 46.45807
- ],
- [
- 11.21736,
- 46.45731
- ],
- [
- 11.21886,
- 46.46199
- ],
- [
- 11.21626,
- 46.47277
- ],
- [
- 11.20939,
- 46.481
- ],
- [
- 11.20876,
- 46.49346
- ],
- [
- 11.19608,
- 46.50241
- ],
- [
- 11.1924,
- 46.501
- ],
- [
- 11.18686,
- 46.50734
- ],
- [
- 11.18002,
- 46.49823
- ],
- [
- 11.17014,
- 46.49635
- ],
- [
- 11.16095,
- 46.4878
- ],
- [
- 11.12934,
- 46.48058
- ],
- [
- 11.1103,
- 46.49643
- ],
- [
- 11.10449,
- 46.4948
- ],
- [
- 11.08812,
- 46.50128
- ],
- [
- 11.08173,
- 46.53021
- ],
- [
- 11.05915,
- 46.51508
- ],
- [
- 11.03795,
- 46.51357
- ],
- [
- 11.05006,
- 46.50784
- ],
- [
- 11.05773,
- 46.49235
- ],
- [
- 11.06278,
- 46.4894
- ],
- [
- 11.06894,
- 46.46619
- ],
- [
- 11.07625,
- 46.45487
- ],
- [
- 11.0778,
- 46.44569
- ],
- [
- 11.07301,
- 46.44042
- ],
- [
- 11.05394,
- 46.44849
- ],
- [
- 11.0414,
- 46.44569
- ],
- [
- 11.02817,
- 46.46116
- ],
- [
- 11.00952,
- 46.46917
- ],
- [
- 11.00462,
- 46.47607
- ],
- [
- 10.98695,
- 46.48289
- ],
- [
- 10.96543,
- 46.48103
- ],
- [
- 10.95791,
- 46.46983
- ],
- [
- 10.93819,
- 46.46578
- ],
- [
- 10.9325,
- 46.45831
- ],
- [
- 10.93332,
- 46.4528
- ],
- [
- 10.91305,
- 46.44284
- ],
- [
- 10.89161,
- 46.44366
- ],
- [
- 10.88324,
- 46.44995
- ],
- [
- 10.88093,
- 46.44579
- ],
- [
- 10.87162,
- 46.4438
- ],
- [
- 10.86174,
- 46.43509
- ],
- [
- 10.85113,
- 46.43817
- ],
- [
- 10.80034,
- 46.44185
- ],
- [
- 10.78906,
- 46.45164
- ],
- [
- 10.77835,
- 46.47112
- ],
- [
- 10.76934,
- 46.47609
- ],
- [
- 10.76463,
- 46.4848
- ],
- [
- 10.75906,
- 46.48547
- ],
- [
- 10.74422,
- 46.48333
- ],
- [
- 10.71753,
- 46.46022
- ],
- [
- 10.69667,
- 46.4573
- ],
- [
- 10.68293,
- 46.44846
- ],
- [
- 10.66821,
- 46.45122
- ],
- [
- 10.63303,
- 46.44309
- ],
- [
- 10.61439,
- 46.45098
- ],
- [
- 10.60128,
- 46.46139
- ],
- [
- 10.59995,
- 46.46766
- ],
- [
- 10.57672,
- 46.47237
- ],
- [
- 10.55875,
- 46.48187
- ],
- [
- 10.54986,
- 46.49123
- ],
- [
- 10.53685,
- 46.49062
- ],
- [
- 10.52657,
- 46.49425
- ],
- [
- 10.49366,
- 46.49719
- ],
- [
- 10.48141,
- 46.49337
- ],
- [
- 10.45714,
- 46.5096
- ],
- [
- 10.45124,
- 46.53083
- ],
- [
- 10.45814,
- 46.54215
- ],
- [
- 10.47056,
- 46.54377
- ],
- [
- 10.46954,
- 46.54856
- ],
- [
- 10.47617,
- 46.55749
- ],
- [
- 10.47321,
- 46.56701
- ],
- [
- 10.48305,
- 46.5777
- ],
- [
- 10.48575,
- 46.58921
- ],
- [
- 10.48221,
- 46.59199
- ],
- [
- 10.48576,
- 46.59805
- ],
- [
- 10.48291,
- 46.60512
- ],
- [
- 10.49055,
- 46.61394
- ],
- [
- 10.44632,
- 46.63989
- ],
- [
- 10.40935,
- 46.63389
- ],
- [
- 10.40011,
- 46.63648
- ],
- [
- 10.39873,
- 46.6455
- ],
- [
- 10.38946,
- 46.65862
- ],
- [
- 10.39057,
- 46.67089
- ],
- [
- 10.3803,
- 46.68399
- ],
- [
- 10.38615,
- 46.68821
- ]
- ]
- ],
- "terms_url": "https://geoservices.buergernetz.bz.it/geokatalog",
- "terms_text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 3.0"
- },
- {
- "id": "South-Tyrol-Orthofoto2011-20cm",
- "name": "South Tyrol Orthofoto 2011 (highres)",
- "type": "wms",
- "template": "https://geoservices.buergernetz.bz.it/geoserver/ows?SERVICE=WMS&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=P_BZ_OF_2011_EPSG3857,P_BZ_OF_2011_20cm_EPSG3857&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2011-01-01T00:00:00.000Z",
- "startDate": "2011-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 10.38615,
- 46.68821
- ],
- [
- 10.39201,
- 46.69016
- ],
- [
- 10.40215,
- 46.70624
- ],
- [
- 10.41274,
- 46.70821
- ],
- [
- 10.41622,
- 46.71479
- ],
- [
- 10.4168,
- 46.71847
- ],
- [
- 10.39934,
- 46.73435
- ],
- [
- 10.43464,
- 46.75356
- ],
- [
- 10.44107,
- 46.75413
- ],
- [
- 10.44011,
- 46.77149
- ],
- [
- 10.42123,
- 46.78861
- ],
- [
- 10.42845,
- 46.79755
- ],
- [
- 10.43851,
- 46.79869
- ],
- [
- 10.44925,
- 46.80462
- ],
- [
- 10.45602,
- 46.81635
- ],
- [
- 10.45438,
- 46.82221
- ],
- [
- 10.4583,
- 46.82478
- ],
- [
- 10.45513,
- 46.83059
- ],
- [
- 10.45906,
- 46.83548
- ],
- [
- 10.46483,
- 46.83624
- ],
- [
- 10.46229,
- 46.8413
- ],
- [
- 10.46987,
- 46.84933
- ],
- [
- 10.46819,
- 46.8553
- ],
- [
- 10.47838,
- 46.86013
- ],
- [
- 10.48372,
- 46.85543
- ],
- [
- 10.49628,
- 46.85305
- ],
- [
- 10.49931,
- 46.84857
- ],
- [
- 10.52124,
- 46.84653
- ],
- [
- 10.5527,
- 46.8511
- ],
- [
- 10.55795,
- 46.84695
- ],
- [
- 10.55264,
- 46.8408
- ],
- [
- 10.55536,
- 46.84087
- ],
- [
- 10.58883,
- 46.85125
- ],
- [
- 10.59502,
- 46.85829
- ],
- [
- 10.60936,
- 46.8597
- ],
- [
- 10.62441,
- 46.86558
- ],
- [
- 10.64858,
- 46.86655
- ],
- [
- 10.66787,
- 46.87651
- ],
- [
- 10.67297,
- 46.87138
- ],
- [
- 10.69112,
- 46.86861
- ],
- [
- 10.69786,
- 46.86339
- ],
- [
- 10.69508,
- 46.85308
- ],
- [
- 10.70594,
- 46.84786
- ],
- [
- 10.71763,
- 46.84795
- ],
- [
- 10.72333,
- 46.83892
- ],
- [
- 10.75621,
- 46.83383
- ],
- [
- 10.76481,
- 46.82409
- ],
- [
- 10.76387,
- 46.81971
- ],
- [
- 10.75239,
- 46.81387
- ],
- [
- 10.74506,
- 46.80223
- ],
- [
- 10.7276,
- 46.79709
- ],
- [
- 10.73122,
- 46.78925
- ],
- [
- 10.75722,
- 46.78624
- ],
- [
- 10.77744,
- 46.79149
- ],
- [
- 10.78678,
- 46.79735
- ],
- [
- 10.81439,
- 46.77662
- ],
- [
- 10.82479,
- 46.77472
- ],
- [
- 10.83129,
- 46.78138
- ],
- [
- 10.84112,
- 46.78282
- ],
- [
- 10.85354,
- 46.77506
- ],
- [
- 10.86845,
- 46.77313
- ],
- [
- 10.86993,
- 46.7669
- ],
- [
- 10.88294,
- 46.76393
- ],
- [
- 10.88962,
- 46.76529
- ],
- [
- 10.8951,
- 46.77092
- ],
- [
- 10.90527,
- 46.76911
- ],
- [
- 10.92299,
- 46.7764
- ],
- [
- 10.92821,
- 46.77408
- ],
- [
- 10.94388,
- 46.77648
- ],
- [
- 10.97522,
- 46.77361
- ],
- [
- 10.97932,
- 46.77014
- ],
- [
- 10.99475,
- 46.76804
- ],
- [
- 11.01397,
- 46.77317
- ],
- [
- 11.02328,
- 46.76715
- ],
- [
- 11.0346,
- 46.79428
- ],
- [
- 11.04234,
- 46.801
- ],
- [
- 11.03792,
- 46.80562
- ],
- [
- 11.05633,
- 46.80928
- ],
- [
- 11.07279,
- 46.82092
- ],
- [
- 11.08171,
- 46.82252
- ],
- [
- 11.0762,
- 46.83384
- ],
- [
- 11.06887,
- 46.83793
- ],
- [
- 11.07303,
- 46.84345
- ],
- [
- 11.06988,
- 46.85348
- ],
- [
- 11.08742,
- 46.87927
- ],
- [
- 11.09961,
- 46.88922
- ],
- [
- 11.09538,
- 46.89178
- ],
- [
- 11.09795,
- 46.89844
- ],
- [
- 11.0946,
- 46.91247
- ],
- [
- 11.10792,
- 46.91706
- ],
- [
- 11.10804,
- 46.92632
- ],
- [
- 11.11418,
- 46.93234
- ],
- [
- 11.13851,
- 46.92865
- ],
- [
- 11.16322,
- 46.94091
- ],
- [
- 11.16642,
- 46.94479
- ],
- [
- 11.16114,
- 46.94979
- ],
- [
- 11.1637,
- 46.96677
- ],
- [
- 11.17598,
- 46.96367
- ],
- [
- 11.18658,
- 46.97062
- ],
- [
- 11.19527,
- 46.97152
- ],
- [
- 11.20418,
- 46.96877
- ],
- [
- 11.20688,
- 46.96403
- ],
- [
- 11.22047,
- 46.97025
- ],
- [
- 11.24139,
- 46.9708
- ],
- [
- 11.24865,
- 46.97517
- ],
- [
- 11.25582,
- 46.97535
- ],
- [
- 11.26272,
- 46.98169
- ],
- [
- 11.27662,
- 46.98168
- ],
- [
- 11.28762,
- 46.98699
- ],
- [
- 11.30709,
- 46.98525
- ],
- [
- 11.3205,
- 46.99345
- ],
- [
- 11.33765,
- 46.98606
- ],
- [
- 11.34516,
- 46.99169
- ],
- [
- 11.35932,
- 46.99154
- ],
- [
- 11.37697,
- 46.98025
- ],
- [
- 11.38324,
- 46.97168
- ],
- [
- 11.40465,
- 46.96609
- ],
- [
- 11.43929,
- 46.97601
- ],
- [
- 11.45134,
- 46.99294
- ],
- [
- 11.46803,
- 46.99582
- ],
- [
- 11.46859,
- 47.003
- ],
- [
- 11.47831,
- 47.01201
- ],
- [
- 11.50238,
- 47.01073
- ],
- [
- 11.50313,
- 47.00808
- ],
- [
- 11.51366,
- 47.00595
- ],
- [
- 11.51679,
- 47.00091
- ],
- [
- 11.53381,
- 46.99233
- ],
- [
- 11.53846,
- 46.98519
- ],
- [
- 11.55297,
- 46.99149
- ],
- [
- 11.57663,
- 46.99657
- ],
- [
- 11.58,
- 47.00277
- ],
- [
- 11.58879,
- 47.00641
- ],
- [
- 11.59901,
- 47.00657
- ],
- [
- 11.60944,
- 47.01207
- ],
- [
- 11.62697,
- 47.01437
- ],
- [
- 11.63629,
- 47.00383
- ],
- [
- 11.66542,
- 46.99304
- ],
- [
- 11.6885,
- 46.99658
- ],
- [
- 11.71226,
- 46.99416
- ],
- [
- 11.72897,
- 46.97322
- ],
- [
- 11.74698,
- 46.97013
- ],
- [
- 11.76411,
- 46.97412
- ],
- [
- 11.78106,
- 46.99342
- ],
- [
- 11.81526,
- 46.991
- ],
- [
- 11.83564,
- 46.99417
- ],
- [
- 11.84396,
- 47.0025
- ],
- [
- 11.85192,
- 47.0014
- ],
- [
- 11.86722,
- 47.01252
- ],
- [
- 11.87393,
- 47.01136
- ],
- [
- 11.8794,
- 47.01714
- ],
- [
- 11.89137,
- 47.01728
- ],
- [
- 11.91627,
- 47.03422
- ],
- [
- 11.9329,
- 47.03864
- ],
- [
- 11.94688,
- 47.03464
- ],
- [
- 11.95457,
- 47.04374
- ],
- [
- 11.96773,
- 47.04158
- ],
- [
- 11.97912,
- 47.0511
- ],
- [
- 11.98587,
- 47.04815
- ],
- [
- 11.99534,
- 47.05064
- ],
- [
- 12.02037,
- 47.04821
- ],
- [
- 12.02968,
- 47.05127
- ],
- [
- 12.03353,
- 47.0583
- ],
- [
- 12.04276,
- 47.06228
- ],
- [
- 12.07543,
- 47.0605
- ],
- [
- 12.08035,
- 47.06951
- ],
- [
- 12.09308,
- 47.07791
- ],
- [
- 12.10329,
- 47.07931
- ],
- [
- 12.11867,
- 47.07445
- ],
- [
- 12.13561,
- 47.08171
- ],
- [
- 12.15125,
- 47.08049
- ],
- [
- 12.15997,
- 47.08267
- ],
- [
- 12.18589,
- 47.09322
- ],
- [
- 12.2278,
- 47.08302
- ],
- [
- 12.24228,
- 47.06892
- ],
- [
- 12.23786,
- 47.0644
- ],
- [
- 12.21821,
- 47.05795
- ],
- [
- 12.2182,
- 47.04483
- ],
- [
- 12.20552,
- 47.02595
- ],
- [
- 12.18048,
- 47.02414
- ],
- [
- 12.16423,
- 47.01782
- ],
- [
- 12.14786,
- 47.02357
- ],
- [
- 12.12723,
- 47.01218
- ],
- [
- 12.12285,
- 47.00662
- ],
- [
- 12.1322,
- 46.99339
- ],
- [
- 12.12974,
- 46.98593
- ],
- [
- 12.13977,
- 46.982
- ],
- [
- 12.13808,
- 46.96514
- ],
- [
- 12.13328,
- 46.96292
- ],
- [
- 12.13882,
- 46.95764
- ],
- [
- 12.15927,
- 46.95133
- ],
- [
- 12.1702,
- 46.93758
- ],
- [
- 12.15414,
- 46.91654
- ],
- [
- 12.14675,
- 46.91413
- ],
- [
- 12.16205,
- 46.908
- ],
- [
- 12.16959,
- 46.91121
- ],
- [
- 12.19154,
- 46.90682
- ],
- [
- 12.20106,
- 46.8965
- ],
- [
- 12.2022,
- 46.88806
- ],
- [
- 12.21663,
- 46.87517
- ],
- [
- 12.22147,
- 46.88084
- ],
- [
- 12.23125,
- 46.88146
- ],
- [
- 12.2345,
- 46.88919
- ],
- [
- 12.24162,
- 46.89192
- ],
- [
- 12.27486,
- 46.88512
- ],
- [
- 12.27979,
- 46.87921
- ],
- [
- 12.27736,
- 46.87319
- ],
- [
- 12.29326,
- 46.86566
- ],
- [
- 12.2912,
- 46.85704
- ],
- [
- 12.29733,
- 46.84455
- ],
- [
- 12.30833,
- 46.84137
- ],
- [
- 12.30726,
- 46.83271
- ],
- [
- 12.285,
- 46.81503
- ],
- [
- 12.29383,
- 46.8027
- ],
- [
- 12.28905,
- 46.79948
- ],
- [
- 12.28889,
- 46.79427
- ],
- [
- 12.28232,
- 46.79153
- ],
- [
- 12.28539,
- 46.7839
- ],
- [
- 12.30943,
- 46.78603
- ],
- [
- 12.35837,
- 46.77583
- ],
- [
- 12.37036,
- 46.74163
- ],
- [
- 12.38475,
- 46.71745
- ],
- [
- 12.40283,
- 46.70811
- ],
- [
- 12.41103,
- 46.70701
- ],
- [
- 12.41522,
- 46.70163
- ],
- [
- 12.42862,
- 46.6997
- ],
- [
- 12.42943,
- 46.69567
- ],
- [
- 12.44268,
- 46.68979
- ],
- [
- 12.47501,
- 46.68756
- ],
- [
- 12.4795,
- 46.67969
- ],
- [
- 12.43473,
- 46.66714
- ],
- [
- 12.40648,
- 46.64167
- ],
- [
- 12.38115,
- 46.64183
- ],
- [
- 12.37944,
- 46.63733
- ],
- [
- 12.3915,
- 46.62765
- ],
- [
- 12.38577,
- 46.62154
- ],
- [
- 12.35939,
- 46.61829
- ],
- [
- 12.34465,
- 46.62376
- ],
- [
- 12.34034,
- 46.63022
- ],
- [
- 12.33578,
- 46.62732
- ],
- [
- 12.3172,
- 46.62876
- ],
- [
- 12.31785,
- 46.62355
- ],
- [
- 12.30802,
- 46.61811
- ],
- [
- 12.28413,
- 46.61623
- ],
- [
- 12.26982,
- 46.62003
- ],
- [
- 12.25931,
- 46.62809
- ],
- [
- 12.24502,
- 46.62326
- ],
- [
- 12.24198,
- 46.61586
- ],
- [
- 12.21241,
- 46.60918
- ],
- [
- 12.20444,
- 46.59836
- ],
- [
- 12.19228,
- 46.59321
- ],
- [
- 12.19261,
- 46.62059
- ],
- [
- 12.1818,
- 46.6192
- ],
- [
- 12.17117,
- 46.63275
- ],
- [
- 12.16062,
- 46.63574
- ],
- [
- 12.1511,
- 46.63215
- ],
- [
- 12.1436,
- 46.6327
- ],
- [
- 12.13739,
- 46.64122
- ],
- [
- 12.12342,
- 46.64475
- ],
- [
- 12.10949,
- 46.65204
- ],
- [
- 12.10609,
- 46.65783
- ],
- [
- 12.09345,
- 46.66123
- ],
- [
- 12.08826,
- 46.66638
- ],
- [
- 12.07985,
- 46.66686
- ],
- [
- 12.07038,
- 46.67386
- ],
- [
- 12.07173,
- 46.66064
- ],
- [
- 12.06686,
- 46.65364
- ],
- [
- 12.07479,
- 46.64329
- ],
- [
- 12.06837,
- 46.63997
- ],
- [
- 12.06495,
- 46.62121
- ],
- [
- 12.05448,
- 46.61778
- ],
- [
- 12.05318,
- 46.60989
- ],
- [
- 12.04613,
- 46.60716
- ],
- [
- 12.05043,
- 46.60016
- ],
- [
- 12.04763,
- 46.58357
- ],
- [
- 12.03665,
- 46.57668
- ],
- [
- 12.0266,
- 46.55871
- ],
- [
- 12.02189,
- 46.55791
- ],
- [
- 11.99941,
- 46.53208
- ],
- [
- 11.99411,
- 46.53345
- ],
- [
- 11.98704,
- 46.54417
- ],
- [
- 11.96633,
- 46.54363
- ],
- [
- 11.95094,
- 46.53869
- ],
- [
- 11.94719,
- 46.52879
- ],
- [
- 11.94147,
- 46.52689
- ],
- [
- 11.93294,
- 46.52631
- ],
- [
- 11.9121,
- 46.532
- ],
- [
- 11.8904,
- 46.52175
- ],
- [
- 11.85192,
- 46.51682
- ],
- [
- 11.82849,
- 46.50783
- ],
- [
- 11.82334,
- 46.51315
- ],
- [
- 11.82391,
- 46.52141
- ],
- [
- 11.81086,
- 46.53146
- ],
- [
- 11.79385,
- 46.52023
- ],
- [
- 11.79189,
- 46.51322
- ],
- [
- 11.76157,
- 46.50503
- ],
- [
- 11.74317,
- 46.50391
- ],
- [
- 11.73202,
- 46.50877
- ],
- [
- 11.71935,
- 46.50916
- ],
- [
- 11.71524,
- 46.51245
- ],
- [
- 11.69889,
- 46.50218
- ],
- [
- 11.6672,
- 46.49647
- ],
- [
- 11.64515,
- 46.49743
- ],
- [
- 11.63849,
- 46.50051
- ],
- [
- 11.63495,
- 46.49486
- ],
- [
- 11.64297,
- 46.49346
- ],
- [
- 11.65174,
- 46.48271
- ],
- [
- 11.64536,
- 46.47189
- ],
- [
- 11.64179,
- 46.47439
- ],
- [
- 11.62679,
- 46.4708
- ],
- [
- 11.62987,
- 46.46377
- ],
- [
- 11.61882,
- 46.44325
- ],
- [
- 11.62143,
- 46.42539
- ],
- [
- 11.60161,
- 46.39731
- ],
- [
- 11.60307,
- 46.38924
- ],
- [
- 11.5932,
- 46.38265
- ],
- [
- 11.56489,
- 46.38018
- ],
- [
- 11.55878,
- 46.35076
- ],
- [
- 11.55249,
- 46.34418
- ],
- [
- 11.54423,
- 46.34483
- ],
- [
- 11.53837,
- 46.35015
- ],
- [
- 11.52445,
- 46.35502
- ],
- [
- 11.47969,
- 46.36277
- ],
- [
- 11.48052,
- 46.3551
- ],
- [
- 11.46322,
- 46.34922
- ],
- [
- 11.45556,
- 46.33396
- ],
- [
- 11.42105,
- 46.32441
- ],
- [
- 11.40517,
- 46.32387
- ],
- [
- 11.39865,
- 46.31426
- ],
- [
- 11.39994,
- 46.30709
- ],
- [
- 11.39569,
- 46.3083
- ],
- [
- 11.38188,
- 46.30052
- ],
- [
- 11.36088,
- 46.29906
- ],
- [
- 11.36078,
- 46.29682
- ],
- [
- 11.38256,
- 46.29177
- ],
- [
- 11.3871,
- 46.28143
- ],
- [
- 11.39609,
- 46.27423
- ],
- [
- 11.39862,
- 46.264
- ],
- [
- 11.38756,
- 46.26029
- ],
- [
- 11.37347,
- 46.2629
- ],
- [
- 11.36836,
- 46.26135
- ],
- [
- 11.35783,
- 46.26481
- ],
- [
- 11.35495,
- 46.27564
- ],
- [
- 11.33912,
- 46.28306
- ],
- [
- 11.33379,
- 46.29049
- ],
- [
- 11.33471,
- 46.2962
- ],
- [
- 11.3129,
- 46.28256
- ],
- [
- 11.31737,
- 46.27303
- ],
- [
- 11.30645,
- 46.25786
- ],
- [
- 11.29124,
- 46.2604
- ],
- [
- 11.24743,
- 46.22933
- ],
- [
- 11.20622,
- 46.2187
- ],
- [
- 11.18267,
- 46.22496
- ],
- [
- 11.17077,
- 46.23806
- ],
- [
- 11.17994,
- 46.24434
- ],
- [
- 11.18351,
- 46.25269
- ],
- [
- 11.18935,
- 46.25354
- ],
- [
- 11.19448,
- 46.2461
- ],
- [
- 11.20029,
- 46.25566
- ],
- [
- 11.16604,
- 46.26129
- ],
- [
- 11.14885,
- 46.27904
- ],
- [
- 11.13725,
- 46.28336
- ],
- [
- 11.14293,
- 46.28934
- ],
- [
- 11.15847,
- 46.29059
- ],
- [
- 11.16439,
- 46.2986
- ],
- [
- 11.1761,
- 46.30346
- ],
- [
- 11.1847,
- 46.32104
- ],
- [
- 11.18894,
- 46.32151
- ],
- [
- 11.18696,
- 46.32673
- ],
- [
- 11.1942,
- 46.33016
- ],
- [
- 11.20204,
- 46.34212
- ],
- [
- 11.19001,
- 46.35984
- ],
- [
- 11.19263,
- 46.36578
- ],
- [
- 11.20393,
- 46.36765
- ],
- [
- 11.19792,
- 46.37232
- ],
- [
- 11.21275,
- 46.39804
- ],
- [
- 11.21345,
- 46.40675
- ],
- [
- 11.20565,
- 46.4166
- ],
- [
- 11.21026,
- 46.4206
- ],
- [
- 11.20347,
- 46.42682
- ],
- [
- 11.21416,
- 46.43556
- ],
- [
- 11.21634,
- 46.44255
- ],
- [
- 11.20903,
- 46.45293
- ],
- [
- 11.21419,
- 46.45807
- ],
- [
- 11.21736,
- 46.45731
- ],
- [
- 11.21886,
- 46.46199
- ],
- [
- 11.21626,
- 46.47277
- ],
- [
- 11.20939,
- 46.481
- ],
- [
- 11.20876,
- 46.49346
- ],
- [
- 11.19608,
- 46.50241
- ],
- [
- 11.1924,
- 46.501
- ],
- [
- 11.18686,
- 46.50734
- ],
- [
- 11.18002,
- 46.49823
- ],
- [
- 11.17014,
- 46.49635
- ],
- [
- 11.16095,
- 46.4878
- ],
- [
- 11.12934,
- 46.48058
- ],
- [
- 11.1103,
- 46.49643
- ],
- [
- 11.10449,
- 46.4948
- ],
- [
- 11.08812,
- 46.50128
- ],
- [
- 11.08173,
- 46.53021
- ],
- [
- 11.05915,
- 46.51508
- ],
- [
- 11.03795,
- 46.51357
- ],
- [
- 11.05006,
- 46.50784
- ],
- [
- 11.05773,
- 46.49235
- ],
- [
- 11.06278,
- 46.4894
- ],
- [
- 11.06894,
- 46.46619
- ],
- [
- 11.07625,
- 46.45487
- ],
- [
- 11.0778,
- 46.44569
- ],
- [
- 11.07301,
- 46.44042
- ],
- [
- 11.05394,
- 46.44849
- ],
- [
- 11.0414,
- 46.44569
- ],
- [
- 11.02817,
- 46.46116
- ],
- [
- 11.00952,
- 46.46917
- ],
- [
- 11.00462,
- 46.47607
- ],
- [
- 10.98695,
- 46.48289
- ],
- [
- 10.96543,
- 46.48103
- ],
- [
- 10.95791,
- 46.46983
- ],
- [
- 10.93819,
- 46.46578
- ],
- [
- 10.9325,
- 46.45831
- ],
- [
- 10.93332,
- 46.4528
- ],
- [
- 10.91305,
- 46.44284
- ],
- [
- 10.89161,
- 46.44366
- ],
- [
- 10.88324,
- 46.44995
- ],
- [
- 10.88093,
- 46.44579
- ],
- [
- 10.87162,
- 46.4438
- ],
- [
- 10.86174,
- 46.43509
- ],
- [
- 10.85113,
- 46.43817
- ],
- [
- 10.80034,
- 46.44185
- ],
- [
- 10.78906,
- 46.45164
- ],
- [
- 10.77835,
- 46.47112
- ],
- [
- 10.76934,
- 46.47609
- ],
- [
- 10.76463,
- 46.4848
- ],
- [
- 10.75906,
- 46.48547
- ],
- [
- 10.74422,
- 46.48333
- ],
- [
- 10.71753,
- 46.46022
- ],
- [
- 10.69667,
- 46.4573
- ],
- [
- 10.68293,
- 46.44846
- ],
- [
- 10.66821,
- 46.45122
- ],
- [
- 10.63303,
- 46.44309
- ],
- [
- 10.61439,
- 46.45098
- ],
- [
- 10.60128,
- 46.46139
- ],
- [
- 10.59995,
- 46.46766
- ],
- [
- 10.57672,
- 46.47237
- ],
- [
- 10.55875,
- 46.48187
- ],
- [
- 10.54986,
- 46.49123
- ],
- [
- 10.53685,
- 46.49062
- ],
- [
- 10.52657,
- 46.49425
- ],
- [
- 10.49366,
- 46.49719
- ],
- [
- 10.48141,
- 46.49337
- ],
- [
- 10.45714,
- 46.5096
- ],
- [
- 10.45124,
- 46.53083
- ],
- [
- 10.45814,
- 46.54215
- ],
- [
- 10.47056,
- 46.54377
- ],
- [
- 10.46954,
- 46.54856
- ],
- [
- 10.47617,
- 46.55749
- ],
- [
- 10.47321,
- 46.56701
- ],
- [
- 10.48305,
- 46.5777
- ],
- [
- 10.48575,
- 46.58921
- ],
- [
- 10.48221,
- 46.59199
- ],
- [
- 10.48576,
- 46.59805
- ],
- [
- 10.48291,
- 46.60512
- ],
- [
- 10.49055,
- 46.61394
- ],
- [
- 10.44632,
- 46.63989
- ],
- [
- 10.40935,
- 46.63389
- ],
- [
- 10.40011,
- 46.63648
- ],
- [
- 10.39873,
- 46.6455
- ],
- [
- 10.38946,
- 46.65862
- ],
- [
- 10.39057,
- 46.67089
- ],
- [
- 10.3803,
- 46.68399
- ],
- [
- 10.38615,
- 46.68821
- ]
- ]
- ],
- "terms_url": "https://geoservices.buergernetz.bz.it/geokatalog",
- "terms_text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 3.0",
- "description": "Orthophoto of South Tyrol from 2011 with up to 20cm resolution (larger valleys)"
- },
- {
- "id": "South-Tyrol-Orthofoto-2014-2015",
- "name": "South Tyrol Orthofoto 2014/2015",
- "type": "tms",
- "template": "https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_OF_2014_2015_EPSG3857&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg",
- "endDate": "2015-11-01T00:00:00.000Z",
- "startDate": "2014-07-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 18
- ],
- "polygon": [
- [
- [
- 10.38615,
- 46.68821
- ],
- [
- 10.39201,
- 46.69016
- ],
- [
- 10.40215,
- 46.70624
- ],
- [
- 10.41274,
- 46.70821
- ],
- [
- 10.41622,
- 46.71479
- ],
- [
- 10.4168,
- 46.71847
- ],
- [
- 10.39934,
- 46.73435
- ],
- [
- 10.43464,
- 46.75356
- ],
- [
- 10.44107,
- 46.75413
- ],
- [
- 10.44011,
- 46.77149
- ],
- [
- 10.42123,
- 46.78861
- ],
- [
- 10.42845,
- 46.79755
- ],
- [
- 10.43851,
- 46.79869
- ],
- [
- 10.44925,
- 46.80462
- ],
- [
- 10.45602,
- 46.81635
- ],
- [
- 10.45438,
- 46.82221
- ],
- [
- 10.4583,
- 46.82478
- ],
- [
- 10.45513,
- 46.83059
- ],
- [
- 10.45906,
- 46.83548
- ],
- [
- 10.46483,
- 46.83624
- ],
- [
- 10.46229,
- 46.8413
- ],
- [
- 10.46987,
- 46.84933
- ],
- [
- 10.46819,
- 46.8553
- ],
- [
- 10.47838,
- 46.86013
- ],
- [
- 10.48372,
- 46.85543
- ],
- [
- 10.49628,
- 46.85305
- ],
- [
- 10.49931,
- 46.84857
- ],
- [
- 10.52124,
- 46.84653
- ],
- [
- 10.5527,
- 46.8511
- ],
- [
- 10.55795,
- 46.84695
- ],
- [
- 10.55264,
- 46.8408
- ],
- [
- 10.55536,
- 46.84087
- ],
- [
- 10.58883,
- 46.85125
- ],
- [
- 10.59502,
- 46.85829
- ],
- [
- 10.60936,
- 46.8597
- ],
- [
- 10.62441,
- 46.86558
- ],
- [
- 10.64858,
- 46.86655
- ],
- [
- 10.66787,
- 46.87651
- ],
- [
- 10.67297,
- 46.87138
- ],
- [
- 10.69112,
- 46.86861
- ],
- [
- 10.69786,
- 46.86339
- ],
- [
- 10.69508,
- 46.85308
- ],
- [
- 10.70594,
- 46.84786
- ],
- [
- 10.71763,
- 46.84795
- ],
- [
- 10.72333,
- 46.83892
- ],
- [
- 10.75621,
- 46.83383
- ],
- [
- 10.76481,
- 46.82409
- ],
- [
- 10.76387,
- 46.81971
- ],
- [
- 10.75239,
- 46.81387
- ],
- [
- 10.74506,
- 46.80223
- ],
- [
- 10.7276,
- 46.79709
- ],
- [
- 10.73122,
- 46.78925
- ],
- [
- 10.75722,
- 46.78624
- ],
- [
- 10.77744,
- 46.79149
- ],
- [
- 10.78678,
- 46.79735
- ],
- [
- 10.81439,
- 46.77662
- ],
- [
- 10.82479,
- 46.77472
- ],
- [
- 10.83129,
- 46.78138
- ],
- [
- 10.84112,
- 46.78282
- ],
- [
- 10.85354,
- 46.77506
- ],
- [
- 10.86845,
- 46.77313
- ],
- [
- 10.86993,
- 46.7669
- ],
- [
- 10.88294,
- 46.76393
- ],
- [
- 10.88962,
- 46.76529
- ],
- [
- 10.8951,
- 46.77092
- ],
- [
- 10.90527,
- 46.76911
- ],
- [
- 10.92299,
- 46.7764
- ],
- [
- 10.92821,
- 46.77408
- ],
- [
- 10.94388,
- 46.77648
- ],
- [
- 10.97522,
- 46.77361
- ],
- [
- 10.97932,
- 46.77014
- ],
- [
- 10.99475,
- 46.76804
- ],
- [
- 11.01397,
- 46.77317
- ],
- [
- 11.02328,
- 46.76715
- ],
- [
- 11.0346,
- 46.79428
- ],
- [
- 11.04234,
- 46.801
- ],
- [
- 11.03792,
- 46.80562
- ],
- [
- 11.05633,
- 46.80928
- ],
- [
- 11.07279,
- 46.82092
- ],
- [
- 11.08171,
- 46.82252
- ],
- [
- 11.0762,
- 46.83384
- ],
- [
- 11.06887,
- 46.83793
- ],
- [
- 11.07303,
- 46.84345
- ],
- [
- 11.06988,
- 46.85348
- ],
- [
- 11.08742,
- 46.87927
- ],
- [
- 11.09961,
- 46.88922
- ],
- [
- 11.09538,
- 46.89178
- ],
- [
- 11.09795,
- 46.89844
- ],
- [
- 11.0946,
- 46.91247
- ],
- [
- 11.10792,
- 46.91706
- ],
- [
- 11.10804,
- 46.92632
- ],
- [
- 11.11418,
- 46.93234
- ],
- [
- 11.13851,
- 46.92865
- ],
- [
- 11.16322,
- 46.94091
- ],
- [
- 11.16642,
- 46.94479
- ],
- [
- 11.16114,
- 46.94979
- ],
- [
- 11.1637,
- 46.96677
- ],
- [
- 11.17598,
- 46.96367
- ],
- [
- 11.18658,
- 46.97062
- ],
- [
- 11.19527,
- 46.97152
- ],
- [
- 11.20418,
- 46.96877
- ],
- [
- 11.20688,
- 46.96403
- ],
- [
- 11.22047,
- 46.97025
- ],
- [
- 11.24139,
- 46.9708
- ],
- [
- 11.24865,
- 46.97517
- ],
- [
- 11.25582,
- 46.97535
- ],
- [
- 11.26272,
- 46.98169
- ],
- [
- 11.27662,
- 46.98168
- ],
- [
- 11.28762,
- 46.98699
- ],
- [
- 11.30709,
- 46.98525
- ],
- [
- 11.3205,
- 46.99345
- ],
- [
- 11.33765,
- 46.98606
- ],
- [
- 11.34516,
- 46.99169
- ],
- [
- 11.35932,
- 46.99154
- ],
- [
- 11.37697,
- 46.98025
- ],
- [
- 11.38324,
- 46.97168
- ],
- [
- 11.40465,
- 46.96609
- ],
- [
- 11.43929,
- 46.97601
- ],
- [
- 11.45134,
- 46.99294
- ],
- [
- 11.46803,
- 46.99582
- ],
- [
- 11.46859,
- 47.003
- ],
- [
- 11.47831,
- 47.01201
- ],
- [
- 11.50238,
- 47.01073
- ],
- [
- 11.50313,
- 47.00808
- ],
- [
- 11.51366,
- 47.00595
- ],
- [
- 11.51679,
- 47.00091
- ],
- [
- 11.53381,
- 46.99233
- ],
- [
- 11.53846,
- 46.98519
- ],
- [
- 11.55297,
- 46.99149
- ],
- [
- 11.57663,
- 46.99657
- ],
- [
- 11.58,
- 47.00277
- ],
- [
- 11.58879,
- 47.00641
- ],
- [
- 11.59901,
- 47.00657
- ],
- [
- 11.60944,
- 47.01207
- ],
- [
- 11.62697,
- 47.01437
- ],
- [
- 11.63629,
- 47.00383
- ],
- [
- 11.66542,
- 46.99304
- ],
- [
- 11.6885,
- 46.99658
- ],
- [
- 11.71226,
- 46.99416
- ],
- [
- 11.72897,
- 46.97322
- ],
- [
- 11.74698,
- 46.97013
- ],
- [
- 11.76411,
- 46.97412
- ],
- [
- 11.78106,
- 46.99342
- ],
- [
- 11.81526,
- 46.991
- ],
- [
- 11.83564,
- 46.99417
- ],
- [
- 11.84396,
- 47.0025
- ],
- [
- 11.85192,
- 47.0014
- ],
- [
- 11.86722,
- 47.01252
- ],
- [
- 11.87393,
- 47.01136
- ],
- [
- 11.8794,
- 47.01714
- ],
- [
- 11.89137,
- 47.01728
- ],
- [
- 11.91627,
- 47.03422
- ],
- [
- 11.9329,
- 47.03864
- ],
- [
- 11.94688,
- 47.03464
- ],
- [
- 11.95457,
- 47.04374
- ],
- [
- 11.96773,
- 47.04158
- ],
- [
- 11.97912,
- 47.0511
- ],
- [
- 11.98587,
- 47.04815
- ],
- [
- 11.99534,
- 47.05064
- ],
- [
- 12.02037,
- 47.04821
- ],
- [
- 12.02968,
- 47.05127
- ],
- [
- 12.03353,
- 47.0583
- ],
- [
- 12.04276,
- 47.06228
- ],
- [
- 12.07543,
- 47.0605
- ],
- [
- 12.08035,
- 47.06951
- ],
- [
- 12.09308,
- 47.07791
- ],
- [
- 12.10329,
- 47.07931
- ],
- [
- 12.11867,
- 47.07445
- ],
- [
- 12.13561,
- 47.08171
- ],
- [
- 12.15125,
- 47.08049
- ],
- [
- 12.15997,
- 47.08267
- ],
- [
- 12.18589,
- 47.09322
- ],
- [
- 12.2278,
- 47.08302
- ],
- [
- 12.24228,
- 47.06892
- ],
- [
- 12.23786,
- 47.0644
- ],
- [
- 12.21821,
- 47.05795
- ],
- [
- 12.2182,
- 47.04483
- ],
- [
- 12.20552,
- 47.02595
- ],
- [
- 12.18048,
- 47.02414
- ],
- [
- 12.16423,
- 47.01782
- ],
- [
- 12.14786,
- 47.02357
- ],
- [
- 12.12723,
- 47.01218
- ],
- [
- 12.12285,
- 47.00662
- ],
- [
- 12.1322,
- 46.99339
- ],
- [
- 12.12974,
- 46.98593
- ],
- [
- 12.13977,
- 46.982
- ],
- [
- 12.13808,
- 46.96514
- ],
- [
- 12.13328,
- 46.96292
- ],
- [
- 12.13882,
- 46.95764
- ],
- [
- 12.15927,
- 46.95133
- ],
- [
- 12.1702,
- 46.93758
- ],
- [
- 12.15414,
- 46.91654
- ],
- [
- 12.14675,
- 46.91413
- ],
- [
- 12.16205,
- 46.908
- ],
- [
- 12.16959,
- 46.91121
- ],
- [
- 12.19154,
- 46.90682
- ],
- [
- 12.20106,
- 46.8965
- ],
- [
- 12.2022,
- 46.88806
- ],
- [
- 12.21663,
- 46.87517
- ],
- [
- 12.22147,
- 46.88084
- ],
- [
- 12.23125,
- 46.88146
- ],
- [
- 12.2345,
- 46.88919
- ],
- [
- 12.24162,
- 46.89192
- ],
- [
- 12.27486,
- 46.88512
- ],
- [
- 12.27979,
- 46.87921
- ],
- [
- 12.27736,
- 46.87319
- ],
- [
- 12.29326,
- 46.86566
- ],
- [
- 12.2912,
- 46.85704
- ],
- [
- 12.29733,
- 46.84455
- ],
- [
- 12.30833,
- 46.84137
- ],
- [
- 12.30726,
- 46.83271
- ],
- [
- 12.285,
- 46.81503
- ],
- [
- 12.29383,
- 46.8027
- ],
- [
- 12.28905,
- 46.79948
- ],
- [
- 12.28889,
- 46.79427
- ],
- [
- 12.28232,
- 46.79153
- ],
- [
- 12.28539,
- 46.7839
- ],
- [
- 12.30943,
- 46.78603
- ],
- [
- 12.35837,
- 46.77583
- ],
- [
- 12.37036,
- 46.74163
- ],
- [
- 12.38475,
- 46.71745
- ],
- [
- 12.40283,
- 46.70811
- ],
- [
- 12.41103,
- 46.70701
- ],
- [
- 12.41522,
- 46.70163
- ],
- [
- 12.42862,
- 46.6997
- ],
- [
- 12.42943,
- 46.69567
- ],
- [
- 12.44268,
- 46.68979
- ],
- [
- 12.47501,
- 46.68756
- ],
- [
- 12.4795,
- 46.67969
- ],
- [
- 12.43473,
- 46.66714
- ],
- [
- 12.40648,
- 46.64167
- ],
- [
- 12.38115,
- 46.64183
- ],
- [
- 12.37944,
- 46.63733
- ],
- [
- 12.3915,
- 46.62765
- ],
- [
- 12.38577,
- 46.62154
- ],
- [
- 12.35939,
- 46.61829
- ],
- [
- 12.34465,
- 46.62376
- ],
- [
- 12.34034,
- 46.63022
- ],
- [
- 12.33578,
- 46.62732
- ],
- [
- 12.3172,
- 46.62876
- ],
- [
- 12.31785,
- 46.62355
- ],
- [
- 12.30802,
- 46.61811
- ],
- [
- 12.28413,
- 46.61623
- ],
- [
- 12.26982,
- 46.62003
- ],
- [
- 12.25931,
- 46.62809
- ],
- [
- 12.24502,
- 46.62326
- ],
- [
- 12.24198,
- 46.61586
- ],
- [
- 12.21241,
- 46.60918
- ],
- [
- 12.20444,
- 46.59836
- ],
- [
- 12.19228,
- 46.59321
- ],
- [
- 12.19261,
- 46.62059
- ],
- [
- 12.1818,
- 46.6192
- ],
- [
- 12.17117,
- 46.63275
- ],
- [
- 12.16062,
- 46.63574
- ],
- [
- 12.1511,
- 46.63215
- ],
- [
- 12.1436,
- 46.6327
- ],
- [
- 12.13739,
- 46.64122
- ],
- [
- 12.12342,
- 46.64475
- ],
- [
- 12.10949,
- 46.65204
- ],
- [
- 12.10609,
- 46.65783
- ],
- [
- 12.09345,
- 46.66123
- ],
- [
- 12.08826,
- 46.66638
- ],
- [
- 12.07985,
- 46.66686
- ],
- [
- 12.07038,
- 46.67386
- ],
- [
- 12.07173,
- 46.66064
- ],
- [
- 12.06686,
- 46.65364
- ],
- [
- 12.07479,
- 46.64329
- ],
- [
- 12.06837,
- 46.63997
- ],
- [
- 12.06495,
- 46.62121
- ],
- [
- 12.05448,
- 46.61778
- ],
- [
- 12.05318,
- 46.60989
- ],
- [
- 12.04613,
- 46.60716
- ],
- [
- 12.05043,
- 46.60016
- ],
- [
- 12.04763,
- 46.58357
- ],
- [
- 12.03665,
- 46.57668
- ],
- [
- 12.0266,
- 46.55871
- ],
- [
- 12.02189,
- 46.55791
- ],
- [
- 11.99941,
- 46.53208
- ],
- [
- 11.99411,
- 46.53345
- ],
- [
- 11.98704,
- 46.54417
- ],
- [
- 11.96633,
- 46.54363
- ],
- [
- 11.95094,
- 46.53869
- ],
- [
- 11.94719,
- 46.52879
- ],
- [
- 11.94147,
- 46.52689
- ],
- [
- 11.93294,
- 46.52631
- ],
- [
- 11.9121,
- 46.532
- ],
- [
- 11.8904,
- 46.52175
- ],
- [
- 11.85192,
- 46.51682
- ],
- [
- 11.82849,
- 46.50783
- ],
- [
- 11.82334,
- 46.51315
- ],
- [
- 11.82391,
- 46.52141
- ],
- [
- 11.81086,
- 46.53146
- ],
- [
- 11.79385,
- 46.52023
- ],
- [
- 11.79189,
- 46.51322
- ],
- [
- 11.76157,
- 46.50503
- ],
- [
- 11.74317,
- 46.50391
- ],
- [
- 11.73202,
- 46.50877
- ],
- [
- 11.71935,
- 46.50916
- ],
- [
- 11.71524,
- 46.51245
- ],
- [
- 11.69889,
- 46.50218
- ],
- [
- 11.6672,
- 46.49647
- ],
- [
- 11.64515,
- 46.49743
- ],
- [
- 11.63849,
- 46.50051
- ],
- [
- 11.63495,
- 46.49486
- ],
- [
- 11.64297,
- 46.49346
- ],
- [
- 11.65174,
- 46.48271
- ],
- [
- 11.64536,
- 46.47189
- ],
- [
- 11.64179,
- 46.47439
- ],
- [
- 11.62679,
- 46.4708
- ],
- [
- 11.62987,
- 46.46377
- ],
- [
- 11.61882,
- 46.44325
- ],
- [
- 11.62143,
- 46.42539
- ],
- [
- 11.60161,
- 46.39731
- ],
- [
- 11.60307,
- 46.38924
- ],
- [
- 11.5932,
- 46.38265
- ],
- [
- 11.56489,
- 46.38018
- ],
- [
- 11.55878,
- 46.35076
- ],
- [
- 11.55249,
- 46.34418
- ],
- [
- 11.54423,
- 46.34483
- ],
- [
- 11.53837,
- 46.35015
- ],
- [
- 11.52445,
- 46.35502
- ],
- [
- 11.47969,
- 46.36277
- ],
- [
- 11.48052,
- 46.3551
- ],
- [
- 11.46322,
- 46.34922
- ],
- [
- 11.45556,
- 46.33396
- ],
- [
- 11.42105,
- 46.32441
- ],
- [
- 11.40517,
- 46.32387
- ],
- [
- 11.39865,
- 46.31426
- ],
- [
- 11.39994,
- 46.30709
- ],
- [
- 11.39569,
- 46.3083
- ],
- [
- 11.38188,
- 46.30052
- ],
- [
- 11.36088,
- 46.29906
- ],
- [
- 11.36078,
- 46.29682
- ],
- [
- 11.38256,
- 46.29177
- ],
- [
- 11.3871,
- 46.28143
- ],
- [
- 11.39609,
- 46.27423
- ],
- [
- 11.39862,
- 46.264
- ],
- [
- 11.38756,
- 46.26029
- ],
- [
- 11.37347,
- 46.2629
- ],
- [
- 11.36836,
- 46.26135
- ],
- [
- 11.35783,
- 46.26481
- ],
- [
- 11.35495,
- 46.27564
- ],
- [
- 11.33912,
- 46.28306
- ],
- [
- 11.33379,
- 46.29049
- ],
- [
- 11.33471,
- 46.2962
- ],
- [
- 11.3129,
- 46.28256
- ],
- [
- 11.31737,
- 46.27303
- ],
- [
- 11.30645,
- 46.25786
- ],
- [
- 11.29124,
- 46.2604
- ],
- [
- 11.24743,
- 46.22933
- ],
- [
- 11.20622,
- 46.2187
- ],
- [
- 11.18267,
- 46.22496
- ],
- [
- 11.17077,
- 46.23806
- ],
- [
- 11.17994,
- 46.24434
- ],
- [
- 11.18351,
- 46.25269
- ],
- [
- 11.18935,
- 46.25354
- ],
- [
- 11.19448,
- 46.2461
- ],
- [
- 11.20029,
- 46.25566
- ],
- [
- 11.16604,
- 46.26129
- ],
- [
- 11.14885,
- 46.27904
- ],
- [
- 11.13725,
- 46.28336
- ],
- [
- 11.14293,
- 46.28934
- ],
- [
- 11.15847,
- 46.29059
- ],
- [
- 11.16439,
- 46.2986
- ],
- [
- 11.1761,
- 46.30346
- ],
- [
- 11.1847,
- 46.32104
- ],
- [
- 11.18894,
- 46.32151
- ],
- [
- 11.18696,
- 46.32673
- ],
- [
- 11.1942,
- 46.33016
- ],
- [
- 11.20204,
- 46.34212
- ],
- [
- 11.19001,
- 46.35984
- ],
- [
- 11.19263,
- 46.36578
- ],
- [
- 11.20393,
- 46.36765
- ],
- [
- 11.19792,
- 46.37232
- ],
- [
- 11.21275,
- 46.39804
- ],
- [
- 11.21345,
- 46.40675
- ],
- [
- 11.20565,
- 46.4166
- ],
- [
- 11.21026,
- 46.4206
- ],
- [
- 11.20347,
- 46.42682
- ],
- [
- 11.21416,
- 46.43556
- ],
- [
- 11.21634,
- 46.44255
- ],
- [
- 11.20903,
- 46.45293
- ],
- [
- 11.21419,
- 46.45807
- ],
- [
- 11.21736,
- 46.45731
- ],
- [
- 11.21886,
- 46.46199
- ],
- [
- 11.21626,
- 46.47277
- ],
- [
- 11.20939,
- 46.481
- ],
- [
- 11.20876,
- 46.49346
- ],
- [
- 11.19608,
- 46.50241
- ],
- [
- 11.1924,
- 46.501
- ],
- [
- 11.18686,
- 46.50734
- ],
- [
- 11.18002,
- 46.49823
- ],
- [
- 11.17014,
- 46.49635
- ],
- [
- 11.16095,
- 46.4878
- ],
- [
- 11.12934,
- 46.48058
- ],
- [
- 11.1103,
- 46.49643
- ],
- [
- 11.10449,
- 46.4948
- ],
- [
- 11.08812,
- 46.50128
- ],
- [
- 11.08173,
- 46.53021
- ],
- [
- 11.05915,
- 46.51508
- ],
- [
- 11.03795,
- 46.51357
- ],
- [
- 11.05006,
- 46.50784
- ],
- [
- 11.05773,
- 46.49235
- ],
- [
- 11.06278,
- 46.4894
- ],
- [
- 11.06894,
- 46.46619
- ],
- [
- 11.07625,
- 46.45487
- ],
- [
- 11.0778,
- 46.44569
- ],
- [
- 11.07301,
- 46.44042
- ],
- [
- 11.05394,
- 46.44849
- ],
- [
- 11.0414,
- 46.44569
- ],
- [
- 11.02817,
- 46.46116
- ],
- [
- 11.00952,
- 46.46917
- ],
- [
- 11.00462,
- 46.47607
- ],
- [
- 10.98695,
- 46.48289
- ],
- [
- 10.96543,
- 46.48103
- ],
- [
- 10.95791,
- 46.46983
- ],
- [
- 10.93819,
- 46.46578
- ],
- [
- 10.9325,
- 46.45831
- ],
- [
- 10.93332,
- 46.4528
- ],
- [
- 10.91305,
- 46.44284
- ],
- [
- 10.89161,
- 46.44366
- ],
- [
- 10.88324,
- 46.44995
- ],
- [
- 10.88093,
- 46.44579
- ],
- [
- 10.87162,
- 46.4438
- ],
- [
- 10.86174,
- 46.43509
- ],
- [
- 10.85113,
- 46.43817
- ],
- [
- 10.80034,
- 46.44185
- ],
- [
- 10.78906,
- 46.45164
- ],
- [
- 10.77835,
- 46.47112
- ],
- [
- 10.76934,
- 46.47609
- ],
- [
- 10.76463,
- 46.4848
- ],
- [
- 10.75906,
- 46.48547
- ],
- [
- 10.74422,
- 46.48333
- ],
- [
- 10.71753,
- 46.46022
- ],
- [
- 10.69667,
- 46.4573
- ],
- [
- 10.68293,
- 46.44846
- ],
- [
- 10.66821,
- 46.45122
- ],
- [
- 10.63303,
- 46.44309
- ],
- [
- 10.61439,
- 46.45098
- ],
- [
- 10.60128,
- 46.46139
- ],
- [
- 10.59995,
- 46.46766
- ],
- [
- 10.57672,
- 46.47237
- ],
- [
- 10.55875,
- 46.48187
- ],
- [
- 10.54986,
- 46.49123
- ],
- [
- 10.53685,
- 46.49062
- ],
- [
- 10.52657,
- 46.49425
- ],
- [
- 10.49366,
- 46.49719
- ],
- [
- 10.48141,
- 46.49337
- ],
- [
- 10.45714,
- 46.5096
- ],
- [
- 10.45124,
- 46.53083
- ],
- [
- 10.45814,
- 46.54215
- ],
- [
- 10.47056,
- 46.54377
- ],
- [
- 10.46954,
- 46.54856
- ],
- [
- 10.47617,
- 46.55749
- ],
- [
- 10.47321,
- 46.56701
- ],
- [
- 10.48305,
- 46.5777
- ],
- [
- 10.48575,
- 46.58921
- ],
- [
- 10.48221,
- 46.59199
- ],
- [
- 10.48576,
- 46.59805
- ],
- [
- 10.48291,
- 46.60512
- ],
- [
- 10.49055,
- 46.61394
- ],
- [
- 10.44632,
- 46.63989
- ],
- [
- 10.40935,
- 46.63389
- ],
- [
- 10.40011,
- 46.63648
- ],
- [
- 10.39873,
- 46.6455
- ],
- [
- 10.38946,
- 46.65862
- ],
- [
- 10.39057,
- 46.67089
- ],
- [
- 10.3803,
- 46.68399
- ],
- [
- 10.38615,
- 46.68821
- ]
- ]
- ],
- "terms_url": "https://geoservices.buergernetz.bz.it/geokatalog",
- "terms_text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 4.0",
- "best": true
- },
- {
- "id": "South-Tyrol-Topomap",
- "name": "South Tyrol Topomap",
- "type": "tms",
- "template": "https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_BASEMAP_TOPO&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- 10.38615,
- 46.68821
- ],
- [
- 10.39201,
- 46.69016
- ],
- [
- 10.40215,
- 46.70624
- ],
- [
- 10.41274,
- 46.70821
- ],
- [
- 10.41622,
- 46.71479
- ],
- [
- 10.4168,
- 46.71847
- ],
- [
- 10.39934,
- 46.73435
- ],
- [
- 10.43464,
- 46.75356
- ],
- [
- 10.44107,
- 46.75413
- ],
- [
- 10.44011,
- 46.77149
- ],
- [
- 10.42123,
- 46.78861
- ],
- [
- 10.42845,
- 46.79755
- ],
- [
- 10.43851,
- 46.79869
- ],
- [
- 10.44925,
- 46.80462
- ],
- [
- 10.45602,
- 46.81635
- ],
- [
- 10.45438,
- 46.82221
- ],
- [
- 10.4583,
- 46.82478
- ],
- [
- 10.45513,
- 46.83059
- ],
- [
- 10.45906,
- 46.83548
- ],
- [
- 10.46483,
- 46.83624
- ],
- [
- 10.46229,
- 46.8413
- ],
- [
- 10.46987,
- 46.84933
- ],
- [
- 10.46819,
- 46.8553
- ],
- [
- 10.47838,
- 46.86013
- ],
- [
- 10.48372,
- 46.85543
- ],
- [
- 10.49628,
- 46.85305
- ],
- [
- 10.49931,
- 46.84857
- ],
- [
- 10.52124,
- 46.84653
- ],
- [
- 10.5527,
- 46.8511
- ],
- [
- 10.55795,
- 46.84695
- ],
- [
- 10.55264,
- 46.8408
- ],
- [
- 10.55536,
- 46.84087
- ],
- [
- 10.58883,
- 46.85125
- ],
- [
- 10.59502,
- 46.85829
- ],
- [
- 10.60936,
- 46.8597
- ],
- [
- 10.62441,
- 46.86558
- ],
- [
- 10.64858,
- 46.86655
- ],
- [
- 10.66787,
- 46.87651
- ],
- [
- 10.67297,
- 46.87138
- ],
- [
- 10.69112,
- 46.86861
- ],
- [
- 10.69786,
- 46.86339
- ],
- [
- 10.69508,
- 46.85308
- ],
- [
- 10.70594,
- 46.84786
- ],
- [
- 10.71763,
- 46.84795
- ],
- [
- 10.72333,
- 46.83892
- ],
- [
- 10.75621,
- 46.83383
- ],
- [
- 10.76481,
- 46.82409
- ],
- [
- 10.76387,
- 46.81971
- ],
- [
- 10.75239,
- 46.81387
- ],
- [
- 10.74506,
- 46.80223
- ],
- [
- 10.7276,
- 46.79709
- ],
- [
- 10.73122,
- 46.78925
- ],
- [
- 10.75722,
- 46.78624
- ],
- [
- 10.77744,
- 46.79149
- ],
- [
- 10.78678,
- 46.79735
- ],
- [
- 10.81439,
- 46.77662
- ],
- [
- 10.82479,
- 46.77472
- ],
- [
- 10.83129,
- 46.78138
- ],
- [
- 10.84112,
- 46.78282
- ],
- [
- 10.85354,
- 46.77506
- ],
- [
- 10.86845,
- 46.77313
- ],
- [
- 10.86993,
- 46.7669
- ],
- [
- 10.88294,
- 46.76393
- ],
- [
- 10.88962,
- 46.76529
- ],
- [
- 10.8951,
- 46.77092
- ],
- [
- 10.90527,
- 46.76911
- ],
- [
- 10.92299,
- 46.7764
- ],
- [
- 10.92821,
- 46.77408
- ],
- [
- 10.94388,
- 46.77648
- ],
- [
- 10.97522,
- 46.77361
- ],
- [
- 10.97932,
- 46.77014
- ],
- [
- 10.99475,
- 46.76804
- ],
- [
- 11.01397,
- 46.77317
- ],
- [
- 11.02328,
- 46.76715
- ],
- [
- 11.0346,
- 46.79428
- ],
- [
- 11.04234,
- 46.801
- ],
- [
- 11.03792,
- 46.80562
- ],
- [
- 11.05633,
- 46.80928
- ],
- [
- 11.07279,
- 46.82092
- ],
- [
- 11.08171,
- 46.82252
- ],
- [
- 11.0762,
- 46.83384
- ],
- [
- 11.06887,
- 46.83793
- ],
- [
- 11.07303,
- 46.84345
- ],
- [
- 11.06988,
- 46.85348
- ],
- [
- 11.08742,
- 46.87927
- ],
- [
- 11.09961,
- 46.88922
- ],
- [
- 11.09538,
- 46.89178
- ],
- [
- 11.09795,
- 46.89844
- ],
- [
- 11.0946,
- 46.91247
- ],
- [
- 11.10792,
- 46.91706
- ],
- [
- 11.10804,
- 46.92632
- ],
- [
- 11.11418,
- 46.93234
- ],
- [
- 11.13851,
- 46.92865
- ],
- [
- 11.16322,
- 46.94091
- ],
- [
- 11.16642,
- 46.94479
- ],
- [
- 11.16114,
- 46.94979
- ],
- [
- 11.1637,
- 46.96677
- ],
- [
- 11.17598,
- 46.96367
- ],
- [
- 11.18658,
- 46.97062
- ],
- [
- 11.19527,
- 46.97152
- ],
- [
- 11.20418,
- 46.96877
- ],
- [
- 11.20688,
- 46.96403
- ],
- [
- 11.22047,
- 46.97025
- ],
- [
- 11.24139,
- 46.9708
- ],
- [
- 11.24865,
- 46.97517
- ],
- [
- 11.25582,
- 46.97535
- ],
- [
- 11.26272,
- 46.98169
- ],
- [
- 11.27662,
- 46.98168
- ],
- [
- 11.28762,
- 46.98699
- ],
- [
- 11.30709,
- 46.98525
- ],
- [
- 11.3205,
- 46.99345
- ],
- [
- 11.33765,
- 46.98606
- ],
- [
- 11.34516,
- 46.99169
- ],
- [
- 11.35932,
- 46.99154
- ],
- [
- 11.37697,
- 46.98025
- ],
- [
- 11.38324,
- 46.97168
- ],
- [
- 11.40465,
- 46.96609
- ],
- [
- 11.43929,
- 46.97601
- ],
- [
- 11.45134,
- 46.99294
- ],
- [
- 11.46803,
- 46.99582
- ],
- [
- 11.46859,
- 47.003
- ],
- [
- 11.47831,
- 47.01201
- ],
- [
- 11.50238,
- 47.01073
- ],
- [
- 11.50313,
- 47.00808
- ],
- [
- 11.51366,
- 47.00595
- ],
- [
- 11.51679,
- 47.00091
- ],
- [
- 11.53381,
- 46.99233
- ],
- [
- 11.53846,
- 46.98519
- ],
- [
- 11.55297,
- 46.99149
- ],
- [
- 11.57663,
- 46.99657
- ],
- [
- 11.58,
- 47.00277
- ],
- [
- 11.58879,
- 47.00641
- ],
- [
- 11.59901,
- 47.00657
- ],
- [
- 11.60944,
- 47.01207
- ],
- [
- 11.62697,
- 47.01437
- ],
- [
- 11.63629,
- 47.00383
- ],
- [
- 11.66542,
- 46.99304
- ],
- [
- 11.6885,
- 46.99658
- ],
- [
- 11.71226,
- 46.99416
- ],
- [
- 11.72897,
- 46.97322
- ],
- [
- 11.74698,
- 46.97013
- ],
- [
- 11.76411,
- 46.97412
- ],
- [
- 11.78106,
- 46.99342
- ],
- [
- 11.81526,
- 46.991
- ],
- [
- 11.83564,
- 46.99417
- ],
- [
- 11.84396,
- 47.0025
- ],
- [
- 11.85192,
- 47.0014
- ],
- [
- 11.86722,
- 47.01252
- ],
- [
- 11.87393,
- 47.01136
- ],
- [
- 11.8794,
- 47.01714
- ],
- [
- 11.89137,
- 47.01728
- ],
- [
- 11.91627,
- 47.03422
- ],
- [
- 11.9329,
- 47.03864
- ],
- [
- 11.94688,
- 47.03464
- ],
- [
- 11.95457,
- 47.04374
- ],
- [
- 11.96773,
- 47.04158
- ],
- [
- 11.97912,
- 47.0511
- ],
- [
- 11.98587,
- 47.04815
- ],
- [
- 11.99534,
- 47.05064
- ],
- [
- 12.02037,
- 47.04821
- ],
- [
- 12.02968,
- 47.05127
- ],
- [
- 12.03353,
- 47.0583
- ],
- [
- 12.04276,
- 47.06228
- ],
- [
- 12.07543,
- 47.0605
- ],
- [
- 12.08035,
- 47.06951
- ],
- [
- 12.09308,
- 47.07791
- ],
- [
- 12.10329,
- 47.07931
- ],
- [
- 12.11867,
- 47.07445
- ],
- [
- 12.13561,
- 47.08171
- ],
- [
- 12.15125,
- 47.08049
- ],
- [
- 12.15997,
- 47.08267
- ],
- [
- 12.18589,
- 47.09322
- ],
- [
- 12.2278,
- 47.08302
- ],
- [
- 12.24228,
- 47.06892
- ],
- [
- 12.23786,
- 47.0644
- ],
- [
- 12.21821,
- 47.05795
- ],
- [
- 12.2182,
- 47.04483
- ],
- [
- 12.20552,
- 47.02595
- ],
- [
- 12.18048,
- 47.02414
- ],
- [
- 12.16423,
- 47.01782
- ],
- [
- 12.14786,
- 47.02357
- ],
- [
- 12.12723,
- 47.01218
- ],
- [
- 12.12285,
- 47.00662
- ],
- [
- 12.1322,
- 46.99339
- ],
- [
- 12.12974,
- 46.98593
- ],
- [
- 12.13977,
- 46.982
- ],
- [
- 12.13808,
- 46.96514
- ],
- [
- 12.13328,
- 46.96292
- ],
- [
- 12.13882,
- 46.95764
- ],
- [
- 12.15927,
- 46.95133
- ],
- [
- 12.1702,
- 46.93758
- ],
- [
- 12.15414,
- 46.91654
- ],
- [
- 12.14675,
- 46.91413
- ],
- [
- 12.16205,
- 46.908
- ],
- [
- 12.16959,
- 46.91121
- ],
- [
- 12.19154,
- 46.90682
- ],
- [
- 12.20106,
- 46.8965
- ],
- [
- 12.2022,
- 46.88806
- ],
- [
- 12.21663,
- 46.87517
- ],
- [
- 12.22147,
- 46.88084
- ],
- [
- 12.23125,
- 46.88146
- ],
- [
- 12.2345,
- 46.88919
- ],
- [
- 12.24162,
- 46.89192
- ],
- [
- 12.27486,
- 46.88512
- ],
- [
- 12.27979,
- 46.87921
- ],
- [
- 12.27736,
- 46.87319
- ],
- [
- 12.29326,
- 46.86566
- ],
- [
- 12.2912,
- 46.85704
- ],
- [
- 12.29733,
- 46.84455
- ],
- [
- 12.30833,
- 46.84137
- ],
- [
- 12.30726,
- 46.83271
- ],
- [
- 12.285,
- 46.81503
- ],
- [
- 12.29383,
- 46.8027
- ],
- [
- 12.28905,
- 46.79948
- ],
- [
- 12.28889,
- 46.79427
- ],
- [
- 12.28232,
- 46.79153
- ],
- [
- 12.28539,
- 46.7839
- ],
- [
- 12.30943,
- 46.78603
- ],
- [
- 12.35837,
- 46.77583
- ],
- [
- 12.37036,
- 46.74163
- ],
- [
- 12.38475,
- 46.71745
- ],
- [
- 12.40283,
- 46.70811
- ],
- [
- 12.41103,
- 46.70701
- ],
- [
- 12.41522,
- 46.70163
- ],
- [
- 12.42862,
- 46.6997
- ],
- [
- 12.42943,
- 46.69567
- ],
- [
- 12.44268,
- 46.68979
- ],
- [
- 12.47501,
- 46.68756
- ],
- [
- 12.4795,
- 46.67969
- ],
- [
- 12.43473,
- 46.66714
- ],
- [
- 12.40648,
- 46.64167
- ],
- [
- 12.38115,
- 46.64183
- ],
- [
- 12.37944,
- 46.63733
- ],
- [
- 12.3915,
- 46.62765
- ],
- [
- 12.38577,
- 46.62154
- ],
- [
- 12.35939,
- 46.61829
- ],
- [
- 12.34465,
- 46.62376
- ],
- [
- 12.34034,
- 46.63022
- ],
- [
- 12.33578,
- 46.62732
- ],
- [
- 12.3172,
- 46.62876
- ],
- [
- 12.31785,
- 46.62355
- ],
- [
- 12.30802,
- 46.61811
- ],
- [
- 12.28413,
- 46.61623
- ],
- [
- 12.26982,
- 46.62003
- ],
- [
- 12.25931,
- 46.62809
- ],
- [
- 12.24502,
- 46.62326
- ],
- [
- 12.24198,
- 46.61586
- ],
- [
- 12.21241,
- 46.60918
- ],
- [
- 12.20444,
- 46.59836
- ],
- [
- 12.19228,
- 46.59321
- ],
- [
- 12.19261,
- 46.62059
- ],
- [
- 12.1818,
- 46.6192
- ],
- [
- 12.17117,
- 46.63275
- ],
- [
- 12.16062,
- 46.63574
- ],
- [
- 12.1511,
- 46.63215
- ],
- [
- 12.1436,
- 46.6327
- ],
- [
- 12.13739,
- 46.64122
- ],
- [
- 12.12342,
- 46.64475
- ],
- [
- 12.10949,
- 46.65204
- ],
- [
- 12.10609,
- 46.65783
- ],
- [
- 12.09345,
- 46.66123
- ],
- [
- 12.08826,
- 46.66638
- ],
- [
- 12.07985,
- 46.66686
- ],
- [
- 12.07038,
- 46.67386
- ],
- [
- 12.07173,
- 46.66064
- ],
- [
- 12.06686,
- 46.65364
- ],
- [
- 12.07479,
- 46.64329
- ],
- [
- 12.06837,
- 46.63997
- ],
- [
- 12.06495,
- 46.62121
- ],
- [
- 12.05448,
- 46.61778
- ],
- [
- 12.05318,
- 46.60989
- ],
- [
- 12.04613,
- 46.60716
- ],
- [
- 12.05043,
- 46.60016
- ],
- [
- 12.04763,
- 46.58357
- ],
- [
- 12.03665,
- 46.57668
- ],
- [
- 12.0266,
- 46.55871
- ],
- [
- 12.02189,
- 46.55791
- ],
- [
- 11.99941,
- 46.53208
- ],
- [
- 11.99411,
- 46.53345
- ],
- [
- 11.98704,
- 46.54417
- ],
- [
- 11.96633,
- 46.54363
- ],
- [
- 11.95094,
- 46.53869
- ],
- [
- 11.94719,
- 46.52879
- ],
- [
- 11.94147,
- 46.52689
- ],
- [
- 11.93294,
- 46.52631
- ],
- [
- 11.9121,
- 46.532
- ],
- [
- 11.8904,
- 46.52175
- ],
- [
- 11.85192,
- 46.51682
- ],
- [
- 11.82849,
- 46.50783
- ],
- [
- 11.82334,
- 46.51315
- ],
- [
- 11.82391,
- 46.52141
- ],
- [
- 11.81086,
- 46.53146
- ],
- [
- 11.79385,
- 46.52023
- ],
- [
- 11.79189,
- 46.51322
- ],
- [
- 11.76157,
- 46.50503
- ],
- [
- 11.74317,
- 46.50391
- ],
- [
- 11.73202,
- 46.50877
- ],
- [
- 11.71935,
- 46.50916
- ],
- [
- 11.71524,
- 46.51245
- ],
- [
- 11.69889,
- 46.50218
- ],
- [
- 11.6672,
- 46.49647
- ],
- [
- 11.64515,
- 46.49743
- ],
- [
- 11.63849,
- 46.50051
- ],
- [
- 11.63495,
- 46.49486
- ],
- [
- 11.64297,
- 46.49346
- ],
- [
- 11.65174,
- 46.48271
- ],
- [
- 11.64536,
- 46.47189
- ],
- [
- 11.64179,
- 46.47439
- ],
- [
- 11.62679,
- 46.4708
- ],
- [
- 11.62987,
- 46.46377
- ],
- [
- 11.61882,
- 46.44325
- ],
- [
- 11.62143,
- 46.42539
- ],
- [
- 11.60161,
- 46.39731
- ],
- [
- 11.60307,
- 46.38924
- ],
- [
- 11.5932,
- 46.38265
- ],
- [
- 11.56489,
- 46.38018
- ],
- [
- 11.55878,
- 46.35076
- ],
- [
- 11.55249,
- 46.34418
- ],
- [
- 11.54423,
- 46.34483
- ],
- [
- 11.53837,
- 46.35015
- ],
- [
- 11.52445,
- 46.35502
- ],
- [
- 11.47969,
- 46.36277
- ],
- [
- 11.48052,
- 46.3551
- ],
- [
- 11.46322,
- 46.34922
- ],
- [
- 11.45556,
- 46.33396
- ],
- [
- 11.42105,
- 46.32441
- ],
- [
- 11.40517,
- 46.32387
- ],
- [
- 11.39865,
- 46.31426
- ],
- [
- 11.39994,
- 46.30709
- ],
- [
- 11.39569,
- 46.3083
- ],
- [
- 11.38188,
- 46.30052
- ],
- [
- 11.36088,
- 46.29906
- ],
- [
- 11.36078,
- 46.29682
- ],
- [
- 11.38256,
- 46.29177
- ],
- [
- 11.3871,
- 46.28143
- ],
- [
- 11.39609,
- 46.27423
- ],
- [
- 11.39862,
- 46.264
- ],
- [
- 11.38756,
- 46.26029
- ],
- [
- 11.37347,
- 46.2629
- ],
- [
- 11.36836,
- 46.26135
- ],
- [
- 11.35783,
- 46.26481
- ],
- [
- 11.35495,
- 46.27564
- ],
- [
- 11.33912,
- 46.28306
- ],
- [
- 11.33379,
- 46.29049
- ],
- [
- 11.33471,
- 46.2962
- ],
- [
- 11.3129,
- 46.28256
- ],
- [
- 11.31737,
- 46.27303
- ],
- [
- 11.30645,
- 46.25786
- ],
- [
- 11.29124,
- 46.2604
- ],
- [
- 11.24743,
- 46.22933
- ],
- [
- 11.20622,
- 46.2187
- ],
- [
- 11.18267,
- 46.22496
- ],
- [
- 11.17077,
- 46.23806
- ],
- [
- 11.17994,
- 46.24434
- ],
- [
- 11.18351,
- 46.25269
- ],
- [
- 11.18935,
- 46.25354
- ],
- [
- 11.19448,
- 46.2461
- ],
- [
- 11.20029,
- 46.25566
- ],
- [
- 11.16604,
- 46.26129
- ],
- [
- 11.14885,
- 46.27904
- ],
- [
- 11.13725,
- 46.28336
- ],
- [
- 11.14293,
- 46.28934
- ],
- [
- 11.15847,
- 46.29059
- ],
- [
- 11.16439,
- 46.2986
- ],
- [
- 11.1761,
- 46.30346
- ],
- [
- 11.1847,
- 46.32104
- ],
- [
- 11.18894,
- 46.32151
- ],
- [
- 11.18696,
- 46.32673
- ],
- [
- 11.1942,
- 46.33016
- ],
- [
- 11.20204,
- 46.34212
- ],
- [
- 11.19001,
- 46.35984
- ],
- [
- 11.19263,
- 46.36578
- ],
- [
- 11.20393,
- 46.36765
- ],
- [
- 11.19792,
- 46.37232
- ],
- [
- 11.21275,
- 46.39804
- ],
- [
- 11.21345,
- 46.40675
- ],
- [
- 11.20565,
- 46.4166
- ],
- [
- 11.21026,
- 46.4206
- ],
- [
- 11.20347,
- 46.42682
- ],
- [
- 11.21416,
- 46.43556
- ],
- [
- 11.21634,
- 46.44255
- ],
- [
- 11.20903,
- 46.45293
- ],
- [
- 11.21419,
- 46.45807
- ],
- [
- 11.21736,
- 46.45731
- ],
- [
- 11.21886,
- 46.46199
- ],
- [
- 11.21626,
- 46.47277
- ],
- [
- 11.20939,
- 46.481
- ],
- [
- 11.20876,
- 46.49346
- ],
- [
- 11.19608,
- 46.50241
- ],
- [
- 11.1924,
- 46.501
- ],
- [
- 11.18686,
- 46.50734
- ],
- [
- 11.18002,
- 46.49823
- ],
- [
- 11.17014,
- 46.49635
- ],
- [
- 11.16095,
- 46.4878
- ],
- [
- 11.12934,
- 46.48058
- ],
- [
- 11.1103,
- 46.49643
- ],
- [
- 11.10449,
- 46.4948
- ],
- [
- 11.08812,
- 46.50128
- ],
- [
- 11.08173,
- 46.53021
- ],
- [
- 11.05915,
- 46.51508
- ],
- [
- 11.03795,
- 46.51357
- ],
- [
- 11.05006,
- 46.50784
- ],
- [
- 11.05773,
- 46.49235
- ],
- [
- 11.06278,
- 46.4894
- ],
- [
- 11.06894,
- 46.46619
- ],
- [
- 11.07625,
- 46.45487
- ],
- [
- 11.0778,
- 46.44569
- ],
- [
- 11.07301,
- 46.44042
- ],
- [
- 11.05394,
- 46.44849
- ],
- [
- 11.0414,
- 46.44569
- ],
- [
- 11.02817,
- 46.46116
- ],
- [
- 11.00952,
- 46.46917
- ],
- [
- 11.00462,
- 46.47607
- ],
- [
- 10.98695,
- 46.48289
- ],
- [
- 10.96543,
- 46.48103
- ],
- [
- 10.95791,
- 46.46983
- ],
- [
- 10.93819,
- 46.46578
- ],
- [
- 10.9325,
- 46.45831
- ],
- [
- 10.93332,
- 46.4528
- ],
- [
- 10.91305,
- 46.44284
- ],
- [
- 10.89161,
- 46.44366
- ],
- [
- 10.88324,
- 46.44995
- ],
- [
- 10.88093,
- 46.44579
- ],
- [
- 10.87162,
- 46.4438
- ],
- [
- 10.86174,
- 46.43509
- ],
- [
- 10.85113,
- 46.43817
- ],
- [
- 10.80034,
- 46.44185
- ],
- [
- 10.78906,
- 46.45164
- ],
- [
- 10.77835,
- 46.47112
- ],
- [
- 10.76934,
- 46.47609
- ],
- [
- 10.76463,
- 46.4848
- ],
- [
- 10.75906,
- 46.48547
- ],
- [
- 10.74422,
- 46.48333
- ],
- [
- 10.71753,
- 46.46022
- ],
- [
- 10.69667,
- 46.4573
- ],
- [
- 10.68293,
- 46.44846
- ],
- [
- 10.66821,
- 46.45122
- ],
- [
- 10.63303,
- 46.44309
- ],
- [
- 10.61439,
- 46.45098
- ],
- [
- 10.60128,
- 46.46139
- ],
- [
- 10.59995,
- 46.46766
- ],
- [
- 10.57672,
- 46.47237
- ],
- [
- 10.55875,
- 46.48187
- ],
- [
- 10.54986,
- 46.49123
- ],
- [
- 10.53685,
- 46.49062
- ],
- [
- 10.52657,
- 46.49425
- ],
- [
- 10.49366,
- 46.49719
- ],
- [
- 10.48141,
- 46.49337
- ],
- [
- 10.45714,
- 46.5096
- ],
- [
- 10.45124,
- 46.53083
- ],
- [
- 10.45814,
- 46.54215
- ],
- [
- 10.47056,
- 46.54377
- ],
- [
- 10.46954,
- 46.54856
- ],
- [
- 10.47617,
- 46.55749
- ],
- [
- 10.47321,
- 46.56701
- ],
- [
- 10.48305,
- 46.5777
- ],
- [
- 10.48575,
- 46.58921
- ],
- [
- 10.48221,
- 46.59199
- ],
- [
- 10.48576,
- 46.59805
- ],
- [
- 10.48291,
- 46.60512
- ],
- [
- 10.49055,
- 46.61394
- ],
- [
- 10.44632,
- 46.63989
- ],
- [
- 10.40935,
- 46.63389
- ],
- [
- 10.40011,
- 46.63648
- ],
- [
- 10.39873,
- 46.6455
- ],
- [
- 10.38946,
- 46.65862
- ],
- [
- 10.39057,
- 46.67089
- ],
- [
- 10.3803,
- 46.68399
- ],
- [
- 10.38615,
- 46.68821
- ]
- ]
- ],
- "terms_url": "https://geoservices.buergernetz.bz.it/geokatalog",
- "terms_text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano",
- "description": "Topographical basemap of South Tyrol"
- },
- {
- "id": "SPW_ORTHO_LAST",
- "name": "SPW(allonie) most recent aerial imagery",
- "type": "wms",
- "template": "https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_LAST/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- 5.78257,
- 49.87573
- ],
- [
- 5.73919,
- 49.83362
- ],
- [
- 5.75516,
- 49.79146
- ],
- [
- 5.78839,
- 49.79665
- ],
- [
- 5.91064,
- 49.66249
- ],
- [
- 5.84857,
- 49.59723
- ],
- [
- 5.87102,
- 49.57599
- ],
- [
- 5.81857,
- 49.54638
- ],
- [
- 5.66079,
- 49.55362
- ],
- [
- 5.61108,
- 49.50603
- ],
- [
- 5.55603,
- 49.52928
- ],
- [
- 5.47051,
- 49.49737
- ],
- [
- 5.45708,
- 49.56703
- ],
- [
- 5.37522,
- 49.62333
- ],
- [
- 5.31486,
- 49.61137
- ],
- [
- 5.33243,
- 49.65263
- ],
- [
- 5.26851,
- 49.69657
- ],
- [
- 5.16628,
- 49.69303
- ],
- [
- 4.99753,
- 49.80006
- ],
- [
- 4.85164,
- 49.79345
- ],
- [
- 4.84754,
- 49.86806
- ],
- [
- 4.89013,
- 49.90893
- ],
- [
- 4.79117,
- 49.958
- ],
- [
- 4.87762,
- 50.15374
- ],
- [
- 4.82418,
- 50.16932
- ],
- [
- 4.70207,
- 50.09556
- ],
- [
- 4.69441,
- 49.99625
- ],
- [
- 4.44551,
- 49.93722
- ],
- [
- 4.30589,
- 49.96829
- ],
- [
- 4.19746,
- 49.9546
- ],
- [
- 4.1352,
- 50.01508
- ],
- [
- 4.22825,
- 50.07842
- ],
- [
- 4.19682,
- 50.13519
- ],
- [
- 4.12714,
- 50.1355
- ],
- [
- 4.2052,
- 50.27347
- ],
- [
- 4.16262,
- 50.28896
- ],
- [
- 4.13538,
- 50.25784
- ],
- [
- 4.02795,
- 50.3584
- ],
- [
- 3.88574,
- 50.32701
- ],
- [
- 3.84578,
- 50.35323
- ],
- [
- 3.74546,
- 50.35005
- ],
- [
- 3.70994,
- 50.30316
- ],
- [
- 3.65756,
- 50.37076
- ],
- [
- 3.65552,
- 50.4617
- ],
- [
- 3.60586,
- 50.49632
- ],
- [
- 3.4993,
- 50.48921
- ],
- [
- 3.51992,
- 50.52362
- ],
- [
- 3.47439,
- 50.53368
- ],
- [
- 3.37698,
- 50.49109
- ],
- [
- 3.28634,
- 50.52793
- ],
- [
- 3.26104,
- 50.70131
- ],
- [
- 3.20602,
- 50.71139
- ],
- [
- 3.17839,
- 50.75609
- ],
- [
- 3.30562,
- 50.75466
- ],
- [
- 3.36077,
- 50.70962
- ],
- [
- 3.45439,
- 50.77072
- ],
- [
- 3.64047,
- 50.72242
- ],
- [
- 3.67752,
- 50.77062
- ],
- [
- 3.75857,
- 50.78045
- ],
- [
- 3.77568,
- 50.74789
- ],
- [
- 3.8798,
- 50.75146
- ],
- [
- 3.9097,
- 50.69245
- ],
- [
- 4.05868,
- 50.69439
- ],
- [
- 4.14853,
- 50.72834
- ],
- [
- 4.2467,
- 50.6894
- ],
- [
- 4.46355,
- 50.75511
- ],
- [
- 4.52399,
- 50.72724
- ],
- [
- 4.59727,
- 50.76359
- ],
- [
- 4.63445,
- 50.74272
- ],
- [
- 4.64309,
- 50.79755
- ],
- [
- 4.76014,
- 50.80544
- ],
- [
- 4.92545,
- 50.74275
- ],
- [
- 5.00339,
- 50.76594
- ],
- [
- 5.07039,
- 50.70649
- ],
- [
- 5.16508,
- 50.6957
- ],
- [
- 5.16984,
- 50.72257
- ],
- [
- 5.30912,
- 50.71802
- ],
- [
- 5.35029,
- 50.74629
- ],
- [
- 5.47863,
- 50.72352
- ],
- [
- 5.68786,
- 50.81193
- ],
- [
- 5.68225,
- 50.75651
- ],
- [
- 5.7707,
- 50.75132
- ],
- [
- 5.81963,
- 50.71396
- ],
- [
- 5.88333,
- 50.70992
- ],
- [
- 5.89217,
- 50.75518
- ],
- [
- 5.96561,
- 50.76107
- ],
- [
- 6.04045,
- 50.74546
- ],
- [
- 6.03959,
- 50.71833
- ],
- [
- 6.11066,
- 50.72299
- ],
- [
- 6.18169,
- 50.62383
- ],
- [
- 6.26953,
- 50.62519
- ],
- [
- 6.17812,
- 50.54153
- ],
- [
- 6.22658,
- 50.49432
- ],
- [
- 6.35036,
- 50.48854
- ],
- [
- 6.34298,
- 50.38033
- ],
- [
- 6.40542,
- 50.32331
- ],
- [
- 6.30647,
- 50.32019
- ],
- [
- 6.27889,
- 50.26734
- ],
- [
- 6.17377,
- 50.23165
- ],
- [
- 6.19232,
- 50.18203
- ],
- [
- 6.147,
- 50.17775
- ],
- [
- 6.13779,
- 50.12985
- ],
- [
- 6.10245,
- 50.17055
- ],
- [
- 5.96368,
- 50.17263
- ],
- [
- 5.96133,
- 50.13136
- ],
- [
- 5.89532,
- 50.11216
- ],
- [
- 5.81968,
- 50.01329
- ],
- [
- 5.83578,
- 49.97892
- ],
- [
- 5.77502,
- 49.9608
- ],
- [
- 5.73577,
- 49.89684
- ],
- [
- 5.78257,
- 49.87573
- ]
- ]
- ],
- "best": true,
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsSAAALEgHS3X78AAACX0lEQVQ4y32TS09TURSFv3Pu7e2Dl7wqISCiAUNIlBjUhIkzhvqnTJw4cuZPcGSiDERRQkTEhIgSwISqaNNQW8pT6H2f7aAKLYmu4c7Od9beZ20lIvc5KyMgAkqBVvxLxWLxuxIRqS9KEBLmNol+FHBGh7EH+urABuP66HQStGZlZWVen6VGm3kO7j2k+vgZcalyCvZ9gvUc/rslzHH1pN4AkCjG7B+CViRGh0mMDEFsiLd38F4vcPjgEdGXPNR5tuvtxVslvMUP4AXEhZ+I5xMWilSfvsB/u4Rua0XCgHh7B92UaXQgro87NYP7ZBqJY6y+HsR1qU7N4E7PIcaQuD6Kle0i/JxDgqARYKou7qt5CAJUOgXG4C8uE2+V0C3NqEwas72L7u7AynaB1o0jKK3Qba2Y8g7RZh5TrqCz66fDhhHheo54q0T6ziTO1ZFGB6q5iczdSVRTGjl2kTDCHBwRb5UQz8fs7mF294m+5XGfzyJVt86BCOIHODeukfp6G292Ad3Zjk4liQtF7CuXwAjh+gbYNqZcQaLoFODNLWJ+HWEOj7CynSjA7O1DOg2OQ2JoEN3Zjqm6qKQDYYiyrFOAfbEflMIcH6MzaXRrC3G5QrD0CX2uDd3bQ/B+GeUkIIpr+Ug6dYALvbXcGwEFVk+WuLyD1XseqyeLPdiPti3MUZXg4xrJiXFUKlW3gz9fglU7HJVKYlwP3ZTBGR1GOQ7OzbFaS3cHicsDKNs6k8S/edg/xH35hnBtA+fW2J+rBKuzvfbWxDgqkTjpVyKydxYivo94Abqthf9pdXV18TfYtyESB1ygiAAAAABJRU5ErkJggg=="
- },
- {
- "id": "SPW_PICC",
- "name": "SPW(allonie) PICC numerical imagery",
- "type": "wms",
- "template": "https://geoservices.wallonie.be/arcgis/services/TOPOGRAPHIE/PICC_VDIFF/MapServer/WmsServer?SERVICE=WMS&VERSION=1.1.1&FORMAT=image/png8&TRANSPARENT=FALSE&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&LAYERS=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- 5.78257,
- 49.87573
- ],
- [
- 5.73919,
- 49.83362
- ],
- [
- 5.75516,
- 49.79146
- ],
- [
- 5.78839,
- 49.79665
- ],
- [
- 5.91064,
- 49.66249
- ],
- [
- 5.84857,
- 49.59723
- ],
- [
- 5.87102,
- 49.57599
- ],
- [
- 5.81857,
- 49.54638
- ],
- [
- 5.66079,
- 49.55362
- ],
- [
- 5.61108,
- 49.50603
- ],
- [
- 5.55603,
- 49.52928
- ],
- [
- 5.47051,
- 49.49737
- ],
- [
- 5.45708,
- 49.56703
- ],
- [
- 5.37522,
- 49.62333
- ],
- [
- 5.31486,
- 49.61137
- ],
- [
- 5.33243,
- 49.65263
- ],
- [
- 5.26851,
- 49.69657
- ],
- [
- 5.16628,
- 49.69303
- ],
- [
- 4.99753,
- 49.80006
- ],
- [
- 4.85164,
- 49.79345
- ],
- [
- 4.84754,
- 49.86806
- ],
- [
- 4.89013,
- 49.90893
- ],
- [
- 4.79117,
- 49.958
- ],
- [
- 4.87762,
- 50.15374
- ],
- [
- 4.82418,
- 50.16932
- ],
- [
- 4.70207,
- 50.09556
- ],
- [
- 4.69441,
- 49.99625
- ],
- [
- 4.44551,
- 49.93722
- ],
- [
- 4.30589,
- 49.96829
- ],
- [
- 4.19746,
- 49.9546
- ],
- [
- 4.1352,
- 50.01508
- ],
- [
- 4.22825,
- 50.07842
- ],
- [
- 4.19682,
- 50.13519
- ],
- [
- 4.12714,
- 50.1355
- ],
- [
- 4.2052,
- 50.27347
- ],
- [
- 4.16262,
- 50.28896
- ],
- [
- 4.13538,
- 50.25784
- ],
- [
- 4.02795,
- 50.3584
- ],
- [
- 3.88574,
- 50.32701
- ],
- [
- 3.84578,
- 50.35323
- ],
- [
- 3.74546,
- 50.35005
- ],
- [
- 3.70994,
- 50.30316
- ],
- [
- 3.65756,
- 50.37076
- ],
- [
- 3.65552,
- 50.4617
- ],
- [
- 3.60586,
- 50.49632
- ],
- [
- 3.4993,
- 50.48921
- ],
- [
- 3.51992,
- 50.52362
- ],
- [
- 3.47439,
- 50.53368
- ],
- [
- 3.37698,
- 50.49109
- ],
- [
- 3.28634,
- 50.52793
- ],
- [
- 3.26104,
- 50.70131
- ],
- [
- 3.20602,
- 50.71139
- ],
- [
- 3.17839,
- 50.75609
- ],
- [
- 3.30562,
- 50.75466
- ],
- [
- 3.36077,
- 50.70962
- ],
- [
- 3.45439,
- 50.77072
- ],
- [
- 3.64047,
- 50.72242
- ],
- [
- 3.67752,
- 50.77062
- ],
- [
- 3.75857,
- 50.78045
- ],
- [
- 3.77568,
- 50.74789
- ],
- [
- 3.8798,
- 50.75146
- ],
- [
- 3.9097,
- 50.69245
- ],
- [
- 4.05868,
- 50.69439
- ],
- [
- 4.14853,
- 50.72834
- ],
- [
- 4.2467,
- 50.6894
- ],
- [
- 4.46355,
- 50.75511
- ],
- [
- 4.52399,
- 50.72724
- ],
- [
- 4.59727,
- 50.76359
- ],
- [
- 4.63445,
- 50.74272
- ],
- [
- 4.64309,
- 50.79755
- ],
- [
- 4.76014,
- 50.80544
- ],
- [
- 4.92545,
- 50.74275
- ],
- [
- 5.00339,
- 50.76594
- ],
- [
- 5.07039,
- 50.70649
- ],
- [
- 5.16508,
- 50.6957
- ],
- [
- 5.16984,
- 50.72257
- ],
- [
- 5.30912,
- 50.71802
- ],
- [
- 5.35029,
- 50.74629
- ],
- [
- 5.47863,
- 50.72352
- ],
- [
- 5.68786,
- 50.81193
- ],
- [
- 5.68225,
- 50.75651
- ],
- [
- 5.7707,
- 50.75132
- ],
- [
- 5.81963,
- 50.71396
- ],
- [
- 5.88333,
- 50.70992
- ],
- [
- 5.89217,
- 50.75518
- ],
- [
- 5.96561,
- 50.76107
- ],
- [
- 6.04045,
- 50.74546
- ],
- [
- 6.03959,
- 50.71833
- ],
- [
- 6.11066,
- 50.72299
- ],
- [
- 6.18169,
- 50.62383
- ],
- [
- 6.26953,
- 50.62519
- ],
- [
- 6.17812,
- 50.54153
- ],
- [
- 6.22658,
- 50.49432
- ],
- [
- 6.35036,
- 50.48854
- ],
- [
- 6.34298,
- 50.38033
- ],
- [
- 6.40542,
- 50.32331
- ],
- [
- 6.30647,
- 50.32019
- ],
- [
- 6.27889,
- 50.26734
- ],
- [
- 6.17377,
- 50.23165
- ],
- [
- 6.19232,
- 50.18203
- ],
- [
- 6.147,
- 50.17775
- ],
- [
- 6.13779,
- 50.12985
- ],
- [
- 6.10245,
- 50.17055
- ],
- [
- 5.96368,
- 50.17263
- ],
- [
- 5.96133,
- 50.13136
- ],
- [
- 5.89532,
- 50.11216
- ],
- [
- 5.81968,
- 50.01329
- ],
- [
- 5.83578,
- 49.97892
- ],
- [
- 5.77502,
- 49.9608
- ],
- [
- 5.73577,
- 49.89684
- ],
- [
- 5.78257,
- 49.87573
- ]
- ]
- ],
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsSAAALEgHS3X78AAACX0lEQVQ4y32TS09TURSFv3Pu7e2Dl7wqISCiAUNIlBjUhIkzhvqnTJw4cuZPcGSiDERRQkTEhIgSwISqaNNQW8pT6H2f7aAKLYmu4c7Od9beZ20lIvc5KyMgAkqBVvxLxWLxuxIRqS9KEBLmNol+FHBGh7EH+urABuP66HQStGZlZWVen6VGm3kO7j2k+vgZcalyCvZ9gvUc/rslzHH1pN4AkCjG7B+CViRGh0mMDEFsiLd38F4vcPjgEdGXPNR5tuvtxVslvMUP4AXEhZ+I5xMWilSfvsB/u4Rua0XCgHh7B92UaXQgro87NYP7ZBqJY6y+HsR1qU7N4E7PIcaQuD6Kle0i/JxDgqARYKou7qt5CAJUOgXG4C8uE2+V0C3NqEwas72L7u7AynaB1o0jKK3Qba2Y8g7RZh5TrqCz66fDhhHheo54q0T6ziTO1ZFGB6q5iczdSVRTGjl2kTDCHBwRb5UQz8fs7mF294m+5XGfzyJVt86BCOIHODeukfp6G292Ad3Zjk4liQtF7CuXwAjh+gbYNqZcQaLoFODNLWJ+HWEOj7CynSjA7O1DOg2OQ2JoEN3Zjqm6qKQDYYiyrFOAfbEflMIcH6MzaXRrC3G5QrD0CX2uDd3bQ/B+GeUkIIpr+Ug6dYALvbXcGwEFVk+WuLyD1XseqyeLPdiPti3MUZXg4xrJiXFUKlW3gz9fglU7HJVKYlwP3ZTBGR1GOQ7OzbFaS3cHicsDKNs6k8S/edg/xH35hnBtA+fW2J+rBKuzvfbWxDgqkTjpVyKydxYivo94Abqthf9pdXV18TfYtyESB1ygiAAAAABJRU5ErkJggg=="
- },
- {
- "id": "Bern-bern2016-tms",
- "name": "Stadt Bern 10cm (2016)",
- "type": "tms",
- "template": "https://mapproxy.osm.ch/tiles/bern2016/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
- "endDate": "2016-01-01T00:00:00.000Z",
- "startDate": "2016-01-01T00:00:00.000Z",
- "scaleExtent": [
- 8,
- 21
- ],
- "polygon": [
- [
- [
- 7.29431,
- 46.92376
- ],
- [
- 7.29827,
- 46.92747
- ],
- [
- 7.30616,
- 46.93095
- ],
- [
- 7.30433,
- 46.93623
- ],
- [
- 7.30686,
- 46.94037
- ],
- [
- 7.32464,
- 46.94328
- ],
- [
- 7.32845,
- 46.94641
- ],
- [
- 7.34141,
- 46.94608
- ],
- [
- 7.34385,
- 46.94737
- ],
- [
- 7.34346,
- 46.94879
- ],
- [
- 7.35136,
- 46.94855
- ],
- [
- 7.35056,
- 46.95021
- ],
- [
- 7.35309,
- 46.95193
- ],
- [
- 7.3582,
- 46.95118
- ],
- [
- 7.3685,
- 46.95662
- ],
- [
- 7.37151,
- 46.96073
- ],
- [
- 7.37503,
- 46.95983
- ],
- [
- 7.37851,
- 46.96147
- ],
- [
- 7.38062,
- 46.96547
- ],
- [
- 7.38321,
- 46.9663
- ],
- [
- 7.3938,
- 46.96693
- ],
- [
- 7.40005,
- 46.96918
- ],
- [
- 7.40829,
- 46.96869
- ],
- [
- 7.42817,
- 46.9738
- ],
- [
- 7.43271,
- 46.97269
- ],
- [
- 7.43536,
- 46.96843
- ],
- [
- 7.43785,
- 46.96843
- ],
- [
- 7.44125,
- 46.97679
- ],
- [
- 7.44569,
- 46.97479
- ],
- [
- 7.44838,
- 46.97564
- ],
- [
- 7.4477,
- 46.97901
- ],
- [
- 7.44405,
- 46.97807
- ],
- [
- 7.44127,
- 46.97982
- ],
- [
- 7.45067,
- 46.99015
- ],
- [
- 7.45221,
- 46.98968
- ],
- [
- 7.45465,
- 46.97782
- ],
- [
- 7.46804,
- 46.97583
- ],
- [
- 7.47079,
- 46.97
- ],
- [
- 7.47019,
- 46.96741
- ],
- [
- 7.47816,
- 46.97118
- ],
- [
- 7.48452,
- 46.97016
- ],
- [
- 7.48613,
- 46.9679
- ],
- [
- 7.48579,
- 46.96468
- ],
- [
- 7.47847,
- 46.9629
- ],
- [
- 7.48029,
- 46.96068
- ],
- [
- 7.47893,
- 46.95878
- ],
- [
- 7.47978,
- 46.9566
- ],
- [
- 7.47701,
- 46.95446
- ],
- [
- 7.48405,
- 46.94999
- ],
- [
- 7.48339,
- 46.9452
- ],
- [
- 7.49556,
- 46.93962
- ],
- [
- 7.49351,
- 46.93766
- ],
- [
- 7.4908,
- 46.93876
- ],
- [
- 7.4895,
- 46.93687
- ],
- [
- 7.47667,
- 46.93695
- ],
- [
- 7.47811,
- 46.93625
- ],
- [
- 7.4747,
- 46.93392
- ],
- [
- 7.47535,
- 46.93299
- ],
- [
- 7.4691,
- 46.92924
- ],
- [
- 7.47077,
- 46.9255
- ],
- [
- 7.45857,
- 46.93484
- ],
- [
- 7.44764,
- 46.93043
- ],
- [
- 7.43542,
- 46.93497
- ],
- [
- 7.4338,
- 46.93312
- ],
- [
- 7.43764,
- 46.93074
- ],
- [
- 7.41469,
- 46.93682
- ],
- [
- 7.41384,
- 46.93157
- ],
- [
- 7.40708,
- 46.93038
- ],
- [
- 7.40806,
- 46.92563
- ],
- [
- 7.40213,
- 46.9242
- ],
- [
- 7.40148,
- 46.92119
- ],
- [
- 7.38757,
- 46.93045
- ],
- [
- 7.38231,
- 46.92728
- ],
- [
- 7.38002,
- 46.92989
- ],
- [
- 7.38087,
- 46.93241
- ],
- [
- 7.37487,
- 46.93143
- ],
- [
- 7.37489,
- 46.93271
- ],
- [
- 7.36807,
- 46.93239
- ],
- [
- 7.36831,
- 46.93043
- ],
- [
- 7.36041,
- 46.92859
- ],
- [
- 7.36056,
- 46.9272
- ],
- [
- 7.33878,
- 46.92454
- ],
- [
- 7.33937,
- 46.91967
- ],
- [
- 7.32746,
- 46.91903
- ],
- [
- 7.32692,
- 46.9236
- ],
- [
- 7.32437,
- 46.92519
- ],
- [
- 7.30823,
- 46.92229
- ],
- [
- 7.29431,
- 46.92376
- ]
- ]
- ],
- "terms_text": "Orthophoto 2016, Vermessungsamt Stadt Bern",
- "best": true
- },
- {
- "id": "Bern-2012",
- "name": "Stadt Bern 10cm/25cm (2012)",
- "type": "tms",
- "template": "https://mapproxy.osm.ch/tiles/bern2012/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
- "endDate": "2012-01-01T00:00:00.000Z",
- "startDate": "2012-01-01T00:00:00.000Z",
- "scaleExtent": [
- 14,
- 19
- ],
- "polygon": [
- [
- [
- 7.3807,
- 47.00952
- ],
- [
- 7.38073,
- 47.02301
- ],
- [
- 7.43853,
- 47.02303
- ],
- [
- 7.43865,
- 47.01408
- ],
- [
- 7.45174,
- 47.014
- ],
- [
- 7.45172,
- 47.00503
- ],
- [
- 7.54111,
- 47.005
- ],
- [
- 7.54111,
- 46.99873
- ],
- [
- 7.54378,
- 46.99871
- ],
- [
- 7.54375,
- 46.98696
- ],
- [
- 7.55682,
- 46.987
- ],
- [
- 7.55685,
- 46.96003
- ],
- [
- 7.51744,
- 46.96001
- ],
- [
- 7.51744,
- 46.95108
- ],
- [
- 7.53051,
- 46.95106
- ],
- [
- 7.53051,
- 46.92407
- ],
- [
- 7.51741,
- 46.92405
- ],
- [
- 7.51738,
- 46.91505
- ],
- [
- 7.53042,
- 46.91507
- ],
- [
- 7.53048,
- 46.9061
- ],
- [
- 7.54358,
- 46.90602
- ],
- [
- 7.54358,
- 46.87905
- ],
- [
- 7.55659,
- 46.87903
- ],
- [
- 7.55662,
- 46.8611
- ],
- [
- 7.54349,
- 46.86104
- ],
- [
- 7.5434,
- 46.85212
- ],
- [
- 7.49095,
- 46.85212
- ],
- [
- 7.49107,
- 46.87907
- ],
- [
- 7.47794,
- 46.87909
- ],
- [
- 7.47797,
- 46.89707
- ],
- [
- 7.45168,
- 46.89713
- ],
- [
- 7.45171,
- 46.88808
- ],
- [
- 7.43855,
- 46.88814
- ],
- [
- 7.43858,
- 46.87015
- ],
- [
- 7.41233,
- 46.87015
- ],
- [
- 7.41236,
- 46.87907
- ],
- [
- 7.39917,
- 46.87911
- ],
- [
- 7.3992,
- 46.86108
- ],
- [
- 7.38613,
- 46.86114
- ],
- [
- 7.3861,
- 46.85218
- ],
- [
- 7.373,
- 46.85216
- ],
- [
- 7.37303,
- 46.86112
- ],
- [
- 7.34677,
- 46.8611
- ],
- [
- 7.3468,
- 46.88808
- ],
- [
- 7.25488,
- 46.88796
- ],
- [
- 7.25485,
- 46.90596
- ],
- [
- 7.24172,
- 46.90592
- ],
- [
- 7.24169,
- 46.91497
- ],
- [
- 7.22856,
- 46.91493
- ],
- [
- 7.22833,
- 46.96887
- ],
- [
- 7.24146,
- 46.96891
- ],
- [
- 7.24149,
- 46.98688
- ],
- [
- 7.26769,
- 46.98694
- ],
- [
- 7.26777,
- 46.99593
- ],
- [
- 7.28078,
- 46.99595
- ],
- [
- 7.2809,
- 47.0094
- ],
- [
- 7.3807,
- 47.00952
- ]
- ]
- ],
- "terms_text": "Orthophoto 2012, Vermessungsamt Stadt Bern"
- },
- {
- "id": "Uster-2008",
- "name": "Stadt Uster Orthophoto 2008 10cm",
- "type": "tms",
- "template": "https://mapproxy.osm.ch/tiles/uster/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
- "endDate": "2008-01-01T00:00:00.000Z",
- "startDate": "2008-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 8.6,
- 47.31
- ],
- [
- 8.6,
- 47.39
- ],
- [
- 8.77,
- 47.39
- ],
- [
- 8.77,
- 47.31
- ],
- [
- 8.6,
- 47.31
- ]
- ]
- ],
- "terms_text": "Stadt Uster Vermessung Orthophoto 2008"
- },
- {
- "id": "Zuerich-zh_luftbild2011-tms",
- "name": "Stadt Zürich Luftbild 2011",
- "type": "tms",
- "template": "https://mapproxy.osm.ch/tiles/zh_luftbild2011/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
- "endDate": "2011-01-01T00:00:00.000Z",
- "startDate": "2011-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 8.4441,
- 47.3141
- ],
- [
- 8.4441,
- 47.4411
- ],
- [
- 8.6284,
- 47.4411
- ],
- [
- 8.6284,
- 47.3141
- ],
- [
- 8.4441,
- 47.3141
- ]
- ]
- ],
- "terms_text": "Stadt Zürich Luftbild 2011"
- },
- {
- "id": "Zuerich-city_map",
- "name": "Stadtplan Zürich",
- "type": "tms",
- "template": "https://mapproxy.osm.ch/tiles/zh_stadtplan/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
- "polygon": [
- [
- [
- 8.56681,
- 47.34713
- ],
- [
- 8.56665,
- 47.34706
- ],
- [
- 8.56563,
- 47.34684
- ],
- [
- 8.56575,
- 47.34666
- ],
- [
- 8.56509,
- 47.34645
- ],
- [
- 8.54207,
- 47.33502
- ],
- [
- 8.54073,
- 47.33376
- ],
- [
- 8.5403,
- 47.33396
- ],
- [
- 8.54019,
- 47.33372
- ],
- [
- 8.54042,
- 47.33358
- ],
- [
- 8.5388,
- 47.33208
- ],
- [
- 8.53642,
- 47.33076
- ],
- [
- 8.53622,
- 47.33018
- ],
- [
- 8.53345,
- 47.32992
- ],
- [
- 8.5318,
- 47.3295
- ],
- [
- 8.53145,
- 47.32846
- ],
- [
- 8.53102,
- 47.32789
- ],
- [
- 8.52974,
- 47.32777
- ],
- [
- 8.52969,
- 47.32687
- ],
- [
- 8.52899,
- 47.32698
- ],
- [
- 8.52813,
- 47.32685
- ],
- [
- 8.52802,
- 47.32635
- ],
- [
- 8.52755,
- 47.32639
- ],
- [
- 8.52762,
- 47.32616
- ],
- [
- 8.52579,
- 47.32619
- ],
- [
- 8.52563,
- 47.32575
- ],
- [
- 8.52426,
- 47.32608
- ],
- [
- 8.5242,
- 47.32486
- ],
- [
- 8.52372,
- 47.32416
- ],
- [
- 8.52304,
- 47.32433
- ],
- [
- 8.52193,
- 47.32436
- ],
- [
- 8.52194,
- 47.32394
- ],
- [
- 8.51932,
- 47.32401
- ],
- [
- 8.51868,
- 47.32386
- ],
- [
- 8.51768,
- 47.3232
- ],
- [
- 8.51642,
- 47.32308
- ],
- [
- 8.5156,
- 47.32315
- ],
- [
- 8.51472,
- 47.32272
- ],
- [
- 8.51295,
- 47.3229
- ],
- [
- 8.51162,
- 47.32222
- ],
- [
- 8.50957,
- 47.32202
- ],
- [
- 8.5095,
- 47.32165
- ],
- [
- 8.50788,
- 47.32203
- ],
- [
- 8.50735,
- 47.32173
- ],
- [
- 8.50529,
- 47.32144
- ],
- [
- 8.50476,
- 47.32121
- ],
- [
- 8.5043,
- 47.32074
- ],
- [
- 8.50317,
- 47.32022
- ],
- [
- 8.50241,
- 47.32053
- ],
- [
- 8.50227,
- 47.32082
- ],
- [
- 8.50152,
- 47.32129
- ],
- [
- 8.50102,
- 47.32198
- ],
- [
- 8.50095,
- 47.32259
- ],
- [
- 8.5006,
- 47.32278
- ],
- [
- 8.50078,
- 47.3237
- ],
- [
- 8.50066,
- 47.32451
- ],
- [
- 8.50098,
- 47.32595
- ],
- [
- 8.5015,
- 47.3265
- ],
- [
- 8.50159,
- 47.32732
- ],
- [
- 8.50188,
- 47.32765
- ],
- [
- 8.50132,
- 47.32883
- ],
- [
- 8.5014,
- 47.32903
- ],
- [
- 8.50069,
- 47.32979
- ],
- [
- 8.50087,
- 47.33053
- ],
- [
- 8.50063,
- 47.3311
- ],
- [
- 8.50112,
- 47.33183
- ],
- [
- 8.50075,
- 47.33202
- ],
- [
- 8.50078,
- 47.33224
- ],
- [
- 8.50106,
- 47.3326
- ],
- [
- 8.50191,
- 47.33303
- ],
- [
- 8.5022,
- 47.33364
- ],
- [
- 8.50177,
- 47.33412
- ],
- [
- 8.50152,
- 47.33504
- ],
- [
- 8.50199,
- 47.33666
- ],
- [
- 8.50161,
- 47.33728
- ],
- [
- 8.49877,
- 47.33968
- ],
- [
- 8.49808,
- 47.34169
- ],
- [
- 8.49702,
- 47.34247
- ],
- [
- 8.49709,
- 47.34326
- ],
- [
- 8.49798,
- 47.34365
- ],
- [
- 8.4981,
- 47.34387
- ],
- [
- 8.49817,
- 47.34453
- ],
- [
- 8.49773,
- 47.34521
- ],
- [
- 8.49636,
- 47.34648
- ],
- [
- 8.4951,
- 47.34691
- ],
- [
- 8.49467,
- 47.3476
- ],
- [
- 8.49285,
- 47.34828
- ],
- [
- 8.49206,
- 47.3495
- ],
- [
- 8.49145,
- 47.34964
- ],
- [
- 8.49128,
- 47.34983
- ],
- [
- 8.49089,
- 47.35067
- ],
- [
- 8.49,
- 47.35056
- ],
- [
- 8.48813,
- 47.352
- ],
- [
- 8.48691,
- 47.35203
- ],
- [
- 8.4868,
- 47.3522
- ],
- [
- 8.48728,
- 47.35311
- ],
- [
- 8.4871,
- 47.3534
- ],
- [
- 8.48501,
- 47.35469
- ],
- [
- 8.48463,
- 47.35536
- ],
- [
- 8.48463,
- 47.3567
- ],
- [
- 8.48426,
- 47.35737
- ],
- [
- 8.48321,
- 47.35814
- ],
- [
- 8.48272,
- 47.35907
- ],
- [
- 8.48205,
- 47.35954
- ],
- [
- 8.47879,
- 47.36078
- ],
- [
- 8.47698,
- 47.36029
- ],
- [
- 8.47365,
- 47.36081
- ],
- [
- 8.47275,
- 47.36079
- ],
- [
- 8.47169,
- 47.36132
- ],
- [
- 8.47053,
- 47.36166
- ],
- [
- 8.46951,
- 47.36438
- ],
- [
- 8.4664,
- 47.36574
- ],
- [
- 8.46583,
- 47.3661
- ],
- [
- 8.46545,
- 47.36664
- ],
- [
- 8.46485,
- 47.36681
- ],
- [
- 8.46427,
- 47.36728
- ],
- [
- 8.46418,
- 47.36838
- ],
- [
- 8.4649,
- 47.36897
- ],
- [
- 8.46482,
- 47.36911
- ],
- [
- 8.46938,
- 47.37136
- ],
- [
- 8.47042,
- 47.3726
- ],
- [
- 8.47022,
- 47.37395
- ],
- [
- 8.46868,
- 47.37382
- ],
- [
- 8.46761,
- 47.37357
- ],
- [
- 8.46544,
- 47.37444
- ],
- [
- 8.46288,
- 47.37603
- ],
- [
- 8.45995,
- 47.3775
- ],
- [
- 8.45638,
- 47.37801
- ],
- [
- 8.45116,
- 47.37817
- ],
- [
- 8.45047,
- 47.37836
- ],
- [
- 8.44847,
- 47.37967
- ],
- [
- 8.44801,
- 47.38025
- ],
- [
- 8.45174,
- 47.38062
- ],
- [
- 8.45371,
- 47.38027
- ],
- [
- 8.45614,
- 47.38072
- ],
- [
- 8.45669,
- 47.38094
- ],
- [
- 8.45673,
- 47.38244
- ],
- [
- 8.45745,
- 47.38222
- ],
- [
- 8.45843,
- 47.38231
- ],
- [
- 8.45841,
- 47.38263
- ],
- [
- 8.45745,
- 47.38325
- ],
- [
- 8.45767,
- 47.3834
- ],
- [
- 8.45756,
- 47.38371
- ],
- [
- 8.45807,
- 47.38388
- ],
- [
- 8.46004,
- 47.38594
- ],
- [
- 8.46088,
- 47.38704
- ],
- [
- 8.46121,
- 47.38795
- ],
- [
- 8.46104,
- 47.38803
- ],
- [
- 8.46381,
- 47.39053
- ],
- [
- 8.46518,
- 47.39132
- ],
- [
- 8.46556,
- 47.39113
- ],
- [
- 8.46618,
- 47.39113
- ],
- [
- 8.46727,
- 47.39065
- ],
- [
- 8.46697,
- 47.39131
- ],
- [
- 8.46739,
- 47.3929
- ],
- [
- 8.4671,
- 47.39334
- ],
- [
- 8.46607,
- 47.39378
- ],
- [
- 8.4651,
- 47.39453
- ],
- [
- 8.46484,
- 47.39481
- ],
- [
- 8.46488,
- 47.39508
- ],
- [
- 8.46535,
- 47.39492
- ],
- [
- 8.46854,
- 47.39461
- ],
- [
- 8.47018,
- 47.39401
- ],
- [
- 8.47066,
- 47.39439
- ],
- [
- 8.47191,
- 47.39388
- ],
- [
- 8.47208,
- 47.39408
- ],
- [
- 8.47152,
- 47.3943
- ],
- [
- 8.47151,
- 47.3949
- ],
- [
- 8.4721,
- 47.39517
- ],
- [
- 8.47301,
- 47.39506
- ],
- [
- 8.47349,
- 47.396
- ],
- [
- 8.46516,
- 47.39829
- ],
- [
- 8.46568,
- 47.39922
- ],
- [
- 8.46759,
- 47.39873
- ],
- [
- 8.46806,
- 47.39957
- ],
- [
- 8.46615,
- 47.40006
- ],
- [
- 8.4677,
- 47.403
- ],
- [
- 8.4699,
- 47.40298
- ],
- [
- 8.47551,
- 47.40381
- ],
- [
- 8.47815,
- 47.40387
- ],
- [
- 8.47819,
- 47.40508
- ],
- [
- 8.47738,
- 47.40517
- ],
- [
- 8.47705,
- 47.40619
- ],
- [
- 8.47729,
- 47.40914
- ],
- [
- 8.47703,
- 47.40935
- ],
- [
- 8.47543,
- 47.40971
- ],
- [
- 8.47583,
- 47.41077
- ],
- [
- 8.47605,
- 47.41072
- ],
- [
- 8.47628,
- 47.41102
- ],
- [
- 8.47665,
- 47.41097
- ],
- [
- 8.47725,
- 47.41194
- ],
- [
- 8.47488,
- 47.41241
- ],
- [
- 8.47394,
- 47.41222
- ],
- [
- 8.47303,
- 47.41146
- ],
- [
- 8.47268,
- 47.41058
- ],
- [
- 8.47101,
- 47.41094
- ],
- [
- 8.47113,
- 47.41137
- ],
- [
- 8.47085,
- 47.41167
- ],
- [
- 8.47044,
- 47.41159
- ],
- [
- 8.47031,
- 47.41253
- ],
- [
- 8.46876,
- 47.41225
- ],
- [
- 8.46801,
- 47.41334
- ],
- [
- 8.46863,
- 47.41363
- ],
- [
- 8.46857,
- 47.41408
- ],
- [
- 8.46955,
- 47.41484
- ],
- [
- 8.47007,
- 47.41557
- ],
- [
- 8.46913,
- 47.41649
- ],
- [
- 8.46913,
- 47.41693
- ],
- [
- 8.46962,
- 47.41752
- ],
- [
- 8.47158,
- 47.41763
- ],
- [
- 8.4772,
- 47.41974
- ],
- [
- 8.47688,
- 47.42016
- ],
- [
- 8.47783,
- 47.42212
- ],
- [
- 8.47895,
- 47.42172
- ],
- [
- 8.47937,
- 47.42113
- ],
- [
- 8.47972,
- 47.42141
- ],
- [
- 8.48131,
- 47.42134
- ],
- [
- 8.48171,
- 47.423
- ],
- [
- 8.48294,
- 47.42266
- ],
- [
- 8.48292,
- 47.42222
- ],
- [
- 8.48609,
- 47.42155
- ],
- [
- 8.48658,
- 47.42164
- ],
- [
- 8.48683,
- 47.42186
- ],
- [
- 8.48796,
- 47.42201
- ],
- [
- 8.48851,
- 47.42271
- ],
- [
- 8.49019,
- 47.42234
- ],
- [
- 8.491,
- 47.4239
- ],
- [
- 8.49006,
- 47.42435
- ],
- [
- 8.49007,
- 47.42532
- ],
- [
- 8.49027,
- 47.42536
- ],
- [
- 8.49017,
- 47.42578
- ],
- [
- 8.48552,
- 47.42712
- ],
- [
- 8.48481,
- 47.42784
- ],
- [
- 8.48466,
- 47.42873
- ],
- [
- 8.48437,
- 47.42896
- ],
- [
- 8.48445,
- 47.42979
- ],
- [
- 8.48579,
- 47.43103
- ],
- [
- 8.49562,
- 47.43281
- ],
- [
- 8.50027,
- 47.43442
- ],
- [
- 8.50207,
- 47.43467
- ],
- [
- 8.50364,
- 47.43402
- ],
- [
- 8.50997,
- 47.43213
- ],
- [
- 8.51155,
- 47.43116
- ],
- [
- 8.51274,
- 47.43085
- ],
- [
- 8.516,
- 47.43174
- ],
- [
- 8.51628,
- 47.43175
- ],
- [
- 8.51681,
- 47.43133
- ],
- [
- 8.51872,
- 47.4319
- ],
- [
- 8.51979,
- 47.43167
- ],
- [
- 8.52463,
- 47.43126
- ],
- [
- 8.52549,
- 47.43316
- ],
- [
- 8.5303,
- 47.43207
- ],
- [
- 8.53063,
- 47.43266
- ],
- [
- 8.533,
- 47.43228
- ],
- [
- 8.53374,
- 47.43251
- ],
- [
- 8.53467,
- 47.432
- ],
- [
- 8.53521,
- 47.43188
- ],
- [
- 8.53606,
- 47.43187
- ],
- [
- 8.5374,
- 47.4314
- ],
- [
- 8.53964,
- 47.43126
- ],
- [
- 8.5401,
- 47.4311
- ],
- [
- 8.54033,
- 47.43186
- ],
- [
- 8.54363,
- 47.43143
- ],
- [
- 8.54284,
- 47.43289
- ],
- [
- 8.54311,
- 47.43288
- ],
- [
- 8.54451,
- 47.4325
- ],
- [
- 8.54459,
- 47.43262
- ],
- [
- 8.54607,
- 47.43207
- ],
- [
- 8.54858,
- 47.43142
- ],
- [
- 8.55009,
- 47.43128
- ],
- [
- 8.55098,
- 47.43102
- ],
- [
- 8.55199,
- 47.43104
- ],
- [
- 8.55535,
- 47.43066
- ],
- [
- 8.5561,
- 47.42803
- ],
- [
- 8.55684,
- 47.42624
- ],
- [
- 8.55783,
- 47.42554
- ],
- [
- 8.55697,
- 47.4249
- ],
- [
- 8.55736,
- 47.42472
- ],
- [
- 8.5569,
- 47.42424
- ],
- [
- 8.55723,
- 47.4241
- ],
- [
- 8.55419,
- 47.4208
- ],
- [
- 8.56082,
- 47.41817
- ],
- [
- 8.56129,
- 47.41829
- ],
- [
- 8.56235,
- 47.41632
- ],
- [
- 8.56282,
- 47.41643
- ],
- [
- 8.56323,
- 47.41565
- ],
- [
- 8.56622,
- 47.41632
- ],
- [
- 8.56692,
- 47.41629
- ],
- [
- 8.56735,
- 47.41649
- ],
- [
- 8.5678,
- 47.41684
- ],
- [
- 8.56875,
- 47.41855
- ],
- [
- 8.56903,
- 47.41871
- ],
- [
- 8.5696,
- 47.41868
- ],
- [
- 8.56944,
- 47.41926
- ],
- [
- 8.57223,
- 47.41893
- ],
- [
- 8.57367,
- 47.42004
- ],
- [
- 8.57378,
- 47.4178
- ],
- [
- 8.57342,
- 47.41711
- ],
- [
- 8.57386,
- 47.41438
- ],
- [
- 8.57384,
- 47.41324
- ],
- [
- 8.57331,
- 47.41257
- ],
- [
- 8.5726,
- 47.41207
- ],
- [
- 8.573,
- 47.41144
- ],
- [
- 8.58806,
- 47.40797
- ],
- [
- 8.58894,
- 47.40756
- ],
- [
- 8.59312,
- 47.40704
- ],
- [
- 8.59728,
- 47.40631
- ],
- [
- 8.59722,
- 47.406
- ],
- [
- 8.59608,
- 47.40612
- ],
- [
- 8.59378,
- 47.40222
- ],
- [
- 8.59622,
- 47.40154
- ],
- [
- 8.5948,
- 47.39918
- ],
- [
- 8.59725,
- 47.39851
- ],
- [
- 8.59644,
- 47.39715
- ],
- [
- 8.59637,
- 47.39663
- ],
- [
- 8.59623,
- 47.39646
- ],
- [
- 8.59453,
- 47.39712
- ],
- [
- 8.59392,
- 47.39647
- ],
- [
- 8.59335,
- 47.39614
- ],
- [
- 8.59208,
- 47.39691
- ],
- [
- 8.59172,
- 47.39681
- ],
- [
- 8.59148,
- 47.397
- ],
- [
- 8.58828,
- 47.3958
- ],
- [
- 8.58905,
- 47.39501
- ],
- [
- 8.58995,
- 47.39478
- ],
- [
- 8.58818,
- 47.39351
- ],
- [
- 8.58752,
- 47.39321
- ],
- [
- 8.58747,
- 47.39297
- ],
- [
- 8.58619,
- 47.3928
- ],
- [
- 8.58442,
- 47.39195
- ],
- [
- 8.58369,
- 47.39008
- ],
- [
- 8.58305,
- 47.38905
- ],
- [
- 8.58316,
- 47.38831
- ],
- [
- 8.58437,
- 47.38834
- ],
- [
- 8.58432,
- 47.38894
- ],
- [
- 8.58492,
- 47.39011
- ],
- [
- 8.58528,
- 47.3904
- ],
- [
- 8.58696,
- 47.39017
- ],
- [
- 8.5869,
- 47.38977
- ],
- [
- 8.58765,
- 47.38905
- ],
- [
- 8.58698,
- 47.38793
- ],
- [
- 8.59181,
- 47.38638
- ],
- [
- 8.59307,
- 47.38565
- ],
- [
- 8.59299,
- 47.38523
- ],
- [
- 8.59354,
- 47.38522
- ],
- [
- 8.59274,
- 47.38417
- ],
- [
- 8.59082,
- 47.38476
- ],
- [
- 8.59013,
- 47.38381
- ],
- [
- 8.58966,
- 47.384
- ],
- [
- 8.58956,
- 47.38373
- ],
- [
- 8.59217,
- 47.38311
- ],
- [
- 8.59151,
- 47.38244
- ],
- [
- 8.59384,
- 47.38081
- ],
- [
- 8.59407,
- 47.38061
- ],
- [
- 8.59406,
- 47.38029
- ],
- [
- 8.59556,
- 47.3796
- ],
- [
- 8.59574,
- 47.37927
- ],
- [
- 8.59721,
- 47.37849
- ],
- [
- 8.59674,
- 47.37782
- ],
- [
- 8.59702,
- 47.37716
- ],
- [
- 8.5976,
- 47.37661
- ],
- [
- 8.59705,
- 47.37589
- ],
- [
- 8.59778,
- 47.37557
- ],
- [
- 8.59828,
- 47.3751
- ],
- [
- 8.59855,
- 47.37473
- ],
- [
- 8.59813,
- 47.37447
- ],
- [
- 8.6002,
- 47.37331
- ],
- [
- 8.60053,
- 47.3734
- ],
- [
- 8.60096,
- 47.37312
- ],
- [
- 8.60194,
- 47.37198
- ],
- [
- 8.60192,
- 47.37171
- ],
- [
- 8.60324,
- 47.37131
- ],
- [
- 8.60607,
- 47.36871
- ],
- [
- 8.60745,
- 47.36816
- ],
- [
- 8.60812,
- 47.36761
- ],
- [
- 8.61067,
- 47.3673
- ],
- [
- 8.612,
- 47.36684
- ],
- [
- 8.61308,
- 47.36776
- ],
- [
- 8.61344,
- 47.36779
- ],
- [
- 8.61366,
- 47.36802
- ],
- [
- 8.61549,
- 47.3677
- ],
- [
- 8.61645,
- 47.36841
- ],
- [
- 8.61665,
- 47.36828
- ],
- [
- 8.61764,
- 47.36681
- ],
- [
- 8.61709,
- 47.36626
- ],
- [
- 8.61682,
- 47.36535
- ],
- [
- 8.61565,
- 47.36466
- ],
- [
- 8.61495,
- 47.36458
- ],
- [
- 8.61557,
- 47.36342
- ],
- [
- 8.61566,
- 47.36273
- ],
- [
- 8.61482,
- 47.36263
- ],
- [
- 8.6147,
- 47.36151
- ],
- [
- 8.61929,
- 47.36121
- ],
- [
- 8.61996,
- 47.36104
- ],
- [
- 8.62174,
- 47.36007
- ],
- [
- 8.62257,
- 47.35983
- ],
- [
- 8.62187,
- 47.35946
- ],
- [
- 8.62133,
- 47.35746
- ],
- [
- 8.62351,
- 47.35592
- ],
- [
- 8.62352,
- 47.35561
- ],
- [
- 8.62544,
- 47.35466
- ],
- [
- 8.62416,
- 47.35397
- ],
- [
- 8.62245,
- 47.35364
- ],
- [
- 8.62209,
- 47.35334
- ],
- [
- 8.61989,
- 47.35367
- ],
- [
- 8.61976,
- 47.35385
- ],
- [
- 8.61844,
- 47.35382
- ],
- [
- 8.61839,
- 47.35425
- ],
- [
- 8.61708,
- 47.35414
- ],
- [
- 8.61569,
- 47.35442
- ],
- [
- 8.6152,
- 47.3541
- ],
- [
- 8.61386,
- 47.35402
- ],
- [
- 8.61255,
- 47.35437
- ],
- [
- 8.61156,
- 47.35394
- ],
- [
- 8.61107,
- 47.35352
- ],
- [
- 8.61042,
- 47.35337
- ],
- [
- 8.60946,
- 47.35352
- ],
- [
- 8.60776,
- 47.35333
- ],
- [
- 8.60607,
- 47.35363
- ],
- [
- 8.60506,
- 47.35359
- ],
- [
- 8.6038,
- 47.353
- ],
- [
- 8.60305,
- 47.35219
- ],
- [
- 8.6032,
- 47.35207
- ],
- [
- 8.60294,
- 47.35175
- ],
- [
- 8.603,
- 47.35076
- ],
- [
- 8.60262,
- 47.35073
- ],
- [
- 8.6016,
- 47.35073
- ],
- [
- 8.60104,
- 47.35105
- ],
- [
- 8.60026,
- 47.35112
- ],
- [
- 8.5996,
- 47.35145
- ],
- [
- 8.59859,
- 47.35145
- ],
- [
- 8.59824,
- 47.35165
- ],
- [
- 8.59689,
- 47.3514
- ],
- [
- 8.59666,
- 47.35161
- ],
- [
- 8.59596,
- 47.35169
- ],
- [
- 8.59564,
- 47.3519
- ],
- [
- 8.59494,
- 47.35161
- ],
- [
- 8.59454,
- 47.35175
- ],
- [
- 8.5939,
- 47.35161
- ],
- [
- 8.5935,
- 47.35211
- ],
- [
- 8.59229,
- 47.3523
- ],
- [
- 8.59189,
- 47.35278
- ],
- [
- 8.59118,
- 47.35321
- ],
- [
- 8.59047,
- 47.35271
- ],
- [
- 8.59014,
- 47.35286
- ],
- [
- 8.58846,
- 47.35289
- ],
- [
- 8.58797,
- 47.35307
- ],
- [
- 8.58748,
- 47.35267
- ],
- [
- 8.5863,
- 47.35288
- ],
- [
- 8.58591,
- 47.35231
- ],
- [
- 8.5853,
- 47.35201
- ],
- [
- 8.58462,
- 47.35141
- ],
- [
- 8.58417,
- 47.35129
- ],
- [
- 8.58438,
- 47.35116
- ],
- [
- 8.58398,
- 47.35085
- ],
- [
- 8.58348,
- 47.35104
- ],
- [
- 8.58335,
- 47.35087
- ],
- [
- 8.58221,
- 47.35101
- ],
- [
- 8.58246,
- 47.35062
- ],
- [
- 8.57851,
- 47.34873
- ],
- [
- 8.57827,
- 47.34888
- ],
- [
- 8.57786,
- 47.34865
- ],
- [
- 8.57686,
- 47.34878
- ],
- [
- 8.57688,
- 47.34859
- ],
- [
- 8.57625,
- 47.34839
- ],
- [
- 8.57308,
- 47.34751
- ],
- [
- 8.573,
- 47.34765
- ],
- [
- 8.57214,
- 47.34744
- ],
- [
- 8.57163,
- 47.34728
- ],
- [
- 8.5717,
- 47.34712
- ],
- [
- 8.57029,
- 47.34672
- ],
- [
- 8.56968,
- 47.3476
- ],
- [
- 8.56741,
- 47.34674
- ],
- [
- 8.56681,
- 47.34713
- ]
- ]
- ],
- "terms_text": "Stadt Zürich Open Government Data"
- },
- {
- "id": "stamen-terrain-background",
- "name": "Stamen Terrain",
- "type": "tms",
- "template": "https://stamen-tiles-{switch:a,b,c,d}.a.ssl.fastly.net/terrain-background/{zoom}/{x}/{y}.jpg",
- "scaleExtent": [
- 4,
- 18
- ],
- "terms_url": "http://maps.stamen.com/#terrain",
- "terms_text": "Map tiles by Stamen Design, under CC BY 3.0. Data by OpenStreetMap, under ODbL",
- "icon": "https://stamen.com/wp-content/uploads/2016/07/stamen_compass_rose_small-01.png"
- },
- {
- "id": "Surrey-Air_Survey",
- "name": "Surrey Air Survey",
- "type": "tms",
- "template": "https://{switch:a,b,c}.surrey.aerial.openstreetmap.org.uk/layer/gb_surrey_aerial/{zoom}/{x}/{y}.png",
- "endDate": "2009-01-01T00:00:00.000Z",
- "startDate": "2007-01-01T00:00:00.000Z",
- "scaleExtent": [
- 8,
- 21
- ],
- "polygon": [
- [
- [
- -0.75248,
- 51.08219
- ],
- [
- -0.75952,
- 51.08563
- ],
- [
- -0.80143,
- 51.14579
- ],
- [
- -0.83989,
- 51.14407
- ],
- [
- -0.83577,
- 51.18024
- ],
- [
- -0.85295,
- 51.20113
- ],
- [
- -0.85227,
- 51.20962
- ],
- [
- -0.84952,
- 51.2179
- ],
- [
- -0.82669,
- 51.24037
- ],
- [
- -0.8121,
- 51.24692
- ],
- [
- -0.77365,
- 51.24596
- ],
- [
- -0.75442,
- 51.23811
- ],
- [
- -0.75408,
- 51.23392
- ],
- [
- -0.74464,
- 51.23338
- ],
- [
- -0.74307,
- 51.28472
- ],
- [
- -0.7515,
- 51.30695
- ],
- [
- -0.76644,
- 51.3121
- ],
- [
- -0.78206,
- 51.32702
- ],
- [
- -0.78154,
- 51.33881
- ],
- [
- -0.73743,
- 51.37205
- ],
- [
- -0.71923,
- 51.37697
- ],
- [
- -0.67958,
- 51.3848
- ],
- [
- -0.68078,
- 51.39015
- ],
- [
- -0.65314,
- 51.39176
- ],
- [
- -0.63014,
- 51.39058
- ],
- [
- -0.62911,
- 51.39701
- ],
- [
- -0.62344,
- 51.39776
- ],
- [
- -0.61314,
- 51.42956
- ],
- [
- -0.60025,
- 51.44591
- ],
- [
- -0.58671,
- 51.44454
- ],
- [
- -0.57624,
- 51.4532
- ],
- [
- -0.56268,
- 51.45235
- ],
- [
- -0.54774,
- 51.447
- ],
- [
- -0.53727,
- 51.44486
- ],
- [
- -0.5371,
- 51.45267
- ],
- [
- -0.54396,
- 51.45459
- ],
- [
- -0.54053,
- 51.46989
- ],
- [
- -0.53092,
- 51.47609
- ],
- [
- -0.50912,
- 51.47448
- ],
- [
- -0.5086,
- 51.46957
- ],
- [
- -0.49006,
- 51.46828
- ],
- [
- -0.45264,
- 51.46069
- ],
- [
- -0.44869,
- 51.44293
- ],
- [
- -0.44148,
- 51.44186
- ],
- [
- -0.44183,
- 51.43694
- ],
- [
- -0.41127,
- 51.43801
- ],
- [
- -0.40149,
- 51.42795
- ],
- [
- -0.38071,
- 51.42624
- ],
- [
- -0.38054,
- 51.41617
- ],
- [
- -0.34913,
- 51.41382
- ],
- [
- -0.3275,
- 51.40375
- ],
- [
- -0.30398,
- 51.39904
- ],
- [
- -0.30192,
- 51.37547
- ],
- [
- -0.30948,
- 51.36969
- ],
- [
- -0.31119,
- 51.35297
- ],
- [
- -0.29557,
- 51.35415
- ],
- [
- -0.29231,
- 51.36733
- ],
- [
- -0.2851,
- 51.36808
- ],
- [
- -0.27875,
- 51.37719
- ],
- [
- -0.26553,
- 51.38372
- ],
- [
- -0.24115,
- 51.3848
- ],
- [
- -0.21231,
- 51.36283
- ],
- [
- -0.21077,
- 51.34986
- ],
- [
- -0.19086,
- 51.35029
- ],
- [
- -0.15429,
- 51.33388
- ],
- [
- -0.14966,
- 51.30577
- ],
- [
- -0.10743,
- 51.29665
- ],
- [
- -0.08872,
- 51.30996
- ],
- [
- -0.08786,
- 51.32208
- ],
- [
- -0.0652,
- 51.32154
- ],
- [
- -0.06417,
- 51.32648
- ],
- [
- -0.05198,
- 51.32637
- ],
- [
- -0.05284,
- 51.33463
- ],
- [
- -0.03308,
- 51.34309
- ],
- [
- 0.00192,
- 51.33763
- ],
- [
- 0.01188,
- 51.3282
- ],
- [
- 0.01393,
- 51.29944
- ],
- [
- 0.02029,
- 51.29944
- ],
- [
- 0.02406,
- 51.30727
- ],
- [
- 0.03316,
- 51.30867
- ],
- [
- 0.04552,
- 51.30545
- ],
- [
- 0.05239,
- 51.28774
- ],
- [
- 0.06166,
- 51.25778
- ],
- [
- 0.06406,
- 51.24155
- ],
- [
- 0.04621,
- 51.21263
- ],
- [
- 0.04071,
- 51.21091
- ],
- [
- 0.04483,
- 51.19898
- ],
- [
- 0.04947,
- 51.19973
- ],
- [
- 0.05582,
- 51.19446
- ],
- [
- 0.06114,
- 51.17907
- ],
- [
- 0.06234,
- 51.15421
- ],
- [
- 0.05771,
- 51.14171
- ],
- [
- 0.02046,
- 51.13654
- ],
- [
- -0.0446,
- 51.13364
- ],
- [
- -0.1567,
- 51.13525
- ],
- [
- -0.15721,
- 51.129
- ],
- [
- -0.22879,
- 51.11834
- ],
- [
- -0.24733,
- 51.11834
- ],
- [
- -0.25008,
- 51.12114
- ],
- [
- -0.29935,
- 51.1137
- ],
- [
- -0.32218,
- 51.11198
- ],
- [
- -0.32235,
- 51.10584
- ],
- [
- -0.3596,
- 51.10196
- ],
- [
- -0.35891,
- 51.11133
- ],
- [
- -0.38638,
- 51.11176
- ],
- [
- -0.3869,
- 51.10625
- ],
- [
- -0.4281,
- 51.09472
- ],
- [
- -0.48568,
- 51.09516
- ],
- [
- -0.48713,
- 51.08723
- ],
- [
- -0.52974,
- 51.08654
- ],
- [
- -0.53023,
- 51.07899
- ],
- [
- -0.61046,
- 51.07655
- ],
- [
- -0.60997,
- 51.08067
- ],
- [
- -0.6578,
- 51.07922
- ],
- [
- -0.65828,
- 51.07434
- ],
- [
- -0.68365,
- 51.07075
- ],
- [
- -0.6998,
- 51.07083
- ],
- [
- -0.72966,
- 51.07449
- ],
- [
- -0.75248,
- 51.08219
- ]
- ]
- ]
- },
- {
- "id": "Szeged_2011",
- "name": "Szeged orthophoto 2011",
- "type": "tms",
- "template": "http://e.tile.openstreetmap.hu/szeged-2011-10cm/{zoom}/{x}/{y}.png",
- "endDate": "2011-01-01T00:00:00.000Z",
- "startDate": "2011-01-01T00:00:00.000Z",
- "scaleExtent": [
- 10,
- 22
- ],
- "polygon": [
- [
- [
- 20.14599,
- 46.22811
- ],
- [
- 20.13323,
- 46.22904
- ],
- [
- 20.12584,
- 46.22987
- ],
- [
- 20.12233,
- 46.23099
- ],
- [
- 20.12085,
- 46.23175
- ],
- [
- 20.11897,
- 46.23351
- ],
- [
- 20.11312,
- 46.24136
- ],
- [
- 20.11203,
- 46.2433
- ],
- [
- 20.11157,
- 46.245
- ],
- [
- 20.11119,
- 46.24709
- ],
- [
- 20.11129,
- 46.24877
- ],
- [
- 20.11159,
- 46.25097
- ],
- [
- 20.11222,
- 46.2528
- ],
- [
- 20.11299,
- 46.25427
- ],
- [
- 20.11354,
- 46.25535
- ],
- [
- 20.11477,
- 46.2568
- ],
- [
- 20.13523,
- 46.27685
- ],
- [
- 20.13664,
- 46.27751
- ],
- [
- 20.13789,
- 46.27803
- ],
- [
- 20.13939,
- 46.27835
- ],
- [
- 20.14088,
- 46.27846
- ],
- [
- 20.16115,
- 46.27816
- ],
- [
- 20.16211,
- 46.27816
- ],
- [
- 20.16359,
- 46.2777
- ],
- [
- 20.16618,
- 46.27615
- ],
- [
- 20.16878,
- 46.27386
- ],
- [
- 20.16961,
- 46.27144
- ],
- [
- 20.16959,
- 46.27045
- ],
- [
- 20.17009,
- 46.27044
- ],
- [
- 20.17399,
- 46.26433
- ],
- [
- 20.17662,
- 46.25829
- ],
- [
- 20.1948,
- 46.25492
- ],
- [
- 20.18587,
- 46.24481
- ],
- [
- 20.18466,
- 46.24531
- ],
- [
- 20.17804,
- 46.23831
- ],
- [
- 20.17818,
- 46.23771
- ],
- [
- 20.17953,
- 46.2371
- ],
- [
- 20.17257,
- 46.23002
- ],
- [
- 20.16983,
- 46.23504
- ],
- [
- 20.16877,
- 46.23629
- ],
- [
- 20.16703,
- 46.23785
- ],
- [
- 20.16594,
- 46.23873
- ],
- [
- 20.16544,
- 46.239
- ],
- [
- 20.16548,
- 46.239
- ],
- [
- 20.16352,
- 46.24014
- ],
- [
- 20.16021,
- 46.2412
- ],
- [
- 20.15927,
- 46.24153
- ],
- [
- 20.15927,
- 46.24158
- ],
- [
- 20.15835,
- 46.24185
- ],
- [
- 20.15495,
- 46.24229
- ],
- [
- 20.15108,
- 46.23515
- ],
- [
- 20.14938,
- 46.23246
- ],
- [
- 20.14599,
- 46.22811
- ]
- ]
- ],
- "terms_url": "http://www.geo.u-szeged.hu",
- "terms_text": "SZTE TFGT - University of Szeged",
- "best": true,
- "description": "Inner part of Szeged"
- },
- {
- "id": "teotonio_vilela",
- "name": "Teotonio Vilela AL",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Teotonio%20Vilela&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -36.31164,
- -9.95468
- ],
- [
- -36.31158,
- -9.94382
- ],
- [
- -36.31145,
- -9.93197
- ],
- [
- -36.31127,
- -9.92436
- ],
- [
- -36.31123,
- -9.91848
- ],
- [
- -36.31119,
- -9.91637
- ],
- [
- -36.31141,
- -9.91324
- ],
- [
- -36.3111,
- -9.90922
- ],
- [
- -36.31108,
- -9.90318
- ],
- [
- -36.31099,
- -9.89379
- ],
- [
- -36.31089,
- -9.8842
- ],
- [
- -36.31078,
- -9.87412
- ],
- [
- -36.31068,
- -9.86457
- ],
- [
- -36.3318,
- -9.86432
- ],
- [
- -36.34001,
- -9.86437
- ],
- [
- -36.3478,
- -9.86425
- ],
- [
- -36.35917,
- -9.8642
- ],
- [
- -36.37047,
- -9.86404
- ],
- [
- -36.38448,
- -9.86386
- ],
- [
- -36.40164,
- -9.86364
- ],
- [
- -36.40221,
- -9.9225
- ],
- [
- -36.40249,
- -9.93177
- ],
- [
- -36.40259,
- -9.94183
- ],
- [
- -36.40248,
- -9.94804
- ],
- [
- -36.40266,
- -9.9537
- ],
- [
- -36.3855,
- -9.95384
- ],
- [
- -36.38283,
- -9.95392
- ],
- [
- -36.37096,
- -9.95399
- ],
- [
- -36.36232,
- -9.95423
- ],
- [
- -36.34747,
- -9.95422
- ],
- [
- -36.33287,
- -9.95446
- ],
- [
- -36.3291,
- -9.95456
- ],
- [
- -36.32089,
- -9.95459
- ],
- [
- -36.31164,
- -9.95468
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "tnris.org",
- "name": "Texas Orthophoto",
- "type": "tms",
- "template": "https://txgi.tnris.org/login/path/ecology-fiona-poem-romeo/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=texas&STYLE=&FORMAT=image/png&tileMatrixSet=0to20&tileMatrix=0to20:{zoom}&tileRow={y}&tileCol={x}",
- "startDate": "2012-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- -99.99854,
- 34.56018
- ],
- [
- -95.55655,
- 33.99257
- ],
- [
- -93.89679,
- 33.61039
- ],
- [
- -93.98468,
- 32.04103
- ],
- [
- -93.41614,
- 31.02505
- ],
- [
- -93.74531,
- 29.57268
- ],
- [
- -96.50492,
- 28.23159
- ],
- [
- -97.36942,
- 26.95467
- ],
- [
- -97.04867,
- 25.8053
- ],
- [
- -99.07342,
- 26.32559
- ],
- [
- -100.76599,
- 29.02532
- ],
- [
- -102.33154,
- 29.84339
- ],
- [
- -103.13355,
- 28.88112
- ],
- [
- -104.28879,
- 29.28831
- ],
- [
- -104.72698,
- 29.94816
- ],
- [
- -104.72697,
- 30.23535
- ],
- [
- -106.5345,
- 31.78457
- ],
- [
- -106.75767,
- 31.78457
- ],
- [
- -106.75766,
- 32.04386
- ],
- [
- -106.61848,
- 32.04385
- ],
- [
- -103.11949,
- 32.04376
- ],
- [
- -103.09544,
- 36.50046
- ],
- [
- -103.05798,
- 36.54269
- ],
- [
- -100.00042,
- 36.54222
- ],
- [
- -99.99854,
- 34.56018
- ]
- ]
- ],
- "terms_url": "https://tnris.org/maps-and-data/online-mapping-services",
- "terms_text": "Texas Natural Resources Information System"
- },
- {
- "id": "tf-landscape",
- "name": "Thunderforest Landscape",
- "type": "tms",
- "template": "https://{switch:a,b,c}.tile.thunderforest.com/landscape/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 22
- ],
- "terms_url": "https://www.thunderforest.com/terms",
- "terms_text": "Maps © Thunderforest, Data © OpenStreetMap contributors"
- },
- {
- "id": "US-TIGER-Roads-2017",
- "name": "TIGER Roads 2017",
- "type": "tms",
- "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/openstreetmapus/cj8dftc3q1ecn2tnx9qhwyj0c/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcHVzIiwiYSI6ImNpcnF4Ym43dDBoOXZmYW04bWhlNWdrY2EifQ.4SFexuTUuKkZeerO3dgtmw",
- "endDate": "2017-01-01T00:00:00.000Z",
- "startDate": "2017-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 22
- ],
- "polygon": [
- [
- [
- -124.76179,
- 48.41301
- ],
- [
- -124.60595,
- 45.90245
- ],
- [
- -124.99343,
- 40.05576
- ],
- [
- -122.53697,
- 36.85661
- ],
- [
- -119.97759,
- 33.00641
- ],
- [
- -117.67593,
- 32.46302
- ],
- [
- -114.86123,
- 32.47999
- ],
- [
- -111.00893,
- 31.33601
- ],
- [
- -108.19927,
- 31.326
- ],
- [
- -108.18711,
- 31.77551
- ],
- [
- -106.53072,
- 31.78209
- ],
- [
- -106.48421,
- 31.74645
- ],
- [
- -106.42932,
- 31.75206
- ],
- [
- -106.28689,
- 31.56133
- ],
- [
- -106.20525,
- 31.4467
- ],
- [
- -105.02053,
- 30.5361
- ],
- [
- -104.58819,
- 29.69979
- ],
- [
- -103.25189,
- 28.89087
- ],
- [
- -102.71736,
- 29.39206
- ],
- [
- -102.1514,
- 29.74757
- ],
- [
- -101.25529,
- 29.48105
- ],
- [
- -100.00624,
- 28.00822
- ],
- [
- -99.23511,
- 26.4476
- ],
- [
- -98.01091,
- 25.9928
- ],
- [
- -97.43502,
- 25.8266
- ],
- [
- -96.95553,
- 25.98216
- ],
- [
- -96.80617,
- 27.79782
- ],
- [
- -95.55633,
- 28.58761
- ],
- [
- -93.74053,
- 29.47421
- ],
- [
- -90.90285,
- 28.85645
- ],
- [
- -88.01567,
- 28.99443
- ],
- [
- -88.01625,
- 30.00389
- ],
- [
- -86.02775,
- 30.00475
- ],
- [
- -84.01879,
- 28.99618
- ],
- [
- -81.9972,
- 25.98268
- ],
- [
- -81.99666,
- 25.01349
- ],
- [
- -84.01656,
- 25.01258
- ],
- [
- -84.01601,
- 24.00527
- ],
- [
- -80.02,
- 24.0071
- ],
- [
- -79.89011,
- 26.85507
- ],
- [
- -80.02453,
- 32.01613
- ],
- [
- -75.41474,
- 35.05319
- ],
- [
- -74.02112,
- 39.57279
- ],
- [
- -72.00202,
- 40.99125
- ],
- [
- -69.87974,
- 40.99205
- ],
- [
- -69.84893,
- 43.26199
- ],
- [
- -66.94528,
- 44.71049
- ],
- [
- -67.75966,
- 47.099
- ],
- [
- -69.25051,
- 47.51223
- ],
- [
- -70.46149,
- 46.21766
- ],
- [
- -71.41227,
- 45.25488
- ],
- [
- -72.02225,
- 45.00598
- ],
- [
- -75.07988,
- 44.98029
- ],
- [
- -76.90231,
- 43.80246
- ],
- [
- -78.76239,
- 43.62496
- ],
- [
- -79.15798,
- 43.44626
- ],
- [
- -79.00601,
- 42.80053
- ],
- [
- -82.66248,
- 41.68895
- ],
- [
- -82.17616,
- 43.58854
- ],
- [
- -83.2814,
- 46.13885
- ],
- [
- -87.50645,
- 48.01427
- ],
- [
- -88.34922,
- 48.29633
- ],
- [
- -89.43531,
- 47.98378
- ],
- [
- -93.99811,
- 49.00671
- ],
- [
- -95.11054,
- 49.412
- ],
- [
- -96.01312,
- 49.00605
- ],
- [
- -123.32289,
- 49.00429
- ],
- [
- -123.22752,
- 48.18499
- ],
- [
- -124.76179,
- 48.41301
- ]
- ],
- [
- [
- -160.57876,
- 22.50629
- ],
- [
- -160.57822,
- 21.49846
- ],
- [
- -158.74706,
- 21.24398
- ],
- [
- -157.50832,
- 20.9958
- ],
- [
- -155.99619,
- 18.77902
- ],
- [
- -154.62178,
- 18.7587
- ],
- [
- -154.68902,
- 19.88057
- ],
- [
- -156.29276,
- 21.22259
- ],
- [
- -157.50474,
- 21.9985
- ],
- [
- -159.00937,
- 22.50702
- ],
- [
- -160.57876,
- 22.50629
- ]
- ],
- [
- [
- -167.1572,
- 68.722
- ],
- [
- -164.8554,
- 67.0255
- ],
- [
- -168.0022,
- 66.0018
- ],
- [
- -169.0087,
- 66.0015
- ],
- [
- -169.0075,
- 64.9988
- ],
- [
- -172.5143,
- 63.8767
- ],
- [
- -173.8197,
- 59.7401
- ],
- [
- -178.0001,
- 52.2446
- ],
- [
- -177.9993,
- 51.2554
- ],
- [
- -171.4689,
- 51.8215
- ],
- [
- -162.4025,
- 53.9567
- ],
- [
- -159.0076,
- 55.0025
- ],
- [
- -158.0191,
- 55.0028
- ],
- [
- -151.9963,
- 55.9992
- ],
- [
- -151.5003,
- 57.9988
- ],
- [
- -151.5013,
- 58.992
- ],
- [
- -138.516,
- 58.9953
- ],
- [
- -138.515,
- 57.9986
- ],
- [
- -133.9948,
- 54.0032
- ],
- [
- -130.0044,
- 54.0043
- ],
- [
- -130.0071,
- 57.0001
- ],
- [
- -131.9759,
- 56.9995
- ],
- [
- -135.123,
- 59.7566
- ],
- [
- -138.0072,
- 59.9918
- ],
- [
- -139.1716,
- 60.4127
- ],
- [
- -140.9874,
- 61.0119
- ],
- [
- -140.9684,
- 69.9535
- ],
- [
- -156.1769,
- 71.5633
- ],
- [
- -160.4136,
- 70.7398
- ],
- [
- -163.0218,
- 69.9707
- ],
- [
- -164.9717,
- 68.9947
- ],
- [
- -167.1572,
- 68.722
- ]
- ],
- [
- [
- -68.2,
- 17.8
- ],
- [
- -64.32,
- 17.38
- ],
- [
- -64.64,
- 18.36
- ],
- [
- -65.33,
- 18.57
- ],
- [
- -67.9,
- 18.67
- ],
- [
- -68.2,
- 17.8
- ]
- ],
- [
- [
- 146.2,
- 15.4
- ],
- [
- 145.7,
- 15.6
- ],
- [
- 144.2,
- 13.2
- ],
- [
- 144.8,
- 12.9
- ],
- [
- 146.2,
- 15.4
- ]
- ],
- [
- [
- 179.99,
- 52.2
- ],
- [
- 172,
- 53.5
- ],
- [
- 172,
- 52.5
- ],
- [
- 179.99,
- 51
- ],
- [
- 179.99,
- 52.2
- ]
- ]
- ],
- "description": "Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap",
- "icon": "data:image/png;base64,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",
- "overlay": true
- },
- {
- "id": "tirol.gv.at-contourlines",
- "name": "Tiris: contour lines",
- "type": "wms",
- "template": "https://gis.tirol.gv.at/arcgis/services/Service_Public/terrain/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Hoehenschichtlinien 20m&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "scaleExtent": [
- 15,
- 22
- ],
- "polygon": [
- [
- [
- 10.43998,
- 47.59768
- ],
- [
- 10.47886,
- 47.59925
- ],
- [
- 10.50277,
- 47.58656
- ],
- [
- 10.4838,
- 47.55979
- ],
- [
- 10.51312,
- 47.5435
- ],
- [
- 10.57177,
- 47.54582
- ],
- [
- 10.57004,
- 47.56212
- ],
- [
- 10.60109,
- 47.58074
- ],
- [
- 10.63904,
- 47.5691
- ],
- [
- 10.70804,
- 47.57027
- ],
- [
- 10.71149,
- 47.54932
- ],
- [
- 10.76841,
- 47.55048
- ],
- [
- 10.78566,
- 47.52603
- ],
- [
- 10.89605,
- 47.55048
- ],
- [
- 10.93572,
- 47.5237
- ],
- [
- 10.934,
- 47.50506
- ],
- [
- 10.89088,
- 47.49573
- ],
- [
- 10.95125,
- 47.49107
- ],
- [
- 10.9547,
- 47.46776
- ],
- [
- 11.003,
- 47.43276
- ],
- [
- 10.99092,
- 47.40825
- ],
- [
- 11.10304,
- 47.40475
- ],
- [
- 11.11511,
- 47.41993
- ],
- [
- 11.20998,
- 47.4456
- ],
- [
- 11.26863,
- 47.44093
- ],
- [
- 11.26691,
- 47.41059
- ],
- [
- 11.29451,
- 47.4421
- ],
- [
- 11.33073,
- 47.46076
- ],
- [
- 11.38248,
- 47.45843
- ],
- [
- 11.3704,
- 47.47592
- ],
- [
- 11.4394,
- 47.53069
- ],
- [
- 11.467,
- 47.51787
- ],
- [
- 11.57394,
- 47.5237
- ],
- [
- 11.57567,
- 47.55863
- ],
- [
- 11.59809,
- 47.59121
- ],
- [
- 11.63431,
- 47.60633
- ],
- [
- 11.66881,
- 47.5947
- ],
- [
- 11.793,
- 47.60284
- ],
- [
- 11.83958,
- 47.59238
- ],
- [
- 11.84993,
- 47.61098
- ],
- [
- 12.00689,
- 47.63656
- ],
- [
- 12.03622,
- 47.62494
- ],
- [
- 12.07761,
- 47.62726
- ],
- [
- 12.10866,
- 47.61912
- ],
- [
- 12.19491,
- 47.62261
- ],
- [
- 12.15351,
- 47.68768
- ],
- [
- 12.15868,
- 47.7167
- ],
- [
- 12.18111,
- 47.71206
- ],
- [
- 12.21906,
- 47.72482
- ],
- [
- 12.24148,
- 47.75382
- ],
- [
- 12.27253,
- 47.7515
- ],
- [
- 12.2846,
- 47.73178
- ],
- [
- 12.26563,
- 47.69581
- ],
- [
- 12.33635,
- 47.7109
- ],
- [
- 12.37602,
- 47.69581
- ],
- [
- 12.44329,
- 47.70277
- ],
- [
- 12.45364,
- 47.69232
- ],
- [
- 12.45364,
- 47.6749
- ],
- [
- 12.51057,
- 47.63191
- ],
- [
- 12.53126,
- 47.64586
- ],
- [
- 12.58991,
- 47.63424
- ],
- [
- 12.57956,
- 47.61098
- ],
- [
- 12.66581,
- 47.5947
- ],
- [
- 12.67961,
- 47.57492
- ],
- [
- 12.64511,
- 47.55048
- ],
- [
- 12.66753,
- 47.53185
- ],
- [
- 12.68478,
- 47.50389
- ],
- [
- 12.71238,
- 47.48175
- ],
- [
- 12.66753,
- 47.45609
- ],
- [
- 12.64166,
- 47.45959
- ],
- [
- 12.65028,
- 47.44326
- ],
- [
- 12.62096,
- 47.40709
- ],
- [
- 12.57439,
- 47.38607
- ],
- [
- 12.55024,
- 47.39658
- ],
- [
- 12.49159,
- 47.37205
- ],
- [
- 12.50884,
- 47.35102
- ],
- [
- 12.48814,
- 47.32063
- ],
- [
- 12.43467,
- 47.32297
- ],
- [
- 12.41397,
- 47.30426
- ],
- [
- 12.36395,
- 47.30894
- ],
- [
- 12.3122,
- 47.32764
- ],
- [
- 12.2708,
- 47.29841
- ],
- [
- 12.17766,
- 47.29373
- ],
- [
- 12.14833,
- 47.28437
- ],
- [
- 12.11729,
- 47.29958
- ],
- [
- 12.09831,
- 47.27501
- ],
- [
- 12.12591,
- 47.25042
- ],
- [
- 12.09659,
- 47.19771
- ],
- [
- 12.11039,
- 47.14846
- ],
- [
- 12.14143,
- 47.10974
- ],
- [
- 12.13799,
- 47.08977
- ],
- [
- 12.15006,
- 47.07568
- ],
- [
- 12.00517,
- 47.04395
- ],
- [
- 11.92065,
- 47.02985
- ],
- [
- 11.83095,
- 46.99103
- ],
- [
- 11.78783,
- 46.98633
- ],
- [
- 11.77403,
- 46.9675
- ],
- [
- 11.73091,
- 46.96514
- ],
- [
- 11.70676,
- 46.98986
- ],
- [
- 11.64294,
- 46.99456
- ],
- [
- 11.61189,
- 47.00515
- ],
- [
- 11.53254,
- 46.97809
- ],
- [
- 11.49287,
- 47.00868
- ],
- [
- 11.44457,
- 46.9675
- ],
- [
- 11.4049,
- 46.96161
- ],
- [
- 11.34453,
- 46.98633
- ],
- [
- 11.20309,
- 46.9569
- ],
- [
- 11.17549,
- 46.96161
- ],
- [
- 11.17721,
- 46.94395
- ],
- [
- 11.14616,
- 46.92275
- ],
- [
- 11.12546,
- 46.92275
- ],
- [
- 11.10822,
- 46.90389
- ],
- [
- 11.11511,
- 46.88857
- ],
- [
- 11.08234,
- 46.85319
- ],
- [
- 11.09614,
- 46.8237
- ],
- [
- 11.05129,
- 46.80245
- ],
- [
- 11.02369,
- 46.76229
- ],
- [
- 10.91848,
- 46.77056
- ],
- [
- 10.88398,
- 46.75756
- ],
- [
- 10.84085,
- 46.77292
- ],
- [
- 10.82361,
- 46.76938
- ],
- [
- 10.79083,
- 46.78946
- ],
- [
- 10.75633,
- 46.77883
- ],
- [
- 10.72529,
- 46.79064
- ],
- [
- 10.74771,
- 46.82724
- ],
- [
- 10.69424,
- 46.84494
- ],
- [
- 10.67354,
- 46.86971
- ],
- [
- 10.60799,
- 46.85319
- ],
- [
- 10.55452,
- 46.82724
- ],
- [
- 10.52002,
- 46.83904
- ],
- [
- 10.46827,
- 46.83668
- ],
- [
- 10.45103,
- 46.8815
- ],
- [
- 10.47517,
- 46.93217
- ],
- [
- 10.41308,
- 46.95572
- ],
- [
- 10.3941,
- 46.98868
- ],
- [
- 10.3665,
- 46.98044
- ],
- [
- 10.33891,
- 46.94748
- ],
- [
- 10.32856,
- 46.91803
- ],
- [
- 10.29751,
- 46.91332
- ],
- [
- 10.25956,
- 46.9251
- ],
- [
- 10.23886,
- 46.86263
- ],
- [
- 10.16642,
- 46.83904
- ],
- [
- 10.13537,
- 46.8473
- ],
- [
- 10.13192,
- 46.87207
- ],
- [
- 10.10604,
- 46.88621
- ],
- [
- 10.09224,
- 46.92746
- ],
- [
- 10.12502,
- 46.95219
- ],
- [
- 10.14572,
- 47.00044
- ],
- [
- 10.11294,
- 47.02514
- ],
- [
- 10.15262,
- 47.04983
- ],
- [
- 10.13019,
- 47.06276
- ],
- [
- 10.13364,
- 47.09095
- ],
- [
- 10.15952,
- 47.12617
- ],
- [
- 10.20091,
- 47.1426
- ],
- [
- 10.19229,
- 47.20005
- ],
- [
- 10.20954,
- 47.21294
- ],
- [
- 10.18711,
- 47.23989
- ],
- [
- 10.20091,
- 47.25628
- ],
- [
- 10.16814,
- 47.2633
- ],
- [
- 10.16814,
- 47.28086
- ],
- [
- 10.20264,
- 47.29139
- ],
- [
- 10.24404,
- 47.28905
- ],
- [
- 10.33373,
- 47.32063
- ],
- [
- 10.38893,
- 47.39074
- ],
- [
- 10.4148,
- 47.39424
- ],
- [
- 10.4562,
- 47.43626
- ],
- [
- 10.44758,
- 47.48175
- ],
- [
- 10.41998,
- 47.50506
- ],
- [
- 10.4424,
- 47.55514
- ],
- [
- 10.41308,
- 47.57143
- ],
- [
- 10.43998,
- 47.59768
- ]
- ],
- [
- [
- 12.4019,
- 47.16019
- ],
- [
- 12.35705,
- 47.13908
- ],
- [
- 12.35015,
- 47.11208
- ],
- [
- 12.31048,
- 47.10739
- ],
- [
- 12.25528,
- 47.07215
- ],
- [
- 12.21388,
- 47.05923
- ],
- [
- 12.20008,
- 47.02632
- ],
- [
- 12.14488,
- 47.03102
- ],
- [
- 12.11556,
- 47.0075
- ],
- [
- 12.13626,
- 46.95926
- ],
- [
- 12.16731,
- 46.9357
- ],
- [
- 12.14316,
- 46.91096
- ],
- [
- 12.18973,
- 46.90036
- ],
- [
- 12.21733,
- 46.86617
- ],
- [
- 12.25528,
- 46.88386
- ],
- [
- 12.27425,
- 46.88268
- ],
- [
- 12.2984,
- 46.83432
- ],
- [
- 12.27598,
- 46.82016
- ],
- [
- 12.27943,
- 46.77765
- ],
- [
- 12.35015,
- 46.77174
- ],
- [
- 12.3812,
- 46.715
- ],
- [
- 12.44329,
- 46.68425
- ],
- [
- 12.51402,
- 46.67004
- ],
- [
- 12.56576,
- 46.64873
- ],
- [
- 12.62958,
- 46.65347
- ],
- [
- 12.70203,
- 46.65347
- ],
- [
- 12.70375,
- 46.69844
- ],
- [
- 12.72963,
- 46.70081
- ],
- [
- 12.72273,
- 46.73747
- ],
- [
- 12.80207,
- 46.74929
- ],
- [
- 12.85382,
- 46.74456
- ],
- [
- 12.90384,
- 46.77174
- ],
- [
- 12.92799,
- 46.75992
- ],
- [
- 12.95732,
- 46.77647
- ],
- [
- 12.97974,
- 46.79772
- ],
- [
- 12.89522,
- 46.83314
- ],
- [
- 12.89522,
- 46.84848
- ],
- [
- 12.8452,
- 46.86381
- ],
- [
- 12.84692,
- 46.91568
- ],
- [
- 12.7969,
- 46.93099
- ],
- [
- 12.78828,
- 46.94748
- ],
- [
- 12.7486,
- 46.96867
- ],
- [
- 12.73653,
- 46.99691
- ],
- [
- 12.78138,
- 47.0416
- ],
- [
- 12.7624,
- 47.051
- ],
- [
- 12.7141,
- 47.04513
- ],
- [
- 12.71065,
- 47.07803
- ],
- [
- 12.62268,
- 47.12617
- ],
- [
- 12.56921,
- 47.14142
- ],
- [
- 12.55196,
- 47.13321
- ],
- [
- 12.52609,
- 47.15433
- ],
- [
- 12.48297,
- 47.16488
- ],
- [
- 12.46054,
- 47.14846
- ],
- [
- 12.43467,
- 47.15785
- ],
- [
- 12.41915,
- 47.14377
- ],
- [
- 12.4019,
- 47.16019
- ]
- ]
- ],
- "terms_url": "https://tiris.tirol.gv.at",
- "terms_text": "tiris.tirol.gv.at",
- "icon": "https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif",
- "overlay": true
- },
- {
- "id": "tirol.gv.at-DGM",
- "name": "Tiris: DGM (Terrain model)",
- "type": "wms",
- "template": "https://gis.tirol.gv.at/arcgis/services/Service_Public/terrain/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Image Schummerung_Gelaendemodell&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- 10.43998,
- 47.59768
- ],
- [
- 10.47886,
- 47.59925
- ],
- [
- 10.50277,
- 47.58656
- ],
- [
- 10.4838,
- 47.55979
- ],
- [
- 10.51312,
- 47.5435
- ],
- [
- 10.57177,
- 47.54582
- ],
- [
- 10.57004,
- 47.56212
- ],
- [
- 10.60109,
- 47.58074
- ],
- [
- 10.63904,
- 47.5691
- ],
- [
- 10.70804,
- 47.57027
- ],
- [
- 10.71149,
- 47.54932
- ],
- [
- 10.76841,
- 47.55048
- ],
- [
- 10.78566,
- 47.52603
- ],
- [
- 10.89605,
- 47.55048
- ],
- [
- 10.93572,
- 47.5237
- ],
- [
- 10.934,
- 47.50506
- ],
- [
- 10.89088,
- 47.49573
- ],
- [
- 10.95125,
- 47.49107
- ],
- [
- 10.9547,
- 47.46776
- ],
- [
- 11.003,
- 47.43276
- ],
- [
- 10.99092,
- 47.40825
- ],
- [
- 11.10304,
- 47.40475
- ],
- [
- 11.11511,
- 47.41993
- ],
- [
- 11.20998,
- 47.4456
- ],
- [
- 11.26863,
- 47.44093
- ],
- [
- 11.26691,
- 47.41059
- ],
- [
- 11.29451,
- 47.4421
- ],
- [
- 11.33073,
- 47.46076
- ],
- [
- 11.38248,
- 47.45843
- ],
- [
- 11.3704,
- 47.47592
- ],
- [
- 11.4394,
- 47.53069
- ],
- [
- 11.467,
- 47.51787
- ],
- [
- 11.57394,
- 47.5237
- ],
- [
- 11.57567,
- 47.55863
- ],
- [
- 11.59809,
- 47.59121
- ],
- [
- 11.63431,
- 47.60633
- ],
- [
- 11.66881,
- 47.5947
- ],
- [
- 11.793,
- 47.60284
- ],
- [
- 11.83958,
- 47.59238
- ],
- [
- 11.84993,
- 47.61098
- ],
- [
- 12.00689,
- 47.63656
- ],
- [
- 12.03622,
- 47.62494
- ],
- [
- 12.07761,
- 47.62726
- ],
- [
- 12.10866,
- 47.61912
- ],
- [
- 12.19491,
- 47.62261
- ],
- [
- 12.15351,
- 47.68768
- ],
- [
- 12.15868,
- 47.7167
- ],
- [
- 12.18111,
- 47.71206
- ],
- [
- 12.21906,
- 47.72482
- ],
- [
- 12.24148,
- 47.75382
- ],
- [
- 12.27253,
- 47.7515
- ],
- [
- 12.2846,
- 47.73178
- ],
- [
- 12.26563,
- 47.69581
- ],
- [
- 12.33635,
- 47.7109
- ],
- [
- 12.37602,
- 47.69581
- ],
- [
- 12.44329,
- 47.70277
- ],
- [
- 12.45364,
- 47.69232
- ],
- [
- 12.45364,
- 47.6749
- ],
- [
- 12.51057,
- 47.63191
- ],
- [
- 12.53126,
- 47.64586
- ],
- [
- 12.58991,
- 47.63424
- ],
- [
- 12.57956,
- 47.61098
- ],
- [
- 12.66581,
- 47.5947
- ],
- [
- 12.67961,
- 47.57492
- ],
- [
- 12.64511,
- 47.55048
- ],
- [
- 12.66753,
- 47.53185
- ],
- [
- 12.68478,
- 47.50389
- ],
- [
- 12.71238,
- 47.48175
- ],
- [
- 12.66753,
- 47.45609
- ],
- [
- 12.64166,
- 47.45959
- ],
- [
- 12.65028,
- 47.44326
- ],
- [
- 12.62096,
- 47.40709
- ],
- [
- 12.57439,
- 47.38607
- ],
- [
- 12.55024,
- 47.39658
- ],
- [
- 12.49159,
- 47.37205
- ],
- [
- 12.50884,
- 47.35102
- ],
- [
- 12.48814,
- 47.32063
- ],
- [
- 12.43467,
- 47.32297
- ],
- [
- 12.41397,
- 47.30426
- ],
- [
- 12.36395,
- 47.30894
- ],
- [
- 12.3122,
- 47.32764
- ],
- [
- 12.2708,
- 47.29841
- ],
- [
- 12.17766,
- 47.29373
- ],
- [
- 12.14833,
- 47.28437
- ],
- [
- 12.11729,
- 47.29958
- ],
- [
- 12.09831,
- 47.27501
- ],
- [
- 12.12591,
- 47.25042
- ],
- [
- 12.09659,
- 47.19771
- ],
- [
- 12.11039,
- 47.14846
- ],
- [
- 12.14143,
- 47.10974
- ],
- [
- 12.13799,
- 47.08977
- ],
- [
- 12.15006,
- 47.07568
- ],
- [
- 12.00517,
- 47.04395
- ],
- [
- 11.92065,
- 47.02985
- ],
- [
- 11.83095,
- 46.99103
- ],
- [
- 11.78783,
- 46.98633
- ],
- [
- 11.77403,
- 46.9675
- ],
- [
- 11.73091,
- 46.96514
- ],
- [
- 11.70676,
- 46.98986
- ],
- [
- 11.64294,
- 46.99456
- ],
- [
- 11.61189,
- 47.00515
- ],
- [
- 11.53254,
- 46.97809
- ],
- [
- 11.49287,
- 47.00868
- ],
- [
- 11.44457,
- 46.9675
- ],
- [
- 11.4049,
- 46.96161
- ],
- [
- 11.34453,
- 46.98633
- ],
- [
- 11.20309,
- 46.9569
- ],
- [
- 11.17549,
- 46.96161
- ],
- [
- 11.17721,
- 46.94395
- ],
- [
- 11.14616,
- 46.92275
- ],
- [
- 11.12546,
- 46.92275
- ],
- [
- 11.10822,
- 46.90389
- ],
- [
- 11.11511,
- 46.88857
- ],
- [
- 11.08234,
- 46.85319
- ],
- [
- 11.09614,
- 46.8237
- ],
- [
- 11.05129,
- 46.80245
- ],
- [
- 11.02369,
- 46.76229
- ],
- [
- 10.91848,
- 46.77056
- ],
- [
- 10.88398,
- 46.75756
- ],
- [
- 10.84085,
- 46.77292
- ],
- [
- 10.82361,
- 46.76938
- ],
- [
- 10.79083,
- 46.78946
- ],
- [
- 10.75633,
- 46.77883
- ],
- [
- 10.72529,
- 46.79064
- ],
- [
- 10.74771,
- 46.82724
- ],
- [
- 10.69424,
- 46.84494
- ],
- [
- 10.67354,
- 46.86971
- ],
- [
- 10.60799,
- 46.85319
- ],
- [
- 10.55452,
- 46.82724
- ],
- [
- 10.52002,
- 46.83904
- ],
- [
- 10.46827,
- 46.83668
- ],
- [
- 10.45103,
- 46.8815
- ],
- [
- 10.47517,
- 46.93217
- ],
- [
- 10.41308,
- 46.95572
- ],
- [
- 10.3941,
- 46.98868
- ],
- [
- 10.3665,
- 46.98044
- ],
- [
- 10.33891,
- 46.94748
- ],
- [
- 10.32856,
- 46.91803
- ],
- [
- 10.29751,
- 46.91332
- ],
- [
- 10.25956,
- 46.9251
- ],
- [
- 10.23886,
- 46.86263
- ],
- [
- 10.16642,
- 46.83904
- ],
- [
- 10.13537,
- 46.8473
- ],
- [
- 10.13192,
- 46.87207
- ],
- [
- 10.10604,
- 46.88621
- ],
- [
- 10.09224,
- 46.92746
- ],
- [
- 10.12502,
- 46.95219
- ],
- [
- 10.14572,
- 47.00044
- ],
- [
- 10.11294,
- 47.02514
- ],
- [
- 10.15262,
- 47.04983
- ],
- [
- 10.13019,
- 47.06276
- ],
- [
- 10.13364,
- 47.09095
- ],
- [
- 10.15952,
- 47.12617
- ],
- [
- 10.20091,
- 47.1426
- ],
- [
- 10.19229,
- 47.20005
- ],
- [
- 10.20954,
- 47.21294
- ],
- [
- 10.18711,
- 47.23989
- ],
- [
- 10.20091,
- 47.25628
- ],
- [
- 10.16814,
- 47.2633
- ],
- [
- 10.16814,
- 47.28086
- ],
- [
- 10.20264,
- 47.29139
- ],
- [
- 10.24404,
- 47.28905
- ],
- [
- 10.33373,
- 47.32063
- ],
- [
- 10.38893,
- 47.39074
- ],
- [
- 10.4148,
- 47.39424
- ],
- [
- 10.4562,
- 47.43626
- ],
- [
- 10.44758,
- 47.48175
- ],
- [
- 10.41998,
- 47.50506
- ],
- [
- 10.4424,
- 47.55514
- ],
- [
- 10.41308,
- 47.57143
- ],
- [
- 10.43998,
- 47.59768
- ]
- ],
- [
- [
- 12.4019,
- 47.16019
- ],
- [
- 12.35705,
- 47.13908
- ],
- [
- 12.35015,
- 47.11208
- ],
- [
- 12.31048,
- 47.10739
- ],
- [
- 12.25528,
- 47.07215
- ],
- [
- 12.21388,
- 47.05923
- ],
- [
- 12.20008,
- 47.02632
- ],
- [
- 12.14488,
- 47.03102
- ],
- [
- 12.11556,
- 47.0075
- ],
- [
- 12.13626,
- 46.95926
- ],
- [
- 12.16731,
- 46.9357
- ],
- [
- 12.14316,
- 46.91096
- ],
- [
- 12.18973,
- 46.90036
- ],
- [
- 12.21733,
- 46.86617
- ],
- [
- 12.25528,
- 46.88386
- ],
- [
- 12.27425,
- 46.88268
- ],
- [
- 12.2984,
- 46.83432
- ],
- [
- 12.27598,
- 46.82016
- ],
- [
- 12.27943,
- 46.77765
- ],
- [
- 12.35015,
- 46.77174
- ],
- [
- 12.3812,
- 46.715
- ],
- [
- 12.44329,
- 46.68425
- ],
- [
- 12.51402,
- 46.67004
- ],
- [
- 12.56576,
- 46.64873
- ],
- [
- 12.62958,
- 46.65347
- ],
- [
- 12.70203,
- 46.65347
- ],
- [
- 12.70375,
- 46.69844
- ],
- [
- 12.72963,
- 46.70081
- ],
- [
- 12.72273,
- 46.73747
- ],
- [
- 12.80207,
- 46.74929
- ],
- [
- 12.85382,
- 46.74456
- ],
- [
- 12.90384,
- 46.77174
- ],
- [
- 12.92799,
- 46.75992
- ],
- [
- 12.95732,
- 46.77647
- ],
- [
- 12.97974,
- 46.79772
- ],
- [
- 12.89522,
- 46.83314
- ],
- [
- 12.89522,
- 46.84848
- ],
- [
- 12.8452,
- 46.86381
- ],
- [
- 12.84692,
- 46.91568
- ],
- [
- 12.7969,
- 46.93099
- ],
- [
- 12.78828,
- 46.94748
- ],
- [
- 12.7486,
- 46.96867
- ],
- [
- 12.73653,
- 46.99691
- ],
- [
- 12.78138,
- 47.0416
- ],
- [
- 12.7624,
- 47.051
- ],
- [
- 12.7141,
- 47.04513
- ],
- [
- 12.71065,
- 47.07803
- ],
- [
- 12.62268,
- 47.12617
- ],
- [
- 12.56921,
- 47.14142
- ],
- [
- 12.55196,
- 47.13321
- ],
- [
- 12.52609,
- 47.15433
- ],
- [
- 12.48297,
- 47.16488
- ],
- [
- 12.46054,
- 47.14846
- ],
- [
- 12.43467,
- 47.15785
- ],
- [
- 12.41915,
- 47.14377
- ],
- [
- 12.4019,
- 47.16019
- ]
- ]
- ],
- "terms_url": "https://tiris.tirol.gv.at",
- "terms_text": "tiris.tirol.gv.at",
- "icon": "https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif"
- },
- {
- "id": "tirol.gv.at-DOM",
- "name": "Tiris: DOM (Surface model)",
- "type": "wms",
- "template": "https://gis.tirol.gv.at/arcgis/services/Service_Public/terrain/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Image Schummerung_Oberflaechenmodell&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- 10.43998,
- 47.59768
- ],
- [
- 10.47886,
- 47.59925
- ],
- [
- 10.50277,
- 47.58656
- ],
- [
- 10.4838,
- 47.55979
- ],
- [
- 10.51312,
- 47.5435
- ],
- [
- 10.57177,
- 47.54582
- ],
- [
- 10.57004,
- 47.56212
- ],
- [
- 10.60109,
- 47.58074
- ],
- [
- 10.63904,
- 47.5691
- ],
- [
- 10.70804,
- 47.57027
- ],
- [
- 10.71149,
- 47.54932
- ],
- [
- 10.76841,
- 47.55048
- ],
- [
- 10.78566,
- 47.52603
- ],
- [
- 10.89605,
- 47.55048
- ],
- [
- 10.93572,
- 47.5237
- ],
- [
- 10.934,
- 47.50506
- ],
- [
- 10.89088,
- 47.49573
- ],
- [
- 10.95125,
- 47.49107
- ],
- [
- 10.9547,
- 47.46776
- ],
- [
- 11.003,
- 47.43276
- ],
- [
- 10.99092,
- 47.40825
- ],
- [
- 11.10304,
- 47.40475
- ],
- [
- 11.11511,
- 47.41993
- ],
- [
- 11.20998,
- 47.4456
- ],
- [
- 11.26863,
- 47.44093
- ],
- [
- 11.26691,
- 47.41059
- ],
- [
- 11.29451,
- 47.4421
- ],
- [
- 11.33073,
- 47.46076
- ],
- [
- 11.38248,
- 47.45843
- ],
- [
- 11.3704,
- 47.47592
- ],
- [
- 11.4394,
- 47.53069
- ],
- [
- 11.467,
- 47.51787
- ],
- [
- 11.57394,
- 47.5237
- ],
- [
- 11.57567,
- 47.55863
- ],
- [
- 11.59809,
- 47.59121
- ],
- [
- 11.63431,
- 47.60633
- ],
- [
- 11.66881,
- 47.5947
- ],
- [
- 11.793,
- 47.60284
- ],
- [
- 11.83958,
- 47.59238
- ],
- [
- 11.84993,
- 47.61098
- ],
- [
- 12.00689,
- 47.63656
- ],
- [
- 12.03622,
- 47.62494
- ],
- [
- 12.07761,
- 47.62726
- ],
- [
- 12.10866,
- 47.61912
- ],
- [
- 12.19491,
- 47.62261
- ],
- [
- 12.15351,
- 47.68768
- ],
- [
- 12.15868,
- 47.7167
- ],
- [
- 12.18111,
- 47.71206
- ],
- [
- 12.21906,
- 47.72482
- ],
- [
- 12.24148,
- 47.75382
- ],
- [
- 12.27253,
- 47.7515
- ],
- [
- 12.2846,
- 47.73178
- ],
- [
- 12.26563,
- 47.69581
- ],
- [
- 12.33635,
- 47.7109
- ],
- [
- 12.37602,
- 47.69581
- ],
- [
- 12.44329,
- 47.70277
- ],
- [
- 12.45364,
- 47.69232
- ],
- [
- 12.45364,
- 47.6749
- ],
- [
- 12.51057,
- 47.63191
- ],
- [
- 12.53126,
- 47.64586
- ],
- [
- 12.58991,
- 47.63424
- ],
- [
- 12.57956,
- 47.61098
- ],
- [
- 12.66581,
- 47.5947
- ],
- [
- 12.67961,
- 47.57492
- ],
- [
- 12.64511,
- 47.55048
- ],
- [
- 12.66753,
- 47.53185
- ],
- [
- 12.68478,
- 47.50389
- ],
- [
- 12.71238,
- 47.48175
- ],
- [
- 12.66753,
- 47.45609
- ],
- [
- 12.64166,
- 47.45959
- ],
- [
- 12.65028,
- 47.44326
- ],
- [
- 12.62096,
- 47.40709
- ],
- [
- 12.57439,
- 47.38607
- ],
- [
- 12.55024,
- 47.39658
- ],
- [
- 12.49159,
- 47.37205
- ],
- [
- 12.50884,
- 47.35102
- ],
- [
- 12.48814,
- 47.32063
- ],
- [
- 12.43467,
- 47.32297
- ],
- [
- 12.41397,
- 47.30426
- ],
- [
- 12.36395,
- 47.30894
- ],
- [
- 12.3122,
- 47.32764
- ],
- [
- 12.2708,
- 47.29841
- ],
- [
- 12.17766,
- 47.29373
- ],
- [
- 12.14833,
- 47.28437
- ],
- [
- 12.11729,
- 47.29958
- ],
- [
- 12.09831,
- 47.27501
- ],
- [
- 12.12591,
- 47.25042
- ],
- [
- 12.09659,
- 47.19771
- ],
- [
- 12.11039,
- 47.14846
- ],
- [
- 12.14143,
- 47.10974
- ],
- [
- 12.13799,
- 47.08977
- ],
- [
- 12.15006,
- 47.07568
- ],
- [
- 12.00517,
- 47.04395
- ],
- [
- 11.92065,
- 47.02985
- ],
- [
- 11.83095,
- 46.99103
- ],
- [
- 11.78783,
- 46.98633
- ],
- [
- 11.77403,
- 46.9675
- ],
- [
- 11.73091,
- 46.96514
- ],
- [
- 11.70676,
- 46.98986
- ],
- [
- 11.64294,
- 46.99456
- ],
- [
- 11.61189,
- 47.00515
- ],
- [
- 11.53254,
- 46.97809
- ],
- [
- 11.49287,
- 47.00868
- ],
- [
- 11.44457,
- 46.9675
- ],
- [
- 11.4049,
- 46.96161
- ],
- [
- 11.34453,
- 46.98633
- ],
- [
- 11.20309,
- 46.9569
- ],
- [
- 11.17549,
- 46.96161
- ],
- [
- 11.17721,
- 46.94395
- ],
- [
- 11.14616,
- 46.92275
- ],
- [
- 11.12546,
- 46.92275
- ],
- [
- 11.10822,
- 46.90389
- ],
- [
- 11.11511,
- 46.88857
- ],
- [
- 11.08234,
- 46.85319
- ],
- [
- 11.09614,
- 46.8237
- ],
- [
- 11.05129,
- 46.80245
- ],
- [
- 11.02369,
- 46.76229
- ],
- [
- 10.91848,
- 46.77056
- ],
- [
- 10.88398,
- 46.75756
- ],
- [
- 10.84085,
- 46.77292
- ],
- [
- 10.82361,
- 46.76938
- ],
- [
- 10.79083,
- 46.78946
- ],
- [
- 10.75633,
- 46.77883
- ],
- [
- 10.72529,
- 46.79064
- ],
- [
- 10.74771,
- 46.82724
- ],
- [
- 10.69424,
- 46.84494
- ],
- [
- 10.67354,
- 46.86971
- ],
- [
- 10.60799,
- 46.85319
- ],
- [
- 10.55452,
- 46.82724
- ],
- [
- 10.52002,
- 46.83904
- ],
- [
- 10.46827,
- 46.83668
- ],
- [
- 10.45103,
- 46.8815
- ],
- [
- 10.47517,
- 46.93217
- ],
- [
- 10.41308,
- 46.95572
- ],
- [
- 10.3941,
- 46.98868
- ],
- [
- 10.3665,
- 46.98044
- ],
- [
- 10.33891,
- 46.94748
- ],
- [
- 10.32856,
- 46.91803
- ],
- [
- 10.29751,
- 46.91332
- ],
- [
- 10.25956,
- 46.9251
- ],
- [
- 10.23886,
- 46.86263
- ],
- [
- 10.16642,
- 46.83904
- ],
- [
- 10.13537,
- 46.8473
- ],
- [
- 10.13192,
- 46.87207
- ],
- [
- 10.10604,
- 46.88621
- ],
- [
- 10.09224,
- 46.92746
- ],
- [
- 10.12502,
- 46.95219
- ],
- [
- 10.14572,
- 47.00044
- ],
- [
- 10.11294,
- 47.02514
- ],
- [
- 10.15262,
- 47.04983
- ],
- [
- 10.13019,
- 47.06276
- ],
- [
- 10.13364,
- 47.09095
- ],
- [
- 10.15952,
- 47.12617
- ],
- [
- 10.20091,
- 47.1426
- ],
- [
- 10.19229,
- 47.20005
- ],
- [
- 10.20954,
- 47.21294
- ],
- [
- 10.18711,
- 47.23989
- ],
- [
- 10.20091,
- 47.25628
- ],
- [
- 10.16814,
- 47.2633
- ],
- [
- 10.16814,
- 47.28086
- ],
- [
- 10.20264,
- 47.29139
- ],
- [
- 10.24404,
- 47.28905
- ],
- [
- 10.33373,
- 47.32063
- ],
- [
- 10.38893,
- 47.39074
- ],
- [
- 10.4148,
- 47.39424
- ],
- [
- 10.4562,
- 47.43626
- ],
- [
- 10.44758,
- 47.48175
- ],
- [
- 10.41998,
- 47.50506
- ],
- [
- 10.4424,
- 47.55514
- ],
- [
- 10.41308,
- 47.57143
- ],
- [
- 10.43998,
- 47.59768
- ]
- ],
- [
- [
- 12.4019,
- 47.16019
- ],
- [
- 12.35705,
- 47.13908
- ],
- [
- 12.35015,
- 47.11208
- ],
- [
- 12.31048,
- 47.10739
- ],
- [
- 12.25528,
- 47.07215
- ],
- [
- 12.21388,
- 47.05923
- ],
- [
- 12.20008,
- 47.02632
- ],
- [
- 12.14488,
- 47.03102
- ],
- [
- 12.11556,
- 47.0075
- ],
- [
- 12.13626,
- 46.95926
- ],
- [
- 12.16731,
- 46.9357
- ],
- [
- 12.14316,
- 46.91096
- ],
- [
- 12.18973,
- 46.90036
- ],
- [
- 12.21733,
- 46.86617
- ],
- [
- 12.25528,
- 46.88386
- ],
- [
- 12.27425,
- 46.88268
- ],
- [
- 12.2984,
- 46.83432
- ],
- [
- 12.27598,
- 46.82016
- ],
- [
- 12.27943,
- 46.77765
- ],
- [
- 12.35015,
- 46.77174
- ],
- [
- 12.3812,
- 46.715
- ],
- [
- 12.44329,
- 46.68425
- ],
- [
- 12.51402,
- 46.67004
- ],
- [
- 12.56576,
- 46.64873
- ],
- [
- 12.62958,
- 46.65347
- ],
- [
- 12.70203,
- 46.65347
- ],
- [
- 12.70375,
- 46.69844
- ],
- [
- 12.72963,
- 46.70081
- ],
- [
- 12.72273,
- 46.73747
- ],
- [
- 12.80207,
- 46.74929
- ],
- [
- 12.85382,
- 46.74456
- ],
- [
- 12.90384,
- 46.77174
- ],
- [
- 12.92799,
- 46.75992
- ],
- [
- 12.95732,
- 46.77647
- ],
- [
- 12.97974,
- 46.79772
- ],
- [
- 12.89522,
- 46.83314
- ],
- [
- 12.89522,
- 46.84848
- ],
- [
- 12.8452,
- 46.86381
- ],
- [
- 12.84692,
- 46.91568
- ],
- [
- 12.7969,
- 46.93099
- ],
- [
- 12.78828,
- 46.94748
- ],
- [
- 12.7486,
- 46.96867
- ],
- [
- 12.73653,
- 46.99691
- ],
- [
- 12.78138,
- 47.0416
- ],
- [
- 12.7624,
- 47.051
- ],
- [
- 12.7141,
- 47.04513
- ],
- [
- 12.71065,
- 47.07803
- ],
- [
- 12.62268,
- 47.12617
- ],
- [
- 12.56921,
- 47.14142
- ],
- [
- 12.55196,
- 47.13321
- ],
- [
- 12.52609,
- 47.15433
- ],
- [
- 12.48297,
- 47.16488
- ],
- [
- 12.46054,
- 47.14846
- ],
- [
- 12.43467,
- 47.15785
- ],
- [
- 12.41915,
- 47.14377
- ],
- [
- 12.4019,
- 47.16019
- ]
- ]
- ],
- "terms_url": "https://tiris.tirol.gv.at",
- "terms_text": "tiris.tirol.gv.at",
- "icon": "https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif"
- },
- {
- "id": "tirol.gv.at-orthofoto",
- "name": "Tiris: orthophoto",
- "type": "wms",
- "template": "https://gis.tirol.gv.at/arcgis/services/Service_Public/orthofoto/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Image_Aktuell_RGB&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- 10.43998,
- 47.59768
- ],
- [
- 10.47886,
- 47.59925
- ],
- [
- 10.50277,
- 47.58656
- ],
- [
- 10.4838,
- 47.55979
- ],
- [
- 10.51312,
- 47.5435
- ],
- [
- 10.57177,
- 47.54582
- ],
- [
- 10.57004,
- 47.56212
- ],
- [
- 10.60109,
- 47.58074
- ],
- [
- 10.63904,
- 47.5691
- ],
- [
- 10.70804,
- 47.57027
- ],
- [
- 10.71149,
- 47.54932
- ],
- [
- 10.76841,
- 47.55048
- ],
- [
- 10.78566,
- 47.52603
- ],
- [
- 10.89605,
- 47.55048
- ],
- [
- 10.93572,
- 47.5237
- ],
- [
- 10.934,
- 47.50506
- ],
- [
- 10.89088,
- 47.49573
- ],
- [
- 10.95125,
- 47.49107
- ],
- [
- 10.9547,
- 47.46776
- ],
- [
- 11.003,
- 47.43276
- ],
- [
- 10.99092,
- 47.40825
- ],
- [
- 11.10304,
- 47.40475
- ],
- [
- 11.11511,
- 47.41993
- ],
- [
- 11.20998,
- 47.4456
- ],
- [
- 11.26863,
- 47.44093
- ],
- [
- 11.26691,
- 47.41059
- ],
- [
- 11.29451,
- 47.4421
- ],
- [
- 11.33073,
- 47.46076
- ],
- [
- 11.38248,
- 47.45843
- ],
- [
- 11.3704,
- 47.47592
- ],
- [
- 11.4394,
- 47.53069
- ],
- [
- 11.467,
- 47.51787
- ],
- [
- 11.57394,
- 47.5237
- ],
- [
- 11.57567,
- 47.55863
- ],
- [
- 11.59809,
- 47.59121
- ],
- [
- 11.63431,
- 47.60633
- ],
- [
- 11.66881,
- 47.5947
- ],
- [
- 11.793,
- 47.60284
- ],
- [
- 11.83958,
- 47.59238
- ],
- [
- 11.84993,
- 47.61098
- ],
- [
- 12.00689,
- 47.63656
- ],
- [
- 12.03622,
- 47.62494
- ],
- [
- 12.07761,
- 47.62726
- ],
- [
- 12.10866,
- 47.61912
- ],
- [
- 12.19491,
- 47.62261
- ],
- [
- 12.15351,
- 47.68768
- ],
- [
- 12.15868,
- 47.7167
- ],
- [
- 12.18111,
- 47.71206
- ],
- [
- 12.21906,
- 47.72482
- ],
- [
- 12.24148,
- 47.75382
- ],
- [
- 12.27253,
- 47.7515
- ],
- [
- 12.2846,
- 47.73178
- ],
- [
- 12.26563,
- 47.69581
- ],
- [
- 12.33635,
- 47.7109
- ],
- [
- 12.37602,
- 47.69581
- ],
- [
- 12.44329,
- 47.70277
- ],
- [
- 12.45364,
- 47.69232
- ],
- [
- 12.45364,
- 47.6749
- ],
- [
- 12.51057,
- 47.63191
- ],
- [
- 12.53126,
- 47.64586
- ],
- [
- 12.58991,
- 47.63424
- ],
- [
- 12.57956,
- 47.61098
- ],
- [
- 12.66581,
- 47.5947
- ],
- [
- 12.67961,
- 47.57492
- ],
- [
- 12.64511,
- 47.55048
- ],
- [
- 12.66753,
- 47.53185
- ],
- [
- 12.68478,
- 47.50389
- ],
- [
- 12.71238,
- 47.48175
- ],
- [
- 12.66753,
- 47.45609
- ],
- [
- 12.64166,
- 47.45959
- ],
- [
- 12.65028,
- 47.44326
- ],
- [
- 12.62096,
- 47.40709
- ],
- [
- 12.57439,
- 47.38607
- ],
- [
- 12.55024,
- 47.39658
- ],
- [
- 12.49159,
- 47.37205
- ],
- [
- 12.50884,
- 47.35102
- ],
- [
- 12.48814,
- 47.32063
- ],
- [
- 12.43467,
- 47.32297
- ],
- [
- 12.41397,
- 47.30426
- ],
- [
- 12.36395,
- 47.30894
- ],
- [
- 12.3122,
- 47.32764
- ],
- [
- 12.2708,
- 47.29841
- ],
- [
- 12.17766,
- 47.29373
- ],
- [
- 12.14833,
- 47.28437
- ],
- [
- 12.11729,
- 47.29958
- ],
- [
- 12.09831,
- 47.27501
- ],
- [
- 12.12591,
- 47.25042
- ],
- [
- 12.09659,
- 47.19771
- ],
- [
- 12.11039,
- 47.14846
- ],
- [
- 12.14143,
- 47.10974
- ],
- [
- 12.13799,
- 47.08977
- ],
- [
- 12.15006,
- 47.07568
- ],
- [
- 12.00517,
- 47.04395
- ],
- [
- 11.92065,
- 47.02985
- ],
- [
- 11.83095,
- 46.99103
- ],
- [
- 11.78783,
- 46.98633
- ],
- [
- 11.77403,
- 46.9675
- ],
- [
- 11.73091,
- 46.96514
- ],
- [
- 11.70676,
- 46.98986
- ],
- [
- 11.64294,
- 46.99456
- ],
- [
- 11.61189,
- 47.00515
- ],
- [
- 11.53254,
- 46.97809
- ],
- [
- 11.49287,
- 47.00868
- ],
- [
- 11.44457,
- 46.9675
- ],
- [
- 11.4049,
- 46.96161
- ],
- [
- 11.34453,
- 46.98633
- ],
- [
- 11.20309,
- 46.9569
- ],
- [
- 11.17549,
- 46.96161
- ],
- [
- 11.17721,
- 46.94395
- ],
- [
- 11.14616,
- 46.92275
- ],
- [
- 11.12546,
- 46.92275
- ],
- [
- 11.10822,
- 46.90389
- ],
- [
- 11.11511,
- 46.88857
- ],
- [
- 11.08234,
- 46.85319
- ],
- [
- 11.09614,
- 46.8237
- ],
- [
- 11.05129,
- 46.80245
- ],
- [
- 11.02369,
- 46.76229
- ],
- [
- 10.91848,
- 46.77056
- ],
- [
- 10.88398,
- 46.75756
- ],
- [
- 10.84085,
- 46.77292
- ],
- [
- 10.82361,
- 46.76938
- ],
- [
- 10.79083,
- 46.78946
- ],
- [
- 10.75633,
- 46.77883
- ],
- [
- 10.72529,
- 46.79064
- ],
- [
- 10.74771,
- 46.82724
- ],
- [
- 10.69424,
- 46.84494
- ],
- [
- 10.67354,
- 46.86971
- ],
- [
- 10.60799,
- 46.85319
- ],
- [
- 10.55452,
- 46.82724
- ],
- [
- 10.52002,
- 46.83904
- ],
- [
- 10.46827,
- 46.83668
- ],
- [
- 10.45103,
- 46.8815
- ],
- [
- 10.47517,
- 46.93217
- ],
- [
- 10.41308,
- 46.95572
- ],
- [
- 10.3941,
- 46.98868
- ],
- [
- 10.3665,
- 46.98044
- ],
- [
- 10.33891,
- 46.94748
- ],
- [
- 10.32856,
- 46.91803
- ],
- [
- 10.29751,
- 46.91332
- ],
- [
- 10.25956,
- 46.9251
- ],
- [
- 10.23886,
- 46.86263
- ],
- [
- 10.16642,
- 46.83904
- ],
- [
- 10.13537,
- 46.8473
- ],
- [
- 10.13192,
- 46.87207
- ],
- [
- 10.10604,
- 46.88621
- ],
- [
- 10.09224,
- 46.92746
- ],
- [
- 10.12502,
- 46.95219
- ],
- [
- 10.14572,
- 47.00044
- ],
- [
- 10.11294,
- 47.02514
- ],
- [
- 10.15262,
- 47.04983
- ],
- [
- 10.13019,
- 47.06276
- ],
- [
- 10.13364,
- 47.09095
- ],
- [
- 10.15952,
- 47.12617
- ],
- [
- 10.20091,
- 47.1426
- ],
- [
- 10.19229,
- 47.20005
- ],
- [
- 10.20954,
- 47.21294
- ],
- [
- 10.18711,
- 47.23989
- ],
- [
- 10.20091,
- 47.25628
- ],
- [
- 10.16814,
- 47.2633
- ],
- [
- 10.16814,
- 47.28086
- ],
- [
- 10.20264,
- 47.29139
- ],
- [
- 10.24404,
- 47.28905
- ],
- [
- 10.33373,
- 47.32063
- ],
- [
- 10.38893,
- 47.39074
- ],
- [
- 10.4148,
- 47.39424
- ],
- [
- 10.4562,
- 47.43626
- ],
- [
- 10.44758,
- 47.48175
- ],
- [
- 10.41998,
- 47.50506
- ],
- [
- 10.4424,
- 47.55514
- ],
- [
- 10.41308,
- 47.57143
- ],
- [
- 10.43998,
- 47.59768
- ]
- ],
- [
- [
- 12.4019,
- 47.16019
- ],
- [
- 12.35705,
- 47.13908
- ],
- [
- 12.35015,
- 47.11208
- ],
- [
- 12.31048,
- 47.10739
- ],
- [
- 12.25528,
- 47.07215
- ],
- [
- 12.21388,
- 47.05923
- ],
- [
- 12.20008,
- 47.02632
- ],
- [
- 12.14488,
- 47.03102
- ],
- [
- 12.11556,
- 47.0075
- ],
- [
- 12.13626,
- 46.95926
- ],
- [
- 12.16731,
- 46.9357
- ],
- [
- 12.14316,
- 46.91096
- ],
- [
- 12.18973,
- 46.90036
- ],
- [
- 12.21733,
- 46.86617
- ],
- [
- 12.25528,
- 46.88386
- ],
- [
- 12.27425,
- 46.88268
- ],
- [
- 12.2984,
- 46.83432
- ],
- [
- 12.27598,
- 46.82016
- ],
- [
- 12.27943,
- 46.77765
- ],
- [
- 12.35015,
- 46.77174
- ],
- [
- 12.3812,
- 46.715
- ],
- [
- 12.44329,
- 46.68425
- ],
- [
- 12.51402,
- 46.67004
- ],
- [
- 12.56576,
- 46.64873
- ],
- [
- 12.62958,
- 46.65347
- ],
- [
- 12.70203,
- 46.65347
- ],
- [
- 12.70375,
- 46.69844
- ],
- [
- 12.72963,
- 46.70081
- ],
- [
- 12.72273,
- 46.73747
- ],
- [
- 12.80207,
- 46.74929
- ],
- [
- 12.85382,
- 46.74456
- ],
- [
- 12.90384,
- 46.77174
- ],
- [
- 12.92799,
- 46.75992
- ],
- [
- 12.95732,
- 46.77647
- ],
- [
- 12.97974,
- 46.79772
- ],
- [
- 12.89522,
- 46.83314
- ],
- [
- 12.89522,
- 46.84848
- ],
- [
- 12.8452,
- 46.86381
- ],
- [
- 12.84692,
- 46.91568
- ],
- [
- 12.7969,
- 46.93099
- ],
- [
- 12.78828,
- 46.94748
- ],
- [
- 12.7486,
- 46.96867
- ],
- [
- 12.73653,
- 46.99691
- ],
- [
- 12.78138,
- 47.0416
- ],
- [
- 12.7624,
- 47.051
- ],
- [
- 12.7141,
- 47.04513
- ],
- [
- 12.71065,
- 47.07803
- ],
- [
- 12.62268,
- 47.12617
- ],
- [
- 12.56921,
- 47.14142
- ],
- [
- 12.55196,
- 47.13321
- ],
- [
- 12.52609,
- 47.15433
- ],
- [
- 12.48297,
- 47.16488
- ],
- [
- 12.46054,
- 47.14846
- ],
- [
- 12.43467,
- 47.15785
- ],
- [
- 12.41915,
- 47.14377
- ],
- [
- 12.4019,
- 47.16019
- ]
- ]
- ],
- "terms_url": "https://tiris.tirol.gv.at",
- "terms_text": "tiris.tirol.gv.at",
- "icon": "https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif"
- },
- {
- "id": "tirol.gv.at-orthofoto-cir",
- "name": "Tiris: orthophoto infrared",
- "type": "wms",
- "template": "https://gis.tirol.gv.at/arcgis/services/Service_Public/orthofoto/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Image_Aktuell_CIR&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- 10.43998,
- 47.59768
- ],
- [
- 10.47886,
- 47.59925
- ],
- [
- 10.50277,
- 47.58656
- ],
- [
- 10.4838,
- 47.55979
- ],
- [
- 10.51312,
- 47.5435
- ],
- [
- 10.57177,
- 47.54582
- ],
- [
- 10.57004,
- 47.56212
- ],
- [
- 10.60109,
- 47.58074
- ],
- [
- 10.63904,
- 47.5691
- ],
- [
- 10.70804,
- 47.57027
- ],
- [
- 10.71149,
- 47.54932
- ],
- [
- 10.76841,
- 47.55048
- ],
- [
- 10.78566,
- 47.52603
- ],
- [
- 10.89605,
- 47.55048
- ],
- [
- 10.93572,
- 47.5237
- ],
- [
- 10.934,
- 47.50506
- ],
- [
- 10.89088,
- 47.49573
- ],
- [
- 10.95125,
- 47.49107
- ],
- [
- 10.9547,
- 47.46776
- ],
- [
- 11.003,
- 47.43276
- ],
- [
- 10.99092,
- 47.40825
- ],
- [
- 11.10304,
- 47.40475
- ],
- [
- 11.11511,
- 47.41993
- ],
- [
- 11.20998,
- 47.4456
- ],
- [
- 11.26863,
- 47.44093
- ],
- [
- 11.26691,
- 47.41059
- ],
- [
- 11.29451,
- 47.4421
- ],
- [
- 11.33073,
- 47.46076
- ],
- [
- 11.38248,
- 47.45843
- ],
- [
- 11.3704,
- 47.47592
- ],
- [
- 11.4394,
- 47.53069
- ],
- [
- 11.467,
- 47.51787
- ],
- [
- 11.57394,
- 47.5237
- ],
- [
- 11.57567,
- 47.55863
- ],
- [
- 11.59809,
- 47.59121
- ],
- [
- 11.63431,
- 47.60633
- ],
- [
- 11.66881,
- 47.5947
- ],
- [
- 11.793,
- 47.60284
- ],
- [
- 11.83958,
- 47.59238
- ],
- [
- 11.84993,
- 47.61098
- ],
- [
- 12.00689,
- 47.63656
- ],
- [
- 12.03622,
- 47.62494
- ],
- [
- 12.07761,
- 47.62726
- ],
- [
- 12.10866,
- 47.61912
- ],
- [
- 12.19491,
- 47.62261
- ],
- [
- 12.15351,
- 47.68768
- ],
- [
- 12.15868,
- 47.7167
- ],
- [
- 12.18111,
- 47.71206
- ],
- [
- 12.21906,
- 47.72482
- ],
- [
- 12.24148,
- 47.75382
- ],
- [
- 12.27253,
- 47.7515
- ],
- [
- 12.2846,
- 47.73178
- ],
- [
- 12.26563,
- 47.69581
- ],
- [
- 12.33635,
- 47.7109
- ],
- [
- 12.37602,
- 47.69581
- ],
- [
- 12.44329,
- 47.70277
- ],
- [
- 12.45364,
- 47.69232
- ],
- [
- 12.45364,
- 47.6749
- ],
- [
- 12.51057,
- 47.63191
- ],
- [
- 12.53126,
- 47.64586
- ],
- [
- 12.58991,
- 47.63424
- ],
- [
- 12.57956,
- 47.61098
- ],
- [
- 12.66581,
- 47.5947
- ],
- [
- 12.67961,
- 47.57492
- ],
- [
- 12.64511,
- 47.55048
- ],
- [
- 12.66753,
- 47.53185
- ],
- [
- 12.68478,
- 47.50389
- ],
- [
- 12.71238,
- 47.48175
- ],
- [
- 12.66753,
- 47.45609
- ],
- [
- 12.64166,
- 47.45959
- ],
- [
- 12.65028,
- 47.44326
- ],
- [
- 12.62096,
- 47.40709
- ],
- [
- 12.57439,
- 47.38607
- ],
- [
- 12.55024,
- 47.39658
- ],
- [
- 12.49159,
- 47.37205
- ],
- [
- 12.50884,
- 47.35102
- ],
- [
- 12.48814,
- 47.32063
- ],
- [
- 12.43467,
- 47.32297
- ],
- [
- 12.41397,
- 47.30426
- ],
- [
- 12.36395,
- 47.30894
- ],
- [
- 12.3122,
- 47.32764
- ],
- [
- 12.2708,
- 47.29841
- ],
- [
- 12.17766,
- 47.29373
- ],
- [
- 12.14833,
- 47.28437
- ],
- [
- 12.11729,
- 47.29958
- ],
- [
- 12.09831,
- 47.27501
- ],
- [
- 12.12591,
- 47.25042
- ],
- [
- 12.09659,
- 47.19771
- ],
- [
- 12.11039,
- 47.14846
- ],
- [
- 12.14143,
- 47.10974
- ],
- [
- 12.13799,
- 47.08977
- ],
- [
- 12.15006,
- 47.07568
- ],
- [
- 12.00517,
- 47.04395
- ],
- [
- 11.92065,
- 47.02985
- ],
- [
- 11.83095,
- 46.99103
- ],
- [
- 11.78783,
- 46.98633
- ],
- [
- 11.77403,
- 46.9675
- ],
- [
- 11.73091,
- 46.96514
- ],
- [
- 11.70676,
- 46.98986
- ],
- [
- 11.64294,
- 46.99456
- ],
- [
- 11.61189,
- 47.00515
- ],
- [
- 11.53254,
- 46.97809
- ],
- [
- 11.49287,
- 47.00868
- ],
- [
- 11.44457,
- 46.9675
- ],
- [
- 11.4049,
- 46.96161
- ],
- [
- 11.34453,
- 46.98633
- ],
- [
- 11.20309,
- 46.9569
- ],
- [
- 11.17549,
- 46.96161
- ],
- [
- 11.17721,
- 46.94395
- ],
- [
- 11.14616,
- 46.92275
- ],
- [
- 11.12546,
- 46.92275
- ],
- [
- 11.10822,
- 46.90389
- ],
- [
- 11.11511,
- 46.88857
- ],
- [
- 11.08234,
- 46.85319
- ],
- [
- 11.09614,
- 46.8237
- ],
- [
- 11.05129,
- 46.80245
- ],
- [
- 11.02369,
- 46.76229
- ],
- [
- 10.91848,
- 46.77056
- ],
- [
- 10.88398,
- 46.75756
- ],
- [
- 10.84085,
- 46.77292
- ],
- [
- 10.82361,
- 46.76938
- ],
- [
- 10.79083,
- 46.78946
- ],
- [
- 10.75633,
- 46.77883
- ],
- [
- 10.72529,
- 46.79064
- ],
- [
- 10.74771,
- 46.82724
- ],
- [
- 10.69424,
- 46.84494
- ],
- [
- 10.67354,
- 46.86971
- ],
- [
- 10.60799,
- 46.85319
- ],
- [
- 10.55452,
- 46.82724
- ],
- [
- 10.52002,
- 46.83904
- ],
- [
- 10.46827,
- 46.83668
- ],
- [
- 10.45103,
- 46.8815
- ],
- [
- 10.47517,
- 46.93217
- ],
- [
- 10.41308,
- 46.95572
- ],
- [
- 10.3941,
- 46.98868
- ],
- [
- 10.3665,
- 46.98044
- ],
- [
- 10.33891,
- 46.94748
- ],
- [
- 10.32856,
- 46.91803
- ],
- [
- 10.29751,
- 46.91332
- ],
- [
- 10.25956,
- 46.9251
- ],
- [
- 10.23886,
- 46.86263
- ],
- [
- 10.16642,
- 46.83904
- ],
- [
- 10.13537,
- 46.8473
- ],
- [
- 10.13192,
- 46.87207
- ],
- [
- 10.10604,
- 46.88621
- ],
- [
- 10.09224,
- 46.92746
- ],
- [
- 10.12502,
- 46.95219
- ],
- [
- 10.14572,
- 47.00044
- ],
- [
- 10.11294,
- 47.02514
- ],
- [
- 10.15262,
- 47.04983
- ],
- [
- 10.13019,
- 47.06276
- ],
- [
- 10.13364,
- 47.09095
- ],
- [
- 10.15952,
- 47.12617
- ],
- [
- 10.20091,
- 47.1426
- ],
- [
- 10.19229,
- 47.20005
- ],
- [
- 10.20954,
- 47.21294
- ],
- [
- 10.18711,
- 47.23989
- ],
- [
- 10.20091,
- 47.25628
- ],
- [
- 10.16814,
- 47.2633
- ],
- [
- 10.16814,
- 47.28086
- ],
- [
- 10.20264,
- 47.29139
- ],
- [
- 10.24404,
- 47.28905
- ],
- [
- 10.33373,
- 47.32063
- ],
- [
- 10.38893,
- 47.39074
- ],
- [
- 10.4148,
- 47.39424
- ],
- [
- 10.4562,
- 47.43626
- ],
- [
- 10.44758,
- 47.48175
- ],
- [
- 10.41998,
- 47.50506
- ],
- [
- 10.4424,
- 47.55514
- ],
- [
- 10.41308,
- 47.57143
- ],
- [
- 10.43998,
- 47.59768
- ]
- ],
- [
- [
- 12.4019,
- 47.16019
- ],
- [
- 12.35705,
- 47.13908
- ],
- [
- 12.35015,
- 47.11208
- ],
- [
- 12.31048,
- 47.10739
- ],
- [
- 12.25528,
- 47.07215
- ],
- [
- 12.21388,
- 47.05923
- ],
- [
- 12.20008,
- 47.02632
- ],
- [
- 12.14488,
- 47.03102
- ],
- [
- 12.11556,
- 47.0075
- ],
- [
- 12.13626,
- 46.95926
- ],
- [
- 12.16731,
- 46.9357
- ],
- [
- 12.14316,
- 46.91096
- ],
- [
- 12.18973,
- 46.90036
- ],
- [
- 12.21733,
- 46.86617
- ],
- [
- 12.25528,
- 46.88386
- ],
- [
- 12.27425,
- 46.88268
- ],
- [
- 12.2984,
- 46.83432
- ],
- [
- 12.27598,
- 46.82016
- ],
- [
- 12.27943,
- 46.77765
- ],
- [
- 12.35015,
- 46.77174
- ],
- [
- 12.3812,
- 46.715
- ],
- [
- 12.44329,
- 46.68425
- ],
- [
- 12.51402,
- 46.67004
- ],
- [
- 12.56576,
- 46.64873
- ],
- [
- 12.62958,
- 46.65347
- ],
- [
- 12.70203,
- 46.65347
- ],
- [
- 12.70375,
- 46.69844
- ],
- [
- 12.72963,
- 46.70081
- ],
- [
- 12.72273,
- 46.73747
- ],
- [
- 12.80207,
- 46.74929
- ],
- [
- 12.85382,
- 46.74456
- ],
- [
- 12.90384,
- 46.77174
- ],
- [
- 12.92799,
- 46.75992
- ],
- [
- 12.95732,
- 46.77647
- ],
- [
- 12.97974,
- 46.79772
- ],
- [
- 12.89522,
- 46.83314
- ],
- [
- 12.89522,
- 46.84848
- ],
- [
- 12.8452,
- 46.86381
- ],
- [
- 12.84692,
- 46.91568
- ],
- [
- 12.7969,
- 46.93099
- ],
- [
- 12.78828,
- 46.94748
- ],
- [
- 12.7486,
- 46.96867
- ],
- [
- 12.73653,
- 46.99691
- ],
- [
- 12.78138,
- 47.0416
- ],
- [
- 12.7624,
- 47.051
- ],
- [
- 12.7141,
- 47.04513
- ],
- [
- 12.71065,
- 47.07803
- ],
- [
- 12.62268,
- 47.12617
- ],
- [
- 12.56921,
- 47.14142
- ],
- [
- 12.55196,
- 47.13321
- ],
- [
- 12.52609,
- 47.15433
- ],
- [
- 12.48297,
- 47.16488
- ],
- [
- 12.46054,
- 47.14846
- ],
- [
- 12.43467,
- 47.15785
- ],
- [
- 12.41915,
- 47.14377
- ],
- [
- 12.4019,
- 47.16019
- ]
- ]
- ],
- "terms_url": "https://tiris.tirol.gv.at",
- "terms_text": "tiris.tirol.gv.at",
- "icon": "https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif"
- },
- {
- "id": "lu.geoportail.opendata.topo",
- "name": "Topographical Map geoportail.lu",
- "type": "tms",
- "template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/topo/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png",
- "endDate": "2010-07-20T00:00:00.000Z",
- "startDate": "2013-07-19T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- 5.96175,
- 50.17631
- ],
- [
- 6.02627,
- 50.18496
- ],
- [
- 6.03318,
- 50.16395
- ],
- [
- 6.06069,
- 50.15536
- ],
- [
- 6.07668,
- 50.15913
- ],
- [
- 6.07824,
- 50.17255
- ],
- [
- 6.10176,
- 50.17199
- ],
- [
- 6.1225,
- 50.16437
- ],
- [
- 6.1201,
- 50.15594
- ],
- [
- 6.1277,
- 50.14993
- ],
- [
- 6.11323,
- 50.13739
- ],
- [
- 6.12369,
- 50.13719
- ],
- [
- 6.14093,
- 50.1305
- ],
- [
- 6.13555,
- 50.11899
- ],
- [
- 6.13808,
- 50.10263
- ],
- [
- 6.13108,
- 50.09964
- ],
- [
- 6.13547,
- 50.09119
- ],
- [
- 6.12194,
- 50.09059
- ],
- [
- 6.12634,
- 50.07817
- ],
- [
- 6.13186,
- 50.07348
- ],
- [
- 6.12117,
- 50.064
- ],
- [
- 6.11444,
- 50.06139
- ],
- [
- 6.11563,
- 50.05817
- ],
- [
- 6.12361,
- 50.06323
- ],
- [
- 6.13661,
- 50.04178
- ],
- [
- 6.13034,
- 50.02975
- ],
- [
- 6.14821,
- 50.02307
- ],
- [
- 6.13868,
- 50.01572
- ],
- [
- 6.13594,
- 50.01485
- ],
- [
- 6.13138,
- 50.01905
- ],
- [
- 6.13024,
- 50.01819
- ],
- [
- 6.13934,
- 50.01116
- ],
- [
- 6.1517,
- 50.01058
- ],
- [
- 6.14546,
- 49.99689
- ],
- [
- 6.13966,
- 49.9994
- ],
- [
- 6.13852,
- 49.99829
- ],
- [
- 6.14218,
- 49.99535
- ],
- [
- 6.15023,
- 49.99518
- ],
- [
- 6.15625,
- 49.98867
- ],
- [
- 6.17305,
- 49.98589
- ],
- [
- 6.17348,
- 49.98344
- ],
- [
- 6.17035,
- 49.98376
- ],
- [
- 6.16549,
- 49.97115
- ],
- [
- 6.17151,
- 49.96298
- ],
- [
- 6.1763,
- 49.962
- ],
- [
- 6.17995,
- 49.95386
- ],
- [
- 6.18339,
- 49.9548
- ],
- [
- 6.17983,
- 49.96307
- ],
- [
- 6.18331,
- 49.9686
- ],
- [
- 6.19277,
- 49.97158
- ],
- [
- 6.19978,
- 49.95352
- ],
- [
- 6.20707,
- 49.95672
- ],
- [
- 6.21269,
- 49.9514
- ],
- [
- 6.22502,
- 49.95039
- ],
- [
- 6.22044,
- 49.94369
- ],
- [
- 6.22824,
- 49.93726
- ],
- [
- 6.22635,
- 49.92766
- ],
- [
- 6.21913,
- 49.92354
- ],
- [
- 6.22986,
- 49.92125
- ],
- [
- 6.23603,
- 49.91355
- ],
- [
- 6.23187,
- 49.91064
- ],
- [
- 6.22769,
- 49.91062
- ],
- [
- 6.23229,
- 49.9072
- ],
- [
- 6.23381,
- 49.90028
- ],
- [
- 6.24692,
- 49.89535
- ],
- [
- 6.25781,
- 49.88724
- ],
- [
- 6.26301,
- 49.88101
- ],
- [
- 6.27646,
- 49.87725
- ],
- [
- 6.28113,
- 49.87957
- ],
- [
- 6.29166,
- 49.87548
- ],
- [
- 6.2977,
- 49.86673
- ],
- [
- 6.30989,
- 49.87107
- ],
- [
- 6.31532,
- 49.8673
- ],
- [
- 6.31465,
- 49.86057
- ],
- [
- 6.32361,
- 49.85188
- ],
- [
- 6.32158,
- 49.8409
- ],
- [
- 6.32741,
- 49.83673
- ],
- [
- 6.33656,
- 49.83998
- ],
- [
- 6.33937,
- 49.8507
- ],
- [
- 6.36465,
- 49.85164
- ],
- [
- 6.4022,
- 49.82098
- ],
- [
- 6.42643,
- 49.81629
- ],
- [
- 6.42807,
- 49.81186
- ],
- [
- 6.43097,
- 49.81129
- ],
- [
- 6.44161,
- 49.81547
- ],
- [
- 6.44344,
- 49.81233
- ],
- [
- 6.45366,
- 49.81275
- ],
- [
- 6.46454,
- 49.81975
- ],
- [
- 6.47057,
- 49.82385
- ],
- [
- 6.49681,
- 49.81277
- ],
- [
- 6.50669,
- 49.80993
- ],
- [
- 6.51155,
- 49.80238
- ],
- [
- 6.51485,
- 49.80513
- ],
- [
- 6.5196,
- 49.81446
- ],
- [
- 6.52981,
- 49.81048
- ],
- [
- 6.53225,
- 49.80686
- ],
- [
- 6.53083,
- 49.80116
- ],
- [
- 6.50622,
- 49.78899
- ],
- [
- 6.51917,
- 49.78344
- ],
- [
- 6.51105,
- 49.77422
- ],
- [
- 6.52056,
- 49.76818
- ],
- [
- 6.52052,
- 49.76134
- ],
- [
- 6.50373,
- 49.75086
- ],
- [
- 6.50263,
- 49.73298
- ],
- [
- 6.50727,
- 49.72938
- ],
- [
- 6.51809,
- 49.7242
- ],
- [
- 6.51642,
- 49.72129
- ],
- [
- 6.51176,
- 49.72016
- ],
- [
- 6.50479,
- 49.725
- ],
- [
- 6.49891,
- 49.72639
- ],
- [
- 6.49558,
- 49.72443
- ],
- [
- 6.50712,
- 49.71655
- ],
- [
- 6.50788,
- 49.71215
- ],
- [
- 6.5046,
- 49.71227
- ],
- [
- 6.42714,
- 49.66237
- ],
- [
- 6.4399,
- 49.66025
- ],
- [
- 6.44251,
- 49.65591
- ],
- [
- 6.42178,
- 49.61809
- ],
- [
- 6.39898,
- 49.60094
- ],
- [
- 6.37941,
- 49.59526
- ],
- [
- 6.37551,
- 49.58809
- ],
- [
- 6.38443,
- 49.5801
- ],
- [
- 6.38119,
- 49.57509
- ],
- [
- 6.36909,
- 49.5783
- ],
- [
- 6.35791,
- 49.57166
- ],
- [
- 6.3849,
- 49.55817
- ],
- [
- 6.38009,
- 49.54856
- ],
- [
- 6.35855,
- 49.53296
- ],
- [
- 6.35932,
- 49.52481
- ],
- [
- 6.37076,
- 49.50545
- ],
- [
- 6.37056,
- 49.45732
- ],
- [
- 6.3334,
- 49.46493
- ],
- [
- 6.32189,
- 49.47244
- ],
- [
- 6.29503,
- 49.47928
- ],
- [
- 6.28789,
- 49.48379
- ],
- [
- 6.27191,
- 49.49995
- ],
- [
- 6.24133,
- 49.50693
- ],
- [
- 6.19669,
- 49.50331
- ],
- [
- 6.17337,
- 49.50577
- ],
- [
- 6.16086,
- 49.50085
- ],
- [
- 6.1671,
- 49.49006
- ],
- [
- 6.14018,
- 49.48525
- ],
- [
- 6.12937,
- 49.48803
- ],
- [
- 6.12725,
- 49.47081
- ],
- [
- 6.1014,
- 49.46726
- ],
- [
- 6.10483,
- 49.45076
- ],
- [
- 6.08167,
- 49.45417
- ],
- [
- 6.07722,
- 49.46139
- ],
- [
- 6.05917,
- 49.46306
- ],
- [
- 6.05222,
- 49.46028
- ],
- [
- 6.04421,
- 49.44553
- ],
- [
- 6.02529,
- 49.44703
- ],
- [
- 6.02154,
- 49.45127
- ],
- [
- 6.01574,
- 49.44885
- ],
- [
- 5.99412,
- 49.45301
- ],
- [
- 5.97657,
- 49.44885
- ],
- [
- 5.97773,
- 49.45955
- ],
- [
- 5.97232,
- 49.46087
- ],
- [
- 5.96891,
- 49.48202
- ],
- [
- 5.9616,
- 49.49026
- ],
- [
- 5.91578,
- 49.49835
- ],
- [
- 5.89033,
- 49.4948
- ],
- [
- 5.86332,
- 49.50006
- ],
- [
- 5.84897,
- 49.50826
- ],
- [
- 5.84828,
- 49.51397
- ],
- [
- 5.83641,
- 49.51817
- ],
- [
- 5.83187,
- 49.52639
- ],
- [
- 5.84308,
- 49.53081
- ],
- [
- 5.83562,
- 49.54114
- ],
- [
- 5.81625,
- 49.53325
- ],
- [
- 5.8052,
- 49.54272
- ],
- [
- 5.85943,
- 49.57158
- ],
- [
- 5.86866,
- 49.587
- ],
- [
- 5.86289,
- 49.58525
- ],
- [
- 5.8511,
- 49.58379
- ],
- [
- 5.84712,
- 49.58961
- ],
- [
- 5.84565,
- 49.5981
- ],
- [
- 5.8694,
- 49.6106
- ],
- [
- 5.88182,
- 49.63815
- ],
- [
- 5.89998,
- 49.63907
- ],
- [
- 5.89934,
- 49.66239
- ],
- [
- 5.85656,
- 49.67628
- ],
- [
- 5.85628,
- 49.68211
- ],
- [
- 5.8757,
- 49.71118
- ],
- [
- 5.86481,
- 49.72331
- ],
- [
- 5.84325,
- 49.71822
- ],
- [
- 5.82191,
- 49.72128
- ],
- [
- 5.82489,
- 49.73767
- ],
- [
- 5.82073,
- 49.74878
- ],
- [
- 5.78626,
- 49.79079
- ],
- [
- 5.76517,
- 49.78961
- ],
- [
- 5.75094,
- 49.79094
- ],
- [
- 5.74159,
- 49.82126
- ],
- [
- 5.74581,
- 49.82435
- ],
- [
- 5.7372,
- 49.83353
- ],
- [
- 5.74053,
- 49.84142
- ],
- [
- 5.74701,
- 49.84048
- ],
- [
- 5.74624,
- 49.84783
- ],
- [
- 5.75399,
- 49.84878
- ],
- [
- 5.74066,
- 49.85152
- ],
- [
- 5.75229,
- 49.85922
- ],
- [
- 5.74955,
- 49.87554
- ],
- [
- 5.77567,
- 49.87438
- ],
- [
- 5.77505,
- 49.88057
- ],
- [
- 5.7346,
- 49.89341
- ],
- [
- 5.73303,
- 49.90285
- ],
- [
- 5.75783,
- 49.91737
- ],
- [
- 5.76039,
- 49.93252
- ],
- [
- 5.77073,
- 49.93711
- ],
- [
- 5.76878,
- 49.94239
- ],
- [
- 5.7688,
- 49.96104
- ],
- [
- 5.78672,
- 49.96816
- ],
- [
- 5.80524,
- 49.96677
- ],
- [
- 5.80652,
- 49.97321
- ],
- [
- 5.83129,
- 49.97995
- ],
- [
- 5.83462,
- 49.98656
- ],
- [
- 5.81806,
- 49.99936
- ],
- [
- 5.81561,
- 50.01437
- ],
- [
- 5.84792,
- 50.02809
- ],
- [
- 5.86189,
- 50.04581
- ],
- [
- 5.85087,
- 50.0563
- ],
- [
- 5.85781,
- 50.07186
- ],
- [
- 5.881,
- 50.08069
- ],
- [
- 5.89196,
- 50.12041
- ],
- [
- 5.95286,
- 50.13384
- ],
- [
- 5.96175,
- 50.17631
- ]
- ]
- ],
- "terms_url": "https://data.public.lu/en/datasets/cartes-topographiques-services-wms-et-wmts",
- "terms_text": "Administration du Cadastre et de la Topographie",
- "icon": "https://www.geoportail.lu/static/img/lion.png"
- },
- {
- "id": "Torokbalint-orthophoto-2013",
- "name": "Törökbálint orthophoto 2013",
- "type": "wms",
- "template": "https://terkep.torokbalint.hu/mapproxy/service?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ORTO_2013_5CM_2013SZEPT_TAKARASSAL_512_512&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&TRANSPARENT=true",
- "projection": "EPSG:3857",
- "endDate": "2013-09-01T00:00:00.000Z",
- "startDate": "2013-09-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 18.91731,
- 47.40854
- ],
- [
- 18.91691,
- 47.40849
- ],
- [
- 18.91606,
- 47.40885
- ],
- [
- 18.91565,
- 47.40905
- ],
- [
- 18.91458,
- 47.40938
- ],
- [
- 18.91385,
- 47.4097
- ],
- [
- 18.91376,
- 47.40976
- ],
- [
- 18.91314,
- 47.41038
- ],
- [
- 18.9122,
- 47.41098
- ],
- [
- 18.91041,
- 47.41175
- ],
- [
- 18.90932,
- 47.41258
- ],
- [
- 18.90841,
- 47.41317
- ],
- [
- 18.90676,
- 47.41443
- ],
- [
- 18.90481,
- 47.41568
- ],
- [
- 18.90362,
- 47.41597
- ],
- [
- 18.90317,
- 47.41616
- ],
- [
- 18.90062,
- 47.41742
- ],
- [
- 18.90042,
- 47.41755
- ],
- [
- 18.89968,
- 47.41797
- ],
- [
- 18.89888,
- 47.41818
- ],
- [
- 18.89814,
- 47.41835
- ],
- [
- 18.89752,
- 47.41855
- ],
- [
- 18.89666,
- 47.41901
- ],
- [
- 18.8958,
- 47.41954
- ],
- [
- 18.89421,
- 47.4205
- ],
- [
- 18.89055,
- 47.42209
- ],
- [
- 18.88743,
- 47.42332
- ],
- [
- 18.88554,
- 47.42424
- ],
- [
- 18.88436,
- 47.42476
- ],
- [
- 18.88189,
- 47.42553
- ],
- [
- 18.88085,
- 47.42598
- ],
- [
- 18.8801,
- 47.42629
- ],
- [
- 18.87956,
- 47.42649
- ],
- [
- 18.87741,
- 47.42738
- ],
- [
- 18.87602,
- 47.42789
- ],
- [
- 18.87508,
- 47.42836
- ],
- [
- 18.87281,
- 47.42934
- ],
- [
- 18.87164,
- 47.42968
- ],
- [
- 18.8714,
- 47.43001
- ],
- [
- 18.87259,
- 47.4323
- ],
- [
- 18.87273,
- 47.43278
- ],
- [
- 18.87274,
- 47.43324
- ],
- [
- 18.87244,
- 47.43482
- ],
- [
- 18.87206,
- 47.43526
- ],
- [
- 18.86891,
- 47.43712
- ],
- [
- 18.86561,
- 47.4375
- ],
- [
- 18.86466,
- 47.43774
- ],
- [
- 18.86404,
- 47.43809
- ],
- [
- 18.86378,
- 47.43791
- ],
- [
- 18.8634,
- 47.43784
- ],
- [
- 18.863,
- 47.43798
- ],
- [
- 18.85195,
- 47.44715
- ],
- [
- 18.85217,
- 47.44847
- ],
- [
- 18.8593,
- 47.45387
- ],
- [
- 18.85839,
- 47.45512
- ],
- [
- 18.85777,
- 47.45568
- ],
- [
- 18.85718,
- 47.456
- ],
- [
- 18.8572,
- 47.45636
- ],
- [
- 18.86015,
- 47.45839
- ],
- [
- 18.86194,
- 47.4595
- ],
- [
- 18.86099,
- 47.46071
- ],
- [
- 18.85979,
- 47.46201
- ],
- [
- 18.85929,
- 47.46236
- ],
- [
- 18.85859,
- 47.46272
- ],
- [
- 18.85713,
- 47.46333
- ],
- [
- 18.85634,
- 47.4636
- ],
- [
- 18.85628,
- 47.46403
- ],
- [
- 18.85719,
- 47.46528
- ],
- [
- 18.85663,
- 47.46551
- ],
- [
- 18.85653,
- 47.4658
- ],
- [
- 18.85693,
- 47.46656
- ],
- [
- 18.85836,
- 47.46953
- ],
- [
- 18.85826,
- 47.4698
- ],
- [
- 18.85827,
- 47.46991
- ],
- [
- 18.85838,
- 47.47019
- ],
- [
- 18.85844,
- 47.47027
- ],
- [
- 18.85852,
- 47.47033
- ],
- [
- 18.85862,
- 47.47036
- ],
- [
- 18.85873,
- 47.47038
- ],
- [
- 18.8589,
- 47.47036
- ],
- [
- 18.86146,
- 47.46973
- ],
- [
- 18.86277,
- 47.46929
- ],
- [
- 18.86617,
- 47.46785
- ],
- [
- 18.86794,
- 47.46656
- ],
- [
- 18.86997,
- 47.46524
- ],
- [
- 18.8708,
- 47.46457
- ],
- [
- 18.87268,
- 47.46333
- ],
- [
- 18.87536,
- 47.46113
- ],
- [
- 18.87687,
- 47.45927
- ],
- [
- 18.88943,
- 47.45987
- ],
- [
- 18.89024,
- 47.45988
- ],
- [
- 18.90371,
- 47.45534
- ],
- [
- 18.90427,
- 47.4552
- ],
- [
- 18.90493,
- 47.45506
- ],
- [
- 18.90542,
- 47.4551
- ],
- [
- 18.90567,
- 47.45505
- ],
- [
- 18.90629,
- 47.45477
- ],
- [
- 18.90648,
- 47.45453
- ],
- [
- 18.9066,
- 47.45447
- ],
- [
- 18.90678,
- 47.45439
- ],
- [
- 18.90811,
- 47.45399
- ],
- [
- 18.90837,
- 47.45395
- ],
- [
- 18.9089,
- 47.45384
- ],
- [
- 18.90954,
- 47.4537
- ],
- [
- 18.91326,
- 47.45317
- ],
- [
- 18.91353,
- 47.4532
- ],
- [
- 18.91372,
- 47.45317
- ],
- [
- 18.91386,
- 47.45307
- ],
- [
- 18.91431,
- 47.45294
- ],
- [
- 18.91598,
- 47.453
- ],
- [
- 18.91807,
- 47.45317
- ],
- [
- 18.91846,
- 47.453
- ],
- [
- 18.91903,
- 47.45161
- ],
- [
- 18.92173,
- 47.4508
- ],
- [
- 18.92246,
- 47.45069
- ],
- [
- 18.92418,
- 47.45025
- ],
- [
- 18.92756,
- 47.44989
- ],
- [
- 18.92972,
- 47.44951
- ],
- [
- 18.93221,
- 47.44922
- ],
- [
- 18.93347,
- 47.44932
- ],
- [
- 18.93921,
- 47.44935
- ],
- [
- 18.94229,
- 47.44903
- ],
- [
- 18.94549,
- 47.4489
- ],
- [
- 18.94826,
- 47.4487
- ],
- [
- 18.95003,
- 47.44824
- ],
- [
- 18.9547,
- 47.44722
- ],
- [
- 18.95749,
- 47.44692
- ],
- [
- 18.95802,
- 47.44715
- ],
- [
- 18.95844,
- 47.44708
- ],
- [
- 18.95877,
- 47.44666
- ],
- [
- 18.96145,
- 47.4393
- ],
- [
- 18.96368,
- 47.4358
- ],
- [
- 18.96598,
- 47.43288
- ],
- [
- 18.96899,
- 47.4297
- ],
- [
- 18.9701,
- 47.42704
- ],
- [
- 18.97009,
- 47.42679
- ],
- [
- 18.96695,
- 47.4246
- ],
- [
- 18.95735,
- 47.41842
- ],
- [
- 18.95676,
- 47.4184
- ],
- [
- 18.95606,
- 47.41813
- ],
- [
- 18.95385,
- 47.41739
- ],
- [
- 18.95144,
- 47.41665
- ],
- [
- 18.95131,
- 47.41664
- ],
- [
- 18.9327,
- 47.41703
- ],
- [
- 18.93257,
- 47.41696
- ],
- [
- 18.93201,
- 47.41674
- ],
- [
- 18.93149,
- 47.4164
- ],
- [
- 18.93114,
- 47.41612
- ],
- [
- 18.92123,
- 47.41091
- ],
- [
- 18.91957,
- 47.40987
- ],
- [
- 18.91927,
- 47.40961
- ],
- [
- 18.91731,
- 47.40854
- ]
- ]
- ],
- "terms_url": "http://www.torokbalint.hu",
- "terms_text": "Törökbálint",
- "description": "5 cm resolution bald image"
- },
- {
- "id": "Torokbalint-orthophoto-2015",
- "name": "Törökbálint orthophoto 2015",
- "type": "wms",
- "template": "https://terkep.torokbalint.hu/mapproxy/service?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=TBORTO_2015_20160218&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&TRANSPARENT=true",
- "projection": "EPSG:3857",
- "endDate": "2015-01-01T00:00:00.000Z",
- "startDate": "2015-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 18.91731,
- 47.40854
- ],
- [
- 18.91691,
- 47.40849
- ],
- [
- 18.91606,
- 47.40885
- ],
- [
- 18.91565,
- 47.40905
- ],
- [
- 18.91458,
- 47.40938
- ],
- [
- 18.91385,
- 47.4097
- ],
- [
- 18.91376,
- 47.40976
- ],
- [
- 18.91314,
- 47.41038
- ],
- [
- 18.9122,
- 47.41098
- ],
- [
- 18.91041,
- 47.41175
- ],
- [
- 18.90932,
- 47.41258
- ],
- [
- 18.90841,
- 47.41317
- ],
- [
- 18.90676,
- 47.41443
- ],
- [
- 18.90481,
- 47.41568
- ],
- [
- 18.90362,
- 47.41597
- ],
- [
- 18.90317,
- 47.41616
- ],
- [
- 18.90062,
- 47.41742
- ],
- [
- 18.90042,
- 47.41755
- ],
- [
- 18.89968,
- 47.41797
- ],
- [
- 18.89888,
- 47.41818
- ],
- [
- 18.89814,
- 47.41835
- ],
- [
- 18.89752,
- 47.41855
- ],
- [
- 18.89666,
- 47.41901
- ],
- [
- 18.8958,
- 47.41954
- ],
- [
- 18.89421,
- 47.4205
- ],
- [
- 18.89055,
- 47.42209
- ],
- [
- 18.88743,
- 47.42332
- ],
- [
- 18.88554,
- 47.42424
- ],
- [
- 18.88436,
- 47.42476
- ],
- [
- 18.88189,
- 47.42553
- ],
- [
- 18.88085,
- 47.42598
- ],
- [
- 18.8801,
- 47.42629
- ],
- [
- 18.87956,
- 47.42649
- ],
- [
- 18.87741,
- 47.42738
- ],
- [
- 18.87602,
- 47.42789
- ],
- [
- 18.87508,
- 47.42836
- ],
- [
- 18.87281,
- 47.42934
- ],
- [
- 18.87164,
- 47.42968
- ],
- [
- 18.8714,
- 47.43001
- ],
- [
- 18.87259,
- 47.4323
- ],
- [
- 18.87273,
- 47.43278
- ],
- [
- 18.87274,
- 47.43324
- ],
- [
- 18.87244,
- 47.43482
- ],
- [
- 18.87206,
- 47.43526
- ],
- [
- 18.86891,
- 47.43712
- ],
- [
- 18.86561,
- 47.4375
- ],
- [
- 18.86466,
- 47.43774
- ],
- [
- 18.86404,
- 47.43809
- ],
- [
- 18.86378,
- 47.43791
- ],
- [
- 18.8634,
- 47.43784
- ],
- [
- 18.863,
- 47.43798
- ],
- [
- 18.85195,
- 47.44715
- ],
- [
- 18.85217,
- 47.44847
- ],
- [
- 18.8593,
- 47.45387
- ],
- [
- 18.85839,
- 47.45512
- ],
- [
- 18.85777,
- 47.45568
- ],
- [
- 18.85718,
- 47.456
- ],
- [
- 18.8572,
- 47.45636
- ],
- [
- 18.86015,
- 47.45839
- ],
- [
- 18.86194,
- 47.4595
- ],
- [
- 18.86099,
- 47.46071
- ],
- [
- 18.85979,
- 47.46201
- ],
- [
- 18.85929,
- 47.46236
- ],
- [
- 18.85859,
- 47.46272
- ],
- [
- 18.85713,
- 47.46333
- ],
- [
- 18.85634,
- 47.4636
- ],
- [
- 18.85628,
- 47.46403
- ],
- [
- 18.85719,
- 47.46528
- ],
- [
- 18.85663,
- 47.46551
- ],
- [
- 18.85653,
- 47.4658
- ],
- [
- 18.85693,
- 47.46656
- ],
- [
- 18.85836,
- 47.46953
- ],
- [
- 18.85826,
- 47.4698
- ],
- [
- 18.85827,
- 47.46991
- ],
- [
- 18.85838,
- 47.47019
- ],
- [
- 18.85844,
- 47.47027
- ],
- [
- 18.85852,
- 47.47033
- ],
- [
- 18.85862,
- 47.47036
- ],
- [
- 18.85873,
- 47.47038
- ],
- [
- 18.8589,
- 47.47036
- ],
- [
- 18.86146,
- 47.46973
- ],
- [
- 18.86277,
- 47.46929
- ],
- [
- 18.86617,
- 47.46785
- ],
- [
- 18.86794,
- 47.46656
- ],
- [
- 18.86997,
- 47.46524
- ],
- [
- 18.8708,
- 47.46457
- ],
- [
- 18.87268,
- 47.46333
- ],
- [
- 18.87536,
- 47.46113
- ],
- [
- 18.87687,
- 47.45927
- ],
- [
- 18.88943,
- 47.45987
- ],
- [
- 18.89024,
- 47.45988
- ],
- [
- 18.90371,
- 47.45534
- ],
- [
- 18.90427,
- 47.4552
- ],
- [
- 18.90493,
- 47.45506
- ],
- [
- 18.90542,
- 47.4551
- ],
- [
- 18.90567,
- 47.45505
- ],
- [
- 18.90629,
- 47.45477
- ],
- [
- 18.90648,
- 47.45453
- ],
- [
- 18.9066,
- 47.45447
- ],
- [
- 18.90678,
- 47.45439
- ],
- [
- 18.90811,
- 47.45399
- ],
- [
- 18.90837,
- 47.45395
- ],
- [
- 18.9089,
- 47.45384
- ],
- [
- 18.90954,
- 47.4537
- ],
- [
- 18.91326,
- 47.45317
- ],
- [
- 18.91353,
- 47.4532
- ],
- [
- 18.91372,
- 47.45317
- ],
- [
- 18.91386,
- 47.45307
- ],
- [
- 18.91431,
- 47.45294
- ],
- [
- 18.91598,
- 47.453
- ],
- [
- 18.91807,
- 47.45317
- ],
- [
- 18.91846,
- 47.453
- ],
- [
- 18.91903,
- 47.45161
- ],
- [
- 18.92173,
- 47.4508
- ],
- [
- 18.92246,
- 47.45069
- ],
- [
- 18.92418,
- 47.45025
- ],
- [
- 18.92756,
- 47.44989
- ],
- [
- 18.92972,
- 47.44951
- ],
- [
- 18.93221,
- 47.44922
- ],
- [
- 18.93347,
- 47.44932
- ],
- [
- 18.93921,
- 47.44935
- ],
- [
- 18.94229,
- 47.44903
- ],
- [
- 18.94549,
- 47.4489
- ],
- [
- 18.94826,
- 47.4487
- ],
- [
- 18.95003,
- 47.44824
- ],
- [
- 18.9547,
- 47.44722
- ],
- [
- 18.95749,
- 47.44692
- ],
- [
- 18.95802,
- 47.44715
- ],
- [
- 18.95844,
- 47.44708
- ],
- [
- 18.95877,
- 47.44666
- ],
- [
- 18.96145,
- 47.4393
- ],
- [
- 18.96368,
- 47.4358
- ],
- [
- 18.96598,
- 47.43288
- ],
- [
- 18.96899,
- 47.4297
- ],
- [
- 18.9701,
- 47.42704
- ],
- [
- 18.97009,
- 47.42679
- ],
- [
- 18.96695,
- 47.4246
- ],
- [
- 18.95735,
- 47.41842
- ],
- [
- 18.95676,
- 47.4184
- ],
- [
- 18.95606,
- 47.41813
- ],
- [
- 18.95385,
- 47.41739
- ],
- [
- 18.95144,
- 47.41665
- ],
- [
- 18.95131,
- 47.41664
- ],
- [
- 18.9327,
- 47.41703
- ],
- [
- 18.93257,
- 47.41696
- ],
- [
- 18.93201,
- 47.41674
- ],
- [
- 18.93149,
- 47.4164
- ],
- [
- 18.93114,
- 47.41612
- ],
- [
- 18.92123,
- 47.41091
- ],
- [
- 18.91957,
- 47.40987
- ],
- [
- 18.91927,
- 47.40961
- ],
- [
- 18.91731,
- 47.40854
- ]
- ]
- ],
- "terms_url": "http://fototerkep.hu",
- "terms_text": "Fototerkep.hu",
- "best": true,
- "description": "5 cm resolution bald image"
- },
- {
- "id": "Toulouse-Orthophotoplan-2007",
- "name": "Toulouse - Orthophotoplan 2007",
- "type": "wms",
- "template": "https://wms.plan.toulouse.fr/geocache/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortho2007&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2007-01-01T00:00:00.000Z",
- "startDate": "2007-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 22
- ],
- "polygon": [
- [
- [
- 1.192,
- 43.63288
- ],
- [
- 1.20154,
- 43.63297
- ],
- [
- 1.20111,
- 43.65549
- ],
- [
- 1.2228,
- 43.6557
- ],
- [
- 1.22262,
- 43.66534
- ],
- [
- 1.22753,
- 43.66538
- ],
- [
- 1.22754,
- 43.66564
- ],
- [
- 1.23376,
- 43.66569
- ],
- [
- 1.23376,
- 43.66502
- ],
- [
- 1.23512,
- 43.66503
- ],
- [
- 1.23509,
- 43.66707
- ],
- [
- 1.24436,
- 43.66716
- ],
- [
- 1.24416,
- 43.67439
- ],
- [
- 1.2494,
- 43.67443
- ],
- [
- 1.2494,
- 43.67466
- ],
- [
- 1.25557,
- 43.67472
- ],
- [
- 1.25557,
- 43.67445
- ],
- [
- 1.25695,
- 43.67447
- ],
- [
- 1.25688,
- 43.67853
- ],
- [
- 1.28749,
- 43.67883
- ],
- [
- 1.28708,
- 43.70132
- ],
- [
- 1.30882,
- 43.70146
- ],
- [
- 1.30865,
- 43.71277
- ],
- [
- 1.33033,
- 43.71295
- ],
- [
- 1.33002,
- 43.73052
- ],
- [
- 1.33671,
- 43.73058
- ],
- [
- 1.33673,
- 43.73122
- ],
- [
- 1.37343,
- 43.73105
- ],
- [
- 1.37358,
- 43.72458
- ],
- [
- 1.46045,
- 43.72529
- ],
- [
- 1.46078,
- 43.7028
- ],
- [
- 1.48249,
- 43.70295
- ],
- [
- 1.48298,
- 43.66921
- ],
- [
- 1.50468,
- 43.66936
- ],
- [
- 1.50484,
- 43.65812
- ],
- [
- 1.52655,
- 43.65827
- ],
- [
- 1.52669,
- 43.64703
- ],
- [
- 1.54837,
- 43.64716
- ],
- [
- 1.54854,
- 43.63594
- ],
- [
- 1.57022,
- 43.63608
- ],
- [
- 1.57051,
- 43.61358
- ],
- [
- 1.54882,
- 43.61343
- ],
- [
- 1.5491,
- 43.59095
- ],
- [
- 1.57077,
- 43.59107
- ],
- [
- 1.57094,
- 43.57983
- ],
- [
- 1.57937,
- 43.57989
- ],
- [
- 1.57948,
- 43.57377
- ],
- [
- 1.58091,
- 43.57378
- ],
- [
- 1.58109,
- 43.55738
- ],
- [
- 1.57123,
- 43.55731
- ],
- [
- 1.57165,
- 43.52355
- ],
- [
- 1.39848,
- 43.52226
- ],
- [
- 1.39865,
- 43.51101
- ],
- [
- 1.3121,
- 43.51025
- ],
- [
- 1.3119,
- 43.52152
- ],
- [
- 1.29026,
- 43.52131
- ],
- [
- 1.28986,
- 43.54382
- ],
- [
- 1.31152,
- 43.54401
- ],
- [
- 1.31133,
- 43.55526
- ],
- [
- 1.30369,
- 43.55519
- ],
- [
- 1.30361,
- 43.55951
- ],
- [
- 1.29554,
- 43.55943
- ],
- [
- 1.29554,
- 43.55955
- ],
- [
- 1.28956,
- 43.55945
- ],
- [
- 1.28929,
- 43.57754
- ],
- [
- 1.26757,
- 43.57736
- ],
- [
- 1.2674,
- 43.58861
- ],
- [
- 1.25355,
- 43.5885
- ],
- [
- 1.25338,
- 43.59563
- ],
- [
- 1.2518,
- 43.59563
- ],
- [
- 1.2518,
- 43.59494
- ],
- [
- 1.23504,
- 43.59478
- ],
- [
- 1.23504,
- 43.5946
- ],
- [
- 1.22396,
- 43.5946
- ],
- [
- 1.22394,
- 43.59947
- ],
- [
- 1.21397,
- 43.5993
- ],
- [
- 1.21388,
- 43.60464
- ],
- [
- 1.20206,
- 43.60448
- ],
- [
- 1.20195,
- 43.61048
- ],
- [
- 1.19243,
- 43.61037
- ],
- [
- 1.192,
- 43.63288
- ]
- ]
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData",
- "terms_text": "ToulouseMetropole"
- },
- {
- "id": "Toulouse-Orthophotoplan-2011",
- "name": "Toulouse - Orthophotoplan 2011",
- "type": "wms",
- "template": "https://wms.plan.toulouse.fr/geocache/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortho2011&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2011-01-01T00:00:00.000Z",
- "startDate": "2011-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 22
- ],
- "polygon": [
- [
- [
- 1.11351,
- 43.68676
- ],
- [
- 1.13518,
- 43.68708
- ],
- [
- 1.13489,
- 43.69835
- ],
- [
- 1.17829,
- 43.69903
- ],
- [
- 1.17799,
- 43.71028
- ],
- [
- 1.19966,
- 43.71061
- ],
- [
- 1.19934,
- 43.72187
- ],
- [
- 1.24274,
- 43.72253
- ],
- [
- 1.24243,
- 43.73375
- ],
- [
- 1.26415,
- 43.73409
- ],
- [
- 1.26383,
- 43.74536
- ],
- [
- 1.28553,
- 43.74565
- ],
- [
- 1.28525,
- 43.75693
- ],
- [
- 1.30692,
- 43.75723
- ],
- [
- 1.30664,
- 43.76848
- ],
- [
- 1.32834,
- 43.76879
- ],
- [
- 1.32808,
- 43.78003
- ],
- [
- 1.43673,
- 43.78158
- ],
- [
- 1.43731,
- 43.7591
- ],
- [
- 1.45901,
- 43.75937
- ],
- [
- 1.45933,
- 43.74815
- ],
- [
- 1.48103,
- 43.7484
- ],
- [
- 1.48133,
- 43.73718
- ],
- [
- 1.50303,
- 43.73741
- ],
- [
- 1.50359,
- 43.71497
- ],
- [
- 1.52531,
- 43.71518
- ],
- [
- 1.52561,
- 43.70401
- ],
- [
- 1.54727,
- 43.70426
- ],
- [
- 1.54757,
- 43.69304
- ],
- [
- 1.5692,
- 43.69329
- ],
- [
- 1.56957,
- 43.68203
- ],
- [
- 1.5912,
- 43.68227
- ],
- [
- 1.59174,
- 43.6598
- ],
- [
- 1.61342,
- 43.66003
- ],
- [
- 1.61372,
- 43.64883
- ],
- [
- 1.63538,
- 43.64908
- ],
- [
- 1.63841,
- 43.51407
- ],
- [
- 1.29216,
- 43.50947
- ],
- [
- 1.29186,
- 43.5207
- ],
- [
- 1.27021,
- 43.5204
- ],
- [
- 1.26988,
- 43.53164
- ],
- [
- 1.24823,
- 43.53133
- ],
- [
- 1.2476,
- 43.55378
- ],
- [
- 1.22596,
- 43.55349
- ],
- [
- 1.22568,
- 43.56472
- ],
- [
- 1.20398,
- 43.56442
- ],
- [
- 1.20331,
- 43.5869
- ],
- [
- 1.18162,
- 43.58656
- ],
- [
- 1.18102,
- 43.60904
- ],
- [
- 1.15928,
- 43.60869
- ],
- [
- 1.15896,
- 43.61995
- ],
- [
- 1.13726,
- 43.61962
- ],
- [
- 1.13659,
- 43.64209
- ],
- [
- 1.11491,
- 43.64176
- ],
- [
- 1.11351,
- 43.68676
- ]
- ]
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData",
- "terms_text": "ToulouseMetropole"
- },
- {
- "id": "Toulouse-Orthophotoplan-2013",
- "name": "Toulouse - Orthophotoplan 2013",
- "type": "wms",
- "template": "https://wms.plan.toulouse.fr/geocache/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortho2013&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2013-01-01T00:00:00.000Z",
- "startDate": "2013-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 22
- ],
- "polygon": [
- [
- [
- 1.11351,
- 43.68676
- ],
- [
- 1.13518,
- 43.68708
- ],
- [
- 1.13489,
- 43.69835
- ],
- [
- 1.17829,
- 43.69903
- ],
- [
- 1.17799,
- 43.71028
- ],
- [
- 1.19966,
- 43.71061
- ],
- [
- 1.19934,
- 43.72187
- ],
- [
- 1.24274,
- 43.72253
- ],
- [
- 1.24243,
- 43.73375
- ],
- [
- 1.26415,
- 43.73409
- ],
- [
- 1.26383,
- 43.74536
- ],
- [
- 1.28553,
- 43.74565
- ],
- [
- 1.28525,
- 43.75693
- ],
- [
- 1.30692,
- 43.75723
- ],
- [
- 1.30664,
- 43.76848
- ],
- [
- 1.32834,
- 43.76879
- ],
- [
- 1.32808,
- 43.78003
- ],
- [
- 1.43673,
- 43.78158
- ],
- [
- 1.43731,
- 43.7591
- ],
- [
- 1.45901,
- 43.75937
- ],
- [
- 1.45933,
- 43.74815
- ],
- [
- 1.48103,
- 43.7484
- ],
- [
- 1.48133,
- 43.73718
- ],
- [
- 1.50303,
- 43.73741
- ],
- [
- 1.50359,
- 43.71497
- ],
- [
- 1.52531,
- 43.71518
- ],
- [
- 1.52561,
- 43.70401
- ],
- [
- 1.54727,
- 43.70426
- ],
- [
- 1.54757,
- 43.69304
- ],
- [
- 1.5692,
- 43.69329
- ],
- [
- 1.56957,
- 43.68203
- ],
- [
- 1.5912,
- 43.68227
- ],
- [
- 1.59174,
- 43.6598
- ],
- [
- 1.61342,
- 43.66003
- ],
- [
- 1.61372,
- 43.64883
- ],
- [
- 1.63538,
- 43.64908
- ],
- [
- 1.63841,
- 43.51407
- ],
- [
- 1.29216,
- 43.50947
- ],
- [
- 1.29186,
- 43.5207
- ],
- [
- 1.27021,
- 43.5204
- ],
- [
- 1.26988,
- 43.53164
- ],
- [
- 1.24823,
- 43.53133
- ],
- [
- 1.2476,
- 43.55378
- ],
- [
- 1.22596,
- 43.55349
- ],
- [
- 1.22568,
- 43.56472
- ],
- [
- 1.20398,
- 43.56442
- ],
- [
- 1.20331,
- 43.5869
- ],
- [
- 1.18162,
- 43.58656
- ],
- [
- 1.18102,
- 43.60904
- ],
- [
- 1.15928,
- 43.60869
- ],
- [
- 1.15896,
- 43.61995
- ],
- [
- 1.13726,
- 43.61962
- ],
- [
- 1.13659,
- 43.64209
- ],
- [
- 1.11491,
- 43.64176
- ],
- [
- 1.11351,
- 43.68676
- ]
- ]
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData",
- "terms_text": "ToulouseMetropole"
- },
- {
- "id": "Toulouse-Orthophotoplan-2015",
- "name": "Toulouse - Orthophotoplan 2015",
- "type": "wms",
- "template": "https://wms.plan.toulouse.fr/geocache/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortho2015&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2015-01-01T00:00:00.000Z",
- "startDate": "2015-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 22
- ],
- "polygon": [
- [
- [
- 1.11351,
- 43.68676
- ],
- [
- 1.13518,
- 43.68708
- ],
- [
- 1.13489,
- 43.69835
- ],
- [
- 1.17829,
- 43.69903
- ],
- [
- 1.17799,
- 43.71028
- ],
- [
- 1.19966,
- 43.71061
- ],
- [
- 1.19934,
- 43.72187
- ],
- [
- 1.24274,
- 43.72253
- ],
- [
- 1.24243,
- 43.73375
- ],
- [
- 1.26415,
- 43.73409
- ],
- [
- 1.26383,
- 43.74536
- ],
- [
- 1.28553,
- 43.74565
- ],
- [
- 1.28525,
- 43.75693
- ],
- [
- 1.30692,
- 43.75723
- ],
- [
- 1.30664,
- 43.76848
- ],
- [
- 1.32834,
- 43.76879
- ],
- [
- 1.32808,
- 43.78003
- ],
- [
- 1.43673,
- 43.78158
- ],
- [
- 1.43731,
- 43.7591
- ],
- [
- 1.45901,
- 43.75937
- ],
- [
- 1.45933,
- 43.74815
- ],
- [
- 1.48103,
- 43.7484
- ],
- [
- 1.48133,
- 43.73718
- ],
- [
- 1.50303,
- 43.73741
- ],
- [
- 1.50359,
- 43.71497
- ],
- [
- 1.52531,
- 43.71518
- ],
- [
- 1.52561,
- 43.70401
- ],
- [
- 1.54727,
- 43.70426
- ],
- [
- 1.54757,
- 43.69304
- ],
- [
- 1.5692,
- 43.69329
- ],
- [
- 1.56957,
- 43.68203
- ],
- [
- 1.5912,
- 43.68227
- ],
- [
- 1.59174,
- 43.6598
- ],
- [
- 1.61342,
- 43.66003
- ],
- [
- 1.61372,
- 43.64883
- ],
- [
- 1.63538,
- 43.64908
- ],
- [
- 1.63841,
- 43.51407
- ],
- [
- 1.29216,
- 43.50947
- ],
- [
- 1.29186,
- 43.5207
- ],
- [
- 1.27021,
- 43.5204
- ],
- [
- 1.26988,
- 43.53164
- ],
- [
- 1.24823,
- 43.53133
- ],
- [
- 1.2476,
- 43.55378
- ],
- [
- 1.22596,
- 43.55349
- ],
- [
- 1.22568,
- 43.56472
- ],
- [
- 1.20398,
- 43.56442
- ],
- [
- 1.20331,
- 43.5869
- ],
- [
- 1.18162,
- 43.58656
- ],
- [
- 1.18102,
- 43.60904
- ],
- [
- 1.15928,
- 43.60869
- ],
- [
- 1.15896,
- 43.61995
- ],
- [
- 1.13726,
- 43.61962
- ],
- [
- 1.13659,
- 43.64209
- ],
- [
- 1.11491,
- 43.64176
- ],
- [
- 1.11351,
- 43.68676
- ]
- ]
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData",
- "terms_text": "ToulouseMetropole"
- },
- {
- "id": "Tours-Orthophoto-2008_2010",
- "name": "Tours - Orthophotos 2008-2010",
- "type": "tms",
- "template": "http://wms.openstreetmap.fr/tms/1.0.0/tours/{zoom}/{x}/{y}",
- "endDate": "2011-01-01T00:00:00.000Z",
- "startDate": "2008-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- 0.54575,
- 47.46526
- ],
- [
- 0.54585,
- 47.46082
- ],
- [
- 0.53922,
- 47.4607
- ],
- [
- 0.53935,
- 47.45624
- ],
- [
- 0.5328,
- 47.4561
- ],
- [
- 0.5329,
- 47.45157
- ],
- [
- 0.52619,
- 47.4514
- ],
- [
- 0.52659,
- 47.44249
- ],
- [
- 0.50009,
- 47.44207
- ],
- [
- 0.50024,
- 47.43758
- ],
- [
- 0.4936,
- 47.43743
- ],
- [
- 0.4937,
- 47.43293
- ],
- [
- 0.46061,
- 47.43246
- ],
- [
- 0.46072,
- 47.42798
- ],
- [
- 0.4541,
- 47.42781
- ],
- [
- 0.45493,
- 47.40539
- ],
- [
- 0.46154,
- 47.40545
- ],
- [
- 0.46191,
- 47.39649
- ],
- [
- 0.46843,
- 47.3966
- ],
- [
- 0.46913,
- 47.37864
- ],
- [
- 0.47571,
- 47.37876
- ],
- [
- 0.47621,
- 47.3652
- ],
- [
- 0.48283,
- 47.36535
- ],
- [
- 0.48296,
- 47.36083
- ],
- [
- 0.47635,
- 47.36074
- ],
- [
- 0.47665,
- 47.35173
- ],
- [
- 0.47005,
- 47.35162
- ],
- [
- 0.4702,
- 47.34713
- ],
- [
- 0.46375,
- 47.34701
- ],
- [
- 0.45714,
- 47.34241
- ],
- [
- 0.45729,
- 47.33791
- ],
- [
- 0.45067,
- 47.33781
- ],
- [
- 0.45084,
- 47.33331
- ],
- [
- 0.44422,
- 47.3332
- ],
- [
- 0.44438,
- 47.32871
- ],
- [
- 0.43114,
- 47.3285
- ],
- [
- 0.43163,
- 47.315
- ],
- [
- 0.43824,
- 47.31511
- ],
- [
- 0.43838,
- 47.31062
- ],
- [
- 0.47145,
- 47.31114
- ],
- [
- 0.47131,
- 47.31566
- ],
- [
- 0.47789,
- 47.31575
- ],
- [
- 0.47807,
- 47.31128
- ],
- [
- 0.48468,
- 47.31136
- ],
- [
- 0.48486,
- 47.30687
- ],
- [
- 0.49144,
- 47.30698
- ],
- [
- 0.49174,
- 47.29797
- ],
- [
- 0.48516,
- 47.29787
- ],
- [
- 0.48543,
- 47.28887
- ],
- [
- 0.47885,
- 47.28877
- ],
- [
- 0.47916,
- 47.27978
- ],
- [
- 0.48578,
- 47.2799
- ],
- [
- 0.48591,
- 47.27539
- ],
- [
- 0.49254,
- 47.2755
- ],
- [
- 0.49267,
- 47.27101
- ],
- [
- 0.4993,
- 47.27111
- ],
- [
- 0.49943,
- 47.26661
- ],
- [
- 0.51927,
- 47.26692
- ],
- [
- 0.51942,
- 47.26242
- ],
- [
- 0.52602,
- 47.26252
- ],
- [
- 0.52587,
- 47.26702
- ],
- [
- 0.5457,
- 47.26734
- ],
- [
- 0.54555,
- 47.27183
- ],
- [
- 0.55877,
- 47.27204
- ],
- [
- 0.55863,
- 47.27652
- ],
- [
- 0.56523,
- 47.27663
- ],
- [
- 0.56508,
- 47.28112
- ],
- [
- 0.57168,
- 47.28123
- ],
- [
- 0.57152,
- 47.28572
- ],
- [
- 0.57814,
- 47.28583
- ],
- [
- 0.57799,
- 47.29033
- ],
- [
- 0.5846,
- 47.29043
- ],
- [
- 0.58431,
- 47.29942
- ],
- [
- 0.5975,
- 47.29961
- ],
- [
- 0.59766,
- 47.29514
- ],
- [
- 0.65716,
- 47.296
- ],
- [
- 0.6573,
- 47.29151
- ],
- [
- 0.6705,
- 47.29172
- ],
- [
- 0.67035,
- 47.29621
- ],
- [
- 0.68362,
- 47.29637
- ],
- [
- 0.68343,
- 47.30089
- ],
- [
- 0.69006,
- 47.30096
- ],
- [
- 0.68992,
- 47.30547
- ],
- [
- 0.7362,
- 47.30612
- ],
- [
- 0.73608,
- 47.31061
- ],
- [
- 0.7559,
- 47.31089
- ],
- [
- 0.75577,
- 47.31539
- ],
- [
- 0.76238,
- 47.31547
- ],
- [
- 0.76223,
- 47.31999
- ],
- [
- 0.77549,
- 47.32015
- ],
- [
- 0.77497,
- 47.33882
- ],
- [
- 0.77458,
- 47.35163
- ],
- [
- 0.76804,
- 47.35159
- ],
- [
- 0.76759,
- 47.36053
- ],
- [
- 0.77424,
- 47.36062
- ],
- [
- 0.77335,
- 47.39213
- ],
- [
- 0.76674,
- 47.39202
- ],
- [
- 0.76644,
- 47.40108
- ],
- [
- 0.77306,
- 47.40111
- ],
- [
- 0.77289,
- 47.41013
- ],
- [
- 0.76618,
- 47.41002
- ],
- [
- 0.76603,
- 47.4145
- ],
- [
- 0.75276,
- 47.4143
- ],
- [
- 0.75298,
- 47.40981
- ],
- [
- 0.74624,
- 47.4097
- ],
- [
- 0.74594,
- 47.42322
- ],
- [
- 0.73923,
- 47.42315
- ],
- [
- 0.73887,
- 47.43661
- ],
- [
- 0.73233,
- 47.43652
- ],
- [
- 0.73219,
- 47.44106
- ],
- [
- 0.7255,
- 47.44098
- ],
- [
- 0.72542,
- 47.44535
- ],
- [
- 0.73188,
- 47.44548
- ],
- [
- 0.73185,
- 47.45011
- ],
- [
- 0.73845,
- 47.45023
- ],
- [
- 0.73831,
- 47.45463
- ],
- [
- 0.74494,
- 47.45474
- ],
- [
- 0.74432,
- 47.4772
- ],
- [
- 0.73107,
- 47.47697
- ],
- [
- 0.7309,
- 47.48154
- ],
- [
- 0.71762,
- 47.48126
- ],
- [
- 0.71779,
- 47.47684
- ],
- [
- 0.69777,
- 47.4765
- ],
- [
- 0.69805,
- 47.47198
- ],
- [
- 0.69145,
- 47.47189
- ],
- [
- 0.69173,
- 47.46302
- ],
- [
- 0.6851,
- 47.46293
- ],
- [
- 0.68494,
- 47.46735
- ],
- [
- 0.67826,
- 47.46733
- ],
- [
- 0.67798,
- 47.47622
- ],
- [
- 0.67141,
- 47.47616
- ],
- [
- 0.67104,
- 47.4882
- ],
- [
- 0.65773,
- 47.48797
- ],
- [
- 0.65782,
- 47.48504
- ],
- [
- 0.65119,
- 47.48483
- ],
- [
- 0.65147,
- 47.47586
- ],
- [
- 0.64482,
- 47.47572
- ],
- [
- 0.64493,
- 47.47126
- ],
- [
- 0.6118,
- 47.47075
- ],
- [
- 0.61188,
- 47.46631
- ],
- [
- 0.60528,
- 47.46612
- ],
- [
- 0.60542,
- 47.46166
- ],
- [
- 0.59888,
- 47.46155
- ],
- [
- 0.59902,
- 47.45709
- ],
- [
- 0.57249,
- 47.45669
- ],
- [
- 0.57218,
- 47.46565
- ],
- [
- 0.54575,
- 47.46526
- ]
- ]
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/Tours/Orthophoto",
- "terms_text": "Orthophoto Tour(s) Plus 2008"
- },
- {
- "id": "Tours-Orthophoto-2013",
- "name": "Tours - Orthophotos 2013",
- "type": "tms",
- "template": "http://wms.openstreetmap.fr/tms/1.0.0/tours_2013/{zoom}/{x}/{y}",
- "endDate": "2013-01-01T00:00:00.000Z",
- "startDate": "2013-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 22
- ],
- "polygon": [
- [
- [
- 0.77512,
- 47.32983
- ],
- [
- 0.77427,
- 47.35617
- ],
- [
- 0.77053,
- 47.35611
- ],
- [
- 0.77024,
- 47.36512
- ],
- [
- 0.77398,
- 47.36517
- ],
- [
- 0.7728,
- 47.40148
- ],
- [
- 0.7904,
- 47.40147
- ],
- [
- 0.78988,
- 47.4103
- ],
- [
- 0.79117,
- 47.41047
- ],
- [
- 0.79108,
- 47.41942
- ],
- [
- 0.79392,
- 47.41942
- ],
- [
- 0.79319,
- 47.43733
- ],
- [
- 0.79834,
- 47.43742
- ],
- [
- 0.79808,
- 47.45544
- ],
- [
- 0.80044,
- 47.45541
- ],
- [
- 0.80138,
- 47.46426
- ],
- [
- 0.80074,
- 47.46899
- ],
- [
- 0.79396,
- 47.47331
- ],
- [
- 0.78405,
- 47.47323
- ],
- [
- 0.78387,
- 47.47871
- ],
- [
- 0.77606,
- 47.47859
- ],
- [
- 0.77585,
- 47.48204
- ],
- [
- 0.77066,
- 47.48219
- ],
- [
- 0.77044,
- 47.4859
- ],
- [
- 0.76096,
- 47.49092
- ],
- [
- 0.75718,
- 47.49092
- ],
- [
- 0.73753,
- 47.50336
- ],
- [
- 0.7259,
- 47.50588
- ],
- [
- 0.71113,
- 47.50576
- ],
- [
- 0.70418,
- 47.50408
- ],
- [
- 0.69109,
- 47.50038
- ],
- [
- 0.69045,
- 47.49718
- ],
- [
- 0.67757,
- 47.49683
- ],
- [
- 0.67757,
- 47.49353
- ],
- [
- 0.66427,
- 47.49301
- ],
- [
- 0.6635,
- 47.48953
- ],
- [
- 0.65088,
- 47.48958
- ],
- [
- 0.65133,
- 47.48032
- ],
- [
- 0.64734,
- 47.4803
- ],
- [
- 0.64747,
- 47.47852
- ],
- [
- 0.64474,
- 47.47846
- ],
- [
- 0.64479,
- 47.47575
- ],
- [
- 0.64238,
- 47.47578
- ],
- [
- 0.64225,
- 47.47302
- ],
- [
- 0.63835,
- 47.47294
- ],
- [
- 0.63792,
- 47.47131
- ],
- [
- 0.60513,
- 47.47079
- ],
- [
- 0.60513,
- 47.46632
- ],
- [
- 0.59852,
- 47.46603
- ],
- [
- 0.59878,
- 47.46156
- ],
- [
- 0.592,
- 47.46156
- ],
- [
- 0.59226,
- 47.45976
- ],
- [
- 0.58084,
- 47.45971
- ],
- [
- 0.58007,
- 47.46145
- ],
- [
- 0.57234,
- 47.46139
- ],
- [
- 0.57222,
- 47.46512
- ],
- [
- 0.55874,
- 47.46489
- ],
- [
- 0.5466,
- 47.46052
- ],
- [
- 0.53269,
- 47.45355
- ],
- [
- 0.52677,
- 47.45315
- ],
- [
- 0.52677,
- 47.45152
- ],
- [
- 0.52231,
- 47.45123
- ],
- [
- 0.52256,
- 47.44804
- ],
- [
- 0.51977,
- 47.44776
- ],
- [
- 0.52007,
- 47.44247
- ],
- [
- 0.4975,
- 47.4416
- ],
- [
- 0.49716,
- 47.44049
- ],
- [
- 0.49355,
- 47.44015
- ],
- [
- 0.49355,
- 47.43573
- ],
- [
- 0.47943,
- 47.43575
- ],
- [
- 0.46171,
- 47.42819
- ],
- [
- 0.45643,
- 47.42088
- ],
- [
- 0.45489,
- 47.41229
- ],
- [
- 0.45506,
- 47.40218
- ],
- [
- 0.46149,
- 47.40193
- ],
- [
- 0.46167,
- 47.39641
- ],
- [
- 0.46879,
- 47.39602
- ],
- [
- 0.47016,
- 47.35173
- ],
- [
- 0.45677,
- 47.3515
- ],
- [
- 0.45729,
- 47.34254
- ],
- [
- 0.43085,
- 47.34196
- ],
- [
- 0.43196,
- 47.30602
- ],
- [
- 0.47154,
- 47.3067
- ],
- [
- 0.47257,
- 47.28004
- ],
- [
- 0.48527,
- 47.28004
- ],
- [
- 0.48578,
- 47.27084
- ],
- [
- 0.49935,
- 47.27107
- ],
- [
- 0.49917,
- 47.26245
- ],
- [
- 0.55273,
- 47.26304
- ],
- [
- 0.55222,
- 47.27201
- ],
- [
- 0.56561,
- 47.27224
- ],
- [
- 0.56526,
- 47.28156
- ],
- [
- 0.59118,
- 47.28156
- ],
- [
- 0.59067,
- 47.29099
- ],
- [
- 0.66912,
- 47.29169
- ],
- [
- 0.6832,
- 47.29564
- ],
- [
- 0.6832,
- 47.30077
- ],
- [
- 0.69658,
- 47.30123
- ],
- [
- 0.69641,
- 47.3024
- ],
- [
- 0.71006,
- 47.30245
- ],
- [
- 0.72293,
- 47.30589
- ],
- [
- 0.72285,
- 47.31043
- ],
- [
- 0.74165,
- 47.31084
- ],
- [
- 0.75426,
- 47.31392
- ],
- [
- 0.7625,
- 47.31815
- ],
- [
- 0.76207,
- 47.32013
- ],
- [
- 0.76619,
- 47.32009
- ],
- [
- 0.76956,
- 47.32207
- ],
- [
- 0.77233,
- 47.32508
- ],
- [
- 0.77336,
- 47.3267
- ],
- [
- 0.77512,
- 47.32983
- ]
- ]
- ],
- "terms_url": "https://wiki.openstreetmap.org/wiki/Tours/Orthophoto",
- "terms_text": "Orthophoto Tour(s)plus 2013"
- },
- {
- "id": "trafikverket-baninfo",
- "name": "Trafikverket Railway Network",
- "type": "wms",
- "template": "http://geo-baninfo.trafikverket.se/mapservice/wms.axd/BanInfo?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Spar_Huvud_och_sidospar&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "scaleExtent": [
- 7,
- 20
- ],
- "polygon": [
- [
- [
- 12.80182,
- 55.19612
- ],
- [
- 14.22729,
- 55.27286
- ],
- [
- 18.44604,
- 56.69244
- ],
- [
- 19.74242,
- 57.98481
- ],
- [
- 20.0061,
- 59.5371
- ],
- [
- 19.08394,
- 60.19308
- ],
- [
- 20.49499,
- 63.2497
- ],
- [
- 24.25231,
- 65.57437
- ],
- [
- 23.81835,
- 67.92514
- ],
- [
- 23.23607,
- 68.34655
- ],
- [
- 20.43456,
- 69.17038
- ],
- [
- 18.08349,
- 68.5644
- ],
- [
- 16.50145,
- 67.88382
- ],
- [
- 14.43602,
- 66.14275
- ],
- [
- 11.82128,
- 63.30775
- ],
- [
- 12.20031,
- 60.31063
- ],
- [
- 10.62377,
- 58.5482
- ],
- [
- 12.64251,
- 56.03062
- ],
- [
- 12.80182,
- 55.19612
- ]
- ]
- ],
- "terms_url": "https://www.trafikverket.se",
- "terms_text": "© Trafikverket, CC0",
- "description": "Swedish railway network, including sidings",
- "icon": "https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png",
- "overlay": true
- },
- {
- "id": "trafikverket-vagnat",
- "name": "Trafikverket Road Network",
- "type": "wms",
- "template": "https://geo-netinfo.trafikverket.se/mapservice/wms.axd/NetInfo?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Vagtrafiknat,Funkvagklass,Farjeled&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "scaleExtent": [
- 13,
- 20
- ],
- "polygon": [
- [
- [
- 12.80182,
- 55.19612
- ],
- [
- 14.22729,
- 55.27286
- ],
- [
- 18.44604,
- 56.69244
- ],
- [
- 19.74242,
- 57.98481
- ],
- [
- 20.0061,
- 59.5371
- ],
- [
- 19.08394,
- 60.19308
- ],
- [
- 20.49499,
- 63.2497
- ],
- [
- 24.25231,
- 65.57437
- ],
- [
- 23.81835,
- 67.92514
- ],
- [
- 23.23607,
- 68.34655
- ],
- [
- 20.43456,
- 69.17038
- ],
- [
- 18.08349,
- 68.5644
- ],
- [
- 16.50145,
- 67.88382
- ],
- [
- 14.43602,
- 66.14275
- ],
- [
- 11.82128,
- 63.30775
- ],
- [
- 12.20031,
- 60.31063
- ],
- [
- 10.62377,
- 58.5482
- ],
- [
- 12.64251,
- 56.03062
- ],
- [
- 12.80182,
- 55.19612
- ]
- ]
- ],
- "terms_url": "https://www.trafikverket.se",
- "terms_text": "© Trafikverket, CC0",
- "description": "Swedish NVDB road network",
- "icon": "https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png",
- "overlay": true
- },
- {
- "id": "trafikverket-vagnat-extra",
- "name": "Trafikverket Road Network extra",
- "type": "wms",
- "template": "https://geo-netinfo.trafikverket.se/mapservice/wms.axd/NetInfo?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=VagnummerText,Vaghinder,Rastplats,Rastficka,Hallplats,Farthinder,BroTunnel,ATK_Matplats&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "scaleExtent": [
- 3,
- 20
- ],
- "polygon": [
- [
- [
- 12.80182,
- 55.19612
- ],
- [
- 14.22729,
- 55.27286
- ],
- [
- 18.44604,
- 56.69244
- ],
- [
- 19.74242,
- 57.98481
- ],
- [
- 20.0061,
- 59.5371
- ],
- [
- 19.08394,
- 60.19308
- ],
- [
- 20.49499,
- 63.2497
- ],
- [
- 24.25231,
- 65.57437
- ],
- [
- 23.81835,
- 67.92514
- ],
- [
- 23.23607,
- 68.34655
- ],
- [
- 20.43456,
- 69.17038
- ],
- [
- 18.08349,
- 68.5644
- ],
- [
- 16.50145,
- 67.88382
- ],
- [
- 14.43602,
- 66.14275
- ],
- [
- 11.82128,
- 63.30775
- ],
- [
- 12.20031,
- 60.31063
- ],
- [
- 10.62377,
- 58.5482
- ],
- [
- 12.64251,
- 56.03062
- ],
- [
- 12.80182,
- 55.19612
- ]
- ]
- ],
- "terms_url": "https://www.trafikverket.se",
- "terms_text": "© Trafikverket, CC0",
- "description": "Swedish NVDB extra details: Highway reference, traffic calming, rest area, bus stop, bridge, tunnel, speed camera",
- "icon": "https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png",
- "overlay": true
- },
- {
- "id": "trafikverket-vagnat-navn",
- "name": "Trafikverket Street Names",
- "type": "tms",
- "template": "https://mapproxy.openstreetmap.se/tiles/1.0.0/nvdb_names/EPSG3857/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 15,
- 19
- ],
- "polygon": [
- [
- [
- 12.80182,
- 55.19612
- ],
- [
- 14.22729,
- 55.27286
- ],
- [
- 18.44604,
- 56.69244
- ],
- [
- 19.74242,
- 57.98481
- ],
- [
- 20.0061,
- 59.5371
- ],
- [
- 19.08394,
- 60.19308
- ],
- [
- 20.49499,
- 63.2497
- ],
- [
- 24.25231,
- 65.57437
- ],
- [
- 23.81835,
- 67.92514
- ],
- [
- 23.23607,
- 68.34655
- ],
- [
- 20.43456,
- 69.17038
- ],
- [
- 18.08349,
- 68.5644
- ],
- [
- 16.50145,
- 67.88382
- ],
- [
- 14.43602,
- 66.14275
- ],
- [
- 11.82128,
- 63.30775
- ],
- [
- 12.20031,
- 60.31063
- ],
- [
- 10.62377,
- 58.5482
- ],
- [
- 12.64251,
- 56.03062
- ],
- [
- 12.80182,
- 55.19612
- ]
- ]
- ],
- "terms_url": "https://www.trafikverket.se",
- "terms_text": "© Trafikverket, CC0",
- "description": "Swedish NVDB street names",
- "icon": "https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png",
- "overlay": true
- },
- {
- "id": "US_Forest_Service_roads_overlay",
- "name": "U.S. Forest Roads Overlay",
- "type": "tms",
- "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/glassman/cjf4qjmps0tgv2qpahj977mvz/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1IjoiZ2xhc3NtYW4iLCJhIjoiRjk3dWdwYyJ9.Tg_fMJWxygeKBgVTrZHmGA",
- "scaleExtent": [
- 0,
- 20
- ],
- "polygon": [
- [
- [
- -124.76179,
- 48.41301
- ],
- [
- -124.60595,
- 45.90245
- ],
- [
- -124.99343,
- 40.05576
- ],
- [
- -122.53697,
- 36.85661
- ],
- [
- -119.97759,
- 33.00641
- ],
- [
- -117.67593,
- 32.46302
- ],
- [
- -114.86123,
- 32.47999
- ],
- [
- -111.00893,
- 31.33601
- ],
- [
- -108.19927,
- 31.326
- ],
- [
- -108.18711,
- 31.77551
- ],
- [
- -106.53072,
- 31.78209
- ],
- [
- -106.48421,
- 31.74645
- ],
- [
- -106.42932,
- 31.75206
- ],
- [
- -106.28689,
- 31.56133
- ],
- [
- -106.20525,
- 31.4467
- ],
- [
- -105.02053,
- 30.5361
- ],
- [
- -104.58819,
- 29.69979
- ],
- [
- -103.25189,
- 28.89087
- ],
- [
- -102.71736,
- 29.39206
- ],
- [
- -102.1514,
- 29.74757
- ],
- [
- -101.25529,
- 29.48105
- ],
- [
- -100.00624,
- 28.00822
- ],
- [
- -99.23511,
- 26.4476
- ],
- [
- -98.01091,
- 25.9928
- ],
- [
- -97.43502,
- 25.8266
- ],
- [
- -96.95553,
- 25.98216
- ],
- [
- -96.80617,
- 27.79782
- ],
- [
- -95.55633,
- 28.58761
- ],
- [
- -93.74053,
- 29.47421
- ],
- [
- -90.90285,
- 28.85645
- ],
- [
- -88.01567,
- 28.99443
- ],
- [
- -88.01625,
- 30.00389
- ],
- [
- -86.02775,
- 30.00475
- ],
- [
- -84.01879,
- 28.99618
- ],
- [
- -81.9972,
- 25.98268
- ],
- [
- -81.99666,
- 25.01349
- ],
- [
- -84.01656,
- 25.01258
- ],
- [
- -84.01601,
- 24.00527
- ],
- [
- -80.02,
- 24.0071
- ],
- [
- -79.89011,
- 26.85507
- ],
- [
- -80.02453,
- 32.01613
- ],
- [
- -75.41474,
- 35.05319
- ],
- [
- -74.02112,
- 39.57279
- ],
- [
- -72.00202,
- 40.99125
- ],
- [
- -69.87974,
- 40.99205
- ],
- [
- -69.84893,
- 43.26199
- ],
- [
- -66.94528,
- 44.71049
- ],
- [
- -67.75966,
- 47.099
- ],
- [
- -69.25051,
- 47.51223
- ],
- [
- -70.46149,
- 46.21766
- ],
- [
- -71.41227,
- 45.25488
- ],
- [
- -72.02225,
- 45.00598
- ],
- [
- -75.07988,
- 44.98029
- ],
- [
- -76.90231,
- 43.80246
- ],
- [
- -78.76239,
- 43.62496
- ],
- [
- -79.15798,
- 43.44626
- ],
- [
- -79.00601,
- 42.80053
- ],
- [
- -82.66248,
- 41.68895
- ],
- [
- -82.17616,
- 43.58854
- ],
- [
- -83.2814,
- 46.13885
- ],
- [
- -87.50645,
- 48.01427
- ],
- [
- -88.34922,
- 48.29633
- ],
- [
- -89.43531,
- 47.98378
- ],
- [
- -93.99811,
- 49.00671
- ],
- [
- -95.11054,
- 49.412
- ],
- [
- -96.01312,
- 49.00605
- ],
- [
- -123.32289,
- 49.00429
- ],
- [
- -123.22752,
- 48.18499
- ],
- [
- -124.76179,
- 48.41301
- ]
- ],
- [
- [
- -160.57876,
- 22.50629
- ],
- [
- -160.57822,
- 21.49846
- ],
- [
- -158.74706,
- 21.24398
- ],
- [
- -157.50832,
- 20.9958
- ],
- [
- -155.99619,
- 18.77902
- ],
- [
- -154.62178,
- 18.7587
- ],
- [
- -154.68902,
- 19.88057
- ],
- [
- -156.29276,
- 21.22259
- ],
- [
- -157.50474,
- 21.9985
- ],
- [
- -159.00937,
- 22.50702
- ],
- [
- -160.57876,
- 22.50629
- ]
- ],
- [
- [
- -167.15715,
- 68.72197
- ],
- [
- -164.8554,
- 67.02551
- ],
- [
- -168.0022,
- 66.00175
- ],
- [
- -169.00874,
- 66.00155
- ],
- [
- -169.00754,
- 64.99877
- ],
- [
- -172.51433,
- 63.87673
- ],
- [
- -173.8197,
- 59.74014
- ],
- [
- -162.50181,
- 58.00058
- ],
- [
- -160.0159,
- 58.00124
- ],
- [
- -160.01497,
- 57.00003
- ],
- [
- -160.50548,
- 56.9999
- ],
- [
- -165.80926,
- 54.82485
- ],
- [
- -178.0001,
- 52.24465
- ],
- [
- -177.9993,
- 51.25543
- ],
- [
- -171.46891,
- 51.82153
- ],
- [
- -162.40251,
- 53.95666
- ],
- [
- -159.00757,
- 55.0025
- ],
- [
- -158.01907,
- 55.00278
- ],
- [
- -151.99632,
- 55.99919
- ],
- [
- -151.50034,
- 57.99879
- ],
- [
- -151.50129,
- 58.99198
- ],
- [
- -138.516,
- 58.99532
- ],
- [
- -138.51505,
- 57.99864
- ],
- [
- -133.99482,
- 54.00317
- ],
- [
- -130.00444,
- 54.00434
- ],
- [
- -130.00708,
- 57.00005
- ],
- [
- -131.97588,
- 56.99952
- ],
- [
- -135.12299,
- 59.7566
- ],
- [
- -138.00718,
- 59.9918
- ],
- [
- -139.17159,
- 60.41272
- ],
- [
- -140.9874,
- 61.01186
- ],
- [
- -140.9684,
- 69.95351
- ],
- [
- -156.17689,
- 71.56333
- ],
- [
- -160.41363,
- 70.73977
- ],
- [
- -163.02183,
- 69.97074
- ],
- [
- -164.9717,
- 68.99469
- ],
- [
- -167.15715,
- 68.72197
- ]
- ]
- ],
- "description": "Highway: Green casing = unclassified. Brown casing = track. Surface: gravel = light brown fill, Asphalt = black, paved = gray, ground =white, concrete = blue, grass = green. Seasonal = white bars",
- "icon": "data:image/png;base64,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",
- "overlay": true
- },
- {
- "id": "US_Forest_Service_roads",
- "name": "U.S. Forest Service roads",
- "type": "tms",
- "template": "https://osm.cycle.travel/forest/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 19
- ],
- "polygon": [
- [
- [
- -124.76179,
- 48.41301
- ],
- [
- -124.60595,
- 45.90245
- ],
- [
- -124.99343,
- 40.05576
- ],
- [
- -122.53697,
- 36.85661
- ],
- [
- -119.97759,
- 33.00641
- ],
- [
- -117.67593,
- 32.46302
- ],
- [
- -114.86123,
- 32.47999
- ],
- [
- -111.00893,
- 31.33601
- ],
- [
- -108.19927,
- 31.326
- ],
- [
- -108.18711,
- 31.77551
- ],
- [
- -106.53072,
- 31.78209
- ],
- [
- -106.48421,
- 31.74645
- ],
- [
- -106.42932,
- 31.75206
- ],
- [
- -106.28689,
- 31.56133
- ],
- [
- -106.20525,
- 31.4467
- ],
- [
- -105.02053,
- 30.5361
- ],
- [
- -104.58819,
- 29.69979
- ],
- [
- -103.25189,
- 28.89087
- ],
- [
- -102.71736,
- 29.39206
- ],
- [
- -102.1514,
- 29.74757
- ],
- [
- -101.25529,
- 29.48105
- ],
- [
- -100.00624,
- 28.00822
- ],
- [
- -99.23511,
- 26.4476
- ],
- [
- -98.01091,
- 25.9928
- ],
- [
- -97.43502,
- 25.8266
- ],
- [
- -96.95553,
- 25.98216
- ],
- [
- -96.80617,
- 27.79782
- ],
- [
- -95.55633,
- 28.58761
- ],
- [
- -93.74053,
- 29.47421
- ],
- [
- -90.90285,
- 28.85645
- ],
- [
- -88.01567,
- 28.99443
- ],
- [
- -88.01625,
- 30.00389
- ],
- [
- -86.02775,
- 30.00475
- ],
- [
- -84.01879,
- 28.99618
- ],
- [
- -81.9972,
- 25.98268
- ],
- [
- -81.99666,
- 25.01349
- ],
- [
- -84.01656,
- 25.01258
- ],
- [
- -84.01601,
- 24.00527
- ],
- [
- -80.02,
- 24.0071
- ],
- [
- -79.89011,
- 26.85507
- ],
- [
- -80.02453,
- 32.01613
- ],
- [
- -75.41474,
- 35.05319
- ],
- [
- -74.02112,
- 39.57279
- ],
- [
- -72.00202,
- 40.99125
- ],
- [
- -69.87974,
- 40.99205
- ],
- [
- -69.84893,
- 43.26199
- ],
- [
- -66.94528,
- 44.71049
- ],
- [
- -67.75966,
- 47.099
- ],
- [
- -69.25051,
- 47.51223
- ],
- [
- -70.46149,
- 46.21766
- ],
- [
- -71.41227,
- 45.25488
- ],
- [
- -72.02225,
- 45.00598
- ],
- [
- -75.07988,
- 44.98029
- ],
- [
- -76.90231,
- 43.80246
- ],
- [
- -78.76239,
- 43.62496
- ],
- [
- -79.15798,
- 43.44626
- ],
- [
- -79.00601,
- 42.80053
- ],
- [
- -82.66248,
- 41.68895
- ],
- [
- -82.17616,
- 43.58854
- ],
- [
- -83.2814,
- 46.13885
- ],
- [
- -87.50645,
- 48.01427
- ],
- [
- -88.34922,
- 48.29633
- ],
- [
- -89.43531,
- 47.98378
- ],
- [
- -93.99811,
- 49.00671
- ],
- [
- -95.11054,
- 49.412
- ],
- [
- -96.01312,
- 49.00605
- ],
- [
- -123.32289,
- 49.00429
- ],
- [
- -123.22752,
- 48.18499
- ],
- [
- -124.76179,
- 48.41301
- ]
- ],
- [
- [
- -160.57876,
- 22.50629
- ],
- [
- -160.57822,
- 21.49846
- ],
- [
- -158.74706,
- 21.24398
- ],
- [
- -157.50832,
- 20.9958
- ],
- [
- -155.99619,
- 18.77902
- ],
- [
- -154.62178,
- 18.7587
- ],
- [
- -154.68902,
- 19.88057
- ],
- [
- -156.29276,
- 21.22259
- ],
- [
- -157.50474,
- 21.9985
- ],
- [
- -159.00937,
- 22.50702
- ],
- [
- -160.57876,
- 22.50629
- ]
- ],
- [
- [
- -167.15715,
- 68.72197
- ],
- [
- -164.8554,
- 67.02551
- ],
- [
- -168.0022,
- 66.00175
- ],
- [
- -169.00874,
- 66.00155
- ],
- [
- -169.00754,
- 64.99877
- ],
- [
- -172.51433,
- 63.87673
- ],
- [
- -173.8197,
- 59.74014
- ],
- [
- -162.50181,
- 58.00058
- ],
- [
- -160.0159,
- 58.00124
- ],
- [
- -160.01497,
- 57.00003
- ],
- [
- -160.50548,
- 56.9999
- ],
- [
- -165.80926,
- 54.82485
- ],
- [
- -178.0001,
- 52.24465
- ],
- [
- -177.9993,
- 51.25543
- ],
- [
- -171.46891,
- 51.82153
- ],
- [
- -162.40251,
- 53.95666
- ],
- [
- -159.00757,
- 55.0025
- ],
- [
- -158.01907,
- 55.00278
- ],
- [
- -151.99632,
- 55.99919
- ],
- [
- -151.50034,
- 57.99879
- ],
- [
- -151.50129,
- 58.99198
- ],
- [
- -138.516,
- 58.99532
- ],
- [
- -138.51505,
- 57.99864
- ],
- [
- -133.99482,
- 54.00317
- ],
- [
- -130.00444,
- 54.00434
- ],
- [
- -130.00708,
- 57.00005
- ],
- [
- -131.97588,
- 56.99952
- ],
- [
- -135.12299,
- 59.7566
- ],
- [
- -138.00718,
- 59.9918
- ],
- [
- -139.17159,
- 60.41272
- ],
- [
- -140.9874,
- 61.01186
- ],
- [
- -140.9684,
- 69.95351
- ],
- [
- -156.17689,
- 71.56333
- ],
- [
- -160.41363,
- 70.73977
- ],
- [
- -163.02183,
- 69.97074
- ],
- [
- -164.9717,
- 68.99469
- ],
- [
- -167.15715,
- 68.72197
- ]
- ]
- ]
- },
- {
- "id": "Zuerich-zh_uebersichtsplan-tms",
- "name": "Übersichtsplan Zürich",
- "type": "tms",
- "template": "https://mapproxy.osm.ch/tiles/zh_uebersichtsplan/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
- "scaleExtent": [
- 0,
- 21
- ],
- "polygon": [
- [
- [
- 8.45788,
- 47.44582
- ],
- [
- 8.57392,
- 47.44477
- ],
- [
- 8.57362,
- 47.43124
- ],
- [
- 8.60266,
- 47.43096
- ],
- [
- 8.60231,
- 47.41746
- ],
- [
- 8.6318,
- 47.41716
- ],
- [
- 8.6295,
- 47.33628
- ],
- [
- 8.57162,
- 47.33679
- ],
- [
- 8.57152,
- 47.32292
- ],
- [
- 8.54236,
- 47.3236
- ],
- [
- 8.54212,
- 47.31013
- ],
- [
- 8.48418,
- 47.31062
- ],
- [
- 8.48478,
- 47.33762
- ],
- [
- 8.45582,
- 47.33787
- ],
- [
- 8.45609,
- 47.35135
- ],
- [
- 8.42713,
- 47.35161
- ],
- [
- 8.42864,
- 47.43259
- ],
- [
- 8.45745,
- 47.43231
- ],
- [
- 8.45788,
- 47.44582
- ]
- ]
- ],
- "terms_text": "Stadt Zürich Open Government Data"
- },
- {
- "id": "uniao_dos_palmares",
- "name": "União dos Palmares AL",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Uniao%20dos%20Palmares&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -35.97725,
- -9.20752
- ],
- [
- -35.9772,
- -9.19398
- ],
- [
- -35.97694,
- -9.19053
- ],
- [
- -35.97678,
- -9.18607
- ],
- [
- -35.97702,
- -9.18208
- ],
- [
- -35.97704,
- -9.17968
- ],
- [
- -35.97682,
- -9.17734
- ],
- [
- -35.97664,
- -9.17517
- ],
- [
- -35.97701,
- -9.17518
- ],
- [
- -35.97696,
- -9.1707
- ],
- [
- -35.97674,
- -9.17066
- ],
- [
- -35.97661,
- -9.16645
- ],
- [
- -35.97618,
- -9.16222
- ],
- [
- -35.9761,
- -9.16026
- ],
- [
- -35.97661,
- -9.16026
- ],
- [
- -35.97672,
- -9.14608
- ],
- [
- -35.97654,
- -9.14122
- ],
- [
- -35.97666,
- -9.1332
- ],
- [
- -35.97653,
- -9.12184
- ],
- [
- -35.97648,
- -9.11748
- ],
- [
- -35.98618,
- -9.11755
- ],
- [
- -35.98947,
- -9.11733
- ],
- [
- -36.00561,
- -9.11733
- ],
- [
- -36.01859,
- -9.11736
- ],
- [
- -36.04601,
- -9.11722
- ],
- [
- -36.06734,
- -9.11698
- ],
- [
- -36.06756,
- -9.16134
- ],
- [
- -36.06771,
- -9.16405
- ],
- [
- -36.06745,
- -9.16408
- ],
- [
- -36.06756,
- -9.16657
- ],
- [
- -36.06777,
- -9.16654
- ],
- [
- -36.06798,
- -9.20701
- ],
- [
- -36.0498,
- -9.20711
- ],
- [
- -36.04671,
- -9.20698
- ],
- [
- -36.02941,
- -9.20709
- ],
- [
- -36.01355,
- -9.20718
- ],
- [
- -35.99318,
- -9.20733
- ],
- [
- -35.97725,
- -9.20752
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "UrbISOrtho2016",
- "name": "UrbIS-Ortho 2016",
- "type": "wms",
- "template": "https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2016&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2016-01-01T00:00:00.000Z",
- "startDate": "2016-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 4.37973,
- 50.76382
- ],
- [
- 4.38917,
- 50.76377
- ],
- [
- 4.43028,
- 50.77517
- ],
- [
- 4.435,
- 50.775
- ],
- [
- 4.46427,
- 50.78645
- ],
- [
- 4.4817,
- 50.79134
- ],
- [
- 4.48238,
- 50.79617
- ],
- [
- 4.45921,
- 50.80626
- ],
- [
- 4.45947,
- 50.81661
- ],
- [
- 4.47972,
- 50.82036
- ],
- [
- 4.46959,
- 50.83537
- ],
- [
- 4.46899,
- 50.84573
- ],
- [
- 4.46238,
- 50.85396
- ],
- [
- 4.44968,
- 50.85591
- ],
- [
- 4.44599,
- 50.85992
- ],
- [
- 4.4253,
- 50.86615
- ],
- [
- 4.43183,
- 50.87628
- ],
- [
- 4.44007,
- 50.87845
- ],
- [
- 4.43106,
- 50.89014
- ],
- [
- 4.43595,
- 50.89502
- ],
- [
- 4.4296,
- 50.90103
- ],
- [
- 4.41655,
- 50.90757
- ],
- [
- 4.41543,
- 50.91342
- ],
- [
- 4.39578,
- 50.91407
- ],
- [
- 4.38462,
- 50.91093
- ],
- [
- 4.38119,
- 50.90319
- ],
- [
- 4.3726,
- 50.90032
- ],
- [
- 4.36213,
- 50.9033
- ],
- [
- 4.34857,
- 50.90341
- ],
- [
- 4.34025,
- 50.90411
- ],
- [
- 4.32892,
- 50.90249
- ],
- [
- 4.31647,
- 50.89605
- ],
- [
- 4.30634,
- 50.89274
- ],
- [
- 4.29004,
- 50.88982
- ],
- [
- 4.29149,
- 50.88495
- ],
- [
- 4.29553,
- 50.88262
- ],
- [
- 4.29561,
- 50.88094
- ],
- [
- 4.28274,
- 50.87227
- ],
- [
- 4.27699,
- 50.86713
- ],
- [
- 4.27802,
- 50.85911
- ],
- [
- 4.28042,
- 50.85721
- ],
- [
- 4.28094,
- 50.84215
- ],
- [
- 4.27193,
- 50.84036
- ],
- [
- 4.25467,
- 50.83695
- ],
- [
- 4.25107,
- 50.83288
- ],
- [
- 4.25227,
- 50.82697
- ],
- [
- 4.24343,
- 50.82182
- ],
- [
- 4.24403,
- 50.81548
- ],
- [
- 4.25519,
- 50.8151
- ],
- [
- 4.25802,
- 50.80935
- ],
- [
- 4.27218,
- 50.81011
- ],
- [
- 4.27579,
- 50.80696
- ],
- [
- 4.2854,
- 50.80506
- ],
- [
- 4.28901,
- 50.80691
- ],
- [
- 4.29802,
- 50.80593
- ],
- [
- 4.30282,
- 50.79709
- ],
- [
- 4.31458,
- 50.79454
- ],
- [
- 4.31621,
- 50.78624
- ],
- [
- 4.32952,
- 50.77381
- ],
- [
- 4.34205,
- 50.77164
- ],
- [
- 4.34522,
- 50.77337
- ],
- [
- 4.37853,
- 50.76811
- ],
- [
- 4.37973,
- 50.76382
- ]
- ]
- ],
- "terms_text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAACXBIWXMAAAsSAAALEgHS3X78AAACnUlEQVQoz11SXUiTYRh93ndz06YMNWcpRmWRSpgO+0EUDYwQ6sZ+oAyti8y6yCyKxOimILqQsLKbukmHSpFFLYlMqSkUmi3/pjZ/Zmv+Tec2bU237z1dfFHSc/HcPOc5HM45DAAREREgGOM217BpzDjs7PEHfNGa2PT47KxN+RFqrYDgjBMRE0JijBMRAKOlzmgxhChDN0cla1ThM0uTE65vsRFxRRkXk3TpMiMBkEQQQFPvw0LDnoYvVStBNwAhBIApj+X6m5OlT/dbnX0AJCHxkbl+zhTWub6XA4ZDqcd3JJTl1to7HV7G2E3TxOU2zaWcKm1YZKO5RlaliNknBma6Bqe7V6SVc5mVrmVFxSvLu1G3bSlwy2jVaXE6IzE0JLzV+jxJlxYTvp5X5j3Qx2ePzPcn6VJVysiUaHXX+d2zy8HqlrE8/bq3xXoiStalr1Fpxl1DRMQ547s27NWGRikVKtmuju9e34pEYcrhWV/f7E8iUinDQrjaH/AREQfAmSJGEzc6P0Qkvbd5ymt7DqfEmEr0Tre/4PFXInK4R7z+hXjtRiIi2aKPtpbi+qxue6vHj5ou+8KvAIBPP7yG3mkAd9sry18ULPrdAAgQAIJS4EZLacXrwqVlDwBJiKAkJCEB+Gz/UNyQ1TxY/8dWIiYgFFx5JPXM7JLjWe8jIgKBM3DGXT5no7lmy9rteVsLiIjJGXPGBcQ2XdqBlKJWa1PHeLOCcRAEhKH7zuKy+4T+QohCDQhGjLBqJBGsNl0teZI3OGMG0GiuKarPNI0aZTEyhq0qHxhjXv/C7bYyASkjIddoqctPOnY07ezf5hHRvwcikg+TXtv9jmsOjy0n8eCpnVeIESMiecnE/6kC0D/Vea+90h/wARAQqwG/AaEjsUbwLtXdAAAAAElFTkSuQmCC"
- },
- {
- "id": "UrbISOrtho2017",
- "name": "UrbIS-Ortho 2017",
- "type": "wms",
- "template": "https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2017&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2017-01-01T00:00:00.000Z",
- "startDate": "2017-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 4.37973,
- 50.76382
- ],
- [
- 4.38917,
- 50.76377
- ],
- [
- 4.43028,
- 50.77517
- ],
- [
- 4.435,
- 50.775
- ],
- [
- 4.46427,
- 50.78645
- ],
- [
- 4.4817,
- 50.79134
- ],
- [
- 4.48238,
- 50.79617
- ],
- [
- 4.45921,
- 50.80626
- ],
- [
- 4.45947,
- 50.81661
- ],
- [
- 4.47972,
- 50.82036
- ],
- [
- 4.46959,
- 50.83537
- ],
- [
- 4.46899,
- 50.84573
- ],
- [
- 4.46238,
- 50.85396
- ],
- [
- 4.44968,
- 50.85591
- ],
- [
- 4.44599,
- 50.85992
- ],
- [
- 4.4253,
- 50.86615
- ],
- [
- 4.43183,
- 50.87628
- ],
- [
- 4.44007,
- 50.87845
- ],
- [
- 4.43106,
- 50.89014
- ],
- [
- 4.43595,
- 50.89502
- ],
- [
- 4.4296,
- 50.90103
- ],
- [
- 4.41655,
- 50.90757
- ],
- [
- 4.41543,
- 50.91342
- ],
- [
- 4.39578,
- 50.91407
- ],
- [
- 4.38462,
- 50.91093
- ],
- [
- 4.38119,
- 50.90319
- ],
- [
- 4.3726,
- 50.90032
- ],
- [
- 4.36213,
- 50.9033
- ],
- [
- 4.34857,
- 50.90341
- ],
- [
- 4.34025,
- 50.90411
- ],
- [
- 4.32892,
- 50.90249
- ],
- [
- 4.31647,
- 50.89605
- ],
- [
- 4.30634,
- 50.89274
- ],
- [
- 4.29004,
- 50.88982
- ],
- [
- 4.29149,
- 50.88495
- ],
- [
- 4.29553,
- 50.88262
- ],
- [
- 4.29561,
- 50.88094
- ],
- [
- 4.28274,
- 50.87227
- ],
- [
- 4.27699,
- 50.86713
- ],
- [
- 4.27802,
- 50.85911
- ],
- [
- 4.28042,
- 50.85721
- ],
- [
- 4.28094,
- 50.84215
- ],
- [
- 4.27193,
- 50.84036
- ],
- [
- 4.25467,
- 50.83695
- ],
- [
- 4.25107,
- 50.83288
- ],
- [
- 4.25227,
- 50.82697
- ],
- [
- 4.24343,
- 50.82182
- ],
- [
- 4.24403,
- 50.81548
- ],
- [
- 4.25519,
- 50.8151
- ],
- [
- 4.25802,
- 50.80935
- ],
- [
- 4.27218,
- 50.81011
- ],
- [
- 4.27579,
- 50.80696
- ],
- [
- 4.2854,
- 50.80506
- ],
- [
- 4.28901,
- 50.80691
- ],
- [
- 4.29802,
- 50.80593
- ],
- [
- 4.30282,
- 50.79709
- ],
- [
- 4.31458,
- 50.79454
- ],
- [
- 4.31621,
- 50.78624
- ],
- [
- 4.32952,
- 50.77381
- ],
- [
- 4.34205,
- 50.77164
- ],
- [
- 4.34522,
- 50.77337
- ],
- [
- 4.37853,
- 50.76811
- ],
- [
- 4.37973,
- 50.76382
- ]
- ]
- ],
- "terms_text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB",
- "best": true,
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAACXBIWXMAAAsSAAALEgHS3X78AAACnUlEQVQoz11SXUiTYRh93ndz06YMNWcpRmWRSpgO+0EUDYwQ6sZ+oAyti8y6yCyKxOimILqQsLKbukmHSpFFLYlMqSkUmi3/pjZ/Zmv+Tec2bU237z1dfFHSc/HcPOc5HM45DAAREREgGOM217BpzDjs7PEHfNGa2PT47KxN+RFqrYDgjBMRE0JijBMRAKOlzmgxhChDN0cla1ThM0uTE65vsRFxRRkXk3TpMiMBkEQQQFPvw0LDnoYvVStBNwAhBIApj+X6m5OlT/dbnX0AJCHxkbl+zhTWub6XA4ZDqcd3JJTl1to7HV7G2E3TxOU2zaWcKm1YZKO5RlaliNknBma6Bqe7V6SVc5mVrmVFxSvLu1G3bSlwy2jVaXE6IzE0JLzV+jxJlxYTvp5X5j3Qx2ePzPcn6VJVysiUaHXX+d2zy8HqlrE8/bq3xXoiStalr1Fpxl1DRMQ547s27NWGRikVKtmuju9e34pEYcrhWV/f7E8iUinDQrjaH/AREQfAmSJGEzc6P0Qkvbd5ymt7DqfEmEr0Tre/4PFXInK4R7z+hXjtRiIi2aKPtpbi+qxue6vHj5ou+8KvAIBPP7yG3mkAd9sry18ULPrdAAgQAIJS4EZLacXrwqVlDwBJiKAkJCEB+Gz/UNyQ1TxY/8dWIiYgFFx5JPXM7JLjWe8jIgKBM3DGXT5no7lmy9rteVsLiIjJGXPGBcQ2XdqBlKJWa1PHeLOCcRAEhKH7zuKy+4T+QohCDQhGjLBqJBGsNl0teZI3OGMG0GiuKarPNI0aZTEyhq0qHxhjXv/C7bYyASkjIddoqctPOnY07ezf5hHRvwcikg+TXtv9jmsOjy0n8eCpnVeIESMiecnE/6kC0D/Vea+90h/wARAQqwG/AaEjsUbwLtXdAAAAAElFTkSuQmCC"
- },
- {
- "id": "UrbisAdmFR",
- "name": "UrbisAdm FR",
- "type": "wms",
- "template": "https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=urbisFR&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- 4.37973,
- 50.76382
- ],
- [
- 4.38917,
- 50.76377
- ],
- [
- 4.43028,
- 50.77517
- ],
- [
- 4.435,
- 50.775
- ],
- [
- 4.46427,
- 50.78645
- ],
- [
- 4.4817,
- 50.79134
- ],
- [
- 4.48238,
- 50.79617
- ],
- [
- 4.45921,
- 50.80626
- ],
- [
- 4.45947,
- 50.81661
- ],
- [
- 4.47972,
- 50.82036
- ],
- [
- 4.46959,
- 50.83537
- ],
- [
- 4.46899,
- 50.84573
- ],
- [
- 4.46238,
- 50.85396
- ],
- [
- 4.44968,
- 50.85591
- ],
- [
- 4.44599,
- 50.85992
- ],
- [
- 4.4253,
- 50.86615
- ],
- [
- 4.43183,
- 50.87628
- ],
- [
- 4.44007,
- 50.87845
- ],
- [
- 4.43106,
- 50.89014
- ],
- [
- 4.43595,
- 50.89502
- ],
- [
- 4.4296,
- 50.90103
- ],
- [
- 4.41655,
- 50.90757
- ],
- [
- 4.41543,
- 50.91342
- ],
- [
- 4.39578,
- 50.91407
- ],
- [
- 4.38462,
- 50.91093
- ],
- [
- 4.38119,
- 50.90319
- ],
- [
- 4.3726,
- 50.90032
- ],
- [
- 4.36213,
- 50.9033
- ],
- [
- 4.34857,
- 50.90341
- ],
- [
- 4.34025,
- 50.90411
- ],
- [
- 4.32892,
- 50.90249
- ],
- [
- 4.31647,
- 50.89605
- ],
- [
- 4.30634,
- 50.89274
- ],
- [
- 4.29004,
- 50.88982
- ],
- [
- 4.29149,
- 50.88495
- ],
- [
- 4.29553,
- 50.88262
- ],
- [
- 4.29561,
- 50.88094
- ],
- [
- 4.28274,
- 50.87227
- ],
- [
- 4.27699,
- 50.86713
- ],
- [
- 4.27802,
- 50.85911
- ],
- [
- 4.28042,
- 50.85721
- ],
- [
- 4.28094,
- 50.84215
- ],
- [
- 4.27193,
- 50.84036
- ],
- [
- 4.25467,
- 50.83695
- ],
- [
- 4.25107,
- 50.83288
- ],
- [
- 4.25227,
- 50.82697
- ],
- [
- 4.24343,
- 50.82182
- ],
- [
- 4.24403,
- 50.81548
- ],
- [
- 4.25519,
- 50.8151
- ],
- [
- 4.25802,
- 50.80935
- ],
- [
- 4.27218,
- 50.81011
- ],
- [
- 4.27579,
- 50.80696
- ],
- [
- 4.2854,
- 50.80506
- ],
- [
- 4.28901,
- 50.80691
- ],
- [
- 4.29802,
- 50.80593
- ],
- [
- 4.30282,
- 50.79709
- ],
- [
- 4.31458,
- 50.79454
- ],
- [
- 4.31621,
- 50.78624
- ],
- [
- 4.32952,
- 50.77381
- ],
- [
- 4.34205,
- 50.77164
- ],
- [
- 4.34522,
- 50.77337
- ],
- [
- 4.37853,
- 50.76811
- ],
- [
- 4.37973,
- 50.76382
- ]
- ]
- ],
- "terms_text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAACXBIWXMAAAsSAAALEgHS3X78AAACnUlEQVQoz11SXUiTYRh93ndz06YMNWcpRmWRSpgO+0EUDYwQ6sZ+oAyti8y6yCyKxOimILqQsLKbukmHSpFFLYlMqSkUmi3/pjZ/Zmv+Tec2bU237z1dfFHSc/HcPOc5HM45DAAREREgGOM217BpzDjs7PEHfNGa2PT47KxN+RFqrYDgjBMRE0JijBMRAKOlzmgxhChDN0cla1ThM0uTE65vsRFxRRkXk3TpMiMBkEQQQFPvw0LDnoYvVStBNwAhBIApj+X6m5OlT/dbnX0AJCHxkbl+zhTWub6XA4ZDqcd3JJTl1to7HV7G2E3TxOU2zaWcKm1YZKO5RlaliNknBma6Bqe7V6SVc5mVrmVFxSvLu1G3bSlwy2jVaXE6IzE0JLzV+jxJlxYTvp5X5j3Qx2ePzPcn6VJVysiUaHXX+d2zy8HqlrE8/bq3xXoiStalr1Fpxl1DRMQ547s27NWGRikVKtmuju9e34pEYcrhWV/f7E8iUinDQrjaH/AREQfAmSJGEzc6P0Qkvbd5ymt7DqfEmEr0Tre/4PFXInK4R7z+hXjtRiIi2aKPtpbi+qxue6vHj5ou+8KvAIBPP7yG3mkAd9sry18ULPrdAAgQAIJS4EZLacXrwqVlDwBJiKAkJCEB+Gz/UNyQ1TxY/8dWIiYgFFx5JPXM7JLjWe8jIgKBM3DGXT5no7lmy9rteVsLiIjJGXPGBcQ2XdqBlKJWa1PHeLOCcRAEhKH7zuKy+4T+QohCDQhGjLBqJBGsNl0teZI3OGMG0GiuKarPNI0aZTEyhq0qHxhjXv/C7bYyASkjIddoqctPOnY07ezf5hHRvwcikg+TXtv9jmsOjy0n8eCpnVeIESMiecnE/6kC0D/Vea+90h/wARAQqwG/AaEjsUbwLtXdAAAAAElFTkSuQmCC"
- },
- {
- "id": "UrbisAdmNL",
- "name": "UrbisAdm NL",
- "type": "wms",
- "template": "https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=urbisNL&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- 4.37973,
- 50.76382
- ],
- [
- 4.38917,
- 50.76377
- ],
- [
- 4.43028,
- 50.77517
- ],
- [
- 4.435,
- 50.775
- ],
- [
- 4.46427,
- 50.78645
- ],
- [
- 4.4817,
- 50.79134
- ],
- [
- 4.48238,
- 50.79617
- ],
- [
- 4.45921,
- 50.80626
- ],
- [
- 4.45947,
- 50.81661
- ],
- [
- 4.47972,
- 50.82036
- ],
- [
- 4.46959,
- 50.83537
- ],
- [
- 4.46899,
- 50.84573
- ],
- [
- 4.46238,
- 50.85396
- ],
- [
- 4.44968,
- 50.85591
- ],
- [
- 4.44599,
- 50.85992
- ],
- [
- 4.4253,
- 50.86615
- ],
- [
- 4.43183,
- 50.87628
- ],
- [
- 4.44007,
- 50.87845
- ],
- [
- 4.43106,
- 50.89014
- ],
- [
- 4.43595,
- 50.89502
- ],
- [
- 4.4296,
- 50.90103
- ],
- [
- 4.41655,
- 50.90757
- ],
- [
- 4.41543,
- 50.91342
- ],
- [
- 4.39578,
- 50.91407
- ],
- [
- 4.38462,
- 50.91093
- ],
- [
- 4.38119,
- 50.90319
- ],
- [
- 4.3726,
- 50.90032
- ],
- [
- 4.36213,
- 50.9033
- ],
- [
- 4.34857,
- 50.90341
- ],
- [
- 4.34025,
- 50.90411
- ],
- [
- 4.32892,
- 50.90249
- ],
- [
- 4.31647,
- 50.89605
- ],
- [
- 4.30634,
- 50.89274
- ],
- [
- 4.29004,
- 50.88982
- ],
- [
- 4.29149,
- 50.88495
- ],
- [
- 4.29553,
- 50.88262
- ],
- [
- 4.29561,
- 50.88094
- ],
- [
- 4.28274,
- 50.87227
- ],
- [
- 4.27699,
- 50.86713
- ],
- [
- 4.27802,
- 50.85911
- ],
- [
- 4.28042,
- 50.85721
- ],
- [
- 4.28094,
- 50.84215
- ],
- [
- 4.27193,
- 50.84036
- ],
- [
- 4.25467,
- 50.83695
- ],
- [
- 4.25107,
- 50.83288
- ],
- [
- 4.25227,
- 50.82697
- ],
- [
- 4.24343,
- 50.82182
- ],
- [
- 4.24403,
- 50.81548
- ],
- [
- 4.25519,
- 50.8151
- ],
- [
- 4.25802,
- 50.80935
- ],
- [
- 4.27218,
- 50.81011
- ],
- [
- 4.27579,
- 50.80696
- ],
- [
- 4.2854,
- 50.80506
- ],
- [
- 4.28901,
- 50.80691
- ],
- [
- 4.29802,
- 50.80593
- ],
- [
- 4.30282,
- 50.79709
- ],
- [
- 4.31458,
- 50.79454
- ],
- [
- 4.31621,
- 50.78624
- ],
- [
- 4.32952,
- 50.77381
- ],
- [
- 4.34205,
- 50.77164
- ],
- [
- 4.34522,
- 50.77337
- ],
- [
- 4.37853,
- 50.76811
- ],
- [
- 4.37973,
- 50.76382
- ]
- ]
- ],
- "terms_text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAACXBIWXMAAAsSAAALEgHS3X78AAACnUlEQVQoz11SXUiTYRh93ndz06YMNWcpRmWRSpgO+0EUDYwQ6sZ+oAyti8y6yCyKxOimILqQsLKbukmHSpFFLYlMqSkUmi3/pjZ/Zmv+Tec2bU237z1dfFHSc/HcPOc5HM45DAAREREgGOM217BpzDjs7PEHfNGa2PT47KxN+RFqrYDgjBMRE0JijBMRAKOlzmgxhChDN0cla1ThM0uTE65vsRFxRRkXk3TpMiMBkEQQQFPvw0LDnoYvVStBNwAhBIApj+X6m5OlT/dbnX0AJCHxkbl+zhTWub6XA4ZDqcd3JJTl1to7HV7G2E3TxOU2zaWcKm1YZKO5RlaliNknBma6Bqe7V6SVc5mVrmVFxSvLu1G3bSlwy2jVaXE6IzE0JLzV+jxJlxYTvp5X5j3Qx2ePzPcn6VJVysiUaHXX+d2zy8HqlrE8/bq3xXoiStalr1Fpxl1DRMQ547s27NWGRikVKtmuju9e34pEYcrhWV/f7E8iUinDQrjaH/AREQfAmSJGEzc6P0Qkvbd5ymt7DqfEmEr0Tre/4PFXInK4R7z+hXjtRiIi2aKPtpbi+qxue6vHj5ou+8KvAIBPP7yG3mkAd9sry18ULPrdAAgQAIJS4EZLacXrwqVlDwBJiKAkJCEB+Gz/UNyQ1TxY/8dWIiYgFFx5JPXM7JLjWe8jIgKBM3DGXT5no7lmy9rteVsLiIjJGXPGBcQ2XdqBlKJWa1PHeLOCcRAEhKH7zuKy+4T+QohCDQhGjLBqJBGsNl0teZI3OGMG0GiuKarPNI0aZTEyhq0qHxhjXv/C7bYyASkjIddoqctPOnY07ezf5hHRvwcikg+TXtv9jmsOjy0n8eCpnVeIESMiecnE/6kC0D/Vea+90h/wARAQqwG/AaEjsUbwLtXdAAAAAElFTkSuQmCC"
- },
- {
- "id": "USGS-Large_Scale",
- "name": "USGS Large Scale Imagery",
- "type": "tms",
- "template": "http://{switch:a,b,c}.tile.openstreetmap.us/usgs_large_scale/{zoom}/{x}/{y}.jpg",
- "scaleExtent": [
- 12,
- 20
- ],
- "polygon": [
- [
- [
- -123.25493,
- 48.7529
- ],
- [
- -123.25493,
- 48.55923
- ],
- [
- -123.19222,
- 48.55923
- ],
- [
- -123.19222,
- 48.43484
- ],
- [
- -122.94196,
- 48.43484
- ],
- [
- -122.94196,
- 48.37208
- ],
- [
- -122.88062,
- 48.37208
- ],
- [
- -122.88062,
- 48.30948
- ],
- [
- -122.81676,
- 48.30948
- ],
- [
- -122.81676,
- 48.19046
- ],
- [
- -123.00411,
- 48.19046
- ],
- [
- -123.00411,
- 48.12759
- ],
- [
- -123.05842,
- 48.12759
- ],
- [
- -123.05842,
- 48.19051
- ],
- [
- -123.25411,
- 48.19051
- ],
- [
- -123.25411,
- 48.1275
- ],
- [
- -123.37066,
- 48.1275
- ],
- [
- -123.37066,
- 48.19084
- ],
- [
- -124.05826,
- 48.19084
- ],
- [
- -124.05826,
- 48.25344
- ],
- [
- -124.18152,
- 48.25344
- ],
- [
- -124.18152,
- 48.31647
- ],
- [
- -124.43191,
- 48.31647
- ],
- [
- -124.43191,
- 48.37826
- ],
- [
- -124.55646,
- 48.37826
- ],
- [
- -124.55646,
- 48.44083
- ],
- [
- -124.75551,
- 48.44083
- ],
- [
- -124.75551,
- 48.1915
- ],
- [
- -124.81853,
- 48.1915
- ],
- [
- -124.81853,
- 48.12284
- ],
- [
- -124.7553,
- 48.12284
- ],
- [
- -124.7553,
- 47.55353
- ],
- [
- -124.38121,
- 47.55353
- ],
- [
- -124.38121,
- 47.12187
- ],
- [
- -124.19289,
- 47.12187
- ],
- [
- -124.19289,
- 43.75694
- ],
- [
- -124.44434,
- 43.75694
- ],
- [
- -124.44434,
- 43.14256
- ],
- [
- -124.63989,
- 43.14256
- ],
- [
- -124.63989,
- 42.61945
- ],
- [
- -124.44385,
- 42.61945
- ],
- [
- -124.44385,
- 39.80807
- ],
- [
- -123.88157,
- 39.80807
- ],
- [
- -123.88157,
- 39.11028
- ],
- [
- -123.75805,
- 39.11028
- ],
- [
- -123.75805,
- 38.49688
- ],
- [
- -123.27028,
- 38.49688
- ],
- [
- -123.27028,
- 37.93319
- ],
- [
- -122.81481,
- 37.93319
- ],
- [
- -122.81481,
- 37.80196
- ],
- [
- -122.56643,
- 37.80196
- ],
- [
- -122.56643,
- 36.93196
- ],
- [
- -121.8784,
- 36.93196
- ],
- [
- -121.8784,
- 36.68976
- ],
- [
- -122.00347,
- 36.68976
- ],
- [
- -122.00347,
- 36.43411
- ],
- [
- -121.94142,
- 36.43411
- ],
- [
- -121.94142,
- 35.92976
- ],
- [
- -121.5041,
- 35.92976
- ],
- [
- -121.5041,
- 35.81003
- ],
- [
- -121.37903,
- 35.81003
- ],
- [
- -121.37903,
- 35.42392
- ],
- [
- -120.94265,
- 35.42392
- ],
- [
- -120.94265,
- 35.18497
- ],
- [
- -120.8172,
- 35.18497
- ],
- [
- -120.8172,
- 35.12199
- ],
- [
- -120.69184,
- 35.12199
- ],
- [
- -120.69184,
- 34.49668
- ],
- [
- -120.50459,
- 34.49668
- ],
- [
- -120.50459,
- 34.43397
- ],
- [
- -120.00788,
- 34.43397
- ],
- [
- -120.00788,
- 34.36826
- ],
- [
- -119.52835,
- 34.36826
- ],
- [
- -119.52835,
- 34.05764
- ],
- [
- -119.0061,
- 34.05764
- ],
- [
- -119.0061,
- 33.99753
- ],
- [
- -118.50463,
- 33.99753
- ],
- [
- -118.50463,
- 33.86946
- ],
- [
- -118.44132,
- 33.86946
- ],
- [
- -118.44132,
- 33.68653
- ],
- [
- -118.06691,
- 33.68653
- ],
- [
- -118.06691,
- 33.30638
- ],
- [
- -117.503,
- 33.30638
- ],
- [
- -117.503,
- 33.05003
- ],
- [
- -117.31882,
- 33.05003
- ],
- [
- -117.31882,
- 32.62059
- ],
- [
- -117.1917,
- 32.62059
- ],
- [
- -117.1917,
- 32.49746
- ],
- [
- -116.7465,
- 32.49746
- ],
- [
- -116.7465,
- 32.56092
- ],
- [
- -115.99701,
- 32.56092
- ],
- [
- -115.99701,
- 32.62649
- ],
- [
- -114.88081,
- 32.62649
- ],
- [
- -114.88081,
- 32.43408
- ],
- [
- -114.62945,
- 32.43408
- ],
- [
- -114.62945,
- 32.37316
- ],
- [
- -114.44474,
- 32.37316
- ],
- [
- -114.44474,
- 32.30754
- ],
- [
- -114.25576,
- 32.30754
- ],
- [
- -114.25576,
- 32.24446
- ],
- [
- -114.06803,
- 32.24446
- ],
- [
- -114.06803,
- 32.18291
- ],
- [
- -113.81665,
- 32.18291
- ],
- [
- -113.81665,
- 32.12076
- ],
- [
- -113.63074,
- 32.12076
- ],
- [
- -113.63074,
- 32.05651
- ],
- [
- -113.44175,
- 32.05651
- ],
- [
- -113.44175,
- 31.99844
- ],
- [
- -113.2546,
- 31.99844
- ],
- [
- -113.2546,
- 31.93254
- ],
- [
- -113.06807,
- 31.93254
- ],
- [
- -113.06807,
- 31.87181
- ],
- [
- -112.81611,
- 31.87181
- ],
- [
- -112.81611,
- 31.81042
- ],
- [
- -112.63088,
- 31.81042
- ],
- [
- -112.63088,
- 31.74647
- ],
- [
- -112.44189,
- 31.74647
- ],
- [
- -112.44189,
- 31.6856
- ],
- [
- -112.25719,
- 31.6856
- ],
- [
- -112.25719,
- 31.62104
- ],
- [
- -112.00338,
- 31.62104
- ],
- [
- -112.00338,
- 31.55958
- ],
- [
- -111.81562,
- 31.55958
- ],
- [
- -111.81562,
- 31.49702
- ],
- [
- -111.62786,
- 31.49702
- ],
- [
- -111.62786,
- 31.43399
- ],
- [
- -111.4419,
- 31.43399
- ],
- [
- -111.4419,
- 31.37339
- ],
- [
- -111.25597,
- 31.37339
- ],
- [
- -111.25597,
- 31.31132
- ],
- [
- -108.18458,
- 31.31132
- ],
- [
- -108.18458,
- 31.74595
- ],
- [
- -106.50651,
- 31.74595
- ],
- [
- -106.50651,
- 31.68423
- ],
- [
- -106.37973,
- 31.68423
- ],
- [
- -106.37973,
- 31.62175
- ],
- [
- -106.31743,
- 31.62175
- ],
- [
- -106.31743,
- 31.49682
- ],
- [
- -106.25518,
- 31.49682
- ],
- [
- -106.25518,
- 31.43449
- ],
- [
- -106.19247,
- 31.43449
- ],
- [
- -106.19247,
- 31.37213
- ],
- [
- -106.00392,
- 31.37213
- ],
- [
- -106.00392,
- 31.30933
- ],
- [
- -105.94166,
- 31.30933
- ],
- [
- -105.94166,
- 31.24575
- ],
- [
- -105.87982,
- 31.24575
- ],
- [
- -105.87982,
- 31.18362
- ],
- [
- -105.81623,
- 31.18362
- ],
- [
- -105.81623,
- 31.12072
- ],
- [
- -105.69212,
- 31.12072
- ],
- [
- -105.69212,
- 31.05848
- ],
- [
- -105.63029,
- 31.05848
- ],
- [
- -105.63029,
- 30.93283
- ],
- [
- -105.50444,
- 30.93283
- ],
- [
- -105.50444,
- 30.87159
- ],
- [
- -105.4413,
- 30.87159
- ],
- [
- -105.4413,
- 30.80846
- ],
- [
- -105.37815,
- 30.80846
- ],
- [
- -105.37815,
- 30.74718
- ],
- [
- -105.19047,
- 30.74718
- ],
- [
- -105.19047,
- 30.68432
- ],
- [
- -105.12862,
- 30.68432
- ],
- [
- -105.12862,
- 30.61997
- ],
- [
- -105.00365,
- 30.61997
- ],
- [
- -105.00365,
- 30.55891
- ],
- [
- -104.9418,
- 30.55891
- ],
- [
- -104.9418,
- 30.49632
- ],
- [
- -104.8782,
- 30.49632
- ],
- [
- -104.8782,
- 30.30983
- ],
- [
- -104.81553,
- 30.30983
- ],
- [
- -104.81553,
- 30.24783
- ],
- [
- -104.75361,
- 30.24783
- ],
- [
- -104.75361,
- 29.93539
- ],
- [
- -104.69095,
- 29.93539
- ],
- [
- -104.69095,
- 29.80902
- ],
- [
- -104.62913,
- 29.80902
- ],
- [
- -104.62913,
- 29.68436
- ],
- [
- -104.56599,
- 29.68436
- ],
- [
- -104.56599,
- 29.62235
- ],
- [
- -104.50372,
- 29.62235
- ],
- [
- -104.50372,
- 29.55954
- ],
- [
- -104.44101,
- 29.55954
- ],
- [
- -104.44101,
- 29.49748
- ],
- [
- -104.25376,
- 29.49748
- ],
- [
- -104.25376,
- 29.37167
- ],
- [
- -104.1292,
- 29.37167
- ],
- [
- -104.1292,
- 29.30916
- ],
- [
- -104.06887,
- 29.30916
- ],
- [
- -104.06887,
- 29.24673
- ],
- [
- -103.81873,
- 29.24673
- ],
- [
- -103.81873,
- 29.18431
- ],
- [
- -103.75574,
- 29.18431
- ],
- [
- -103.75574,
- 29.12232
- ],
- [
- -103.56675,
- 29.12232
- ],
- [
- -103.56675,
- 29.05981
- ],
- [
- -103.50498,
- 29.05981
- ],
- [
- -103.50498,
- 28.99675
- ],
- [
- -103.31658,
- 28.99675
- ],
- [
- -103.31658,
- 28.93469
- ],
- [
- -103.05976,
- 28.93469
- ],
- [
- -103.05976,
- 29.0593
- ],
- [
- -102.99797,
- 29.0593
- ],
- [
- -102.99797,
- 29.12129
- ],
- [
- -102.93314,
- 29.12129
- ],
- [
- -102.93314,
- 29.18486
- ],
- [
- -102.8096,
- 29.18486
- ],
- [
- -102.8096,
- 29.25262
- ],
- [
- -102.87013,
- 29.25262
- ],
- [
- -102.87013,
- 29.3081
- ],
- [
- -102.80967,
- 29.3081
- ],
- [
- -102.80967,
- 29.37155
- ],
- [
- -102.74757,
- 29.37155
- ],
- [
- -102.74757,
- 29.55819
- ],
- [
- -102.68455,
- 29.55819
- ],
- [
- -102.68455,
- 29.68477
- ],
- [
- -102.49678,
- 29.68477
- ],
- [
- -102.49678,
- 29.74577
- ],
- [
- -102.30866,
- 29.74577
- ],
- [
- -102.30866,
- 29.80866
- ],
- [
- -102.19093,
- 29.80866
- ],
- [
- -102.19093,
- 29.74601
- ],
- [
- -101.50499,
- 29.74601
- ],
- [
- -101.50499,
- 29.68468
- ],
- [
- -101.38058,
- 29.68468
- ],
- [
- -101.38058,
- 29.55945
- ],
- [
- -101.31751,
- 29.55945
- ],
- [
- -101.31751,
- 29.49589
- ],
- [
- -101.19101,
- 29.49589
- ],
- [
- -101.19101,
- 29.43261
- ],
- [
- -101.0675,
- 29.43261
- ],
- [
- -101.0675,
- 29.30881
- ],
- [
- -100.94189,
- 29.30881
- ],
- [
- -100.94189,
- 29.24562
- ],
- [
- -100.81673,
- 29.24562
- ],
- [
- -100.81673,
- 29.11904
- ],
- [
- -100.75227,
- 29.11904
- ],
- [
- -100.75227,
- 29.05782
- ],
- [
- -100.69254,
- 29.05782
- ],
- [
- -100.69254,
- 28.87204
- ],
- [
- -100.62902,
- 28.87204
- ],
- [
- -100.62902,
- 28.80954
- ],
- [
- -100.56799,
- 28.80954
- ],
- [
- -100.56799,
- 28.62255
- ],
- [
- -100.50404,
- 28.62255
- ],
- [
- -100.50404,
- 28.55838
- ],
- [
- -100.44218,
- 28.55838
- ],
- [
- -100.44218,
- 28.49683
- ],
- [
- -100.37943,
- 28.49683
- ],
- [
- -100.37943,
- 28.30929
- ],
- [
- -100.31719,
- 28.30929
- ],
- [
- -100.31719,
- 28.18357
- ],
- [
- -100.25448,
- 28.18357
- ],
- [
- -100.25448,
- 28.12139
- ],
- [
- -100.12823,
- 28.12139
- ],
- [
- -100.12823,
- 28.05921
- ],
- [
- -100.06595,
- 28.05921
- ],
- [
- -100.06595,
- 27.99661
- ],
- [
- -100.00239,
- 27.99661
- ],
- [
- -100.00239,
- 27.93322
- ],
- [
- -99.94265,
- 27.93322
- ],
- [
- -99.94265,
- 27.74547
- ],
- [
- -99.81685,
- 27.74547
- ],
- [
- -99.81685,
- 27.68343
- ],
- [
- -99.75413,
- 27.68343
- ],
- [
- -99.75413,
- 27.62215
- ],
- [
- -99.62916,
- 27.62215
- ],
- [
- -99.62916,
- 27.5589
- ],
- [
- -99.56728,
- 27.5589
- ],
- [
- -99.56728,
- 27.43538
- ],
- [
- -99.50418,
- 27.43538
- ],
- [
- -99.50418,
- 27.3774
- ],
- [
- -99.56718,
- 27.3774
- ],
- [
- -99.56718,
- 27.24637
- ],
- [
- -99.50498,
- 27.24637
- ],
- [
- -99.50498,
- 26.99656
- ],
- [
- -99.44274,
- 26.99656
- ],
- [
- -99.44274,
- 26.8728
- ],
- [
- -99.38006,
- 26.8728
- ],
- [
- -99.38006,
- 26.80682
- ],
- [
- -99.31907,
- 26.80682
- ],
- [
- -99.31907,
- 26.74736
- ],
- [
- -99.25375,
- 26.74736
- ],
- [
- -99.25375,
- 26.62101
- ],
- [
- -99.19106,
- 26.62101
- ],
- [
- -99.19106,
- 26.49567
- ],
- [
- -99.13006,
- 26.49567
- ],
- [
- -99.13006,
- 26.37138
- ],
- [
- -99.00295,
- 26.37138
- ],
- [
- -99.00295,
- 26.30938
- ],
- [
- -98.81657,
- 26.30938
- ],
- [
- -98.81657,
- 26.24578
- ],
- [
- -98.69201,
- 26.24578
- ],
- [
- -98.69201,
- 26.18371
- ],
- [
- -98.44409,
- 26.18371
- ],
- [
- -98.44409,
- 26.12172
- ],
- [
- -98.38232,
- 26.12172
- ],
- [
- -98.38232,
- 26.05965
- ],
- [
- -98.25327,
- 26.05965
- ],
- [
- -98.25327,
- 25.99869
- ],
- [
- -98.01091,
- 25.99869
- ],
- [
- -98.01091,
- 25.99323
- ],
- [
- -97.69323,
- 25.99323
- ],
- [
- -97.69323,
- 25.93341
- ],
- [
- -97.63139,
- 25.93341
- ],
- [
- -97.63139,
- 25.86959
- ],
- [
- -97.50468,
- 25.86959
- ],
- [
- -97.50468,
- 25.80735
- ],
- [
- -97.30834,
- 25.80735
- ],
- [
- -97.30834,
- 25.87312
- ],
- [
- -97.24563,
- 25.87312
- ],
- [
- -97.24563,
- 25.93537
- ],
- [
- -97.11389,
- 25.93537
- ],
- [
- -97.11389,
- 27.68092
- ],
- [
- -97.0571,
- 27.68092
- ],
- [
- -97.0571,
- 27.81082
- ],
- [
- -95.58108,
- 27.81082
- ],
- [
- -95.58108,
- 28.74688
- ],
- [
- -94.27104,
- 28.74688
- ],
- [
- -94.27104,
- 29.55941
- ],
- [
- -92.50299,
- 29.55941
- ],
- [
- -92.50299,
- 29.49748
- ],
- [
- -91.87762,
- 29.49748
- ],
- [
- -91.87762,
- 29.3727
- ],
- [
- -91.37842,
- 29.3727
- ],
- [
- -91.37842,
- 29.24683
- ],
- [
- -91.3154,
- 29.24683
- ],
- [
- -91.3154,
- 29.18443
- ],
- [
- -91.12947,
- 29.18443
- ],
- [
- -91.12947,
- 29.12326
- ],
- [
- -91.00526,
- 29.12326
- ],
- [
- -91.00526,
- 28.99684
- ],
- [
- -89.45002,
- 28.99684
- ],
- [
- -89.45002,
- 28.86774
- ],
- [
- -88.81043,
- 28.86774
- ],
- [
- -88.81043,
- 30.18419
- ],
- [
- -85.87915,
- 30.18419
- ],
- [
- -85.87915,
- 29.5455
- ],
- [
- -84.83681,
- 29.5455
- ],
- [
- -84.83681,
- 29.62252
- ],
- [
- -84.74828,
- 29.62252
- ],
- [
- -84.74828,
- 29.68362
- ],
- [
- -84.68589,
- 29.68362
- ],
- [
- -84.68589,
- 29.74684
- ],
- [
- -83.6297,
- 29.74684
- ],
- [
- -83.6297,
- 29.43244
- ],
- [
- -83.31749,
- 29.43244
- ],
- [
- -83.31749,
- 29.05794
- ],
- [
- -82.87966,
- 29.05794
- ],
- [
- -82.87966,
- 27.74535
- ],
- [
- -82.81828,
- 27.74535
- ],
- [
- -82.81828,
- 26.92909
- ],
- [
- -82.37968,
- 26.92909
- ],
- [
- -82.37968,
- 26.36942
- ],
- [
- -81.87771,
- 26.36942
- ],
- [
- -81.87771,
- 25.80597
- ],
- [
- -81.50369,
- 25.80597
- ],
- [
- -81.50369,
- 25.74748
- ],
- [
- -81.44055,
- 25.74748
- ],
- [
- -81.44055,
- 25.68515
- ],
- [
- -81.31559,
- 25.68515
- ],
- [
- -81.31559,
- 25.5601
- ],
- [
- -81.25385,
- 25.5601
- ],
- [
- -81.25385,
- 25.43424
- ],
- [
- -81.1902,
- 25.43424
- ],
- [
- -81.1902,
- 25.12343
- ],
- [
- -81.12881,
- 25.12343
- ],
- [
- -81.12881,
- 25.06194
- ],
- [
- -81.06492,
- 25.06194
- ],
- [
- -81.06492,
- 24.81578
- ],
- [
- -81.62895,
- 24.81578
- ],
- [
- -81.62895,
- 24.75384
- ],
- [
- -81.69072,
- 24.75384
- ],
- [
- -81.69072,
- 24.68994
- ],
- [
- -81.81732,
- 24.68994
- ],
- [
- -81.81732,
- 24.62792
- ],
- [
- -82.191,
- 24.62792
- ],
- [
- -82.191,
- 24.49629
- ],
- [
- -81.62166,
- 24.49629
- ],
- [
- -81.62166,
- 24.55948
- ],
- [
- -81.37201,
- 24.55948
- ],
- [
- -81.37201,
- 24.62207
- ],
- [
- -81.05933,
- 24.62207
- ],
- [
- -81.05933,
- 24.68483
- ],
- [
- -80.93471,
- 24.68483
- ],
- [
- -80.93471,
- 24.74748
- ],
- [
- -80.74711,
- 24.74748
- ],
- [
- -80.74711,
- 24.81006
- ],
- [
- -80.36299,
- 24.81006
- ],
- [
- -80.36299,
- 25.11759
- ],
- [
- -80.12234,
- 25.11759
- ],
- [
- -80.12234,
- 25.74724
- ],
- [
- -80.05885,
- 25.74724
- ],
- [
- -80.05885,
- 26.37083
- ],
- [
- -79.99584,
- 26.37083
- ],
- [
- -79.99584,
- 26.9398
- ],
- [
- -80.05873,
- 26.9398
- ],
- [
- -80.05873,
- 27.12775
- ],
- [
- -80.12263,
- 27.12775
- ],
- [
- -80.12263,
- 27.25343
- ],
- [
- -80.1847,
- 27.25343
- ],
- [
- -80.1847,
- 27.37812
- ],
- [
- -80.24617,
- 27.37812
- ],
- [
- -80.24617,
- 27.56587
- ],
- [
- -80.30948,
- 27.56587
- ],
- [
- -80.30948,
- 27.75303
- ],
- [
- -80.37215,
- 27.75303
- ],
- [
- -80.37215,
- 27.87745
- ],
- [
- -80.43515,
- 27.87745
- ],
- [
- -80.43515,
- 28.00334
- ],
- [
- -80.49661,
- 28.00334
- ],
- [
- -80.49661,
- 28.12773
- ],
- [
- -80.55872,
- 28.12773
- ],
- [
- -80.55872,
- 28.37235
- ],
- [
- -80.49663,
- 28.37235
- ],
- [
- -80.49663,
- 29.51603
- ],
- [
- -81.12136,
- 29.51603
- ],
- [
- -81.12136,
- 31.6847
- ],
- [
- -80.60187,
- 31.6847
- ],
- [
- -80.60187,
- 32.24753
- ],
- [
- -79.4921,
- 32.24753
- ],
- [
- -79.4921,
- 32.99703
- ],
- [
- -79.11165,
- 32.99703
- ],
- [
- -79.11165,
- 33.37295
- ],
- [
- -78.61536,
- 33.37295
- ],
- [
- -78.61536,
- 33.80976
- ],
- [
- -77.9317,
- 33.80976
- ],
- [
- -77.9317,
- 33.87182
- ],
- [
- -77.86923,
- 33.87182
- ],
- [
- -77.86923,
- 34.05525
- ],
- [
- -77.68264,
- 34.05525
- ],
- [
- -77.68264,
- 34.29746
- ],
- [
- -77.24535,
- 34.29746
- ],
- [
- -77.24535,
- 34.55986
- ],
- [
- -76.49733,
- 34.55986
- ],
- [
- -76.49733,
- 34.6228
- ],
- [
- -76.43376,
- 34.6228
- ],
- [
- -76.43376,
- 34.68493
- ],
- [
- -76.37321,
- 34.68493
- ],
- [
- -76.37321,
- 34.74677
- ],
- [
- -76.30594,
- 34.74677
- ],
- [
- -76.30594,
- 34.80855
- ],
- [
- -76.2468,
- 34.80855
- ],
- [
- -76.2468,
- 34.87284
- ],
- [
- -76.18259,
- 34.87284
- ],
- [
- -76.18259,
- 34.93353
- ],
- [
- -76.12081,
- 34.93353
- ],
- [
- -76.12081,
- 34.99524
- ],
- [
- -75.9979,
- 34.99524
- ],
- [
- -75.9979,
- 35.05782
- ],
- [
- -75.87034,
- 35.05782
- ],
- [
- -75.87034,
- 35.12191
- ],
- [
- -75.74622,
- 35.12191
- ],
- [
- -75.74622,
- 35.18189
- ],
- [
- -75.49297,
- 35.18189
- ],
- [
- -75.49297,
- 35.3083
- ],
- [
- -75.43257,
- 35.3083
- ],
- [
- -75.43257,
- 35.75425
- ],
- [
- -75.49699,
- 35.75425
- ],
- [
- -75.49699,
- 37.81056
- ],
- [
- -75.3083,
- 37.81056
- ],
- [
- -75.3083,
- 37.87201
- ],
- [
- -75.2456,
- 37.87201
- ],
- [
- -75.2456,
- 37.99548
- ],
- [
- -75.18288,
- 37.99548
- ],
- [
- -75.18288,
- 38.05851
- ],
- [
- -75.11848,
- 38.05851
- ],
- [
- -75.11848,
- 38.24691
- ],
- [
- -75.05921,
- 38.24691
- ],
- [
- -75.05921,
- 38.37043
- ],
- [
- -74.99481,
- 38.37043
- ],
- [
- -74.99481,
- 38.87184
- ],
- [
- -74.48783,
- 38.87184
- ],
- [
- -74.48783,
- 39.30894
- ],
- [
- -74.17663,
- 39.30894
- ],
- [
- -74.17663,
- 39.62247
- ],
- [
- -74.0567,
- 39.62247
- ],
- [
- -74.0567,
- 39.93318
- ],
- [
- -73.9959,
- 39.93318
- ],
- [
- -73.9959,
- 40.18549
- ],
- [
- -73.93416,
- 40.18549
- ],
- [
- -73.93416,
- 40.49595
- ],
- [
- -73.8723,
- 40.49595
- ],
- [
- -73.8723,
- 40.55271
- ],
- [
- -71.80745,
- 40.55271
- ],
- [
- -71.80745,
- 41.3088
- ],
- [
- -70.88251,
- 41.3088
- ],
- [
- -70.88251,
- 41.18498
- ],
- [
- -70.74619,
- 41.18498
- ],
- [
- -70.74619,
- 41.30919
- ],
- [
- -70.43376,
- 41.30919
- ],
- [
- -70.43376,
- 41.49639
- ],
- [
- -69.93343,
- 41.49639
- ],
- [
- -69.93343,
- 41.62308
- ],
- [
- -69.86986,
- 41.62308
- ],
- [
- -69.86986,
- 41.87769
- ],
- [
- -69.93579,
- 41.87769
- ],
- [
- -69.93579,
- 42.00323
- ],
- [
- -69.99758,
- 42.00323
- ],
- [
- -69.99758,
- 42.06502
- ],
- [
- -70.06061,
- 42.06502
- ],
- [
- -70.06061,
- 42.12943
- ],
- [
- -70.55729,
- 42.12943
- ],
- [
- -70.55729,
- 43.24871
- ],
- [
- -70.49741,
- 43.24871
- ],
- [
- -70.49741,
- 43.30922
- ],
- [
- -70.37042,
- 43.30922
- ],
- [
- -70.37042,
- 43.37196
- ],
- [
- -70.30857,
- 43.37196
- ],
- [
- -70.30857,
- 43.49699
- ],
- [
- -70.18392,
- 43.49699
- ],
- [
- -70.18392,
- 43.62235
- ],
- [
- -70.05758,
- 43.62235
- ],
- [
- -70.05758,
- 43.68502
- ],
- [
- -69.74552,
- 43.68502
- ],
- [
- -69.74552,
- 43.74766
- ],
- [
- -69.24728,
- 43.74766
- ],
- [
- -69.24728,
- 43.8107
- ],
- [
- -69.05607,
- 43.8107
- ],
- [
- -69.05607,
- 43.87172
- ],
- [
- -68.99505,
- 43.87172
- ],
- [
- -68.99505,
- 43.9982
- ],
- [
- -68.49637,
- 43.9982
- ],
- [
- -68.49637,
- 44.05974
- ],
- [
- -68.3081,
- 44.05974
- ],
- [
- -68.3081,
- 44.12214
- ],
- [
- -68.18518,
- 44.12214
- ],
- [
- -68.18518,
- 44.30814
- ],
- [
- -67.9956,
- 44.30814
- ],
- [
- -67.9956,
- 44.37275
- ],
- [
- -67.8103,
- 44.37275
- ],
- [
- -67.8103,
- 44.43518
- ],
- [
- -67.49653,
- 44.43518
- ],
- [
- -67.49653,
- 44.49688
- ],
- [
- -67.37102,
- 44.49688
- ],
- [
- -67.37102,
- 44.56006
- ],
- [
- -67.18488,
- 44.56006
- ],
- [
- -67.18488,
- 44.62133
- ],
- [
- -67.12212,
- 44.62133
- ],
- [
- -67.12212,
- 44.68679
- ],
- [
- -67.05936,
- 44.68679
- ],
- [
- -67.05936,
- 44.74737
- ],
- [
- -66.93111,
- 44.74737
- ],
- [
- -66.93111,
- 44.94066
- ],
- [
- -66.99468,
- 44.94066
- ],
- [
- -66.99468,
- 45.00245
- ],
- [
- -67.05958,
- 45.00245
- ],
- [
- -67.05958,
- 45.12734
- ],
- [
- -67.1202,
- 45.12734
- ],
- [
- -67.1202,
- 45.19101
- ],
- [
- -67.24698,
- 45.19101
- ],
- [
- -67.24698,
- 45.25344
- ],
- [
- -67.31775,
- 45.25344
- ],
- [
- -67.31775,
- 45.18984
- ],
- [
- -67.37075,
- 45.18984
- ],
- [
- -67.37075,
- 45.2534
- ],
- [
- -67.43269,
- 45.2534
- ],
- [
- -67.43269,
- 45.30834
- ],
- [
- -67.37086,
- 45.30834
- ],
- [
- -67.37086,
- 45.4397
- ],
- [
- -67.43056,
- 45.4397
- ],
- [
- -67.43056,
- 45.49501
- ],
- [
- -67.37099,
- 45.49501
- ],
- [
- -67.37099,
- 45.62645
- ],
- [
- -67.6215,
- 45.62645
- ],
- [
- -67.6215,
- 45.68961
- ],
- [
- -67.68383,
- 45.68961
- ],
- [
- -67.68383,
- 45.75326
- ],
- [
- -67.74621,
- 45.75326
- ],
- [
- -67.74621,
- 47.12682
- ],
- [
- -67.87001,
- 47.12682
- ],
- [
- -67.87001,
- 47.19003
- ],
- [
- -67.93238,
- 47.19003
- ],
- [
- -67.93238,
- 47.25397
- ],
- [
- -67.99594,
- 47.25397
- ],
- [
- -67.99594,
- 47.31497
- ],
- [
- -68.12067,
- 47.31497
- ],
- [
- -68.12067,
- 47.37808
- ],
- [
- -68.44232,
- 47.37808
- ],
- [
- -68.44232,
- 47.31661
- ],
- [
- -68.63143,
- 47.31661
- ],
- [
- -68.63143,
- 47.25447
- ],
- [
- -68.9978,
- 47.25447
- ],
- [
- -68.9978,
- 47.43989
- ],
- [
- -69.06072,
- 47.43989
- ],
- [
- -69.06072,
- 47.50476
- ],
- [
- -69.25381,
- 47.50476
- ],
- [
- -69.25381,
- 47.43981
- ],
- [
- -69.31793,
- 47.43981
- ],
- [
- -69.31793,
- 47.3786
- ],
- [
- -69.44385,
- 47.3786
- ],
- [
- -69.44385,
- 47.31563
- ],
- [
- -69.50382,
- 47.31563
- ],
- [
- -69.50382,
- 47.25258
- ],
- [
- -69.56678,
- 47.25258
- ],
- [
- -69.56678,
- 47.19109
- ],
- [
- -69.63035,
- 47.19109
- ],
- [
- -69.63035,
- 47.1287
- ],
- [
- -69.69331,
- 47.1287
- ],
- [
- -69.69331,
- 47.06543
- ],
- [
- -69.75571,
- 47.06543
- ],
- [
- -69.75571,
- 47.00428
- ],
- [
- -69.81804,
- 47.00428
- ],
- [
- -69.81804,
- 46.94153
- ],
- [
- -69.8804,
- 46.94153
- ],
- [
- -69.8804,
- 46.87925
- ],
- [
- -69.94217,
- 46.87925
- ],
- [
- -69.94217,
- 46.81774
- ],
- [
- -70.00631,
- 46.81774
- ],
- [
- -70.00631,
- 46.69203
- ],
- [
- -70.07043,
- 46.69203
- ],
- [
- -70.07043,
- 46.44259
- ],
- [
- -70.19459,
- 46.44259
- ],
- [
- -70.19459,
- 46.37859
- ],
- [
- -70.2562,
- 46.37859
- ],
- [
- -70.2562,
- 46.31526
- ],
- [
- -70.32037,
- 46.31526
- ],
- [
- -70.32037,
- 46.06512
- ],
- [
- -70.3815,
- 46.06512
- ],
- [
- -70.3815,
- 45.93552
- ],
- [
- -70.32016,
- 45.93552
- ],
- [
- -70.32016,
- 45.87948
- ],
- [
- -70.44931,
- 45.87948
- ],
- [
- -70.44931,
- 45.75387
- ],
- [
- -70.507,
- 45.75387
- ],
- [
- -70.507,
- 45.69169
- ],
- [
- -70.63166,
- 45.69169
- ],
- [
- -70.63166,
- 45.62916
- ],
- [
- -70.75755,
- 45.62916
- ],
- [
- -70.75755,
- 45.44147
- ],
- [
- -70.88099,
- 45.44147
- ],
- [
- -70.88099,
- 45.37806
- ],
- [
- -71.13328,
- 45.37806
- ],
- [
- -71.13328,
- 45.31515
- ],
- [
- -71.38303,
- 45.31515
- ],
- [
- -71.38303,
- 45.25342
- ],
- [
- -71.50764,
- 45.25342
- ],
- [
- -71.50764,
- 45.06557
- ],
- [
- -73.94189,
- 45.06557
- ],
- [
- -73.94189,
- 45.00312
- ],
- [
- -74.74697,
- 45.00312
- ],
- [
- -74.74697,
- 45.0649
- ],
- [
- -74.8801,
- 45.0649
- ],
- [
- -74.8801,
- 45.0029
- ],
- [
- -75.06625,
- 45.0029
- ],
- [
- -75.06625,
- 44.94152
- ],
- [
- -75.25394,
- 44.94152
- ],
- [
- -75.25394,
- 44.8776
- ],
- [
- -75.37896,
- 44.8776
- ],
- [
- -75.37896,
- 44.81535
- ],
- [
- -75.44313,
- 44.81535
- ],
- [
- -75.44313,
- 44.75361
- ],
- [
- -75.56666,
- 44.75361
- ],
- [
- -75.56666,
- 44.69099
- ],
- [
- -75.62902,
- 44.69099
- ],
- [
- -75.62902,
- 44.6285
- ],
- [
- -75.75405,
- 44.6285
- ],
- [
- -75.75405,
- 44.56638
- ],
- [
- -75.81731,
- 44.56638
- ],
- [
- -75.81731,
- 44.50289
- ],
- [
- -75.87995,
- 44.50289
- ],
- [
- -75.87995,
- 44.37849
- ],
- [
- -76.13003,
- 44.37849
- ],
- [
- -76.13003,
- 44.31592
- ],
- [
- -76.1927,
- 44.31592
- ],
- [
- -76.1927,
- 44.25344
- ],
- [
- -76.31826,
- 44.25344
- ],
- [
- -76.31826,
- 44.19167
- ],
- [
- -76.3793,
- 44.19167
- ],
- [
- -76.3793,
- 44.06537
- ],
- [
- -76.44276,
- 44.06537
- ],
- [
- -76.44276,
- 43.99638
- ],
- [
- -76.31703,
- 43.99638
- ],
- [
- -76.31703,
- 43.94146
- ],
- [
- -76.50766,
- 43.94146
- ],
- [
- -76.50766,
- 43.87233
- ],
- [
- -76.383,
- 43.87233
- ],
- [
- -76.383,
- 43.80919
- ],
- [
- -76.25341,
- 43.80919
- ],
- [
- -76.25341,
- 43.56652
- ],
- [
- -76.50648,
- 43.56652
- ],
- [
- -76.50648,
- 43.50339
- ],
- [
- -76.63312,
- 43.50339
- ],
- [
- -76.63312,
- 43.44323
- ],
- [
- -76.69511,
- 43.44323
- ],
- [
- -76.69511,
- 43.37869
- ],
- [
- -76.81778,
- 43.37869
- ],
- [
- -76.81778,
- 43.31807
- ],
- [
- -77.682,
- 43.31807
- ],
- [
- -77.682,
- 43.37894
- ],
- [
- -78.05659,
- 43.37894
- ],
- [
- -78.05659,
- 43.43969
- ],
- [
- -78.43897,
- 43.43969
- ],
- [
- -78.43897,
- 43.37944
- ],
- [
- -78.88034,
- 43.37944
- ],
- [
- -78.88034,
- 43.31497
- ],
- [
- -79.12989,
- 43.31497
- ],
- [
- -79.12989,
- 43.24293
- ],
- [
- -79.06696,
- 43.24293
- ],
- [
- -79.06696,
- 43.12999
- ],
- [
- -79.12989,
- 43.12999
- ],
- [
- -79.12989,
- 43.05773
- ],
- [
- -79.07126,
- 43.05773
- ],
- [
- -79.07126,
- 42.92949
- ],
- [
- -78.94326,
- 42.92949
- ],
- [
- -78.94326,
- 42.75422
- ],
- [
- -79.06944,
- 42.75422
- ],
- [
- -79.06944,
- 42.69416
- ],
- [
- -79.13344,
- 42.69416
- ],
- [
- -79.13344,
- 42.6297
- ],
- [
- -79.19475,
- 42.6297
- ],
- [
- -79.19475,
- 42.56635
- ],
- [
- -79.37868,
- 42.56635
- ],
- [
- -79.37868,
- 42.50334
- ],
- [
- -79.4443,
- 42.50334
- ],
- [
- -79.4443,
- 42.44106
- ],
- [
- -79.56799,
- 42.44106
- ],
- [
- -79.56799,
- 42.37753
- ],
- [
- -79.69062,
- 42.37753
- ],
- [
- -79.69062,
- 42.31711
- ],
- [
- -79.81646,
- 42.31711
- ],
- [
- -79.81646,
- 42.25345
- ],
- [
- -80.00524,
- 42.25345
- ],
- [
- -80.00524,
- 42.19092
- ],
- [
- -80.19168,
- 42.19092
- ],
- [
- -80.19168,
- 42.12726
- ],
- [
- -80.3168,
- 42.12726
- ],
- [
- -80.3168,
- 42.06699
- ],
- [
- -80.50632,
- 42.06699
- ],
- [
- -80.50632,
- 42.00343
- ],
- [
- -80.69305,
- 42.00343
- ],
- [
- -80.69305,
- 41.94151
- ],
- [
- -80.94404,
- 41.94151
- ],
- [
- -80.94404,
- 41.87812
- ],
- [
- -81.19427,
- 41.87812
- ],
- [
- -81.19427,
- 41.81665
- ],
- [
- -81.31901,
- 41.81665
- ],
- [
- -81.31901,
- 41.75455
- ],
- [
- -81.44184,
- 41.75455
- ],
- [
- -81.44184,
- 41.69096
- ],
- [
- -81.50535,
- 41.69096
- ],
- [
- -81.50535,
- 41.63016
- ],
- [
- -82.74701,
- 41.63016
- ],
- [
- -82.74701,
- 41.75369
- ],
- [
- -82.88391,
- 41.75369
- ],
- [
- -82.88391,
- 41.56561
- ],
- [
- -82.99572,
- 41.56561
- ],
- [
- -82.99572,
- 41.62704
- ],
- [
- -83.12578,
- 41.62704
- ],
- [
- -83.12578,
- 41.68784
- ],
- [
- -83.24747,
- 41.68784
- ],
- [
- -83.24747,
- 41.75369
- ],
- [
- -83.37373,
- 41.75369
- ],
- [
- -83.37373,
- 41.80928
- ],
- [
- -83.3106,
- 41.80928
- ],
- [
- -83.3106,
- 41.87161
- ],
- [
- -83.24747,
- 41.87161
- ],
- [
- -83.24747,
- 41.93614
- ],
- [
- -83.18434,
- 41.93614
- ],
- [
- -83.18434,
- 41.99609
- ],
- [
- -83.12077,
- 41.99609
- ],
- [
- -83.12077,
- 42.24648
- ],
- [
- -83.05892,
- 42.24648
- ],
- [
- -83.05892,
- 42.30896
- ],
- [
- -82.86853,
- 42.30896
- ],
- [
- -82.86853,
- 42.37177
- ],
- [
- -82.80722,
- 42.37177
- ],
- [
- -82.80722,
- 42.55855
- ],
- [
- -82.75537,
- 42.55855
- ],
- [
- -82.75537,
- 42.49549
- ],
- [
- -82.5599,
- 42.49549
- ],
- [
- -82.5599,
- 42.55855
- ],
- [
- -82.49678,
- 42.55855
- ],
- [
- -82.49678,
- 42.68336
- ],
- [
- -82.43289,
- 42.68336
- ],
- [
- -82.43289,
- 42.93422
- ],
- [
- -82.37006,
- 42.93422
- ],
- [
- -82.37006,
- 43.06481
- ],
- [
- -82.43289,
- 43.06481
- ],
- [
- -82.43289,
- 43.19176
- ],
- [
- -82.49475,
- 43.19176
- ],
- [
- -82.49475,
- 43.50346
- ],
- [
- -82.55713,
- 43.50346
- ],
- [
- -82.55713,
- 43.81609
- ],
- [
- -82.61979,
- 43.81609
- ],
- [
- -82.61979,
- 43.94221
- ],
- [
- -82.68395,
- 43.94221
- ],
- [
- -82.68395,
- 44.00226
- ],
- [
- -82.74653,
- 44.00226
- ],
- [
- -82.74653,
- 44.06705
- ],
- [
- -82.87087,
- 44.06705
- ],
- [
- -82.87087,
- 44.12919
- ],
- [
- -83.00852,
- 44.12919
- ],
- [
- -83.00852,
- 44.06648
- ],
- [
- -83.13361,
- 44.06648
- ],
- [
- -83.13361,
- 44.00539
- ],
- [
- -83.24145,
- 44.00539
- ],
- [
- -83.24145,
- 44.9962
- ],
- [
- -83.18061,
- 44.9962
- ],
- [
- -83.18061,
- 45.0673
- ],
- [
- -83.24552,
- 45.0673
- ],
- [
- -83.24552,
- 45.12874
- ],
- [
- -83.30659,
- 45.12874
- ],
- [
- -83.30659,
- 45.25515
- ],
- [
- -83.37061,
- 45.25515
- ],
- [
- -83.37061,
- 45.31659
- ],
- [
- -83.43256,
- 45.31659
- ],
- [
- -83.43256,
- 45.37921
- ],
- [
- -83.61784,
- 45.37921
- ],
- [
- -83.61784,
- 45.44197
- ],
- [
- -83.80843,
- 45.44197
- ],
- [
- -83.80843,
- 45.50362
- ],
- [
- -84.05507,
- 45.50362
- ],
- [
- -84.05507,
- 45.56479
- ],
- [
- -84.12352,
- 45.56479
- ],
- [
- -84.12352,
- 45.62878
- ],
- [
- -84.18075,
- 45.62878
- ],
- [
- -84.18075,
- 45.69147
- ],
- [
- -84.31116,
- 45.69147
- ],
- [
- -84.31116,
- 45.93371
- ],
- [
- -83.821,
- 45.93371
- ],
- [
- -83.821,
- 45.87251
- ],
- [
- -83.49681,
- 45.87251
- ],
- [
- -83.49681,
- 45.93371
- ],
- [
- -83.43381,
- 45.93371
- ],
- [
- -83.43381,
- 46.00169
- ],
- [
- -83.49627,
- 46.00169
- ],
- [
- -83.49627,
- 46.06682
- ],
- [
- -83.56,
- 46.06682
- ],
- [
- -83.56,
- 46.12616
- ],
- [
- -83.99546,
- 46.12616
- ],
- [
- -83.99546,
- 46.19317
- ],
- [
- -84.05918,
- 46.19317
- ],
- [
- -84.05918,
- 46.3815
- ],
- [
- -84.11526,
- 46.3815
- ],
- [
- -84.11526,
- 46.49536
- ],
- [
- -84.05918,
- 46.49536
- ],
- [
- -84.05918,
- 46.56827
- ],
- [
- -84.25795,
- 46.56827
- ],
- [
- -84.25795,
- 46.50512
- ],
- [
- -84.30719,
- 46.50512
- ],
- [
- -84.30719,
- 46.56827
- ],
- [
- -84.44154,
- 46.56827
- ],
- [
- -84.44154,
- 46.50453
- ],
- [
- -84.99657,
- 46.50453
- ],
- [
- -84.99657,
- 46.68429
- ],
- [
- -84.92982,
- 46.68429
- ],
- [
- -84.92982,
- 46.81808
- ],
- [
- -85.31659,
- 46.81808
- ],
- [
- -85.31659,
- 46.75358
- ],
- [
- -87.55626,
- 46.75358
- ],
- [
- -87.55626,
- 47.44074
- ],
- [
- -87.68254,
- 47.44074
- ],
- [
- -87.68254,
- 47.50356
- ],
- [
- -88.25607,
- 47.50356
- ],
- [
- -88.25607,
- 47.44337
- ],
- [
- -88.44174,
- 47.44337
- ],
- [
- -88.44174,
- 47.37899
- ],
- [
- -88.50683,
- 47.37899
- ],
- [
- -88.50683,
- 47.31539
- ],
- [
- -88.63128,
- 47.31539
- ],
- [
- -88.63128,
- 47.25398
- ],
- [
- -88.75696,
- 47.25398
- ],
- [
- -88.75696,
- 47.19347
- ],
- [
- -88.88383,
- 47.19347
- ],
- [
- -88.88383,
- 47.12847
- ],
- [
- -88.94342,
- 47.12847
- ],
- [
- -88.94342,
- 47.06621
- ],
- [
- -89.07087,
- 47.06621
- ],
- [
- -89.07087,
- 47.00268
- ],
- [
- -89.25656,
- 47.00268
- ],
- [
- -89.25656,
- 46.94108
- ],
- [
- -90.36777,
- 46.94108
- ],
- [
- -90.36777,
- 47.68448
- ],
- [
- -90.307,
- 47.68448
- ],
- [
- -90.307,
- 47.74602
- ],
- [
- -89.99486,
- 47.74602
- ],
- [
- -89.99486,
- 47.80827
- ],
- [
- -89.80486,
- 47.80827
- ],
- [
- -89.80486,
- 47.87006
- ],
- [
- -89.67977,
- 47.87006
- ],
- [
- -89.67977,
- 47.93396
- ],
- [
- -89.49338,
- 47.93396
- ],
- [
- -89.49338,
- 47.9958
- ],
- [
- -89.42847,
- 47.9958
- ],
- [
- -89.42847,
- 48.06564
- ],
- [
- -89.99327,
- 48.06564
- ],
- [
- -89.99327,
- 48.1283
- ],
- [
- -90.74559,
- 48.1283
- ],
- [
- -90.74559,
- 48.18931
- ],
- [
- -90.80873,
- 48.18931
- ],
- [
- -90.80873,
- 48.25221
- ],
- [
- -91.06776,
- 48.25221
- ],
- [
- -91.06776,
- 48.19167
- ],
- [
- -91.19462,
- 48.19167
- ],
- [
- -91.19462,
- 48.1279
- ],
- [
- -91.68142,
- 48.1279
- ],
- [
- -91.68142,
- 48.2526
- ],
- [
- -91.93219,
- 48.2526
- ],
- [
- -91.93219,
- 48.31425
- ],
- [
- -91.99297,
- 48.31425
- ],
- [
- -91.99297,
- 48.37808
- ],
- [
- -92.31894,
- 48.37808
- ],
- [
- -92.31894,
- 48.25291
- ],
- [
- -92.37322,
- 48.25291
- ],
- [
- -92.37322,
- 48.31534
- ],
- [
- -92.43223,
- 48.31534
- ],
- [
- -92.43223,
- 48.44114
- ],
- [
- -92.49772,
- 48.44114
- ],
- [
- -92.49772,
- 48.50178
- ],
- [
- -92.56794,
- 48.50178
- ],
- [
- -92.56794,
- 48.43958
- ],
- [
- -92.62105,
- 48.43958
- ],
- [
- -92.62105,
- 48.56508
- ],
- [
- -92.80868,
- 48.56508
- ],
- [
- -92.80868,
- 48.62869
- ],
- [
- -92.80868,
- 48.62674
- ],
- [
- -92.93318,
- 48.62674
- ],
- [
- -92.93318,
- 48.69221
- ],
- [
- -93.00517,
- 48.69221
- ],
- [
- -93.00517,
- 48.6283
- ],
- [
- -93.12259,
- 48.6283
- ],
- [
- -93.12259,
- 48.69221
- ],
- [
- -93.31908,
- 48.69221
- ],
- [
- -93.31908,
- 48.62674
- ],
- [
- -93.50495,
- 48.62674
- ],
- [
- -93.50495,
- 48.56352
- ],
- [
- -93.74746,
- 48.56352
- ],
- [
- -93.74746,
- 48.62674
- ],
- [
- -93.81355,
- 48.62674
- ],
- [
- -93.81355,
- 48.68988
- ],
- [
- -94.24531,
- 48.68988
- ],
- [
- -94.24531,
- 48.75543
- ],
- [
- -94.61832,
- 48.75543
- ],
- [
- -94.61832,
- 48.94104
- ],
- [
- -94.6809,
- 48.94104
- ],
- [
- -94.6809,
- 49.00297
- ],
- [
- -94.74415,
- 49.00297
- ],
- [
- -94.74415,
- 49.25361
- ],
- [
- -94.80841,
- 49.25361
- ],
- [
- -94.80841,
- 49.37841
- ],
- [
- -95.11924,
- 49.37841
- ],
- [
- -95.11924,
- 49.44253
- ],
- [
- -95.19343,
- 49.44253
- ],
- [
- -95.19343,
- 49.00353
- ],
- [
- -96.87069,
- 49.00353
- ],
- [
- -96.87069,
- 49.06561
- ],
- [
- -99.00493,
- 49.06561
- ],
- [
- -99.00493,
- 49.00507
- ],
- [
- -109.36993,
- 49.00507
- ],
- [
- -109.36993,
- 49.06682
- ],
- [
- -109.50587,
- 49.06682
- ],
- [
- -109.50587,
- 49.00507
- ],
- [
- -114.183,
- 49.00507
- ],
- [
- -114.183,
- 49.06873
- ],
- [
- -114.75787,
- 49.06873
- ],
- [
- -114.75787,
- 49.00507
- ],
- [
- -115.43373,
- 49.00507
- ],
- [
- -115.43373,
- 49.06714
- ],
- [
- -116.50627,
- 49.06714
- ],
- [
- -116.50627,
- 49.00507
- ],
- [
- -117.30895,
- 49.00507
- ],
- [
- -117.30895,
- 49.06598
- ],
- [
- -119.88295,
- 49.06598
- ],
- [
- -119.88295,
- 49.00507
- ],
- [
- -120.12086,
- 49.00507
- ],
- [
- -120.12086,
- 49.06784
- ],
- [
- -121.44516,
- 49.06784
- ],
- [
- -121.44516,
- 49.00507
- ],
- [
- -121.93118,
- 49.00507
- ],
- [
- -121.93118,
- 49.06561
- ],
- [
- -122.81748,
- 49.06561
- ],
- [
- -122.81748,
- 49.00291
- ],
- [
- -122.87952,
- 49.00291
- ],
- [
- -122.87952,
- 48.9347
- ],
- [
- -122.81746,
- 48.9347
- ],
- [
- -122.81746,
- 48.8102
- ],
- [
- -122.75389,
- 48.8102
- ],
- [
- -122.75389,
- 48.75338
- ],
- [
- -122.87129,
- 48.75338
- ],
- [
- -122.87129,
- 48.81539
- ],
- [
- -123.00554,
- 48.81539
- ],
- [
- -123.00554,
- 48.75295
- ],
- [
- -123.12969,
- 48.75295
- ],
- [
- -123.12969,
- 48.69022
- ],
- [
- -123.18382,
- 48.69022
- ],
- [
- -123.18382,
- 48.7529
- ],
- [
- -123.25493,
- 48.7529
- ]
- ],
- [
- [
- -122.93417,
- 37.75215
- ],
- [
- -122.93475,
- 37.6842
- ],
- [
- -123.0679,
- 37.6849
- ],
- [
- -123.06737,
- 37.74753
- ],
- [
- -123.12926,
- 37.74785
- ],
- [
- -123.12869,
- 37.81569
- ],
- [
- -123.05907,
- 37.81532
- ],
- [
- -123.05959,
- 37.75281
- ],
- [
- -122.93417,
- 37.75215
- ]
- ],
- [
- [
- -71.62995,
- 41.25409
- ],
- [
- -71.49665,
- 41.25414
- ],
- [
- -71.49656,
- 41.12297
- ],
- [
- -71.62986,
- 41.12291
- ],
- [
- -71.62995,
- 41.25409
- ]
- ],
- [
- [
- -70.31843,
- 41.37752
- ],
- [
- -70.31834,
- 41.24482
- ],
- [
- -70.19066,
- 41.24487
- ],
- [
- -70.19062,
- 41.1886
- ],
- [
- -69.9336,
- 41.1887
- ],
- [
- -69.93373,
- 41.37919
- ],
- [
- -69.99507,
- 41.37917
- ],
- [
- -69.99511,
- 41.44316
- ],
- [
- -70.07078,
- 41.44313
- ],
- [
- -70.0707,
- 41.31449
- ],
- [
- -70.24617,
- 41.31443
- ],
- [
- -70.24621,
- 41.37755
- ],
- [
- -70.31843,
- 41.37752
- ]
- ],
- [
- [
- -68.94034,
- 43.94041
- ],
- [
- -68.68569,
- 43.9405
- ],
- [
- -68.68565,
- 43.87218
- ],
- [
- -68.74654,
- 43.87216
- ],
- [
- -68.7465,
- 43.81025
- ],
- [
- -68.80908,
- 43.81023
- ],
- [
- -68.80903,
- 43.74673
- ],
- [
- -68.87731,
- 43.7467
- ],
- [
- -68.87735,
- 43.81178
- ],
- [
- -68.94025,
- 43.81176
- ],
- [
- -68.94034,
- 43.94041
- ]
- ],
- [
- [
- -123.12915,
- 49.06451
- ],
- [
- -122.99542,
- 49.06451
- ],
- [
- -122.99542,
- 48.93432
- ],
- [
- -123.12915,
- 48.93432
- ],
- [
- -123.12915,
- 49.06451
- ]
- ],
- [
- [
- -82.94071,
- 24.75359
- ],
- [
- -82.87194,
- 24.75359
- ],
- [
- -82.87194,
- 24.69057
- ],
- [
- -82.74462,
- 24.69057
- ],
- [
- -82.74462,
- 24.62146
- ],
- [
- -82.8088,
- 24.62146
- ],
- [
- -82.8088,
- 24.55949
- ],
- [
- -82.94071,
- 24.55949
- ],
- [
- -82.94071,
- 24.75359
- ]
- ]
- ],
- "icon": "data:image/png;base64,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"
- },
- {
- "id": "USGS-Scanned_Topographic",
- "name": "USGS Topographic Maps",
- "type": "tms",
- "template": "https://caltopo.s3.amazonaws.com/topo/{zoom}/{x}/{y}.png",
- "scaleExtent": [
- 0,
- 16
- ],
- "polygon": [
- [
- [
- -55.99594,
- 52.00107
- ],
- [
- -112.02896,
- 52.00107
- ],
- [
- -112.03995,
- 56.01308
- ],
- [
- -120.00494,
- 56.00592
- ],
- [
- -120.01712,
- 60.01202
- ],
- [
- -132.00197,
- 60.00239
- ],
- [
- -132.01208,
- 63.00193
- ],
- [
- -133.96883,
- 63.0005
- ],
- [
- -133.9724,
- 63.99225
- ],
- [
- -141.04429,
- 63.98726
- ],
- [
- -141.06879,
- 69.92046
- ],
- [
- -156.24893,
- 71.51583
- ],
- [
- -160.44571,
- 70.83527
- ],
- [
- -167.08145,
- 68.42906
- ],
- [
- -164.08218,
- 67.03914
- ],
- [
- -169.01504,
- 65.68269
- ],
- [
- -166.57608,
- 64.50778
- ],
- [
- -161.82999,
- 64.05006
- ],
- [
- -165.08194,
- 63.2603
- ],
- [
- -168.02628,
- 59.78623
- ],
- [
- -162.53311,
- 59.73089
- ],
- [
- -162.35733,
- 58.55905
- ],
- [
- -157.83096,
- 58.31753
- ],
- [
- -158.00674,
- 57.52404
- ],
- [
- -168.22403,
- 53.51022
- ],
- [
- -166.55411,
- 53.14277
- ],
- [
- -158.77579,
- 54.88541
- ],
- [
- -158.6824,
- 55.74964
- ],
- [
- -156.55106,
- 56.00848
- ],
- [
- -156.15555,
- 56.77466
- ],
- [
- -154.70535,
- 56.14337
- ],
- [
- -152.07413,
- 57.37035
- ],
- [
- -151.62918,
- 58.22653
- ],
- [
- -152.00821,
- 58.98056
- ],
- [
- -145.9877,
- 60.24741
- ],
- [
- -140.38467,
- 59.48634
- ],
- [
- -136.53946,
- 57.8061
- ],
- [
- -133.79288,
- 54.83483
- ],
- [
- -133.33145,
- 53.14277
- ],
- [
- -131.46378,
- 51.69838
- ],
- [
- -128.52493,
- 51.74602
- ],
- [
- -129.79385,
- 50.90159
- ],
- [
- -124.56436,
- 47.49786
- ],
- [
- -124.03702,
- 45.48627
- ],
- [
- -124.6962,
- 42.90428
- ],
- [
- -124.49844,
- 40.34146
- ],
- [
- -122.80655,
- 37.53929
- ],
- [
- -119.99405,
- 33.37085
- ],
- [
- -117.24747,
- 32.5412
- ],
- [
- -111.13907,
- 31.1977
- ],
- [
- -106.70059,
- 31.23529
- ],
- [
- -103.20694,
- 28.64618
- ],
- [
- -101.84463,
- 29.8158
- ],
- [
- -99.20792,
- 26.28744
- ],
- [
- -96.79092,
- 25.75432
- ],
- [
- -96.92276,
- 27.96911
- ],
- [
- -93.47305,
- 29.68226
- ],
- [
- -88.94669,
- 28.87732
- ],
- [
- -88.6171,
- 30.17736
- ],
- [
- -86.2001,
- 30.36713
- ],
- [
- -84.96963,
- 29.43379
- ],
- [
- -84.09073,
- 30.06333
- ],
- [
- -82.97012,
- 28.95426
- ],
- [
- -82.97012,
- 27.26824
- ],
- [
- -81.25626,
- 25.07956
- ],
- [
- -82.09122,
- 24.56105
- ],
- [
- -80.06973,
- 24.76073
- ],
- [
- -79.85001,
- 27.11188
- ],
- [
- -81.27823,
- 30.70777
- ],
- [
- -78.99307,
- 33.20554
- ],
- [
- -75.03799,
- 35.5983
- ],
- [
- -75.85098,
- 37.24252
- ],
- [
- -73.74161,
- 40.4586
- ],
- [
- -69.89639,
- 41.60224
- ],
- [
- -70.68741,
- 43.17629
- ],
- [
- -66.93008,
- 44.69516
- ],
- [
- -66.53458,
- 43.08007
- ],
- [
- -64.20547,
- 43.35229
- ],
- [
- -59.50333,
- 45.73221
- ],
- [
- -59.51431,
- 46.24762
- ],
- [
- -60.0032,
- 46.25901
- ],
- [
- -59.99222,
- 47.24506
- ],
- [
- -59.00894,
- 47.2376
- ],
- [
- -58.99796,
- 47.50267
- ],
- [
- -56.51504,
- 47.50267
- ],
- [
- -56.52603,
- 46.7477
- ],
- [
- -53.99918,
- 46.7477
- ],
- [
- -53.9772,
- 46.48358
- ],
- [
- -52.49405,
- 46.46354
- ],
- [
- -52.50504,
- 48.75361
- ],
- [
- -52.99667,
- 48.75451
- ],
- [
- -53.01315,
- 49.99551
- ],
- [
- -55.00168,
- 50.0061
- ],
- [
- -55.03738,
- 53.74721
- ],
- [
- -56.00418,
- 53.73421
- ],
- [
- -55.99594,
- 52.00107
- ]
- ],
- [
- [
- -59.50127,
- 43.74954
- ],
- [
- -60.5024,
- 43.74954
- ],
- [
- -60.5024,
- 44
- ],
- [
- -59.9984,
- 44
- ],
- [
- -59.9984,
- 44.2494
- ],
- [
- -59.50127,
- 44.2494
- ],
- [
- -59.50127,
- 43.74954
- ]
- ],
- [
- [
- -155.95024,
- 20.49523
- ],
- [
- -157.32675,
- 20.49153
- ],
- [
- -157.32903,
- 21.23181
- ],
- [
- -155.95251,
- 21.23549
- ],
- [
- -155.95024,
- 20.49523
- ]
- ],
- [
- [
- -157.64488,
- 21.24845
- ],
- [
- -158.28534,
- 21.24674
- ],
- [
- -158.2869,
- 21.74996
- ],
- [
- -157.64643,
- 21.75167
- ],
- [
- -157.64488,
- 21.24845
- ]
- ],
- [
- [
- -156.12602,
- 20.3247
- ],
- [
- -154.74617,
- 20.32841
- ],
- [
- -154.74174,
- 18.87578
- ],
- [
- -156.1216,
- 18.87203
- ],
- [
- -156.12602,
- 20.3247
- ]
- ],
- [
- [
- -159.29077,
- 22.24504
- ],
- [
- -159.2893,
- 21.76857
- ],
- [
- -160.28917,
- 21.76591
- ],
- [
- -160.29064,
- 22.24239
- ],
- [
- -159.29077,
- 22.24504
- ]
- ]
- ],
- "terms_url": "https://caltopo.com",
- "terms_text": "© Caltopo",
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAAA2CAYAAACCwNb3AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAuIwAALiMBeKU/dgAAAcppVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyI+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgICAgIDx4bXA6Q3JlYXRvclRvb2w+UGFpbnQuTkVUIHYzLjMwPC94bXA6Q3JlYXRvclRvb2w+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgofPyfmAABAAElEQVR4AeW9B4AURfY/Xt3TEzdHYMk5I7KICKILhwE8DCe7eieiomRByRmGjKCAIHhgjl+PNUc4UVZEggKSdsmwsMuyOU0O3f3/vJqZZcPMgnfeHf5/BbMz3V3hVdVL9erVa6HNhEciCxS7VtBJKvsDJlWUxCjFa8tdk+6oD/zU1ZOMhyttYXYmK1EhMlbgfnudQWgd161y8+jRnhDZgt6+ZdIkY0nU71N/ijlFyjBneAMNTX/3lSZH8k51u1RR0i3KFHZTvrUy9qy13NWvVbtebkWJ0agq0yusdH9+zv5u0Ym4YgfCw0wHY6Lj93zw5Iw8fz2C2WymjxKo91q/U8xmwGOugufhDUuaFpcV9XJ53T0kSUo+VFooJIaHxSXGxifbnE4lwWASL5cUHRA1YmmEVn/Crsjfx2gjD26f+dzFQJu16wzcv4ZvAWU1AXhUVRWGvrSwvdNj73uxorhNpGTofryiSDIJGm2HpOZ9y1wOKdxoYnar9ezlyuKzbSITbSqTf0mMitvfuVW7febBwyp5mykpEtuxQ2aCUIMOhEaTH/qkQHEOEgShHE801wDg9ZNFELwiY4lhXmFWxbqPVzIgFquGWARoYCJ6zRsz/YS9eLmLqYUCE6SanVDQcZHZFK/S0RQZ0a998p2bhz+zK3XLFk16WppcM2+tK3+bzab9dXqx4lmuoH7G6yc8BHQ8+euXPUq3sNiI/sm33vniX54MVr/AUlNFlp4uY+LFQatn/i2nrDDV7XGnWEQlslRRmFslcFSmEUQmW0DSCtEDkkYjaMIjQP4K00sSixAEZnSzypjwyB/ijNEv7pix8jvKVpv46F49qQY8dzw3+eFiS8UTZV5H3wqmGB3AFpfHwzSihsn4ZjYrANMIzOtVWUSEwACHiH9hBItXsbUMiz5q0Bs3Z8x68U3gG8Etms1mhs81EW31+Xj2/15u8ePJQ0MdLucjFtndzY4JLGcKk71eJogiU1VUSeMjAEhZVpnBIIh6I3IoLAxwxSoahju5kTrjBze37v76xuHjj9M4ABaCqQoeSRZZnKLX6ZnL24CJAo29L+HndZcCsAUAAzKoJgNTLe5wfivPUgdqS14ev2cTvOF2o1b02uwNGQawdhIxcEzxMlmnZS7Fq6/9POS1v02rIKN+CVTmRP0BMK7QFq9f9TJFr2Gq7KlbPzghZhP/0+XUF+c/0Hn248suM1eHMsDE3G7MiwAABUUEshHXlAVZNRjCNRgS0Dv+qEx1uj2YTgFI62Iuqk9kkTkO75A4Z+WQ3gvHfZPcptPYDY88fSGllkQI2jcqj7aIWAmeboDnEuAplQGLB/3i8DBFgzyyCiIBxmvDIjWEWVoUdCqKrLhloKnMLCB2C+ik0F7SO8yl7d1yxrBpf14zd/6Xk5Z8CGRk1RE/KCy4mboltYpZ3WoeN/Orw7tm54tyhMXtBAFgFDAk6LpK40NEIAJ+ozFSQ2oApgMPMbser0Izb0MZG7IC6CaS4J5qObFv8i2Lx5n3zNu4mIgjNRVtod8EC8ZTcDMvuqUyD2c/CrCOPsSKrrdPADb/N6bPrQHsXoFh1pCSImqTEItISuL38Ac4RdOH/tII1voncJYjYAyIO0uU8dqSv01JEWWR1w9YatVN17x+jLEqY9xFQvZqyYeMKk1wj/mjVu68fPrjLE9lhzK73Su4vV5R0CjAP8J9AKZKQF2S9JJTVQQXUNCFqaLfdI+eUz4BhVBEofIlDoey11Yw6LvMX44OXD+vawbUJSKSahDU/AkuCrygcVP7LRy7cmfB6Y+PeiwdSh12r+hRILUFFXjI4ZH97eFbAxgg4RRmg5Sja9As2uDwiETAohe6sNPpzVbtHQ8VZ6cPWDZpM4idIz4RSU0grlz5iCNdNn/9bpOOsx//6ainbPlppyXCYnd60EMZRKFidDSB8aE2MRoamx8eECvzKIpI8ND4YCwlEWJGVETF63B7TtnKxJ/txYtuXTx+16a8/SYiDhAK56KiqoCSiFOAygHSH+OjchkAWAXZi5HHyISUIIFhJlGPAaREncVFrQ/q5GPgyxMo9tu+r1a/jyHVrRMzRjdbTRu2MdNbOa3Abge5qSAMkRaGErQoTO5vSxy7feWADCAXj+w+4ayIyL6UvWfEO2vbE5EQ4gWpVWBmM2+uzYxhG391l00rsNkUjax4UQ1xDvpw6glSNuQtVEhcAcQrSBr0Ldda6f3eljdyyJrZu8+rqoFU2QBSVq8kQBxzvtjS+Lv9Px077i7vU2FzeCTONJgWCE9S6zfBQ51DGXw4zmslUaPKDrd7l62g73tvvfVPah+wUBbQXSCBewV+Xu/fYAHgCYpXlURje8HA+sY32U0wpw5sRZ2qJ/072F9PtVWPfnv9yaNGaVFc6b1o/OwigzLW5XC4RfB+dIS4YNBEtykLvmX6gMNx1SFoZtykjJhcHRiJ+4xiDTt5/uR7lDc9jasRVF31RDih3r746XVnRPdYq9XhAa8lFSWkFYeLs2rw0PxcQazqVft+Q0hLQEqJWR2ub0rO9Rr13OS36AmQ0pfhyl/BDyP7cu/WLT9WXI4CIC6wE60XyB0KYYn7EQw0NvTxDeeVSmv/ghILDsJ0zOlxHbQW9U1Z9sxMypMCY8CVfpCAv84TAQiAsQT0irHGMKlnWMLOlHY9222d9+LnGF0xMJjXeTeqgZelObB5s2fYaytuyLWVLbVUWsHSBHDF0HMBJIdAgaKmyiIYhEbVajRQHkRonRwhqlVe5yfK6Zhbdp/3WJL/+tKSxygDIUEgI36T2iU//PKSBy54LROY3eEFonGJEchT+5sQELCAW3lFgoVggiYlKqqCZTDRVfAEBGfIqpdtDvdhW3HavS/MHoacih8GXigA213PTZ+RLTj7QP11oz19KMLw4wcWBjLDarIKHhLG0A5kiJlQRblE0Yii1upwsNPlhdOe/eSN6AxI2dB6aPB+/c/ukjLrRSdVrSS1l6K8rWIbzPxm6soX9hNEWFQxsznkZPzPgL5Kw+lZmTzHpYL853NVF1mDvNDdSaIETdBPyIwgJphMrLFoLHeJ4gmnwJwGr9zIpnrbX3TbgZIYI6gdwSog8QrVRJPnsLELxbljcPkWkKBK6hJCULn9F08ty3ZZAI8kAJEJ7+okugkVX1Z1oqa9IYpFSYZLxbLnrB4EHmEQOhaqzuhsu4X0GBkaJBkT6iQiEp0gSYXWCnZe0ax87cSJz57s0AFrelriMJYBK+XML9+L2fLj19MrXDbAI0qygppqQRTQr/AE+CFqWmjDWEPJdKlYkc/qYTvQKkrHE15rtBPGDqjaCqmstesg4GA6BCEJHouWxR7OPDwCt1Zf9wTCRRwZDmVFig8Ll9rronZ1btd95Oa/jT5BnRq1aZQ26XKSbE5Pp8s/VjKnu4dvfqHdj2cPDmQON1iqJjRxQGUgztwjIrG8fVKLme2bdP/IPGRIMXV4h6pKmzetGCiez1ybrdrai2ReCWGy53q3W2aXHRW9xr2zoc3GR8efMUP6ZkA4E4H0mDd6WKantAMQ2wOWGxQejp/YTGBaQXNrRMN9PVp0WnRrcv+daZ07WwmeV7Zvb7Dn3C99ThfmLdxrKejqcblBJCwokcCiAQOf4AGDaPRO+ktpKP5a/4ULNSn4kQFt4fDpQ8PKtUoscwIeFfDUIg5k4wnEoej1Ok0PU/zOlo2bzRvcJeXQsN69+R7H6q1bY7cf3fH40aILz+W4HbQmA20HrwmcRayElatMqHwQFfsIhNokkiUqp8/1kgJSA7JY6qCPltvEN5n15eRlq34CgKS7D/lrkmrub/Zt6AUsQfUC/5/u3W+v/1LZpbuLNaThk/SAhTRIIh3aq8hi1/D40sE33d5zyb3Dz1fLJvQHp8X11nFbNqTsPPLz6WPW0nDsitCOSR10AoSwP4leu8Sky2X5t6HcmQw/cVCdHtU93eXlZlsxlEhGHV4Rmy3Jxrivds3f+OddKLeOCvvaU0cOHFiA35/Qp8u8EVuOqRWpqkcmGIMyZEgGsczlZOWSnbj2ayBUhaX6YL9YVDiwFGZrvi4LNbywNGNRpmkhmf6xZ8HGh/egkvfxQaL+q5PvvrsU36v/vHZ2sT3/3FslDrsCI1ZQgqXRYW4vc0ieHpM/fb2pCAEKoSzTfhN2d1RYKtB5iPI6I0vN/ZcStc23m2A4iQsPl26LarL7js59uhFxEAijNm3SHkg6RcThXfPrjugR61bcAAoH+MHVgf8S2GjmGkat1iTLLvdtFtlDa6ughekmdhOUOKhVLWOT5hBxtDA/biCu72+Q97vJpFTjxrTx+S1ik9ZqDUZSF4Lit695US2DmeNs8eVmNDbG2BKukt29fOZNpR5nV5j98TS4moaMqEKR2jJ95Z9vuYsQGnsUZh2pRfhJ1dNuvTho3QS+1zPqnqFPddSGV0Ifk3xlqUTNhA5AiiisyGG/cdimpY3wVGHpTF51eFsYiLkP9AcMTjWDUrXiGAQY6BVNG63JPbB///H0KNVcAx5mVvlYSV8+u+ztFrqwnxnUMN/WSLWK/D99kkWQKwXFcPLsmTaiVhCiI8LDWJTRqDcYjRLp+DDaY59FhewTvFho1ZrSupX+nncg/kCrEKeiIHU0xSm3xbecuXPu+r7rh43JIqlh3mGWuBsIdswnvb2+Z/rnW07+cPEILfBY8ujRQTnUFfiC4uCVx/+1X1fALHDbmnOFiMvwugAAYiIAKRrbHs0aNfyccjzOWriBhJhLv8AHc7jlFt9eUKwx8uNGfPtBqWaBqVkvYQd251miKbwjPfnm4Bd8YByCc+glEYxegCG2ZpGqKzzwag0G1jKu4Wvmu/5S2NmcqktPM7uxzggUUQm2byaud9Gzib0HV0YbIzYzgx5snv7XTT6kZF6HRjWWlFfcHMhx+Kefm5TarTGcJEMxP5IeOokl6iP+uWHgYyUshUnp5hrwMLNgVoA7vI/Nw+K+MWFfHAyAxq9O4p3ARnIxNkTPFeVqxJYxCa8PiG258e5mXV9INias6qgJ/6CjIfJiQ/jTKFBtZOw0wJ6GvTj/ZNSp8ve5QdDjQ7wLi9Bw7W3RTffendy32yfPLnmOWiDCOHDKJzWIWw1dM3fZtuO//LLbXZJ41mUnNypGUoW+r+uETmKfkLqLPn0RD4W4DXFIrA5JItRJWhp94EDTsJiKOwbegVUvYwsWLKjTz/TULXzCW7VsfSFaZ6gAvRHL5WzdP7ZcRPGGaaihKlR63MStGXszmyOuxW4Dt5ZDwsIBVGVNM1HPGic2+YiKduqUGhTp6VkCK/IhocC2x3DvHp+ptDY8PpgE1QmI7R7XjVSWUqGlvJlghHWa1jscPfjtGn+wZlc1ko5l2yy/0IPkdj5CqJEJF60GlnFYPFpxN8QSRkbl/hTBYVHVaK2O9WzV8SZp9+z1L9eubMOOHeGf/rqtTwerdVShtvLBLNkmwRUFLEmEiST4RNau47dck+kSSp7CtDqpoSxYbghLmLdtzpoXd6ISkhqtBg5UzP3TSIdlE7as63X7kgmvHnaWdK2wV3r0hjCtEXtP5b+lwesk78nLeczicQFryD2i/kRbfY3j24dERtTBicZ8d1pph1mPncL1TbASkYcBV5+q187VL1XQFNtt8NPgyUPqzKtb3msDoy2KYlfA7+JVvRzNE0hbjBT1l4Y9dv+B1x6fxNJTU0OCnsJSlAwstVtFJOWcLy30YIqx5Q3vD/ytqpegpiswYbvi1f5QcM4VeJZVVuAppi6AcOpwhECmQHHsi9OtgOdEtcf+n6n4TmftW7TzZlcUsSK53KtIZDEOUrOqeuxeWSorq9BLJAYzs4tE9mYGLXb5BIzv35+sEbSj+M9Rb6+92XQua062UDmk2GmHSijC2hp60whlri0BLr9hwItFkBRpNIpNmWFr1+ZtR30wfm4OVZICuzwGWD2QtpnDdf+auQt2HP3VfMyONZfMPEbRoDqAFxoRmiClIL5Y/P51+kfr8cCRgSboCr7UBhXrDzwUWYndEvvl1+mReG6vnSdwHdh1LrDZ5YjYKKY4XXpy3KudYMORnGDMsaIp6pz/4eG9+9s7ZW9DqHtggcH1fWCgQlt8UcawrP5CSyIu0EzovQ7zArPKzIyVll7OpU6YwsM0vt29uv3FxolUqZfYPbFN+37lhwlrC0g6/0WIL/RO8GIN1zYirttl5MnIMAfN2TkrSyU7p+xwZju8biZEROrDMa5ByANbRbIUGxnGEqIidFImTI1UI9QWcep7mzpl5meHaXUaTaw+qqilLuGSefgT+/D43j+vmzv0QkHeO0edZQb4FcENglwgqOS/lrA5S3tbCqzUUhuN0ZNgjHp69/yXNtPOQDJMt61iBip+T1p15JurO2deOPvmpwWnejJs5EgaiXQSER1VI/SRLNotlnOsCeKL9a9B9x8sVW3M4JKtMYq+tWsoTABnAIoI3suy0/TrmaMDANn7PTfztZbPelcNVJ+aJbBBbbq+ZxO9hyEGHGguCIUAqWUlXK8z7uT7SKijwFYebyfsBcLj75VFUrX6AQtOF8CZk6kH+G1zCtxSMqrlqPXTj9w3J9/pjck5+LzV6w6DixgEGCRILajgOgDlmpliJOPeQC1hBqNY7oF/F19ehaQUDbwzWaFUOYg299Y+8EQ51kA1PHKpPtzjI7/m0w25D/T7y7LOTIgig5RaXZoFGobjI9xOw+Ni476Q0jYt7X+5KO+xtnOHJ+tVsVO54hG14DqwbFX8qjMU9l024ecoKfyDLycu+XDjkR+/e/3Dd77b7yi+UXV7PXzjhtTKkLAHWrzyzRUBAIbdGikcA9CM6bcP7N570rqHxx5DLhFOa0JR1kY1fbRPavRbOnHCP7N+eeECc2NmvF6dRivCIQ6dVaRWkdGsbXiDtU927vViGvsHRiGDS5orrV2HvzBWWHLwdHO/uyt/PLWvCEgZidUC+lRN9fCDTrNKfodFLuzwFufM26+q6T0FwROQFv5svi+fmiW8P3H+SzXu13NBKizt5oczqYeH89N6fI4g7eJFibWIiLOSKTUF/yDh66ndx6CxX0P8a2Z9Gas/C7jkd4lvarPmnYTnLVc2gnJ7SDVohKL3hNcerj/00wzUM+vdkn1kLq9S1fx1cwJh6ZnuT9Iz51Rvr77f0i/ZJ5df0Mk3K9hdhTM9VQKbGlZUWimKuZ1RTHC2jWKlj7SfOfzEt//8buT+RZt79F487h8XvZa0vLJyGdwc2g55btafiIZASVho4D9O2TRmOkfTsPgpe+etfzmLveWXGmUkNUiXVB9at7j1iaLzmw/biwZUum1ctQNBCm7sBxhNRrGLLvJs15btR77+2JQd26hp4kpXLCl057pNosYne59o2dLZc9HYo8xjaa14sLdHDpNBEje5Kqr3nNveYeayKaQp3E9uNVwF9e9+VyumEvGc2x4jhtbHcVQCxwBo4VqU5fN2/i7/vNbJFVUSI6FmUxXhjsysLvtBai+hU2aojNXA8f0kWKnN+mDKwPNUrDexrpFhemK9OnY6fvzyubI8puJQmIA9iBCsmPxVXV52Xq2Y2X3+qIOHFm1OB+1K5hSzAslB+FQjEQFa8trVCwvBOiQpSZZK3A6rip1VLHHsilZnitPpJZOXlUZodBcahkcVV7isF42SvvsFe2nDS56SH/ssHL9+97wND/35hZn5Lpd7YokHqijWAzjAQ6ZhLqQDfJATBawMWPPBWwfre0HRRhtNYpKo294uvuXITyeZswG5iMETMy5jrTHaJwFSVkwcvzc3a/UFwaNDx2F4kDRwV1YVDXbT4U6UHNVk7UvTV81sKwguNipZyzbtJ6K+5smqMVr/44sG+oi9Ea6y+y0uaDb1SGLghuR0ueTtpefu67vw6S3PjJjxWFrTpo5giOD3SbuqND2wGZ1PSefqVK+Yhk22l+fysxN1MArZCDTMLzOCITpNOv86KBV3iV6vnjLqEnLQQumbCSiexJl3pFXcMO/Jg2Cof1Khc+BuHYODPy9QTFQqvR4x2162ZfDKaU9/PX3VBjPWI34JSTK7Cj8y+KG6DH/R0F+kR4pGYmfovU6vM7XWhh3pG9vs2ZQuPTpmLX+rx/dz1t15YNHrT+2a/3LPnOf/0aR1XEIXtOKcuOkF85dTVjzTPizhTzeYYs4nhIdpZQ3cjqHPYQwhJEio0F4VllmgDxCHGGnSa1vrwktuDEscn7X0rTuIOAh4UqkweOAYGd5H317Vsvu8kd8eqix66YLHphPdMihE1Higk5hMBm1yWMLJGxu2uHHbjOcnEXGQmwkrgwfvdUMcVXMQetRrZenYqPFXTRRoBIoXi5HQFELFyKcJ29vyT47C1FWbF2U++eoLf4KG4+Vckk42htorCA0NVrU+xDHpjB3JggUOFxQILtowuZGilrU2RIZC1Ppa+k3PiGlSAb3W8EGEXgeEAlaFSIS/tHdHG9zlXhc7UJn3Um/z6A9mbX8rjtRHFFNRX9B1VYgqq25LDqZGNtaHsWbayAV7zBsWna16xAdKYljNsEzfJtT/jZpPa+jpw7ZsCB+1aUXU5tEzv9+Wn991yRsr/tpEY32yzGnvbmFeg42GGDMaBmNIGCY0wRBxLjLC9O7tbZL/bv7LcBxJZQIAxiBnqOl+C9WdK6eN3Z15ZM1Z1a7HVr8Hbj4i7II43SSL7SJjWfuoRi+Pnbpi0mAQBhEWierNo7lzXQDl/K1e6cB//1dQ3KoJRrUsgyZM0D8//JljtywY8yFTHEMVl0Im0KDuJlQJ7ygdlsLRwV/chS0rsj3b+5jHru/TqtuS54ePLSS1hBAh4xq5NQfMLwTyLGXw5MOGNqFi0OQbXnj3gpmaAmMeNOfvcRN94IAM7nD723n7P55nEYVmIF5iuJxwgrVBzyBJ1AKrRS4yeh4q2Lat/4DlExd8N/PFTWAuJEWwxk2tcqEPVkfte1JnQ/SeyPCoWdtmrNxBD8nsa2gUA3WHU54HxMGwMNQ+vH6i2KTUIjRt1VkzPm08d0qj/Hc1bGjD16v0eeL1F5rm5l+68bylNAq2W2+rqDhvUmzMkXfGzj1LAFID5AZQBIL3D4A6/r2Xmu8/dXTzLxW5d5ZhrQFB5KFVlwdrDZPJKNxgiM7u1qrjqE2PPvvtF9Oe4wiAatQAEvQyjx5ThrPHp1/44O/cq9d/VBJ5rvsU3i9OZesZ69C8zYKi07ahZ9RyrQYjgEMM1cioZjf8RKKVVFE+VVEinjLpJ1hP7XtyyJqZyx59dvmKNB8iCECE3+T+X+ay+4REzeaqrgIAgUszA/uXmHFVXdf4g3N9c1qa+5aF4xYVOYteddnh9EgUUE8FEDOURVIdHs95wZnocAovd5r72JN3rZw5b9v0FVuhfgIJmcbcGQ4oQdYntauW9izeNInfhIhO7TQOHJ1vyCk7zp83rP1403155cUDxywa3T+3olS4ALNsg2MHNL0WjKqINoXtjo+I/eT9cfO2+yvVvDFiSg5+04enbP/3u+PmCeQ/FNdIJ6ePNnOzMj26Z83MUd9m7nvxlGw3wFTn1SFCCYIS0FxoEnRGlhzXbMP8KSun9REErmunpJhZRiYWhiCCOV+81XjfsV83HXCX3lMhO5fzpmLO0SSHYoE8y/X1pxNUS7P0xoipWXesmjolX/C8YLU5vHBO1F6tE9gE1GgkEBPU0CPuUlOmbFuSPWfEiLSXFi3d8vT81/k6JCUFC9WUoAvVK+PgEyFwhvSLqCtP6v7CBhi0AoPBRyB+4VM32+90hzNBMxPhgPhaz3kj0341Vtwpk886HW6qJ3FdDJIY/otKfrlVzteKPa2Vl77pYR71TZQhZtqOmc9hd8PMGKmlCzL4WfZQ1VFPObcpyuqME2a+CB7DXl7+4PS3lq3K8dpb5sOTEvv/IEuYfoG6uR4Hy1UdQEND94YVheNaz3jkwI3N2i77cLz5Y2pk5OZVD2c7Cg98+8yq09UaVbPNbzqzcWMLDu289vy0O3LKC6fvK7pwW7EDm4+QGhKOCUOzwqLIIPUNS8xp3bTF8DefmJaxdeoq7tJ+6nJSldS4dcnEB9L3fPfqKa89FuCzSFjEuF/zH2EfpNqg8J8+dUj8dtrzq29bMrHPLjX/QdnhcsMnTcdtXQHWXbscroHSeEqIICmywysf1ZS3ys8/8doN80c80alhm7n/N272D+aMjGtSu7Bg5LUFaYbf4mAgCzaKoePVI0Fo7ZCZWQ/UoVrw3Td37lyDs5uZ798dXe8YVrb/i1/O6rzNNR4VuyOqtj5JQrWhT3QYEschVTmnsoLl6G2Dmjosg25fOuHNbm1vnL4+bUQRqvcHhPAFafBBceWvBDEjcGpKT+eesVu3f7Pup0vHHz1vh/OGLHi02PsENKBHURuF8C4NdAa3Tqu7iGNblXbVo4nQSD1OluR9NHDZM1+2a9Pur0qlO8dl83zUY8EoS5Sg2WbXas7FR0brC4sKaQvjxkXzRtxazjwdc3G4B34/Xh1UCjc6gnMBmg7RcayhKfr5V2asmUuLcFprkJvJZh/hKrTo+ipj55oTtuJHi5028liwa416k12mg2Z/3ARjBk4ICWzn3HVDsbj8PEuqHFJpteE0G05Q1Yu2vj5jt500H5hbBLnIalOKdK5biy4ey+i9ZPwbKd37TFnx50fKSK0Adwpp0OC+v/UtvfkIKwzno5hJbwiVk86zh1xMX8sM+c/1UGsc/4Gf/JTh8rS0oj8tnX2zq+LCz7kaWzOsKMBEmO5qjfmf4ywahggHanJUm5RjcT+e/2vZ0LQX5y/b8syi5fWYzBkRCK9j+N+X3PfuZ+9vOuCqaICzwrIRZ3dcGHEEsdA2NUWwhobIH2D23ZwQ3XDv3U8MvZwmwMSINPOnbYk/HdjXqMBe8UR5acXrI/9y34jPM/akZJ069tkptXJhCaQCKyghxzjf1o0b1wocbMCJsOTSubUia2g0MhgKDndq1PaZd0ZN/6HtzLVVUiMg1R57ZdmT2zJ+WHPEUxkBdUzWI96RCwEt3NiCbaLXm3IJGNi2ySzzR0sgDuKafPd3r3nTvbctfvrVXTrvk16ckQC3plOG9bDsK72l/ShIHg04midPsUn5gvxE5U9bBz+wes7oTyYv/QxmMOCvr50rpa7tF5kkmUarKbBUuAut5eepVBbcN6pKQxUCN1ZaTXlwZoHKegC9wQFDL6iryvl/kJ9XpaKYUlt1OZj+zOIVuE3qMsfNDEhZ8q74bvSygtQNK2/OKTq/e6+jqKUKtRwqH/yPr96On1AomomKmETek4IlvKTo7LIBSyfe36lt14dfSht5nqtcteKqSbM+fitu/5nDz+/KPfn4ORu5/Ekeg06rcXghNySdlGyIq+zStO2Et0bOfNvfF/b6CL5sIS4ij+17F1ml6PPs6i1bjF9+uyNxDWIv4brfk68+f1tW7pkxFcw5yCZqoitxZsapk5heo9HpoB800Ohko1b/U1xY5GvfTF/1Nvdf8G3wMPNobsVQEOol8suff1z//cXjw3Os5RSSB3suGhGxq3CQQW+41ZhwuXPrlp9tYh8wMzZ2zGj4j5iAuLRW4ESyc95LT93/wsyzZ8oLlx2zlUp04g4UIiGCC+fj9fXPhwiQ97QtBX09izkaOMtzP+23ZMKyH+eun1O9nbr1hK6elAjEWRDOuu2Vq1aNJrcnhrquEEhmKgqnMxxxHGqL1CULDuzLExO8xsT1JY0Gu9RqKxQhAqkBDBmNUrBeSx8/PX+Hqnaas3jsO2c05UMLrdhEhusRtttCBpWoDgLGByYQHOpgGqXYavV+77T1unyo8vi9G+c/+Pm4RV8hL8frQBlp+6+73vmV2Qd5Ky0eHRzRPJD2cFoTm4RHiV0iGnwx4OYBo6b3vyefCsICpUlvlKcyn4WLryM3wcIFWzPLcbnEyWlpJFUuBCp/7ampO/F7J4VsuVSc0+d0fk4UNnLcjQzhUuPwuLJ2DRofWfXw6LOB/HQQ6tTly8RNgf2M3bl6zpD3f9y2+bTqaqg6XF69Ros4UAhvBXWsdUQ06xjd5I3RUyY8PURIslOwL5TjMAXq+6N9A354CkLb6i9oPp2yYvnYd9ftMJ469topT0WnChvWajh1CM5MQRSumqCjE4LpcAZdPldRouaHu2YPWD65+/ezVt9D7eDDibFmRVfwveZ9UCcQy4v16A0RCfFpc99rN+eBRw5hDwuWspqRJ+HcVMps8NaSVSdgDaWK1a4ePADTqnoN2KmEJ2rwlAG8IC+B/ohLhxypd6+c9vhlofiVw+4KCYGvEL0E0SYhRYOXrnkXIfywPBF0Gq/gOe4p0dsvyV8O37hkztvj5i7j6igObFEJKctaZvLCUcQAlcopexDkFYsKfYKla6M2z7w1bvYbW9kL1Z0HuQVqxpa3m2XmZD3icrvuenH+iKRchxXAwUQ873FNpNZ4IiI8Ymuflh2/Nj/wRDY1snRI2iV8VW250kXASY4lM23KELMmg2V4A/FwZ3y7JerggT2vZpZeHHrJSctv0aMXtBqXjHPbBkg1Y3Rej2YdR78yYsqXX05dzhehOCTDiQqZ/9CJ1C10wEseAi8Pm7gXBNN10Mpp888qebNPq07ovbKMdSGc2eDeU4PHBu82XK/BVrSqHdFDvpdzB6csfebrjDkvDiYi4RuLaWm+gldh9tDO4KSlyCYj9tJFIYEKBbNiIZPE1Wevl/ZzrglZqS70Gu6nAAIMgK5DJVov+ImbbZ2+6s2ZH723M/zEnjVnbaX35mNdCkqDFVDEfirWZVdJxGiwwajVCpJ8wVIu7C45v/S+tXNLPnt2ySZS6UhqSVhky3YEFHTKLm3DiEjWJTzhq3v63jZy0m0PkhjVpGAR73MD2UxqqHD3qqkrth3NmHpCtotONyxcZP3wi9IyWthLlrZRrvIhRaXFnsHPT3uvS8sb5q18cFjulPdevivfXlnx3sgZVd6aHP4DzJNxwHeufNn2j+P2Hz847ssdX0/K9FTGMI9X1mKMPThgROuNZmGRrH1kwlsjn3jq6bREBAhIYVLquC2qz3fHzKv7/82fzQe4SgGCIcI3j3tn9btJF86vPucoH5Jjo/Nh/LQnnWa/Kpl4oJoBaXSy0+k6oi0e9Kflk5d9N2v1bLawPxA4gYsNEIB/WRx8BGmaaVnghprsUOA++z9MnLjRPhlxVjz4yDn8vO/B9eb7z5fkrTzqKGvr4dFL+Lhdk7SFMqiBe6ByprhArbRY/566aUlm+ui5PHayZCcvKZwN6KpPqOjQoOmU9AmLXtvOXqwuNThnfnjtopt7zB/x+iHZ1km1Yv0lYi1AthOSjdxNhoYPo4x4rBVOh/qrYtX+Klsfz6soSRu6fuHQTs27Hs7c/dkbty8a34BpNf+AC8HppOg4I4hMLrNaYnCm//Z/7PzqT5dke2yx3Y44DdgSod10FQxBpxe6aSPzOzdpNeb9MXM/+3bGmurw+dQqEO/143Ly+2BPBklF9KvzwjTtxkcnn0Gt9963zjywSenltSfcFZ0RmhQaCc7ngC1x/K2nWTLjgtnoSysq5FOKOCv15cXb08fO+56fB4I6gRMOJLfqT5heLwxhdrfPalilEtQsRZIJxAbrSbUNT0gWEo1XJeaaVdV/RW4kFLIUah77aIL5U+T+9J4XZs44W3pp9gmPLRJ+fDIPrH0NahckLTRYrbdQcUsnLpx5B5vj7chrWmokGSJv0IfvfvCuB//ybG8ejUKE1PA7D/qkBiLNLd1bcHJWtgciTIbfuUarBdVp+cFlrhH4OoKR4T+gClIgEgrn6DmkFphckvC1Z89Xz0Ak3pVsfup5l1dYVuq1shOWQkhthZXhAIsVh16YCxJJ0DgwjIicx3TwKGZNEDmxbUTCG08O/NuzPIxLQGrAJR4iUDZ/9UbDvYcyE7cKwhGuMlw3fln1T+41P0V/MsF2Aojw2UTzdpTtAheKMZfUklUnZWc4XHMowNtVTcKQJPD706o5TguLz7+4CvUkY8eML2midXAf8SKuFlA4GLHxe+BBFAe4POCvH6QTWEHpcWCHifAWwsGrqhyqh/xJiUyqbv0uPwJrIOCsRAzlqykrnpvx7aa/h/34y+JKg3fCaUsZ9tkgTXhc4/qbBJFI4ADu0zpnixFznhqH3C+Kt7boOPnHBS/3JeIgvcvvPOgl58GHNiy6CQh9ZJ+tYFa2rVLVyFxs6UAc9XaTBpPy4DyYTo/gecdLCuT91twX+yG85gHzq1MHt+/doYGsec5jd2RX2KzYDoEQQCER0TjC4F/SQGeUmkv6gt7h8R8MaNejz46560YQcXD4xqXSbj93bhyx6flbv96/98KhoouPUtevHrSBcv0xkx8RZEIE6sH3s9b9/b6eKR1vj2i4tQGiTMLED74U+nRfoNeQJBKcEr3FXluPxzYvuxf3udyINYSDrZGtKpCz5jesRGBeAuYVgbK9tEaulbDBR3ewu5kt2Oz5WK6cZF7PGRUfGKpPJUo6B2EN6g/RQq36fuMlEQcxSFK7nrtjdMWBRa9O7JnU9s52hqhTEtatiLZIx06v2jZUUcnpdLIKr2Pq6t1bjNJrY2f/RLBwCrxMLue+g0p9lk1YvDv35FzspmMIFbdGo4H7Awb3NyZEH8f+oFa9VF4h2yLkpZ3mjtCuTHtyIaqZad7/xaIjew/0PF5woV3bqPi2JoMp+uDFcwd6tOhwqVF82+/XwCrGFyxwCUjBgqO6S/zN5vGL/3n2wNxcyBpJ8ZJ9+o8RtKHa+BVlZdXLaKplrfoZQARSu1Y+ODIXDwYNXTt39LGCi38/4ayEoiSA3YS25BCG4AAWy4HX65niy3/DJY+Ugqg2dh8NEImEwCNAi0PCDO/jqAs3LfqRytd89Bh9V6XUVMmTnu6Om/vUykK5YhpzQJSEiP9VVeZf/QFpi60Cj5ksdBlm8f/GzPkW6+aOt+CIRo7WOu5SZbkKAvDFC6vbA94qtCB4bOJMupY1+Xrnz0MkMpvBzYRczjkn+duLi5KPFWW/ftBa3M1ps9ELnOigAm1b/MuJFonQlcVyq022GGUziETIWvK62dyTnzTbiYp3Hq9W+6nA79TOukH9BgjffHxUzsjwwXf/i/OSzxbmvH7IXdLN5bLDumXQGplG4hQSKPdH+b6dAxpiqup04grWVqld9M6MdPVDWF0e2bRid/7JA9vKBU+j+iIrUq1YGsAM5mVFtoqe606f1k9s29Z1oPjiL6JWNxjnu9HOlaYCUPjuCMyBRfqlcgRg4CnoKoQTSqAcvjnqFLuslZIWR0mrPbiGn799bFApCIRgUOg4BNQ6gnV86npzznfOzOWl2LCGeZdi/gStm/qJMkIRwv5UOiz9xfSsoiri6L/kmYV78k/sP+Io6+a0O0lqgJiuvgBEnVdNBBAAE+FnJJ9V7AtwqOUNKjRwxqgoWMa6Ba0AxyMpvhJO4nuf3vJKy9uXPrNx36XT+4+6Ld1cDic24TUKLO6snP37QRsCKBH4DgpP/TeDDnh9RTIQ+A7Pqcmrf8gIUStxh0QgQpsJg/TvjZ55tH+rzilttOEUdoFiYoXsCp1hg64NhwRP84O7PmtJ1eKkOL0bCqWCF+N3cfANbkEsUdUnURlirPRdK9G9K5+YGICCcx2wEwWvuVbpmpdU5Fo+NUv5rzbDTEvShLYS0ieYVwxo1nF+NNR4jA9FwgiZoKpifBAFWfX2kGit8bfNS7tn5Z5/42d7QXebDS7nElRaQf23pEaw1olIMAmiy2b37NPkPX7nc5Oj/zlj9QMDVky596aFY17D+ZGPEsKj9uBo6fksp4PdGRkTVVZp61rutQ/YdvCH4Rc1Xi2kBkUFR9xYbI5gbZpoDGdt9XFlpCemJA1RM5gvnkCw9q/lHhkayKx8LXmr5yGWdfWEajHdsF7z/QEwibWI6j4EngEkAPm9GnUAkzGXWq0olCgLRw9Cz6DvcuSrgWtn1n/jIiL55Gnzqd6Lxj11TnG9objJgy5Inb4GCBAKuCbZ7I4WuHWiS2xjZ0nZRTCbGlX7cgf+whAFWwA5rnamW4G3dwUe+79rVuB/gREd5GCcVGrlDnH57BtrIg7lZ3+Bl/bE4Kg1SYE6c4Ib8C9XI+OMph3fzVo7EqJDxKfGVIBA6Fplo5j2wwmLFicvHH3zAcVzD/kB4m7QJQNwVCPDYKSJ0PaUbl3y9LifL5zYcAaWDZCMb61BC7n/UIK8hfFWoy2ptLh2qMr9nec9+eH3M18YetO8kbkXZfsbZxi8hUsraFfU/ZOlXEch9UsU7E86ET9Kg/NdoqD14ugu0+lYG0OEvY0xcdrWGS9spAHM8KuJQUEn9KtHvvsWoSJzgHMUl5f+Zo3SAGdnpKBNX7kJZRV7RuRgSvfKnY5bj7jKWuG1TGQjD56gDDSTTCwtuX+DA2zzeUw4hfas0xCIBIPE2J55G97qPPexRVleN+LKIpJ5ED8ljkHQsophPTx2+TwflUK7dT+PhYH8fE8wGDSAugIuPjDdc/z4TwTq49INbR+6kCsdt+b1KhDgz1pXePqgo/HWSayBq7KI38g01yEifzfUlCQzmKeZdUxq8Xz+ecs9l9xWKFLBw/7AmwTzIbGLzkpRPF5e9MQZOqiEN3lh3khqhGrE39a//4VFJIX613vwcpZMV9mDPcwjd/6y+JU3zy17W4h0CevaGcLcsUadsViUNSWykwMk0EsYdVpjpM4gtdSFFSXrY1endElu5ScOAqoO0lSH1IAOh8LBqsKQrOWke1rKTL6yQXXs6tUylpnB270hvmkPFUwJ3Cfo+Pluko6psHCNBHs231OoBFMCG1PcuE+vcKvx0eMcP0OM0MTwSPKgbUNlOnXqFLR+PFLJ2Q6zjoA08lcM71oEstXgplS+eiKmHkhNo+Id0UAYVINRCJ7AYwQVOnyUwdSL5zD7+h489793N1/nhFIp4IAqXoCqIKx9rbHh1yoYOliA1ePlpx3gbhSy0YwFCzjTS+7Z+xDOGkFQQqUMabOjakgLRegddLocHA0rKQVnmkPW/7s/ICLBTGjheerOclb26zZ/REG3xq0HvTt6zjPPvP/KsovFF+9xOO39LtrKowvwuq4GEVHaaJ3xAhag27u167ADgZqtXJmCWY9t2nTVoA2t4hsJ53LLKaYT73zwDgmKBpRr0uop/OU3Ph37KkSS7hu1M+UF8fQLa7ag+AVkBFfAe5FdjspThbknqH2OoDAaYY7hN11XHaLlMuQtK8a7MbIunee21fqhSUGBDHbSZb+gMdI5bh6lBvdqJgKQqsZ5f/h7mjgRNUhqdlxbcKYc0Ef7H9fpB6S6KEPquF3ODrtV1cgPstHaCERZs4Xf5wqijS8HaHyoldq10k0ZDKe5MTI+Cw/9a7La2fg1H0r8eqh7ivvzrZ9CXcqPxsE0eudMnXqxVgbfUtQ4nUmQaNr4CAVqCFr9f+amv0kdPCDcR9zOxPILzgN9Fo5b+OLfRprR4uv+D2+8hP/1/dlFXzgaPApHgzdvR8zVa5ggMOpDfJVIfAkDEGxGcVuwwD3/QllRO2oiA//qTT7kUO5fY47+Je9kJ4prC4wOKqi45QRrw0amiNIR9/3Z+slYM8P+hYBXwBKjCJp8BISYtTDcwr2/LTL9WL9pOIPX0ys6MelnRylhVFDMpeawtmHxiD/buXFzdhDXdHio3exHT4OIbyLswK06ayJflEcBUditjd9/86XmyHPCvHChYPbRGy5/j+QbjFvatBf3HbFpSq2kVeM100GrhkkWBILJbEMv2uHnXkIQbGCIvz+zT8L5IWgIcAIJQhzUDM708mPPyISQo//jxBEVG4rQl+WLeCPREVfpgi6zHzvdc+GYBzft3+9XdfxAwhpBrhHUB4aIkGSloOO35i1b6F7QlEKMGinCqM+MxFtNMSoSDUCwzBhEDb1yGd9/mfX16wlkwIC+H3KMkn0RDuFt40q1aBTivMSyA3NRowkgO2IPSyxSMh4fktTTTg8dbtchAZEKMflB4eEVgPhLsHgqtpT2oOsQC2OeFfDyvkIjuJXhveWc/fqe1P5LiyGN1+Vx4A3gVVb1MFF/hHbBOcrVLoFrwAnTiOi9iDXz8ZKcAZTli0Z5dQipZtGMwGXQcQk8DHwjEx+L4akTynASMAcEi0f0ysa6CTdpa14pl12RedkXOlCO1PT0oPNFhEzP9/16qElhZWUsFSUtJljC6l2maPQOj/tQ0MqCFfpP3wMCYSgkuHm5PMecFW3Ouys+XP/JhsNweFz9wJpZt9C5FRioPP5QqcqYj19OTF236HacXPxoy77PJhB8FBCsNpxAcD64bz4x/TT0+CxCALDsegZc9FwQnBG7Dx2ZSXWZM83YK6r5imIsxoWAtyflKagsm0NvJSIVhK6DJVotR2v1LCoi6rvAc63eeDYacaZI+wqVyIXEA4vKZUvpPWiXv9MwxbebXh3hBP/7OJS/vrK0W7a17EZy90WTQeEB4cCipLJYU1jhpEcmFKJtni9WF5YR53vJVV29ww8gHVByIMig02mfSrewsQwX9Jrj489KX8Kg2K4+AiJuHbqbV4r4c/WHkybeGJVNBAKLatCS/CZWdQVwIMipLHiUKkn/cbZUm6nRfG2ryNTT82MXztxXqgMsGFZOYHSzVvLXy8K1xmNBB7BW/v/aJV75RWtMLXRLuQTvCD/mKG2zszRn0vZLp3d//vN35xtPf+hAzLSH9yZNf/jA97/sOrszNzPjsOj4S5bbRtybZYQIXk3uB/Qca4vPyfqFQGBBCYTyYDYlJ4KeHyvNm4wACGlw0nf73TxwHI8jEqlogagvrN/ipz/YZy1qDsswArkER0i+GFQUbQNZ8uD1YB9SO5RwqOknHU0TEL86tvue+v6Cm5GpxXvBa2/xp+emrKC7GT5rHRblgMcHk8r3i/DsRE72y/mw+kGK0JH2oNXiPrR6iUVrTfs7C4IbUhlUythNbTvsivEiGJ8iY0svODrzPuKN58dsxS0HrJg0F8V8rj90pJc8Hoh4fYyKcKsKLpMGr3XnumRQkKh5X6q2hovQGX7G62qIf3CcDWSp/o3BgTu6W71QUTT2kb8v/RNbf8ZlDph6q83XnjXpjmkfvdn3YvHleRVWKxlTeJ+r13Xlt8pM0JQVJu64rgiEAKSRIFcJkDh2lkTFipfFWxAFPdNRHnEJGzdlzHtznuLpccphDS9wO1wqkDkSHq28cyGCNgTeDdGzWYdPuujCIUA9eD1l8ImikDv08tgSBKc4XHD2H7eteHbtpC2bunLQzKR9MPXVzN2xaX9fPLinedSBXZb8h+AsSJEx6hlw+LDptaxpZOzHLzz41AU/ArHnJy/PbKIPzwVq0e5CSKIlkCrsDnVXSc7UWxaPfRMB9rp8rZ7WgzgU+mQiEMbjr6xKgTXwp1/txX1w9loOtuinMaJe005iks7EmkQlfkb3Elhn1JMirfjr2OxYbfg38KCj29Co6iaaH6ynJBzgUg+V5i0euOzZdUu3v98AjIT7x2UQ8UI1RTYO1/gPXupx7+qZY6DQPKa4oL4GMUbUbcV3J8Jg3BpLQW7grhR8ttAIuiTh5brnnFZ2MPvkt/esnTV75idvtOA10Pig9LKdWxIeXDd37PeHf9px1mM3IrQSef8FrRIMEuSoSs2Z3jage999QsKUh74v0sj9/ZPsE4c++K6rvxLUAnSqKtAHNAR6fRwhntZk95qt6z5eyBHPNznBYKe+yX0Wj3t3t6XgERy2h5EodJA2ag97SWAlBrGLFg6zsnwEQZmsOrjdRGh17bJdlZGF8GeiDSdIFDJ2BE2+ejxq5+hEcUCnXt3XPzzmMLn3kAcDIRJUyJe/Ljo/RnDBxwPSM2gluEnrJqhM2JKWhFZaE4LySWdtslxA+Y1MbOiU1FZn8R4hsIqQxEF5dZAsbq9L7B3bpHj+hKmtB8e1rSQVJC09jcfRunet+bb9+ad+wJtwZRy58xlwqGCtBM4KR2xVjQg3io0UbWUDY9SvFYr7V6siu6IlSR+nDbuxyF7RDIH/WuYqTlYJB0BIWcxfcCmLccI5VlXzQPOuOz6ZuHgAmuPz1WbWsENnPNYbcN4YAx3axwwMT4HTK+LDG9gNYhh6JByrVBWLgak6k6jpeEaxhyEQBqQ2XpRbj68aYrZ4FBxd7W2Ie3Wv+eWR9XC9WiPyP76EqkEUzwmYSxlc0Y2gbCAIrBC7dJSX9Wpxw7SKrN1Dsf+ih0U3pGMftYfAU4KMwADH7IUaqGbd+MEwLCaYFXtyOIUGwgDKhiYOIDUoWPHow8J07WKTniPiYCkpEsyRfPFvhpWsSXzT5zuWFIw5rpRCm9AGNTtSdyAR0Bp6ixNLODSlwXv2WmMzqzUXuXQ+H/sEeG0zAtGERiIaKwT/9iZGRunaxCetJOJIgUqEfhDHl+mo6efPmnfetuTpr/KY6x7EbHaj/qAGEOLcdGbVYoOEZ/bIU17r7UzS3q7DNuM5sk/jKAOFMgUDASvD3i7WUqGIg/pXJ01oI0FdklvGN3qlqOTSSxWynWRJyCDpdJ6Dv+DJ6ZIP0wuftNquPoMiTQI24nEaAJoBnVkOKQRADKrX69a20UWpXTp1WkaOstedilVnoH6nGyAOHj5m7aOjL7dNaDw8zmAir28EsRHoBfNBk9/KIUka8F2EUBUgRohD60Ss8viE+wi2TmHUR3vl4FQuptPoeoc12IVXyfFFP/zKuOpC8JDE2/z4xLOtYxqtZGFGrKvx7okQsFAb9AgfmmewdpFWPTiAgLe9QBUFZ8TpwtCTT8QBu78b9kJdB130j+8+vWAV1ZlRzfuAog3SvQG9+o7qKoWDAas6vAKOjpEETaS/gGphmwPrx7gITo/HbXN5ELDBQ9cUGIHGDnSNmAzBJUfQiunm+jNEtMK3U1ZtaC6a9oMh6DDmQdyIr9TgU5ugmmt0FCgaY0MbrwwLKgoJIeClMqH5KbYAEB9b9SThxUM3JDWf/WrahPMpYB7/zxAIDSNHBizYP528bEvzsKhHm0RGwZKIE/kCYixhgK4Mdc1f4DqE7JQP465qwFZD4QyfASAi+LniCQ8z6nuExf3ytznDSWVgZp/J+Eo7/veZfDn9uRm3GhJ2MYNWh/pdYHFX8tQEhV8RYoIYiJY4TIAP9uvQRQAPqaZuvL5Y110fc/yhB1MHU0V+eHid/mswkRTJfOdf82IiYnonavRWnP/Q0viEgolapdcSEHFiCOk95siPw3S4Jq5OY3ctKZAL39Q9nih8Kv24qUWnv7ZkRhvsckRt9RIJ5UebPnhovgBHfeeXiHEAaCjTqhIRYdI1lcI2fPTMUjKGiBlgHv9PEQgNHsMxTbJqHZy/6d1bGnV4uEtYvJsjJikx8CMkXfa3DgrnzlizwHwKIw/eCI5VYKzRpO0Z1vC9d+ZvvnW00JMfDQVCVk0+hwWEEEDS2X+bNLCPMXGXZNDrQV2kTnnAmTlQ/rzX/EXw4AMKIjzBG4NVWYwIN+l6hifu6nfL0BvHd+5v9UeBqQ0PmEiGl8Zn54y1x/u17NI7OSKxGOs8Hb3MFdVymLiZ+JqhCZ6RKqNxJsIjKQ5tjd5hSBKpSqWjnfEUcPHXnpp8pkNis16djNEWhcQ3TmOhLCFvgK6CNxLiLuBH23yeiS68cE7VNDCaNLfFNH5u37xNT/NimEj6Js85qMkYJ+43r0IK/RE+ONgGONEDwE79AAP9DYmHxAenTB8/9x+De/yp9Y2aqNcaSHpZi4BgOJkHDz+qlN7XwieBVDBZDwLAAl3l31joYmowqWgfSEPSWaZhhk4RH2bSdtZFHu+X2PovGbPXDiMzKl+U1wqPEwCXiIaIZDDOZOxesLFfL0P83Jb6CNiltDgKJotQc0gl8xAsvE0IDz3ZwgELfQgeIswqeOh99/QuEQlPSAAABIhJREFUFsyoAkfPCKNR294YVXp7fPMZ+82b+q0fPNhFxJFeT5BvGh8iko+enp85avioNnfEtni1rSlaNtL4oDmMD8AhPBE8/jHwQhVD9wkWvlikBSP/0D16FoAdY4l+0FILwRAUkC7qQi9pgWCQwmFhdHvy+dj43aoywMUJlm+mLs964JYBHfuaEr6J0Rs1IBS8AjAAB/PBgTkhIwSNCW8X3/Sb5g/w0Dhy/Ab8ZMgQFaz66DRmn+jGx3sltkj5asrzpAaT2yn4k09JEBpMfXh/UZiYTO95I/L9IyVSHARYLYxljpWWtR/OYBhIkhDX2gfiTjQBlP+BF8ztLlhynwJtPISXlTYrAc7RC0KxJ4BxwbTjBaY+nkeoh3HSG4ACWMFiP8EEjpSEo9haSfy2QXjMa/+cvhrvg0PCglzdsYMW8yhUfyIiwYcT+rBXV7e5XHBxWrGjckiB19moDIo03j7na5eYGSIucpgIDqIfHWChPUo8o32DCKCpzqtURmr1P7eNa7y13w09XqWX0RAE1dupH6KaMWsnf7y53dEzJ54stVTcU+yyd7Tg2Hk52saaH21DDmCjlCtHBEd1PKLxo6SH6Zhgx3hFYDx1GJFoBbYGrbbEIGnOmzTaIxjLHexSwacZG9OtICggKf76U0q1uRq4fGqKxVU5qcRh718seCNssJB7uOEW40FjQ/yN4OBCAL9xBoT/xj0sZFgcjOp6D7sUExa5Jykq+s2vJj33FW8GTNNvog40y4R2sx59tMLjbo8KsJFDS8s/TsILtIkzhWPBujV3zf/9gNnHxlkdNabeDpkJMVkGymVwQvlaVfVvrF3Y8UxxTle9TroJQVs6ny4rEpITmnaxed0Son+Q/0/5wdLLZzvFNihzOpyHGsfEH+/cqtORVUOfOB1oLKXahAbuXcM3TL8p2HDzwfJFXp7p9Y82984pyE02GAwdL1sqWoAgjE1jEjva3E5IDXQeEF22lJ0oV7zWznFJlYUVJXtjImMPtWrY6Ai8B3zcGA0TF+aS8xqAqJ6FTMAChQfyw0TPiIArKgpvvVRe3DbMaOyxJ/+idHN847Y2xRtd5nLIThAzaSi01xRvCNOEa3Xlh8vyT/dq0EK+WFr4c+voBLsqSQdbN2ha1LB9m7Pm3oO5N261dgkPq4gjcJ/PFbm0+4O6jXn77cQzuYdvvVxZ1DnCFHbDibKimBtiGrSGq3i0TfaQBiCGSTpvZtGlY4mRMSoOph/DnsnJxlHxh3t0v/EwXi1e9RoPf1AMPzUHWgStX/n5B/9VTSz+Kz2pTSi16/i6pCSy4OJFURerEfo06+po6YvuVzubCMIQM6pZhmpnuJbrq8Hy3oULMVZvEcLBMBaeoBMfad4Nv4IkmG1TOiOuGbl6X4MUC1JD1S2CCQTLXV2qblb7cV5VDR/s+sp4/vIlpfDSZaEczxJMBrVHpy7iw7feE2q8AjVwxpDCUsiQQkhahzgCGembq6wb0wVYyTlTq/6M4Nh98agRb9RV7JUaoX2zcIXM2dXzVP2GhE8dx1/5QZI7aJv/H+y6kJy2/hwbAAAAAElFTkSuQmCC"
- },
- {
- "id": "USSR-Latvia",
- "name": "USSR - Latvia",
- "type": "wms",
- "template": "http://www.gisnet.lv/cgi-bin/topo?FORMAT=image/jpeg&VERSION=1.1.1&service=WMS&REQUEST=GetMap&LAYERS=DTO,DTC,DIVDPTC,PD,VS,DS,PS,M&SRS={proj}&WIDTH={width}&height={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- 26.63086,
- 57.56889
- ],
- [
- 25.16968,
- 58.04882
- ],
- [
- 22.54395,
- 57.76866
- ],
- [
- 21.54419,
- 57.53352
- ],
- [
- 21.01685,
- 56.81892
- ],
- [
- 21.01685,
- 56.03523
- ],
- [
- 22.03857,
- 56.38958
- ],
- [
- 24.71924,
- 56.33481
- ],
- [
- 26.75171,
- 55.66519
- ],
- [
- 28.19092,
- 56.13943
- ],
- [
- 27.78442,
- 57.40946
- ],
- [
- 26.63086,
- 57.56889
- ]
- ]
- ]
- },
- {
- "id": "sjcgis.org-General_Basemap_WM",
- "name": "Vector Streetmap for San Juan County WA",
- "type": "tms",
- "template": "https://sjcgis.org/arcgis/rest/services/Basemaps/General_Basemap_WM/MapServer/tile/{zoom}/{y}/{x}",
- "scaleExtent": [
- 0,
- 19
- ],
- "polygon": [
- [
- [
- -123.27402,
- 48.69297
- ],
- [
- -123.00773,
- 48.76726
- ],
- [
- -123.00762,
- 48.83158
- ],
- [
- -122.7835,
- 48.75842
- ],
- [
- -122.6934,
- 48.65852
- ],
- [
- -122.76745,
- 48.60361
- ],
- [
- -122.74484,
- 48.38708
- ],
- [
- -123.24822,
- 48.28353
- ],
- [
- -123.11452,
- 48.42261
- ],
- [
- -123.21904,
- 48.54857
- ],
- [
- -123.27402,
- 48.69297
- ]
- ]
- ],
- "best": true,
- "description": "Public domain street and address data from the San Juan County, WA. Updated at least quarterly."
- },
- {
- "id": "Vercors-Orthophotos-1999",
- "name": "Vercors (Réserve naturelle des Hauts-Plateaux du Vercors) - Orthophoto - 1999 - 1 m",
- "type": "tms",
- "template": "http://wms.openstreetmap.fr/tms/1.0.0/PNRVercors-RHP-1999/{zoom}/{x}/{y}",
- "endDate": "1999-01-01T00:00:00.000Z",
- "startDate": "1999-01-01T00:00:00.000Z",
- "scaleExtent": [
- 0,
- 19
- ],
- "polygon": [
- [
- [
- 5.43565,
- 44.99918
- ],
- [
- 5.43193,
- 44.9229
- ],
- [
- 5.43624,
- 44.92284
- ],
- [
- 5.43472,
- 44.89001
- ],
- [
- 5.43303,
- 44.88995
- ],
- [
- 5.43065,
- 44.85026
- ],
- [
- 5.43387,
- 44.85014
- ],
- [
- 5.43285,
- 44.82638
- ],
- [
- 5.43548,
- 44.82626
- ],
- [
- 5.43497,
- 44.8139
- ],
- [
- 5.44106,
- 44.81372
- ],
- [
- 5.43717,
- 44.74098
- ],
- [
- 5.4546,
- 44.74044
- ],
- [
- 5.45282,
- 44.70425
- ],
- [
- 5.5211,
- 44.70245
- ],
- [
- 5.5233,
- 44.73858
- ],
- [
- 5.58904,
- 44.73684
- ],
- [
- 5.59298,
- 44.81263
- ],
- [
- 5.5879,
- 44.81299
- ],
- [
- 5.58977,
- 44.84947
- ],
- [
- 5.58823,
- 44.84938
- ],
- [
- 5.58972,
- 44.87351
- ],
- [
- 5.53863,
- 44.87503
- ],
- [
- 5.53947,
- 44.88686
- ],
- [
- 5.52834,
- 44.88733
- ],
- [
- 5.53002,
- 44.92012
- ],
- [
- 5.53319,
- 44.92012
- ],
- [
- 5.53761,
- 44.99624
- ],
- [
- 5.43565,
- 44.99918
- ]
- ]
- ],
- "terms_text": "Parc Naturel du Vercors"
- },
- {
- "id": "vicosa_al",
- "name": "Viçosa AL",
- "type": "wms",
- "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Vicosa&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- -36.198,
- -9.42067
- ],
- [
- -36.19777,
- -9.41789
- ],
- [
- -36.1978,
- -9.41528
- ],
- [
- -36.19801,
- -9.41074
- ],
- [
- -36.19789,
- -9.40857
- ],
- [
- -36.19793,
- -9.40637
- ],
- [
- -36.19797,
- -9.40561
- ],
- [
- -36.19793,
- -9.40405
- ],
- [
- -36.19799,
- -9.40312
- ],
- [
- -36.19827,
- -9.40028
- ],
- [
- -36.19829,
- -9.39496
- ],
- [
- -36.19789,
- -9.39169
- ],
- [
- -36.19844,
- -9.38932
- ],
- [
- -36.19837,
- -9.3862
- ],
- [
- -36.19794,
- -9.38167
- ],
- [
- -36.19801,
- -9.37972
- ],
- [
- -36.19834,
- -9.37867
- ],
- [
- -36.19832,
- -9.37698
- ],
- [
- -36.19817,
- -9.37586
- ],
- [
- -36.19852,
- -9.37139
- ],
- [
- -36.19822,
- -9.36239
- ],
- [
- -36.19862,
- -9.35319
- ],
- [
- -36.19849,
- -9.35097
- ],
- [
- -36.19857,
- -9.34852
- ],
- [
- -36.1988,
- -9.34668
- ],
- [
- -36.1986,
- -9.34349
- ],
- [
- -36.19877,
- -9.34084
- ],
- [
- -36.19895,
- -9.33301
- ],
- [
- -36.19877,
- -9.33039
- ],
- [
- -36.28958,
- -9.33114
- ],
- [
- -36.28938,
- -9.33319
- ],
- [
- -36.2895,
- -9.33538
- ],
- [
- -36.28925,
- -9.34124
- ],
- [
- -36.28945,
- -9.34291
- ],
- [
- -36.28928,
- -9.34521
- ],
- [
- -36.28897,
- -9.37311
- ],
- [
- -36.28915,
- -9.37481
- ],
- [
- -36.28892,
- -9.37708
- ],
- [
- -36.2889,
- -9.38541
- ],
- [
- -36.28872,
- -9.38633
- ],
- [
- -36.28872,
- -9.39343
- ],
- [
- -36.28887,
- -9.39558
- ],
- [
- -36.28877,
- -9.40129
- ],
- [
- -36.28862,
- -9.40652
- ],
- [
- -36.28872,
- -9.40715
- ],
- [
- -36.28877,
- -9.42133
- ],
- [
- -36.198,
- -9.42067
- ]
- ]
- ],
- "terms_url": "http://www.seplande.al.gov.br",
- "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
- },
- {
- "id": "wien.gv.at-labels",
- "name": "Vienna: Beschriftungen (annotations)",
- "type": "tms",
- "template": "https://maps.wien.gv.at/wmts/beschriftung/normal/google3857/{zoom}/{y}/{x}.png",
- "scaleExtent": [
- 12,
- 19
- ],
- "polygon": [
- [
- [
- 16.54475,
- 48.17286
- ],
- [
- 16.54103,
- 48.17657
- ],
- [
- 16.54978,
- 48.17675
- ],
- [
- 16.54665,
- 48.17162
- ],
- [
- 16.55629,
- 48.16171
- ],
- [
- 16.55567,
- 48.16446
- ],
- [
- 16.56161,
- 48.16037
- ],
- [
- 16.57306,
- 48.16319
- ],
- [
- 16.57603,
- 48.13522
- ],
- [
- 16.54301,
- 48.14333
- ],
- [
- 16.51377,
- 48.15893
- ],
- [
- 16.4777,
- 48.15744
- ],
- [
- 16.45536,
- 48.13951
- ],
- [
- 16.43313,
- 48.13788
- ],
- [
- 16.43701,
- 48.11994
- ],
- [
- 16.42291,
- 48.12306
- ],
- [
- 16.4083,
- 48.11791
- ],
- [
- 16.40511,
- 48.12198
- ],
- [
- 16.3246,
- 48.13779
- ],
- [
- 16.31181,
- 48.11945
- ],
- [
- 16.29806,
- 48.12896
- ],
- [
- 16.2711,
- 48.13385
- ],
- [
- 16.23607,
- 48.13001
- ],
- [
- 16.2189,
- 48.12377
- ],
- [
- 16.2181,
- 48.12807
- ],
- [
- 16.23861,
- 48.13205
- ],
- [
- 16.23843,
- 48.13716
- ],
- [
- 16.22081,
- 48.13555
- ],
- [
- 16.20986,
- 48.14762
- ],
- [
- 16.22321,
- 48.15318
- ],
- [
- 16.19798,
- 48.15454
- ],
- [
- 16.19619,
- 48.16396
- ],
- [
- 16.18183,
- 48.17112
- ],
- [
- 16.19981,
- 48.18616
- ],
- [
- 16.20739,
- 48.20235
- ],
- [
- 16.20194,
- 48.20479
- ],
- [
- 16.20962,
- 48.20963
- ],
- [
- 16.1976,
- 48.21479
- ],
- [
- 16.19778,
- 48.22288
- ],
- [
- 16.18517,
- 48.2232
- ],
- [
- 16.19911,
- 48.22858
- ],
- [
- 16.19251,
- 48.23671
- ],
- [
- 16.20677,
- 48.26483
- ],
- [
- 16.24105,
- 48.24837
- ],
- [
- 16.24154,
- 48.23832
- ],
- [
- 16.25662,
- 48.23988
- ],
- [
- 16.27043,
- 48.25193
- ],
- [
- 16.26406,
- 48.25492
- ],
- [
- 16.28556,
- 48.25832
- ],
- [
- 16.29412,
- 48.26395
- ],
- [
- 16.28617,
- 48.2667
- ],
- [
- 16.28901,
- 48.27051
- ],
- [
- 16.32741,
- 48.27721
- ],
- [
- 16.34813,
- 48.29048
- ],
- [
- 16.35351,
- 48.28369
- ],
- [
- 16.3706,
- 48.2817
- ],
- [
- 16.36714,
- 48.28685
- ],
- [
- 16.37787,
- 48.28832
- ],
- [
- 16.37557,
- 48.29592
- ],
- [
- 16.37982,
- 48.30201
- ],
- [
- 16.38536,
- 48.30146
- ],
- [
- 16.38043,
- 48.31507
- ],
- [
- 16.39518,
- 48.32257
- ],
- [
- 16.39412,
- 48.31926
- ],
- [
- 16.40287,
- 48.31676
- ],
- [
- 16.41682,
- 48.32253
- ],
- [
- 16.43803,
- 48.31628
- ],
- [
- 16.44041,
- 48.29192
- ],
- [
- 16.47547,
- 48.27501
- ],
- [
- 16.48123,
- 48.27343
- ],
- [
- 16.4835,
- 48.27971
- ],
- [
- 16.48132,
- 48.29351
- ],
- [
- 16.49645,
- 48.29249
- ],
- [
- 16.51491,
- 48.28554
- ],
- [
- 16.5067,
- 48.2736
- ],
- [
- 16.51285,
- 48.26784
- ],
- [
- 16.53263,
- 48.2621
- ],
- [
- 16.54697,
- 48.263
- ],
- [
- 16.53941,
- 48.24284
- ],
- [
- 16.55274,
- 48.239
- ],
- [
- 16.53627,
- 48.20044
- ],
- [
- 16.54184,
- 48.18206
- ],
- [
- 16.53631,
- 48.17755
- ],
- [
- 16.54475,
- 48.17286
- ]
- ]
- ],
- "terms_url": "https://data.wien.gv.at",
- "terms_text": "Stadt Wien",
- "icon": "https://www.wien.gv.at/layout-a/logo/wappen-klein.gif",
- "overlay": true
- },
- {
- "id": "wien.gv.at-gp",
- "name": "Vienna: Mehrzweckkarte (general purpose)",
- "type": "tms",
- "template": "https://maps.wien.gv.at/wmts/fmzk/pastell/google3857/{zoom}/{y}/{x}.jpeg",
- "scaleExtent": [
- 10,
- 19
- ],
- "polygon": [
- [
- [
- 16.54475,
- 48.17286
- ],
- [
- 16.54103,
- 48.17657
- ],
- [
- 16.54978,
- 48.17675
- ],
- [
- 16.54665,
- 48.17162
- ],
- [
- 16.55629,
- 48.16171
- ],
- [
- 16.55567,
- 48.16446
- ],
- [
- 16.56161,
- 48.16037
- ],
- [
- 16.57306,
- 48.16319
- ],
- [
- 16.57603,
- 48.13522
- ],
- [
- 16.54301,
- 48.14333
- ],
- [
- 16.51377,
- 48.15893
- ],
- [
- 16.4777,
- 48.15744
- ],
- [
- 16.45536,
- 48.13951
- ],
- [
- 16.43313,
- 48.13788
- ],
- [
- 16.43701,
- 48.11994
- ],
- [
- 16.42291,
- 48.12306
- ],
- [
- 16.4083,
- 48.11791
- ],
- [
- 16.40511,
- 48.12198
- ],
- [
- 16.3246,
- 48.13779
- ],
- [
- 16.31181,
- 48.11945
- ],
- [
- 16.29806,
- 48.12896
- ],
- [
- 16.2711,
- 48.13385
- ],
- [
- 16.23607,
- 48.13001
- ],
- [
- 16.2189,
- 48.12377
- ],
- [
- 16.2181,
- 48.12807
- ],
- [
- 16.23861,
- 48.13205
- ],
- [
- 16.23843,
- 48.13716
- ],
- [
- 16.22081,
- 48.13555
- ],
- [
- 16.20986,
- 48.14762
- ],
- [
- 16.22321,
- 48.15318
- ],
- [
- 16.19798,
- 48.15454
- ],
- [
- 16.19619,
- 48.16396
- ],
- [
- 16.18183,
- 48.17112
- ],
- [
- 16.19981,
- 48.18616
- ],
- [
- 16.20739,
- 48.20235
- ],
- [
- 16.20194,
- 48.20479
- ],
- [
- 16.20962,
- 48.20963
- ],
- [
- 16.1976,
- 48.21479
- ],
- [
- 16.19778,
- 48.22288
- ],
- [
- 16.18517,
- 48.2232
- ],
- [
- 16.19911,
- 48.22858
- ],
- [
- 16.19251,
- 48.23671
- ],
- [
- 16.20677,
- 48.26483
- ],
- [
- 16.24105,
- 48.24837
- ],
- [
- 16.24154,
- 48.23832
- ],
- [
- 16.25662,
- 48.23988
- ],
- [
- 16.27043,
- 48.25193
- ],
- [
- 16.26406,
- 48.25492
- ],
- [
- 16.28556,
- 48.25832
- ],
- [
- 16.29412,
- 48.26395
- ],
- [
- 16.28617,
- 48.2667
- ],
- [
- 16.28901,
- 48.27051
- ],
- [
- 16.32741,
- 48.27721
- ],
- [
- 16.34813,
- 48.29048
- ],
- [
- 16.35351,
- 48.28369
- ],
- [
- 16.3706,
- 48.2817
- ],
- [
- 16.36714,
- 48.28685
- ],
- [
- 16.37787,
- 48.28832
- ],
- [
- 16.37557,
- 48.29592
- ],
- [
- 16.37982,
- 48.30201
- ],
- [
- 16.38536,
- 48.30146
- ],
- [
- 16.38043,
- 48.31507
- ],
- [
- 16.39518,
- 48.32257
- ],
- [
- 16.39412,
- 48.31926
- ],
- [
- 16.40287,
- 48.31676
- ],
- [
- 16.41682,
- 48.32253
- ],
- [
- 16.43803,
- 48.31628
- ],
- [
- 16.44041,
- 48.29192
- ],
- [
- 16.47547,
- 48.27501
- ],
- [
- 16.48123,
- 48.27343
- ],
- [
- 16.4835,
- 48.27971
- ],
- [
- 16.48132,
- 48.29351
- ],
- [
- 16.49645,
- 48.29249
- ],
- [
- 16.51491,
- 48.28554
- ],
- [
- 16.5067,
- 48.2736
- ],
- [
- 16.51285,
- 48.26784
- ],
- [
- 16.53263,
- 48.2621
- ],
- [
- 16.54697,
- 48.263
- ],
- [
- 16.53941,
- 48.24284
- ],
- [
- 16.55274,
- 48.239
- ],
- [
- 16.53627,
- 48.20044
- ],
- [
- 16.54184,
- 48.18206
- ],
- [
- 16.53631,
- 48.17755
- ],
- [
- 16.54475,
- 48.17286
- ]
- ]
- ],
- "terms_url": "https://data.wien.gv.at",
- "terms_text": "Stadt Wien",
- "icon": "https://www.wien.gv.at/layout-a/logo/wappen-klein.gif"
- },
- {
- "id": "wien.gv.at-aerial_image",
- "name": "Vienna: Orthofoto (aerial image)",
- "type": "tms",
- "template": "https://maps.wien.gv.at/wmts/lb/farbe/google3857/{zoom}/{y}/{x}.jpeg",
- "scaleExtent": [
- 10,
- 19
- ],
- "polygon": [
- [
- [
- 16.14995,
- 48.10832
- ],
- [
- 16.14989,
- 48.33315
- ],
- [
- 16.61873,
- 48.33296
- ],
- [
- 16.61749,
- 48.10813
- ],
- [
- 16.46644,
- 48.10819
- ],
- [
- 16.46644,
- 48.10744
- ],
- [
- 16.18104,
- 48.10756
- ],
- [
- 16.18104,
- 48.10831
- ],
- [
- 16.14995,
- 48.10832
- ]
- ]
- ],
- "terms_url": "https://data.wien.gv.at",
- "terms_text": "Stadt Wien",
- "icon": "https://www.wien.gv.at/layout-a/logo/wappen-klein.gif"
- },
- {
- "id": "Ville_de_Nyon-HD-2010",
- "name": "Ville de Nyon - Orthophoto 2010 HD 5cm/pi",
- "type": "tms",
- "template": "http://osmdata.asitvd.ch/tiles/nyon2010/{zoom}/{x}/{y}.png",
- "endDate": "2010-01-01T00:00:00.000Z",
- "startDate": "2010-01-01T00:00:00.000Z",
- "scaleExtent": [
- 14,
- 20
- ],
- "polygon": [
- [
- [
- 6.24859,
- 46.38252
- ],
- [
- 6.24848,
- 46.38715
- ],
- [
- 6.24378,
- 46.38944
- ],
- [
- 6.24182,
- 46.39109
- ],
- [
- 6.2414,
- 46.39159
- ],
- [
- 6.23919,
- 46.39222
- ],
- [
- 6.23973,
- 46.39373
- ],
- [
- 6.2379,
- 46.3946
- ],
- [
- 6.23713,
- 46.39698
- ],
- [
- 6.23071,
- 46.40107
- ],
- [
- 6.22789,
- 46.39903
- ],
- [
- 6.22326,
- 46.40219
- ],
- [
- 6.22066,
- 46.40189
- ],
- [
- 6.21582,
- 46.40462
- ],
- [
- 6.21393,
- 46.40698
- ],
- [
- 6.20989,
- 46.40563
- ],
- [
- 6.20928,
- 46.40528
- ],
- [
- 6.20985,
- 46.40434
- ],
- [
- 6.20501,
- 46.40332
- ],
- [
- 6.20527,
- 46.40104
- ],
- [
- 6.20906,
- 46.40131
- ],
- [
- 6.20951,
- 46.4013
- ],
- [
- 6.2149,
- 46.4008
- ],
- [
- 6.21154,
- 46.39808
- ],
- [
- 6.21057,
- 46.3968
- ],
- [
- 6.20954,
- 46.39449
- ],
- [
- 6.21229,
- 46.39243
- ],
- [
- 6.21374,
- 46.39168
- ],
- [
- 6.21639,
- 46.39079
- ],
- [
- 6.21296,
- 46.38736
- ],
- [
- 6.21532,
- 46.38514
- ],
- [
- 6.21403,
- 46.38424
- ],
- [
- 6.2126,
- 46.38232
- ],
- [
- 6.21211,
- 46.38102
- ],
- [
- 6.21212,
- 46.37992
- ],
- [
- 6.21231,
- 46.37901
- ],
- [
- 6.21318,
- 46.37697
- ],
- [
- 6.21454,
- 46.37494
- ],
- [
- 6.21359,
- 46.37463
- ],
- [
- 6.21365,
- 46.37276
- ],
- [
- 6.22133,
- 46.3699
- ],
- [
- 6.22752,
- 46.36555
- ],
- [
- 6.22752,
- 46.36541
- ],
- [
- 6.23738,
- 46.37356
- ],
- [
- 6.24404,
- 46.37842
- ],
- [
- 6.24859,
- 46.38252
- ]
- ]
- ],
- "terms_url": "http://www.nyon.ch/fr/officiel/services-offices/informatique-et-population-776-3911",
- "terms_text": "Ville de Nyon"
- },
- {
- "id": "vogis.cnv.at-DGM",
- "name": "VoGIS: DGM (Terrain model)",
- "type": "wms",
- "template": "http://vogis.cnv.at/mapserver/mapserv?map=i_hoehen_und_gelaende_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=schummerung_50cm_terrain&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- 9.96805,
- 47.54631
- ],
- [
- 9.96809,
- 47.54627
- ],
- [
- 9.97125,
- 47.54425
- ],
- [
- 9.96484,
- 47.53803
- ],
- [
- 9.9684,
- 47.52802
- ],
- [
- 9.96526,
- 47.52089
- ],
- [
- 9.99569,
- 47.50278
- ],
- [
- 9.98736,
- 47.49847
- ],
- [
- 10.00076,
- 47.48211
- ],
- [
- 10.02301,
- 47.48411
- ],
- [
- 10.03743,
- 47.48918
- ],
- [
- 10.04477,
- 47.48762
- ],
- [
- 10.05413,
- 47.47589
- ],
- [
- 10.05347,
- 47.46686
- ],
- [
- 10.06468,
- 47.46364
- ],
- [
- 10.06999,
- 47.45595
- ],
- [
- 10.08057,
- 47.45536
- ],
- [
- 10.08857,
- 47.46029
- ],
- [
- 10.09164,
- 47.45893
- ],
- [
- 10.09385,
- 47.44046
- ],
- [
- 10.10559,
- 47.42872
- ],
- [
- 10.09374,
- 47.41688
- ],
- [
- 10.07418,
- 47.41472
- ],
- [
- 10.06914,
- 47.41018
- ],
- [
- 10.08624,
- 47.39952
- ],
- [
- 10.08284,
- 47.39381
- ],
- [
- 10.09984,
- 47.35476
- ],
- [
- 10.11934,
- 47.37561
- ],
- [
- 10.14169,
- 47.36718
- ],
- [
- 10.16587,
- 47.36887
- ],
- [
- 10.16958,
- 47.3713
- ],
- [
- 10.1694,
- 47.38583
- ],
- [
- 10.1813,
- 47.38725
- ],
- [
- 10.18185,
- 47.39243
- ],
- [
- 10.19508,
- 47.38935
- ],
- [
- 10.19988,
- 47.38334
- ],
- [
- 10.21259,
- 47.38039
- ],
- [
- 10.22705,
- 47.38889
- ],
- [
- 10.23619,
- 47.38192
- ],
- [
- 10.23168,
- 47.37897
- ],
- [
- 10.23716,
- 47.37357
- ],
- [
- 10.21699,
- 47.35436
- ],
- [
- 10.2171,
- 47.34988
- ],
- [
- 10.20424,
- 47.33675
- ],
- [
- 10.20742,
- 47.33232
- ],
- [
- 10.19951,
- 47.32646
- ],
- [
- 10.21113,
- 47.31898
- ],
- [
- 10.21597,
- 47.31106
- ],
- [
- 10.21236,
- 47.31122
- ],
- [
- 10.19913,
- 47.29754
- ],
- [
- 10.18964,
- 47.29394
- ],
- [
- 10.17961,
- 47.29603
- ],
- [
- 10.17208,
- 47.27908
- ],
- [
- 10.17404,
- 47.27025
- ],
- [
- 10.17834,
- 47.27011
- ],
- [
- 10.17449,
- 47.2637
- ],
- [
- 10.21884,
- 47.25533
- ],
- [
- 10.22343,
- 47.24983
- ],
- [
- 10.21087,
- 47.2478
- ],
- [
- 10.19776,
- 47.23666
- ],
- [
- 10.20791,
- 47.2328
- ],
- [
- 10.21428,
- 47.21684
- ],
- [
- 10.21269,
- 47.20432
- ],
- [
- 10.19963,
- 47.19539
- ],
- [
- 10.19951,
- 47.18525
- ],
- [
- 10.21151,
- 47.17124
- ],
- [
- 10.2092,
- 47.16537
- ],
- [
- 10.20851,
- 47.15948
- ],
- [
- 10.21321,
- 47.1577
- ],
- [
- 10.2222,
- 47.15323
- ],
- [
- 10.22166,
- 47.14925
- ],
- [
- 10.21481,
- 47.14352
- ],
- [
- 10.20333,
- 47.14215
- ],
- [
- 10.20887,
- 47.13164
- ],
- [
- 10.18629,
- 47.12886
- ],
- [
- 10.18652,
- 47.11946
- ],
- [
- 10.17288,
- 47.12033
- ],
- [
- 10.16299,
- 47.11361
- ],
- [
- 10.15766,
- 47.11426
- ],
- [
- 10.15442,
- 47.10578
- ],
- [
- 10.13243,
- 47.08122
- ],
- [
- 10.13459,
- 47.06392
- ],
- [
- 10.15085,
- 47.06184
- ],
- [
- 10.15693,
- 47.04883
- ],
- [
- 10.14418,
- 47.03355
- ],
- [
- 10.12326,
- 47.02209
- ],
- [
- 10.13284,
- 47.01204
- ],
- [
- 10.15447,
- 47.00545
- ],
- [
- 10.15961,
- 46.99882
- ],
- [
- 10.15442,
- 46.99299
- ],
- [
- 10.16001,
- 46.984
- ],
- [
- 10.14463,
- 46.98301
- ],
- [
- 10.13492,
- 46.96584
- ],
- [
- 10.13501,
- 46.95483
- ],
- [
- 10.12684,
- 46.9435
- ],
- [
- 10.09772,
- 46.92676
- ],
- [
- 10.09954,
- 46.91712
- ],
- [
- 10.10921,
- 46.90834
- ],
- [
- 10.10908,
- 46.89431
- ],
- [
- 10.12497,
- 46.88014
- ],
- [
- 10.14147,
- 46.87468
- ],
- [
- 10.13967,
- 46.86217
- ],
- [
- 10.14506,
- 46.8511
- ],
- [
- 10.13941,
- 46.84738
- ],
- [
- 10.12309,
- 46.84848
- ],
- [
- 10.11912,
- 46.84417
- ],
- [
- 10.10518,
- 46.8409
- ],
- [
- 10.09195,
- 46.85143
- ],
- [
- 10.09265,
- 46.85818
- ],
- [
- 10.08712,
- 46.86128
- ],
- [
- 10.05488,
- 46.8617
- ],
- [
- 10.0509,
- 46.86442
- ],
- [
- 10.05192,
- 46.87405
- ],
- [
- 10.03891,
- 46.88611
- ],
- [
- 10.03221,
- 46.88802
- ],
- [
- 10.01782,
- 46.90161
- ],
- [
- 10.00494,
- 46.89889
- ],
- [
- 9.98243,
- 46.9062
- ],
- [
- 9.97793,
- 46.91603
- ],
- [
- 9.96657,
- 46.91222
- ],
- [
- 9.95907,
- 46.91602
- ],
- [
- 9.94612,
- 46.91235
- ],
- [
- 9.93758,
- 46.91324
- ],
- [
- 9.92153,
- 46.91882
- ],
- [
- 9.91231,
- 46.92606
- ],
- [
- 9.90632,
- 46.9253
- ],
- [
- 9.89449,
- 46.93164
- ],
- [
- 9.87613,
- 46.93463
- ],
- [
- 9.88071,
- 46.94011
- ],
- [
- 9.87657,
- 46.94071
- ],
- [
- 9.87488,
- 46.95039
- ],
- [
- 9.87872,
- 46.95707
- ],
- [
- 9.87073,
- 46.96321
- ],
- [
- 9.88482,
- 46.98546
- ],
- [
- 9.8923,
- 46.99036
- ],
- [
- 9.88878,
- 47.00072
- ],
- [
- 9.8707,
- 47.00965
- ],
- [
- 9.87115,
- 47.01306
- ],
- [
- 9.88035,
- 47.01722
- ],
- [
- 9.87779,
- 47.02055
- ],
- [
- 9.85974,
- 47.02321
- ],
- [
- 9.85273,
- 47.01641
- ],
- [
- 9.83612,
- 47.01253
- ],
- [
- 9.82353,
- 47.01986
- ],
- [
- 9.80756,
- 47.02356
- ],
- [
- 9.78491,
- 47.03849
- ],
- [
- 9.74808,
- 47.03692
- ],
- [
- 9.74185,
- 47.04268
- ],
- [
- 9.71821,
- 47.04337
- ],
- [
- 9.70701,
- 47.04805
- ],
- [
- 9.7076,
- 47.05381
- ],
- [
- 9.69756,
- 47.05239
- ],
- [
- 9.68392,
- 47.05765
- ],
- [
- 9.68184,
- 47.0621
- ],
- [
- 9.67743,
- 47.06141
- ],
- [
- 9.65821,
- 47.05818
- ],
- [
- 9.64506,
- 47.05978
- ],
- [
- 9.64158,
- 47.05598
- ],
- [
- 9.63654,
- 47.0517
- ],
- [
- 9.62633,
- 47.05133
- ],
- [
- 9.60705,
- 47.06077
- ],
- [
- 9.6134,
- 47.0695
- ],
- [
- 9.61153,
- 47.0794
- ],
- [
- 9.61869,
- 47.07817
- ],
- [
- 9.62339,
- 47.08258
- ],
- [
- 9.63346,
- 47.08344
- ],
- [
- 9.63564,
- 47.09553
- ],
- [
- 9.62858,
- 47.10756
- ],
- [
- 9.62083,
- 47.11032
- ],
- [
- 9.63503,
- 47.12813
- ],
- [
- 9.62467,
- 47.13265
- ],
- [
- 9.62258,
- 47.14135
- ],
- [
- 9.62587,
- 47.1459
- ],
- [
- 9.62059,
- 47.15164
- ],
- [
- 9.6089,
- 47.14775
- ],
- [
- 9.59679,
- 47.16294
- ],
- [
- 9.57946,
- 47.17116
- ],
- [
- 9.56456,
- 47.17029
- ],
- [
- 9.57302,
- 47.1756
- ],
- [
- 9.57259,
- 47.19079
- ],
- [
- 9.58032,
- 47.19578
- ],
- [
- 9.58477,
- 47.20532
- ],
- [
- 9.5687,
- 47.21968
- ],
- [
- 9.55851,
- 47.22416
- ],
- [
- 9.55176,
- 47.22377
- ],
- [
- 9.56679,
- 47.24288
- ],
- [
- 9.53073,
- 47.27058
- ],
- [
- 9.54619,
- 47.28005
- ],
- [
- 9.55634,
- 47.29829
- ],
- [
- 9.58805,
- 47.3173
- ],
- [
- 9.59966,
- 47.3455
- ],
- [
- 9.61073,
- 47.35571
- ],
- [
- 9.62446,
- 47.36615
- ],
- [
- 9.65876,
- 47.36946
- ],
- [
- 9.67255,
- 47.38021
- ],
- [
- 9.67311,
- 47.39194
- ],
- [
- 9.65162,
- 47.40463
- ],
- [
- 9.64551,
- 47.4312
- ],
- [
- 9.64512,
- 47.4378
- ],
- [
- 9.65799,
- 47.44779
- ],
- [
- 9.65898,
- 47.4522
- ],
- [
- 9.62234,
- 47.45747
- ],
- [
- 9.60904,
- 47.47054
- ],
- [
- 9.60292,
- 47.46198
- ],
- [
- 9.59514,
- 47.46331
- ],
- [
- 9.58217,
- 47.48276
- ],
- [
- 9.5622,
- 47.49592
- ],
- [
- 9.55057,
- 47.53718
- ],
- [
- 9.5827,
- 47.53592
- ],
- [
- 9.60465,
- 47.52952
- ],
- [
- 9.73478,
- 47.53396
- ],
- [
- 9.73517,
- 47.54661
- ],
- [
- 9.74164,
- 47.55499
- ],
- [
- 9.7471,
- 47.55569
- ],
- [
- 9.74337,
- 47.55867
- ],
- [
- 9.75207,
- 47.56747
- ],
- [
- 9.74806,
- 47.57052
- ],
- [
- 9.75632,
- 47.57262
- ],
- [
- 9.75633,
- 47.57963
- ],
- [
- 9.76197,
- 47.58096
- ],
- [
- 9.76553,
- 47.58912
- ],
- [
- 9.76933,
- 47.58739
- ],
- [
- 9.77697,
- 47.59544
- ],
- [
- 9.79151,
- 47.59352
- ],
- [
- 9.79999,
- 47.59611
- ],
- [
- 9.81414,
- 47.58807
- ],
- [
- 9.82381,
- 47.5871
- ],
- [
- 9.82728,
- 47.57997
- ],
- [
- 9.82079,
- 47.57076
- ],
- [
- 9.82562,
- 47.55922
- ],
- [
- 9.8171,
- 47.55333
- ],
- [
- 9.81579,
- 47.54767
- ],
- [
- 9.85023,
- 47.54164
- ],
- [
- 9.85839,
- 47.53388
- ],
- [
- 9.87451,
- 47.52854
- ],
- [
- 9.87804,
- 47.53876
- ],
- [
- 9.87515,
- 47.54343
- ],
- [
- 9.88125,
- 47.54814
- ],
- [
- 9.8891,
- 47.54399
- ],
- [
- 9.89935,
- 47.54475
- ],
- [
- 9.90666,
- 47.54217
- ],
- [
- 9.91358,
- 47.53255
- ],
- [
- 9.92189,
- 47.52964
- ],
- [
- 9.93352,
- 47.53265
- ],
- [
- 9.94108,
- 47.53822
- ],
- [
- 9.9637,
- 47.53472
- ],
- [
- 9.95883,
- 47.54313
- ],
- [
- 9.96318,
- 47.54229
- ],
- [
- 9.96805,
- 47.54631
- ]
- ]
- ],
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAAD1BMVEUAAACEAgT8AgQEAgSEgoTQjzHEAAAAAXRSTlMAQObYZgAAAHJJREFUeF6ljVEKgzAQRCftBUQv0KwXML7cwPvfqQwJtIVqi76fHR7DrKSUJY1DD84xKEVuwcT40C1HC18bqQDTBKWosUZn+VvQ4UTjkoCYWd/Eco9ZLwEWggsNC9CPL3C0UauFz44wFh941Bw0tm1PPAGCUydahBcw6wAAAABJRU5ErkJggg=="
- },
- {
- "id": "vogis.cnv.at-DOM",
- "name": "VoGIS: DOM (Surface model)",
- "type": "wms",
- "template": "http://vogis.cnv.at/mapserver/mapserv?map=i_hoehen_und_gelaende_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=schummerung_50cm_surface&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "polygon": [
- [
- [
- 9.96805,
- 47.54631
- ],
- [
- 9.96809,
- 47.54627
- ],
- [
- 9.97125,
- 47.54425
- ],
- [
- 9.96484,
- 47.53803
- ],
- [
- 9.9684,
- 47.52802
- ],
- [
- 9.96526,
- 47.52089
- ],
- [
- 9.99569,
- 47.50278
- ],
- [
- 9.98736,
- 47.49847
- ],
- [
- 10.00076,
- 47.48211
- ],
- [
- 10.02301,
- 47.48411
- ],
- [
- 10.03743,
- 47.48918
- ],
- [
- 10.04477,
- 47.48762
- ],
- [
- 10.05413,
- 47.47589
- ],
- [
- 10.05347,
- 47.46686
- ],
- [
- 10.06468,
- 47.46364
- ],
- [
- 10.06999,
- 47.45595
- ],
- [
- 10.08057,
- 47.45536
- ],
- [
- 10.08857,
- 47.46029
- ],
- [
- 10.09164,
- 47.45893
- ],
- [
- 10.09385,
- 47.44046
- ],
- [
- 10.10559,
- 47.42872
- ],
- [
- 10.09374,
- 47.41688
- ],
- [
- 10.07418,
- 47.41472
- ],
- [
- 10.06914,
- 47.41018
- ],
- [
- 10.08624,
- 47.39952
- ],
- [
- 10.08284,
- 47.39381
- ],
- [
- 10.09984,
- 47.35476
- ],
- [
- 10.11934,
- 47.37561
- ],
- [
- 10.14169,
- 47.36718
- ],
- [
- 10.16587,
- 47.36887
- ],
- [
- 10.16958,
- 47.3713
- ],
- [
- 10.1694,
- 47.38583
- ],
- [
- 10.1813,
- 47.38725
- ],
- [
- 10.18185,
- 47.39243
- ],
- [
- 10.19508,
- 47.38935
- ],
- [
- 10.19988,
- 47.38334
- ],
- [
- 10.21259,
- 47.38039
- ],
- [
- 10.22705,
- 47.38889
- ],
- [
- 10.23619,
- 47.38192
- ],
- [
- 10.23168,
- 47.37897
- ],
- [
- 10.23716,
- 47.37357
- ],
- [
- 10.21699,
- 47.35436
- ],
- [
- 10.2171,
- 47.34988
- ],
- [
- 10.20424,
- 47.33675
- ],
- [
- 10.20742,
- 47.33232
- ],
- [
- 10.19951,
- 47.32646
- ],
- [
- 10.21113,
- 47.31898
- ],
- [
- 10.21597,
- 47.31106
- ],
- [
- 10.21236,
- 47.31122
- ],
- [
- 10.19913,
- 47.29754
- ],
- [
- 10.18964,
- 47.29394
- ],
- [
- 10.17961,
- 47.29603
- ],
- [
- 10.17208,
- 47.27908
- ],
- [
- 10.17404,
- 47.27025
- ],
- [
- 10.17834,
- 47.27011
- ],
- [
- 10.17449,
- 47.2637
- ],
- [
- 10.21884,
- 47.25533
- ],
- [
- 10.22343,
- 47.24983
- ],
- [
- 10.21087,
- 47.2478
- ],
- [
- 10.19776,
- 47.23666
- ],
- [
- 10.20791,
- 47.2328
- ],
- [
- 10.21428,
- 47.21684
- ],
- [
- 10.21269,
- 47.20432
- ],
- [
- 10.19963,
- 47.19539
- ],
- [
- 10.19951,
- 47.18525
- ],
- [
- 10.21151,
- 47.17124
- ],
- [
- 10.2092,
- 47.16537
- ],
- [
- 10.20851,
- 47.15948
- ],
- [
- 10.21321,
- 47.1577
- ],
- [
- 10.2222,
- 47.15323
- ],
- [
- 10.22166,
- 47.14925
- ],
- [
- 10.21481,
- 47.14352
- ],
- [
- 10.20333,
- 47.14215
- ],
- [
- 10.20887,
- 47.13164
- ],
- [
- 10.18629,
- 47.12886
- ],
- [
- 10.18652,
- 47.11946
- ],
- [
- 10.17288,
- 47.12033
- ],
- [
- 10.16299,
- 47.11361
- ],
- [
- 10.15766,
- 47.11426
- ],
- [
- 10.15442,
- 47.10578
- ],
- [
- 10.13243,
- 47.08122
- ],
- [
- 10.13459,
- 47.06392
- ],
- [
- 10.15085,
- 47.06184
- ],
- [
- 10.15693,
- 47.04883
- ],
- [
- 10.14418,
- 47.03355
- ],
- [
- 10.12326,
- 47.02209
- ],
- [
- 10.13284,
- 47.01204
- ],
- [
- 10.15447,
- 47.00545
- ],
- [
- 10.15961,
- 46.99882
- ],
- [
- 10.15442,
- 46.99299
- ],
- [
- 10.16001,
- 46.984
- ],
- [
- 10.14463,
- 46.98301
- ],
- [
- 10.13492,
- 46.96584
- ],
- [
- 10.13501,
- 46.95483
- ],
- [
- 10.12684,
- 46.9435
- ],
- [
- 10.09772,
- 46.92676
- ],
- [
- 10.09954,
- 46.91712
- ],
- [
- 10.10921,
- 46.90834
- ],
- [
- 10.10908,
- 46.89431
- ],
- [
- 10.12497,
- 46.88014
- ],
- [
- 10.14147,
- 46.87468
- ],
- [
- 10.13967,
- 46.86217
- ],
- [
- 10.14506,
- 46.8511
- ],
- [
- 10.13941,
- 46.84738
- ],
- [
- 10.12309,
- 46.84848
- ],
- [
- 10.11912,
- 46.84417
- ],
- [
- 10.10518,
- 46.8409
- ],
- [
- 10.09195,
- 46.85143
- ],
- [
- 10.09265,
- 46.85818
- ],
- [
- 10.08712,
- 46.86128
- ],
- [
- 10.05488,
- 46.8617
- ],
- [
- 10.0509,
- 46.86442
- ],
- [
- 10.05192,
- 46.87405
- ],
- [
- 10.03891,
- 46.88611
- ],
- [
- 10.03221,
- 46.88802
- ],
- [
- 10.01782,
- 46.90161
- ],
- [
- 10.00494,
- 46.89889
- ],
- [
- 9.98243,
- 46.9062
- ],
- [
- 9.97793,
- 46.91603
- ],
- [
- 9.96657,
- 46.91222
- ],
- [
- 9.95907,
- 46.91602
- ],
- [
- 9.94612,
- 46.91235
- ],
- [
- 9.93758,
- 46.91324
- ],
- [
- 9.92153,
- 46.91882
- ],
- [
- 9.91231,
- 46.92606
- ],
- [
- 9.90632,
- 46.9253
- ],
- [
- 9.89449,
- 46.93164
- ],
- [
- 9.87613,
- 46.93463
- ],
- [
- 9.88071,
- 46.94011
- ],
- [
- 9.87657,
- 46.94071
- ],
- [
- 9.87488,
- 46.95039
- ],
- [
- 9.87872,
- 46.95707
- ],
- [
- 9.87073,
- 46.96321
- ],
- [
- 9.88482,
- 46.98546
- ],
- [
- 9.8923,
- 46.99036
- ],
- [
- 9.88878,
- 47.00072
- ],
- [
- 9.8707,
- 47.00965
- ],
- [
- 9.87115,
- 47.01306
- ],
- [
- 9.88035,
- 47.01722
- ],
- [
- 9.87779,
- 47.02055
- ],
- [
- 9.85974,
- 47.02321
- ],
- [
- 9.85273,
- 47.01641
- ],
- [
- 9.83612,
- 47.01253
- ],
- [
- 9.82353,
- 47.01986
- ],
- [
- 9.80756,
- 47.02356
- ],
- [
- 9.78491,
- 47.03849
- ],
- [
- 9.74808,
- 47.03692
- ],
- [
- 9.74185,
- 47.04268
- ],
- [
- 9.71821,
- 47.04337
- ],
- [
- 9.70701,
- 47.04805
- ],
- [
- 9.7076,
- 47.05381
- ],
- [
- 9.69756,
- 47.05239
- ],
- [
- 9.68392,
- 47.05765
- ],
- [
- 9.68184,
- 47.0621
- ],
- [
- 9.67743,
- 47.06141
- ],
- [
- 9.65821,
- 47.05818
- ],
- [
- 9.64506,
- 47.05978
- ],
- [
- 9.64158,
- 47.05598
- ],
- [
- 9.63654,
- 47.0517
- ],
- [
- 9.62633,
- 47.05133
- ],
- [
- 9.60705,
- 47.06077
- ],
- [
- 9.6134,
- 47.0695
- ],
- [
- 9.61153,
- 47.0794
- ],
- [
- 9.61869,
- 47.07817
- ],
- [
- 9.62339,
- 47.08258
- ],
- [
- 9.63346,
- 47.08344
- ],
- [
- 9.63564,
- 47.09553
- ],
- [
- 9.62858,
- 47.10756
- ],
- [
- 9.62083,
- 47.11032
- ],
- [
- 9.63503,
- 47.12813
- ],
- [
- 9.62467,
- 47.13265
- ],
- [
- 9.62258,
- 47.14135
- ],
- [
- 9.62587,
- 47.1459
- ],
- [
- 9.62059,
- 47.15164
- ],
- [
- 9.6089,
- 47.14775
- ],
- [
- 9.59679,
- 47.16294
- ],
- [
- 9.57946,
- 47.17116
- ],
- [
- 9.56456,
- 47.17029
- ],
- [
- 9.57302,
- 47.1756
- ],
- [
- 9.57259,
- 47.19079
- ],
- [
- 9.58032,
- 47.19578
- ],
- [
- 9.58477,
- 47.20532
- ],
- [
- 9.5687,
- 47.21968
- ],
- [
- 9.55851,
- 47.22416
- ],
- [
- 9.55176,
- 47.22377
- ],
- [
- 9.56679,
- 47.24288
- ],
- [
- 9.53073,
- 47.27058
- ],
- [
- 9.54619,
- 47.28005
- ],
- [
- 9.55634,
- 47.29829
- ],
- [
- 9.58805,
- 47.3173
- ],
- [
- 9.59966,
- 47.3455
- ],
- [
- 9.61073,
- 47.35571
- ],
- [
- 9.62446,
- 47.36615
- ],
- [
- 9.65876,
- 47.36946
- ],
- [
- 9.67255,
- 47.38021
- ],
- [
- 9.67311,
- 47.39194
- ],
- [
- 9.65162,
- 47.40463
- ],
- [
- 9.64551,
- 47.4312
- ],
- [
- 9.64512,
- 47.4378
- ],
- [
- 9.65799,
- 47.44779
- ],
- [
- 9.65898,
- 47.4522
- ],
- [
- 9.62234,
- 47.45747
- ],
- [
- 9.60904,
- 47.47054
- ],
- [
- 9.60292,
- 47.46198
- ],
- [
- 9.59514,
- 47.46331
- ],
- [
- 9.58217,
- 47.48276
- ],
- [
- 9.5622,
- 47.49592
- ],
- [
- 9.55057,
- 47.53718
- ],
- [
- 9.5827,
- 47.53592
- ],
- [
- 9.60465,
- 47.52952
- ],
- [
- 9.73478,
- 47.53396
- ],
- [
- 9.73517,
- 47.54661
- ],
- [
- 9.74164,
- 47.55499
- ],
- [
- 9.7471,
- 47.55569
- ],
- [
- 9.74337,
- 47.55867
- ],
- [
- 9.75207,
- 47.56747
- ],
- [
- 9.74806,
- 47.57052
- ],
- [
- 9.75632,
- 47.57262
- ],
- [
- 9.75633,
- 47.57963
- ],
- [
- 9.76197,
- 47.58096
- ],
- [
- 9.76553,
- 47.58912
- ],
- [
- 9.76933,
- 47.58739
- ],
- [
- 9.77697,
- 47.59544
- ],
- [
- 9.79151,
- 47.59352
- ],
- [
- 9.79999,
- 47.59611
- ],
- [
- 9.81414,
- 47.58807
- ],
- [
- 9.82381,
- 47.5871
- ],
- [
- 9.82728,
- 47.57997
- ],
- [
- 9.82079,
- 47.57076
- ],
- [
- 9.82562,
- 47.55922
- ],
- [
- 9.8171,
- 47.55333
- ],
- [
- 9.81579,
- 47.54767
- ],
- [
- 9.85023,
- 47.54164
- ],
- [
- 9.85839,
- 47.53388
- ],
- [
- 9.87451,
- 47.52854
- ],
- [
- 9.87804,
- 47.53876
- ],
- [
- 9.87515,
- 47.54343
- ],
- [
- 9.88125,
- 47.54814
- ],
- [
- 9.8891,
- 47.54399
- ],
- [
- 9.89935,
- 47.54475
- ],
- [
- 9.90666,
- 47.54217
- ],
- [
- 9.91358,
- 47.53255
- ],
- [
- 9.92189,
- 47.52964
- ],
- [
- 9.93352,
- 47.53265
- ],
- [
- 9.94108,
- 47.53822
- ],
- [
- 9.9637,
- 47.53472
- ],
- [
- 9.95883,
- 47.54313
- ],
- [
- 9.96318,
- 47.54229
- ],
- [
- 9.96805,
- 47.54631
- ]
- ]
- ],
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAAD1BMVEUAAACEAgT8AgQEAgSEgoTQjzHEAAAAAXRSTlMAQObYZgAAAHJJREFUeF6ljVEKgzAQRCftBUQv0KwXML7cwPvfqQwJtIVqi76fHR7DrKSUJY1DD84xKEVuwcT40C1HC18bqQDTBKWosUZn+VvQ4UTjkoCYWd/Eco9ZLwEWggsNC9CPL3C0UauFz44wFh941Bw0tm1PPAGCUydahBcw6wAAAABJRU5ErkJggg=="
- },
- {
- "id": "vogis.cnv.at-ef2012_12cm",
- "name": "VoGIS: Echtfarbenbild 2012 (12cm)",
- "type": "wms",
- "template": "http://vogis.cnv.at/mapserver/mapserv?map=i_luftbilder_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ef2012_12cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2012-01-01T00:00:00.000Z",
- "startDate": "2012-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 9.54367,
- 47.48479
- ],
- [
- 9.61451,
- 47.45058
- ],
- [
- 9.61359,
- 47.38272
- ],
- [
- 9.44246,
- 47.24798
- ],
- [
- 9.44614,
- 47.096
- ],
- [
- 9.42866,
- 47.08911
- ],
- [
- 9.42498,
- 47.01513
- ],
- [
- 9.85281,
- 47.00196
- ],
- [
- 9.85741,
- 46.89896
- ],
- [
- 9.9669,
- 46.88952
- ],
- [
- 10.04511,
- 46.8499
- ],
- [
- 10.15828,
- 46.83353
- ],
- [
- 10.1592,
- 46.89204
- ],
- [
- 10.14718,
- 46.89248
- ],
- [
- 10.15115,
- 46.94331
- ],
- [
- 10.16317,
- 46.94287
- ],
- [
- 10.1647,
- 46.96238
- ],
- [
- 10.17852,
- 46.96681
- ],
- [
- 10.17576,
- 47.10351
- ],
- [
- 10.22912,
- 47.10226
- ],
- [
- 10.22084,
- 47.24361
- ],
- [
- 10.26133,
- 47.41261
- ],
- [
- 10.12423,
- 47.40576
- ],
- [
- 10.09387,
- 47.47795
- ],
- [
- 10.00462,
- 47.50717
- ],
- [
- 9.98622,
- 47.56121
- ],
- [
- 9.84361,
- 47.56245
- ],
- [
- 9.84085,
- 47.60714
- ],
- [
- 9.53999,
- 47.60652
- ],
- [
- 9.54367,
- 47.48479
- ]
- ]
- ],
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAAD1BMVEUAAACEAgT8AgQEAgSEgoTQjzHEAAAAAXRSTlMAQObYZgAAAHJJREFUeF6ljVEKgzAQRCftBUQv0KwXML7cwPvfqQwJtIVqi76fHR7DrKSUJY1DD84xKEVuwcT40C1HC18bqQDTBKWosUZn+VvQ4UTjkoCYWd/Eco9ZLwEWggsNC9CPL3C0UauFz44wFh941Bw0tm1PPAGCUydahBcw6wAAAABJRU5ErkJggg=="
- },
- {
- "id": "vogis.cnv.at-ef2015_10cm",
- "name": "VoGIS: Echtfarbenbild 2015 (10cm)",
- "type": "wms",
- "template": "http://vogis.cnv.at/mapserver/mapserv?map=i_luftbilder_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ef2015_10cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2015-01-01T00:00:00.000Z",
- "startDate": "2015-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 9.54367,
- 47.48479
- ],
- [
- 9.61451,
- 47.45058
- ],
- [
- 9.61359,
- 47.38272
- ],
- [
- 9.44246,
- 47.24798
- ],
- [
- 9.44614,
- 47.096
- ],
- [
- 9.42866,
- 47.08911
- ],
- [
- 9.42498,
- 47.01513
- ],
- [
- 9.85281,
- 47.00196
- ],
- [
- 9.85741,
- 46.89896
- ],
- [
- 9.9669,
- 46.88952
- ],
- [
- 10.04511,
- 46.8499
- ],
- [
- 10.15828,
- 46.83353
- ],
- [
- 10.1592,
- 46.89204
- ],
- [
- 10.14718,
- 46.89248
- ],
- [
- 10.15115,
- 46.94331
- ],
- [
- 10.16317,
- 46.94287
- ],
- [
- 10.1647,
- 46.96238
- ],
- [
- 10.17852,
- 46.96681
- ],
- [
- 10.17576,
- 47.10351
- ],
- [
- 10.22912,
- 47.10226
- ],
- [
- 10.22084,
- 47.24361
- ],
- [
- 10.26133,
- 47.41261
- ],
- [
- 10.12423,
- 47.40576
- ],
- [
- 10.09387,
- 47.47795
- ],
- [
- 10.00462,
- 47.50717
- ],
- [
- 9.98622,
- 47.56121
- ],
- [
- 9.84361,
- 47.56245
- ],
- [
- 9.84085,
- 47.60714
- ],
- [
- 9.53999,
- 47.60652
- ],
- [
- 9.54367,
- 47.48479
- ]
- ]
- ],
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAAD1BMVEUAAACEAgT8AgQEAgSEgoTQjzHEAAAAAXRSTlMAQObYZgAAAHJJREFUeF6ljVEKgzAQRCftBUQv0KwXML7cwPvfqQwJtIVqi76fHR7DrKSUJY1DD84xKEVuwcT40C1HC18bqQDTBKWosUZn+VvQ4UTjkoCYWd/Eco9ZLwEWggsNC9CPL3C0UauFz44wFh941Bw0tm1PPAGCUydahBcw6wAAAABJRU5ErkJggg=="
- },
- {
- "id": "vogis.cnv.at-wi2015_20cm",
- "name": "VoGIS: Echtfarbenbild Winter 2015 (20cm)",
- "type": "wms",
- "template": "http://vogis.cnv.at/mapserver/mapserv?map=i_luftbilder_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=wi2015_20cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
- "projection": "EPSG:3857",
- "endDate": "2015-01-01T00:00:00.000Z",
- "startDate": "2015-01-01T00:00:00.000Z",
- "polygon": [
- [
- [
- 10.17039,
- 46.82979
- ],
- [
- 10.17108,
- 46.93644
- ],
- [
- 10.18413,
- 46.94113
- ],
- [
- 10.1855,
- 47.10157
- ],
- [
- 10.23906,
- 47.10437
- ],
- [
- 10.24283,
- 47.15611
- ],
- [
- 10.25691,
- 47.18704
- ],
- [
- 10.24558,
- 47.27597
- ],
- [
- 10.25313,
- 47.32347
- ],
- [
- 10.26893,
- 47.32626
- ],
- [
- 10.26446,
- 47.41102
- ],
- [
- 10.13194,
- 47.4087
- ],
- [
- 10.13434,
- 47.46107
- ],
- [
- 10.11752,
- 47.46153
- ],
- [
- 10.11889,
- 47.47337
- ],
- [
- 10.08731,
- 47.47429
- ],
- [
- 10.08491,
- 47.50724
- ],
- [
- 10.06843,
- 47.507
- ],
- [
- 10.0674,
- 47.5215
- ],
- [
- 10.02345,
- 47.52428
- ],
- [
- 10.00079,
- 47.57943
- ],
- [
- 9.84904,
- 47.57757
- ],
- [
- 9.85042,
- 47.61462
- ],
- [
- 9.72751,
- 47.61277
- ],
- [
- 9.7203,
- 47.59089
- ],
- [
- 9.70347,
- 47.58915
- ],
- [
- 9.70313,
- 47.54491
- ],
- [
- 9.68219,
- 47.54491
- ],
- [
- 9.68047,
- 47.55348
- ],
- [
- 9.56391,
- 47.54931
- ],
- [
- 9.56202,
- 47.53958
- ],
- [
- 9.55172,
- 47.53958
- ],
- [
- 9.55172,
- 47.53402
- ],
- [
- 9.52168,
- 47.53471
- ],
- [
- 9.52701,
- 47.30497
- ],
- [
- 9.50503,
- 47.30264
- ],
- [
- 9.50091,
- 47.23368
- ],
- [
- 9.52357,
- 47.23228
- ],
- [
- 9.52426,
- 47.16557
- ],
- [
- 9.54486,
- 47.16405
- ],
- [
- 9.54383,
- 47.15448
- ],
- [
- 9.57232,
- 47.15401
- ],
- [
- 9.57026,
- 47.12809
- ],
- [
- 9.59018,
- 47.12867
- ],
- [
- 9.59189,
- 47.10029
- ],
- [
- 9.57232,
- 47.10017
- ],
- [
- 9.57713,
- 47.02861
- ],
- [
- 9.72407,
- 47.03048
- ],
- [
- 9.72304,
- 47.01749
- ],
- [
- 9.77454,
- 47.01562
- ],
- [
- 9.77626,
- 47.00555
- ],
- [
- 9.79274,
- 47.00391
- ],
- [
- 9.7948,
- 46.99127
- ],
- [
- 9.83874,
- 46.99314
- ],
- [
- 9.84012,
- 46.90349
- ],
- [
- 9.89024,
- 46.90725
- ],
- [
- 9.88543,
- 46.88707
- ],
- [
- 9.95925,
- 46.89141
- ],
- [
- 9.962,
- 46.87675
- ],
- [
- 10.0001,
- 46.87862
- ],
- [
- 9.99667,
- 46.85715
- ],
- [
- 10.01864,
- 46.85656
- ],
- [
- 10.02345,
- 46.83073
- ],
- [
- 10.17039,
- 46.82979
- ]
- ]
- ],
- "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAAD1BMVEUAAACEAgT8AgQEAgSEgoTQjzHEAAAAAXRSTlMAQObYZgAAAHJJREFUeF6ljVEKgzAQRCftBUQv0KwXML7cwPvfqQwJtIVqi76fHR7DrKSUJY1DD84xKEVuwcT40C1HC18bqQDTBKWosUZn+VvQ4UTjkoCYWd/Eco9ZLwEWggsNC9CPL3C0UauFz44wFh941Bw0tm1PPAGCUydahBcw6wAAAABJRU5ErkJggg=="
- }
- ]
+ "dataImagery": [
+ {
+ "id": "sjcgis.org-Aerials_2013_WM",
+ "name": "2013 aerial imagery for San Juan County WA",
+ "type": "tms",
+ "template": "https://sjcgis.org/arcgis/rest/services/Basemaps/Aerials_2013_WM/MapServer/tile/{zoom}/{y}/{x}",
+ "endDate": "2013-06-01T00:00:00.000Z",
+ "startDate": "2013-05-01T00:00:00.000Z",
+ "scaleExtent": [0, 19],
+ "polygon": [
+ [
+ [-123.02167, 48.44667],
+ [-122.94666, 48.44781],
+ [-122.90151, 48.41307],
+ [-122.80263, 48.40771],
+ [-122.79199, 48.4428],
+ [-122.80881, 48.47866],
+ [-122.73912, 48.49572],
+ [-122.78547, 48.62161],
+ [-122.73088, 48.63613],
+ [-122.7556, 48.71208],
+ [-122.95747, 48.71593],
+ [-122.97086, 48.69577],
+ [-122.9997, 48.6978],
+ [-123.00348, 48.73427],
+ [-123.0433, 48.7431],
+ [-123.07626, 48.70528],
+ [-123.08485, 48.66335],
+ [-123.12845, 48.6638],
+ [-123.22698, 48.70302],
+ [-123.24655, 48.68353],
+ [-123.17445, 48.64702],
+ [-123.21514, 48.60107],
+ [-123.21393, 48.57336],
+ [-123.1808, 48.56575],
+ [-123.16621, 48.52006],
+ [-123.10235, 48.47684],
+ [-123.02167, 48.44667]
+ ],
+ [
+ [-122.98339, 48.78214],
+ [-122.93498, 48.76653],
+ [-122.91181, 48.73858],
+ [-122.80229, 48.73982],
+ [-122.81946, 48.75499],
+ [-122.9343, 48.79572],
+ [-122.98374, 48.79436],
+ [-122.98339, 48.78214]
+ ]
+ ],
+ "terms_url": "https://www.arcgis.com/home/item.html?id=7bf69831861d438d8365cf9f46662523",
+ "terms_text": "Pictometry Inc, San Juan County GIS",
+ "description": "Public domain aerial imagery taken in May/June 2013 from San Juan County, WA. Resolution is 9 inch."
+ },
+ {
+ "id": "sjcgis.org-Aerials_2016_WM",
+ "name": "2016 aerial imagery for San Juan County WA",
+ "type": "tms",
+ "template": "https://sjcgis.org/arcgis/rest/services/Basemaps/Aerials_2016_WM/MapServer/tile/{zoom}/{y}/{x}",
+ "endDate": "2016-07-01T00:00:00.000Z",
+ "startDate": "2016-05-01T00:00:00.000Z",
+ "scaleExtent": [0, 19],
+ "polygon": [
+ [
+ [-123.02167, 48.44667],
+ [-122.94666, 48.44781],
+ [-122.90151, 48.41307],
+ [-122.80263, 48.40771],
+ [-122.79199, 48.4428],
+ [-122.80881, 48.47866],
+ [-122.73912, 48.49572],
+ [-122.78547, 48.62161],
+ [-122.73088, 48.63613],
+ [-122.7556, 48.71208],
+ [-122.95747, 48.71593],
+ [-122.97086, 48.69577],
+ [-122.9997, 48.6978],
+ [-123.00348, 48.73427],
+ [-123.0433, 48.7431],
+ [-123.07626, 48.70528],
+ [-123.08485, 48.66335],
+ [-123.12845, 48.6638],
+ [-123.22698, 48.70302],
+ [-123.24655, 48.68353],
+ [-123.17445, 48.64702],
+ [-123.21514, 48.60107],
+ [-123.21393, 48.57336],
+ [-123.1808, 48.56575],
+ [-123.16621, 48.52006],
+ [-123.10235, 48.47684],
+ [-123.02167, 48.44667]
+ ],
+ [
+ [-122.98339, 48.78214],
+ [-122.93498, 48.76653],
+ [-122.91181, 48.73858],
+ [-122.80229, 48.73982],
+ [-122.81946, 48.75499],
+ [-122.9343, 48.79572],
+ [-122.98374, 48.79436],
+ [-122.98339, 48.78214]
+ ]
+ ],
+ "best": true,
+ "description": "Public domain aerial imagery taken in May, June, and July from San Juan County, WA. Resolution is 6 inch countywide."
+ },
+ {
+ "id": "OS7",
+ "name": "7th Series (OS7)",
+ "type": "tms",
+ "template": "https://ooc.openstreetmap.org/os7/{zoom}/{x}/{y}.jpg",
+ "polygon": [
+ [
+ [-3.04697, 54.83947],
+ [-3.05864, 55.24157],
+ [-4.04466, 55.23296],
+ [-4.07076, 55.63654],
+ [-4.61904, 55.6253],
+ [-4.64926, 56.02834],
+ [-4.48961, 56.03217],
+ [-4.52394, 56.4367],
+ [-3.86751, 56.44581],
+ [-3.84176, 56.04944],
+ [-3.44591, 56.04982],
+ [-3.43492, 55.64429],
+ [-2.79497, 55.65049],
+ [-2.80802, 56.05749],
+ [-3.20661, 56.05327],
+ [-3.21417, 56.45682],
+ [-3.73808, 56.45075],
+ [-3.74185, 56.86175],
+ [-5.07669, 56.83171],
+ [-5.03652, 56.42949],
+ [-5.16012, 56.42493],
+ [-5.12991, 56.01798],
+ [-5.92607, 55.99456],
+ [-5.85518, 55.23335],
+ [-5.2281, 55.25136],
+ [-5.21024, 55.02765],
+ [-4.65956, 55.04181],
+ [-4.64548, 54.81633],
+ [-3.04697, 54.83947]
+ ],
+ [
+ [-1.74835, 57.76428],
+ [-1.74065, 57.36],
+ [-2.58022, 57.35537],
+ [-2.57437, 57.04526],
+ [-2.08408, 57.04799],
+ [-2.07651, 56.64276],
+ [-2.7345, 56.63906],
+ [-2.73781, 56.81718],
+ [-3.23885, 56.81437],
+ [-3.24896, 57.35168],
+ [-3.75629, 57.34889],
+ [-3.76219, 57.65868],
+ [-4.76587, 57.64473],
+ [-4.81008, 58.26984],
+ [-5.2511, 58.26547],
+ [-5.27376, 58.66767],
+ [-3.55818, 58.69887],
+ [-3.56607, 58.9316],
+ [-3.37656, 58.93444],
+ [-3.38584, 59.20171],
+ [-3.18713, 59.20215],
+ [-3.18747, 59.24176],
+ [-3.06757, 59.24203],
+ [-3.07855, 59.42135],
+ [-2.37131, 59.42763],
+ [-2.36856, 59.0222],
+ [-2.67893, 59.02078],
+ [-2.67343, 58.83935],
+ [-2.86569, 58.83651],
+ [-2.8602, 58.53531],
+ [-3.03461, 58.53316],
+ [-3.0195, 58.13159],
+ [-3.6156, 58.11982],
+ [-3.61276, 57.97754],
+ [-3.71092, 57.97562],
+ [-3.69932, 57.75364],
+ [-1.74835, 57.76428]
+ ],
+ [
+ [-7.07492, 56.76319],
+ [-7.73471, 56.73566],
+ [-7.7911, 57.13994],
+ [-7.70662, 57.14343],
+ [-7.76299, 57.54311],
+ [-7.60218, 57.54968],
+ [-7.62134, 57.68452],
+ [-7.72499, 57.6803],
+ [-7.73017, 57.71673],
+ [-7.60264, 57.72191],
+ [-7.59964, 57.70083],
+ [-7.48634, 57.70544],
+ [-7.49528, 57.76813],
+ [-7.37493, 57.77301],
+ [-7.39337, 57.90201],
+ [-7.23591, 57.90838],
+ [-7.24323, 57.95948],
+ [-7.13916, 57.96369],
+ [-7.14508, 58.00495],
+ [-7.23742, 58.00122],
+ [-7.23297, 57.97018],
+ [-7.31133, 57.96702],
+ [-7.31538, 57.99525],
+ [-7.24904, 57.99792],
+ [-7.28082, 58.21856],
+ [-7.07355, 58.22687],
+ [-7.0827, 58.29018],
+ [-6.80743, 58.30119],
+ [-6.82768, 58.44074],
+ [-6.50305, 58.45366],
+ [-6.51532, 58.53792],
+ [-6.16474, 58.55184],
+ [-6.10631, 58.14894],
+ [-6.33469, 58.13976],
+ [-6.27759, 57.74145],
+ [-6.96138, 57.71366],
+ [-6.93332, 57.51615],
+ [-7.10017, 57.50933],
+ [-7.05218, 57.169],
+ [-7.13111, 57.16575],
+ [-7.07492, 56.76319]
+ ],
+ [
+ [0.41076, 50.82087],
+ [0.98102, 50.80612],
+ [0.99437, 51.01173],
+ [1.45062, 50.99998],
+ [1.47712, 51.40552],
+ [0.89619, 51.42035],
+ [0.88243, 51.21039],
+ [0.505, 51.22007],
+ [0.52273, 51.49042],
+ [-0.63397, 51.51063],
+ [-0.63671, 51.44563],
+ [-1.09951, 51.45248],
+ [-1.11485, 51.04814],
+ [-0.52987, 51.0394],
+ [-0.52751, 51.10203],
+ [0.42806, 51.08778],
+ [0.41076, 50.82087]
+ ],
+ [
+ [-5.39457, 51.9619],
+ [-4.79581, 51.98051],
+ [-4.78873, 51.89403],
+ [-4.20265, 51.91228],
+ [-4.22941, 52.23828],
+ [-3.6552, 52.25602],
+ [-3.62228, 51.85483],
+ [-4.21342, 51.8364],
+ [-4.18551, 51.49342],
+ [-4.77661, 51.47485],
+ [-4.78476, 51.57525],
+ [-5.08799, 51.56574],
+ [-5.09422, 51.64242],
+ [-5.3678, 51.63385],
+ [-5.39457, 51.9619]
+ ],
+ [
+ [-1.2389, 54.03537],
+ [-0.62779, 54.02811],
+ [-0.62004, 54.25257],
+ [-0.57268, 54.25201],
+ [-0.55865, 54.65542],
+ [-1.17998, 54.66269],
+ [-1.18782, 54.43788],
+ [-1.23221, 54.4384],
+ [-1.2389, 54.03537]
+ ],
+ [
+ [-2.67227, 50.97677],
+ [-2.09961, 50.98023],
+ [-2.10572, 51.37949],
+ [-1.58877, 51.38259],
+ [-1.59499, 51.78589],
+ [-2.17563, 51.78891],
+ [-2.17154, 51.38392],
+ [-2.67846, 51.38088],
+ [-2.67227, 50.97677]
+ ],
+ [
+ [-2.60155, 53.27155],
+ [-3.22973, 53.2685],
+ [-3.23522, 53.67231],
+ [-2.60704, 53.67533],
+ [-2.60155, 53.27155]
+ ],
+ [
+ [-0.03942, 51.7728],
+ [-0.61563, 51.77577],
+ [-0.60465, 52.58414],
+ [-0.02843, 52.58122],
+ [-0.03942, 51.7728]
+ ],
+ [
+ [-2.91529, 54.03523],
+ [-3.53229, 54.02866],
+ [-3.54484, 54.43397],
+ [-2.92785, 54.44047],
+ [-2.91529, 54.03523]
+ ],
+ [
+ [-6.30583, 57.19689],
+ [-6.3539, 57.60015],
+ [-5.69111, 57.62295],
+ [-5.64305, 57.21995],
+ [-6.30583, 57.19689]
+ ],
+ [
+ [1.17115, 52.57236],
+ [1.19865, 52.97594],
+ [1.79788, 52.96106],
+ [1.77037, 52.55734],
+ [1.17115, 52.57236]
+ ],
+ [
+ [-2.40225, 55.56317],
+ [-2.40088, 55.9657],
+ [-1.76084, 55.96501],
+ [-1.76222, 55.56248],
+ [-2.40225, 55.56317]
+ ],
+ [
+ [-6.32574, 56.38537],
+ [-7.0196, 56.35747],
+ [-7.07316, 56.76384],
+ [-6.3793, 56.79145],
+ [-6.32574, 56.38537]
+ ],
+ [
+ [-2.42258, 54.4431],
+ [-2.42574, 54.84188],
+ [-1.79931, 54.84354],
+ [-1.79614, 54.44477],
+ [-2.42258, 54.4431]
+ ],
+ [
+ [-3.02701, 51.37935],
+ [-3.60589, 51.37017],
+ [-3.62237, 51.77304],
+ [-3.04349, 51.78215],
+ [-3.02701, 51.37935]
+ ],
+ [
+ [-3.05379, 52.18979],
+ [-3.06615, 52.59374],
+ [-2.48364, 52.60034],
+ [-2.47128, 52.19646],
+ [-3.05379, 52.18979]
+ ],
+ [
+ [-5.67673, 51.70425],
+ [-5.67886, 51.73101],
+ [-5.4636, 51.7376],
+ [-5.46146, 51.71084],
+ [-5.67673, 51.70425]
+ ],
+ [
+ [-5.84427, 59.10882],
+ [-5.8469, 59.13578],
+ [-5.79558, 59.1371],
+ [-5.79294, 59.11014],
+ [-5.84427, 59.10882]
+ ],
+ [
+ [-8.64844, 57.77861],
+ [-8.66597, 57.87717],
+ [-8.46649, 57.88721],
+ [-8.44897, 57.78867],
+ [-8.64844, 57.77861]
+ ],
+ [
+ [-4.52711, 59.01532],
+ [-4.52859, 59.03319],
+ [-4.47623, 59.03434],
+ [-4.47475, 59.01646],
+ [-4.52711, 59.01532]
+ ],
+ [
+ [-7.68062, 58.25838],
+ [-7.68655, 58.2938],
+ [-7.53445, 58.30084],
+ [-7.52852, 58.26542],
+ [-7.68062, 58.25838]
+ ],
+ [
+ [-6.19102, 59.08009],
+ [-6.19546, 59.11586],
+ [-6.12542, 59.11815],
+ [-6.12099, 59.08238],
+ [-6.19102, 59.08009]
+ ],
+ [
+ [-4.42669, 59.07112],
+ [-4.42805, 59.0887],
+ [-4.37621, 59.08976],
+ [-4.37485, 59.07218],
+ [-4.42669, 59.07112]
+ ]
+ ]
+ },
+ {
+ "id": "ACT2017",
+ "name": "ACTmapi Imagery 2017",
+ "type": "wms",
+ "template": "https://data.actmapi.act.gov.au/arcgis/services/actmapi/imagery2017mga/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:4326",
+ "endDate": "2017-05-01T00:00:00.000Z",
+ "startDate": "2017-05-01T00:00:00.000Z",
+ "scaleExtent": [0, 21],
+ "polygon": [
+ [
+ [149.085, -35.1171],
+ [149.1509, -35.1157],
+ [149.1509, -35.1335],
+ [149.1736, -35.1335],
+ [149.1739, -35.1512],
+ [149.1957, -35.1512],
+ [149.1962, -35.1689],
+ [149.2177, -35.1683],
+ [149.2192, -35.2048],
+ [149.241, -35.2043],
+ [149.2419, -35.2223],
+ [149.2632, -35.2222],
+ [149.2644, -35.2575],
+ [149.3085, -35.2571],
+ [149.309, -35.2751],
+ [149.3531, -35.2742],
+ [149.3536, -35.2921],
+ [149.3974, -35.2917],
+ [149.3988, -35.3452],
+ [149.3777, -35.3457],
+ [149.3772, -35.3641],
+ [149.3341, -35.3648],
+ [149.3385, -35.5451],
+ [149.1624, -35.5487],
+ [149.1727, -35.9271],
+ [149.0175, -35.9294],
+ [149.0172, -35.9113],
+ [148.9506, -35.9125],
+ [148.9499, -35.8946],
+ [148.9277, -35.8949],
+ [148.9272, -35.8768],
+ [148.9053, -35.8768],
+ [148.9042, -35.8586],
+ [148.8826, -35.859],
+ [148.8805, -35.7695],
+ [148.8361, -35.7698],
+ [148.8359, -35.7521],
+ [148.8138, -35.7524],
+ [148.8131, -35.7343],
+ [148.7909, -35.7347],
+ [148.7911, -35.7167],
+ [148.7688, -35.7167],
+ [148.7617, -35.3924],
+ [148.7839, -35.3921],
+ [148.7822, -35.3022],
+ [148.8041, -35.302],
+ [148.8033, -35.2836],
+ [148.8474, -35.2832],
+ [148.8469, -35.2652],
+ [148.8689, -35.2643],
+ [148.8687, -35.2466],
+ [148.9128, -35.246],
+ [148.9123, -35.2282],
+ [148.9341, -35.228],
+ [148.9329, -35.1919],
+ [148.999, -35.1904],
+ [148.9986, -35.1724],
+ [149.0206, -35.172],
+ [149.0204, -35.154],
+ [149.0637, -35.1532],
+ [149.0635, -35.1355],
+ [149.0857, -35.1348],
+ [149.085, -35.1171]
+ ]
+ ],
+ "terms_url": "https://actmapi-actgov.opendata.arcgis.com/datasets/884456bde6fd46d68e0c05479f55d548",
+ "terms_text": "© Jacobs Group (Australia) Pty Ltd and Australian Capital Territory",
+ "best": true
+ },
+ {
+ "id": "AGIV10cm",
+ "name": "AGIV Flanders 2013-2015 aerial imagery 10cm",
+ "type": "wms",
+ "template": "https://geoservices.informatievlaanderen.be/raadpleegdiensten/OGW/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OGWRGB13_15VL&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2015-01-01T00:00:00.000Z",
+ "startDate": "2013-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [5.98494, 50.70723],
+ [5.98494, 50.7672],
+ [5.91079, 50.82275],
+ [5.75561, 50.83533],
+ [5.75423, 50.86264],
+ [5.8332, 50.93323],
+ [5.85517, 51.02661],
+ [5.90941, 51.07754],
+ [5.91216, 51.18225],
+ [5.87851, 51.20807],
+ [5.77414, 51.23689],
+ [5.68419, 51.24075],
+ [5.62308, 51.26998],
+ [5.62308, 51.29789],
+ [5.54, 51.34724],
+ [5.4473, 51.34853],
+ [5.39855, 51.32107],
+ [5.31203, 51.32322],
+ [5.26671, 51.36182],
+ [5.19942, 51.37254],
+ [5.18294, 51.39611],
+ [5.15891, 51.4924],
+ [5.08338, 51.53086],
+ [5.03257, 51.53983],
+ [4.95566, 51.50522],
+ [4.90142, 51.50565],
+ [4.83825, 51.54367],
+ [4.77096, 51.55862],
+ [4.7119, 51.54709],
+ [4.64049, 51.49667],
+ [4.6144, 51.4971],
+ [4.56565, 51.53171],
+ [4.48256, 51.53043],
+ [4.42626, 51.52189],
+ [4.3006, 51.46974],
+ [4.29511, 51.42566],
+ [4.18113, 51.42437],
+ [4.13718, 51.39525],
+ [4.13856, 51.35067],
+ [4.05204, 51.30047],
+ [3.93325, 51.27298],
+ [3.86527, 51.27084],
+ [3.86321, 51.29016],
+ [3.76296, 51.32407],
+ [3.59336, 51.35925],
+ [3.47732, 51.33137],
+ [3.42582, 51.39739],
+ [3.23562, 51.35153],
+ [3.226, 51.36568],
+ [3.17794, 51.36182],
+ [3.16009, 51.33223],
+ [3.06258, 51.30219],
+ [2.75084, 51.1702],
+ [2.47001, 51.07452],
+ [2.49267, 50.99378],
+ [2.53112, 50.95573],
+ [2.50915, 50.91159],
+ [2.53043, 50.82145],
+ [2.5991, 50.76416],
+ [2.66501, 50.76459],
+ [2.77007, 50.66677],
+ [2.8971, 50.65894],
+ [2.99186, 50.72549],
+ [3.11339, 50.72636],
+ [3.23699, 50.70592],
+ [3.36265, 50.6585],
+ [3.47114, 50.70201],
+ [3.63936, 50.66721],
+ [3.69842, 50.68156],
+ [3.72794, 50.71245],
+ [3.81858, 50.68418],
+ [3.87488, 50.64152],
+ [4.09255, 50.64283],
+ [4.15023, 50.66329],
+ [4.20653, 50.64413],
+ [4.31365, 50.64283],
+ [4.45235, 50.68766],
+ [4.53475, 50.67808],
+ [4.61303, 50.69549],
+ [4.67689, 50.69592],
+ [4.72701, 50.73201],
+ [4.78057, 50.73201],
+ [4.79979, 50.71288],
+ [4.86228, 50.71288],
+ [4.88563, 50.69549],
+ [4.96116, 50.69549],
+ [5.03119, 50.65763],
+ [5.10741, 50.65023],
+ [5.2008, 50.64892],
+ [5.23581, 50.66546],
+ [5.32508, 50.6659],
+ [5.36696, 50.682],
+ [5.42121, 50.66416],
+ [5.52215, 50.6746],
+ [5.6224, 50.72418],
+ [5.67527, 50.69853],
+ [5.73981, 50.69723],
+ [5.77277, 50.67199],
+ [5.8126, 50.66024],
+ [5.90804, 50.65981],
+ [5.98494, 50.70723]
+ ]
+ ],
+ "terms_text": "Orthophoto Flanders © AGIV",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsSAAALEgHS3X78AAABm0lEQVQ4y6WTPUgCYRjHf5oFJVfRUZKVHYFBoBAUFLZE0FBD0NQHRENESzS019LSFNHWx1DQEhGRg0JFREM11FJuLWem4GB5HULdwdkgHprn5LO97/O8v+fj/7y2bDabpQKzFx5S6ntlgE81xvHtclHAbuSNloNT5q/uywP021cAvO4hAPYu5/hI5e6GWpsBCEfjxNSMNUALPvJ7eA3AQPcML3KIzbNhlvdEWmu+6RCcAISiCWtA3fosPztBfrYvAGgX/QCIggdR8DDe6Qbg5E0uAdjyKhhykq+uBeySi9qVCfSAB61HRBQ8RFJpRs6vALiZHMUnNpYO0Ujn+jPkJJnVfbTBNeqfFQB8YqP56H8VJqBKcuHcWsQuuXIOyUX1sN8MnPJKlnOwWS2SIScx0hkcvV3mXUzN0HcSAuBoNMBYZxsADittVXcT/XcPKE/PltqHowkTYLcMkOMoml52+wr9jnIZAJZ8XjYGe0vaUDSdsBxnulsqrUDRdMLReNHg8tYhOAs2M2HdQiSVBqChprpI7/9q5JPYKv3OfxL1n52ATYYBAAAAAElFTkSuQmCC"
+ },
+ {
+ "id": "AGIVFlandersGRB",
+ "name": "AGIV Flanders GRB",
+ "type": "tms",
+ "template": "https://tile.informatievlaanderen.be/ws/raadpleegdiensten/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=grb_bsk&STYLE=&FORMAT=image/png&tileMatrixSet=GoogleMapsVL&tileMatrix={zoom}&tileRow={y}&tileCol={x}",
+ "scaleExtent": [0, 21],
+ "polygon": [
+ [
+ [4.40434, 50.78177],
+ [4.45538, 50.79328],
+ [4.40268, 50.8961],
+ [4.331, 50.90094],
+ [4.27142, 50.82002],
+ [4.30648, 50.81244],
+ [4.36348, 50.77251],
+ [4.40434, 50.78177],
+ [4.43104, 50.73831],
+ [4.31859, 50.72022],
+ [4.29031, 50.69402],
+ [4.14853, 50.72834],
+ [3.95877, 50.68947],
+ [3.9097, 50.69245],
+ [3.89113, 50.74333],
+ [3.77568, 50.74789],
+ [3.75857, 50.78045],
+ [3.67752, 50.77062],
+ [3.64047, 50.72242],
+ [3.54139, 50.73377],
+ [3.54062, 50.76307],
+ [3.46005, 50.76556],
+ [3.3522, 50.70614],
+ [3.30562, 50.75466],
+ [3.17839, 50.75609],
+ [3.15329, 50.78564],
+ [3.02008, 50.77312],
+ [2.99943, 50.81035],
+ [2.91648, 50.75356],
+ [2.85476, 50.75745],
+ [2.86521, 50.70565],
+ [2.78473, 50.7369],
+ [2.713, 50.81534],
+ [2.63518, 50.8129],
+ [2.59909, 50.85306],
+ [2.59031, 50.91893],
+ [2.63262, 50.94575],
+ [2.57372, 51.00842],
+ [2.54165, 51.09345],
+ [3.15582, 51.32714],
+ [3.18307, 51.37128],
+ [3.23443, 51.34669],
+ [3.36356, 51.37228],
+ [3.38101, 51.27446],
+ [3.44201, 51.24313],
+ [3.52759, 51.24604],
+ [3.51511, 51.28753],
+ [3.58984, 51.30577],
+ [3.7783, 51.26235],
+ [3.79088, 51.21429],
+ [3.92412, 51.21938],
+ [4.16613, 51.2929],
+ [4.26163, 51.37647],
+ [4.42065, 51.36473],
+ [4.39108, 51.45149],
+ [4.54747, 51.48571],
+ [4.53541, 51.42303],
+ [4.64953, 51.42758],
+ [4.76359, 51.5088],
+ [4.84188, 51.48074],
+ [4.8383, 51.42174],
+ [4.89366, 51.41698],
+ [4.92785, 51.39544],
+ [5.02894, 51.48789],
+ [5.08018, 51.46948],
+ [5.10202, 51.42892],
+ [5.07117, 51.3935],
+ [5.13109, 51.35137],
+ [5.13448, 51.31547],
+ [5.20031, 51.32172],
+ [5.24189, 51.30534],
+ [5.23036, 51.26436],
+ [5.34828, 51.27492],
+ [5.41741, 51.26229],
+ [5.4863, 51.30197],
+ [5.5556, 51.26986],
+ [5.56045, 51.22233],
+ [5.76027, 51.18505],
+ [5.85578, 51.14463],
+ [5.75909, 51.03588],
+ [5.72665, 50.91307],
+ [5.64522, 50.8372],
+ [5.68732, 50.804],
+ [5.47863, 50.72352],
+ [5.41196, 50.72368],
+ [5.38908, 50.74775],
+ [5.30912, 50.71802],
+ [5.16984, 50.72257],
+ [5.16508, 50.6957],
+ [5.05642, 50.71567],
+ [5.00339, 50.76594],
+ [4.92545, 50.74275],
+ [4.90869, 50.76968],
+ [4.83106, 50.77028],
+ [4.76014, 50.80544],
+ [4.64309, 50.79755],
+ [4.65486, 50.7552],
+ [4.62021, 50.74348],
+ [4.59727, 50.76359],
+ [4.52399, 50.72724],
+ [4.49455, 50.75679],
+ [4.43104, 50.73831],
+ [4.40434, 50.78177]
+ ],
+ [
+ [5.67393, 50.75373],
+ [5.88438, 50.70114],
+ [5.94172, 50.76524],
+ [5.76662, 50.78761],
+ [5.67393, 50.75373]
+ ],
+ [
+ [4.91171, 51.43492],
+ [4.93711, 51.42614],
+ [4.95891, 51.45471],
+ [4.92801, 51.46049],
+ [4.91171, 51.43492]
+ ]
+ ],
+ "terms_text": "GRB Flanders © AGIV",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsSAAALEgHS3X78AAABm0lEQVQ4y6WTPUgCYRjHf5oFJVfRUZKVHYFBoBAUFLZE0FBD0NQHRENESzS019LSFNHWx1DQEhGRg0JFREM11FJuLWem4GB5HULdwdkgHprn5LO97/O8v+fj/7y2bDabpQKzFx5S6ntlgE81xvHtclHAbuSNloNT5q/uywP021cAvO4hAPYu5/hI5e6GWpsBCEfjxNSMNUALPvJ7eA3AQPcML3KIzbNhlvdEWmu+6RCcAISiCWtA3fosPztBfrYvAGgX/QCIggdR8DDe6Qbg5E0uAdjyKhhykq+uBeySi9qVCfSAB61HRBQ8RFJpRs6vALiZHMUnNpYO0Ujn+jPkJJnVfbTBNeqfFQB8YqP56H8VJqBKcuHcWsQuuXIOyUX1sN8MnPJKlnOwWS2SIScx0hkcvV3mXUzN0HcSAuBoNMBYZxsADittVXcT/XcPKE/PltqHowkTYLcMkOMoml52+wr9jnIZAJZ8XjYGe0vaUDSdsBxnulsqrUDRdMLReNHg8tYhOAs2M2HdQiSVBqChprpI7/9q5JPYKv3OfxL1n52ATYYBAAAAAElFTkSuQmCC"
+ },
+ {
+ "id": "AGIV",
+ "name": "AGIV Flanders most recent aerial imagery",
+ "type": "tms",
+ "template": "https://tile.informatievlaanderen.be/ws/raadpleegdiensten/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=omwrgbmrvl&STYLE=&FORMAT=image/png&tileMatrixSet=GoogleMapsVL&tileMatrix={zoom}&tileRow={y}&tileCol={x}",
+ "scaleExtent": [0, 21],
+ "polygon": [
+ [
+ [4.7737, 50.79368],
+ [4.8379, 50.75916],
+ [4.92511, 50.73483],
+ [4.98862, 50.76264],
+ [5.036, 50.73527],
+ [5.0645, 50.69875],
+ [5.1644, 50.69005],
+ [5.19393, 50.71179],
+ [5.3086, 50.71245],
+ [5.36422, 50.74396],
+ [5.43391, 50.70766],
+ [5.54378, 50.74396],
+ [5.61141, 50.73527],
+ [5.71166, 50.73505],
+ [5.77105, 50.74092],
+ [5.81946, 50.70484],
+ [5.89568, 50.70614],
+ [5.9204, 50.72831],
+ [5.91971, 50.74504],
+ [5.89843, 50.77675],
+ [5.81569, 50.76351],
+ [5.77517, 50.79216],
+ [5.69552, 50.79737],
+ [5.69072, 50.82319],
+ [5.66325, 50.82904],
+ [5.65467, 50.86481],
+ [5.72368, 50.9012],
+ [5.77174, 50.95443],
+ [5.75114, 50.97368],
+ [5.78273, 51.00048],
+ [5.78032, 51.0523],
+ [5.80848, 51.05338],
+ [5.80951, 51.07668],
+ [5.84315, 51.09372],
+ [5.84418, 51.1101],
+ [5.82599, 51.11851],
+ [5.86959, 51.14953],
+ [5.8277, 51.17365],
+ [5.792, 51.16891],
+ [5.7738, 51.19344],
+ [5.666, 51.1928],
+ [5.64059, 51.21065],
+ [5.5709, 51.22829],
+ [5.56231, 51.27535],
+ [5.49811, 51.30605],
+ [5.47099, 51.30219],
+ [5.45794, 51.2893],
+ [5.43048, 51.28823],
+ [5.41434, 51.27363],
+ [5.36593, 51.282],
+ [5.33641, 51.28265],
+ [5.32577, 51.26718],
+ [5.24337, 51.27406],
+ [5.24989, 51.31335],
+ [5.20972, 51.32794],
+ [5.14174, 51.31914],
+ [5.14209, 51.35367],
+ [5.08647, 51.39482],
+ [5.11565, 51.43615],
+ [5.08853, 51.47508],
+ [5.05214, 51.47636],
+ [5.04561, 51.4939],
+ [5.02364, 51.4939],
+ [5.01609, 51.48663],
+ [4.82966, 51.48663],
+ [4.83001, 51.50009],
+ [4.76855, 51.51099],
+ [4.74727, 51.50394],
+ [4.658, 51.4492],
+ [4.65663, 51.43144],
+ [4.53956, 51.43379],
+ [4.55466, 51.48171],
+ [4.5296, 51.48748],
+ [4.46368, 51.48235],
+ [4.37167, 51.45562],
+ [4.37751, 51.40553],
+ [4.4139, 51.37511],
+ [4.39776, 51.36118],
+ [4.34798, 51.36675],
+ [4.34627, 51.38497],
+ [4.20344, 51.38111],
+ [4.2213, 51.3511],
+ [4.15641, 51.29832],
+ [4.05101, 51.25193],
+ [4.00638, 51.25279],
+ [3.95144, 51.22205],
+ [3.88484, 51.22936],
+ [3.81926, 51.21797],
+ [3.80038, 51.22872],
+ [3.80107, 51.26074],
+ [3.74442, 51.28007],
+ [3.63593, 51.29746],
+ [3.58615, 51.31378],
+ [3.5065, 51.28308],
+ [3.51371, 51.25021],
+ [3.43921, 51.25064],
+ [3.39766, 51.27513],
+ [3.37329, 51.31678],
+ [3.39114, 51.34274],
+ [3.3623, 51.37961],
+ [3.24283, 51.35474],
+ [3.20266, 51.37039],
+ [3.15631, 51.35196],
+ [3.14223, 51.33051],
+ [2.53318, 51.09092],
+ [2.56476, 50.9968],
+ [2.61832, 50.9527],
+ [2.57781, 50.91852],
+ [2.5936, 50.88431],
+ [2.58948, 50.85051],
+ [2.6245, 50.80757],
+ [2.71033, 50.8054],
+ [2.78449, 50.71853],
+ [2.87375, 50.69983],
+ [2.86483, 50.74765],
+ [2.92525, 50.75156],
+ [2.97263, 50.77024],
+ [2.97332, 50.79889],
+ [3.00078, 50.79759],
+ [3.01383, 50.76676],
+ [3.09863, 50.76611],
+ [3.13537, 50.78196],
+ [3.16832, 50.75004],
+ [3.30428, 50.74613],
+ [3.31561, 50.71484],
+ [3.3678, 50.70179],
+ [3.44848, 50.75091],
+ [3.53293, 50.75156],
+ [3.53328, 50.72549],
+ [3.63902, 50.7131],
+ [3.69086, 50.7672],
+ [3.75163, 50.76177],
+ [3.7712, 50.73874],
+ [3.87729, 50.73983],
+ [3.87969, 50.70418],
+ [3.9202, 50.68352],
+ [3.99951, 50.682],
+ [4.06749, 50.68961],
+ [4.16018, 50.72049],
+ [4.17632, 50.70331],
+ [4.24739, 50.68222],
+ [4.31708, 50.69418],
+ [4.31846, 50.70962],
+ [4.38403, 50.71027],
+ [4.38437, 50.72353],
+ [4.47226, 50.74743],
+ [4.52617, 50.71853],
+ [4.55226, 50.73766],
+ [4.64908, 50.73722],
+ [4.6532, 50.78717],
+ [4.72426, 50.78218],
+ [4.73731, 50.79585],
+ [4.7737, 50.79368]
+ ]
+ ],
+ "terms_text": "Orthophoto Flanders most recent © AGIV",
+ "best": true,
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsSAAALEgHS3X78AAABm0lEQVQ4y6WTPUgCYRjHf5oFJVfRUZKVHYFBoBAUFLZE0FBD0NQHRENESzS019LSFNHWx1DQEhGRg0JFREM11FJuLWem4GB5HULdwdkgHprn5LO97/O8v+fj/7y2bDabpQKzFx5S6ntlgE81xvHtclHAbuSNloNT5q/uywP021cAvO4hAPYu5/hI5e6GWpsBCEfjxNSMNUALPvJ7eA3AQPcML3KIzbNhlvdEWmu+6RCcAISiCWtA3fosPztBfrYvAGgX/QCIggdR8DDe6Qbg5E0uAdjyKhhykq+uBeySi9qVCfSAB61HRBQ8RFJpRs6vALiZHMUnNpYO0Ujn+jPkJJnVfbTBNeqfFQB8YqP56H8VJqBKcuHcWsQuuXIOyUX1sN8MnPJKlnOwWS2SIScx0hkcvV3mXUzN0HcSAuBoNMBYZxsADittVXcT/XcPKE/PltqHowkTYLcMkOMoml52+wr9jnIZAJZ8XjYGe0vaUDSdsBxnulsqrUDRdMLReNHg8tYhOAs2M2HdQiSVBqChprpI7/9q5JPYKv3OfxL1n52ATYYBAAAAAElFTkSuQmCC"
+ },
+ {
+ "id": "AGRI-black_and_white-2.5m",
+ "name": "AGRI black-and-white 2.5m",
+ "type": "tms",
+ "template": "https://{switch:a,b,c}.agri.openstreetmap.org/layer/au_ga_agri/{zoom}/{x}/{y}.png",
+ "endDate": "2011-01-01T00:00:00.000Z",
+ "startDate": "2006-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [112.28778, -28.78459],
+ [112.71488, -31.13894],
+ [114.11263, -34.17829],
+ [113.60788, -37.39012],
+ [117.17992, -37.45179],
+ [119.31538, -37.42096],
+ [121.72262, -36.70839],
+ [123.81925, -35.76893],
+ [125.9547, -34.3066],
+ [127.97368, -33.7274],
+ [130.07031, -33.24166],
+ [130.10913, -33.8887],
+ [131.00214, -34.04971],
+ [131.0798, -34.72257],
+ [132.28342, -35.39],
+ [134.18591, -35.61126],
+ [133.8753, -37.1119],
+ [134.8459, -37.6365],
+ [139.7769, -37.82075],
+ [139.93223, -39.4283],
+ [141.6017, -39.8767],
+ [142.3783, -39.36829],
+ [142.3783, -40.64702],
+ [142.49478, -42.07487],
+ [144.009, -44.06013],
+ [147.23161, -44.03222],
+ [149.05645, -42.53431],
+ [149.52237, -40.99959],
+ [149.9494, -40.85292],
+ [150.8036, -38.09627],
+ [151.81313, -38.12682],
+ [156.20052, -22.66771],
+ [156.20052, -20.10109],
+ [156.62761, -17.41763],
+ [155.26869, -17.19521],
+ [154.14272, -19.51662],
+ [153.5215, -18.34139],
+ [153.05558, -16.5636],
+ [152.78379, -15.25677],
+ [152.27905, -13.4135],
+ [151.3472, -12.39177],
+ [149.48354, -12.05024],
+ [146.9598, -9.99241],
+ [135.9719, -9.99241],
+ [130.3032, -10.33636],
+ [128.09016, -12.16414],
+ [125.91588, -12.31591],
+ [124.3239, -11.86033],
+ [122.03323, -11.97429],
+ [118.26706, -16.9353],
+ [115.93747, -19.11357],
+ [114.0738, -21.11863],
+ [113.49141, -22.59603],
+ [112.28778, -28.78459]
+ ]
+ ],
+ "terms_url": "https://data.gov.au/dataset/agri-the-australian-geographic-reference-image",
+ "terms_text": "AGRI, Geoscience Australia"
+ },
+ {
+ "id": "alagoas_litoral",
+ "name": "Alagoas Litoral 2006",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Ortofotos%202006&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-35.52384, -9.48089],
+ [-35.5236, -9.44515],
+ [-35.51572, -9.44518],
+ [-35.51584, -9.44229],
+ [-35.50542, -9.44238],
+ [-35.50518, -9.43064],
+ [-35.49334, -9.43073],
+ [-35.49304, -9.3982],
+ [-35.4893, -9.39817],
+ [-35.48921, -9.38628],
+ [-35.4854, -9.38634],
+ [-35.48525, -9.37809],
+ [-35.48127, -9.37812],
+ [-35.48114, -9.36987],
+ [-35.47698, -9.36996],
+ [-35.47686, -9.36385],
+ [-35.47459, -9.36388],
+ [-35.47447, -9.36153],
+ [-35.47212, -9.36141],
+ [-35.47206, -9.35917],
+ [-35.46976, -9.3592],
+ [-35.46967, -9.35682],
+ [-35.46653, -9.35676],
+ [-35.46641, -9.35289],
+ [-35.46387, -9.35277],
+ [-35.46387, -9.35119],
+ [-35.44135, -9.35131],
+ [-35.44125, -9.34541],
+ [-35.43177, -9.34538],
+ [-35.43171, -9.33602],
+ [-35.39463, -9.33632],
+ [-35.39442, -9.30125],
+ [-35.38165, -9.30143],
+ [-35.38147, -9.28638],
+ [-35.37799, -9.28626],
+ [-35.37796, -9.2811],
+ [-35.36942, -9.28122],
+ [-35.36921, -9.27261],
+ [-35.35966, -9.27276],
+ [-35.35969, -9.26465],
+ [-35.35051, -9.26474],
+ [-35.35036, -9.25562],
+ [-35.34115, -9.25565],
+ [-35.34118, -9.24501],
+ [-35.31775, -9.24519],
+ [-35.3176, -9.22567],
+ [-35.30292, -9.22579],
+ [-35.30283, -9.2113],
+ [-35.30794, -9.21136],
+ [-35.30785, -9.19979],
+ [-35.29103, -9.19988],
+ [-35.29091, -9.1966],
+ [-35.29018, -9.19669],
+ [-35.28997, -9.16516],
+ [-35.27759, -9.16522],
+ [-35.2775, -9.16417],
+ [-35.27541, -9.1642],
+ [-35.27535, -9.16152],
+ [-35.27375, -9.16149],
+ [-35.27366, -9.15839],
+ [-35.27182, -9.15842],
+ [-35.27185, -9.15729],
+ [-35.27149, -9.15729],
+ [-35.27143, -9.15469],
+ [-35.26965, -9.15463],
+ [-35.26959, -9.15362],
+ [-35.26919, -9.15362],
+ [-35.26907, -9.13159],
+ [-35.26403, -9.13165],
+ [-35.264, -9.12318],
+ [-35.26056, -9.12321],
+ [-35.26053, -9.11781],
+ [-35.256, -9.11784],
+ [-35.25573, -9.08946],
+ [-35.25114, -9.08955],
+ [-35.25108, -9.08651],
+ [-35.25026, -9.08648],
+ [-35.25029, -9.08475],
+ [-35.24449, -9.08478],
+ [-35.24449, -9.07989],
+ [-35.24093, -9.07997],
+ [-35.24081, -9.07312],
+ [-35.23734, -9.07312],
+ [-35.23719, -9.06322],
+ [-35.23655, -9.06322],
+ [-35.23652, -9.04655],
+ [-35.23323, -9.04652],
+ [-35.23332, -9.04345],
+ [-35.2306, -9.04348],
+ [-35.2306, -9.04014],
+ [-35.22897, -9.04008],
+ [-35.229, -9.03835],
+ [-35.22505, -9.03826],
+ [-35.22502, -9.03167],
+ [-35.2223, -9.03161],
+ [-35.22233, -9.02012],
+ [-35.21834, -9.02009],
+ [-35.21831, -9.01341],
+ [-35.21671, -9.01341],
+ [-35.21668, -9.00998],
+ [-35.21176, -9.00998],
+ [-35.21173, -9.00647],
+ [-35.20971, -9.00653],
+ [-35.20974, -9.00438],
+ [-35.20765, -9.00432],
+ [-35.20768, -9.00226],
+ [-35.20566, -9.00226],
+ [-35.20563, -8.99987],
+ [-35.20391, -8.99987],
+ [-35.20394, -8.99785],
+ [-35.20213, -8.99791],
+ [-35.20213, -8.99579],
+ [-35.19844, -8.99582],
+ [-35.19844, -8.99361],
+ [-35.19434, -8.99361],
+ [-35.19428, -8.99122],
+ [-35.19065, -8.99131],
+ [-35.19062, -8.98833],
+ [-35.18766, -8.98842],
+ [-35.18763, -8.98544],
+ [-35.18473, -8.98541],
+ [-35.18467, -8.98255],
+ [-35.18238, -8.98252],
+ [-35.18235, -8.98052],
+ [-35.17951, -8.98061],
+ [-35.17948, -8.97742],
+ [-35.17809, -8.97745],
+ [-35.17803, -8.97306],
+ [-35.17558, -8.97303],
+ [-35.17549, -8.96912],
+ [-35.17293, -8.96909],
+ [-35.17284, -8.96292],
+ [-35.17063, -8.96289],
+ [-35.17048, -8.95579],
+ [-35.16852, -8.95564],
+ [-35.16852, -8.94806],
+ [-35.16794, -8.948],
+ [-35.16791, -8.93995],
+ [-35.16245, -8.93995],
+ [-35.16242, -8.92978],
+ [-35.1587, -8.92981],
+ [-35.15873, -8.92662],
+ [-35.15547, -8.92668],
+ [-35.1555, -8.92378],
+ [-35.15348, -8.92381],
+ [-35.15339, -8.92065],
+ [-35.15131, -8.92062],
+ [-35.15122, -8.91194],
+ [-35.15263, -8.91194],
+ [-35.15263, -8.90821],
+ [-35.15439, -8.90824],
+ [-35.1543, -8.90215],
+ [-35.15593, -8.90212],
+ [-35.15593, -8.90051],
+ [-35.15768, -8.90048],
+ [-35.15774, -8.89905],
+ [-35.15958, -8.89908],
+ [-35.15955, -8.89747],
+ [-35.16139, -8.8975],
+ [-35.16133, -8.89625],
+ [-35.16363, -8.89625],
+ [-35.1636, -8.89526],
+ [-35.16553, -8.89526],
+ [-35.1655, -8.89315],
+ [-35.16794, -8.89315],
+ [-35.16791, -8.89147],
+ [-35.17024, -8.89153],
+ [-35.17027, -8.8904],
+ [-35.17302, -8.89043],
+ [-35.17302, -8.88876],
+ [-35.17791, -8.88876],
+ [-35.17794, -8.88795],
+ [-35.17894, -8.88792],
+ [-35.17894, -8.88891],
+ [-35.17966, -8.88894],
+ [-35.17978, -8.88858],
+ [-35.18099, -8.88861],
+ [-35.18099, -8.88816],
+ [-35.18519, -8.88816],
+ [-35.18519, -8.88897],
+ [-35.18591, -8.889],
+ [-35.18591, -8.88971],
+ [-35.18932, -8.88971],
+ [-35.18947, -8.8893],
+ [-35.19014, -8.88927],
+ [-35.19017, -8.88831],
+ [-35.19071, -8.88831],
+ [-35.19077, -8.88789],
+ [-35.19153, -8.88792],
+ [-35.19156, -8.88619],
+ [-35.19754, -8.88607],
+ [-35.19757, -8.8873],
+ [-35.19968, -8.8873],
+ [-35.19974, -8.88777],
+ [-35.2008, -8.88777],
+ [-35.2008, -8.88822],
+ [-35.2033, -8.88822],
+ [-35.20337, -8.8887],
+ [-35.20563, -8.88861],
+ [-35.20557, -8.88983],
+ [-35.20741, -8.8898],
+ [-35.20744, -8.89022],
+ [-35.21125, -8.89025],
+ [-35.21128, -8.88769],
+ [-35.21245, -8.88777],
+ [-35.21248, -8.88861],
+ [-35.21623, -8.88858],
+ [-35.21623, -8.88748],
+ [-35.21871, -8.88745],
+ [-35.21871, -8.88897],
+ [-35.22136, -8.88897],
+ [-35.22263, -8.88792],
+ [-35.22402, -8.88748],
+ [-35.22453, -8.88763],
+ [-35.22644, -8.88718],
+ [-35.22707, -8.88598],
+ [-35.23311, -8.88446],
+ [-35.23933, -8.88339],
+ [-35.24129, -8.88416],
+ [-35.25011, -8.88515],
+ [-35.25624, -8.88506],
+ [-35.26168, -8.88294],
+ [-35.26161, -8.88094],
+ [-35.26406, -8.88109],
+ [-35.26877, -8.8793],
+ [-35.27421, -8.87748],
+ [-35.2781, -8.87518],
+ [-35.28499, -8.87507],
+ [-35.28502, -8.87581],
+ [-35.2881, -8.87578],
+ [-35.29405, -8.87545],
+ [-35.30782, -8.87208],
+ [-35.31757, -8.86961],
+ [-35.32784, -8.86716],
+ [-35.33206, -8.86614],
+ [-35.34103, -8.86376],
+ [-35.3471, -8.86244],
+ [-35.3522, -8.86113],
+ [-35.35257, -8.86391],
+ [-35.34903, -8.86611],
+ [-35.34496, -8.87205],
+ [-35.34327, -8.87489],
+ [-35.34318, -8.87569],
+ [-35.34381, -8.87668],
+ [-35.34481, -8.8768],
+ [-35.34888, -8.87721],
+ [-35.35042, -8.87781],
+ [-35.35254, -8.87891],
+ [-35.35399, -8.88011],
+ [-35.35577, -8.88252],
+ [-35.35755, -8.88396],
+ [-35.36036, -8.88512],
+ [-35.36114, -8.88509],
+ [-35.3612, -8.88587],
+ [-35.36175, -8.8859],
+ [-35.36178, -8.88777],
+ [-35.36253, -8.88783],
+ [-35.36247, -8.891],
+ [-35.36311, -8.89112],
+ [-35.36311, -8.89482],
+ [-35.3644, -8.89488],
+ [-35.36507, -8.8967],
+ [-35.36637, -8.90022],
+ [-35.36754, -8.90427],
+ [-35.36794, -8.90782],
+ [-35.36863, -8.90917],
+ [-35.37207, -8.91155],
+ [-35.3741, -8.91349],
+ [-35.37277, -8.916],
+ [-35.37262, -8.91817],
+ [-35.37084, -8.92229],
+ [-35.37062, -8.92486],
+ [-35.37235, -8.93038],
+ [-35.37153, -8.93193],
+ [-35.37153, -8.93363],
+ [-35.37171, -8.93387],
+ [-35.37171, -8.94362],
+ [-35.36818, -8.94377],
+ [-35.36815, -8.94505],
+ [-35.36927, -8.94511],
+ [-35.36921, -8.94863],
+ [-35.37078, -8.94872],
+ [-35.37081, -8.95182],
+ [-35.37219, -8.95176],
+ [-35.37222, -8.95528],
+ [-35.37319, -8.95531],
+ [-35.37313, -8.95737],
+ [-35.3744, -8.95737],
+ [-35.37446, -8.96012],
+ [-35.37567, -8.96018],
+ [-35.3757, -8.96205],
+ [-35.37688, -8.96208],
+ [-35.37694, -8.96444],
+ [-35.37781, -8.96444],
+ [-35.37775, -8.96617],
+ [-35.38074, -8.96617],
+ [-35.38074, -8.96331],
+ [-35.38288, -8.96328],
+ [-35.38291, -8.95982],
+ [-35.38542, -8.95985],
+ [-35.38542, -8.95722],
+ [-35.38723, -8.95722],
+ [-35.3872, -8.95406],
+ [-35.38947, -8.95409],
+ [-35.38947, -8.95084],
+ [-35.39158, -8.95087],
+ [-35.39158, -8.94792],
+ [-35.39587, -8.94792],
+ [-35.39581, -8.94651],
+ [-35.3972, -8.94654],
+ [-35.39711, -8.94472],
+ [-35.39838, -8.94469],
+ [-35.39838, -8.93915],
+ [-35.40107, -8.93915],
+ [-35.40106, -8.93895],
+ [-35.40167, -8.93894],
+ [-35.40173, -8.93688],
+ [-35.40236, -8.93688],
+ [-35.40236, -8.93628],
+ [-35.40324, -8.9364],
+ [-35.4033, -8.93583],
+ [-35.40426, -8.9358],
+ [-35.4042, -8.93363],
+ [-35.40574, -8.9336],
+ [-35.40577, -8.93124],
+ [-35.4081, -8.93133],
+ [-35.40804, -8.92927],
+ [-35.40937, -8.9293],
+ [-35.40928, -8.92739],
+ [-35.41085, -8.92742],
+ [-35.41085, -8.92542],
+ [-35.41239, -8.92545],
+ [-35.41236, -8.9239],
+ [-35.41335, -8.92387],
+ [-35.41329, -8.92193],
+ [-35.41523, -8.92196],
+ [-35.41523, -8.91999],
+ [-35.41655, -8.92002],
+ [-35.41655, -8.91755],
+ [-35.4196, -8.91755],
+ [-35.41966, -8.91964],
+ [-35.42184, -8.91964],
+ [-35.42187, -8.92265],
+ [-35.42389, -8.92268],
+ [-35.42392, -8.92513],
+ [-35.42537, -8.92513],
+ [-35.42537, -8.92766],
+ [-35.42724, -8.92766],
+ [-35.42727, -8.92987],
+ [-35.42815, -8.92984],
+ [-35.42818, -8.9316],
+ [-35.42987, -8.93154],
+ [-35.4299, -8.93407],
+ [-35.43141, -8.93407],
+ [-35.43141, -8.9356],
+ [-35.43226, -8.93557],
+ [-35.43229, -8.93586],
+ [-35.4334, -8.93583],
+ [-35.4334, -8.94001],
+ [-35.43434, -8.94004],
+ [-35.43434, -8.94097],
+ [-35.43531, -8.94097],
+ [-35.43534, -8.94261],
+ [-35.43567, -8.94264],
+ [-35.4357, -8.94329],
+ [-35.43627, -8.94332],
+ [-35.43624, -8.94422],
+ [-35.4373, -8.94422],
+ [-35.43727, -8.9452],
+ [-35.43823, -8.9452],
+ [-35.43827, -8.94684],
+ [-35.43902, -8.94687],
+ [-35.43902, -8.94798],
+ [-35.44026, -8.94798],
+ [-35.44032, -8.94953],
+ [-35.44159, -8.94956],
+ [-35.44165, -8.95152],
+ [-35.44273, -8.95152],
+ [-35.44273, -8.95334],
+ [-35.44436, -8.95334],
+ [-35.44436, -8.95498],
+ [-35.44569, -8.95501],
+ [-35.44563, -8.95674],
+ [-35.4472, -8.9568],
+ [-35.44717, -8.95865],
+ [-35.44895, -8.95871],
+ [-35.44892, -8.96],
+ [-35.45101, -8.95994],
+ [-35.45098, -8.96101],
+ [-35.45469, -8.96095],
+ [-35.45466, -8.96235],
+ [-35.46049, -8.96235],
+ [-35.46055, -8.96557],
+ [-35.46653, -8.96548],
+ [-35.46659, -8.96885],
+ [-35.46771, -8.96883],
+ [-35.46774, -8.97053],
+ [-35.4739, -8.97053],
+ [-35.47399, -8.9753],
+ [-35.47791, -8.97521],
+ [-35.47797, -8.97816],
+ [-35.4841, -8.97813],
+ [-35.48416, -8.98201],
+ [-35.49084, -8.98195],
+ [-35.49084, -8.98562],
+ [-35.49721, -8.98562],
+ [-35.49721, -8.99069],
+ [-35.50225, -8.99057],
+ [-35.50234, -8.99567],
+ [-35.50648, -8.99567],
+ [-35.50651, -8.99856],
+ [-35.51204, -8.9985],
+ [-35.51207, -9.00163],
+ [-35.51663, -9.00166],
+ [-35.51666, -9.00617],
+ [-35.52119, -9.00614],
+ [-35.52122, -9.00739],
+ [-35.53127, -9.00733],
+ [-35.53127, -9.01064],
+ [-35.54818, -9.01049],
+ [-35.54818, -9.01359],
+ [-35.56968, -9.01344],
+ [-35.56974, -9.01738],
+ [-35.58575, -9.01732],
+ [-35.58578, -9.01995],
+ [-35.60957, -9.01983],
+ [-35.60954, -9.02302],
+ [-35.62911, -9.02287],
+ [-35.62905, -9.02508],
+ [-35.65221, -9.0249],
+ [-35.65224, -9.02758],
+ [-35.67552, -9.0274],
+ [-35.67555, -9.03056],
+ [-35.68295, -9.03056],
+ [-35.68298, -9.03435],
+ [-35.69128, -9.03432],
+ [-35.69128, -9.03766],
+ [-35.6995, -9.0376],
+ [-35.6995, -9.04034],
+ [-35.70668, -9.04031],
+ [-35.70671, -9.04518],
+ [-35.71115, -9.04518],
+ [-35.71133, -9.06691],
+ [-35.70871, -9.06691],
+ [-35.70877, -9.07869],
+ [-35.70656, -9.07872],
+ [-35.70656, -9.08653],
+ [-35.7043, -9.08653],
+ [-35.70433, -9.09104],
+ [-35.69992, -9.09107],
+ [-35.69989, -9.0956],
+ [-35.69536, -9.09557],
+ [-35.69542, -9.10001],
+ [-35.69092, -9.10013],
+ [-35.69101, -9.10207],
+ [-35.63367, -9.10246],
+ [-35.6337, -9.10541],
+ [-35.62585, -9.10553],
+ [-35.62591, -9.10964],
+ [-35.62231, -9.10964],
+ [-35.62234, -9.11203],
+ [-35.6199, -9.112],
+ [-35.6199, -9.11501],
+ [-35.61473, -9.11507],
+ [-35.61473, -9.11707],
+ [-35.61177, -9.11701],
+ [-35.61181, -9.1182],
+ [-35.6096, -9.11826],
+ [-35.60963, -9.12571],
+ [-35.59976, -9.12583],
+ [-35.59979, -9.12923],
+ [-35.59634, -9.12926],
+ [-35.5964, -9.13502],
+ [-35.59197, -9.13507],
+ [-35.59209, -9.149],
+ [-35.59018, -9.14897],
+ [-35.59015, -9.15108],
+ [-35.6016, -9.15105],
+ [-35.60154, -9.14912],
+ [-35.60552, -9.14912],
+ [-35.60549, -9.14557],
+ [-35.61184, -9.14554],
+ [-35.61184, -9.14235],
+ [-35.6176, -9.14238],
+ [-35.61757, -9.13853],
+ [-35.624, -9.13853],
+ [-35.62397, -9.13466],
+ [-35.63177, -9.13466],
+ [-35.63164, -9.13063],
+ [-35.63922, -9.1306],
+ [-35.63919, -9.12878],
+ [-35.66386, -9.12869],
+ [-35.6638, -9.1261],
+ [-35.71278, -9.12577],
+ [-35.71275, -9.12407],
+ [-35.72426, -9.12401],
+ [-35.71964, -9.15323],
+ [-35.72112, -9.1532],
+ [-35.72124, -9.17258],
+ [-35.72066, -9.17255],
+ [-35.72082, -9.18558],
+ [-35.71212, -9.18566],
+ [-35.7133, -9.34416],
+ [-35.69041, -9.34433],
+ [-35.69065, -9.37189],
+ [-35.68899, -9.37189],
+ [-35.68902, -9.37598],
+ [-35.68757, -9.37598],
+ [-35.68766, -9.38232],
+ [-35.68497, -9.38235],
+ [-35.68503, -9.39093],
+ [-35.68168, -9.39099],
+ [-35.68177, -9.39936],
+ [-35.67715, -9.39933],
+ [-35.67724, -9.4089],
+ [-35.67292, -9.40893],
+ [-35.67301, -9.41754],
+ [-35.66972, -9.4176],
+ [-35.66978, -9.42498],
+ [-35.66722, -9.42498],
+ [-35.66728, -9.4327],
+ [-35.66075, -9.43288],
+ [-35.66075, -9.43705],
+ [-35.6513, -9.43708],
+ [-35.65142, -9.44211],
+ [-35.64514, -9.44217],
+ [-35.64523, -9.44652],
+ [-35.63645, -9.44661],
+ [-35.63645, -9.44992],
+ [-35.62711, -9.45],
+ [-35.62727, -9.46505],
+ [-35.62086, -9.46511],
+ [-35.62092, -9.4722],
+ [-35.60939, -9.47222],
+ [-35.60939, -9.47529],
+ [-35.59674, -9.47535],
+ [-35.59674, -9.47351],
+ [-35.57844, -9.47371],
+ [-35.57847, -9.47595],
+ [-35.57267, -9.47604],
+ [-35.5727, -9.48042],
+ [-35.56823, -9.48048],
+ [-35.56826, -9.48881],
+ [-35.54169, -9.48893],
+ [-35.54163, -9.48071],
+ [-35.52384, -9.48089]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "arapiraca_al",
+ "name": "Arapiraca AL",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Arapiraca&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-36.60875, -9.83072],
+ [-36.60784, -9.74047],
+ [-36.61718, -9.74051],
+ [-36.61631, -9.65075],
+ [-36.70737, -9.64977],
+ [-36.70832, -9.74043],
+ [-36.69898, -9.74047],
+ [-36.69997, -9.82968],
+ [-36.60875, -9.83072]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "CRAIG-Auvergne-2013",
+ "name": "Auvergne 2013 25cm CRAIG",
+ "type": "tms",
+ "template": "https://tiles.craig.fr/osm/wmts/1.0.0/ortho_2013/webmercator/{zoom}/{x}/{y}.jpeg",
+ "endDate": "2013-01-01T00:00:00.000Z",
+ "startDate": "2013-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [2.94012, 44.63388],
+ [2.99719, 44.63393],
+ [2.99717, 44.64734],
+ [3.01597, 44.64735],
+ [3.01593, 44.67412],
+ [3.03495, 44.67413],
+ [3.0349, 44.70152],
+ [3.05363, 44.70154],
+ [3.05357, 44.7419],
+ [3.07233, 44.74191],
+ [3.07222, 44.80917],
+ [3.09216, 44.80919],
+ [3.09214, 44.82213],
+ [3.13014, 44.82216],
+ [3.13005, 44.87707],
+ [3.14856, 44.87709],
+ [3.14858, 44.8637],
+ [3.16823, 44.86371],
+ [3.16825, 44.85003],
+ [3.2064, 44.85006],
+ [3.20638, 44.86284],
+ [3.24395, 44.86287],
+ [3.24393, 44.87679],
+ [3.26315, 44.87681],
+ [3.26308, 44.91752],
+ [3.32004, 44.91757],
+ [3.32002, 44.93033],
+ [3.33908, 44.93035],
+ [3.33906, 44.9442],
+ [3.377, 44.94423],
+ [3.37702, 44.93029],
+ [3.39603, 44.9303],
+ [3.39612, 44.87627],
+ [3.41483, 44.87629],
+ [3.41489, 44.83553],
+ [3.43334, 44.83554],
+ [3.43338, 44.80828],
+ [3.45255, 44.80829],
+ [3.45258, 44.79463],
+ [3.50893, 44.79468],
+ [3.5089, 44.80815],
+ [3.60426, 44.80823],
+ [3.60422, 44.83482],
+ [3.62361, 44.83484],
+ [3.62357, 44.86166],
+ [3.64248, 44.86167],
+ [3.64255, 44.8211],
+ [3.66101, 44.82112],
+ [3.66103, 44.80777],
+ [3.6993, 44.8078],
+ [3.69928, 44.82099],
+ [3.73611, 44.82102],
+ [3.73618, 44.77971],
+ [3.77511, 44.77974],
+ [3.77515, 44.75223],
+ [3.81184, 44.75226],
+ [3.81186, 44.7392],
+ [3.83118, 44.73922],
+ [3.83121, 44.72468],
+ [3.88782, 44.72472],
+ [3.8878, 44.73818],
+ [3.92563, 44.73821],
+ [3.9256, 44.75167],
+ [3.94541, 44.75168],
+ [3.94537, 44.77847],
+ [3.96437, 44.77848],
+ [3.96435, 44.79193],
+ [4.00332, 44.79196],
+ [4.0033, 44.80526],
+ [4.02169, 44.80527],
+ [4.02167, 44.81857],
+ [4.05965, 44.8186],
+ [4.05961, 44.84492],
+ [4.07981, 44.84494],
+ [4.07979, 44.85735],
+ [4.17388, 44.85743],
+ [4.17386, 44.87055],
+ [4.19326, 44.87056],
+ [4.19323, 44.88427],
+ [4.21404, 44.88429],
+ [4.214, 44.91002],
+ [4.23241, 44.91004],
+ [4.23237, 44.93731],
+ [4.27155, 44.93734],
+ [4.27153, 44.9503],
+ [4.32887, 44.95034],
+ [4.32878, 45.00367],
+ [4.34893, 45.00368],
+ [4.3489, 45.01707],
+ [4.40608, 45.01711],
+ [4.40599, 45.071],
+ [4.38847, 45.07099],
+ [4.38845, 45.0846],
+ [4.40794, 45.08461],
+ [4.40792, 45.09663],
+ [4.48436, 45.09669],
+ [4.48429, 45.13705],
+ [4.46636, 45.13703],
+ [4.46634, 45.1502],
+ [4.48645, 45.15022],
+ [4.4864, 45.17724],
+ [4.50655, 45.17726],
+ [4.50644, 45.24501],
+ [4.48813, 45.24499],
+ [4.48811, 45.25921],
+ [4.46986, 45.25919],
+ [4.46984, 45.27298],
+ [4.45088, 45.27297],
+ [4.45086, 45.28642],
+ [4.39368, 45.28637],
+ [4.39363, 45.31352],
+ [4.37509, 45.3135],
+ [4.37507, 45.32741],
+ [4.39507, 45.32742],
+ [4.39503, 45.35458],
+ [4.37679, 45.35457],
+ [4.37676, 45.36855],
+ [4.35766, 45.36853],
+ [4.35763, 45.38234],
+ [4.28146, 45.38227],
+ [4.28143, 45.39688],
+ [4.24446, 45.39685],
+ [4.24443, 45.41079],
+ [4.14812, 45.41071],
+ [4.14814, 45.39807],
+ [4.12919, 45.39805],
+ [4.12921, 45.38409],
+ [4.09021, 45.38406],
+ [4.09024, 45.37121],
+ [4.01355, 45.37115],
+ [4.01353, 45.3861],
+ [3.91709, 45.38602],
+ [3.91707, 45.39974],
+ [3.93757, 45.39975],
+ [3.93755, 45.41311],
+ [3.97528, 45.41315],
+ [3.97526, 45.42621],
+ [3.99537, 45.42622],
+ [3.9957, 45.52096],
+ [3.97778, 45.52094],
+ [3.97769, 45.57439],
+ [3.95818, 45.57437],
+ [3.95815, 45.58837],
+ [3.9396, 45.58835],
+ [3.93958, 45.60262],
+ [3.92023, 45.60261],
+ [3.9202, 45.61646],
+ [3.88189, 45.61643],
+ [3.88185, 45.64328],
+ [3.84413, 45.64325],
+ [3.84411, 45.65709],
+ [3.82617, 45.65707],
+ [3.82612, 45.68389],
+ [3.80722, 45.68387],
+ [3.80713, 45.73758],
+ [3.78821, 45.73756],
+ [3.78819, 45.7518],
+ [3.76885, 45.75178],
+ [3.7688, 45.77897],
+ [3.75072, 45.77895],
+ [3.75058, 45.86066],
+ [3.76967, 45.86067],
+ [3.76958, 45.91433],
+ [3.75166, 45.91432],
+ [3.75164, 45.92809],
+ [3.7329, 45.92807],
+ [3.73285, 45.95472],
+ [3.81018, 45.95478],
+ [3.81016, 45.96823],
+ [3.8496, 45.96826],
+ [3.84951, 46.02162],
+ [3.83188, 46.0216],
+ [3.83179, 46.07591],
+ [3.8505, 46.07592],
+ [3.85046, 46.10295],
+ [3.83247, 46.10294],
+ [3.83234, 46.18456],
+ [3.81422, 46.18455],
+ [3.81415, 46.22442],
+ [3.83369, 46.22444],
+ [3.83366, 46.2381],
+ [3.85289, 46.23812],
+ [3.85287, 46.25147],
+ [3.89314, 46.25151],
+ [3.89312, 46.26447],
+ [3.91306, 46.26448],
+ [3.91303, 46.27793],
+ [3.95189, 46.27796],
+ [3.95187, 46.29082],
+ [3.97152, 46.29084],
+ [3.9715, 46.30369],
+ [4.0105, 46.30373],
+ [4.01048, 46.31776],
+ [4.02983, 46.31778],
+ [4.02978, 46.34428],
+ [4.0116, 46.34427],
+ [4.01146, 46.42534],
+ [4.03153, 46.42536],
+ [4.03146, 46.4658],
+ [4.01324, 46.46578],
+ [4.01322, 46.47938],
+ [3.99437, 46.47936],
+ [3.99435, 46.49361],
+ [3.9746, 46.4936],
+ [3.97457, 46.50753],
+ [3.87754, 46.50745],
+ [3.8775, 46.53478],
+ [3.85836, 46.53476],
+ [3.85833, 46.54832],
+ [3.81869, 46.54828],
+ [3.81871, 46.53553],
+ [3.79924, 46.53552],
+ [3.79922, 46.54907],
+ [3.76104, 46.54904],
+ [3.76092, 46.61681],
+ [3.74233, 46.61679],
+ [3.74228, 46.64396],
+ [3.72286, 46.64395],
+ [3.72281, 46.67104],
+ [3.70387, 46.67102],
+ [3.70385, 46.68467],
+ [3.68411, 46.68466],
+ [3.68406, 46.712],
+ [3.66484, 46.71198],
+ [3.66479, 46.73904],
+ [3.64576, 46.73902],
+ [3.64572, 46.76634],
+ [3.62575, 46.76632],
+ [3.62573, 46.77971],
+ [3.56723, 46.77966],
+ [3.56725, 46.76631],
+ [3.54715, 46.76629],
+ [3.54719, 46.73928],
+ [3.52716, 46.73927],
+ [3.52723, 46.6989],
+ [3.48774, 46.69887],
+ [3.48776, 46.68594],
+ [3.46796, 46.68593],
+ [3.46794, 46.69941],
+ [3.46792, 46.71279],
+ [3.44865, 46.71278],
+ [3.44863, 46.72679],
+ [3.35043, 46.72671],
+ [3.35048, 46.6999],
+ [3.33039, 46.69988],
+ [3.33034, 46.7272],
+ [3.23272, 46.72712],
+ [3.23274, 46.71351],
+ [3.2129, 46.7135],
+ [3.21293, 46.70013],
+ [3.17354, 46.7001],
+ [3.1735, 46.72751],
+ [3.15412, 46.72749],
+ [3.1541, 46.74073],
+ [3.11478, 46.7407],
+ [3.11475, 46.75428],
+ [3.07534, 46.75424],
+ [3.0753, 46.78135],
+ [3.05597, 46.78134],
+ [3.05592, 46.80831],
+ [2.99704, 46.80826],
+ [2.99702, 46.82196],
+ [2.93794, 46.82191],
+ [2.93797, 46.80826],
+ [2.89866, 46.80823],
+ [2.89869, 46.79424],
+ [2.87899, 46.79422],
+ [2.87901, 46.78104],
+ [2.85942, 46.78103],
+ [2.85944, 46.76771],
+ [2.84004, 46.76769],
+ [2.84007, 46.75447],
+ [2.7414, 46.75439],
+ [2.74138, 46.76682],
+ [2.70234, 46.76679],
+ [2.70236, 46.75389],
+ [2.68266, 46.75387],
+ [2.68268, 46.74048],
+ [2.66349, 46.74046],
+ [2.66351, 46.7259],
+ [2.64342, 46.72588],
+ [2.64344, 46.71309],
+ [2.62414, 46.71308],
+ [2.62417, 46.69981],
+ [2.60397, 46.69979],
+ [2.60399, 46.68584],
+ [2.56512, 46.68581],
+ [2.56515, 46.67261],
+ [2.54593, 46.6726],
+ [2.546, 46.63215],
+ [2.56592, 46.63217],
+ [2.56595, 46.61811],
+ [2.54564, 46.61809],
+ [2.54569, 46.59072],
+ [2.56642, 46.59074],
+ [2.56644, 46.57754],
+ [2.5855, 46.57756],
+ [2.58552, 46.56472],
+ [2.56613, 46.5647],
+ [2.56616, 46.55062],
+ [2.46828, 46.55055],
+ [2.4683, 46.53582],
+ [2.33212, 46.53571],
+ [2.33217, 46.50886],
+ [2.31265, 46.50884],
+ [2.31267, 46.49534],
+ [2.29288, 46.49533],
+ [2.2929, 46.48182],
+ [2.27487, 46.4818],
+ [2.27492, 46.45442],
+ [2.25539, 46.4544],
+ [2.25553, 46.37349],
+ [2.27595, 46.37351],
+ [2.27604, 46.32087],
+ [2.31456, 46.32091],
+ [2.31458, 46.30704],
+ [2.35371, 46.30707],
+ [2.35373, 46.29297],
+ [2.39384, 46.293],
+ [2.39389, 46.26729],
+ [2.45157, 46.26733],
+ [2.4516, 46.25349],
+ [2.47094, 46.25351],
+ [2.47098, 46.22656],
+ [2.49151, 46.22657],
+ [2.49155, 46.19933],
+ [2.51088, 46.19934],
+ [2.51093, 46.17278],
+ [2.53117, 46.1728],
+ [2.53138, 46.05135],
+ [2.55163, 46.05137],
+ [2.55166, 46.03777],
+ [2.57056, 46.03778],
+ [2.57068, 45.96994],
+ [2.55144, 45.96993],
+ [2.55146, 45.95662],
+ [2.53226, 45.9566],
+ [2.53228, 45.94301],
+ [2.51307, 45.94299],
+ [2.51313, 45.90203],
+ [2.47494, 45.902],
+ [2.47496, 45.88882],
+ [2.43619, 45.88879],
+ [2.43622, 45.87533],
+ [2.41721, 45.87531],
+ [2.41725, 45.84794],
+ [2.37847, 45.84791],
+ [2.3785, 45.83397],
+ [2.35952, 45.83396],
+ [2.35956, 45.80708],
+ [2.37873, 45.8071],
+ [2.37875, 45.79358],
+ [2.3987, 45.79359],
+ [2.39872, 45.78035],
+ [2.41825, 45.78036],
+ [2.41832, 45.74],
+ [2.45722, 45.74003],
+ [2.45724, 45.7267],
+ [2.47589, 45.72671],
+ [2.47591, 45.71324],
+ [2.49533, 45.71325],
+ [2.49542, 45.65913],
+ [2.45769, 45.6591],
+ [2.45776, 45.61834],
+ [2.43912, 45.61833],
+ [2.43919, 45.57766],
+ [2.4585, 45.57768],
+ [2.45855, 45.55053],
+ [2.47809, 45.55055],
+ [2.47811, 45.53725],
+ [2.49755, 45.53726],
+ [2.49759, 45.51068],
+ [2.47855, 45.51066],
+ [2.47864, 45.45613],
+ [2.45978, 45.45612],
+ [2.45987, 45.40176],
+ [2.42249, 45.40173],
+ [2.42247, 45.41528],
+ [2.40232, 45.41527],
+ [2.40229, 45.42882],
+ [2.3256, 45.42876],
+ [2.32567, 45.38796],
+ [2.34562, 45.38798],
+ [2.34566, 45.36111],
+ [2.32626, 45.36109],
+ [2.32628, 45.34721],
+ [2.30738, 45.3472],
+ [2.3074, 45.3336],
+ [2.28811, 45.33358],
+ [2.28813, 45.32082],
+ [2.26963, 45.3208],
+ [2.26966, 45.30621],
+ [2.25066, 45.3062],
+ [2.25068, 45.29251],
+ [2.23169, 45.2925],
+ [2.23171, 45.27924],
+ [2.213, 45.27922],
+ [2.21305, 45.25204],
+ [2.19374, 45.25202],
+ [2.19376, 45.23811],
+ [2.17561, 45.2381],
+ [2.17574, 45.15768],
+ [2.15735, 45.15767],
+ [2.15744, 45.10295],
+ [2.12024, 45.10292],
+ [2.12026, 45.08955],
+ [2.10067, 45.08953],
+ [2.10069, 45.07544],
+ [2.08246, 45.07543],
+ [2.08255, 45.0216],
+ [2.10255, 45.02161],
+ [2.1026, 44.99445],
+ [2.04574, 44.99441],
+ [2.04585, 44.92753],
+ [2.06578, 44.92755],
+ [2.06589, 44.85969],
+ [2.0857, 44.8597],
+ [2.08572, 44.84581],
+ [2.10556, 44.84583],
+ [2.1056, 44.81933],
+ [2.12474, 44.81934],
+ [2.12477, 44.80551],
+ [2.14351, 44.80553],
+ [2.14355, 44.7786],
+ [2.12561, 44.77858],
+ [2.1257, 44.72427],
+ [2.10665, 44.72426],
+ [2.10671, 44.68423],
+ [2.12634, 44.68424],
+ [2.12636, 44.67074],
+ [2.14598, 44.67075],
+ [2.14607, 44.61644],
+ [2.18396, 44.61648],
+ [2.18398, 44.60378],
+ [2.24042, 44.60383],
+ [2.24037, 44.63095],
+ [2.25948, 44.63097],
+ [2.25946, 44.64493],
+ [2.31668, 44.64498],
+ [2.3167, 44.63088],
+ [2.33615, 44.6309],
+ [2.33617, 44.61758],
+ [2.37242, 44.61761],
+ [2.3724, 44.63158],
+ [2.41105, 44.63161],
+ [2.41107, 44.61907],
+ [2.44922, 44.61911],
+ [2.4492, 44.63232],
+ [2.50486, 44.63237],
+ [2.50481, 44.65976],
+ [2.52461, 44.65977],
+ [2.52457, 44.68717],
+ [2.54225, 44.68719],
+ [2.54223, 44.70122],
+ [2.58071, 44.70125],
+ [2.5806, 44.76834],
+ [2.61769, 44.76837],
+ [2.61762, 44.80884],
+ [2.63676, 44.80885],
+ [2.63669, 44.84929],
+ [2.67331, 44.84933],
+ [2.67329, 44.86252],
+ [2.69338, 44.86253],
+ [2.69333, 44.88943],
+ [2.73052, 44.88946],
+ [2.73048, 44.91645],
+ [2.74992, 44.91646],
+ [2.75005, 44.83647],
+ [2.80733, 44.83652],
+ [2.80731, 44.8491],
+ [2.82638, 44.84912],
+ [2.8264, 44.83628],
+ [2.8457, 44.8363],
+ [2.84577, 44.79571],
+ [2.86422, 44.79573],
+ [2.86426, 44.76865],
+ [2.88399, 44.76866],
+ [2.88403, 44.74197],
+ [2.90203, 44.74198],
+ [2.90214, 44.67432],
+ [2.92198, 44.67434],
+ [2.92202, 44.6473],
+ [2.9401, 44.64731],
+ [2.94012, 44.63388]
+ ]
+ ],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/WikiProject_France/CRAIG",
+ "terms_text": "Orthophotographie CRAIG/Sintegra/IGN 2013"
+ },
+ {
+ "id": "CRAIG-Auvergne-2016",
+ "name": "Auvergne 2016 25cm CRAIG",
+ "type": "tms",
+ "template": "https://tiles.craig.fr/ortho/wmts/1.0.0/ortho_2016/webmercator/{zoom}/{x}/{y}.jpeg",
+ "endDate": "2016-01-01T00:00:00.000Z",
+ "startDate": "2016-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [2.49389, 46.66829],
+ [2.71362, 46.84141],
+ [3.64746, 46.80758],
+ [4.04846, 46.48327],
+ [4.03747, 46.24825],
+ [4.46044, 46.25965],
+ [4.4934, 46.14559],
+ [4.38354, 46.09229],
+ [4.45495, 45.69084],
+ [4.76257, 45.57176],
+ [4.81201, 45.34443],
+ [4.22424, 44.84419],
+ [3.86169, 44.696],
+ [3.37829, 44.80523],
+ [3.33435, 44.89091],
+ [3.18054, 44.82471],
+ [3.03222, 44.60612],
+ [2.92785, 44.60221],
+ [2.71911, 44.85198],
+ [2.51037, 44.60221],
+ [2.12585, 44.58265],
+ [2.005, 44.97257],
+ [2.30712, 45.46784],
+ [2.43347, 45.44087],
+ [2.41149, 45.72919],
+ [2.34558, 45.82402],
+ [2.54882, 45.97979],
+ [2.46093, 46.22166],
+ [2.21374, 46.33935],
+ [2.27828, 46.53903],
+ [2.54882, 46.56642],
+ [2.49389, 46.66829]
+ ]
+ ],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/WikiProject_France/CRAIG",
+ "terms_text": "CRAIG - IGN -TopoGEODIS - Feder Auvergne-Rhône-Alpes 2016"
+ },
+ {
+ "id": "BANO",
+ "name": "BANO",
+ "type": "tms",
+ "template": "https://{switch:a,b,c}.layers.openstreetmap.fr/bano/{zoom}/{x}/{y}.png",
+ "scaleExtent": [12, 20],
+ "polygon": [
+ [
+ [-2.7, 43.9],
+ [-6.3, 48.98],
+ [-2.25, 50.09],
+ [1.31, 50.88],
+ [2.35816, 51.32937],
+ [2.5488, 51.09759],
+ [2.57048, 51.07409],
+ [2.58741, 51.01763],
+ [2.59845, 51.0051],
+ [2.61558, 50.99749],
+ [2.63986, 50.95766],
+ [2.64225, 50.94578],
+ [2.62452, 50.9256],
+ [2.61962, 50.91067],
+ [2.62396, 50.86071],
+ [2.62781, 50.85054],
+ [2.63786, 50.83696],
+ [2.6511, 50.82906],
+ [2.73267, 50.81738],
+ [2.79995, 50.73795],
+ [2.81655, 50.73092],
+ [2.85265, 50.73335],
+ [2.89072, 50.7162],
+ [2.90492, 50.71536],
+ [2.9161, 50.72418],
+ [2.93508, 50.75592],
+ [3.00718, 50.78377],
+ [3.08218, 50.78749],
+ [3.09244, 50.79092],
+ [3.11412, 50.80566],
+ [3.14877, 50.80195],
+ [3.2154, 50.73111],
+ [3.22149, 50.7267],
+ [3.27051, 50.70375],
+ [3.27545, 50.67757],
+ [3.26576, 50.6604],
+ [3.26588, 50.64054],
+ [3.28922, 50.60028],
+ [3.29219, 50.55037],
+ [3.3056, 50.53267],
+ [3.37551, 50.50839],
+ [3.3898, 50.50884],
+ [3.4748, 50.54445],
+ [3.52173, 50.53459],
+ [3.53266, 50.51873],
+ [3.54779, 50.51012],
+ [3.61523, 50.50558],
+ [3.67378, 50.45642],
+ [3.68415, 50.35277],
+ [3.6901, 50.34044],
+ [3.70258, 50.33482],
+ [3.71576, 50.33854],
+ [3.74935, 50.36279],
+ [3.84109, 50.36558],
+ [3.90189, 50.3436],
+ [3.91317, 50.34291],
+ [4.02672, 50.36904],
+ [4.13761, 50.29984],
+ [4.14388, 50.29727],
+ [4.21444, 50.28167],
+ [4.22904, 50.26664],
+ [4.23078, 50.25233],
+ [4.17084, 50.18579],
+ [4.16601, 50.16888],
+ [4.1764, 50.1547],
+ [4.21195, 50.13602],
+ [4.24074, 50.07102],
+ [4.23193, 50.05551],
+ [4.18164, 50.03436],
+ [4.17177, 50.02537],
+ [4.16976, 50.01217],
+ [4.1765, 50.00065],
+ [4.20633, 49.97546],
+ [4.22164, 49.97089],
+ [4.30877, 49.98145],
+ [4.44542, 49.9523],
+ [4.45469, 49.95251],
+ [4.6581, 50.00609],
+ [4.66936, 50.01392],
+ [4.67293, 50.02716],
+ [4.66924, 50.06972],
+ [4.69517, 50.10472],
+ [4.83123, 50.17941],
+ [4.8815, 50.16436],
+ [4.90479, 50.14451],
+ [4.90426, 50.12639],
+ [4.88076, 50.0815],
+ [4.86277, 50.0745],
+ [4.85104, 50.06216],
+ [4.84331, 50.03884],
+ [4.84331, 50.03883],
+ [4.8433, 50.03881],
+ [4.82678, 49.989],
+ [4.82662, 49.97692],
+ [4.83343, 49.96696],
+ [4.89654, 49.91753],
+ [4.89755, 49.89424],
+ [4.87913, 49.86942],
+ [4.87625, 49.85111],
+ [4.88924, 49.81266],
+ [4.89769, 49.80204],
+ [4.91098, 49.79926],
+ [4.99534, 49.81116],
+ [5.01867, 49.79272],
+ [5.02686, 49.78886],
+ [5.09944, 49.77323],
+ [5.13458, 49.73462],
+ [5.1412, 49.72984],
+ [5.18761, 49.70906],
+ [5.19602, 49.70732],
+ [5.28157, 49.70836],
+ [5.33363, 49.67308],
+ [5.344, 49.65049],
+ [5.3544, 49.64041],
+ [5.43141, 49.60791],
+ [5.48205, 49.52815],
+ [5.49294, 49.51979],
+ [5.50666, 49.52042],
+ [5.55401, 49.54025],
+ [5.59311, 49.53424],
+ [5.6076, 49.53761],
+ [5.641, 49.56095],
+ [5.70676, 49.55267],
+ [5.71578, 49.55361],
+ [5.77526, 49.57414],
+ [5.8399, 49.55321],
+ [5.86126, 49.52038],
+ [5.876, 49.5114],
+ [5.97516, 49.50129],
+ [5.99801, 49.47317],
+ [6.01627, 49.46597],
+ [6.08635, 49.47562],
+ [6.09319, 49.47787],
+ [6.17397, 49.52187],
+ [6.24643, 49.52511],
+ [6.334, 49.48235],
+ [6.34423, 49.48037],
+ [6.43515, 49.487],
+ [6.5451, 49.44384],
+ [6.60639, 49.37868],
+ [6.60497, 49.33739],
+ [6.61627, 49.31869],
+ [6.67013, 49.29269],
+ [6.72996, 49.22917],
+ [6.74328, 49.19086],
+ [6.76026, 49.17752],
+ [6.80904, 49.17284],
+ [6.82473, 49.17826],
+ [6.83093, 49.19366],
+ [6.82982, 49.21802],
+ [6.85119, 49.23136],
+ [6.88453, 49.2239],
+ [6.89322, 49.22389],
+ [6.93753, 49.23369],
+ [7.04055, 49.19794],
+ [7.0463, 49.17503],
+ [7.05478, 49.16313],
+ [7.06908, 49.16018],
+ [7.10494, 49.16634],
+ [7.14315, 49.14159],
+ [7.1535, 49.13839],
+ [7.28683, 49.13488],
+ [7.29893, 49.13856],
+ [7.36095, 49.18259],
+ [7.45012, 49.19517],
+ [7.50113, 49.17672],
+ [7.54379, 49.10572],
+ [7.5579, 49.09626],
+ [7.6296, 49.08527],
+ [7.64722, 49.06722],
+ [7.6612, 49.06119],
+ [7.75401, 49.05963],
+ [7.76073, 49.06067],
+ [7.80291, 49.07489],
+ [7.85525, 49.05329],
+ [7.8673, 49.05227],
+ [7.93826, 49.06832],
+ [8.08069, 49.00688],
+ [8.2225, 48.98787],
+ [8.23704, 48.97683],
+ [8.23589, 48.95817],
+ [8.20888, 48.94863],
+ [8.20089, 48.94339],
+ [8.15824, 48.89753],
+ [8.10087, 48.7993],
+ [7.99071, 48.74478],
+ [7.98534, 48.7409],
+ [7.90422, 48.65865],
+ [7.85605, 48.63606],
+ [7.8484, 48.62977],
+ [7.81842, 48.58883],
+ [7.81456, 48.57704],
+ [7.81449, 48.50968],
+ [7.78547, 48.48337],
+ [7.78055, 48.47652],
+ [7.74506, 48.39484],
+ [7.74357, 48.38427],
+ [7.75159, 48.32322],
+ [7.71085, 48.29841],
+ [7.70241, 48.28803],
+ [7.67661, 48.21555],
+ [7.59605, 48.11698],
+ [7.59165, 48.10648],
+ [7.58522, 48.04694],
+ [7.59127, 48.03035],
+ [7.62437, 47.99865],
+ [7.63205, 47.97081],
+ [7.57554, 47.87436],
+ [7.5728, 47.86435],
+ [7.57267, 47.83631],
+ [7.54581, 47.78793],
+ [7.54418, 47.77232],
+ [7.55758, 47.72899],
+ [7.53526, 47.6989],
+ [7.53136, 47.68564],
+ [7.537, 47.67302],
+ [7.60016, 47.60822],
+ [7.58967, 47.56755],
+ [7.55424, 47.55128],
+ [7.54511, 47.54283],
+ [7.51256, 47.48439],
+ [7.38747, 47.42111],
+ [7.32653, 47.4273],
+ [7.24435, 47.40939],
+ [7.16708, 47.4335],
+ [7.15212, 47.47612],
+ [7.14279, 47.48707],
+ [7.12853, 47.48893],
+ [7.0801, 47.47718],
+ [7.03557, 47.48695],
+ [7.02102, 47.48458],
+ [7.01205, 47.47287],
+ [7.003, 47.44095],
+ [6.9551, 47.40808],
+ [6.94716, 47.39698],
+ [6.94818, 47.38337],
+ [6.95769, 47.37359],
+ [6.97126, 47.37218],
+ [7.018, 47.38386],
+ [7.05623, 47.37035],
+ [7.07007, 47.35005],
+ [7.05958, 47.32257],
+ [6.97424, 47.27856],
+ [6.96347, 47.26233],
+ [6.96134, 47.23479],
+ [6.89443, 47.19393],
+ [6.88913, 47.18922],
+ [6.85545, 47.14636],
+ [6.76907, 47.10751],
+ [6.76011, 47.09953],
+ [6.72561, 47.0418],
+ [6.62355, 46.9811],
+ [6.4812, 46.9445],
+ [6.46892, 46.93522],
+ [6.46686, 46.91997],
+ [6.47548, 46.88771],
+ [6.4535, 46.8239],
+ [6.45644, 46.80534],
+ [6.46722, 46.79104],
+ [6.46098, 46.76887],
+ [6.15817, 46.59343],
+ [6.14872, 46.58069],
+ [6.15152, 46.56508],
+ [6.16549, 46.54399],
+ [6.15811, 46.52456],
+ [6.10174, 46.46979],
+ [6.09572, 46.45418],
+ [6.09704, 46.43317],
+ [6.10829, 46.41643],
+ [6.16622, 46.38839],
+ [6.17817, 46.36922],
+ [6.13748, 46.31297],
+ [6.13371, 46.30227],
+ [6.13038, 46.23737],
+ [6.1103, 46.22344],
+ [6.08865, 46.23081],
+ [6.07717, 46.23123],
+ [6.01857, 46.21601],
+ [6.00681, 46.20752],
+ [6.00388, 46.19332],
+ [6.00787, 46.16977],
+ [6.01783, 46.15564],
+ [6.03509, 46.15456],
+ [6.05564, 46.16288],
+ [6.12468, 46.15415],
+ [6.13778, 46.15702],
+ [6.24026, 46.22094],
+ [6.24906, 46.23299],
+ [6.24707, 46.24777],
+ [6.21148, 46.31057],
+ [6.21219, 46.32485],
+ [6.23946, 46.36705],
+ [6.31648, 46.41557],
+ [6.41083, 46.42495],
+ [6.41748, 46.42682],
+ [6.50498, 46.46871],
+ [6.63047, 46.47435],
+ [6.74665, 46.45695],
+ [6.82244, 46.42925],
+ [6.81832, 46.38181],
+ [6.80484, 46.36179],
+ [6.80189, 46.34639],
+ [6.81095, 46.33359],
+ [6.86491, 46.30038],
+ [6.87504, 46.28007],
+ [6.86092, 46.2439],
+ [6.82698, 46.21188],
+ [6.82075, 46.19862],
+ [6.81863, 46.16592],
+ [6.82259, 46.15261],
+ [6.83427, 46.14509],
+ [6.90382, 46.12971],
+ [6.90491, 46.09595],
+ [6.90932, 46.08406],
+ [6.92001, 46.07721],
+ [6.94898, 46.0699],
+ [7.01556, 46.00883],
+ [7.05191, 45.93066],
+ [7.04533, 45.92217],
+ [7.04497, 45.92064],
+ [7.04394, 45.92036],
+ [6.99582, 45.85822],
+ [6.94097, 45.83551],
+ [6.84376, 45.82387],
+ [6.83102, 45.81711],
+ [6.82614, 45.80353],
+ [6.82787, 45.73217],
+ [6.83174, 45.72082],
+ [6.8414, 45.71373],
+ [6.90729, 45.69124],
+ [6.92419, 45.66935],
+ [6.94247, 45.66172],
+ [6.97131, 45.66528],
+ [7.00597, 45.64945],
+ [7.01151, 45.63652],
+ [6.9978, 45.60877],
+ [6.99643, 45.59465],
+ [7.0158, 45.52354],
+ [7.02774, 45.5102],
+ [7.1072, 45.47877],
+ [7.1228, 45.44924],
+ [7.13304, 45.44001],
+ [7.1856, 45.41894],
+ [7.19515, 45.40409],
+ [7.17075, 45.35069],
+ [7.14232, 45.32298],
+ [7.13649, 45.30576],
+ [7.14458, 45.25048],
+ [7.08417, 45.20279],
+ [6.99279, 45.19823],
+ [6.98106, 45.19368],
+ [6.90009, 45.12689],
+ [6.85843, 45.11699],
+ [6.78283, 45.14228],
+ [6.77056, 45.14242],
+ [6.67751, 45.11356],
+ [6.6653, 45.10289],
+ [6.66501, 45.08667],
+ [6.68237, 45.04558],
+ [6.69602, 45.03395],
+ [6.75744, 45.01884],
+ [6.78375, 44.9146],
+ [6.7942, 44.90161],
+ [6.86698, 44.86519],
+ [6.8798, 44.86346],
+ [6.93633, 44.87461],
+ [7.01795, 44.84402],
+ [7.03453, 44.82282],
+ [7.03711, 44.75009],
+ [7.0496, 44.73226],
+ [7.07224, 44.72311],
+ [7.08651, 44.6968],
+ [7.08666, 44.68085],
+ [7.07671, 44.67134],
+ [6.99007, 44.67203],
+ [6.97413, 44.66431],
+ [6.97056, 44.64696],
+ [6.97819, 44.61784],
+ [6.94659, 44.57124],
+ [6.88235, 44.53479],
+ [6.87233, 44.5195],
+ [6.87892, 44.50245],
+ [6.95894, 44.43129],
+ [6.95872, 44.42908],
+ [6.92167, 44.41436],
+ [6.91223, 44.40659],
+ [6.90907, 44.39477],
+ [6.90972, 44.38195],
+ [6.91637, 44.36804],
+ [6.99909, 44.29414],
+ [7.01181, 44.256],
+ [7.01983, 44.24558],
+ [7.03259, 44.2424],
+ [7.07312, 44.2461],
+ [7.1651, 44.22112],
+ [7.24533, 44.18544],
+ [7.26053, 44.16682],
+ [7.27537, 44.15947],
+ [7.33878, 44.1574],
+ [7.36278, 44.13834],
+ [7.37776, 44.13416],
+ [7.56283, 44.15792],
+ [7.5642, 44.15836],
+ [7.56478, 44.15817],
+ [7.60548, 44.1634],
+ [7.6162, 44.16827],
+ [7.63989, 44.18928],
+ [7.68608, 44.1861],
+ [7.69422, 44.17795],
+ [7.68937, 44.13869],
+ [7.69445, 44.12276],
+ [7.72786, 44.08615],
+ [7.72403, 44.05704],
+ [7.68603, 44.02371],
+ [7.68077, 44.0164],
+ [7.66016, 43.9672],
+ [7.59624, 43.94466],
+ [7.58419, 43.93287],
+ [7.56858, 43.89159],
+ [7.5271, 43.87434],
+ [7.51649, 43.86397],
+ [7.51594, 43.84915],
+ [7.53622, 43.79234],
+ [9.8, 43.1],
+ [9.63227, 41.43244],
+ [9.36968, 41.35052],
+ [9.27311, 41.29196],
+ [8.94186, 41.27688],
+ [5.8, 41.64],
+ [3.17358, 42.41768],
+ [3.16081, 42.42757],
+ [3.0944, 42.41457],
+ [3.03402, 42.45331],
+ [3.02214, 42.45645],
+ [2.87822, 42.4487],
+ [2.87019, 42.44653],
+ [2.78424, 42.40256],
+ [2.7413, 42.41128],
+ [2.72928, 42.40998],
+ [2.69331, 42.39417],
+ [2.68378, 42.3854],
+ [2.68162, 42.37263],
+ [2.68585, 42.34679],
+ [2.66719, 42.33008],
+ [2.58106, 42.34418],
+ [2.56777, 42.34173],
+ [2.5338, 42.32197],
+ [2.47795, 42.32986],
+ [2.41933, 42.37658],
+ [2.41222, 42.38021],
+ [2.26719, 42.42055],
+ [2.25973, 42.42117],
+ [2.20694, 42.41558],
+ [2.20653, 42.41526],
+ [2.20526, 42.41541],
+ [2.16028, 42.41065],
+ [2.14881, 42.40545],
+ [2.09393, 42.35474],
+ [2.00861, 42.33818],
+ [1.965, 42.36473],
+ [1.93076, 42.42442],
+ [1.92089, 42.43302],
+ [1.88467, 42.44761],
+ [1.88459, 42.44762],
+ [1.88444, 42.4477],
+ [1.82774, 42.47056],
+ [1.72567, 42.48452],
+ [1.71561, 42.50125],
+ [1.7272, 42.56103],
+ [1.72479, 42.57499],
+ [1.71011, 42.59992],
+ [1.69377, 42.60975],
+ [1.60283, 42.61382],
+ [1.56069, 42.6392],
+ [1.54636, 42.64166],
+ [1.50444, 42.6331],
+ [1.4921, 42.62502],
+ [1.47238, 42.59703],
+ [1.43792, 42.59264],
+ [1.41936, 42.60643],
+ [1.38032, 42.67415],
+ [1.37335, 42.68127],
+ [1.33313, 42.70563],
+ [1.32364, 42.7085],
+ [1.23221, 42.71248],
+ [1.16554, 42.69928],
+ [1.08546, 42.76635],
+ [1.07564, 42.77079],
+ [0.95937, 42.78852],
+ [0.95073, 42.78794],
+ [0.92265, 42.7797],
+ [0.84606, 42.8157],
+ [0.71511, 42.8464],
+ [0.70017, 42.84402],
+ [0.69117, 42.83186],
+ [0.67409, 42.76479],
+ [0.67474, 42.75286],
+ [0.69192, 42.70684],
+ [0.669, 42.67901],
+ [0.43024, 42.67863],
+ [0.3715, 42.70308],
+ [0.35954, 42.70415],
+ [0.34912, 42.69817],
+ [0.32567, 42.67274],
+ [0.29571, 42.66388],
+ [0.24594, 42.70175],
+ [0.23972, 42.70494],
+ [0.18967, 42.72039],
+ [0.17919, 42.72075],
+ [-0.01993, 42.67389],
+ [-0.06726, 42.6848],
+ [-0.16949, 42.77157],
+ [-0.29987, 42.82697],
+ [-0.31683, 42.82635],
+ [-0.39208, 42.78766],
+ [-0.44354, 42.78453],
+ [-0.48842, 42.80255],
+ [-0.50868, 42.79935],
+ [-0.54499, 42.76906],
+ [-0.56721, 42.76937],
+ [-0.67446, 42.86392],
+ [-0.68094, 42.86775],
+ [-0.73372, 42.88666],
+ [-0.7476, 42.93879],
+ [-0.75711, 42.95107],
+ [-0.77253, 42.95284],
+ [-0.82114, 42.93865],
+ [-0.94508, 42.94192],
+ [-1.02313, 42.98206],
+ [-1.10852, 43.00409],
+ [-1.1156, 43.00461],
+ [-1.14775, 43.00124],
+ [-1.15845, 43.01452],
+ [-1.16736, 43.02083],
+ [-1.21622, 43.0381],
+ [-1.22612, 43.03898],
+ [-1.26236, 43.03303],
+ [-1.30643, 43.05531],
+ [-1.31992, 43.05696],
+ [-1.33135, 43.0496],
+ [-1.3542, 43.0197],
+ [-1.43868, 43.03371],
+ [-1.4775, 43.06889],
+ [-1.48311, 43.08561],
+ [-1.47641, 43.10248],
+ [-1.43479, 43.13087],
+ [-1.42732, 43.1404],
+ [-1.39411, 43.22935],
+ [-1.39531, 43.24596],
+ [-1.40868, 43.25591],
+ [-1.52629, 43.28099],
+ [-1.54626, 43.2737],
+ [-1.57149, 43.2412],
+ [-1.61053, 43.24223],
+ [-1.65, 43.29323],
+ [-1.66953, 43.30065],
+ [-1.73359, 43.28856],
+ [-1.75606, 43.31966],
+ [-1.76297, 43.32565],
+ [-1.79156, 43.34067],
+ [-1.80099, 43.37017],
+ [-1.78509, 43.39037],
+ [-1.7835, 43.39686],
+ [-2.7, 43.9]
+ ]
+ ],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/FR:WikiProject_France/WikiProject_Base_Adresses_Nationale_Ouverte_(BANO)#Licence_du_r.C3.A9sultat",
+ "terms_text": "Tiles © cquest@Openstreetmap France, data © OpenStreetMap contributors, ODBL",
+ "description": "French address registry or Base Adresses Nationale Ouverte",
+ "overlay": true
+ },
+ {
+ "id": "lu.geoportail.opendata.basemap",
+ "name": "Basemap geoportail.lu",
+ "type": "tms",
+ "template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/basemap/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png",
+ "endDate": "2010-07-20T00:00:00.000Z",
+ "startDate": "2013-07-19T00:00:00.000Z",
+ "scaleExtent": [0, 20],
+ "polygon": [
+ [
+ [5.96175, 50.17631],
+ [6.02627, 50.18496],
+ [6.03318, 50.16395],
+ [6.06069, 50.15536],
+ [6.07668, 50.15913],
+ [6.07824, 50.17255],
+ [6.10176, 50.17199],
+ [6.1225, 50.16437],
+ [6.1201, 50.15594],
+ [6.1277, 50.14993],
+ [6.11323, 50.13739],
+ [6.12369, 50.13719],
+ [6.14093, 50.1305],
+ [6.13555, 50.11899],
+ [6.13808, 50.10263],
+ [6.13108, 50.09964],
+ [6.13547, 50.09119],
+ [6.12194, 50.09059],
+ [6.12634, 50.07817],
+ [6.13186, 50.07348],
+ [6.12117, 50.064],
+ [6.11444, 50.06139],
+ [6.11563, 50.05817],
+ [6.12361, 50.06323],
+ [6.13661, 50.04178],
+ [6.13034, 50.02975],
+ [6.14821, 50.02307],
+ [6.13868, 50.01572],
+ [6.13594, 50.01485],
+ [6.13138, 50.01905],
+ [6.13024, 50.01819],
+ [6.13934, 50.01116],
+ [6.1517, 50.01058],
+ [6.14546, 49.99689],
+ [6.13966, 49.9994],
+ [6.13852, 49.99829],
+ [6.14218, 49.99535],
+ [6.15023, 49.99518],
+ [6.15625, 49.98867],
+ [6.17305, 49.98589],
+ [6.17348, 49.98344],
+ [6.17035, 49.98376],
+ [6.16549, 49.97115],
+ [6.17151, 49.96298],
+ [6.1763, 49.962],
+ [6.17995, 49.95386],
+ [6.18339, 49.9548],
+ [6.17983, 49.96307],
+ [6.18331, 49.9686],
+ [6.19277, 49.97158],
+ [6.19978, 49.95352],
+ [6.20707, 49.95672],
+ [6.21269, 49.9514],
+ [6.22502, 49.95039],
+ [6.22044, 49.94369],
+ [6.22824, 49.93726],
+ [6.22635, 49.92766],
+ [6.21913, 49.92354],
+ [6.22986, 49.92125],
+ [6.23603, 49.91355],
+ [6.23187, 49.91064],
+ [6.22769, 49.91062],
+ [6.23229, 49.9072],
+ [6.23381, 49.90028],
+ [6.24692, 49.89535],
+ [6.25781, 49.88724],
+ [6.26301, 49.88101],
+ [6.27646, 49.87725],
+ [6.28113, 49.87957],
+ [6.29166, 49.87548],
+ [6.2977, 49.86673],
+ [6.30989, 49.87107],
+ [6.31532, 49.8673],
+ [6.31465, 49.86057],
+ [6.32361, 49.85188],
+ [6.32158, 49.8409],
+ [6.32741, 49.83673],
+ [6.33656, 49.83998],
+ [6.33937, 49.8507],
+ [6.36465, 49.85164],
+ [6.4022, 49.82098],
+ [6.42643, 49.81629],
+ [6.42807, 49.81186],
+ [6.43097, 49.81129],
+ [6.44161, 49.81547],
+ [6.44344, 49.81233],
+ [6.45366, 49.81275],
+ [6.46454, 49.81975],
+ [6.47057, 49.82385],
+ [6.49681, 49.81277],
+ [6.50669, 49.80993],
+ [6.51155, 49.80238],
+ [6.51485, 49.80513],
+ [6.5196, 49.81446],
+ [6.52981, 49.81048],
+ [6.53225, 49.80686],
+ [6.53083, 49.80116],
+ [6.50622, 49.78899],
+ [6.51917, 49.78344],
+ [6.51105, 49.77422],
+ [6.52056, 49.76818],
+ [6.52052, 49.76134],
+ [6.50373, 49.75086],
+ [6.50263, 49.73298],
+ [6.50727, 49.72938],
+ [6.51809, 49.7242],
+ [6.51642, 49.72129],
+ [6.51176, 49.72016],
+ [6.50479, 49.725],
+ [6.49891, 49.72639],
+ [6.49558, 49.72443],
+ [6.50712, 49.71655],
+ [6.50788, 49.71215],
+ [6.5046, 49.71227],
+ [6.42714, 49.66237],
+ [6.4399, 49.66025],
+ [6.44251, 49.65591],
+ [6.42178, 49.61809],
+ [6.39898, 49.60094],
+ [6.37941, 49.59526],
+ [6.37551, 49.58809],
+ [6.38443, 49.5801],
+ [6.38119, 49.57509],
+ [6.36909, 49.5783],
+ [6.35791, 49.57166],
+ [6.3849, 49.55817],
+ [6.38009, 49.54856],
+ [6.35855, 49.53296],
+ [6.35932, 49.52481],
+ [6.37076, 49.50545],
+ [6.37056, 49.45732],
+ [6.3334, 49.46493],
+ [6.32189, 49.47244],
+ [6.29503, 49.47928],
+ [6.28789, 49.48379],
+ [6.27191, 49.49995],
+ [6.24133, 49.50693],
+ [6.19669, 49.50331],
+ [6.17337, 49.50577],
+ [6.16086, 49.50085],
+ [6.1671, 49.49006],
+ [6.14018, 49.48525],
+ [6.12937, 49.48803],
+ [6.12725, 49.47081],
+ [6.1014, 49.46726],
+ [6.10483, 49.45076],
+ [6.08167, 49.45417],
+ [6.07722, 49.46139],
+ [6.05917, 49.46306],
+ [6.05222, 49.46028],
+ [6.04421, 49.44553],
+ [6.02529, 49.44703],
+ [6.02154, 49.45127],
+ [6.01574, 49.44885],
+ [5.99412, 49.45301],
+ [5.97657, 49.44885],
+ [5.97773, 49.45955],
+ [5.97232, 49.46087],
+ [5.96891, 49.48202],
+ [5.9616, 49.49026],
+ [5.91578, 49.49835],
+ [5.89033, 49.4948],
+ [5.86332, 49.50006],
+ [5.84897, 49.50826],
+ [5.84828, 49.51397],
+ [5.83641, 49.51817],
+ [5.83187, 49.52639],
+ [5.84308, 49.53081],
+ [5.83562, 49.54114],
+ [5.81625, 49.53325],
+ [5.8052, 49.54272],
+ [5.85943, 49.57158],
+ [5.86866, 49.587],
+ [5.86289, 49.58525],
+ [5.8511, 49.58379],
+ [5.84712, 49.58961],
+ [5.84565, 49.5981],
+ [5.8694, 49.6106],
+ [5.88182, 49.63815],
+ [5.89998, 49.63907],
+ [5.89934, 49.66239],
+ [5.85656, 49.67628],
+ [5.85628, 49.68211],
+ [5.8757, 49.71118],
+ [5.86481, 49.72331],
+ [5.84325, 49.71822],
+ [5.82191, 49.72128],
+ [5.82489, 49.73767],
+ [5.82073, 49.74878],
+ [5.78626, 49.79079],
+ [5.76517, 49.78961],
+ [5.75094, 49.79094],
+ [5.74159, 49.82126],
+ [5.74581, 49.82435],
+ [5.7372, 49.83353],
+ [5.74053, 49.84142],
+ [5.74701, 49.84048],
+ [5.74624, 49.84783],
+ [5.75399, 49.84878],
+ [5.74066, 49.85152],
+ [5.75229, 49.85922],
+ [5.74955, 49.87554],
+ [5.77567, 49.87438],
+ [5.77505, 49.88057],
+ [5.7346, 49.89341],
+ [5.73303, 49.90285],
+ [5.75783, 49.91737],
+ [5.76039, 49.93252],
+ [5.77073, 49.93711],
+ [5.76878, 49.94239],
+ [5.7688, 49.96104],
+ [5.78672, 49.96816],
+ [5.80524, 49.96677],
+ [5.80652, 49.97321],
+ [5.83129, 49.97995],
+ [5.83462, 49.98656],
+ [5.81806, 49.99936],
+ [5.81561, 50.01437],
+ [5.84792, 50.02809],
+ [5.86189, 50.04581],
+ [5.85087, 50.0563],
+ [5.85781, 50.07186],
+ [5.881, 50.08069],
+ [5.89196, 50.12041],
+ [5.95286, 50.13384],
+ [5.96175, 50.17631]
+ ]
+ ],
+ "terms_url": "https://data.public.lu/en/datasets/carte-de-base-webservices-wms-et-wmts",
+ "terms_text": "Administration du Cadastre et de la Topographie",
+ "icon": "https://www.geoportail.lu/static/img/lion.png"
+ },
+ {
+ "id": "basemap.at",
+ "name": "basemap.at",
+ "type": "tms",
+ "template": "https://maps{switch:1,2,3,4}.wien.gv.at/basemap/geolandbasemap/normal/google3857/{zoom}/{y}/{x}.png",
+ "scaleExtent": [0, 19],
+ "polygon": [
+ [
+ [16.50733, 46.99293],
+ [16.28342, 46.99293],
+ [16.13584, 46.8713],
+ [15.98317, 46.81909],
+ [16.04933, 46.65517],
+ [15.86104, 46.71801],
+ [15.75926, 46.69009],
+ [15.56079, 46.67962],
+ [15.57606, 46.63421],
+ [15.47937, 46.60276],
+ [15.43357, 46.65168],
+ [15.22493, 46.63421],
+ [15.04682, 46.64819],
+ [14.99084, 46.58877],
+ [14.9603, 46.62373],
+ [14.85344, 46.60276],
+ [14.83308, 46.50127],
+ [14.75166, 46.49776],
+ [14.68041, 46.43818],
+ [14.61426, 46.43818],
+ [14.57864, 46.37853],
+ [14.44124, 46.43116],
+ [14.16135, 46.42766],
+ [14.12573, 46.47674],
+ [14.01886, 46.47674],
+ [13.91199, 46.52578],
+ [13.82548, 46.50477],
+ [13.44381, 46.56078],
+ [13.30641, 46.55028],
+ [13.1283, 46.58877],
+ [12.84332, 46.61324],
+ [12.72628, 46.6412],
+ [12.51255, 46.66565],
+ [12.35988, 46.70405],
+ [12.36497, 46.77032],
+ [12.28863, 46.77729],
+ [12.27337, 46.88522],
+ [12.20721, 46.87478],
+ [12.13088, 46.90261],
+ [12.11561, 46.99987],
+ [12.25301, 47.06577],
+ [12.2123, 47.0935],
+ [11.9833, 47.04497],
+ [11.73394, 46.96168],
+ [11.63217, 47.01028],
+ [11.54057, 46.97557],
+ [11.49986, 47.00681],
+ [11.41843, 46.96515],
+ [11.25559, 46.97557],
+ [11.1131, 46.91304],
+ [11.04185, 46.76335],
+ [10.88919, 46.75986],
+ [10.74161, 46.78426],
+ [10.70599, 46.86435],
+ [10.57877, 46.83998],
+ [10.45663, 46.85043],
+ [10.47699, 46.92694],
+ [10.38539, 46.98946],
+ [10.23272, 46.86435],
+ [10.12076, 46.83302],
+ [9.86632, 46.94084],
+ [9.90194, 47.00334],
+ [9.68312, 47.05884],
+ [9.61188, 47.03804],
+ [9.63223, 47.12813],
+ [9.58134, 47.1662],
+ [9.54063, 47.26644],
+ [9.60679, 47.34926],
+ [9.67294, 47.36994],
+ [9.64241, 47.44571],
+ [9.56608, 47.48011],
+ [9.71365, 47.52824],
+ [9.7849, 47.59692],
+ [9.83579, 47.54542],
+ [9.94774, 47.53855],
+ [10.09023, 47.44915],
+ [10.11059, 47.36649],
+ [10.2429, 47.38717],
+ [10.18692, 47.2699],
+ [10.32432, 47.29751],
+ [10.48208, 47.44915],
+ [10.43119, 47.48699],
+ [10.44137, 47.59005],
+ [10.48717, 47.55229],
+ [10.54823, 47.53511],
+ [10.59912, 47.56602],
+ [10.75688, 47.53168],
+ [10.88919, 47.54542],
+ [10.94008, 47.48699],
+ [10.99605, 47.39061],
+ [11.23523, 47.44227],
+ [11.28103, 47.3975],
+ [11.42352, 47.51449],
+ [11.57619, 47.50762],
+ [11.60672, 47.59005],
+ [11.83572, 47.58662],
+ [12.00366, 47.62436],
+ [12.20721, 47.60378],
+ [12.16141, 47.69634],
+ [12.2581, 47.74427],
+ [12.25301, 47.67921],
+ [12.43112, 47.71004],
+ [12.49219, 47.63122],
+ [12.56852, 47.62779],
+ [12.62959, 47.68949],
+ [12.77208, 47.66893],
+ [12.83315, 47.54198],
+ [12.97564, 47.47323],
+ [13.04179, 47.49387],
+ [13.0367, 47.55572],
+ [13.09777, 47.64151],
+ [13.03161, 47.71004],
+ [12.90439, 47.72031],
+ [13.00617, 47.84683],
+ [12.9451, 47.93555],
+ [12.86368, 47.95941],
+ [12.86368, 48.00369],
+ [12.75172, 48.09894],
+ [12.87386, 48.21097],
+ [12.96037, 48.21097],
+ [13.04179, 48.2652],
+ [13.18428, 48.29907],
+ [13.26061, 48.2923],
+ [13.39801, 48.35659],
+ [13.44381, 48.41742],
+ [13.43872, 48.55234],
+ [13.50997, 48.58601],
+ [13.61175, 48.57255],
+ [13.72879, 48.5119],
+ [13.78477, 48.57255],
+ [13.82039, 48.62639],
+ [13.79495, 48.71713],
+ [13.85093, 48.77417],
+ [14.05957, 48.66338],
+ [14.01377, 48.63312],
+ [14.07484, 48.59274],
+ [14.21733, 48.59611],
+ [14.3649, 48.54897],
+ [14.46668, 48.64993],
+ [14.55828, 48.59611],
+ [14.59899, 48.62639],
+ [14.72113, 48.57591],
+ [14.72113, 48.6869],
+ [14.8229, 48.7272],
+ [14.81782, 48.77753],
+ [14.96472, 48.78518],
+ [14.98936, 49.01266],
+ [15.14859, 48.99503],
+ [15.19439, 48.93155],
+ [15.30635, 48.98501],
+ [15.39286, 48.98501],
+ [15.48446, 48.92821],
+ [15.74908, 48.8546],
+ [15.84068, 48.88807],
+ [16.00862, 48.78088],
+ [16.20708, 48.73391],
+ [16.39537, 48.73727],
+ [16.49206, 48.81105],
+ [16.69053, 48.77417],
+ [16.7058, 48.73391],
+ [16.89917, 48.71377],
+ [16.97551, 48.51527],
+ [16.84828, 48.45118],
+ [16.85337, 48.34644],
+ [16.95515, 48.25165],
+ [16.99077, 48.1499],
+ [17.09255, 48.13971],
+ [17.08237, 48.02412],
+ [17.17397, 48.02071],
+ [17.08237, 47.87414],
+ [16.98568, 47.86732],
+ [17.08237, 47.80925],
+ [17.09255, 47.70319],
+ [16.74142, 47.67921],
+ [16.7058, 47.75112],
+ [16.53786, 47.75454],
+ [16.54804, 47.70662],
+ [16.42082, 47.66893],
+ [16.57348, 47.6175],
+ [16.67017, 47.63122],
+ [16.71088, 47.53855],
+ [16.66, 47.44915],
+ [16.54295, 47.39406],
+ [16.46153, 47.39406],
+ [16.49206, 47.2768],
+ [16.42591, 47.19733],
+ [16.47171, 47.1489],
+ [16.54804, 47.1489],
+ [16.47679, 47.07964],
+ [16.52768, 47.05884],
+ [16.50733, 46.99293]
+ ]
+ ],
+ "terms_url": "https://basemap.at",
+ "terms_text": "basemap.at",
+ "description": "Basemap of Austria, based on government data.",
+ "icon": "https://www.basemap.at/images/logo_basemap.jpg"
+ },
+ {
+ "id": "basemap.at-orthofoto",
+ "name": "basemap.at Orthofoto",
+ "type": "tms",
+ "template": "https://maps{switch:1,2,3,4}.wien.gv.at/basemap/bmaporthofoto30cm/normal/google3857/{zoom}/{y}/{x}.jpeg",
+ "scaleExtent": [0, 19],
+ "polygon": [
+ [
+ [16.50733, 46.99293],
+ [16.28342, 46.99293],
+ [16.13584, 46.8713],
+ [15.98317, 46.81909],
+ [16.04933, 46.65517],
+ [15.86104, 46.71801],
+ [15.75926, 46.69009],
+ [15.56079, 46.67962],
+ [15.57606, 46.63421],
+ [15.47937, 46.60276],
+ [15.43357, 46.65168],
+ [15.22493, 46.63421],
+ [15.04682, 46.64819],
+ [14.99084, 46.58877],
+ [14.9603, 46.62373],
+ [14.85344, 46.60276],
+ [14.83308, 46.50127],
+ [14.75166, 46.49776],
+ [14.68041, 46.43818],
+ [14.61426, 46.43818],
+ [14.57864, 46.37853],
+ [14.44124, 46.43116],
+ [14.16135, 46.42766],
+ [14.12573, 46.47674],
+ [14.01886, 46.47674],
+ [13.91199, 46.52578],
+ [13.82548, 46.50477],
+ [13.44381, 46.56078],
+ [13.30641, 46.55028],
+ [13.1283, 46.58877],
+ [12.84332, 46.61324],
+ [12.72628, 46.6412],
+ [12.51255, 46.66565],
+ [12.35988, 46.70405],
+ [12.36497, 46.77032],
+ [12.28863, 46.77729],
+ [12.27337, 46.88522],
+ [12.20721, 46.87478],
+ [12.13088, 46.90261],
+ [12.11561, 46.99987],
+ [12.25301, 47.06577],
+ [12.2123, 47.0935],
+ [11.9833, 47.04497],
+ [11.73394, 46.96168],
+ [11.63217, 47.01028],
+ [11.54057, 46.97557],
+ [11.49986, 47.00681],
+ [11.41843, 46.96515],
+ [11.25559, 46.97557],
+ [11.1131, 46.91304],
+ [11.04185, 46.76335],
+ [10.88919, 46.75986],
+ [10.74161, 46.78426],
+ [10.70599, 46.86435],
+ [10.57877, 46.83998],
+ [10.45663, 46.85043],
+ [10.47699, 46.92694],
+ [10.38539, 46.98946],
+ [10.23272, 46.86435],
+ [10.12076, 46.83302],
+ [9.86632, 46.94084],
+ [9.90194, 47.00334],
+ [9.68312, 47.05884],
+ [9.61188, 47.03804],
+ [9.63223, 47.12813],
+ [9.58134, 47.1662],
+ [9.54063, 47.26644],
+ [9.60679, 47.34926],
+ [9.67294, 47.36994],
+ [9.64241, 47.44571],
+ [9.56608, 47.48011],
+ [9.71365, 47.52824],
+ [9.7849, 47.59692],
+ [9.83579, 47.54542],
+ [9.94774, 47.53855],
+ [10.09023, 47.44915],
+ [10.11059, 47.36649],
+ [10.2429, 47.38717],
+ [10.18692, 47.2699],
+ [10.32432, 47.29751],
+ [10.48208, 47.44915],
+ [10.43119, 47.48699],
+ [10.44137, 47.59005],
+ [10.48717, 47.55229],
+ [10.54823, 47.53511],
+ [10.59912, 47.56602],
+ [10.75688, 47.53168],
+ [10.88919, 47.54542],
+ [10.94008, 47.48699],
+ [10.99605, 47.39061],
+ [11.23523, 47.44227],
+ [11.28103, 47.3975],
+ [11.42352, 47.51449],
+ [11.57619, 47.50762],
+ [11.60672, 47.59005],
+ [11.83572, 47.58662],
+ [12.00366, 47.62436],
+ [12.20721, 47.60378],
+ [12.16141, 47.69634],
+ [12.2581, 47.74427],
+ [12.25301, 47.67921],
+ [12.43112, 47.71004],
+ [12.49219, 47.63122],
+ [12.56852, 47.62779],
+ [12.62959, 47.68949],
+ [12.77208, 47.66893],
+ [12.83315, 47.54198],
+ [12.97564, 47.47323],
+ [13.04179, 47.49387],
+ [13.0367, 47.55572],
+ [13.09777, 47.64151],
+ [13.03161, 47.71004],
+ [12.90439, 47.72031],
+ [13.00617, 47.84683],
+ [12.9451, 47.93555],
+ [12.86368, 47.95941],
+ [12.86368, 48.00369],
+ [12.75172, 48.09894],
+ [12.87386, 48.21097],
+ [12.96037, 48.21097],
+ [13.04179, 48.2652],
+ [13.18428, 48.29907],
+ [13.26061, 48.2923],
+ [13.39801, 48.35659],
+ [13.44381, 48.41742],
+ [13.43872, 48.55234],
+ [13.50997, 48.58601],
+ [13.61175, 48.57255],
+ [13.72879, 48.5119],
+ [13.78477, 48.57255],
+ [13.82039, 48.62639],
+ [13.79495, 48.71713],
+ [13.85093, 48.77417],
+ [14.05957, 48.66338],
+ [14.01377, 48.63312],
+ [14.07484, 48.59274],
+ [14.21733, 48.59611],
+ [14.3649, 48.54897],
+ [14.46668, 48.64993],
+ [14.55828, 48.59611],
+ [14.59899, 48.62639],
+ [14.72113, 48.57591],
+ [14.72113, 48.6869],
+ [14.8229, 48.7272],
+ [14.81782, 48.77753],
+ [14.96472, 48.78518],
+ [14.98936, 49.01266],
+ [15.14859, 48.99503],
+ [15.19439, 48.93155],
+ [15.30635, 48.98501],
+ [15.39286, 48.98501],
+ [15.48446, 48.92821],
+ [15.74908, 48.8546],
+ [15.84068, 48.88807],
+ [16.00862, 48.78088],
+ [16.20708, 48.73391],
+ [16.39537, 48.73727],
+ [16.49206, 48.81105],
+ [16.69053, 48.77417],
+ [16.7058, 48.73391],
+ [16.89917, 48.71377],
+ [16.97551, 48.51527],
+ [16.84828, 48.45118],
+ [16.85337, 48.34644],
+ [16.95515, 48.25165],
+ [16.99077, 48.1499],
+ [17.09255, 48.13971],
+ [17.08237, 48.02412],
+ [17.17397, 48.02071],
+ [17.08237, 47.87414],
+ [16.98568, 47.86732],
+ [17.08237, 47.80925],
+ [17.09255, 47.70319],
+ [16.74142, 47.67921],
+ [16.7058, 47.75112],
+ [16.53786, 47.75454],
+ [16.54804, 47.70662],
+ [16.42082, 47.66893],
+ [16.57348, 47.6175],
+ [16.67017, 47.63122],
+ [16.71088, 47.53855],
+ [16.66, 47.44915],
+ [16.54295, 47.39406],
+ [16.46153, 47.39406],
+ [16.49206, 47.2768],
+ [16.42591, 47.19733],
+ [16.47171, 47.1489],
+ [16.54804, 47.1489],
+ [16.47679, 47.07964],
+ [16.52768, 47.05884],
+ [16.50733, 46.99293]
+ ]
+ ],
+ "terms_url": "https://basemap.at",
+ "terms_text": "basemap.at",
+ "best": true,
+ "description": "Orthofoto layer provided by basemap.at. \"Successor\" of geoimage.at imagery.",
+ "icon": "https://www.basemap.at/images/logo_basemap.jpg"
+ },
+ {
+ "id": "bavaria-2m",
+ "name": "Bavaria (2 m)",
+ "type": "wms",
+ "template": "https://geodaten.bayern.de/ogc/ogc_dop200_oa.cgi?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=adv_dop200c&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:4326",
+ "scaleExtent": [8, 18],
+ "polygon": [
+ [
+ [10.12359, 50.56846],
+ [10.14286, 50.55078],
+ [10.20281, 50.55742],
+ [10.25205, 50.51796],
+ [10.32698, 50.49345],
+ [10.41048, 50.41848],
+ [10.60317, 50.33109],
+ [10.62244, 50.2271],
+ [10.72521, 50.21066],
+ [10.72949, 50.24765],
+ [10.85153, 50.24354],
+ [10.71879, 50.32015],
+ [10.71236, 50.36524],
+ [10.85581, 50.39664],
+ [10.93717, 50.39664],
+ [10.99069, 50.36661],
+ [11.12772, 50.36661],
+ [11.1791, 50.31332],
+ [11.16197, 50.29417],
+ [11.24119, 50.2928],
+ [11.24975, 50.37344],
+ [11.24119, 50.47982],
+ [11.35895, 50.5234],
+ [11.43816, 50.50979],
+ [11.44244, 50.48936],
+ [11.42532, 50.4771],
+ [11.42532, 50.44166],
+ [11.48955, 50.42257],
+ [11.49169, 50.39801],
+ [11.51952, 50.39801],
+ [11.52594, 50.37617],
+ [11.59874, 50.40347],
+ [11.63727, 50.38845],
+ [11.79357, 50.4212],
+ [11.83639, 50.39255],
+ [11.92203, 50.42802],
+ [11.98626, 50.38709],
+ [11.98412, 50.35705],
+ [12.04835, 50.33109],
+ [12.09331, 50.32972],
+ [12.1297, 50.29828],
+ [12.14041, 50.27228],
+ [12.10615, 50.25586],
+ [12.11258, 50.23532],
+ [12.14897, 50.23669],
+ [12.19822, 50.20107],
+ [12.22391, 50.16406],
+ [12.20464, 50.14348],
+ [12.20678, 50.10779],
+ [12.24318, 50.09955],
+ [12.27743, 50.07208],
+ [12.49367, 49.98543],
+ [12.49796, 49.94136],
+ [12.55576, 49.92206],
+ [12.54934, 49.86827],
+ [12.48083, 49.78817],
+ [12.41018, 49.75775],
+ [12.46156, 49.70655],
+ [12.5472, 49.68023],
+ [12.58788, 49.55261],
+ [12.65425, 49.53455],
+ [12.66281, 49.43302],
+ [12.75274, 49.41073],
+ [12.7977, 49.34661],
+ [12.90475, 49.35638],
+ [12.99681, 49.33685],
+ [13.05462, 49.27543],
+ [13.13169, 49.21952],
+ [13.19164, 49.14395],
+ [13.2366, 49.12153],
+ [13.29655, 49.12293],
+ [13.37148, 49.08088],
+ [13.4143, 49.02897],
+ [13.4143, 48.97981],
+ [13.57916, 48.96997],
+ [13.63483, 48.94326],
+ [13.67765, 48.88698],
+ [13.73759, 48.89261],
+ [13.7847, 48.83346],
+ [13.84036, 48.77423],
+ [13.81681, 48.70646],
+ [13.84464, 48.70081],
+ [13.8425, 48.60038],
+ [13.76543, 48.5423],
+ [13.75258, 48.50401],
+ [13.67122, 48.50543],
+ [13.64339, 48.54371],
+ [13.45712, 48.5508],
+ [13.45712, 48.41598],
+ [13.40574, 48.36053],
+ [13.2837, 48.27511],
+ [13.09315, 48.26941],
+ [12.95827, 48.19097],
+ [12.87691, 48.18526],
+ [12.772, 48.09382],
+ [12.86407, 48.01368],
+ [12.89832, 47.95492],
+ [12.94543, 47.95636],
+ [12.99681, 47.88461],
+ [13.01394, 47.83434],
+ [12.93472, 47.7322],
+ [13.0589, 47.72499],
+ [13.11885, 47.63851],
+ [13.06532, 47.56922],
+ [13.05676, 47.47379],
+ [13.00323, 47.45208],
+ [12.76772, 47.55044],
+ [12.76986, 47.63274],
+ [12.73989, 47.67312],
+ [12.6671, 47.67024],
+ [12.57503, 47.6212],
+ [12.48083, 47.61975],
+ [12.41446, 47.67024],
+ [12.24318, 47.67745],
+ [12.2132, 47.69186],
+ [12.19179, 47.68177],
+ [12.2132, 47.66591],
+ [12.21106, 47.60388],
+ [12.17467, 47.59521],
+ [12.13827, 47.60388],
+ [11.89205, 47.60388],
+ [11.85137, 47.57933],
+ [11.63942, 47.58222],
+ [11.59445, 47.54899],
+ [11.59017, 47.51285],
+ [11.51738, 47.49839],
+ [11.4403, 47.50417],
+ [11.39534, 47.47524],
+ [11.42746, 47.44484],
+ [11.3461, 47.44339],
+ [11.27973, 47.39559],
+ [11.21336, 47.38834],
+ [11.24761, 47.43181],
+ [11.10203, 47.39269],
+ [10.965, 47.38979],
+ [10.97785, 47.43615],
+ [10.9179, 47.47524],
+ [10.8708, 47.47524],
+ [10.85581, 47.49405],
+ [10.90077, 47.5143],
+ [10.87294, 47.53598],
+ [10.81085, 47.51285],
+ [10.64385, 47.54899],
+ [10.59461, 47.55477],
+ [10.57962, 47.52876],
+ [10.46187, 47.54032],
+ [10.46615, 47.48392],
+ [10.48756, 47.47813],
+ [10.48756, 47.41298],
+ [10.45973, 47.40283],
+ [10.45973, 47.37529],
+ [10.41048, 47.37384],
+ [10.40834, 47.34339],
+ [10.32056, 47.28678],
+ [10.28202, 47.27806],
+ [10.28416, 47.26208],
+ [10.14714, 47.26208],
+ [10.1921, 47.30275],
+ [10.19424, 47.37384],
+ [10.16641, 47.37384],
+ [10.16641, 47.34629],
+ [10.10004, 47.34339],
+ [10.0615, 47.36369],
+ [10.06792, 47.41877],
+ [10.09361, 47.42601],
+ [10.09576, 47.44194],
+ [9.978, 47.48537],
+ [9.95659, 47.52731],
+ [9.8945, 47.52876],
+ [9.85596, 47.50851],
+ [9.81743, 47.54465],
+ [9.82171, 47.57644],
+ [9.77461, 47.58222],
+ [9.73821, 47.52586],
+ [9.67398, 47.53454],
+ [9.58406, 47.56488],
+ [9.63972, 47.60532],
+ [9.7168, 47.60388],
+ [9.85596, 47.676],
+ [9.978, 47.65582],
+ [10.02938, 47.68177],
+ [10.10004, 47.66735],
+ [10.13215, 47.676],
+ [10.14286, 47.70195],
+ [10.0615, 47.7725],
+ [10.11288, 47.8099],
+ [10.08291, 47.85302],
+ [10.1086, 47.90902],
+ [10.07649, 47.96496],
+ [10.13001, 48.02084],
+ [10.13429, 48.10669],
+ [10.10004, 48.12813],
+ [10.05508, 48.26228],
+ [9.96944, 48.36765],
+ [10.03153, 48.42593],
+ [10.02938, 48.46144],
+ [10.12359, 48.47705],
+ [10.15356, 48.4515],
+ [10.23492, 48.51252],
+ [10.31628, 48.51678],
+ [10.29915, 48.61878],
+ [10.24563, 48.6683],
+ [10.27346, 48.70646],
+ [10.3698, 48.68385],
+ [10.43189, 48.69939],
+ [10.45116, 48.72765],
+ [10.40192, 48.746],
+ [10.44046, 48.84896],
+ [10.43403, 48.95873],
+ [10.33769, 49.02055],
+ [10.24991, 49.03599],
+ [10.24991, 49.07387],
+ [10.20066, 49.10331],
+ [10.25205, 49.13274],
+ [10.12359, 49.19714],
+ [10.11931, 49.26285],
+ [10.15142, 49.28939],
+ [10.10432, 49.34522],
+ [10.14072, 49.39401],
+ [10.1086, 49.44555],
+ [10.11074, 49.50537],
+ [10.0722, 49.53316],
+ [10.01654, 49.47616],
+ [9.92662, 49.47894],
+ [9.92448, 49.55678],
+ [9.89878, 49.58177],
+ [9.85596, 49.53872],
+ [9.80672, 49.55678],
+ [9.86667, 49.60675],
+ [9.85382, 49.6442],
+ [9.81743, 49.66083],
+ [9.83455, 49.68993],
+ [9.79602, 49.72039],
+ [9.75748, 49.70793],
+ [9.74035, 49.68577],
+ [9.70609, 49.71624],
+ [9.67826, 49.71624],
+ [9.68254, 49.68854],
+ [9.62045, 49.69131],
+ [9.64615, 49.78955],
+ [9.55836, 49.77434],
+ [9.57121, 49.73561],
+ [9.50698, 49.75222],
+ [9.49199, 49.77987],
+ [9.46844, 49.76051],
+ [9.42562, 49.77849],
+ [9.40421, 49.76466],
+ [9.33356, 49.7702],
+ [9.32928, 49.73423],
+ [9.4085, 49.72593],
+ [9.42776, 49.69824],
+ [9.41492, 49.6442],
+ [9.38066, 49.63865],
+ [9.35925, 49.64974],
+ [9.33998, 49.63727],
+ [9.31215, 49.64836],
+ [9.27789, 49.62617],
+ [9.28432, 49.60814],
+ [9.2415, 49.57483],
+ [9.09805, 49.57205],
+ [9.06594, 49.60814],
+ [9.10019, 49.65113],
+ [9.09163, 49.6927],
+ [9.13017, 49.71208],
+ [9.13873, 49.74253],
+ [9.10876, 49.75637],
+ [9.13659, 49.79093],
+ [9.10019, 49.78955],
+ [9.07236, 49.82824],
+ [9.03596, 49.83514],
+ [9.01669, 50.02671],
+ [8.96317, 50.03084],
+ [8.95674, 50.05971],
+ [9.00171, 50.0707],
+ [9.02097, 50.11054],
+ [9.1216, 50.12289],
+ [9.15586, 50.11328],
+ [9.19654, 50.11878],
+ [9.18583, 50.13525],
+ [9.23507, 50.1476],
+ [9.37638, 50.12701],
+ [9.4085, 50.0817],
+ [9.52197, 50.09543],
+ [9.50484, 50.14211],
+ [9.53267, 50.16406],
+ [9.48985, 50.16954],
+ [9.49413, 50.24354],
+ [9.61403, 50.22163],
+ [9.66541, 50.23532],
+ [9.63544, 50.24901],
+ [9.66756, 50.27228],
+ [9.74249, 50.30922],
+ [9.72964, 50.35841],
+ [9.77032, 50.42939],
+ [9.86881, 50.40074],
+ [9.91805, 50.40893],
+ [10.03581, 50.47982],
+ [10.03795, 50.51115],
+ [10.12359, 50.56846]
+ ]
+ ],
+ "terms_url": "https://www.ldbv.bayern.de/",
+ "terms_text": "Bayerische Vermessungsverwaltung"
+ },
+ {
+ "id": "bavaria-DOP80",
+ "name": "Bavaria DOP 80cm",
+ "type": "tms",
+ "template": "https://mapproxy.osm.ch/tiles/BAYERNDOP80/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
+ "scaleExtent": [7, 18],
+ "polygon": [
+ [
+ [10.12359, 50.56846],
+ [10.14286, 50.55078],
+ [10.20281, 50.55742],
+ [10.25205, 50.51796],
+ [10.32698, 50.49345],
+ [10.41048, 50.41848],
+ [10.60317, 50.33109],
+ [10.62244, 50.2271],
+ [10.72521, 50.21066],
+ [10.72949, 50.24765],
+ [10.85153, 50.24354],
+ [10.71879, 50.32015],
+ [10.71236, 50.36524],
+ [10.85581, 50.39664],
+ [10.93717, 50.39664],
+ [10.99069, 50.36661],
+ [11.12772, 50.36661],
+ [11.1791, 50.31332],
+ [11.16197, 50.29417],
+ [11.24119, 50.2928],
+ [11.24975, 50.37344],
+ [11.24119, 50.47982],
+ [11.35895, 50.5234],
+ [11.43816, 50.50979],
+ [11.44244, 50.48936],
+ [11.42532, 50.4771],
+ [11.42532, 50.44166],
+ [11.48955, 50.42257],
+ [11.49169, 50.39801],
+ [11.51952, 50.39801],
+ [11.52594, 50.37617],
+ [11.59874, 50.40347],
+ [11.63727, 50.38845],
+ [11.79357, 50.4212],
+ [11.83639, 50.39255],
+ [11.92203, 50.42802],
+ [11.98626, 50.38709],
+ [11.98412, 50.35705],
+ [12.04835, 50.33109],
+ [12.09331, 50.32972],
+ [12.1297, 50.29828],
+ [12.14041, 50.27228],
+ [12.10615, 50.25586],
+ [12.11258, 50.23532],
+ [12.14897, 50.23669],
+ [12.19822, 50.20107],
+ [12.22391, 50.16406],
+ [12.20464, 50.14348],
+ [12.20678, 50.10779],
+ [12.24318, 50.09955],
+ [12.27743, 50.07208],
+ [12.49367, 49.98543],
+ [12.49796, 49.94136],
+ [12.55576, 49.92206],
+ [12.54934, 49.86827],
+ [12.48083, 49.78817],
+ [12.41018, 49.75775],
+ [12.46156, 49.70655],
+ [12.5472, 49.68023],
+ [12.58788, 49.55261],
+ [12.65425, 49.53455],
+ [12.66281, 49.43302],
+ [12.75274, 49.41073],
+ [12.7977, 49.34661],
+ [12.90475, 49.35638],
+ [12.99681, 49.33685],
+ [13.05462, 49.27543],
+ [13.13169, 49.21952],
+ [13.19164, 49.14395],
+ [13.2366, 49.12153],
+ [13.29655, 49.12293],
+ [13.37148, 49.08088],
+ [13.4143, 49.02897],
+ [13.4143, 48.97981],
+ [13.57916, 48.96997],
+ [13.63483, 48.94326],
+ [13.67765, 48.88698],
+ [13.73759, 48.89261],
+ [13.7847, 48.83346],
+ [13.84036, 48.77423],
+ [13.81681, 48.70646],
+ [13.84464, 48.70081],
+ [13.8425, 48.60038],
+ [13.76543, 48.5423],
+ [13.75258, 48.50401],
+ [13.67122, 48.50543],
+ [13.64339, 48.54371],
+ [13.45712, 48.5508],
+ [13.45712, 48.41598],
+ [13.40574, 48.36053],
+ [13.2837, 48.27511],
+ [13.09315, 48.26941],
+ [12.95827, 48.19097],
+ [12.87691, 48.18526],
+ [12.772, 48.09382],
+ [12.86407, 48.01368],
+ [12.89832, 47.95492],
+ [12.94543, 47.95636],
+ [12.99681, 47.88461],
+ [13.01394, 47.83434],
+ [12.93472, 47.7322],
+ [13.0589, 47.72499],
+ [13.11885, 47.63851],
+ [13.06532, 47.56922],
+ [13.05676, 47.47379],
+ [13.00323, 47.45208],
+ [12.76772, 47.55044],
+ [12.76986, 47.63274],
+ [12.73989, 47.67312],
+ [12.6671, 47.67024],
+ [12.57503, 47.6212],
+ [12.48083, 47.61975],
+ [12.41446, 47.67024],
+ [12.24318, 47.67745],
+ [12.2132, 47.69186],
+ [12.19179, 47.68177],
+ [12.2132, 47.66591],
+ [12.21106, 47.60388],
+ [12.17467, 47.59521],
+ [12.13827, 47.60388],
+ [11.89205, 47.60388],
+ [11.85137, 47.57933],
+ [11.63942, 47.58222],
+ [11.59445, 47.54899],
+ [11.59017, 47.51285],
+ [11.51738, 47.49839],
+ [11.4403, 47.50417],
+ [11.39534, 47.47524],
+ [11.42746, 47.44484],
+ [11.3461, 47.44339],
+ [11.27973, 47.39559],
+ [11.21336, 47.38834],
+ [11.24761, 47.43181],
+ [11.10203, 47.39269],
+ [10.965, 47.38979],
+ [10.97785, 47.43615],
+ [10.9179, 47.47524],
+ [10.8708, 47.47524],
+ [10.85581, 47.49405],
+ [10.90077, 47.5143],
+ [10.87294, 47.53598],
+ [10.81085, 47.51285],
+ [10.64385, 47.54899],
+ [10.59461, 47.55477],
+ [10.57962, 47.52876],
+ [10.46187, 47.54032],
+ [10.46615, 47.48392],
+ [10.48756, 47.47813],
+ [10.48756, 47.41298],
+ [10.45973, 47.40283],
+ [10.45973, 47.37529],
+ [10.41048, 47.37384],
+ [10.40834, 47.34339],
+ [10.32056, 47.28678],
+ [10.28202, 47.27806],
+ [10.28416, 47.26208],
+ [10.14714, 47.26208],
+ [10.1921, 47.30275],
+ [10.19424, 47.37384],
+ [10.16641, 47.37384],
+ [10.16641, 47.34629],
+ [10.10004, 47.34339],
+ [10.0615, 47.36369],
+ [10.06792, 47.41877],
+ [10.09361, 47.42601],
+ [10.09576, 47.44194],
+ [9.978, 47.48537],
+ [9.95659, 47.52731],
+ [9.8945, 47.52876],
+ [9.85596, 47.50851],
+ [9.81743, 47.54465],
+ [9.82171, 47.57644],
+ [9.77461, 47.58222],
+ [9.73821, 47.52586],
+ [9.67398, 47.53454],
+ [9.58406, 47.56488],
+ [9.63972, 47.60532],
+ [9.7168, 47.60388],
+ [9.85596, 47.676],
+ [9.978, 47.65582],
+ [10.02938, 47.68177],
+ [10.10004, 47.66735],
+ [10.13215, 47.676],
+ [10.14286, 47.70195],
+ [10.0615, 47.7725],
+ [10.11288, 47.8099],
+ [10.08291, 47.85302],
+ [10.1086, 47.90902],
+ [10.07649, 47.96496],
+ [10.13001, 48.02084],
+ [10.13429, 48.10669],
+ [10.10004, 48.12813],
+ [10.05508, 48.26228],
+ [9.96944, 48.36765],
+ [10.03153, 48.42593],
+ [10.02938, 48.46144],
+ [10.12359, 48.47705],
+ [10.15356, 48.4515],
+ [10.23492, 48.51252],
+ [10.31628, 48.51678],
+ [10.29915, 48.61878],
+ [10.24563, 48.6683],
+ [10.27346, 48.70646],
+ [10.3698, 48.68385],
+ [10.43189, 48.69939],
+ [10.45116, 48.72765],
+ [10.40192, 48.746],
+ [10.44046, 48.84896],
+ [10.43403, 48.95873],
+ [10.33769, 49.02055],
+ [10.24991, 49.03599],
+ [10.24991, 49.07387],
+ [10.20066, 49.10331],
+ [10.25205, 49.13274],
+ [10.12359, 49.19714],
+ [10.11931, 49.26285],
+ [10.15142, 49.28939],
+ [10.10432, 49.34522],
+ [10.14072, 49.39401],
+ [10.1086, 49.44555],
+ [10.11074, 49.50537],
+ [10.0722, 49.53316],
+ [10.01654, 49.47616],
+ [9.92662, 49.47894],
+ [9.92448, 49.55678],
+ [9.89878, 49.58177],
+ [9.85596, 49.53872],
+ [9.80672, 49.55678],
+ [9.86667, 49.60675],
+ [9.85382, 49.6442],
+ [9.81743, 49.66083],
+ [9.83455, 49.68993],
+ [9.79602, 49.72039],
+ [9.75748, 49.70793],
+ [9.74035, 49.68577],
+ [9.70609, 49.71624],
+ [9.67826, 49.71624],
+ [9.68254, 49.68854],
+ [9.62045, 49.69131],
+ [9.64615, 49.78955],
+ [9.55836, 49.77434],
+ [9.57121, 49.73561],
+ [9.50698, 49.75222],
+ [9.49199, 49.77987],
+ [9.46844, 49.76051],
+ [9.42562, 49.77849],
+ [9.40421, 49.76466],
+ [9.33356, 49.7702],
+ [9.32928, 49.73423],
+ [9.4085, 49.72593],
+ [9.42776, 49.69824],
+ [9.41492, 49.6442],
+ [9.38066, 49.63865],
+ [9.35925, 49.64974],
+ [9.33998, 49.63727],
+ [9.31215, 49.64836],
+ [9.27789, 49.62617],
+ [9.28432, 49.60814],
+ [9.2415, 49.57483],
+ [9.09805, 49.57205],
+ [9.06594, 49.60814],
+ [9.10019, 49.65113],
+ [9.09163, 49.6927],
+ [9.13017, 49.71208],
+ [9.13873, 49.74253],
+ [9.10876, 49.75637],
+ [9.13659, 49.79093],
+ [9.10019, 49.78955],
+ [9.07236, 49.82824],
+ [9.03596, 49.83514],
+ [9.01669, 50.02671],
+ [8.96317, 50.03084],
+ [8.95674, 50.05971],
+ [9.00171, 50.0707],
+ [9.02097, 50.11054],
+ [9.1216, 50.12289],
+ [9.15586, 50.11328],
+ [9.19654, 50.11878],
+ [9.18583, 50.13525],
+ [9.23507, 50.1476],
+ [9.37638, 50.12701],
+ [9.4085, 50.0817],
+ [9.52197, 50.09543],
+ [9.50484, 50.14211],
+ [9.53267, 50.16406],
+ [9.48985, 50.16954],
+ [9.49413, 50.24354],
+ [9.61403, 50.22163],
+ [9.66541, 50.23532],
+ [9.63544, 50.24901],
+ [9.66756, 50.27228],
+ [9.74249, 50.30922],
+ [9.72964, 50.35841],
+ [9.77032, 50.42939],
+ [9.86881, 50.40074],
+ [9.91805, 50.40893],
+ [10.03581, 50.47982],
+ [10.03795, 50.51115],
+ [10.12359, 50.56846]
+ ]
+ ],
+ "terms_url": "https://www.ldbv.bayern.de/",
+ "terms_text": "Bayerische Vermessungsverwaltung",
+ "best": true
+ },
+ {
+ "id": "route500hydro",
+ "name": "BD Carthage",
+ "type": "tms",
+ "template": "https://{switch:a,b,c}.tile.openstreetmap.fr/route500hydro/{zoom}/{x}/{y}.png",
+ "scaleExtent": [6, 20],
+ "polygon": [
+ [
+ [-2.7, 43.9],
+ [-6.3, 48.98],
+ [-2.25, 50.09],
+ [1.31, 50.88],
+ [2.35816, 51.32937],
+ [2.5488, 51.09759],
+ [2.57048, 51.07409],
+ [2.58741, 51.01763],
+ [2.59845, 51.0051],
+ [2.61558, 50.99749],
+ [2.63986, 50.95766],
+ [2.64225, 50.94578],
+ [2.62452, 50.9256],
+ [2.61962, 50.91067],
+ [2.62396, 50.86071],
+ [2.62781, 50.85054],
+ [2.63786, 50.83696],
+ [2.6511, 50.82906],
+ [2.73267, 50.81738],
+ [2.79995, 50.73795],
+ [2.81655, 50.73092],
+ [2.85265, 50.73335],
+ [2.89072, 50.7162],
+ [2.90492, 50.71536],
+ [2.9161, 50.72418],
+ [2.93508, 50.75592],
+ [3.00718, 50.78377],
+ [3.08218, 50.78749],
+ [3.09244, 50.79092],
+ [3.11412, 50.80566],
+ [3.14877, 50.80195],
+ [3.2154, 50.73111],
+ [3.22149, 50.7267],
+ [3.27051, 50.70375],
+ [3.27545, 50.67757],
+ [3.26576, 50.6604],
+ [3.26588, 50.64054],
+ [3.28922, 50.60028],
+ [3.29219, 50.55037],
+ [3.3056, 50.53267],
+ [3.37551, 50.50839],
+ [3.3898, 50.50884],
+ [3.4748, 50.54445],
+ [3.52173, 50.53459],
+ [3.53266, 50.51873],
+ [3.54779, 50.51012],
+ [3.61523, 50.50558],
+ [3.67378, 50.45642],
+ [3.68415, 50.35277],
+ [3.6901, 50.34044],
+ [3.70258, 50.33482],
+ [3.71576, 50.33854],
+ [3.74935, 50.36279],
+ [3.84109, 50.36558],
+ [3.90189, 50.3436],
+ [3.91317, 50.34291],
+ [4.02672, 50.36904],
+ [4.13761, 50.29984],
+ [4.14388, 50.29727],
+ [4.21444, 50.28167],
+ [4.22904, 50.26664],
+ [4.23078, 50.25233],
+ [4.17084, 50.18579],
+ [4.16601, 50.16888],
+ [4.1764, 50.1547],
+ [4.21195, 50.13602],
+ [4.24074, 50.07102],
+ [4.23193, 50.05551],
+ [4.18164, 50.03436],
+ [4.17177, 50.02537],
+ [4.16976, 50.01217],
+ [4.1765, 50.00065],
+ [4.20633, 49.97546],
+ [4.22164, 49.97089],
+ [4.30877, 49.98145],
+ [4.44542, 49.9523],
+ [4.45469, 49.95251],
+ [4.6581, 50.00609],
+ [4.66936, 50.01392],
+ [4.67293, 50.02716],
+ [4.66924, 50.06972],
+ [4.69517, 50.10472],
+ [4.83123, 50.17941],
+ [4.8815, 50.16436],
+ [4.90479, 50.14451],
+ [4.90426, 50.12639],
+ [4.88076, 50.0815],
+ [4.86277, 50.0745],
+ [4.85104, 50.06216],
+ [4.84331, 50.03884],
+ [4.84331, 50.03883],
+ [4.8433, 50.03881],
+ [4.82678, 49.989],
+ [4.82662, 49.97692],
+ [4.83343, 49.96696],
+ [4.89654, 49.91753],
+ [4.89755, 49.89424],
+ [4.87913, 49.86942],
+ [4.87625, 49.85111],
+ [4.88924, 49.81266],
+ [4.89769, 49.80204],
+ [4.91098, 49.79926],
+ [4.99534, 49.81116],
+ [5.01867, 49.79272],
+ [5.02686, 49.78886],
+ [5.09944, 49.77323],
+ [5.13458, 49.73462],
+ [5.1412, 49.72984],
+ [5.18761, 49.70906],
+ [5.19602, 49.70732],
+ [5.28157, 49.70836],
+ [5.33363, 49.67308],
+ [5.344, 49.65049],
+ [5.3544, 49.64041],
+ [5.43141, 49.60791],
+ [5.48205, 49.52815],
+ [5.49294, 49.51979],
+ [5.50666, 49.52042],
+ [5.55401, 49.54025],
+ [5.59311, 49.53424],
+ [5.6076, 49.53761],
+ [5.641, 49.56095],
+ [5.70676, 49.55267],
+ [5.71578, 49.55361],
+ [5.77526, 49.57414],
+ [5.8399, 49.55321],
+ [5.86126, 49.52038],
+ [5.876, 49.5114],
+ [5.97516, 49.50129],
+ [5.99801, 49.47317],
+ [6.01627, 49.46597],
+ [6.08635, 49.47562],
+ [6.09319, 49.47787],
+ [6.17397, 49.52187],
+ [6.24643, 49.52511],
+ [6.334, 49.48235],
+ [6.34423, 49.48037],
+ [6.43515, 49.487],
+ [6.5451, 49.44384],
+ [6.60639, 49.37868],
+ [6.60497, 49.33739],
+ [6.61627, 49.31869],
+ [6.67013, 49.29269],
+ [6.72996, 49.22917],
+ [6.74328, 49.19086],
+ [6.76026, 49.17752],
+ [6.80904, 49.17284],
+ [6.82473, 49.17826],
+ [6.83093, 49.19366],
+ [6.82982, 49.21802],
+ [6.85119, 49.23136],
+ [6.88453, 49.2239],
+ [6.89322, 49.22389],
+ [6.93753, 49.23369],
+ [7.04055, 49.19794],
+ [7.0463, 49.17503],
+ [7.05478, 49.16313],
+ [7.06908, 49.16018],
+ [7.10494, 49.16634],
+ [7.14315, 49.14159],
+ [7.1535, 49.13839],
+ [7.28683, 49.13488],
+ [7.29893, 49.13856],
+ [7.36095, 49.18259],
+ [7.45012, 49.19517],
+ [7.50113, 49.17672],
+ [7.54379, 49.10572],
+ [7.5579, 49.09626],
+ [7.6296, 49.08527],
+ [7.64722, 49.06722],
+ [7.6612, 49.06119],
+ [7.75401, 49.05963],
+ [7.76073, 49.06067],
+ [7.80291, 49.07489],
+ [7.85525, 49.05329],
+ [7.8673, 49.05227],
+ [7.93826, 49.06832],
+ [8.08069, 49.00688],
+ [8.2225, 48.98787],
+ [8.23704, 48.97683],
+ [8.23589, 48.95817],
+ [8.20888, 48.94863],
+ [8.20089, 48.94339],
+ [8.15824, 48.89753],
+ [8.10087, 48.7993],
+ [7.99071, 48.74478],
+ [7.98534, 48.7409],
+ [7.90422, 48.65865],
+ [7.85605, 48.63606],
+ [7.8484, 48.62977],
+ [7.81842, 48.58883],
+ [7.81456, 48.57704],
+ [7.81449, 48.50968],
+ [7.78547, 48.48337],
+ [7.78055, 48.47652],
+ [7.74506, 48.39484],
+ [7.74357, 48.38427],
+ [7.75159, 48.32322],
+ [7.71085, 48.29841],
+ [7.70241, 48.28803],
+ [7.67661, 48.21555],
+ [7.59605, 48.11698],
+ [7.59165, 48.10648],
+ [7.58522, 48.04694],
+ [7.59127, 48.03035],
+ [7.62437, 47.99865],
+ [7.63205, 47.97081],
+ [7.57554, 47.87436],
+ [7.5728, 47.86435],
+ [7.57267, 47.83631],
+ [7.54581, 47.78793],
+ [7.54418, 47.77232],
+ [7.55758, 47.72899],
+ [7.53526, 47.6989],
+ [7.53136, 47.68564],
+ [7.537, 47.67302],
+ [7.60016, 47.60822],
+ [7.58967, 47.56755],
+ [7.55424, 47.55128],
+ [7.54511, 47.54283],
+ [7.51256, 47.48439],
+ [7.38747, 47.42111],
+ [7.32653, 47.4273],
+ [7.24435, 47.40939],
+ [7.16708, 47.4335],
+ [7.15212, 47.47612],
+ [7.14279, 47.48707],
+ [7.12853, 47.48893],
+ [7.0801, 47.47718],
+ [7.03557, 47.48695],
+ [7.02102, 47.48458],
+ [7.01205, 47.47287],
+ [7.003, 47.44095],
+ [6.9551, 47.40808],
+ [6.94716, 47.39698],
+ [6.94818, 47.38337],
+ [6.95769, 47.37359],
+ [6.97126, 47.37218],
+ [7.018, 47.38386],
+ [7.05623, 47.37035],
+ [7.07007, 47.35005],
+ [7.05958, 47.32257],
+ [6.97424, 47.27856],
+ [6.96347, 47.26233],
+ [6.96134, 47.23479],
+ [6.89443, 47.19393],
+ [6.88913, 47.18922],
+ [6.85545, 47.14636],
+ [6.76907, 47.10751],
+ [6.76011, 47.09953],
+ [6.72561, 47.0418],
+ [6.62355, 46.9811],
+ [6.4812, 46.9445],
+ [6.46892, 46.93522],
+ [6.46686, 46.91997],
+ [6.47548, 46.88771],
+ [6.4535, 46.8239],
+ [6.45644, 46.80534],
+ [6.46722, 46.79104],
+ [6.46098, 46.76887],
+ [6.15817, 46.59343],
+ [6.14872, 46.58069],
+ [6.15152, 46.56508],
+ [6.16549, 46.54399],
+ [6.15811, 46.52456],
+ [6.10174, 46.46979],
+ [6.09572, 46.45418],
+ [6.09704, 46.43317],
+ [6.10829, 46.41643],
+ [6.16622, 46.38839],
+ [6.17817, 46.36922],
+ [6.13748, 46.31297],
+ [6.13371, 46.30227],
+ [6.13038, 46.23737],
+ [6.1103, 46.22344],
+ [6.08865, 46.23081],
+ [6.07717, 46.23123],
+ [6.01857, 46.21601],
+ [6.00681, 46.20752],
+ [6.00388, 46.19332],
+ [6.00787, 46.16977],
+ [6.01783, 46.15564],
+ [6.03509, 46.15456],
+ [6.05564, 46.16288],
+ [6.12468, 46.15415],
+ [6.13778, 46.15702],
+ [6.24026, 46.22094],
+ [6.24906, 46.23299],
+ [6.24707, 46.24777],
+ [6.21148, 46.31057],
+ [6.21219, 46.32485],
+ [6.23946, 46.36705],
+ [6.31648, 46.41557],
+ [6.41083, 46.42495],
+ [6.41748, 46.42682],
+ [6.50498, 46.46871],
+ [6.63047, 46.47435],
+ [6.74665, 46.45695],
+ [6.82244, 46.42925],
+ [6.81832, 46.38181],
+ [6.80484, 46.36179],
+ [6.80189, 46.34639],
+ [6.81095, 46.33359],
+ [6.86491, 46.30038],
+ [6.87504, 46.28007],
+ [6.86092, 46.2439],
+ [6.82698, 46.21188],
+ [6.82075, 46.19862],
+ [6.81863, 46.16592],
+ [6.82259, 46.15261],
+ [6.83427, 46.14509],
+ [6.90382, 46.12971],
+ [6.90491, 46.09595],
+ [6.90932, 46.08406],
+ [6.92001, 46.07721],
+ [6.94898, 46.0699],
+ [7.01556, 46.00883],
+ [7.05191, 45.93066],
+ [7.04533, 45.92217],
+ [7.04497, 45.92064],
+ [7.04394, 45.92036],
+ [6.99582, 45.85822],
+ [6.94097, 45.83551],
+ [6.84376, 45.82387],
+ [6.83102, 45.81711],
+ [6.82614, 45.80353],
+ [6.82787, 45.73217],
+ [6.83174, 45.72082],
+ [6.8414, 45.71373],
+ [6.90729, 45.69124],
+ [6.92419, 45.66935],
+ [6.94247, 45.66172],
+ [6.97131, 45.66528],
+ [7.00597, 45.64945],
+ [7.01151, 45.63652],
+ [6.9978, 45.60877],
+ [6.99643, 45.59465],
+ [7.0158, 45.52354],
+ [7.02774, 45.5102],
+ [7.1072, 45.47877],
+ [7.1228, 45.44924],
+ [7.13304, 45.44001],
+ [7.1856, 45.41894],
+ [7.19515, 45.40409],
+ [7.17075, 45.35069],
+ [7.14232, 45.32298],
+ [7.13649, 45.30576],
+ [7.14458, 45.25048],
+ [7.08417, 45.20279],
+ [6.99279, 45.19823],
+ [6.98106, 45.19368],
+ [6.90009, 45.12689],
+ [6.85843, 45.11699],
+ [6.78283, 45.14228],
+ [6.77056, 45.14242],
+ [6.67751, 45.11356],
+ [6.6653, 45.10289],
+ [6.66501, 45.08667],
+ [6.68237, 45.04558],
+ [6.69602, 45.03395],
+ [6.75744, 45.01884],
+ [6.78375, 44.9146],
+ [6.7942, 44.90161],
+ [6.86698, 44.86519],
+ [6.8798, 44.86346],
+ [6.93633, 44.87461],
+ [7.01795, 44.84402],
+ [7.03453, 44.82282],
+ [7.03711, 44.75009],
+ [7.0496, 44.73226],
+ [7.07224, 44.72311],
+ [7.08651, 44.6968],
+ [7.08666, 44.68085],
+ [7.07671, 44.67134],
+ [6.99007, 44.67203],
+ [6.97413, 44.66431],
+ [6.97056, 44.64696],
+ [6.97819, 44.61784],
+ [6.94659, 44.57124],
+ [6.88235, 44.53479],
+ [6.87233, 44.5195],
+ [6.87892, 44.50245],
+ [6.95894, 44.43129],
+ [6.95872, 44.42908],
+ [6.92167, 44.41436],
+ [6.91223, 44.40659],
+ [6.90907, 44.39477],
+ [6.90972, 44.38195],
+ [6.91637, 44.36804],
+ [6.99909, 44.29414],
+ [7.01181, 44.256],
+ [7.01983, 44.24558],
+ [7.03259, 44.2424],
+ [7.07312, 44.2461],
+ [7.1651, 44.22112],
+ [7.24533, 44.18544],
+ [7.26053, 44.16682],
+ [7.27537, 44.15947],
+ [7.33878, 44.1574],
+ [7.36278, 44.13834],
+ [7.37776, 44.13416],
+ [7.56283, 44.15792],
+ [7.5642, 44.15836],
+ [7.56478, 44.15817],
+ [7.60548, 44.1634],
+ [7.6162, 44.16827],
+ [7.63989, 44.18928],
+ [7.68608, 44.1861],
+ [7.69422, 44.17795],
+ [7.68937, 44.13869],
+ [7.69445, 44.12276],
+ [7.72786, 44.08615],
+ [7.72403, 44.05704],
+ [7.68603, 44.02371],
+ [7.68077, 44.0164],
+ [7.66016, 43.9672],
+ [7.59624, 43.94466],
+ [7.58419, 43.93287],
+ [7.56858, 43.89159],
+ [7.5271, 43.87434],
+ [7.51649, 43.86397],
+ [7.51594, 43.84915],
+ [7.53622, 43.79234],
+ [9.8, 43.1],
+ [9.63227, 41.43244],
+ [9.36968, 41.35052],
+ [9.27311, 41.29196],
+ [8.94186, 41.27688],
+ [5.8, 41.64],
+ [3.17358, 42.41768],
+ [3.16081, 42.42757],
+ [3.0944, 42.41457],
+ [3.03402, 42.45331],
+ [3.02214, 42.45645],
+ [2.87822, 42.4487],
+ [2.87019, 42.44653],
+ [2.78424, 42.40256],
+ [2.7413, 42.41128],
+ [2.72928, 42.40998],
+ [2.69331, 42.39417],
+ [2.68378, 42.3854],
+ [2.68162, 42.37263],
+ [2.68585, 42.34679],
+ [2.66719, 42.33008],
+ [2.58106, 42.34418],
+ [2.56777, 42.34173],
+ [2.5338, 42.32197],
+ [2.47795, 42.32986],
+ [2.41933, 42.37658],
+ [2.41222, 42.38021],
+ [2.26719, 42.42055],
+ [2.25973, 42.42117],
+ [2.20694, 42.41558],
+ [2.20653, 42.41526],
+ [2.20526, 42.41541],
+ [2.16028, 42.41065],
+ [2.14881, 42.40545],
+ [2.09393, 42.35474],
+ [2.00861, 42.33818],
+ [1.965, 42.36473],
+ [1.93076, 42.42442],
+ [1.92089, 42.43302],
+ [1.88467, 42.44761],
+ [1.88459, 42.44762],
+ [1.88444, 42.4477],
+ [1.82774, 42.47056],
+ [1.72567, 42.48452],
+ [1.71561, 42.50125],
+ [1.7272, 42.56103],
+ [1.72479, 42.57499],
+ [1.71011, 42.59992],
+ [1.69377, 42.60975],
+ [1.60283, 42.61382],
+ [1.56069, 42.6392],
+ [1.54636, 42.64166],
+ [1.50444, 42.6331],
+ [1.4921, 42.62502],
+ [1.47238, 42.59703],
+ [1.43792, 42.59264],
+ [1.41936, 42.60643],
+ [1.38032, 42.67415],
+ [1.37335, 42.68127],
+ [1.33313, 42.70563],
+ [1.32364, 42.7085],
+ [1.23221, 42.71248],
+ [1.16554, 42.69928],
+ [1.08546, 42.76635],
+ [1.07564, 42.77079],
+ [0.95937, 42.78852],
+ [0.95073, 42.78794],
+ [0.92265, 42.7797],
+ [0.84606, 42.8157],
+ [0.71511, 42.8464],
+ [0.70017, 42.84402],
+ [0.69117, 42.83186],
+ [0.67409, 42.76479],
+ [0.67474, 42.75286],
+ [0.69192, 42.70684],
+ [0.669, 42.67901],
+ [0.43024, 42.67863],
+ [0.3715, 42.70308],
+ [0.35954, 42.70415],
+ [0.34912, 42.69817],
+ [0.32567, 42.67274],
+ [0.29571, 42.66388],
+ [0.24594, 42.70175],
+ [0.23972, 42.70494],
+ [0.18967, 42.72039],
+ [0.17919, 42.72075],
+ [-0.01993, 42.67389],
+ [-0.06726, 42.6848],
+ [-0.16949, 42.77157],
+ [-0.29987, 42.82697],
+ [-0.31683, 42.82635],
+ [-0.39208, 42.78766],
+ [-0.44354, 42.78453],
+ [-0.48842, 42.80255],
+ [-0.50868, 42.79935],
+ [-0.54499, 42.76906],
+ [-0.56721, 42.76937],
+ [-0.67446, 42.86392],
+ [-0.68094, 42.86775],
+ [-0.73372, 42.88666],
+ [-0.7476, 42.93879],
+ [-0.75711, 42.95107],
+ [-0.77253, 42.95284],
+ [-0.82114, 42.93865],
+ [-0.94508, 42.94192],
+ [-1.02313, 42.98206],
+ [-1.10852, 43.00409],
+ [-1.1156, 43.00461],
+ [-1.14775, 43.00124],
+ [-1.15845, 43.01452],
+ [-1.16736, 43.02083],
+ [-1.21622, 43.0381],
+ [-1.22612, 43.03898],
+ [-1.26236, 43.03303],
+ [-1.30643, 43.05531],
+ [-1.31992, 43.05696],
+ [-1.33135, 43.0496],
+ [-1.3542, 43.0197],
+ [-1.43868, 43.03371],
+ [-1.4775, 43.06889],
+ [-1.48311, 43.08561],
+ [-1.47641, 43.10248],
+ [-1.43479, 43.13087],
+ [-1.42732, 43.1404],
+ [-1.39411, 43.22935],
+ [-1.39531, 43.24596],
+ [-1.40868, 43.25591],
+ [-1.52629, 43.28099],
+ [-1.54626, 43.2737],
+ [-1.57149, 43.2412],
+ [-1.61053, 43.24223],
+ [-1.65, 43.29323],
+ [-1.66953, 43.30065],
+ [-1.73359, 43.28856],
+ [-1.75606, 43.31966],
+ [-1.76297, 43.32565],
+ [-1.79156, 43.34067],
+ [-1.80099, 43.37017],
+ [-1.78509, 43.39037],
+ [-1.7835, 43.39686],
+ [-2.7, 43.9]
+ ]
+ ],
+ "terms_url": "http://www.sandre.eaufrance.fr/actualite/la-bd-carthage-en-licence-ouverte-open-licence",
+ "terms_text": "Tiles © cquest@Openstreetmap France, data © Onema - IGN, LO/OL",
+ "description": "Réseau hydrographique: cours et plans d'eau et POI",
+ "overlay": true
+ },
+ {
+ "id": "fr.ign.bdortho",
+ "name": "BDOrtho IGN",
+ "type": "tms",
+ "template": "https://proxy-ign.openstreetmap.fr/94GjiyqD/bdortho/{zoom}/{x}/{y}.jpg",
+ "scaleExtent": [2, 21],
+ "polygon": [
+ [
+ [-2.7, 43.9],
+ [-6.3, 48.98],
+ [-2.25, 50.09],
+ [1.31, 50.88],
+ [2.35816, 51.32937],
+ [2.5488, 51.09759],
+ [2.57048, 51.07409],
+ [2.58741, 51.01763],
+ [2.59845, 51.0051],
+ [2.61558, 50.99749],
+ [2.63986, 50.95766],
+ [2.64225, 50.94578],
+ [2.62452, 50.9256],
+ [2.61962, 50.91067],
+ [2.62396, 50.86071],
+ [2.62781, 50.85054],
+ [2.63786, 50.83696],
+ [2.6511, 50.82906],
+ [2.73267, 50.81738],
+ [2.79995, 50.73795],
+ [2.81655, 50.73092],
+ [2.85265, 50.73335],
+ [2.89072, 50.7162],
+ [2.90492, 50.71536],
+ [2.9161, 50.72418],
+ [2.93508, 50.75592],
+ [3.00718, 50.78377],
+ [3.08218, 50.78749],
+ [3.09244, 50.79092],
+ [3.11412, 50.80566],
+ [3.14877, 50.80195],
+ [3.2154, 50.73111],
+ [3.22149, 50.7267],
+ [3.27051, 50.70375],
+ [3.27545, 50.67757],
+ [3.26576, 50.6604],
+ [3.26588, 50.64054],
+ [3.28922, 50.60028],
+ [3.29219, 50.55037],
+ [3.3056, 50.53267],
+ [3.37551, 50.50839],
+ [3.3898, 50.50884],
+ [3.4748, 50.54445],
+ [3.52173, 50.53459],
+ [3.53266, 50.51873],
+ [3.54779, 50.51012],
+ [3.61523, 50.50558],
+ [3.67378, 50.45642],
+ [3.68415, 50.35277],
+ [3.6901, 50.34044],
+ [3.70258, 50.33482],
+ [3.71576, 50.33854],
+ [3.74935, 50.36279],
+ [3.84109, 50.36558],
+ [3.90189, 50.3436],
+ [3.91317, 50.34291],
+ [4.02672, 50.36904],
+ [4.13761, 50.29984],
+ [4.14388, 50.29727],
+ [4.21444, 50.28167],
+ [4.22904, 50.26664],
+ [4.23078, 50.25233],
+ [4.17084, 50.18579],
+ [4.16601, 50.16888],
+ [4.1764, 50.1547],
+ [4.21195, 50.13602],
+ [4.24074, 50.07102],
+ [4.23193, 50.05551],
+ [4.18164, 50.03436],
+ [4.17177, 50.02537],
+ [4.16976, 50.01217],
+ [4.1765, 50.00065],
+ [4.20633, 49.97546],
+ [4.22164, 49.97089],
+ [4.30877, 49.98145],
+ [4.44542, 49.9523],
+ [4.45469, 49.95251],
+ [4.6581, 50.00609],
+ [4.66936, 50.01392],
+ [4.67293, 50.02716],
+ [4.66924, 50.06972],
+ [4.69517, 50.10472],
+ [4.83123, 50.17941],
+ [4.8815, 50.16436],
+ [4.90479, 50.14451],
+ [4.90426, 50.12639],
+ [4.88076, 50.0815],
+ [4.86277, 50.0745],
+ [4.85104, 50.06216],
+ [4.84331, 50.03884],
+ [4.84331, 50.03883],
+ [4.8433, 50.03881],
+ [4.82678, 49.989],
+ [4.82662, 49.97692],
+ [4.83343, 49.96696],
+ [4.89654, 49.91753],
+ [4.89755, 49.89424],
+ [4.87913, 49.86942],
+ [4.87625, 49.85111],
+ [4.88924, 49.81266],
+ [4.89769, 49.80204],
+ [4.91098, 49.79926],
+ [4.99534, 49.81116],
+ [5.01867, 49.79272],
+ [5.02686, 49.78886],
+ [5.09944, 49.77323],
+ [5.13458, 49.73462],
+ [5.1412, 49.72984],
+ [5.18761, 49.70906],
+ [5.19602, 49.70732],
+ [5.28157, 49.70836],
+ [5.33363, 49.67308],
+ [5.344, 49.65049],
+ [5.3544, 49.64041],
+ [5.43141, 49.60791],
+ [5.48205, 49.52815],
+ [5.49294, 49.51979],
+ [5.50666, 49.52042],
+ [5.55401, 49.54025],
+ [5.59311, 49.53424],
+ [5.6076, 49.53761],
+ [5.641, 49.56095],
+ [5.70676, 49.55267],
+ [5.71578, 49.55361],
+ [5.77526, 49.57414],
+ [5.8399, 49.55321],
+ [5.86126, 49.52038],
+ [5.876, 49.5114],
+ [5.97516, 49.50129],
+ [5.99801, 49.47317],
+ [6.01627, 49.46597],
+ [6.08635, 49.47562],
+ [6.09319, 49.47787],
+ [6.17397, 49.52187],
+ [6.24643, 49.52511],
+ [6.334, 49.48235],
+ [6.34423, 49.48037],
+ [6.43515, 49.487],
+ [6.5451, 49.44384],
+ [6.60639, 49.37868],
+ [6.60497, 49.33739],
+ [6.61627, 49.31869],
+ [6.67013, 49.29269],
+ [6.72996, 49.22917],
+ [6.74328, 49.19086],
+ [6.76026, 49.17752],
+ [6.80904, 49.17284],
+ [6.82473, 49.17826],
+ [6.83093, 49.19366],
+ [6.82982, 49.21802],
+ [6.85119, 49.23136],
+ [6.88453, 49.2239],
+ [6.89322, 49.22389],
+ [6.93753, 49.23369],
+ [7.04055, 49.19794],
+ [7.0463, 49.17503],
+ [7.05478, 49.16313],
+ [7.06908, 49.16018],
+ [7.10494, 49.16634],
+ [7.14315, 49.14159],
+ [7.1535, 49.13839],
+ [7.28683, 49.13488],
+ [7.29893, 49.13856],
+ [7.36095, 49.18259],
+ [7.45012, 49.19517],
+ [7.50113, 49.17672],
+ [7.54379, 49.10572],
+ [7.5579, 49.09626],
+ [7.6296, 49.08527],
+ [7.64722, 49.06722],
+ [7.6612, 49.06119],
+ [7.75401, 49.05963],
+ [7.76073, 49.06067],
+ [7.80291, 49.07489],
+ [7.85525, 49.05329],
+ [7.8673, 49.05227],
+ [7.93826, 49.06832],
+ [8.08069, 49.00688],
+ [8.2225, 48.98787],
+ [8.23704, 48.97683],
+ [8.23589, 48.95817],
+ [8.20888, 48.94863],
+ [8.20089, 48.94339],
+ [8.15824, 48.89753],
+ [8.10087, 48.7993],
+ [7.99071, 48.74478],
+ [7.98534, 48.7409],
+ [7.90422, 48.65865],
+ [7.85605, 48.63606],
+ [7.8484, 48.62977],
+ [7.81842, 48.58883],
+ [7.81456, 48.57704],
+ [7.81449, 48.50968],
+ [7.78547, 48.48337],
+ [7.78055, 48.47652],
+ [7.74506, 48.39484],
+ [7.74357, 48.38427],
+ [7.75159, 48.32322],
+ [7.71085, 48.29841],
+ [7.70241, 48.28803],
+ [7.67661, 48.21555],
+ [7.59605, 48.11698],
+ [7.59165, 48.10648],
+ [7.58522, 48.04694],
+ [7.59127, 48.03035],
+ [7.62437, 47.99865],
+ [7.63205, 47.97081],
+ [7.57554, 47.87436],
+ [7.5728, 47.86435],
+ [7.57267, 47.83631],
+ [7.54581, 47.78793],
+ [7.54418, 47.77232],
+ [7.55758, 47.72899],
+ [7.53526, 47.6989],
+ [7.53136, 47.68564],
+ [7.537, 47.67302],
+ [7.60016, 47.60822],
+ [7.58967, 47.56755],
+ [7.55424, 47.55128],
+ [7.54511, 47.54283],
+ [7.51256, 47.48439],
+ [7.38747, 47.42111],
+ [7.32653, 47.4273],
+ [7.24435, 47.40939],
+ [7.16708, 47.4335],
+ [7.15212, 47.47612],
+ [7.14279, 47.48707],
+ [7.12853, 47.48893],
+ [7.0801, 47.47718],
+ [7.03557, 47.48695],
+ [7.02102, 47.48458],
+ [7.01205, 47.47287],
+ [7.003, 47.44095],
+ [6.9551, 47.40808],
+ [6.94716, 47.39698],
+ [6.94818, 47.38337],
+ [6.95769, 47.37359],
+ [6.97126, 47.37218],
+ [7.018, 47.38386],
+ [7.05623, 47.37035],
+ [7.07007, 47.35005],
+ [7.05958, 47.32257],
+ [6.97424, 47.27856],
+ [6.96347, 47.26233],
+ [6.96134, 47.23479],
+ [6.89443, 47.19393],
+ [6.88913, 47.18922],
+ [6.85545, 47.14636],
+ [6.76907, 47.10751],
+ [6.76011, 47.09953],
+ [6.72561, 47.0418],
+ [6.62355, 46.9811],
+ [6.4812, 46.9445],
+ [6.46892, 46.93522],
+ [6.46686, 46.91997],
+ [6.47548, 46.88771],
+ [6.4535, 46.8239],
+ [6.45644, 46.80534],
+ [6.46722, 46.79104],
+ [6.46098, 46.76887],
+ [6.15817, 46.59343],
+ [6.14872, 46.58069],
+ [6.15152, 46.56508],
+ [6.16549, 46.54399],
+ [6.15811, 46.52456],
+ [6.10174, 46.46979],
+ [6.09572, 46.45418],
+ [6.09704, 46.43317],
+ [6.10829, 46.41643],
+ [6.16622, 46.38839],
+ [6.17817, 46.36922],
+ [6.13748, 46.31297],
+ [6.13371, 46.30227],
+ [6.13038, 46.23737],
+ [6.1103, 46.22344],
+ [6.08865, 46.23081],
+ [6.07717, 46.23123],
+ [6.01857, 46.21601],
+ [6.00681, 46.20752],
+ [6.00388, 46.19332],
+ [6.00787, 46.16977],
+ [6.01783, 46.15564],
+ [6.03509, 46.15456],
+ [6.05564, 46.16288],
+ [6.12468, 46.15415],
+ [6.13778, 46.15702],
+ [6.24026, 46.22094],
+ [6.24906, 46.23299],
+ [6.24707, 46.24777],
+ [6.21148, 46.31057],
+ [6.21219, 46.32485],
+ [6.23946, 46.36705],
+ [6.31648, 46.41557],
+ [6.41083, 46.42495],
+ [6.41748, 46.42682],
+ [6.50498, 46.46871],
+ [6.63047, 46.47435],
+ [6.74665, 46.45695],
+ [6.82244, 46.42925],
+ [6.81832, 46.38181],
+ [6.80484, 46.36179],
+ [6.80189, 46.34639],
+ [6.81095, 46.33359],
+ [6.86491, 46.30038],
+ [6.87504, 46.28007],
+ [6.86092, 46.2439],
+ [6.82698, 46.21188],
+ [6.82075, 46.19862],
+ [6.81863, 46.16592],
+ [6.82259, 46.15261],
+ [6.83427, 46.14509],
+ [6.90382, 46.12971],
+ [6.90491, 46.09595],
+ [6.90932, 46.08406],
+ [6.92001, 46.07721],
+ [6.94898, 46.0699],
+ [7.01556, 46.00883],
+ [7.05191, 45.93066],
+ [7.04533, 45.92217],
+ [7.04497, 45.92064],
+ [7.04394, 45.92036],
+ [6.99582, 45.85822],
+ [6.94097, 45.83551],
+ [6.84376, 45.82387],
+ [6.83102, 45.81711],
+ [6.82614, 45.80353],
+ [6.82787, 45.73217],
+ [6.83174, 45.72082],
+ [6.8414, 45.71373],
+ [6.90729, 45.69124],
+ [6.92419, 45.66935],
+ [6.94247, 45.66172],
+ [6.97131, 45.66528],
+ [7.00597, 45.64945],
+ [7.01151, 45.63652],
+ [6.9978, 45.60877],
+ [6.99643, 45.59465],
+ [7.0158, 45.52354],
+ [7.02774, 45.5102],
+ [7.1072, 45.47877],
+ [7.1228, 45.44924],
+ [7.13304, 45.44001],
+ [7.1856, 45.41894],
+ [7.19515, 45.40409],
+ [7.17075, 45.35069],
+ [7.14232, 45.32298],
+ [7.13649, 45.30576],
+ [7.14458, 45.25048],
+ [7.08417, 45.20279],
+ [6.99279, 45.19823],
+ [6.98106, 45.19368],
+ [6.90009, 45.12689],
+ [6.85843, 45.11699],
+ [6.78283, 45.14228],
+ [6.77056, 45.14242],
+ [6.67751, 45.11356],
+ [6.6653, 45.10289],
+ [6.66501, 45.08667],
+ [6.68237, 45.04558],
+ [6.69602, 45.03395],
+ [6.75744, 45.01884],
+ [6.78375, 44.9146],
+ [6.7942, 44.90161],
+ [6.86698, 44.86519],
+ [6.8798, 44.86346],
+ [6.93633, 44.87461],
+ [7.01795, 44.84402],
+ [7.03453, 44.82282],
+ [7.03711, 44.75009],
+ [7.0496, 44.73226],
+ [7.07224, 44.72311],
+ [7.08651, 44.6968],
+ [7.08666, 44.68085],
+ [7.07671, 44.67134],
+ [6.99007, 44.67203],
+ [6.97413, 44.66431],
+ [6.97056, 44.64696],
+ [6.97819, 44.61784],
+ [6.94659, 44.57124],
+ [6.88235, 44.53479],
+ [6.87233, 44.5195],
+ [6.87892, 44.50245],
+ [6.95894, 44.43129],
+ [6.95872, 44.42908],
+ [6.92167, 44.41436],
+ [6.91223, 44.40659],
+ [6.90907, 44.39477],
+ [6.90972, 44.38195],
+ [6.91637, 44.36804],
+ [6.99909, 44.29414],
+ [7.01181, 44.256],
+ [7.01983, 44.24558],
+ [7.03259, 44.2424],
+ [7.07312, 44.2461],
+ [7.1651, 44.22112],
+ [7.24533, 44.18544],
+ [7.26053, 44.16682],
+ [7.27537, 44.15947],
+ [7.33878, 44.1574],
+ [7.36278, 44.13834],
+ [7.37776, 44.13416],
+ [7.56283, 44.15792],
+ [7.5642, 44.15836],
+ [7.56478, 44.15817],
+ [7.60548, 44.1634],
+ [7.6162, 44.16827],
+ [7.63989, 44.18928],
+ [7.68608, 44.1861],
+ [7.69422, 44.17795],
+ [7.68937, 44.13869],
+ [7.69445, 44.12276],
+ [7.72786, 44.08615],
+ [7.72403, 44.05704],
+ [7.68603, 44.02371],
+ [7.68077, 44.0164],
+ [7.66016, 43.9672],
+ [7.59624, 43.94466],
+ [7.58419, 43.93287],
+ [7.56858, 43.89159],
+ [7.5271, 43.87434],
+ [7.51649, 43.86397],
+ [7.51594, 43.84915],
+ [7.53622, 43.79234],
+ [9.8, 43.1],
+ [9.63227, 41.43244],
+ [9.36968, 41.35052],
+ [9.27311, 41.29196],
+ [8.94186, 41.27688],
+ [5.8, 41.64],
+ [3.17358, 42.41768],
+ [3.16081, 42.42757],
+ [3.0944, 42.41457],
+ [3.03402, 42.45331],
+ [3.02214, 42.45645],
+ [2.87822, 42.4487],
+ [2.87019, 42.44653],
+ [2.78424, 42.40256],
+ [2.7413, 42.41128],
+ [2.72928, 42.40998],
+ [2.69331, 42.39417],
+ [2.68378, 42.3854],
+ [2.68162, 42.37263],
+ [2.68585, 42.34679],
+ [2.66719, 42.33008],
+ [2.58106, 42.34418],
+ [2.56777, 42.34173],
+ [2.5338, 42.32197],
+ [2.47795, 42.32986],
+ [2.41933, 42.37658],
+ [2.41222, 42.38021],
+ [2.26719, 42.42055],
+ [2.25973, 42.42117],
+ [2.20694, 42.41558],
+ [2.20653, 42.41526],
+ [2.20526, 42.41541],
+ [2.16028, 42.41065],
+ [2.14881, 42.40545],
+ [2.09393, 42.35474],
+ [2.00861, 42.33818],
+ [1.965, 42.36473],
+ [1.93076, 42.42442],
+ [1.92089, 42.43302],
+ [1.88467, 42.44761],
+ [1.88459, 42.44762],
+ [1.88444, 42.4477],
+ [1.82774, 42.47056],
+ [1.72567, 42.48452],
+ [1.71561, 42.50125],
+ [1.7272, 42.56103],
+ [1.72479, 42.57499],
+ [1.71011, 42.59992],
+ [1.69377, 42.60975],
+ [1.60283, 42.61382],
+ [1.56069, 42.6392],
+ [1.54636, 42.64166],
+ [1.50444, 42.6331],
+ [1.4921, 42.62502],
+ [1.47238, 42.59703],
+ [1.43792, 42.59264],
+ [1.41936, 42.60643],
+ [1.38032, 42.67415],
+ [1.37335, 42.68127],
+ [1.33313, 42.70563],
+ [1.32364, 42.7085],
+ [1.23221, 42.71248],
+ [1.16554, 42.69928],
+ [1.08546, 42.76635],
+ [1.07564, 42.77079],
+ [0.95937, 42.78852],
+ [0.95073, 42.78794],
+ [0.92265, 42.7797],
+ [0.84606, 42.8157],
+ [0.71511, 42.8464],
+ [0.70017, 42.84402],
+ [0.69117, 42.83186],
+ [0.67409, 42.76479],
+ [0.67474, 42.75286],
+ [0.69192, 42.70684],
+ [0.669, 42.67901],
+ [0.43024, 42.67863],
+ [0.3715, 42.70308],
+ [0.35954, 42.70415],
+ [0.34912, 42.69817],
+ [0.32567, 42.67274],
+ [0.29571, 42.66388],
+ [0.24594, 42.70175],
+ [0.23972, 42.70494],
+ [0.18967, 42.72039],
+ [0.17919, 42.72075],
+ [-0.01993, 42.67389],
+ [-0.06726, 42.6848],
+ [-0.16949, 42.77157],
+ [-0.29987, 42.82697],
+ [-0.31683, 42.82635],
+ [-0.39208, 42.78766],
+ [-0.44354, 42.78453],
+ [-0.48842, 42.80255],
+ [-0.50868, 42.79935],
+ [-0.54499, 42.76906],
+ [-0.56721, 42.76937],
+ [-0.67446, 42.86392],
+ [-0.68094, 42.86775],
+ [-0.73372, 42.88666],
+ [-0.7476, 42.93879],
+ [-0.75711, 42.95107],
+ [-0.77253, 42.95284],
+ [-0.82114, 42.93865],
+ [-0.94508, 42.94192],
+ [-1.02313, 42.98206],
+ [-1.10852, 43.00409],
+ [-1.1156, 43.00461],
+ [-1.14775, 43.00124],
+ [-1.15845, 43.01452],
+ [-1.16736, 43.02083],
+ [-1.21622, 43.0381],
+ [-1.22612, 43.03898],
+ [-1.26236, 43.03303],
+ [-1.30643, 43.05531],
+ [-1.31992, 43.05696],
+ [-1.33135, 43.0496],
+ [-1.3542, 43.0197],
+ [-1.43868, 43.03371],
+ [-1.4775, 43.06889],
+ [-1.48311, 43.08561],
+ [-1.47641, 43.10248],
+ [-1.43479, 43.13087],
+ [-1.42732, 43.1404],
+ [-1.39411, 43.22935],
+ [-1.39531, 43.24596],
+ [-1.40868, 43.25591],
+ [-1.52629, 43.28099],
+ [-1.54626, 43.2737],
+ [-1.57149, 43.2412],
+ [-1.61053, 43.24223],
+ [-1.65, 43.29323],
+ [-1.66953, 43.30065],
+ [-1.73359, 43.28856],
+ [-1.75606, 43.31966],
+ [-1.76297, 43.32565],
+ [-1.79156, 43.34067],
+ [-1.80099, 43.37017],
+ [-1.78509, 43.39037],
+ [-1.7835, 43.39686],
+ [-2.7, 43.9]
+ ],
+ [
+ [-61.27501, 14.90218],
+ [-60.72368, 14.90101],
+ [-60.72489, 14.36686],
+ [-61.27622, 14.36803],
+ [-61.27501, 14.90218]
+ ],
+ [
+ [-61.92802, 16.58618],
+ [-61.92686, 15.7394],
+ [-60.88128, 15.74072],
+ [-60.88243, 16.5875],
+ [-61.92802, 16.58618]
+ ],
+ [
+ [-53.89344, 6.004],
+ [-52.46522, 5.4465],
+ [-51.52039, 4.51072],
+ [-51.53687, 4.11633],
+ [-52.2345, 3.10213],
+ [-52.641, 2.25162],
+ [-52.92664, 2.07597],
+ [-53.72864, 2.21869],
+ [-54.20106, 2.03205],
+ [-54.8053, 2.27358],
+ [-54.31092, 2.80589],
+ [-54.31641, 3.20085],
+ [-54.12415, 3.46408],
+ [-54.12964, 3.59567],
+ [-54.42078, 4.00127],
+ [-54.58008, 4.95962],
+ [-53.89344, 6.004]
+ ],
+ [
+ [55.08816, -20.77935],
+ [55.95959, -20.77281],
+ [55.96576, -21.49],
+ [55.09434, -21.49651],
+ [55.08816, -20.77935]
+ ],
+ [
+ [44.92054, -12.57363],
+ [45.34826, -12.57029],
+ [45.35274, -13.1163],
+ [44.92502, -13.11963],
+ [44.92054, -12.57363]
+ ],
+ [
+ [-178.57728, -14.70582],
+ [-178.42568, -14.00334],
+ [-176.34156, -12.83858],
+ [-175.71534, -12.9189],
+ [-175.91858, -13.58726],
+ [-177.84638, -14.64983],
+ [-178.57728, -14.70582]
+ ]
+ ],
+ "terms_url": "https://openstreetmap.fr/bdortho",
+ "terms_text": "BDOrtho IGN",
+ "best": true,
+ "icon": "http://www.ign.fr/institut/sites/all/themes/ign_institut/logo.png"
+ },
+ {
+ "id": "Benin_cotonou_pleiade_2016",
+ "name": "Benin: Cotonou Pleiade 2016",
+ "type": "tms",
+ "template": "https://geoxxx.agrocampus-ouest.fr/owsifl/gwc/service/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=Benin:cotonou_pleiade_2016&STYLE=&FORMAT=image/jpeg&tileMatrixSet=EPSG:3857&tileMatrix=EPSG:3857:{zoom}&tileRow={y}&tileCol={x}",
+ "endDate": "2016-01-01T00:00:00.000Z",
+ "startDate": "2016-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 21],
+ "polygon": [
+ [
+ [2.31954, 6.55745],
+ [2.33645, 6.56024],
+ [2.36377, 6.56211],
+ [2.36738, 6.56068],
+ [2.37777, 6.5494],
+ [2.37779, 6.53485],
+ [2.36994, 6.49332],
+ [2.37038, 6.45527],
+ [2.36958, 6.45269],
+ [2.36188, 6.44177],
+ [2.35392, 6.40545],
+ [2.36749, 6.4015],
+ [2.39526, 6.40072],
+ [2.40128, 6.40374],
+ [2.40588, 6.40341],
+ [2.42046, 6.39383],
+ [2.42485, 6.39794],
+ [2.42949, 6.39887],
+ [2.43625, 6.39628],
+ [2.43958, 6.40042],
+ [2.44439, 6.40189],
+ [2.45376, 6.39899],
+ [2.47145, 6.39632],
+ [2.48162, 6.39106],
+ [2.49453, 6.3874],
+ [2.50893, 6.38888],
+ [2.50719, 6.39229],
+ [2.5012, 6.39162],
+ [2.4963, 6.39521],
+ [2.4951, 6.40123],
+ [2.49543, 6.40401],
+ [2.4983, 6.41022],
+ [2.50191, 6.41282],
+ [2.51087, 6.41321],
+ [2.52219, 6.40849],
+ [2.53352, 6.40517],
+ [2.5381, 6.40961],
+ [2.54111, 6.4109],
+ [2.54651, 6.41099],
+ [2.54654, 6.40651],
+ [2.57639, 6.40724],
+ [2.57642, 6.41177],
+ [2.58576, 6.41196],
+ [2.58868, 6.41095],
+ [2.60877, 6.39414],
+ [2.6257, 6.39488],
+ [2.64555, 6.39729],
+ [2.65039, 6.39339],
+ [2.65367, 6.36823],
+ [2.64312, 6.36659],
+ [2.61251, 6.36289],
+ [2.56868, 6.3607],
+ [2.54683, 6.36055],
+ [2.54687, 6.35546],
+ [2.50207, 6.35461],
+ [2.47064, 6.35596],
+ [2.46777, 6.35203],
+ [2.46423, 6.3502],
+ [2.45254, 6.35006],
+ [2.45113, 6.34813],
+ [2.44737, 6.34629],
+ [2.43757, 6.34654],
+ [2.43298, 6.33841],
+ [2.43016, 6.33707],
+ [2.42245, 6.33707],
+ [2.39236, 6.34115],
+ [2.39315, 6.34115],
+ [2.36528, 6.34445],
+ [2.35386, 6.3453],
+ [2.34377, 6.34458],
+ [2.34094, 6.34534],
+ [2.31086, 6.36567],
+ [2.28435, 6.37465],
+ [2.28147, 6.37762],
+ [2.27599, 6.39517],
+ [2.27612, 6.3982],
+ [2.31529, 6.49261],
+ [2.3158, 6.55307],
+ [2.31954, 6.55745]
+ ],
+ [
+ [1.69563, 6.25076],
+ [1.7001, 6.24712],
+ [1.70418, 6.24697],
+ [1.75875, 6.25836],
+ [1.77079, 6.25995],
+ [1.81712, 6.27161],
+ [1.84457, 6.27657],
+ [1.85768, 6.27945],
+ [1.88843, 6.28326],
+ [1.90482, 6.28595],
+ [1.90618, 6.29435],
+ [1.90083, 6.29721],
+ [1.89881, 6.29954],
+ [1.89404, 6.30085],
+ [1.89048, 6.2997],
+ [1.88748, 6.29636],
+ [1.88344, 6.29622],
+ [1.8697, 6.29227],
+ [1.8564, 6.29198],
+ [1.85207, 6.28675],
+ [1.84991, 6.28906],
+ [1.84691, 6.29203],
+ [1.84353, 6.29333],
+ [1.84041, 6.29315],
+ [1.83627, 6.29129],
+ [1.8341, 6.28733],
+ [1.83417, 6.2852],
+ [1.8323, 6.28456],
+ [1.82786, 6.28644],
+ [1.82182, 6.29084],
+ [1.81563, 6.28998],
+ [1.81211, 6.29143],
+ [1.80758, 6.29571],
+ [1.80472, 6.29693],
+ [1.80074, 6.2971],
+ [1.79776, 6.29612],
+ [1.79625, 6.29492],
+ [1.7949, 6.28965],
+ [1.79641, 6.28608],
+ [1.80098, 6.28338],
+ [1.79567, 6.28013],
+ [1.79156, 6.28174],
+ [1.78499, 6.28122],
+ [1.78092, 6.27753],
+ [1.77588, 6.2755],
+ [1.76745, 6.27696],
+ [1.75653, 6.27496],
+ [1.74833, 6.27239],
+ [1.74762, 6.27726],
+ [1.74572, 6.27938],
+ [1.73948, 6.27985],
+ [1.7368, 6.27761],
+ [1.73572, 6.27892],
+ [1.72902, 6.27911],
+ [1.72435, 6.27422],
+ [1.72449, 6.26786],
+ [1.72556, 6.26683],
+ [1.69934, 6.26159],
+ [1.69573, 6.25726],
+ [1.69563, 6.25076]
+ ]
+ ],
+ "best": true
+ },
+ {
+ "id": "Bing",
+ "name": "Bing aerial imagery",
+ "type": "bing",
+ "template": "https://www.bing.com/maps",
+ "scaleExtent": [0, 22],
+ "default": true,
+ "description": "Satellite and aerial imagery.",
+ "icon": "data:image/png;base64,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"
+ },
+ {
+ "id": "Bologna-Orthophoto-2017",
+ "name": "Bologna ortofoto 2017",
+ "type": "tms",
+ "template": "https://sitmappe.comune.bologna.it/tms/tileserver/Ortofoto2017/{zoom}/{x}/{y}.png",
+ "endDate": "2017-01-01T00:00:00.000Z",
+ "startDate": "2017-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 19],
+ "polygon": [
+ [
+ [11.24485, 44.555],
+ [11.23043, 44.5298],
+ [11.23215, 44.52442],
+ [11.23627, 44.52466],
+ [11.24176, 44.52246],
+ [11.23867, 44.51218],
+ [11.23386, 44.51071],
+ [11.2373, 44.50263],
+ [11.25069, 44.50189],
+ [11.24897, 44.49602],
+ [11.25755, 44.49724],
+ [11.25687, 44.49357],
+ [11.28262, 44.48842],
+ [11.29463, 44.48965],
+ [11.29738, 44.48328],
+ [11.2912, 44.4801],
+ [11.29292, 44.46074],
+ [11.28639, 44.45829],
+ [11.28193, 44.42593],
+ [11.2936, 44.42716],
+ [11.29463, 44.4328],
+ [11.31248, 44.42201],
+ [11.31695, 44.42103],
+ [11.33686, 44.42741],
+ [11.33686, 44.43059],
+ [11.33102, 44.43206],
+ [11.33343, 44.4377],
+ [11.34338, 44.43672],
+ [11.36192, 44.4502],
+ [11.37016, 44.44824],
+ [11.37394, 44.44922],
+ [11.37394, 44.45829],
+ [11.39351, 44.46221],
+ [11.40003, 44.4605],
+ [11.40278, 44.46246],
+ [11.39488, 44.46736],
+ [11.41514, 44.48377],
+ [11.42406, 44.48524],
+ [11.42578, 44.48916],
+ [11.41685, 44.49063],
+ [11.43196, 44.51413],
+ [11.40862, 44.52809],
+ [11.41273, 44.53983],
+ [11.36467, 44.55427],
+ [11.34407, 44.55231],
+ [11.33617, 44.54473],
+ [11.31317, 44.54669],
+ [11.30888, 44.53604],
+ [11.30854, 44.52992],
+ [11.28965, 44.5358],
+ [11.29257, 44.53898],
+ [11.28021, 44.54779],
+ [11.26923, 44.53225],
+ [11.25172, 44.55427],
+ [11.24485, 44.555]
+ ]
+ ],
+ "terms_url": "http://dati.comune.bologna.it/node/3449",
+ "terms_text": "© Comune di Bologna cc-by 4.0 ODbL compliant",
+ "best": true
+ },
+ {
+ "id": "Bonvillars-2013",
+ "name": "Bonvillars Orthophoto 2013",
+ "type": "tms",
+ "template": "http://osmdata.asitvd.ch/tiles/bonvillars2013/{zoom}/{x}/{y}.png",
+ "endDate": "2013-01-01T00:00:00.000Z",
+ "startDate": "2013-01-01T00:00:00.000Z",
+ "scaleExtent": [14, 20],
+ "polygon": [
+ [
+ [6.66713, 46.83358],
+ [6.66313, 46.83833],
+ [6.67213, 46.84191],
+ [6.6749, 46.84226],
+ [6.67843, 46.83807],
+ [6.66713, 46.83358]
+ ]
+ ],
+ "terms_url": "http://osmdata.asitvd.ch/",
+ "terms_text": "Bonvillars - Orthophoto technique 2013"
+ },
+ {
+ "id": "Bordeaux_2012",
+ "name": "Bordeaux - 2012",
+ "type": "tms",
+ "template": "http://wms.openstreetmap.fr/tms/1.0.0/bordeaux_2012/{zoom}/{x}/{y}",
+ "endDate": "2012-01-01T00:00:00.000Z",
+ "startDate": "2012-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 20],
+ "polygon": [
+ [
+ [-0.59923, 45.04193],
+ [-0.54231, 45.02757],
+ [-0.50979, 45.00601],
+ [-0.47727, 45.00206],
+ [-0.47066, 44.97367],
+ [-0.45542, 44.95102],
+ [-0.46456, 44.91792],
+ [-0.4732, 44.91936],
+ [-0.48794, 44.90928],
+ [-0.4981, 44.89057],
+ [-0.48946, 44.87797],
+ [-0.4666, 44.87076],
+ [-0.47625, 44.84735],
+ [-0.49505, 44.83978],
+ [-0.49099, 44.83186],
+ [-0.46965, 44.82537],
+ [-0.49709, 44.80446],
+ [-0.52453, 44.80013],
+ [-0.5103, 44.76767],
+ [-0.53469, 44.76515],
+ [-0.56213, 44.75107],
+ [-0.5601, 44.74169],
+ [-0.5728, 44.74133],
+ [-0.59465, 44.7601],
+ [-0.63429, 44.73989],
+ [-0.65004, 44.77705],
+ [-0.67901, 44.77489],
+ [-0.68816, 44.77922],
+ [-0.71509, 44.76839],
+ [-0.75168, 44.7471],
+ [-0.76336, 44.75577],
+ [-0.73846, 44.77561],
+ [-0.74202, 44.78571],
+ [-0.72779, 44.81239],
+ [-0.73999, 44.82861],
+ [-0.76438, 44.82933],
+ [-0.803, 44.82176],
+ [-0.8401, 44.82753],
+ [-0.83908, 44.84014],
+ [-0.87567, 44.85023],
+ [-0.88532, 44.85852],
+ [-0.88685, 44.88769],
+ [-0.86601, 44.88697],
+ [-0.84569, 44.89669],
+ [-0.83349, 44.92764],
+ [-0.81825, 44.92764],
+ [-0.80198, 44.92224],
+ [-0.79843, 44.9485],
+ [-0.78725, 44.94814],
+ [-0.75574, 44.97007],
+ [-0.72169, 44.95785],
+ [-0.69578, 44.93087],
+ [-0.68866, 44.93447],
+ [-0.67139, 44.93267],
+ [-0.66935, 44.94095],
+ [-0.62514, 44.95066],
+ [-0.63226, 44.95893],
+ [-0.63124, 44.9672],
+ [-0.60024, 44.96756],
+ [-0.55146, 44.97834],
+ [-0.54079, 44.97726],
+ [-0.55451, 44.99739],
+ [-0.59364, 45.01751],
+ [-0.60787, 45.03403],
+ [-0.59923, 45.04193]
+ ]
+ ],
+ "terms_text": "Communauté urbaine de Bordeaux - 2012"
+ },
+ {
+ "id": "Bordeaux_2016",
+ "name": "Bordeaux 2016",
+ "type": "tms",
+ "template": "http://tms.bordeaux.inria.fr/bdx2016/{zoom}/{x}/{y}.jpg",
+ "endDate": "2016-01-01T00:00:00.000Z",
+ "startDate": "2016-01-01T00:00:00.000Z",
+ "scaleExtent": [14, 20],
+ "polygon": [
+ [
+ [-0.59923, 45.04193],
+ [-0.54231, 45.02757],
+ [-0.50979, 45.00601],
+ [-0.47727, 45.00206],
+ [-0.47066, 44.97367],
+ [-0.45542, 44.95102],
+ [-0.46456, 44.91792],
+ [-0.4732, 44.91936],
+ [-0.48794, 44.90928],
+ [-0.4981, 44.89057],
+ [-0.48946, 44.87797],
+ [-0.4666, 44.87076],
+ [-0.47625, 44.84735],
+ [-0.49505, 44.83978],
+ [-0.49099, 44.83186],
+ [-0.46965, 44.82537],
+ [-0.49709, 44.80446],
+ [-0.52453, 44.80013],
+ [-0.5103, 44.76767],
+ [-0.53469, 44.76515],
+ [-0.56213, 44.75107],
+ [-0.5601, 44.74169],
+ [-0.5728, 44.74133],
+ [-0.59465, 44.7601],
+ [-0.63429, 44.73989],
+ [-0.65004, 44.77705],
+ [-0.67901, 44.77489],
+ [-0.68816, 44.77922],
+ [-0.71509, 44.76839],
+ [-0.75168, 44.7471],
+ [-0.76336, 44.75577],
+ [-0.73846, 44.77561],
+ [-0.74202, 44.78571],
+ [-0.72779, 44.81239],
+ [-0.73999, 44.82861],
+ [-0.76438, 44.82933],
+ [-0.803, 44.82176],
+ [-0.8401, 44.82753],
+ [-0.83908, 44.84014],
+ [-0.87567, 44.85023],
+ [-0.88532, 44.85852],
+ [-0.88685, 44.88769],
+ [-0.86601, 44.88697],
+ [-0.84569, 44.89669],
+ [-0.83349, 44.92764],
+ [-0.81825, 44.92764],
+ [-0.80198, 44.92224],
+ [-0.79843, 44.9485],
+ [-0.78725, 44.94814],
+ [-0.75574, 44.97007],
+ [-0.72169, 44.95785],
+ [-0.69578, 44.93087],
+ [-0.68866, 44.93447],
+ [-0.67139, 44.93267],
+ [-0.66935, 44.94095],
+ [-0.62514, 44.95066],
+ [-0.63226, 44.95893],
+ [-0.63124, 44.9672],
+ [-0.60024, 44.96756],
+ [-0.55146, 44.97834],
+ [-0.54079, 44.97726],
+ [-0.55451, 44.99739],
+ [-0.59364, 45.01751],
+ [-0.60787, 45.03403],
+ [-0.59923, 45.04193]
+ ]
+ ],
+ "terms_text": "Bordeaux Métropole - 2016"
+ },
+ {
+ "id": "branquinha_al",
+ "name": "Branquinha AL",
+ "type": "wms",
+ "template": "http://geoserver.dados.al.gov.br:8080/geoserver/Alagoas/ows?service=WMS&version=1.1.0&request=GetMap&layers=Branquinha&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-35.96968, -9.2928],
+ [-35.97063, -9.20261],
+ [-35.97727, -9.20264],
+ [-35.98365, -9.2027],
+ [-35.98765, -9.20266],
+ [-35.99159, -9.20274],
+ [-36.00498, -9.20284],
+ [-36.01473, -9.20293],
+ [-36.01651, -9.20296],
+ [-36.01871, -9.20293],
+ [-36.02487, -9.20286],
+ [-36.02892, -9.20297],
+ [-36.03308, -9.20289],
+ [-36.03769, -9.20294],
+ [-36.04581, -9.203],
+ [-36.05161, -9.20305],
+ [-36.05457, -9.20301],
+ [-36.06022, -9.20304],
+ [-36.06191, -9.20304],
+ [-36.0618, -9.21319],
+ [-36.06167, -9.21806],
+ [-36.06156, -9.21915],
+ [-36.06163, -9.22156],
+ [-36.06144, -9.22277],
+ [-36.06139, -9.22716],
+ [-36.06134, -9.23227],
+ [-36.0614, -9.23391],
+ [-36.06145, -9.23494],
+ [-36.06131, -9.23646],
+ [-36.06133, -9.23773],
+ [-36.06142, -9.23905],
+ [-36.06145, -9.24133],
+ [-36.06136, -9.2423],
+ [-36.06141, -9.24358],
+ [-36.06139, -9.2453],
+ [-36.06126, -9.24726],
+ [-36.06123, -9.24949],
+ [-36.06127, -9.25107],
+ [-36.06121, -9.25517],
+ [-36.06119, -9.25795],
+ [-36.06107, -9.25945],
+ [-36.06109, -9.26183],
+ [-36.06106, -9.26493],
+ [-36.06086, -9.27146],
+ [-36.06083, -9.2751],
+ [-36.06074, -9.28274],
+ [-36.0608, -9.29234],
+ [-36.06074, -9.29363],
+ [-36.05477, -9.29357],
+ [-36.04621, -9.29349],
+ [-36.03941, -9.29348],
+ [-36.03501, -9.29339],
+ [-36.02979, -9.29341],
+ [-36.02167, -9.29332],
+ [-36.01278, -9.29328],
+ [-36.00468, -9.29321],
+ [-35.99678, -9.29314],
+ [-35.98969, -9.29312],
+ [-35.98483, -9.29305],
+ [-35.98305, -9.29289],
+ [-35.98173, -9.29294],
+ [-35.97884, -9.29282],
+ [-35.96968, -9.2928]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "British_Columbia_Mosaic",
+ "name": "British Columbia Mosaic",
+ "type": "tms",
+ "template": "http://{switch:a,b,c,d}.imagery.paulnorman.ca/tiles/bc_mosaic/{zoom}/{x}/{y}.png",
+ "endDate": "2013-06-01T00:00:00.000Z",
+ "startDate": "2009-01-01T00:00:00.000Z",
+ "scaleExtent": [9, 20],
+ "polygon": [
+ [
+ [-123.3176, 49.32726],
+ [-123.44053, 49.32682],
+ [-123.44072, 49.33844],
+ [-123.43984, 49.34304],
+ [-123.44013, 49.34354],
+ [-123.44011, 49.34399],
+ [-123.44063, 49.34445],
+ [-123.44047, 49.34558],
+ [-123.43978, 49.34606],
+ [-123.43897, 49.34613],
+ [-123.43729, 49.35672],
+ [-123.43748, 49.37108],
+ [-123.43353, 49.37094],
+ [-123.43304, 49.37373],
+ [-123.43327, 49.37512],
+ [-123.43228, 49.3761],
+ [-123.43175, 49.37917],
+ [-123.43143, 49.37959],
+ [-123.43078, 49.38239],
+ [-123.43134, 49.38274],
+ [-123.43121, 49.38385],
+ [-123.43004, 49.38459],
+ [-123.41899, 49.38471],
+ [-123.41922, 49.41352],
+ [-123.39725, 49.41357],
+ [-123.39728, 49.42435],
+ [-123.40069, 49.42433],
+ [-123.40077, 49.57035],
+ [-123.40008, 49.57035],
+ [-123.40108, 49.59338],
+ [-123.37604, 49.59328],
+ [-123.37698, 49.67561],
+ [-123.35073, 49.67564],
+ [-123.3508, 49.70868],
+ [-123.33289, 49.70872],
+ [-123.33279, 49.72563],
+ [-123.30071, 49.72556],
+ [-123.30092, 49.73754],
+ [-123.2886, 49.73764],
+ [-123.28878, 49.82492],
+ [-123.2998, 49.82492],
+ [-123.30117, 49.84978],
+ [-123.32182, 49.85067],
+ [-123.32733, 49.85777],
+ [-123.32767, 49.97589],
+ [-123.30083, 49.97522],
+ [-123.30072, 50.0997],
+ [-123.25017, 50.10074],
+ [-123.25091, 50.27549],
+ [-123.02243, 50.27556],
+ [-123.02249, 50.32549],
+ [-123.00093, 50.32547],
+ [-123.00078, 50.34239],
+ [-122.9775, 50.34234],
+ [-122.97748, 50.35043],
+ [-122.95081, 50.3505],
+ [-122.95079, 50.3712],
+ [-122.93252, 50.37115],
+ [-122.9321, 50.39979],
+ [-122.88742, 50.39997],
+ [-122.88734, 50.42561],
+ [-122.66202, 50.4257],
+ [-122.66231, 50.39945],
+ [-122.59903, 50.39924],
+ [-122.59883, 50.37552],
+ [-122.57248, 50.37537],
+ [-122.57356, 50.24939],
+ [-122.59904, 50.24946],
+ [-122.59915, 50.22657],
+ [-122.6185, 50.22664],
+ [-122.61857, 50.22441],
+ [-122.64906, 50.22451],
+ [-122.64922, 50.19935],
+ [-122.73086, 50.19938],
+ [-122.73116, 50.12443],
+ [-122.74904, 50.12451],
+ [-122.74905, 50.0903],
+ [-122.76878, 50.09034],
+ [-122.76898, 49.94945],
+ [-122.99905, 49.94947],
+ [-122.99912, 49.87546],
+ [-122.97759, 49.87546],
+ [-122.97781, 49.69951],
+ [-122.99924, 49.69948],
+ [-122.99925, 49.65165],
+ [-123.02215, 49.65165],
+ [-123.02212, 49.59951],
+ [-123.04919, 49.59946],
+ [-123.04919, 49.59405],
+ [-123.06646, 49.59404],
+ [-123.06636, 49.54519],
+ [-123.06999, 49.54512],
+ [-123.0699, 49.54132],
+ [-123.07068, 49.53928],
+ [-123.07089, 49.53799],
+ [-123.07115, 49.53688],
+ [-123.07111, 49.53581],
+ [-123.07138, 49.53282],
+ [-123.07165, 49.53211],
+ [-123.07171, 49.53139],
+ [-123.07203, 49.53042],
+ [-123.07396, 49.53035],
+ [-123.0748, 49.5295],
+ [-123.07482, 49.52881],
+ [-123.07434, 49.52806],
+ [-123.07353, 49.52746],
+ [-123.07337, 49.52704],
+ [-123.07329, 49.52559],
+ [-123.07371, 49.52496],
+ [-123.07362, 49.52449],
+ [-123.09926, 49.52449],
+ [-123.09916, 49.47545],
+ [-123.07105, 49.47553],
+ [-123.07109, 49.4663],
+ [-123.07392, 49.46631],
+ [-123.07422, 49.4505],
+ [-123.07463, 49.45009],
+ [-123.07465, 49.44933],
+ [-123.0746, 49.44902],
+ [-123.07446, 49.44869],
+ [-123.07433, 49.44799],
+ [-123.07424, 49.44777],
+ [-123.07431, 49.44475],
+ [-123.07471, 49.44476],
+ [-123.07464, 49.43773],
+ [-122.99965, 49.43774],
+ [-122.99965, 49.43692],
+ [-122.86062, 49.44153],
+ [-122.81026, 49.4424],
+ [-122.8099, 49.37667],
+ [-122.40361, 49.37666],
+ [-122.40363, 49.37719],
+ [-122.26474, 49.3773],
+ [-122.26354, 49.23601],
+ [-122.21557, 49.23614],
+ [-122.0581, 49.23588],
+ [-121.95383, 49.29665],
+ [-121.94009, 49.30454],
+ [-121.92358, 49.31423],
+ [-121.89909, 49.32254],
+ [-121.88834, 49.32598],
+ [-121.8553, 49.33636],
+ [-121.8327, 49.34415],
+ [-121.76713, 49.36544],
+ [-121.67367, 49.36546],
+ [-121.64042, 49.37438],
+ [-121.5962, 49.38605],
+ [-121.58612, 49.38792],
+ [-121.52137, 49.39946],
+ [-121.51174, 49.40384],
+ [-121.46793, 49.4229],
+ [-121.44168, 49.43456],
+ [-121.42243, 49.43458],
+ [-121.34629, 49.39323],
+ [-121.34801, 49.34124],
+ [-121.5135, 49.32058],
+ [-121.60317, 49.27717],
+ [-121.65841, 49.18561],
+ [-121.67995, 49.16541],
+ [-121.78158, 49.07026],
+ [-121.80762, 49.06225],
+ [-121.9394, 49.06362],
+ [-121.97255, 49.04242],
+ [-121.99214, 49.03329],
+ [-122.00353, 49.02734],
+ [-122.01786, 49.02411],
+ [-122.11086, 48.99928],
+ [-122.14931, 48.99953],
+ [-122.14927, 48.99915],
+ [-122.19914, 48.9996],
+ [-122.19918, 48.9992],
+ [-122.23436, 48.99948],
+ [-122.23436, 49.00017],
+ [-122.39947, 49.00124],
+ [-122.45213, 49.00163],
+ [-122.45213, 49.00088],
+ [-122.45841, 49.00093],
+ [-122.45848, 48.99931],
+ [-122.49925, 48.9995],
+ [-122.49925, 48.99929],
+ [-122.54926, 48.99951],
+ [-122.54926, 48.99932],
+ [-122.65808, 48.99942],
+ [-122.65811, 48.9954],
+ [-122.70676, 48.99553],
+ [-122.75198, 48.99564],
+ [-122.79221, 48.99572],
+ [-122.79219, 48.99943],
+ [-123.03504, 48.99957],
+ [-123.03504, 49.0001],
+ [-123.03971, 49.00005],
+ [-123.03974, 49.00018],
+ [-123.04855, 49.00013],
+ [-123.04853, 49.00047],
+ [-123.05571, 49.00045],
+ [-123.05563, 49.00023],
+ [-123.06414, 49.00013],
+ [-123.06416, 48.99994],
+ [-123.0749, 48.99969],
+ [-123.07507, 49.00062],
+ [-123.08996, 49.00037],
+ [-123.10923, 48.99994],
+ [-123.12712, 49.0003],
+ [-123.136, 48.99987],
+ [-123.13627, 49.00058],
+ [-123.15385, 48.99981],
+ [-123.15405, 49.00068],
+ [-123.171, 49.00013],
+ [-123.20009, 48.99968],
+ [-123.20034, 49.04978],
+ [-123.21088, 49.04972],
+ [-123.21122, 49.05199],
+ [-123.20705, 49.05209],
+ [-123.20789, 49.06079],
+ [-123.21917, 49.0601],
+ [-123.21896, 49.06127],
+ [-123.22518, 49.06127],
+ [-123.22539, 49.06224],
+ [-123.22971, 49.06203],
+ [-123.22981, 49.06859],
+ [-123.23319, 49.06873],
+ [-123.2335, 49.07059],
+ [-123.24931, 49.07025],
+ [-123.24973, 49.08026],
+ [-123.27514, 49.0804],
+ [-123.27514, 49.08709],
+ [-123.29948, 49.0873],
+ [-123.29944, 49.08025],
+ [-123.32545, 49.08039],
+ [-123.32544, 49.11547],
+ [-123.2751, 49.15033],
+ [-123.27518, 49.18733],
+ [-123.27881, 49.18711],
+ [-123.27889, 49.19107],
+ [-123.30048, 49.19107],
+ [-123.30042, 49.26229],
+ [-123.31262, 49.26224],
+ [-123.3126, 49.27149],
+ [-123.31543, 49.27147],
+ [-123.31566, 49.28189],
+ [-123.31747, 49.28188],
+ [-123.3175, 49.29185],
+ [-123.31904, 49.29185],
+ [-123.31907, 49.2986],
+ [-123.32023, 49.29857],
+ [-123.32028, 49.30197],
+ [-123.32227, 49.30196],
+ [-123.32239, 49.31183],
+ [-123.3254, 49.31181],
+ [-123.32539, 49.32017],
+ [-123.31927, 49.3202],
+ [-123.31922, 49.32467],
+ [-123.31794, 49.32466],
+ [-123.31799, 49.32541],
+ [-123.3176, 49.32726]
+ ]
+ ],
+ "terms_url": "http://imagery.paulnorman.ca/tiles/about.html",
+ "terms_text": "Copyright Province of British Columbia, City of Surrey"
+ },
+ {
+ "id": "Budapest_XI_2015",
+ "name": "Budapest district XI orthophoto 2015",
+ "type": "wms",
+ "template": "http://terinfo.ujbuda.hu/mapproxy/service?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=orto2015_20160304&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:4326",
+ "endDate": "2015-01-01T00:00:00.000Z",
+ "startDate": "2015-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [19.04767, 47.48789],
+ [19.05157, 47.4899],
+ [19.06434, 47.4792],
+ [19.0665, 47.47632],
+ [19.06766, 47.47343],
+ [19.06837, 47.47077],
+ [19.06846, 47.46876],
+ [19.06722, 47.46501],
+ [19.05683, 47.45259],
+ [19.0549, 47.44906],
+ [19.05176, 47.43499],
+ [19.04863, 47.429],
+ [19.04384, 47.42968],
+ [19.04023, 47.42932],
+ [19.03509, 47.43818],
+ [19.03221, 47.43779],
+ [19.0252, 47.442],
+ [19.0207, 47.44576],
+ [19.01915, 47.44658],
+ [19.01545, 47.44759],
+ [19.01347, 47.44361],
+ [19.01266, 47.44271],
+ [19.01178, 47.44247],
+ [19.0119, 47.44188],
+ [19.0098, 47.43944],
+ [19.0057, 47.43111],
+ [19.00046, 47.43097],
+ [18.99534, 47.42821],
+ [18.97545, 47.42818],
+ [18.97343, 47.42904],
+ [18.97361, 47.42998],
+ [18.97548, 47.43067],
+ [18.97719, 47.43402],
+ [18.97823, 47.43817],
+ [18.97733, 47.44657],
+ [18.97004, 47.44988],
+ [18.96861, 47.45142],
+ [18.97568, 47.45506],
+ [18.97586, 47.45556],
+ [18.97625, 47.45584],
+ [18.97658, 47.45594],
+ [18.97763, 47.45597],
+ [18.98017, 47.45605],
+ [18.98162, 47.46067],
+ [18.97793, 47.46857],
+ [18.96867, 47.47643],
+ [18.97745, 47.48194],
+ [18.98035, 47.48169],
+ [18.98565, 47.4782],
+ [18.98907, 47.47838],
+ [18.99117, 47.47898],
+ [18.99177, 47.48102],
+ [18.99288, 47.48182],
+ [18.99836, 47.48238],
+ [18.99902, 47.483],
+ [19.004, 47.48189],
+ [19.00416, 47.48399],
+ [19.01027, 47.48535],
+ [19.01237, 47.48404],
+ [19.0138, 47.48351],
+ [19.01674, 47.48465],
+ [19.0163, 47.48539],
+ [19.01689, 47.48595],
+ [19.01808, 47.48605],
+ [19.02108, 47.48492],
+ [19.02124, 47.48612],
+ [19.02301, 47.48741],
+ [19.02637, 47.48885],
+ [19.02995, 47.48904],
+ [19.03135, 47.48855],
+ [19.03189, 47.48759],
+ [19.03286, 47.48712],
+ [19.03364, 47.48702],
+ [19.03514, 47.48725],
+ [19.03585, 47.48729],
+ [19.03616, 47.48751],
+ [19.03665, 47.48767],
+ [19.03748, 47.48774],
+ [19.03847, 47.48737],
+ [19.03918, 47.48679],
+ [19.04105, 47.48649],
+ [19.04181, 47.48737],
+ [19.04387, 47.4881],
+ [19.04542, 47.48817],
+ [19.04695, 47.4881],
+ [19.04767, 47.48789]
+ ]
+ ],
+ "terms_url": "http://terinfo.ujbuda.hu",
+ "terms_text": "Budapest XI. kerület önkormányzata",
+ "description": "5 cm resolution bald image"
+ },
+ {
+ "id": "Budapest_XI_2017",
+ "name": "Budapest district XI orthophoto 2017",
+ "type": "wms",
+ "template": "http://terinfo.ujbuda.hu/mapproxy/service?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=orto_2017&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:4326",
+ "endDate": "2017-03-01T00:00:00.000Z",
+ "startDate": "2017-03-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [19.04767, 47.48789],
+ [19.05157, 47.4899],
+ [19.06434, 47.4792],
+ [19.0665, 47.47632],
+ [19.06766, 47.47343],
+ [19.06837, 47.47077],
+ [19.06846, 47.46876],
+ [19.06722, 47.46501],
+ [19.05683, 47.45259],
+ [19.0549, 47.44906],
+ [19.05176, 47.43499],
+ [19.04863, 47.429],
+ [19.04384, 47.42968],
+ [19.04023, 47.42932],
+ [19.03509, 47.43818],
+ [19.03221, 47.43779],
+ [19.0252, 47.442],
+ [19.0207, 47.44576],
+ [19.01915, 47.44658],
+ [19.01545, 47.44759],
+ [19.01347, 47.44361],
+ [19.01266, 47.44271],
+ [19.01178, 47.44247],
+ [19.0119, 47.44188],
+ [19.0098, 47.43944],
+ [19.0057, 47.43111],
+ [19.00046, 47.43097],
+ [18.99534, 47.42821],
+ [18.97545, 47.42818],
+ [18.97343, 47.42904],
+ [18.97361, 47.42998],
+ [18.97548, 47.43067],
+ [18.97719, 47.43402],
+ [18.97823, 47.43817],
+ [18.97733, 47.44657],
+ [18.97004, 47.44988],
+ [18.96861, 47.45142],
+ [18.97568, 47.45506],
+ [18.97586, 47.45556],
+ [18.97625, 47.45584],
+ [18.97658, 47.45594],
+ [18.97763, 47.45597],
+ [18.98017, 47.45605],
+ [18.98162, 47.46067],
+ [18.97793, 47.46857],
+ [18.96867, 47.47643],
+ [18.97745, 47.48194],
+ [18.98035, 47.48169],
+ [18.98565, 47.4782],
+ [18.98907, 47.47838],
+ [18.99117, 47.47898],
+ [18.99177, 47.48102],
+ [18.99288, 47.48182],
+ [18.99836, 47.48238],
+ [18.99902, 47.483],
+ [19.004, 47.48189],
+ [19.00416, 47.48399],
+ [19.01027, 47.48535],
+ [19.01237, 47.48404],
+ [19.0138, 47.48351],
+ [19.01674, 47.48465],
+ [19.0163, 47.48539],
+ [19.01689, 47.48595],
+ [19.01808, 47.48605],
+ [19.02108, 47.48492],
+ [19.02124, 47.48612],
+ [19.02301, 47.48741],
+ [19.02637, 47.48885],
+ [19.02995, 47.48904],
+ [19.03135, 47.48855],
+ [19.03189, 47.48759],
+ [19.03286, 47.48712],
+ [19.03364, 47.48702],
+ [19.03514, 47.48725],
+ [19.03585, 47.48729],
+ [19.03616, 47.48751],
+ [19.03665, 47.48767],
+ [19.03748, 47.48774],
+ [19.03847, 47.48737],
+ [19.03918, 47.48679],
+ [19.04105, 47.48649],
+ [19.04181, 47.48737],
+ [19.04387, 47.4881],
+ [19.04542, 47.48817],
+ [19.04695, 47.4881],
+ [19.04767, 47.48789]
+ ]
+ ],
+ "terms_url": "http://terinfo.ujbuda.hu",
+ "terms_text": "Budapest XI. kerület önkormányzata",
+ "best": true,
+ "description": "5 cm resolution bald image"
+ },
+ {
+ "id": "Cadastre",
+ "name": "Cadastre",
+ "type": "tms",
+ "template": "http://tms.cadastre.openstreetmap.fr/*/tout/{zoom}/{x}/{y}.png",
+ "scaleExtent": [12, 22],
+ "polygon": [
+ [
+ [-2.7, 43.9],
+ [-6.3, 48.98],
+ [-2.25, 50.09],
+ [1.31, 50.88],
+ [2.35816, 51.32937],
+ [2.5488, 51.09759],
+ [2.57048, 51.07409],
+ [2.58741, 51.01763],
+ [2.59845, 51.0051],
+ [2.61558, 50.99749],
+ [2.63986, 50.95766],
+ [2.64225, 50.94578],
+ [2.62452, 50.9256],
+ [2.61962, 50.91067],
+ [2.62396, 50.86071],
+ [2.62781, 50.85054],
+ [2.63786, 50.83696],
+ [2.6511, 50.82906],
+ [2.73267, 50.81738],
+ [2.79995, 50.73795],
+ [2.81655, 50.73092],
+ [2.85265, 50.73335],
+ [2.89072, 50.7162],
+ [2.90492, 50.71536],
+ [2.9161, 50.72418],
+ [2.93508, 50.75592],
+ [3.00718, 50.78377],
+ [3.08218, 50.78749],
+ [3.09244, 50.79092],
+ [3.11412, 50.80566],
+ [3.14877, 50.80195],
+ [3.2154, 50.73111],
+ [3.22149, 50.7267],
+ [3.27051, 50.70375],
+ [3.27545, 50.67757],
+ [3.26576, 50.6604],
+ [3.26588, 50.64054],
+ [3.28922, 50.60028],
+ [3.29219, 50.55037],
+ [3.3056, 50.53267],
+ [3.37551, 50.50839],
+ [3.3898, 50.50884],
+ [3.4748, 50.54445],
+ [3.52173, 50.53459],
+ [3.53266, 50.51873],
+ [3.54779, 50.51012],
+ [3.61523, 50.50558],
+ [3.67378, 50.45642],
+ [3.68415, 50.35277],
+ [3.6901, 50.34044],
+ [3.70258, 50.33482],
+ [3.71576, 50.33854],
+ [3.74935, 50.36279],
+ [3.84109, 50.36558],
+ [3.90189, 50.3436],
+ [3.91317, 50.34291],
+ [4.02672, 50.36904],
+ [4.13761, 50.29984],
+ [4.14388, 50.29727],
+ [4.21444, 50.28167],
+ [4.22904, 50.26664],
+ [4.23078, 50.25233],
+ [4.17084, 50.18579],
+ [4.16601, 50.16888],
+ [4.1764, 50.1547],
+ [4.21195, 50.13602],
+ [4.24074, 50.07102],
+ [4.23193, 50.05551],
+ [4.18164, 50.03436],
+ [4.17177, 50.02537],
+ [4.16976, 50.01217],
+ [4.1765, 50.00065],
+ [4.20633, 49.97546],
+ [4.22164, 49.97089],
+ [4.30877, 49.98145],
+ [4.44542, 49.9523],
+ [4.45469, 49.95251],
+ [4.6581, 50.00609],
+ [4.66936, 50.01392],
+ [4.67293, 50.02716],
+ [4.66924, 50.06972],
+ [4.69517, 50.10472],
+ [4.83123, 50.17941],
+ [4.8815, 50.16436],
+ [4.90479, 50.14451],
+ [4.90426, 50.12639],
+ [4.88076, 50.0815],
+ [4.86277, 50.0745],
+ [4.85104, 50.06216],
+ [4.84331, 50.03884],
+ [4.84331, 50.03883],
+ [4.8433, 50.03881],
+ [4.82678, 49.989],
+ [4.82662, 49.97692],
+ [4.83343, 49.96696],
+ [4.89654, 49.91753],
+ [4.89755, 49.89424],
+ [4.87913, 49.86942],
+ [4.87625, 49.85111],
+ [4.88924, 49.81266],
+ [4.89769, 49.80204],
+ [4.91098, 49.79926],
+ [4.99534, 49.81116],
+ [5.01867, 49.79272],
+ [5.02686, 49.78886],
+ [5.09944, 49.77323],
+ [5.13458, 49.73462],
+ [5.1412, 49.72984],
+ [5.18761, 49.70906],
+ [5.19602, 49.70732],
+ [5.28157, 49.70836],
+ [5.33363, 49.67308],
+ [5.344, 49.65049],
+ [5.3544, 49.64041],
+ [5.43141, 49.60791],
+ [5.48205, 49.52815],
+ [5.49294, 49.51979],
+ [5.50666, 49.52042],
+ [5.55401, 49.54025],
+ [5.59311, 49.53424],
+ [5.6076, 49.53761],
+ [5.641, 49.56095],
+ [5.70676, 49.55267],
+ [5.71578, 49.55361],
+ [5.77526, 49.57414],
+ [5.8399, 49.55321],
+ [5.86126, 49.52038],
+ [5.876, 49.5114],
+ [5.97516, 49.50129],
+ [5.99801, 49.47317],
+ [6.01627, 49.46597],
+ [6.08635, 49.47562],
+ [6.09319, 49.47787],
+ [6.17397, 49.52187],
+ [6.24643, 49.52511],
+ [6.334, 49.48235],
+ [6.34423, 49.48037],
+ [6.43515, 49.487],
+ [6.5451, 49.44384],
+ [6.60639, 49.37868],
+ [6.60497, 49.33739],
+ [6.61627, 49.31869],
+ [6.67013, 49.29269],
+ [6.72996, 49.22917],
+ [6.74328, 49.19086],
+ [6.76026, 49.17752],
+ [6.80904, 49.17284],
+ [6.82473, 49.17826],
+ [6.83093, 49.19366],
+ [6.82982, 49.21802],
+ [6.85119, 49.23136],
+ [6.88453, 49.2239],
+ [6.89322, 49.22389],
+ [6.93753, 49.23369],
+ [7.04055, 49.19794],
+ [7.0463, 49.17503],
+ [7.05478, 49.16313],
+ [7.06908, 49.16018],
+ [7.10494, 49.16634],
+ [7.14315, 49.14159],
+ [7.1535, 49.13839],
+ [7.28683, 49.13488],
+ [7.29893, 49.13856],
+ [7.36095, 49.18259],
+ [7.45012, 49.19517],
+ [7.50113, 49.17672],
+ [7.54379, 49.10572],
+ [7.5579, 49.09626],
+ [7.6296, 49.08527],
+ [7.64722, 49.06722],
+ [7.6612, 49.06119],
+ [7.75401, 49.05963],
+ [7.76073, 49.06067],
+ [7.80291, 49.07489],
+ [7.85525, 49.05329],
+ [7.8673, 49.05227],
+ [7.93826, 49.06832],
+ [8.08069, 49.00688],
+ [8.2225, 48.98787],
+ [8.23704, 48.97683],
+ [8.23589, 48.95817],
+ [8.20888, 48.94863],
+ [8.20089, 48.94339],
+ [8.15824, 48.89753],
+ [8.10087, 48.7993],
+ [7.99071, 48.74478],
+ [7.98534, 48.7409],
+ [7.90422, 48.65865],
+ [7.85605, 48.63606],
+ [7.8484, 48.62977],
+ [7.81842, 48.58883],
+ [7.81456, 48.57704],
+ [7.81449, 48.50968],
+ [7.78547, 48.48337],
+ [7.78055, 48.47652],
+ [7.74506, 48.39484],
+ [7.74357, 48.38427],
+ [7.75159, 48.32322],
+ [7.71085, 48.29841],
+ [7.70241, 48.28803],
+ [7.67661, 48.21555],
+ [7.59605, 48.11698],
+ [7.59165, 48.10648],
+ [7.58522, 48.04694],
+ [7.59127, 48.03035],
+ [7.62437, 47.99865],
+ [7.63205, 47.97081],
+ [7.57554, 47.87436],
+ [7.5728, 47.86435],
+ [7.57267, 47.83631],
+ [7.54581, 47.78793],
+ [7.54418, 47.77232],
+ [7.55758, 47.72899],
+ [7.53526, 47.6989],
+ [7.53136, 47.68564],
+ [7.537, 47.67302],
+ [7.60016, 47.60822],
+ [7.58967, 47.56755],
+ [7.55424, 47.55128],
+ [7.54511, 47.54283],
+ [7.51256, 47.48439],
+ [7.38747, 47.42111],
+ [7.32653, 47.4273],
+ [7.24435, 47.40939],
+ [7.16708, 47.4335],
+ [7.15212, 47.47612],
+ [7.14279, 47.48707],
+ [7.12853, 47.48893],
+ [7.0801, 47.47718],
+ [7.03557, 47.48695],
+ [7.02102, 47.48458],
+ [7.01205, 47.47287],
+ [7.003, 47.44095],
+ [6.9551, 47.40808],
+ [6.94716, 47.39698],
+ [6.94818, 47.38337],
+ [6.95769, 47.37359],
+ [6.97126, 47.37218],
+ [7.018, 47.38386],
+ [7.05623, 47.37035],
+ [7.07007, 47.35005],
+ [7.05958, 47.32257],
+ [6.97424, 47.27856],
+ [6.96347, 47.26233],
+ [6.96134, 47.23479],
+ [6.89443, 47.19393],
+ [6.88913, 47.18922],
+ [6.85545, 47.14636],
+ [6.76907, 47.10751],
+ [6.76011, 47.09953],
+ [6.72561, 47.0418],
+ [6.62355, 46.9811],
+ [6.4812, 46.9445],
+ [6.46892, 46.93522],
+ [6.46686, 46.91997],
+ [6.47548, 46.88771],
+ [6.4535, 46.8239],
+ [6.45644, 46.80534],
+ [6.46722, 46.79104],
+ [6.46098, 46.76887],
+ [6.15817, 46.59343],
+ [6.14872, 46.58069],
+ [6.15152, 46.56508],
+ [6.16549, 46.54399],
+ [6.15811, 46.52456],
+ [6.10174, 46.46979],
+ [6.09572, 46.45418],
+ [6.09704, 46.43317],
+ [6.10829, 46.41643],
+ [6.16622, 46.38839],
+ [6.17817, 46.36922],
+ [6.13748, 46.31297],
+ [6.13371, 46.30227],
+ [6.13038, 46.23737],
+ [6.1103, 46.22344],
+ [6.08865, 46.23081],
+ [6.07717, 46.23123],
+ [6.01857, 46.21601],
+ [6.00681, 46.20752],
+ [6.00388, 46.19332],
+ [6.00787, 46.16977],
+ [6.01783, 46.15564],
+ [6.03509, 46.15456],
+ [6.05564, 46.16288],
+ [6.12468, 46.15415],
+ [6.13778, 46.15702],
+ [6.24026, 46.22094],
+ [6.24906, 46.23299],
+ [6.24707, 46.24777],
+ [6.21148, 46.31057],
+ [6.21219, 46.32485],
+ [6.23946, 46.36705],
+ [6.31648, 46.41557],
+ [6.41083, 46.42495],
+ [6.41748, 46.42682],
+ [6.50498, 46.46871],
+ [6.63047, 46.47435],
+ [6.74665, 46.45695],
+ [6.82244, 46.42925],
+ [6.81832, 46.38181],
+ [6.80484, 46.36179],
+ [6.80189, 46.34639],
+ [6.81095, 46.33359],
+ [6.86491, 46.30038],
+ [6.87504, 46.28007],
+ [6.86092, 46.2439],
+ [6.82698, 46.21188],
+ [6.82075, 46.19862],
+ [6.81863, 46.16592],
+ [6.82259, 46.15261],
+ [6.83427, 46.14509],
+ [6.90382, 46.12971],
+ [6.90491, 46.09595],
+ [6.90932, 46.08406],
+ [6.92001, 46.07721],
+ [6.94898, 46.0699],
+ [7.01556, 46.00883],
+ [7.05191, 45.93066],
+ [7.04533, 45.92217],
+ [7.04497, 45.92064],
+ [7.04394, 45.92036],
+ [6.99582, 45.85822],
+ [6.94097, 45.83551],
+ [6.84376, 45.82387],
+ [6.83102, 45.81711],
+ [6.82614, 45.80353],
+ [6.82787, 45.73217],
+ [6.83174, 45.72082],
+ [6.8414, 45.71373],
+ [6.90729, 45.69124],
+ [6.92419, 45.66935],
+ [6.94247, 45.66172],
+ [6.97131, 45.66528],
+ [7.00597, 45.64945],
+ [7.01151, 45.63652],
+ [6.9978, 45.60877],
+ [6.99643, 45.59465],
+ [7.0158, 45.52354],
+ [7.02774, 45.5102],
+ [7.1072, 45.47877],
+ [7.1228, 45.44924],
+ [7.13304, 45.44001],
+ [7.1856, 45.41894],
+ [7.19515, 45.40409],
+ [7.17075, 45.35069],
+ [7.14232, 45.32298],
+ [7.13649, 45.30576],
+ [7.14458, 45.25048],
+ [7.08417, 45.20279],
+ [6.99279, 45.19823],
+ [6.98106, 45.19368],
+ [6.90009, 45.12689],
+ [6.85843, 45.11699],
+ [6.78283, 45.14228],
+ [6.77056, 45.14242],
+ [6.67751, 45.11356],
+ [6.6653, 45.10289],
+ [6.66501, 45.08667],
+ [6.68237, 45.04558],
+ [6.69602, 45.03395],
+ [6.75744, 45.01884],
+ [6.78375, 44.9146],
+ [6.7942, 44.90161],
+ [6.86698, 44.86519],
+ [6.8798, 44.86346],
+ [6.93633, 44.87461],
+ [7.01795, 44.84402],
+ [7.03453, 44.82282],
+ [7.03711, 44.75009],
+ [7.0496, 44.73226],
+ [7.07224, 44.72311],
+ [7.08651, 44.6968],
+ [7.08666, 44.68085],
+ [7.07671, 44.67134],
+ [6.99007, 44.67203],
+ [6.97413, 44.66431],
+ [6.97056, 44.64696],
+ [6.97819, 44.61784],
+ [6.94659, 44.57124],
+ [6.88235, 44.53479],
+ [6.87233, 44.5195],
+ [6.87892, 44.50245],
+ [6.95894, 44.43129],
+ [6.95872, 44.42908],
+ [6.92167, 44.41436],
+ [6.91223, 44.40659],
+ [6.90907, 44.39477],
+ [6.90972, 44.38195],
+ [6.91637, 44.36804],
+ [6.99909, 44.29414],
+ [7.01181, 44.256],
+ [7.01983, 44.24558],
+ [7.03259, 44.2424],
+ [7.07312, 44.2461],
+ [7.1651, 44.22112],
+ [7.24533, 44.18544],
+ [7.26053, 44.16682],
+ [7.27537, 44.15947],
+ [7.33878, 44.1574],
+ [7.36278, 44.13834],
+ [7.37776, 44.13416],
+ [7.56283, 44.15792],
+ [7.5642, 44.15836],
+ [7.56478, 44.15817],
+ [7.60548, 44.1634],
+ [7.6162, 44.16827],
+ [7.63989, 44.18928],
+ [7.68608, 44.1861],
+ [7.69422, 44.17795],
+ [7.68937, 44.13869],
+ [7.69445, 44.12276],
+ [7.72786, 44.08615],
+ [7.72403, 44.05704],
+ [7.68603, 44.02371],
+ [7.68077, 44.0164],
+ [7.66016, 43.9672],
+ [7.59624, 43.94466],
+ [7.58419, 43.93287],
+ [7.56858, 43.89159],
+ [7.5271, 43.87434],
+ [7.51649, 43.86397],
+ [7.51594, 43.84915],
+ [7.53622, 43.79234],
+ [9.8, 43.1],
+ [9.63227, 41.43244],
+ [9.36968, 41.35052],
+ [9.27311, 41.29196],
+ [8.94186, 41.27688],
+ [5.8, 41.64],
+ [3.17358, 42.41768],
+ [3.16081, 42.42757],
+ [3.0944, 42.41457],
+ [3.03402, 42.45331],
+ [3.02214, 42.45645],
+ [2.87822, 42.4487],
+ [2.87019, 42.44653],
+ [2.78424, 42.40256],
+ [2.7413, 42.41128],
+ [2.72928, 42.40998],
+ [2.69331, 42.39417],
+ [2.68378, 42.3854],
+ [2.68162, 42.37263],
+ [2.68585, 42.34679],
+ [2.66719, 42.33008],
+ [2.58106, 42.34418],
+ [2.56777, 42.34173],
+ [2.5338, 42.32197],
+ [2.47795, 42.32986],
+ [2.41933, 42.37658],
+ [2.41222, 42.38021],
+ [2.26719, 42.42055],
+ [2.25973, 42.42117],
+ [2.20694, 42.41558],
+ [2.20653, 42.41526],
+ [2.20526, 42.41541],
+ [2.16028, 42.41065],
+ [2.14881, 42.40545],
+ [2.09393, 42.35474],
+ [2.00861, 42.33818],
+ [1.965, 42.36473],
+ [1.93076, 42.42442],
+ [1.92089, 42.43302],
+ [1.88467, 42.44761],
+ [1.88459, 42.44762],
+ [1.88444, 42.4477],
+ [1.82774, 42.47056],
+ [1.72567, 42.48452],
+ [1.71561, 42.50125],
+ [1.7272, 42.56103],
+ [1.72479, 42.57499],
+ [1.71011, 42.59992],
+ [1.69377, 42.60975],
+ [1.60283, 42.61382],
+ [1.56069, 42.6392],
+ [1.54636, 42.64166],
+ [1.50444, 42.6331],
+ [1.4921, 42.62502],
+ [1.47238, 42.59703],
+ [1.43792, 42.59264],
+ [1.41936, 42.60643],
+ [1.38032, 42.67415],
+ [1.37335, 42.68127],
+ [1.33313, 42.70563],
+ [1.32364, 42.7085],
+ [1.23221, 42.71248],
+ [1.16554, 42.69928],
+ [1.08546, 42.76635],
+ [1.07564, 42.77079],
+ [0.95937, 42.78852],
+ [0.95073, 42.78794],
+ [0.92265, 42.7797],
+ [0.84606, 42.8157],
+ [0.71511, 42.8464],
+ [0.70017, 42.84402],
+ [0.69117, 42.83186],
+ [0.67409, 42.76479],
+ [0.67474, 42.75286],
+ [0.69192, 42.70684],
+ [0.669, 42.67901],
+ [0.43024, 42.67863],
+ [0.3715, 42.70308],
+ [0.35954, 42.70415],
+ [0.34912, 42.69817],
+ [0.32567, 42.67274],
+ [0.29571, 42.66388],
+ [0.24594, 42.70175],
+ [0.23972, 42.70494],
+ [0.18967, 42.72039],
+ [0.17919, 42.72075],
+ [-0.01993, 42.67389],
+ [-0.06726, 42.6848],
+ [-0.16949, 42.77157],
+ [-0.29987, 42.82697],
+ [-0.31683, 42.82635],
+ [-0.39208, 42.78766],
+ [-0.44354, 42.78453],
+ [-0.48842, 42.80255],
+ [-0.50868, 42.79935],
+ [-0.54499, 42.76906],
+ [-0.56721, 42.76937],
+ [-0.67446, 42.86392],
+ [-0.68094, 42.86775],
+ [-0.73372, 42.88666],
+ [-0.7476, 42.93879],
+ [-0.75711, 42.95107],
+ [-0.77253, 42.95284],
+ [-0.82114, 42.93865],
+ [-0.94508, 42.94192],
+ [-1.02313, 42.98206],
+ [-1.10852, 43.00409],
+ [-1.1156, 43.00461],
+ [-1.14775, 43.00124],
+ [-1.15845, 43.01452],
+ [-1.16736, 43.02083],
+ [-1.21622, 43.0381],
+ [-1.22612, 43.03898],
+ [-1.26236, 43.03303],
+ [-1.30643, 43.05531],
+ [-1.31992, 43.05696],
+ [-1.33135, 43.0496],
+ [-1.3542, 43.0197],
+ [-1.43868, 43.03371],
+ [-1.4775, 43.06889],
+ [-1.48311, 43.08561],
+ [-1.47641, 43.10248],
+ [-1.43479, 43.13087],
+ [-1.42732, 43.1404],
+ [-1.39411, 43.22935],
+ [-1.39531, 43.24596],
+ [-1.40868, 43.25591],
+ [-1.52629, 43.28099],
+ [-1.54626, 43.2737],
+ [-1.57149, 43.2412],
+ [-1.61053, 43.24223],
+ [-1.65, 43.29323],
+ [-1.66953, 43.30065],
+ [-1.73359, 43.28856],
+ [-1.75606, 43.31966],
+ [-1.76297, 43.32565],
+ [-1.79156, 43.34067],
+ [-1.80099, 43.37017],
+ [-1.78509, 43.39037],
+ [-1.7835, 43.39686],
+ [-2.7, 43.9]
+ ]
+ ],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/WikiProject_Cadastre_Fran%C3%A7ais/Conditions_d%27utilisation",
+ "terms_text": "cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2018",
+ "description": "French land registry",
+ "icon": "https://svn.openstreetmap.org/applications/editors/josm/plugins/cadastre-fr/images/cadastre_small.png"
+ },
+ {
+ "id": "lu.geoportail.opendata.cadastre",
+ "name": "Cadastre geoportail.lu",
+ "type": "tms",
+ "template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/cadastre/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png",
+ "scaleExtent": [0, 20],
+ "polygon": [
+ [
+ [5.96175, 50.17631],
+ [6.02627, 50.18496],
+ [6.03318, 50.16395],
+ [6.06069, 50.15536],
+ [6.07668, 50.15913],
+ [6.07824, 50.17255],
+ [6.10176, 50.17199],
+ [6.1225, 50.16437],
+ [6.1201, 50.15594],
+ [6.1277, 50.14993],
+ [6.11323, 50.13739],
+ [6.12369, 50.13719],
+ [6.14093, 50.1305],
+ [6.13555, 50.11899],
+ [6.13808, 50.10263],
+ [6.13108, 50.09964],
+ [6.13547, 50.09119],
+ [6.12194, 50.09059],
+ [6.12634, 50.07817],
+ [6.13186, 50.07348],
+ [6.12117, 50.064],
+ [6.11444, 50.06139],
+ [6.11563, 50.05817],
+ [6.12361, 50.06323],
+ [6.13661, 50.04178],
+ [6.13034, 50.02975],
+ [6.14821, 50.02307],
+ [6.13868, 50.01572],
+ [6.13594, 50.01485],
+ [6.13138, 50.01905],
+ [6.13024, 50.01819],
+ [6.13934, 50.01116],
+ [6.1517, 50.01058],
+ [6.14546, 49.99689],
+ [6.13966, 49.9994],
+ [6.13852, 49.99829],
+ [6.14218, 49.99535],
+ [6.15023, 49.99518],
+ [6.15625, 49.98867],
+ [6.17305, 49.98589],
+ [6.17348, 49.98344],
+ [6.17035, 49.98376],
+ [6.16549, 49.97115],
+ [6.17151, 49.96298],
+ [6.1763, 49.962],
+ [6.17995, 49.95386],
+ [6.18339, 49.9548],
+ [6.17983, 49.96307],
+ [6.18331, 49.9686],
+ [6.19277, 49.97158],
+ [6.19978, 49.95352],
+ [6.20707, 49.95672],
+ [6.21269, 49.9514],
+ [6.22502, 49.95039],
+ [6.22044, 49.94369],
+ [6.22824, 49.93726],
+ [6.22635, 49.92766],
+ [6.21913, 49.92354],
+ [6.22986, 49.92125],
+ [6.23603, 49.91355],
+ [6.23187, 49.91064],
+ [6.22769, 49.91062],
+ [6.23229, 49.9072],
+ [6.23381, 49.90028],
+ [6.24692, 49.89535],
+ [6.25781, 49.88724],
+ [6.26301, 49.88101],
+ [6.27646, 49.87725],
+ [6.28113, 49.87957],
+ [6.29166, 49.87548],
+ [6.2977, 49.86673],
+ [6.30989, 49.87107],
+ [6.31532, 49.8673],
+ [6.31465, 49.86057],
+ [6.32361, 49.85188],
+ [6.32158, 49.8409],
+ [6.32741, 49.83673],
+ [6.33656, 49.83998],
+ [6.33937, 49.8507],
+ [6.36465, 49.85164],
+ [6.4022, 49.82098],
+ [6.42643, 49.81629],
+ [6.42807, 49.81186],
+ [6.43097, 49.81129],
+ [6.44161, 49.81547],
+ [6.44344, 49.81233],
+ [6.45366, 49.81275],
+ [6.46454, 49.81975],
+ [6.47057, 49.82385],
+ [6.49681, 49.81277],
+ [6.50669, 49.80993],
+ [6.51155, 49.80238],
+ [6.51485, 49.80513],
+ [6.5196, 49.81446],
+ [6.52981, 49.81048],
+ [6.53225, 49.80686],
+ [6.53083, 49.80116],
+ [6.50622, 49.78899],
+ [6.51917, 49.78344],
+ [6.51105, 49.77422],
+ [6.52056, 49.76818],
+ [6.52052, 49.76134],
+ [6.50373, 49.75086],
+ [6.50263, 49.73298],
+ [6.50727, 49.72938],
+ [6.51809, 49.7242],
+ [6.51642, 49.72129],
+ [6.51176, 49.72016],
+ [6.50479, 49.725],
+ [6.49891, 49.72639],
+ [6.49558, 49.72443],
+ [6.50712, 49.71655],
+ [6.50788, 49.71215],
+ [6.5046, 49.71227],
+ [6.42714, 49.66237],
+ [6.4399, 49.66025],
+ [6.44251, 49.65591],
+ [6.42178, 49.61809],
+ [6.39898, 49.60094],
+ [6.37941, 49.59526],
+ [6.37551, 49.58809],
+ [6.38443, 49.5801],
+ [6.38119, 49.57509],
+ [6.36909, 49.5783],
+ [6.35791, 49.57166],
+ [6.3849, 49.55817],
+ [6.38009, 49.54856],
+ [6.35855, 49.53296],
+ [6.35932, 49.52481],
+ [6.37076, 49.50545],
+ [6.37056, 49.45732],
+ [6.3334, 49.46493],
+ [6.32189, 49.47244],
+ [6.29503, 49.47928],
+ [6.28789, 49.48379],
+ [6.27191, 49.49995],
+ [6.24133, 49.50693],
+ [6.19669, 49.50331],
+ [6.17337, 49.50577],
+ [6.16086, 49.50085],
+ [6.1671, 49.49006],
+ [6.14018, 49.48525],
+ [6.12937, 49.48803],
+ [6.12725, 49.47081],
+ [6.1014, 49.46726],
+ [6.10483, 49.45076],
+ [6.08167, 49.45417],
+ [6.07722, 49.46139],
+ [6.05917, 49.46306],
+ [6.05222, 49.46028],
+ [6.04421, 49.44553],
+ [6.02529, 49.44703],
+ [6.02154, 49.45127],
+ [6.01574, 49.44885],
+ [5.99412, 49.45301],
+ [5.97657, 49.44885],
+ [5.97773, 49.45955],
+ [5.97232, 49.46087],
+ [5.96891, 49.48202],
+ [5.9616, 49.49026],
+ [5.91578, 49.49835],
+ [5.89033, 49.4948],
+ [5.86332, 49.50006],
+ [5.84897, 49.50826],
+ [5.84828, 49.51397],
+ [5.83641, 49.51817],
+ [5.83187, 49.52639],
+ [5.84308, 49.53081],
+ [5.83562, 49.54114],
+ [5.81625, 49.53325],
+ [5.8052, 49.54272],
+ [5.85943, 49.57158],
+ [5.86866, 49.587],
+ [5.86289, 49.58525],
+ [5.8511, 49.58379],
+ [5.84712, 49.58961],
+ [5.84565, 49.5981],
+ [5.8694, 49.6106],
+ [5.88182, 49.63815],
+ [5.89998, 49.63907],
+ [5.89934, 49.66239],
+ [5.85656, 49.67628],
+ [5.85628, 49.68211],
+ [5.8757, 49.71118],
+ [5.86481, 49.72331],
+ [5.84325, 49.71822],
+ [5.82191, 49.72128],
+ [5.82489, 49.73767],
+ [5.82073, 49.74878],
+ [5.78626, 49.79079],
+ [5.76517, 49.78961],
+ [5.75094, 49.79094],
+ [5.74159, 49.82126],
+ [5.74581, 49.82435],
+ [5.7372, 49.83353],
+ [5.74053, 49.84142],
+ [5.74701, 49.84048],
+ [5.74624, 49.84783],
+ [5.75399, 49.84878],
+ [5.74066, 49.85152],
+ [5.75229, 49.85922],
+ [5.74955, 49.87554],
+ [5.77567, 49.87438],
+ [5.77505, 49.88057],
+ [5.7346, 49.89341],
+ [5.73303, 49.90285],
+ [5.75783, 49.91737],
+ [5.76039, 49.93252],
+ [5.77073, 49.93711],
+ [5.76878, 49.94239],
+ [5.7688, 49.96104],
+ [5.78672, 49.96816],
+ [5.80524, 49.96677],
+ [5.80652, 49.97321],
+ [5.83129, 49.97995],
+ [5.83462, 49.98656],
+ [5.81806, 49.99936],
+ [5.81561, 50.01437],
+ [5.84792, 50.02809],
+ [5.86189, 50.04581],
+ [5.85087, 50.0563],
+ [5.85781, 50.07186],
+ [5.881, 50.08069],
+ [5.89196, 50.12041],
+ [5.95286, 50.13384],
+ [5.96175, 50.17631]
+ ]
+ ],
+ "terms_url": "https://data.public.lu/en/datasets/plan-cadastral-numerise-pcn-webservices-wms-et-wmts",
+ "terms_text": "Administration du Cadastre et de la Topographie",
+ "icon": "https://www.geoportail.lu/static/img/lion.png"
+ },
+ {
+ "id": "cajueiro_al",
+ "name": "Cajueiro AL",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Cajueiro&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-36.10753, -9.43884],
+ [-36.10752, -9.43421],
+ [-36.10767, -9.42959],
+ [-36.10779, -9.42361],
+ [-36.10769, -9.41927],
+ [-36.10781, -9.41391],
+ [-36.10803, -9.41094],
+ [-36.1081, -9.40965],
+ [-36.10811, -9.40747],
+ [-36.10816, -9.40693],
+ [-36.10819, -9.40418],
+ [-36.10811, -9.40176],
+ [-36.10817, -9.40002],
+ [-36.10827, -9.39952],
+ [-36.10827, -9.39646],
+ [-36.10833, -9.39475],
+ [-36.10832, -9.39273],
+ [-36.10836, -9.3904],
+ [-36.10841, -9.38447],
+ [-36.10847, -9.38165],
+ [-36.10846, -9.37767],
+ [-36.10835, -9.37573],
+ [-36.10845, -9.37432],
+ [-36.10849, -9.37234],
+ [-36.10845, -9.3697],
+ [-36.10867, -9.36278],
+ [-36.10863, -9.36102],
+ [-36.10873, -9.35928],
+ [-36.10874, -9.35736],
+ [-36.10855, -9.35479],
+ [-36.1087, -9.3523],
+ [-36.10871, -9.34996],
+ [-36.10873, -9.34893],
+ [-36.11269, -9.34908],
+ [-36.11726, -9.34912],
+ [-36.12138, -9.34905],
+ [-36.12806, -9.3491],
+ [-36.13217, -9.34906],
+ [-36.13694, -9.34915],
+ [-36.14025, -9.34914],
+ [-36.14134, -9.34932],
+ [-36.14458, -9.34916],
+ [-36.14684, -9.34914],
+ [-36.14842, -9.34905],
+ [-36.15276, -9.34907],
+ [-36.154, -9.34922],
+ [-36.15627, -9.34923],
+ [-36.16026, -9.34921],
+ [-36.16086, -9.34929],
+ [-36.166, -9.34933],
+ [-36.16938, -9.34942],
+ [-36.17176, -9.34936],
+ [-36.17628, -9.34945],
+ [-36.18028, -9.34937],
+ [-36.18227, -9.34946],
+ [-36.18826, -9.34938],
+ [-36.19039, -9.34945],
+ [-36.19354, -9.34946],
+ [-36.19552, -9.34941],
+ [-36.19918, -9.34951],
+ [-36.19926, -9.35146],
+ [-36.19913, -9.35234],
+ [-36.19912, -9.35353],
+ [-36.19919, -9.35646],
+ [-36.19922, -9.35771],
+ [-36.1993, -9.35832],
+ [-36.19933, -9.36112],
+ [-36.19922, -9.36177],
+ [-36.19918, -9.36258],
+ [-36.19931, -9.364],
+ [-36.19926, -9.36499],
+ [-36.19922, -9.36563],
+ [-36.19928, -9.3666],
+ [-36.19917, -9.36796],
+ [-36.19917, -9.36868],
+ [-36.19922, -9.36911],
+ [-36.19912, -9.37017],
+ [-36.19887, -9.37149],
+ [-36.19886, -9.37264],
+ [-36.19902, -9.37322],
+ [-36.19915, -9.37504],
+ [-36.19911, -9.37688],
+ [-36.19896, -9.37747],
+ [-36.19899, -9.37915],
+ [-36.19917, -9.38053],
+ [-36.19919, -9.38124],
+ [-36.19926, -9.38175],
+ [-36.19928, -9.38302],
+ [-36.19913, -9.38374],
+ [-36.19908, -9.38592],
+ [-36.19879, -9.38787],
+ [-36.19881, -9.38935],
+ [-36.19902, -9.39092],
+ [-36.19904, -9.392],
+ [-36.19899, -9.39348],
+ [-36.1988, -9.39451],
+ [-36.19867, -9.39705],
+ [-36.19845, -9.39949],
+ [-36.19864, -9.40313],
+ [-36.19866, -9.40476],
+ [-36.19865, -9.40836],
+ [-36.19875, -9.40902],
+ [-36.19857, -9.41058],
+ [-36.19859, -9.41273],
+ [-36.19874, -9.41446],
+ [-36.19868, -9.41711],
+ [-36.1986, -9.41902],
+ [-36.19846, -9.41965],
+ [-36.1985, -9.42235],
+ [-36.19871, -9.42429],
+ [-36.19858, -9.42697],
+ [-36.1984, -9.42895],
+ [-36.19857, -9.43412],
+ [-36.19871, -9.4347],
+ [-36.19865, -9.43595],
+ [-36.19857, -9.43626],
+ [-36.19859, -9.43667],
+ [-36.19876, -9.43749],
+ [-36.19889, -9.43905],
+ [-36.19882, -9.43995],
+ [-36.1785, -9.43977],
+ [-36.17718, -9.43968],
+ [-36.17265, -9.43967],
+ [-36.17099, -9.43971],
+ [-36.16396, -9.43963],
+ [-36.15386, -9.4395],
+ [-36.13983, -9.4393],
+ [-36.12875, -9.43913],
+ [-36.11497, -9.43892],
+ [-36.10753, -9.43884]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "osm-cambodia_laos_thailand_vietnam-bilingual",
+ "name": "Cambodia, Laos, Thailand, Vietnam, Malaysia, Myanmar bilingual",
+ "type": "tms",
+ "template": "https://{switch:a,b,c,d}.tile.osm-tools.org/osm/{zoom}/{x}/{y}.png",
+ "scaleExtent": [0, 20],
+ "polygon": [
+ [
+ [92.10238, 20.81356],
+ [93.56905, 24.09755],
+ [94.1733, 23.92695],
+ [95.19503, 26.70727],
+ [96.75509, 27.52867],
+ [97.58456, 28.5806],
+ [98.73812, 27.51405],
+ [98.74362, 25.87992],
+ [97.67794, 24.75774],
+ [97.96359, 24.04238],
+ [98.82052, 24.16272],
+ [99.52364, 22.95934],
+ [100.36959, 21.50514],
+ [101.79232, 22.48305],
+ [105.36288, 23.33311],
+ [106.81857, 22.84801],
+ [108.19735, 21.36197],
+ [107.43895, 18.85398],
+ [117.14537, 7.46562],
+ [119.6173, 5.28754],
+ [118.12315, 4.05023],
+ [117.25523, 4.36249],
+ [115.86546, 4.34606],
+ [115.50841, 3.02498],
+ [114.5526, 1.5101],
+ [113.54186, 1.25748],
+ [112.96507, 1.5705],
+ [112.24547, 1.5101],
+ [111.67418, 1.01583],
+ [110.4547, 0.90049],
+ [109.49889, 1.9219],
+ [103.22569, 1.12568],
+ [100.46263, 3.23889],
+ [97.6721, 8.05888],
+ [93.89281, 15.93987],
+ [92.10238, 20.81356]
+ ]
+ ],
+ "terms_url": "http://www.osm-tools.org",
+ "terms_text": "© osm-tools.org & OpenStreetMap contributors, CC-BY-SA"
+ },
+ {
+ "id": "campo_alegre_al",
+ "name": "Campo Alegre AL",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Campo%20Alegre&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-36.30643, -9.82332],
+ [-36.30603, -9.78597],
+ [-36.30602, -9.78263],
+ [-36.30609, -9.78168],
+ [-36.30604, -9.78081],
+ [-36.3059, -9.77531],
+ [-36.30586, -9.76496],
+ [-36.30545, -9.73336],
+ [-36.39634, -9.73248],
+ [-36.39627, -9.73744],
+ [-36.39636, -9.74336],
+ [-36.39644, -9.75535],
+ [-36.3966, -9.75856],
+ [-36.39665, -9.75979],
+ [-36.39655, -9.76244],
+ [-36.39661, -9.76489],
+ [-36.39658, -9.76648],
+ [-36.39661, -9.76684],
+ [-36.39659, -9.7696],
+ [-36.3967, -9.77896],
+ [-36.39675, -9.78464],
+ [-36.39684, -9.79067],
+ [-36.39693, -9.79681],
+ [-36.39703, -9.80298],
+ [-36.39719, -9.82033],
+ [-36.39722, -9.82234],
+ [-36.39392, -9.82233],
+ [-36.35375, -9.82279],
+ [-36.34822, -9.82286],
+ [-36.31697, -9.82317],
+ [-36.31191, -9.82324],
+ [-36.30879, -9.82327],
+ [-36.30643, -9.82332]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "canaan_drone_red_cross_201712",
+ "name": "Canaan - American Red Cross, Dec-2017",
+ "type": "tms",
+ "template": "https://tiles.openaerialmap.org/5ac65a9f91b5310010e0d489/0/5ac65a9f91b5310010e0d48a/{zoom}/{x}/{y}.png",
+ "endDate": "2017-12-20T00:00:00.000Z",
+ "startDate": "2017-12-11T00:00:00.000Z",
+ "polygon": [
+ [
+ [-72.26734, 18.63561],
+ [-72.2636, 18.6373],
+ [-72.26116, 18.64141],
+ [-72.25983, 18.64588],
+ [-72.25811, 18.64742],
+ [-72.24502, 18.64795],
+ [-72.23433, 18.64807],
+ [-72.22734, 18.6482],
+ [-72.21953, 18.65438],
+ [-72.2161, 18.65446],
+ [-72.21584, 18.66222],
+ [-72.21725, 18.66739],
+ [-72.21889, 18.67019],
+ [-72.22309, 18.66958],
+ [-72.22343, 18.67312],
+ [-72.22502, 18.6732],
+ [-72.22545, 18.67609],
+ [-72.23288, 18.67597],
+ [-72.23339, 18.67877],
+ [-72.23674, 18.67857],
+ [-72.23854, 18.67975],
+ [-72.24, 18.68129],
+ [-72.24463, 18.68207],
+ [-72.24682, 18.6817],
+ [-72.24605, 18.67698],
+ [-72.25094, 18.67698],
+ [-72.25511, 18.67902],
+ [-72.25961, 18.67898],
+ [-72.26081, 18.67743],
+ [-72.27038, 18.67711],
+ [-72.27901, 18.67682],
+ [-72.28373, 18.67893],
+ [-72.28613, 18.68154],
+ [-72.29665, 18.68178],
+ [-72.30184, 18.68568],
+ [-72.3012, 18.68824],
+ [-72.30802, 18.69324],
+ [-72.30948, 18.69308],
+ [-72.31699, 18.69682],
+ [-72.32806, 18.70528],
+ [-72.3384, 18.69902],
+ [-72.34012, 18.69666],
+ [-72.33961, 18.69426],
+ [-72.33377, 18.68357],
+ [-72.33135, 18.68192],
+ [-72.32551, 18.68093],
+ [-72.32027, 18.67741],
+ [-72.31626, 18.67477],
+ [-72.31167, 18.672],
+ [-72.308, 18.66995],
+ [-72.30534, 18.66926],
+ [-72.30068, 18.66499],
+ [-72.29796, 18.66479],
+ [-72.29609, 18.66129],
+ [-72.29315, 18.65999],
+ [-72.29519, 18.65497],
+ [-72.28414, 18.64962],
+ [-72.27804, 18.64523],
+ [-72.27487, 18.64212],
+ [-72.27352, 18.64057],
+ [-72.2706, 18.63901],
+ [-72.26734, 18.63561]
+ ]
+ ],
+ "terms_url": "http://americanredcross.github.io/",
+ "terms_text": "American Red Cross",
+ "description": "Drone imagery collected December 2017 for Canaan, Haiti by American Red Cross in coordination with the Haitian Red Cross."
+ },
+ {
+ "id": "Geneve-SITG-2011",
+ "name": "Canton de Génève 5cm (SITG 2011)",
+ "type": "wms",
+ "template": "https://ge.ch/ags2/services/Orthophotos_2011/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2011-01-01T00:00:00.000Z",
+ "startDate": "2011-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [6.18221, 46.22618],
+ [6.18348, 46.22772],
+ [6.18929, 46.23329],
+ [6.19196, 46.23858],
+ [6.19253, 46.24239],
+ [6.19061, 46.24397],
+ [6.19046, 46.24654],
+ [6.19256, 46.25045],
+ [6.19186, 46.25262],
+ [6.19325, 46.256],
+ [6.19287, 46.25776],
+ [6.19543, 46.26181],
+ [6.1979, 46.26454],
+ [6.20045, 46.26569],
+ [6.20917, 46.26634],
+ [6.21716, 46.27388],
+ [6.22046, 46.27895],
+ [6.2275, 46.28649],
+ [6.23433, 46.28955],
+ [6.23643, 46.2932],
+ [6.24074, 46.29774],
+ [6.23958, 46.30396],
+ [6.2413, 46.30529],
+ [6.2432, 46.30453],
+ [6.24513, 46.30492],
+ [6.24627, 46.30372],
+ [6.24983, 46.3027],
+ [6.25032, 46.3014],
+ [6.24938, 46.30018],
+ [6.25146, 46.29647],
+ [6.25063, 46.29451],
+ [6.25223, 46.29382],
+ [6.25429, 46.2907],
+ [6.25231, 46.28735],
+ [6.25032, 46.2868],
+ [6.24974, 46.28574],
+ [6.24636, 46.28433],
+ [6.24323, 46.28428],
+ [6.23985, 46.28098],
+ [6.23934, 46.27627],
+ [6.24372, 46.27356],
+ [6.25113, 46.26258],
+ [6.26244, 46.2553],
+ [6.26301, 46.25457],
+ [6.262, 46.25215],
+ [6.26736, 46.24887],
+ [6.27732, 46.25211],
+ [6.27725, 46.25298],
+ [6.2832, 46.25503],
+ [6.28231, 46.25568],
+ [6.28278, 46.25677],
+ [6.28868, 46.26046],
+ [6.29154, 46.2644],
+ [6.29457, 46.26556],
+ [6.29729, 46.26489],
+ [6.29783, 46.2631],
+ [6.29541, 46.25827],
+ [6.29663, 46.2566],
+ [6.3024, 46.2558],
+ [6.30678, 46.25753],
+ [6.311, 46.25666],
+ [6.30768, 46.25184],
+ [6.31046, 46.25057],
+ [6.31011, 46.24749],
+ [6.31156, 46.24386],
+ [6.29606, 46.22501],
+ [6.29012, 46.22241],
+ [6.27773, 46.21493],
+ [6.26707, 46.21276],
+ [6.25668, 46.20926],
+ [6.25089, 46.20574],
+ [6.25076, 46.20456],
+ [6.2495, 46.20404],
+ [6.24643, 46.20454],
+ [6.24251, 46.20364],
+ [6.23594, 46.20541],
+ [6.23347, 46.20509],
+ [6.22889, 46.20172],
+ [6.22323, 46.20005],
+ [6.22355, 46.19881],
+ [6.22257, 46.19791],
+ [6.21935, 46.19765],
+ [6.21688, 46.19448],
+ [6.21259, 46.19189],
+ [6.20727, 46.19137],
+ [6.20588, 46.18908],
+ [6.2034, 46.18806],
+ [6.20282, 46.18642],
+ [6.20035, 46.18504],
+ [6.19905, 46.18296],
+ [6.19615, 46.18288],
+ [6.1885, 46.17967],
+ [6.18751, 46.17539],
+ [6.18982, 46.16584],
+ [6.1748, 46.15694],
+ [6.1688, 46.15624],
+ [6.15829, 46.15195],
+ [6.15434, 46.15141],
+ [6.14952, 46.14933],
+ [6.14805, 46.14748],
+ [6.14832, 46.14619],
+ [6.14561, 46.14417],
+ [6.14244, 46.14493],
+ [6.13768, 46.14217],
+ [6.13692, 46.14071],
+ [6.13074, 46.13946],
+ [6.12598, 46.13966],
+ [6.12014, 46.14181],
+ [6.1077, 46.14203],
+ [6.10537, 46.14313],
+ [6.09746, 46.14325],
+ [6.09151, 46.15095],
+ [6.07476, 46.14795],
+ [6.07188, 46.14908],
+ [6.05295, 46.15046],
+ [6.04973, 46.1468],
+ [6.04862, 46.14153],
+ [6.04571, 46.13916],
+ [6.04287, 46.14006],
+ [6.04013, 46.13894],
+ [6.03783, 46.13716],
+ [6.03647, 46.13381],
+ [6.03531, 46.13344],
+ [6.03, 46.13816],
+ [6.02079, 46.14024],
+ [6.01693, 46.14191],
+ [6.01282, 46.14119],
+ [6.00814, 46.14171],
+ [6.00364, 46.14088],
+ [5.99338, 46.1432],
+ [5.98728, 46.14171],
+ [5.98464, 46.14232],
+ [5.98309, 46.13712],
+ [5.97603, 46.1319],
+ [5.97314, 46.13081],
+ [5.97037, 46.13108],
+ [5.96536, 46.12882],
+ [5.96163, 46.12976],
+ [5.9573, 46.12767],
+ [5.95575, 46.12836],
+ [5.95484, 46.13214],
+ [5.9589, 46.13553],
+ [5.96446, 46.13738],
+ [5.96517, 46.13845],
+ [5.9631, 46.14241],
+ [5.96383, 46.14656],
+ [5.97157, 46.1558],
+ [5.97884, 46.16721],
+ [5.98022, 46.17354],
+ [5.98322, 46.17507],
+ [5.98537, 46.17478],
+ [5.98754, 46.17306],
+ [5.99029, 46.17955],
+ [5.9936, 46.18203],
+ [5.98976, 46.18692],
+ [5.98287, 46.18822],
+ [5.98068, 46.1904],
+ [5.96282, 46.1963],
+ [5.96225, 46.19719],
+ [5.96465, 46.20022],
+ [5.97164, 46.20302],
+ [5.96985, 46.20383],
+ [5.96794, 46.20675],
+ [5.97227, 46.21418],
+ [5.97364, 46.21563],
+ [5.97897, 46.21821],
+ [6.00857, 46.24444],
+ [6.01422, 46.24855],
+ [6.06593, 46.28345],
+ [6.11511, 46.31511],
+ [6.12573, 46.31843],
+ [6.12972, 46.31568],
+ [6.12978, 46.31407],
+ [6.13604, 46.30896],
+ [6.14179, 46.30555],
+ [6.15393, 46.30014],
+ [6.17157, 46.29507],
+ [6.17125, 46.29223],
+ [6.17277, 46.28629],
+ [6.17018, 46.28533],
+ [6.16834, 46.28109],
+ [6.17201, 46.27554],
+ [6.1722, 46.27301],
+ [6.1691, 46.26785],
+ [6.16746, 46.26217],
+ [6.16531, 46.26195],
+ [6.16455, 46.26274],
+ [6.15943, 46.25898],
+ [6.15532, 46.25216],
+ [6.15387, 46.25212],
+ [6.15273, 46.25037],
+ [6.15311, 46.2477],
+ [6.15494, 46.24591],
+ [6.1521, 46.23878],
+ [6.15217, 46.23273],
+ [6.15034, 46.22659],
+ [6.15454, 46.22191],
+ [6.15483, 46.22044],
+ [6.15296, 46.21738],
+ [6.154, 46.21355],
+ [6.1571, 46.21097],
+ [6.16263, 46.21043],
+ [6.16387, 46.2097],
+ [6.16911, 46.21191],
+ [6.16867, 46.21318],
+ [6.17073, 46.21478],
+ [6.17471, 46.21603],
+ [6.18221, 46.22618]
+ ],
+ [
+ [6.18834, 46.34901],
+ [6.18696, 46.34862],
+ [6.18195, 46.35015],
+ [6.17961, 46.352],
+ [6.17142, 46.35444],
+ [6.17022, 46.35911],
+ [6.17415, 46.36036],
+ [6.17272, 46.36189],
+ [6.17348, 46.36288],
+ [6.17999, 46.36547],
+ [6.1877, 46.36132],
+ [6.19447, 46.36175],
+ [6.19905, 46.36086],
+ [6.20113, 46.35634],
+ [6.20258, 46.35567],
+ [6.20791, 46.35583],
+ [6.21374, 46.35379],
+ [6.21247, 46.35085],
+ [6.20846, 46.34665],
+ [6.2086, 46.33991],
+ [6.20659, 46.33792],
+ [6.20493, 46.33861],
+ [6.20348, 46.33793],
+ [6.19181, 46.34333],
+ [6.19318, 46.34787],
+ [6.19076, 46.3477],
+ [6.18834, 46.34901]
+ ],
+ [
+ [6.18182, 46.34281],
+ [6.18016, 46.34318],
+ [6.1752, 46.34532],
+ [6.17341, 46.34398],
+ [6.17324, 46.34054],
+ [6.1714, 46.33952],
+ [6.16588, 46.34254],
+ [6.16564, 46.34339],
+ [6.17091, 46.35054],
+ [6.17341, 46.35029],
+ [6.17458, 46.35192],
+ [6.17587, 46.35205],
+ [6.18579, 46.34593],
+ [6.18182, 46.34281]
+ ]
+ ],
+ "terms_url": "http://ge.ch/sitg/donnees/conditions-d-utilisation/open-data",
+ "terms_text": "Orthophotos du SITG 2011"
+ },
+ {
+ "id": "CTFRIBOURG2016",
+ "name": "Canton Fribourg 2016",
+ "type": "tms",
+ "template": "https://mapproxy.osm.ch/tiles/fribourg_2016/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
+ "endDate": "2016-01-01T00:00:00.000Z",
+ "startDate": "2016-01-01T00:00:00.000Z",
+ "scaleExtent": [1, 21],
+ "polygon": [
+ [
+ [6.79478, 46.57542],
+ [6.79949, 46.57407],
+ [6.80256, 46.57491],
+ [6.80336, 46.57687],
+ [6.80427, 46.57664],
+ [6.80489, 46.57792],
+ [6.80794, 46.57761],
+ [6.8094, 46.57885],
+ [6.81084, 46.57896],
+ [6.81322, 46.57823],
+ [6.81153, 46.58099],
+ [6.8142, 46.58396],
+ [6.81411, 46.58567],
+ [6.8206, 46.58368],
+ [6.82371, 46.57747],
+ [6.82693, 46.57796],
+ [6.82927, 46.57637],
+ [6.83485, 46.57533],
+ [6.83744, 46.57677],
+ [6.83691, 46.57748],
+ [6.83982, 46.57896],
+ [6.84239, 46.58244],
+ [6.84532, 46.58276],
+ [6.84644, 46.58394],
+ [6.84857, 46.58331],
+ [6.85087, 46.58113],
+ [6.85262, 46.58197],
+ [6.85996, 46.57987],
+ [6.86554, 46.57725],
+ [6.86507, 46.57623],
+ [6.8679, 46.57515],
+ [6.87446, 46.56497],
+ [6.8845, 46.56195],
+ [6.88686, 46.56341],
+ [6.89214, 46.5679],
+ [6.89918, 46.56671],
+ [6.89885, 46.56499],
+ [6.89393, 46.55991],
+ [6.88822, 46.55815],
+ [6.86839, 46.54164],
+ [6.86498, 46.53896],
+ [6.86015, 46.53597],
+ [6.85563, 46.54086],
+ [6.85501, 46.54144],
+ [6.85087, 46.54111],
+ [6.8407, 46.53819],
+ [6.83032, 46.53744],
+ [6.82783, 46.54298],
+ [6.82553, 46.54357],
+ [6.81278, 46.52707],
+ [6.81088, 46.52513],
+ [6.81534, 46.52139],
+ [6.8181, 46.5165],
+ [6.82263, 46.51411],
+ [6.82429, 46.51207],
+ [6.83034, 46.51246],
+ [6.83239, 46.50544],
+ [6.83503, 46.50231],
+ [6.84126, 46.49706],
+ [6.84294, 46.49632],
+ [6.84554, 46.49667],
+ [6.84775, 46.49369],
+ [6.84891, 46.49337],
+ [6.85729, 46.49305],
+ [6.86276, 46.49384],
+ [6.86634, 46.50079],
+ [6.87244, 46.50431],
+ [6.88168, 46.51257],
+ [6.8967, 46.52044],
+ [6.89773, 46.52005],
+ [6.89711, 46.51766],
+ [6.89767, 46.51483],
+ [6.89522, 46.51079],
+ [6.89572, 46.50773],
+ [6.89974, 46.51039],
+ [6.90142, 46.51233],
+ [6.92517, 46.50769],
+ [6.92759, 46.50467],
+ [6.93363, 46.50167],
+ [6.93674, 46.50096],
+ [6.95614, 46.49949],
+ [6.97239, 46.48879],
+ [6.97581, 46.4784],
+ [6.97783, 46.47289],
+ [6.97815, 46.46833],
+ [6.97906, 46.46107],
+ [6.98016, 46.45896],
+ [6.99212, 46.44891],
+ [6.98361, 46.43873],
+ [6.98394, 46.43799],
+ [6.98746, 46.43794],
+ [7.01786, 46.44707],
+ [7.02103, 46.45729],
+ [7.06583, 46.48904],
+ [7.0724, 46.4864],
+ [7.10037, 46.48699],
+ [7.12279, 46.49869],
+ [7.1264, 46.50317],
+ [7.13096, 46.50466],
+ [7.13624, 46.50861],
+ [7.13704, 46.51308],
+ [7.14005, 46.51688],
+ [7.14044, 46.51988],
+ [7.14318, 46.52183],
+ [7.1437, 46.52475],
+ [7.1453, 46.52701],
+ [7.14835, 46.52846],
+ [7.15834, 46.52681],
+ [7.16346, 46.52855],
+ [7.16709, 46.53101],
+ [7.18234, 46.53837],
+ [7.19218, 46.54656],
+ [7.20081, 46.54169],
+ [7.20108, 46.543],
+ [7.20765, 46.53291],
+ [7.21417, 46.53762],
+ [7.21811, 46.54211],
+ [7.22171, 46.54481],
+ [7.22311, 46.5476],
+ [7.22543, 46.54923],
+ [7.2322, 46.55123],
+ [7.23614, 46.554],
+ [7.24047, 46.55424],
+ [7.24705, 46.55623],
+ [7.25574, 46.56029],
+ [7.26385, 46.56752],
+ [7.2681, 46.57369],
+ [7.28136, 46.58411],
+ [7.2992, 46.5791],
+ [7.30805, 46.58132],
+ [7.31254, 46.58917],
+ [7.3207, 46.59183],
+ [7.31479, 46.60042],
+ [7.3162, 46.60937],
+ [7.31826, 46.61615],
+ [7.3178, 46.61856],
+ [7.31213, 46.6217],
+ [7.31327, 46.63662],
+ [7.32284, 46.63731],
+ [7.32684, 46.63873],
+ [7.32975, 46.64171],
+ [7.32787, 46.64616],
+ [7.321, 46.65465],
+ [7.32345, 46.65526],
+ [7.32914, 46.65459],
+ [7.33116, 46.65522],
+ [7.33403, 46.65471],
+ [7.34549, 46.6553],
+ [7.34756, 46.65307],
+ [7.35063, 46.65164],
+ [7.35079, 46.64799],
+ [7.35456, 46.64669],
+ [7.3558, 46.64533],
+ [7.35528, 46.64193],
+ [7.35714, 46.63927],
+ [7.35877, 46.64418],
+ [7.36209, 46.64683],
+ [7.36229, 46.64791],
+ [7.36608, 46.64898],
+ [7.37747, 46.65636],
+ [7.36933, 46.65564],
+ [7.36953, 46.65748],
+ [7.37103, 46.65907],
+ [7.37083, 46.66085],
+ [7.37187, 46.66283],
+ [7.37122, 46.66375],
+ [7.37252, 46.66757],
+ [7.37108, 46.66942],
+ [7.37649, 46.67503],
+ [7.37293, 46.68012],
+ [7.37777, 46.68357],
+ [7.37587, 46.68645],
+ [7.376, 46.6878],
+ [7.38027, 46.69018],
+ [7.37693, 46.69272],
+ [7.3686, 46.69265],
+ [7.3649, 46.69505],
+ [7.36261, 46.69928],
+ [7.3598, 46.69802],
+ [7.34598, 46.69895],
+ [7.34604, 46.7019],
+ [7.34939, 46.70555],
+ [7.35037, 46.70874],
+ [7.35021, 46.71119],
+ [7.34903, 46.71249],
+ [7.34065, 46.71464],
+ [7.33277, 46.71491],
+ [7.32868, 46.71641],
+ [7.31011, 46.71815],
+ [7.30785, 46.71717],
+ [7.30002, 46.72247],
+ [7.29683, 46.72737],
+ [7.29685, 46.73565],
+ [7.29834, 46.74013],
+ [7.30304, 46.74517],
+ [7.30454, 46.74816],
+ [7.30486, 46.75026],
+ [7.30335, 46.7514],
+ [7.30309, 46.75261],
+ [7.30359, 46.75919],
+ [7.29987, 46.76375],
+ [7.29881, 46.76513],
+ [7.29307, 46.77136],
+ [7.29532, 46.77537],
+ [7.29639, 46.77729],
+ [7.30081, 46.77905],
+ [7.30053, 46.78064],
+ [7.30113, 46.78134],
+ [7.30447, 46.78321],
+ [7.30447, 46.78415],
+ [7.30207, 46.78638],
+ [7.30351, 46.78887],
+ [7.30201, 46.79079],
+ [7.30159, 46.79283],
+ [7.30732, 46.79872],
+ [7.31044, 46.80823],
+ [7.31537, 46.81246],
+ [7.32028, 46.8149],
+ [7.32047, 46.81564],
+ [7.32072, 46.82011],
+ [7.31981, 46.82515],
+ [7.32891, 46.829],
+ [7.3302, 46.82968],
+ [7.33123, 46.83177],
+ [7.33103, 46.8328],
+ [7.32926, 46.83563],
+ [7.32333, 46.84041],
+ [7.30755, 46.84704],
+ [7.30775, 46.84808],
+ [7.30613, 46.84999],
+ [7.31207, 46.85557],
+ [7.31351, 46.85936],
+ [7.31739, 46.8606],
+ [7.32087, 46.86154],
+ [7.32576, 46.85681],
+ [7.323, 46.85476],
+ [7.32603, 46.85163],
+ [7.33181, 46.8512],
+ [7.33536, 46.85043],
+ [7.33678, 46.84979],
+ [7.33821, 46.84946],
+ [7.34726, 46.85375],
+ [7.34934, 46.85331],
+ [7.35167, 46.85502],
+ [7.35444, 46.85875],
+ [7.35772, 46.86065],
+ [7.35925, 46.86311],
+ [7.35794, 46.86513],
+ [7.35838, 46.8688],
+ [7.35738, 46.8701],
+ [7.35386, 46.87129],
+ [7.35253, 46.87555],
+ [7.35339, 46.88676],
+ [7.34843, 46.88934],
+ [7.32573, 46.89373],
+ [7.30935, 46.89152],
+ [7.29618, 46.89377],
+ [7.28938, 46.89377],
+ [7.28639, 46.89269],
+ [7.28245, 46.8898],
+ [7.2802, 46.8896],
+ [7.27259, 46.89249],
+ [7.26634, 46.89361],
+ [7.25931, 46.89797],
+ [7.24433, 46.90037],
+ [7.24314, 46.89792],
+ [7.23633, 46.89809],
+ [7.23203, 46.90029],
+ [7.2309, 46.9024],
+ [7.23032, 46.90394],
+ [7.22351, 46.90276],
+ [7.21755, 46.89735],
+ [7.21244, 46.90173],
+ [7.2088, 46.9026],
+ [7.20781, 46.90913],
+ [7.20578, 46.91477],
+ [7.20692, 46.92481],
+ [7.2111, 46.92527],
+ [7.21854, 46.92434],
+ [7.2342, 46.92939],
+ [7.23411, 46.93669],
+ [7.23477, 46.93827],
+ [7.2302, 46.93995],
+ [7.2282, 46.93881],
+ [7.22555, 46.93633],
+ [7.2174, 46.93307],
+ [7.2093, 46.93334],
+ [7.20823, 46.93323],
+ [7.2058, 46.94023],
+ [7.2055, 46.94112],
+ [7.20951, 46.94188],
+ [7.21027, 46.94302],
+ [7.21044, 46.94569],
+ [7.21011, 46.94781],
+ [7.20885, 46.95435],
+ [7.21102, 46.95652],
+ [7.20838, 46.95768],
+ [7.20742, 46.95967],
+ [7.19764, 46.96065],
+ [7.19459, 46.96135],
+ [7.19463, 46.9629],
+ [7.19552, 46.96416],
+ [7.19633, 46.96365],
+ [7.19794, 46.96445],
+ [7.1993, 46.9638],
+ [7.20646, 46.96413],
+ [7.20745, 46.96751],
+ [7.21422, 46.96692],
+ [7.21467, 46.97133],
+ [7.21739, 46.97147],
+ [7.21686, 46.97271],
+ [7.22247, 46.97454],
+ [7.22163, 46.97556],
+ [7.22821, 46.97836],
+ [7.23569, 46.98456],
+ [7.23486, 46.98675],
+ [7.22594, 46.9924],
+ [7.22625, 46.99868],
+ [7.22575, 46.99915],
+ [7.21779, 47.00641],
+ [7.21299, 47.0068],
+ [7.09058, 46.978],
+ [7.03295, 46.98265],
+ [6.73785, 46.81195],
+ [6.73908, 46.71021],
+ [6.81908, 46.65533],
+ [6.82741, 46.65982],
+ [6.82089, 46.65179],
+ [6.81729, 46.64923],
+ [6.81851, 46.6478],
+ [6.81458, 46.64747],
+ [6.81344, 46.64953],
+ [6.81194, 46.6492],
+ [6.81081, 46.65038],
+ [6.80674, 46.65059],
+ [6.80203, 46.64889],
+ [6.79891, 46.64914],
+ [6.79879, 46.64781],
+ [6.80367, 46.64567],
+ [6.80325, 46.6448],
+ [6.8038, 46.64451],
+ [6.80321, 46.64376],
+ [6.80171, 46.64421],
+ [6.79895, 46.63959],
+ [6.79692, 46.63314],
+ [6.79838, 46.63016],
+ [6.80043, 46.62991],
+ [6.80065, 46.62843],
+ [6.80172, 46.62854],
+ [6.80228, 46.62775],
+ [6.80197, 46.62507],
+ [6.80355, 46.62124],
+ [6.80244, 46.61877],
+ [6.80296, 46.61615],
+ [6.80185, 46.61555],
+ [6.80389, 46.60903],
+ [6.80239, 46.60142],
+ [6.79833, 46.59986],
+ [6.8002, 46.59362],
+ [6.80124, 46.5925],
+ [6.79848, 46.58616],
+ [6.79948, 46.58559],
+ [6.79894, 46.58205],
+ [6.79611, 46.57932],
+ [6.79626, 46.57728],
+ [6.79478, 46.57542]
+ ]
+ ],
+ "terms_text": "Canton Fribourg 2016 'orthophoto technique'"
+ },
+ {
+ "id": "Canvec",
+ "name": "Canvec - English",
+ "type": "wms",
+ "template": "https://maps.geogratis.gc.ca/wms/canvec_en?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=canvec&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-141.0678, 60.2442],
+ [-139.3842, 60.10331],
+ [-137.4746, 58.82791],
+ [-135.4766, 59.65971],
+ [-134.399, 58.86279],
+ [-132.5239, 57.08342],
+ [-130.1435, 55.27452],
+ [-130.7734, 54.75597],
+ [-132.4355, 54.71514],
+ [-134.5711, 54.38827],
+ [-141.7761, 53.58405],
+ [-128.9768, 46.41459],
+ [-124.8087, 48.42976],
+ [-123.4286, 48.17889],
+ [-123.0256, 48.40444],
+ [-123.19237, 48.65504],
+ [-122.99582, 48.51065],
+ [-122.4869, 48.4098],
+ [-122.32915, 48.4528],
+ [-122.22939, 48.50649],
+ [-122.17908, 48.52965],
+ [-122.1842, 48.5669],
+ [-121.77833, 48.57593],
+ [-121.66578, 48.42791],
+ [-121.33068, 48.35714],
+ [-121.02713, 48.34977],
+ [-121.03054, 48.49406],
+ [-120.698, 48.51497],
+ [-120.51041, 48.8718],
+ [-119.97579, 48.88134],
+ [-119.95447, 48.51497],
+ [-119.90758, 48.29421],
+ [-119.73193, 48.15503],
+ [-119.74386, 48.07419],
+ [-119.62279, 48.10951],
+ [-119.60232, 48.14707],
+ [-119.25273, 48.16243],
+ [-114.1499, 48.99487],
+ [-95.12094, 48.98405],
+ [-95.13419, 49.35564],
+ [-94.94415, 49.34356],
+ [-94.8839, 49.29522],
+ [-94.71704, 48.87631],
+ [-94.71791, 48.7485],
+ [-93.83204, 48.49765],
+ [-93.43778, 48.53066],
+ [-93.38216, 48.59507],
+ [-92.98471, 48.60312],
+ [-92.73847, 48.50725],
+ [-92.7095, 48.42081],
+ [-92.54293, 48.40158],
+ [-92.38361, 48.20406],
+ [-92.11564, 48.27641],
+ [-91.58697, 48.02516],
+ [-91.24658, 48.05422],
+ [-90.86275, 48.20889],
+ [-90.78308, 48.0639],
+ [-90.0774, 48.07435],
+ [-89.93835, 47.96584],
+ [-89.75469, 47.99609],
+ [-89.32745, 47.93943],
+ [-88.41489, 48.26677],
+ [-84.9566, 46.86086],
+ [-84.84795, 46.6762],
+ [-84.55904, 46.45441],
+ [-84.47642, 46.44972],
+ [-84.43758, 46.48872],
+ [-84.3669, 46.5055],
+ [-84.34899, 46.5055],
+ [-84.29026, 46.49077],
+ [-84.25742, 46.49386],
+ [-84.22507, 46.53187],
+ [-84.1962, 46.53804],
+ [-84.18027, 46.52468],
+ [-84.15987, 46.52468],
+ [-84.13449, 46.52879],
+ [-84.11558, 46.50653],
+ [-84.15944, 46.42769],
+ [-84.10024, 46.20338],
+ [-83.95558, 46.05132],
+ [-83.8864, 46.06125],
+ [-83.8203, 46.11181],
+ [-83.76975, 46.09563],
+ [-83.67498, 46.11391],
+ [-83.58084, 46.09921],
+ [-83.44747, 45.99521],
+ [-83.60888, 45.81772],
+ [-82.14271, 43.57905],
+ [-82.39133, 43.06666],
+ [-82.41252, 43.01127],
+ [-82.42522, 42.99864],
+ [-82.42618, 42.99374],
+ [-82.42363, 42.98536],
+ [-82.41503, 42.97697],
+ [-82.41853, 42.96578],
+ [-82.43064, 42.95203],
+ [-82.44911, 42.93711],
+ [-82.45739, 42.92568],
+ [-82.46472, 42.90562],
+ [-82.47228, 42.8877],
+ [-82.47228, 42.84743],
+ [-82.48536, 42.80967],
+ [-82.46844, 42.76365],
+ [-82.48586, 42.73697],
+ [-82.49155, 42.71168],
+ [-82.51488, 42.66652],
+ [-82.51224, 42.63893],
+ [-82.52421, 42.61103],
+ [-82.56854, 42.58184],
+ [-82.59498, 42.55148],
+ [-82.61286, 42.56409],
+ [-82.65158, 42.55707],
+ [-82.83439, 42.3763],
+ [-83.01489, 42.33457],
+ [-83.07244, 42.31502],
+ [-83.09647, 42.29542],
+ [-83.12823, 42.24126],
+ [-83.14167, 42.18582],
+ [-83.12799, 42.12172],
+ [-83.16266, 42.04963],
+ [-83.05136, 41.70911],
+ [-82.41932, 41.6377],
+ [-81.22563, 42.19633],
+ [-80.06688, 42.37121],
+ [-78.86642, 42.825],
+ [-78.90301, 42.92307],
+ [-78.92063, 42.95234],
+ [-78.93331, 42.95708],
+ [-78.96058, 42.9595],
+ [-78.98479, 42.9761],
+ [-79.01825, 42.9964],
+ [-79.01969, 43.01561],
+ [-79.00695, 43.0333],
+ [-78.99599, 43.06448],
+ [-79.07335, 43.07876],
+ [-79.07286, 43.083],
+ [-79.0652, 43.0917],
+ [-79.05623, 43.10825],
+ [-79.05982, 43.11563],
+ [-79.06764, 43.11992],
+ [-79.05411, 43.12801],
+ [-79.04112, 43.13986],
+ [-79.04465, 43.16192],
+ [-79.05101, 43.17037],
+ [-79.04758, 43.19974],
+ [-79.05511, 43.25682],
+ [-79.18688, 43.44858],
+ [-78.68836, 43.62502],
+ [-76.77647, 43.61369],
+ [-76.41665, 44.08498],
+ [-75.49023, 44.70772],
+ [-75.29544, 44.82587],
+ [-75.16845, 44.88548],
+ [-75.1275, 44.8975],
+ [-75.00499, 44.95265],
+ [-74.98159, 44.97728],
+ [-74.90496, 44.98222],
+ [-74.8313, 45.01108],
+ [-74.77954, 45.00158],
+ [-74.74562, 44.98526],
+ [-74.70475, 44.99877],
+ [-74.49079, 44.99343],
+ [-74.23203, 44.98552],
+ [-73.93713, 44.99512],
+ [-73.01809, 45.0121],
+ [-72.63177, 45.0121],
+ [-72.54779, 45.00506],
+ [-72.32259, 45.00286],
+ [-71.49404, 45.01093],
+ [-71.48648, 45.06221],
+ [-71.42303, 45.12765],
+ [-71.43112, 45.14037],
+ [-71.37175, 45.22117],
+ [-71.28959, 45.28578],
+ [-71.23613, 45.24302],
+ [-71.11683, 45.22933],
+ [-71.0531, 45.29866],
+ [-70.98936, 45.31088],
+ [-70.90246, 45.22525],
+ [-70.82473, 45.22714],
+ [-70.77626, 45.40013],
+ [-70.7119, 45.3754],
+ [-70.63387, 45.37346],
+ [-70.60302, 45.41179],
+ [-70.67659, 45.56319],
+ [-70.3752, 45.73075],
+ [-70.36334, 45.82013],
+ [-70.25417, 45.87468],
+ [-70.22569, 45.94403],
+ [-70.27316, 45.99022],
+ [-70.17586, 46.33538],
+ [-70.06195, 46.4107],
+ [-69.98891, 46.69363],
+ [-69.22424, 47.44463],
+ [-69.06999, 47.41092],
+ [-69.07473, 47.24202],
+ [-68.89684, 47.17469],
+ [-68.78685, 47.21493],
+ [-68.72415, 47.23217],
+ [-68.68583, 47.24028],
+ [-68.66044, 47.23183],
+ [-68.62162, 47.24028],
+ [-68.59425, 47.24974],
+ [-68.59226, 47.27001],
+ [-68.57385, 47.28486],
+ [-68.55941, 47.2798],
+ [-68.542, 47.2798],
+ [-68.51214, 47.29195],
+ [-68.47381, 47.29229],
+ [-68.46038, 47.28149],
+ [-68.43898, 47.27777],
+ [-68.37229, 47.2825],
+ [-68.3703, 47.34796],
+ [-68.33173, 47.35822],
+ [-68.29664, 47.352],
+ [-68.2399, 47.34897],
+ [-68.0906, 47.26798],
+ [-68.00002, 47.21223],
+ [-67.96344, 47.19753],
+ [-67.93582, 47.15947],
+ [-67.88619, 47.10424],
+ [-67.80218, 47.06386],
+ [-67.79415, 45.93923],
+ [-67.82753, 45.8489],
+ [-67.82753, 45.6704],
+ [-67.54943, 45.57445],
+ [-67.45302, 45.58742],
+ [-67.44189, 45.52251],
+ [-67.54201, 45.49393],
+ [-67.4456, 45.38726],
+ [-67.51605, 45.29343],
+ [-67.38257, 45.11839],
+ [-67.3047, 45.11316],
+ [-67.26762, 45.18116],
+ [-67.12671, 45.09484],
+ [-66.94835, 44.78406],
+ [-66.52283, 43.61294],
+ [-65.02339, 42.10691],
+ [-42.53366, 47.50263],
+ [-75.90901, 77.3176],
+ [-71.86482, 78.7359],
+ [-67.20011, 80.66812],
+ [-66.20727, 80.78637],
+ [-54.82473, 83.07464],
+ [-57.62518, 85.04043],
+ [-106.7949, 85.04625],
+ [-141.3957, 79.2514],
+ [-141.0678, 60.2442]
+ ]
+ ]
+ },
+ {
+ "id": "Canvec_French",
+ "name": "Canvec - French",
+ "type": "wms",
+ "template": "https://maps.geogratis.gc.ca/wms/canvec_fr?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=canvec&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-141.0678, 60.2442],
+ [-139.3842, 60.10331],
+ [-137.4746, 58.82791],
+ [-135.4766, 59.65971],
+ [-134.399, 58.86279],
+ [-132.5239, 57.08342],
+ [-130.1435, 55.27452],
+ [-130.7734, 54.75597],
+ [-132.4355, 54.71514],
+ [-134.5711, 54.38827],
+ [-141.7761, 53.58405],
+ [-128.9768, 46.41459],
+ [-124.8087, 48.42976],
+ [-123.4286, 48.17889],
+ [-123.0256, 48.40444],
+ [-123.19237, 48.65504],
+ [-122.99582, 48.51065],
+ [-122.4869, 48.4098],
+ [-122.32915, 48.4528],
+ [-122.22939, 48.50649],
+ [-122.17908, 48.52965],
+ [-122.1842, 48.5669],
+ [-121.77833, 48.57593],
+ [-121.66578, 48.42791],
+ [-121.33068, 48.35714],
+ [-121.02713, 48.34977],
+ [-121.03054, 48.49406],
+ [-120.698, 48.51497],
+ [-120.51041, 48.8718],
+ [-119.97579, 48.88134],
+ [-119.95447, 48.51497],
+ [-119.90758, 48.29421],
+ [-119.73193, 48.15503],
+ [-119.74386, 48.07419],
+ [-119.62279, 48.10951],
+ [-119.60232, 48.14707],
+ [-119.25273, 48.16243],
+ [-114.1499, 48.99487],
+ [-95.12094, 48.98405],
+ [-95.13419, 49.35564],
+ [-94.94415, 49.34356],
+ [-94.8839, 49.29522],
+ [-94.71704, 48.87631],
+ [-94.71791, 48.7485],
+ [-93.83204, 48.49765],
+ [-93.43778, 48.53066],
+ [-93.38216, 48.59507],
+ [-92.98471, 48.60312],
+ [-92.73847, 48.50725],
+ [-92.7095, 48.42081],
+ [-92.54293, 48.40158],
+ [-92.38361, 48.20406],
+ [-92.11564, 48.27641],
+ [-91.58697, 48.02516],
+ [-91.24658, 48.05422],
+ [-90.86275, 48.20889],
+ [-90.78308, 48.0639],
+ [-90.0774, 48.07435],
+ [-89.93835, 47.96584],
+ [-89.75469, 47.99609],
+ [-89.32745, 47.93943],
+ [-88.41489, 48.26677],
+ [-84.9566, 46.86086],
+ [-84.84795, 46.6762],
+ [-84.55904, 46.45441],
+ [-84.47642, 46.44972],
+ [-84.43758, 46.48872],
+ [-84.3669, 46.5055],
+ [-84.34899, 46.5055],
+ [-84.29026, 46.49077],
+ [-84.25742, 46.49386],
+ [-84.22507, 46.53187],
+ [-84.1962, 46.53804],
+ [-84.18027, 46.52468],
+ [-84.15987, 46.52468],
+ [-84.13449, 46.52879],
+ [-84.11558, 46.50653],
+ [-84.15944, 46.42769],
+ [-84.10024, 46.20338],
+ [-83.95558, 46.05132],
+ [-83.8864, 46.06125],
+ [-83.8203, 46.11181],
+ [-83.76975, 46.09563],
+ [-83.67498, 46.11391],
+ [-83.58084, 46.09921],
+ [-83.44747, 45.99521],
+ [-83.60888, 45.81772],
+ [-82.14271, 43.57905],
+ [-82.39133, 43.06666],
+ [-82.41252, 43.01127],
+ [-82.42522, 42.99864],
+ [-82.42618, 42.99374],
+ [-82.42363, 42.98536],
+ [-82.41503, 42.97697],
+ [-82.41853, 42.96578],
+ [-82.43064, 42.95203],
+ [-82.44911, 42.93711],
+ [-82.45739, 42.92568],
+ [-82.46472, 42.90562],
+ [-82.47228, 42.8877],
+ [-82.47228, 42.84743],
+ [-82.48536, 42.80967],
+ [-82.46844, 42.76365],
+ [-82.48586, 42.73697],
+ [-82.49155, 42.71168],
+ [-82.51488, 42.66652],
+ [-82.51224, 42.63893],
+ [-82.52421, 42.61103],
+ [-82.56854, 42.58184],
+ [-82.59498, 42.55148],
+ [-82.61286, 42.56409],
+ [-82.65158, 42.55707],
+ [-82.83439, 42.3763],
+ [-83.01489, 42.33457],
+ [-83.07244, 42.31502],
+ [-83.09647, 42.29542],
+ [-83.12823, 42.24126],
+ [-83.14167, 42.18582],
+ [-83.12799, 42.12172],
+ [-83.16266, 42.04963],
+ [-83.05136, 41.70911],
+ [-82.41932, 41.6377],
+ [-81.22563, 42.19633],
+ [-80.06688, 42.37121],
+ [-78.86642, 42.825],
+ [-78.90301, 42.92307],
+ [-78.92063, 42.95234],
+ [-78.93331, 42.95708],
+ [-78.96058, 42.9595],
+ [-78.98479, 42.9761],
+ [-79.01825, 42.9964],
+ [-79.01969, 43.01561],
+ [-79.00695, 43.0333],
+ [-78.99599, 43.06448],
+ [-79.07335, 43.07876],
+ [-79.07286, 43.083],
+ [-79.0652, 43.0917],
+ [-79.05623, 43.10825],
+ [-79.05982, 43.11563],
+ [-79.06764, 43.11992],
+ [-79.05411, 43.12801],
+ [-79.04112, 43.13986],
+ [-79.04465, 43.16192],
+ [-79.05101, 43.17037],
+ [-79.04758, 43.19974],
+ [-79.05511, 43.25682],
+ [-79.18688, 43.44858],
+ [-78.68836, 43.62502],
+ [-76.77647, 43.61369],
+ [-76.41665, 44.08498],
+ [-75.49023, 44.70772],
+ [-75.29544, 44.82587],
+ [-75.16845, 44.88548],
+ [-75.1275, 44.8975],
+ [-75.00499, 44.95265],
+ [-74.98159, 44.97728],
+ [-74.90496, 44.98222],
+ [-74.8313, 45.01108],
+ [-74.77954, 45.00158],
+ [-74.74562, 44.98526],
+ [-74.70475, 44.99877],
+ [-74.49079, 44.99343],
+ [-74.23203, 44.98552],
+ [-73.93713, 44.99512],
+ [-73.01809, 45.0121],
+ [-72.63177, 45.0121],
+ [-72.54779, 45.00506],
+ [-72.32259, 45.00286],
+ [-71.49404, 45.01093],
+ [-71.48648, 45.06221],
+ [-71.42303, 45.12765],
+ [-71.43112, 45.14037],
+ [-71.37175, 45.22117],
+ [-71.28959, 45.28578],
+ [-71.23613, 45.24302],
+ [-71.11683, 45.22933],
+ [-71.0531, 45.29866],
+ [-70.98936, 45.31088],
+ [-70.90246, 45.22525],
+ [-70.82473, 45.22714],
+ [-70.77626, 45.40013],
+ [-70.7119, 45.3754],
+ [-70.63387, 45.37346],
+ [-70.60302, 45.41179],
+ [-70.67659, 45.56319],
+ [-70.3752, 45.73075],
+ [-70.36334, 45.82013],
+ [-70.25417, 45.87468],
+ [-70.22569, 45.94403],
+ [-70.27316, 45.99022],
+ [-70.17586, 46.33538],
+ [-70.06195, 46.4107],
+ [-69.98891, 46.69363],
+ [-69.22424, 47.44463],
+ [-69.06999, 47.41092],
+ [-69.07473, 47.24202],
+ [-68.89684, 47.17469],
+ [-68.78685, 47.21493],
+ [-68.72415, 47.23217],
+ [-68.68583, 47.24028],
+ [-68.66044, 47.23183],
+ [-68.62162, 47.24028],
+ [-68.59425, 47.24974],
+ [-68.59226, 47.27001],
+ [-68.57385, 47.28486],
+ [-68.55941, 47.2798],
+ [-68.542, 47.2798],
+ [-68.51214, 47.29195],
+ [-68.47381, 47.29229],
+ [-68.46038, 47.28149],
+ [-68.43898, 47.27777],
+ [-68.37229, 47.2825],
+ [-68.3703, 47.34796],
+ [-68.33173, 47.35822],
+ [-68.29664, 47.352],
+ [-68.2399, 47.34897],
+ [-68.0906, 47.26798],
+ [-68.00002, 47.21223],
+ [-67.96344, 47.19753],
+ [-67.93582, 47.15947],
+ [-67.88619, 47.10424],
+ [-67.80218, 47.06386],
+ [-67.79415, 45.93923],
+ [-67.82753, 45.8489],
+ [-67.82753, 45.6704],
+ [-67.54943, 45.57445],
+ [-67.45302, 45.58742],
+ [-67.44189, 45.52251],
+ [-67.54201, 45.49393],
+ [-67.4456, 45.38726],
+ [-67.51605, 45.29343],
+ [-67.38257, 45.11839],
+ [-67.3047, 45.11316],
+ [-67.26762, 45.18116],
+ [-67.12671, 45.09484],
+ [-66.94835, 44.78406],
+ [-66.52283, 43.61294],
+ [-65.02339, 42.10691],
+ [-42.53366, 47.50263],
+ [-75.90901, 77.3176],
+ [-71.86482, 78.7359],
+ [-67.20011, 80.66812],
+ [-66.20727, 80.78637],
+ [-54.82473, 83.07464],
+ [-57.62518, 85.04043],
+ [-106.7949, 85.04625],
+ [-141.3957, 79.2514],
+ [-141.0678, 60.2442]
+ ]
+ ]
+ },
+ {
+ "id": "capela_al",
+ "name": "Capela AL",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Capela&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-36.03321, -9.45741],
+ [-36.03322, -9.45581],
+ [-36.03336, -9.45483],
+ [-36.0334, -9.45291],
+ [-36.03327, -9.45141],
+ [-36.03336, -9.44287],
+ [-36.0335, -9.43821],
+ [-36.03353, -9.42881],
+ [-36.03363, -9.42027],
+ [-36.03389, -9.41091],
+ [-36.03389, -9.40032],
+ [-36.03401, -9.3888],
+ [-36.03413, -9.38528],
+ [-36.03428, -9.38265],
+ [-36.03417, -9.37849],
+ [-36.03444, -9.36688],
+ [-36.05246, -9.3671],
+ [-36.05791, -9.36711],
+ [-36.0716, -9.36727],
+ [-36.08622, -9.36731],
+ [-36.103, -9.3675],
+ [-36.11652, -9.36755],
+ [-36.12515, -9.36768],
+ [-36.12522, -9.37473],
+ [-36.12521, -9.37721],
+ [-36.12511, -9.38038],
+ [-36.12514, -9.38529],
+ [-36.12505, -9.39026],
+ [-36.12504, -9.39477],
+ [-36.12506, -9.40172],
+ [-36.12499, -9.40382],
+ [-36.1248, -9.40679],
+ [-36.12463, -9.41123],
+ [-36.12474, -9.4136],
+ [-36.12456, -9.4163],
+ [-36.12459, -9.42461],
+ [-36.12466, -9.42691],
+ [-36.12465, -9.42925],
+ [-36.12457, -9.4297],
+ [-36.12464, -9.43538],
+ [-36.12438, -9.44109],
+ [-36.12446, -9.44387],
+ [-36.12452, -9.44579],
+ [-36.12438, -9.44736],
+ [-36.12448, -9.44856],
+ [-36.12448, -9.45095],
+ [-36.12436, -9.45392],
+ [-36.12434, -9.45791],
+ [-36.11758, -9.45783],
+ [-36.1089, -9.45778],
+ [-36.10419, -9.4578],
+ [-36.10116, -9.45773],
+ [-36.0953, -9.45773],
+ [-36.08461, -9.45767],
+ [-36.07361, -9.45757],
+ [-36.05726, -9.45741],
+ [-36.04816, -9.45747],
+ [-36.04177, -9.45739],
+ [-36.03767, -9.45739],
+ [-36.03321, -9.45741]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "Cartoriviera-2012",
+ "name": "Cartoriviera - Orthophoto 2012",
+ "type": "tms",
+ "template": "http://osmdata.asitvd.ch/tiles/cartoriviera2012/{zoom}/{x}/{y}.png",
+ "endDate": "2012-01-01T00:00:00.000Z",
+ "startDate": "2012-01-01T00:00:00.000Z",
+ "scaleExtent": [14, 20],
+ "polygon": [
+ [
+ [7.02235, 46.42856],
+ [7.0224, 46.42045],
+ [7.02176, 46.41955],
+ [7.02225, 46.41954],
+ [7.02161, 46.41749],
+ [7.02242, 46.4174],
+ [7.02242, 46.41681],
+ [7.02113, 46.41443],
+ [7.02164, 46.41259],
+ [7.0216, 46.41188],
+ [7.01918, 46.41055],
+ [7.01896, 46.41004],
+ [7.01757, 46.40826],
+ [7.01426, 46.40696],
+ [7.00948, 46.40695],
+ [7.00952, 46.40451],
+ [7.00368, 46.40153],
+ [6.97052, 46.40139],
+ [6.97056, 46.39354],
+ [6.96507, 46.38333],
+ [6.89379, 46.383],
+ [6.89327, 46.39209],
+ [6.8968, 46.4],
+ [6.89678, 46.40097],
+ [6.89395, 46.401],
+ [6.89768, 46.40888],
+ [6.89246, 46.41386],
+ [6.89237, 46.41807],
+ [6.8949, 46.4193],
+ [6.89285, 46.41948],
+ [6.89395, 46.42312],
+ [6.89225, 46.42339],
+ [6.89219, 46.42802],
+ [6.88743, 46.428],
+ [6.87652, 46.43163],
+ [6.86624, 46.43633],
+ [6.84003, 46.44591],
+ [6.83504, 46.44934],
+ [6.827, 46.45204],
+ [6.82695, 46.45379],
+ [6.81953, 46.45655],
+ [6.80361, 46.45993],
+ [6.78775, 46.46253],
+ [6.78697, 46.5246],
+ [6.82604, 46.5248],
+ [6.82609, 46.52662],
+ [6.83907, 46.5267],
+ [6.83888, 46.55006],
+ [6.90658, 46.55042],
+ [6.912, 46.54301],
+ [6.91083, 46.53983],
+ [6.90979, 46.53512],
+ [6.90931, 46.53517],
+ [6.90867, 46.53373],
+ [6.91195, 46.53297],
+ [6.91335, 46.53604],
+ [6.9268, 46.53364],
+ [6.92723, 46.5349],
+ [6.93714, 46.53311],
+ [6.93691, 46.5327],
+ [6.94028, 46.53196],
+ [6.94164, 46.53477],
+ [6.94309, 46.53455],
+ [6.94345, 46.53528],
+ [6.95641, 46.53003],
+ [6.95632, 46.52733],
+ [6.95111, 46.52725],
+ [6.95301, 46.52611],
+ [6.94341, 46.52605],
+ [6.94343, 46.52546],
+ [7.01629, 46.52568],
+ [7.02158, 46.52211],
+ [7.02196, 46.47355],
+ [7.07099, 46.47368],
+ [7.07402, 46.4719],
+ [7.07383, 46.4326],
+ [7.05947, 46.43233],
+ [7.05278, 46.42879],
+ [7.02235, 46.42856]
+ ]
+ ],
+ "terms_url": "https://map.cartoriviera.ch/?baselayer_ref=orthos_2012_mobile&baselayer_opacity=100",
+ "terms_text": "Cartoriviera"
+ },
+ {
+ "id": "Catastro-Spain",
+ "name": "Catastro Spain",
+ "type": "wms",
+ "template": "http://ovc.catastro.meh.es/Cartografia/WMS/ServidorWMS.aspx?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=Catastro&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-17.88463, 28.44606],
+ [-17.89395, 28.52255],
+ [-18.02125, 28.74819],
+ [-18.02241, 28.80384],
+ [-17.9424, 28.87261],
+ [-17.89118, 28.87371],
+ [-17.89033, 28.85151],
+ [-17.76759, 28.85378],
+ [-17.76698, 28.83122],
+ [-17.74127, 28.832],
+ [-17.73949, 28.76422],
+ [-17.71398, 28.76497],
+ [-17.71293, 28.73037],
+ [-17.75744, 28.69318],
+ [-17.75708, 28.67413],
+ [-17.74579, 28.67435],
+ [-17.74573, 28.61656],
+ [-17.75197, 28.58337],
+ [-17.76225, 28.5592],
+ [-17.78331, 28.54167],
+ [-17.78316, 28.49366],
+ [-17.80861, 28.4925],
+ [-17.80601, 28.4469],
+ [-17.88463, 28.44606]
+ ],
+ [
+ [-18.1661, 27.78516],
+ [-18.16349, 27.69492],
+ [-18.08898, 27.69634],
+ [-18.08734, 27.67387],
+ [-18.03641, 27.67537],
+ [-18.03501, 27.63026],
+ [-17.959, 27.6324],
+ [-17.86033, 27.7926],
+ [-17.86303, 27.83688],
+ [-17.8884, 27.83649],
+ [-17.88913, 27.85905],
+ [-17.99065, 27.85675],
+ [-18.03868, 27.76558],
+ [-18.11464, 27.76379],
+ [-18.11546, 27.78636],
+ [-18.1661, 27.78516]
+ ],
+ [
+ [-17.36038, 28.06398],
+ [-17.36297, 28.17572],
+ [-17.33756, 28.17637],
+ [-17.33846, 28.2213],
+ [-17.18579, 28.22388],
+ [-17.08208, 28.13518],
+ [-17.08084, 28.068],
+ [-17.13154, 28.06681],
+ [-17.15633, 28.02146],
+ [-17.23211, 28.02037],
+ [-17.23199, 27.99804],
+ [-17.25768, 27.99784],
+ [-17.25785, 28.01997],
+ [-17.30867, 28.01923],
+ [-17.36038, 28.06398]
+ ],
+ [
+ [-16.92782, 28.32758],
+ [-16.92866, 28.37219],
+ [-16.87767, 28.37293],
+ [-16.87807, 28.39542],
+ [-16.52143, 28.42261],
+ [-16.44571, 28.49113],
+ [-16.44625, 28.53597],
+ [-16.42059, 28.53627],
+ [-16.42092, 28.55884],
+ [-16.34433, 28.55976],
+ [-16.3446, 28.58221],
+ [-16.19125, 28.58372],
+ [-16.19162, 28.60684],
+ [-16.12793, 28.60782],
+ [-16.1278, 28.59218],
+ [-16.09951, 28.5925],
+ [-16.09934, 28.51638],
+ [-16.16481, 28.51612],
+ [-16.16475, 28.49386],
+ [-16.23858, 28.44847],
+ [-16.26535, 28.44761],
+ [-16.26586, 28.403],
+ [-16.31675, 28.40176],
+ [-16.31631, 28.38019],
+ [-16.34208, 28.37951],
+ [-16.34083, 28.2893],
+ [-16.41584, 28.19761],
+ [-16.4151, 28.13113],
+ [-16.51533, 28.01648],
+ [-16.61684, 28.01532],
+ [-16.61681, 27.99305],
+ [-16.71842, 27.99192],
+ [-16.7191, 28.03714],
+ [-16.7447, 28.03679],
+ [-16.74534, 28.08181],
+ [-16.7707, 28.08161],
+ [-16.8224, 28.1259],
+ [-16.82317, 28.17087],
+ [-16.8487, 28.17075],
+ [-16.85028, 28.26079],
+ [-16.87565, 28.26055],
+ [-16.87608, 28.28322],
+ [-16.90151, 28.28277],
+ [-16.90239, 28.32793],
+ [-16.92782, 28.32758]
+ ],
+ [
+ [-15.85374, 27.90089],
+ [-15.8542, 27.99018],
+ [-15.82895, 27.99066],
+ [-15.82911, 28.03558],
+ [-15.7783, 28.03632],
+ [-15.75328, 28.08143],
+ [-15.72788, 28.08157],
+ [-15.72826, 28.17186],
+ [-15.49897, 28.1728],
+ [-15.49874, 28.15041],
+ [-15.44978, 28.15075],
+ [-15.45016, 28.19614],
+ [-15.39728, 28.19614],
+ [-15.39644, 28.03836],
+ [-15.37103, 28.03802],
+ [-15.37065, 28.01532],
+ [-15.34578, 28.01532],
+ [-15.34548, 27.92544],
+ [-15.3708, 27.92524],
+ [-15.37057, 27.83521],
+ [-15.39598, 27.83474],
+ [-15.421, 27.78797],
+ [-15.47181, 27.78939],
+ [-15.47188, 27.76665],
+ [-15.52277, 27.76678],
+ [-15.54771, 27.72161],
+ [-15.62361, 27.72134],
+ [-15.62415, 27.74199],
+ [-15.70075, 27.74335],
+ [-15.80167, 27.81105],
+ [-15.85374, 27.90089]
+ ],
+ [
+ [-14.52156, 28.04678],
+ [-14.52244, 28.11841],
+ [-14.41575, 28.11561],
+ [-14.21688, 28.22788],
+ [-14.21537, 28.33903],
+ [-14.16417, 28.45283],
+ [-14.11151, 28.4748],
+ [-14.03358, 28.72267],
+ [-13.95652, 28.74494],
+ [-13.95617, 28.76659],
+ [-13.82902, 28.76643],
+ [-13.82896, 28.78798],
+ [-13.80007, 28.78793],
+ [-13.8013, 28.71899],
+ [-13.82757, 28.71935],
+ [-13.82786, 28.6518],
+ [-13.80258, 28.6519],
+ [-13.80339, 28.53842],
+ [-13.82885, 28.53847],
+ [-13.83151, 28.39702],
+ [-13.91582, 28.22414],
+ [-13.98564, 28.22357],
+ [-14.03696, 28.17958],
+ [-14.13871, 28.17999],
+ [-14.13866, 28.15791],
+ [-14.21537, 28.15781],
+ [-14.21472, 28.11189],
+ [-14.29132, 28.04524],
+ [-14.33197, 28.03687],
+ [-14.44578, 28.04698],
+ [-14.44666, 28.0658],
+ [-14.49628, 28.06826],
+ [-14.49593, 28.04585],
+ [-14.52156, 28.04678]
+ ],
+ [
+ [-13.80066, 28.84566],
+ [-13.80093, 28.82311],
+ [-13.77569, 28.82305],
+ [-13.69729, 28.88982],
+ [-13.69729, 28.91277],
+ [-13.60725, 28.9118],
+ [-13.43886, 29.00024],
+ [-13.43746, 29.13513],
+ [-13.4117, 29.13499],
+ [-13.41056, 29.22298],
+ [-13.45928, 29.25559],
+ [-13.45974, 29.2942],
+ [-13.50913, 29.29456],
+ [-13.51006, 29.31635],
+ [-13.56354, 29.31729],
+ [-13.56406, 29.27138],
+ [-13.53892, 29.2712],
+ [-13.53897, 29.25004],
+ [-13.56613, 29.25013],
+ [-13.5666, 29.203],
+ [-13.51565, 29.20223],
+ [-13.51565, 29.18206],
+ [-13.5398, 29.18278],
+ [-13.54089, 29.13753],
+ [-13.65782, 29.13685],
+ [-13.71322, 29.09351],
+ [-13.76634, 29.09345],
+ [-13.85025, 29.01659],
+ [-13.85182, 28.98343],
+ [-13.85244, 28.91486],
+ [-13.90131, 28.89245],
+ [-13.9024, 28.84698],
+ [-13.80066, 28.84566]
+ ],
+ [
+ [1.64799, 38.99907],
+ [1.73217, 38.99936],
+ [1.73147, 39.04417],
+ [1.64895, 39.04319],
+ [1.64816, 39.12764],
+ [1.39486, 39.12657],
+ [1.39544, 39.08642],
+ [1.22811, 39.08526],
+ [1.22911, 39.0029],
+ [1.14487, 39.0018],
+ [1.14528, 38.832],
+ [1.31136, 38.83316],
+ [1.31219, 38.79065],
+ [1.39469, 38.79162],
+ [1.39519, 38.75296],
+ [1.31128, 38.75193],
+ [1.31259, 38.62388],
+ [1.6489, 38.62511],
+ [1.64807, 38.71115],
+ [1.58456, 38.71012],
+ [1.58116, 38.70054],
+ [1.54915, 38.70028],
+ [1.51972, 38.70921],
+ [1.50355, 38.72532],
+ [1.48133, 38.91551],
+ [1.55189, 38.92544],
+ [1.56673, 38.95666],
+ [1.64874, 38.95833],
+ [1.64799, 38.99907]
+ ],
+ [
+ [2.54507, 39.41667],
+ [2.43933, 39.41611],
+ [2.43871, 39.48469],
+ [2.43902, 39.49934],
+ [2.31223, 39.49934],
+ [2.31192, 39.54179],
+ [2.22907, 39.541],
+ [2.22835, 39.62606],
+ [2.34601, 39.62709],
+ [2.92704, 39.96016],
+ [3.14566, 39.96005],
+ [3.14608, 40.00198],
+ [3.23139, 40.00198],
+ [3.23129, 39.83292],
+ [3.14823, 39.83316],
+ [3.14844, 39.79357],
+ [3.48148, 39.79318],
+ [3.48035, 39.5959],
+ [3.31506, 39.47846],
+ [3.31462, 39.37855],
+ [3.08302, 39.24994],
+ [2.97986, 39.25015],
+ [2.97904, 39.3335],
+ [2.72874, 39.33342],
+ [2.72885, 39.45814],
+ [2.64569, 39.45774],
+ [2.64538, 39.49966],
+ [2.54528, 39.49942],
+ [2.54507, 39.41667]
+ ],
+ [
+ [3.81204, 40.04344],
+ [3.72908, 40.0438],
+ [3.72862, 39.95842],
+ [3.81266, 39.9576],
+ [3.81228, 39.91644],
+ [3.9609, 39.91598],
+ [4.19381, 39.79131],
+ [4.31503, 39.79058],
+ [4.31599, 39.83293],
+ [4.39874, 39.83204],
+ [4.39737, 39.91858],
+ [4.3158, 39.91933],
+ [4.31619, 40.0434],
+ [4.2319, 40.04436],
+ [4.23248, 40.08478],
+ [4.14915, 40.08611],
+ [4.14906, 40.12552],
+ [4.0628, 40.12722],
+ [4.06242, 40.08499],
+ [3.81287, 40.08529],
+ [3.81204, 40.04344]
+ ],
+ [
+ [-8.89106, 41.82289],
+ [-9.1092, 42.57511],
+ [-9.03655, 42.73066],
+ [-9.08834, 42.72696],
+ [-9.14661, 42.77503],
+ [-9.21855, 42.90163],
+ [-9.2761, 42.86051],
+ [-9.30991, 42.93113],
+ [-9.27898, 42.9822],
+ [-9.30991, 43.06004],
+ [-9.25236, 43.10417],
+ [-9.2315, 43.17032],
+ [-9.14733, 43.21018],
+ [-9.06748, 43.19916],
+ [-9.03367, 43.24267],
+ [-8.99842, 43.24477],
+ [-8.99986, 43.29558],
+ [-8.93727, 43.30553],
+ [-8.92936, 43.32699],
+ [-8.8639, 43.32908],
+ [-8.87613, 43.37407],
+ [-8.82217, 43.37354],
+ [-8.78548, 43.31914],
+ [-8.70635, 43.305],
+ [-8.60996, 43.3296],
+ [-8.55097, 43.32332],
+ [-8.52435, 43.3364],
+ [-8.52507, 43.36465],
+ [-8.45745, 43.39184],
+ [-8.36105, 43.41118],
+ [-8.36033, 43.46342],
+ [-8.33444, 43.57974],
+ [-8.27761, 43.57088],
+ [-8.06467, 43.72392],
+ [-7.99921, 43.7234],
+ [-7.9172, 43.78264],
+ [-7.85605, 43.79146],
+ [-7.83591, 43.73743],
+ [-7.66284, 43.80982],
+ [-7.31889, 43.67827],
+ [-7.19975, 43.58308],
+ [-6.24882, 43.6075],
+ [-6.12293, 43.57901],
+ [-5.85204, 43.6799],
+ [-5.60363, 43.57087],
+ [-5.28553, 43.56191],
+ [-5.17875, 43.49916],
+ [-4.90899, 43.48367],
+ [-4.61562, 43.4192],
+ [-4.18399, 43.42492],
+ [-3.80295, 43.51954],
+ [-3.74, 43.48693],
+ [-3.56128, 43.54236],
+ [-3.1083, 43.38163],
+ [-2.93857, 43.46246],
+ [-2.74524, 43.47551],
+ [-2.30462, 43.31706],
+ [-1.9854, 43.3563],
+ [-1.85528, 43.39725],
+ [-1.7698, 43.39644],
+ [-1.77005, 43.37605],
+ [-1.71005, 43.37569],
+ [-1.71135, 43.33125],
+ [-1.72259, 43.31318],
+ [-1.68904, 43.31291],
+ [-1.68811, 43.33413],
+ [-1.64467, 43.33372],
+ [-1.64498, 43.31332],
+ [-1.60299, 43.31295],
+ [-1.60344, 43.29266],
+ [-1.56359, 43.29212],
+ [-1.56305, 43.31338],
+ [-1.47799, 43.31284],
+ [-1.36677, 43.27614],
+ [-1.35688, 43.23815],
+ [-1.37037, 43.1713],
+ [-1.44231, 43.08336],
+ [-1.41983, 43.06036],
+ [-1.37307, 43.05117],
+ [-1.36407, 43.11159],
+ [-1.30203, 43.13522],
+ [-1.23549, 43.13325],
+ [-1.27955, 43.07744],
+ [-1.19232, 43.06496],
+ [-1.00619, 43.00778],
+ [-0.94234, 42.9749],
+ [-0.7562, 42.98213],
+ [-0.71484, 42.96108],
+ [-0.69685, 42.90314],
+ [-0.55118, 42.82207],
+ [-0.50442, 42.84845],
+ [-0.42889, 42.82009],
+ [-0.31648, 42.86558],
+ [-0.14563, 42.81086],
+ [-0.03143, 42.71249],
+ [0.18618, 42.7541],
+ [0.30218, 42.71777],
+ [0.36422, 42.74287],
+ [0.44875, 42.71447],
+ [0.62769, 42.7224],
+ [0.64118, 42.85767],
+ [0.71492, 42.88272],
+ [0.9676, 42.81811],
+ [1.10878, 42.79898],
+ [1.17532, 42.73429],
+ [1.36326, 42.74155],
+ [1.41137, 42.70939],
+ [1.48061, 42.71034],
+ [1.4813, 42.50107],
+ [1.64436, 42.50203],
+ [1.64328, 42.54245],
+ [1.73041, 42.54342],
+ [1.73164, 42.50118],
+ [2.06386, 42.50164],
+ [2.06456, 42.45902],
+ [2.39693, 42.45994],
+ [2.39768, 42.41784],
+ [2.48048, 42.41797],
+ [2.48098, 42.37594],
+ [2.64479, 42.37626],
+ [2.64448, 42.45924],
+ [2.81133, 42.45961],
+ [2.81126, 42.50104],
+ [3.06388, 42.50085],
+ [3.06388, 42.45915],
+ [3.23078, 42.45934],
+ [3.23049, 42.37644],
+ [3.31415, 42.37604],
+ [3.31412, 42.33399],
+ [3.39785, 42.33404],
+ [3.39739, 42.29009],
+ [3.31389, 42.29084],
+ [3.31397, 42.20702],
+ [3.14759, 42.2073],
+ [3.14759, 42.12606],
+ [3.23055, 42.126],
+ [3.24668, 41.95294],
+ [3.19452, 41.85589],
+ [3.06054, 41.76474],
+ [2.78358, 41.63718],
+ [2.26293, 41.42716],
+ [2.16492, 41.29893],
+ [1.86008, 41.22322],
+ [1.3763, 41.11627],
+ [1.17937, 41.04646],
+ [1.08585, 41.04849],
+ [0.75854, 40.81956],
+ [0.9114, 40.73376],
+ [0.87813, 40.67514],
+ [0.66502, 40.53587],
+ [0.55801, 40.55022],
+ [0.43392, 40.37576],
+ [0.26756, 40.19192],
+ [0.16415, 40.06472],
+ [0.07513, 40.01447],
+ [0.01039, 39.89522],
+ [-0.09392, 39.81169],
+ [-0.18474, 39.63117],
+ [-0.29085, 39.50363],
+ [-0.28636, 39.33343],
+ [-0.18564, 39.17746],
+ [-0.21352, 39.15585],
+ [-0.11101, 38.97222],
+ [0.00949, 38.88268],
+ [0.12189, 38.87218],
+ [0.23429, 38.79864],
+ [0.25587, 38.72642],
+ [0.09581, 38.61338],
+ [-0.0022, 38.60706],
+ [-0.05705, 38.52691],
+ [-0.27197, 38.47624],
+ [-0.37987, 38.39312],
+ [-0.38347, 38.33813],
+ [-0.45091, 38.33108],
+ [-0.50487, 38.28309],
+ [-0.48238, 38.19481],
+ [-0.42933, 38.16583],
+ [-0.45451, 38.14886],
+ [-0.584, 38.17219],
+ [-0.61367, 38.11986],
+ [-0.63705, 37.96122],
+ [-0.68111, 37.94562],
+ [-0.73237, 37.88107],
+ [-0.72158, 37.78306],
+ [-0.68831, 37.734],
+ [-0.66415, 37.62315],
+ [-0.71939, 37.58784],
+ [-0.91963, 37.53758],
+ [-1.11071, 37.51641],
+ [-1.33832, 37.52867],
+ [-1.44089, 37.39037],
+ [-1.6767, 37.27652],
+ [-1.85408, 36.91229],
+ [-2.06835, 36.69291],
+ [-2.21588, 36.66192],
+ [-2.37219, 36.78018],
+ [-2.68129, 36.65911],
+ [-2.92015, 36.66756],
+ [-3.09402, 36.71263],
+ [-3.46108, 36.65488],
+ [-3.72804, 36.69291],
+ [-4.37435, 36.66333],
+ [-4.65712, 36.44042],
+ [-4.9188, 36.45313],
+ [-5.16995, 36.35135],
+ [-5.28411, 36.19702],
+ [-5.26809, 36.12418],
+ [-5.35248, 36.12247],
+ [-5.35161, 36.04014],
+ [-5.43658, 36.03889],
+ [-5.43532, 36.00344],
+ [-5.68886, 36.00365],
+ [-5.68996, 36.04053],
+ [-5.85506, 36.03856],
+ [-5.85668, 36.12421],
+ [-5.93848, 36.12215],
+ [-5.94003, 36.16556],
+ [-5.99834, 36.1645],
+ [-6.03573, 36.1781],
+ [-6.07752, 36.22241],
+ [-6.15061, 36.28646],
+ [-6.23154, 36.37701],
+ [-6.33585, 36.53106],
+ [-6.32146, 36.58163],
+ [-6.40419, 36.6235],
+ [-6.47433, 36.74897],
+ [-6.41588, 36.79939],
+ [-6.49052, 36.91738],
+ [-6.62989, 37.0194],
+ [-6.87448, 37.10838],
+ [-7.04264, 37.18507],
+ [-7.26474, 37.18435],
+ [-7.37535, 37.15354],
+ [-7.40832, 37.16822],
+ [-7.42029, 37.21183],
+ [-7.42492, 37.23505],
+ [-7.43805, 37.2452],
+ [-7.44597, 37.33261],
+ [-7.4481, 37.39094],
+ [-7.46963, 37.40758],
+ [-7.4647, 37.45305],
+ [-7.50197, 37.51641],
+ [-7.51916, 37.52292],
+ [-7.52196, 37.57237],
+ [-7.45013, 37.66958],
+ [-7.4249, 37.75992],
+ [-7.31666, 37.83997],
+ [-7.26833, 37.98895],
+ [-7.15368, 38.01552],
+ [-7.11771, 38.05536],
+ [-7.0143, 38.02438],
+ [-6.99632, 38.10756],
+ [-6.96147, 38.20125],
+ [-7.08062, 38.15708],
+ [-7.34027, 38.44024],
+ [-7.26383, 38.73807],
+ [-7.04352, 38.87297],
+ [-7.06151, 38.90796],
+ [-6.96934, 39.01983],
+ [-7.00081, 39.08879],
+ [-7.15368, 39.09577],
+ [-7.15255, 39.16029],
+ [-7.24472, 39.19689],
+ [-7.25596, 39.28133],
+ [-7.33689, 39.35351],
+ [-7.3279, 39.45599],
+ [-7.51449, 39.58865],
+ [-7.55271, 39.67954],
+ [-7.05027, 39.67522],
+ [-6.99519, 39.81954],
+ [-6.92213, 39.87909],
+ [-6.88616, 40.02299],
+ [-7.04128, 40.13479],
+ [-7.01767, 40.26615],
+ [-6.8086, 40.34501],
+ [-6.86818, 40.44516],
+ [-6.85356, 40.60664],
+ [-6.83783, 40.87576],
+ [-6.9536, 41.03704],
+ [-6.80186, 41.03959],
+ [-6.76814, 41.13871],
+ [-6.64112, 41.26556],
+ [-6.56244, 41.26303],
+ [-6.21737, 41.5791],
+ [-6.31628, 41.64465],
+ [-6.51523, 41.64129],
+ [-6.58717, 41.68832],
+ [-6.54783, 41.85597],
+ [-6.62988, 41.91121],
+ [-7.13345, 41.94048],
+ [-7.16829, 41.87188],
+ [-7.42569, 41.78477],
+ [-7.95398, 41.84593],
+ [-8.13045, 41.78058],
+ [-8.25185, 41.90786],
+ [-8.12933, 42.03488],
+ [-8.24848, 42.1008],
+ [-8.36762, 42.05575],
+ [-8.60704, 42.03405],
+ [-8.89106, 41.82289]
+ ]
+ ]
+ },
+ {
+ "id": "South_Africa-CapeTown-Aerial-2013",
+ "name": "City of Cape Town 2013 Aerial",
+ "type": "tms",
+ "template": "https://{switch:a,b,c}.coct.aerial.openstreetmap.org.za/layer/za_coct_aerial_2013/{zoom}/{x}/{y}.jpg",
+ "endDate": "2015-01-01T00:00:00.000Z",
+ "startDate": "2013-01-01T00:00:00.000Z",
+ "scaleExtent": [1, 21],
+ "polygon": [
+ [
+ [18.44866, -33.89362],
+ [18.44859, -33.90264],
+ [18.4702, -33.90277],
+ [18.48139, -33.84724],
+ [18.44925, -33.80107],
+ [18.42815, -33.73564],
+ [18.43914, -33.71772],
+ [18.40719, -33.65899],
+ [18.33224, -33.57752],
+ [18.33245, -33.55045],
+ [18.354, -33.55059],
+ [18.35425, -33.5236],
+ [18.36524, -33.52366],
+ [18.36503, -33.5148],
+ [18.37601, -33.51477],
+ [18.37605, -33.5058],
+ [18.42966, -33.50594],
+ [18.4297, -33.48785],
+ [18.44049, -33.48789],
+ [18.4406, -33.46988],
+ [18.49437, -33.4701],
+ [18.49433, -33.47916],
+ [18.51583, -33.47917],
+ [18.51574, -33.48819],
+ [18.52647, -33.4883],
+ [18.52632, -33.52435],
+ [18.54793, -33.52443],
+ [18.54795, -33.51539],
+ [18.56937, -33.5155],
+ [18.56937, -33.52448],
+ [18.58012, -33.52453],
+ [18.58007, -33.5426],
+ [18.59078, -33.5426],
+ [18.59074, -33.56064],
+ [18.57995, -33.56053],
+ [18.57988, -33.56962],
+ [18.5907, -33.56962],
+ [18.59065, -33.57868],
+ [18.62301, -33.57873],
+ [18.62292, -33.58773],
+ [18.66597, -33.58789],
+ [18.66593, -33.61493],
+ [18.67672, -33.61497],
+ [18.67658, -33.65103],
+ [18.6873, -33.65102],
+ [18.68734, -33.66004],
+ [18.69807, -33.66009],
+ [18.69807, -33.66907],
+ [18.75204, -33.66925],
+ [18.75208, -33.64219],
+ [18.77364, -33.64225],
+ [18.77371, -33.63319],
+ [18.82746, -33.6333],
+ [18.82752, -33.6603],
+ [18.81667, -33.66029],
+ [18.8166, -33.67832],
+ [18.80581, -33.67831],
+ [18.80581, -33.70539],
+ [18.8274, -33.70544],
+ [18.82733, -33.72347],
+ [18.83812, -33.72343],
+ [18.83804, -33.74139],
+ [18.81652, -33.74137],
+ [18.81637, -33.79551],
+ [18.80559, -33.79551],
+ [18.80551, -33.81357],
+ [18.79476, -33.81355],
+ [18.79472, -33.83154],
+ [18.77311, -33.83152],
+ [18.77313, -33.84052],
+ [18.76236, -33.84052],
+ [18.76227, -33.90359],
+ [18.75146, -33.90352],
+ [18.75108, -33.98478],
+ [18.76191, -33.9848],
+ [18.76178, -34.02988],
+ [18.7726, -34.0299],
+ [18.77258, -34.03891],
+ [18.79403, -34.03894],
+ [18.79388, -34.0407],
+ [18.79845, -34.04119],
+ [18.80324, -34.04118],
+ [18.80341, -34.03892],
+ [18.81594, -34.03897],
+ [18.81634, -34.02993],
+ [18.83798, -34.03165],
+ [18.838, -34.03],
+ [18.84842, -34.03001],
+ [18.84847, -34.02185],
+ [18.85993, -34.02347],
+ [18.85986, -34.02101],
+ [18.86827, -34.02208],
+ [18.86819, -34.02117],
+ [18.88546, -34.02343],
+ [18.88518, -34.02132],
+ [18.90252, -34.02103],
+ [18.90258, -34.012],
+ [18.91342, -34.012],
+ [18.91348, -33.99396],
+ [18.94588, -33.99403],
+ [18.94586, -34.0031],
+ [18.96743, -34.003],
+ [18.96747, -34.01208],
+ [18.97822, -34.01208],
+ [18.97833, -34.02114],
+ [18.98914, -34.02114],
+ [18.98916, -34.03913],
+ [19.00002, -34.03913],
+ [19.00002, -34.05718],
+ [19.01084, -34.05725],
+ [19.01079, -34.08414],
+ [19, -34.08413],
+ [19.00002, -34.0932],
+ [18.98915, -34.09317],
+ [18.98918, -34.1022],
+ [18.97832, -34.10218],
+ [18.97832, -34.11123],
+ [18.9675, -34.11121],
+ [18.96749, -34.12925],
+ [18.9566, -34.12924],
+ [18.95656, -34.13824],
+ [18.96742, -34.13831],
+ [18.96742, -34.14732],
+ [18.98918, -34.1473],
+ [18.98918, -34.1653],
+ [18.97827, -34.16529],
+ [18.97832, -34.17429],
+ [18.96742, -34.17427],
+ [18.96746, -34.1833],
+ [18.95656, -34.18332],
+ [18.95656, -34.19236],
+ [18.94574, -34.19232],
+ [18.9457, -34.20132],
+ [18.93487, -34.20137],
+ [18.93489, -34.21933],
+ [18.90236, -34.21935],
+ [18.90176, -34.23626],
+ [18.88784, -34.23735],
+ [18.88942, -34.25541],
+ [18.88059, -34.25534],
+ [18.87927, -34.26443],
+ [18.86969, -34.26441],
+ [18.86971, -34.27344],
+ [18.83714, -34.27342],
+ [18.83712, -34.26438],
+ [18.84802, -34.2644],
+ [18.84803, -34.23739],
+ [18.81549, -34.21028],
+ [18.81565, -34.17413],
+ [18.85488, -34.15627],
+ [18.76176, -34.08405],
+ [18.65337, -34.07748],
+ [18.47974, -34.11012],
+ [18.44637, -34.13423],
+ [18.44445, -34.16409],
+ [18.436, -34.16405],
+ [18.43597, -34.18202],
+ [18.44681, -34.18211],
+ [18.44673, -34.19111],
+ [18.46593, -34.19121],
+ [18.48662, -34.24539],
+ [18.47889, -34.25437],
+ [18.486, -34.25437],
+ [18.46771, -34.29941],
+ [18.48922, -34.34458],
+ [18.50011, -34.34458],
+ [18.49992, -34.36262],
+ [18.46743, -34.36251],
+ [18.46737, -34.35349],
+ [18.3916, -34.31707],
+ [18.39177, -34.29002],
+ [18.37016, -34.28087],
+ [18.37068, -34.21789],
+ [18.34923, -34.18162],
+ [18.32747, -34.18149],
+ [18.32767, -34.16346],
+ [18.31187, -34.15438],
+ [18.3114, -34.14353],
+ [18.32367, -34.13469],
+ [18.34993, -34.10421],
+ [18.33932, -34.08828],
+ [18.36125, -34.05972],
+ [18.35505, -34.05538],
+ [18.34275, -34.06433],
+ [18.32, -34.06443],
+ [18.29607, -34.04513],
+ [18.30682, -34.02526],
+ [18.32877, -34.0192],
+ [18.32892, -34.00125],
+ [18.33974, -34.00127],
+ [18.3398, -33.98663],
+ [18.36287, -33.97351],
+ [18.36381, -33.92925],
+ [18.37262, -33.92927],
+ [18.37284, -33.91776],
+ [18.39773, -33.89335],
+ [18.44866, -33.89362]
+ ]
+ ],
+ "terms_url": "https://www.capetown.gov.za",
+ "terms_text": "City of Cape Town Aerial - OPENSTREETMAP USE ONLY",
+ "description": "OpenStreetMap use only. City of Cape Town Aerial ortho-photography of the municipal area. 12cm ground sample distance"
+ },
+ {
+ "id": "South_Africa-CapeTown-Aerial",
+ "name": "City of Cape Town 2015 Aerial",
+ "type": "tms",
+ "template": "https://{switch:a,b,c}.coct.aerial.openstreetmap.org.za/layer/za_coct_aerial_2015/{zoom}/{x}/{y}.jpg",
+ "endDate": "2016-01-01T00:00:00.000Z",
+ "startDate": "2015-01-01T00:00:00.000Z",
+ "scaleExtent": [1, 21],
+ "polygon": [
+ [
+ [18.44866, -33.89362],
+ [18.44859, -33.90264],
+ [18.4702, -33.90277],
+ [18.48139, -33.84724],
+ [18.44925, -33.80107],
+ [18.42815, -33.73564],
+ [18.43914, -33.71772],
+ [18.40719, -33.65899],
+ [18.33224, -33.57752],
+ [18.33245, -33.55045],
+ [18.354, -33.55059],
+ [18.35425, -33.5236],
+ [18.36524, -33.52366],
+ [18.36503, -33.5148],
+ [18.37601, -33.51477],
+ [18.37605, -33.5058],
+ [18.42966, -33.50594],
+ [18.4297, -33.48785],
+ [18.44049, -33.48789],
+ [18.4406, -33.46988],
+ [18.49437, -33.4701],
+ [18.49433, -33.47916],
+ [18.51583, -33.47917],
+ [18.51574, -33.48819],
+ [18.52647, -33.4883],
+ [18.52632, -33.52435],
+ [18.54793, -33.52443],
+ [18.54795, -33.51539],
+ [18.56937, -33.5155],
+ [18.56937, -33.52448],
+ [18.58012, -33.52453],
+ [18.58007, -33.5426],
+ [18.59078, -33.5426],
+ [18.59074, -33.56064],
+ [18.57995, -33.56053],
+ [18.57988, -33.56962],
+ [18.5907, -33.56962],
+ [18.59065, -33.57868],
+ [18.62301, -33.57873],
+ [18.62292, -33.58773],
+ [18.66597, -33.58789],
+ [18.66593, -33.61493],
+ [18.67672, -33.61497],
+ [18.67658, -33.65103],
+ [18.6873, -33.65102],
+ [18.68734, -33.66004],
+ [18.69807, -33.66009],
+ [18.69807, -33.66907],
+ [18.75204, -33.66925],
+ [18.75208, -33.64219],
+ [18.77364, -33.64225],
+ [18.77371, -33.63319],
+ [18.82746, -33.6333],
+ [18.82752, -33.6603],
+ [18.81667, -33.66029],
+ [18.8166, -33.67832],
+ [18.80581, -33.67831],
+ [18.80581, -33.70539],
+ [18.8274, -33.70544],
+ [18.82733, -33.72347],
+ [18.83812, -33.72343],
+ [18.83804, -33.74139],
+ [18.81652, -33.74137],
+ [18.81637, -33.79551],
+ [18.80559, -33.79551],
+ [18.80551, -33.81357],
+ [18.79476, -33.81355],
+ [18.79472, -33.83154],
+ [18.77311, -33.83152],
+ [18.77313, -33.84052],
+ [18.76236, -33.84052],
+ [18.76227, -33.90359],
+ [18.75146, -33.90352],
+ [18.75108, -33.98478],
+ [18.76191, -33.9848],
+ [18.76178, -34.02988],
+ [18.7726, -34.0299],
+ [18.77258, -34.03891],
+ [18.79403, -34.03894],
+ [18.79388, -34.0407],
+ [18.79845, -34.04119],
+ [18.80324, -34.04118],
+ [18.80341, -34.03892],
+ [18.81594, -34.03897],
+ [18.81634, -34.02993],
+ [18.83798, -34.03165],
+ [18.838, -34.03],
+ [18.84842, -34.03001],
+ [18.84847, -34.02185],
+ [18.85993, -34.02347],
+ [18.85986, -34.02101],
+ [18.86827, -34.02208],
+ [18.86819, -34.02117],
+ [18.88546, -34.02343],
+ [18.88518, -34.02132],
+ [18.90252, -34.02103],
+ [18.90258, -34.012],
+ [18.91342, -34.012],
+ [18.91348, -33.99396],
+ [18.94588, -33.99403],
+ [18.94586, -34.0031],
+ [18.96743, -34.003],
+ [18.96747, -34.01208],
+ [18.97822, -34.01208],
+ [18.97833, -34.02114],
+ [18.98914, -34.02114],
+ [18.98916, -34.03913],
+ [19.00002, -34.03913],
+ [19.00002, -34.05718],
+ [19.01084, -34.05725],
+ [19.01079, -34.08414],
+ [19, -34.08413],
+ [19.00002, -34.0932],
+ [18.98915, -34.09317],
+ [18.98918, -34.1022],
+ [18.97832, -34.10218],
+ [18.97832, -34.11123],
+ [18.9675, -34.11121],
+ [18.96749, -34.12925],
+ [18.9566, -34.12924],
+ [18.95656, -34.13824],
+ [18.96742, -34.13831],
+ [18.96742, -34.14732],
+ [18.98918, -34.1473],
+ [18.98918, -34.1653],
+ [18.97827, -34.16529],
+ [18.97832, -34.17429],
+ [18.96742, -34.17427],
+ [18.96746, -34.1833],
+ [18.95656, -34.18332],
+ [18.95656, -34.19236],
+ [18.94574, -34.19232],
+ [18.9457, -34.20132],
+ [18.93487, -34.20137],
+ [18.93489, -34.21933],
+ [18.90236, -34.21935],
+ [18.90176, -34.23626],
+ [18.88784, -34.23735],
+ [18.88942, -34.25541],
+ [18.88059, -34.25534],
+ [18.87927, -34.26443],
+ [18.86969, -34.26441],
+ [18.86971, -34.27344],
+ [18.83714, -34.27342],
+ [18.83712, -34.26438],
+ [18.84802, -34.2644],
+ [18.84803, -34.23739],
+ [18.81549, -34.21028],
+ [18.81565, -34.17413],
+ [18.85488, -34.15627],
+ [18.76176, -34.08405],
+ [18.65337, -34.07748],
+ [18.47974, -34.11012],
+ [18.44637, -34.13423],
+ [18.44445, -34.16409],
+ [18.436, -34.16405],
+ [18.43597, -34.18202],
+ [18.44681, -34.18211],
+ [18.44673, -34.19111],
+ [18.46593, -34.19121],
+ [18.48662, -34.24539],
+ [18.47889, -34.25437],
+ [18.486, -34.25437],
+ [18.46771, -34.29941],
+ [18.48922, -34.34458],
+ [18.50011, -34.34458],
+ [18.49992, -34.36262],
+ [18.46743, -34.36251],
+ [18.46737, -34.35349],
+ [18.3916, -34.31707],
+ [18.39177, -34.29002],
+ [18.37016, -34.28087],
+ [18.37068, -34.21789],
+ [18.34923, -34.18162],
+ [18.32747, -34.18149],
+ [18.32767, -34.16346],
+ [18.31187, -34.15438],
+ [18.3114, -34.14353],
+ [18.32367, -34.13469],
+ [18.34993, -34.10421],
+ [18.33932, -34.08828],
+ [18.36125, -34.05972],
+ [18.35505, -34.05538],
+ [18.34275, -34.06433],
+ [18.32, -34.06443],
+ [18.29607, -34.04513],
+ [18.30682, -34.02526],
+ [18.32877, -34.0192],
+ [18.32892, -34.00125],
+ [18.33974, -34.00127],
+ [18.3398, -33.98663],
+ [18.36287, -33.97351],
+ [18.36381, -33.92925],
+ [18.37262, -33.92927],
+ [18.37284, -33.91776],
+ [18.39773, -33.89335],
+ [18.44866, -33.89362]
+ ]
+ ],
+ "terms_url": "https://www.capetown.gov.za",
+ "terms_text": "City of Cape Town Aerial - OPENSTREETMAP USE ONLY",
+ "best": true,
+ "description": "OpenStreetMap use only. City of Cape Town Aerial ortho-photography of the municipal area. 8cm ground sample distance"
+ },
+ {
+ "id": "Czech_CUZK-KM",
+ "name": "Czech CUZK:KM",
+ "type": "wms",
+ "template": "https://wms.cuzk.cz/wms.asp?service=WMS&VERSION=1.1.1&REQUEST=GetMap&SRS={proj}&LAYERS=parcelni_cisla_i,obrazy_parcel_i,RST_KMD_I,hranice_parcel_i,DEF_BUDOVY,RST_KN_I,dalsi_p_mapy_i,prehledka_kat_prac,prehledka_kat_uz,prehledka_kraju-linie&FORMAT=image/png&transparent=TRUE&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [15.00637, 49.01774],
+ [15.15599, 49.00138],
+ [15.1909, 48.94246],
+ [15.31059, 48.98829],
+ [15.40535, 48.9752],
+ [15.54, 48.91624],
+ [15.71456, 48.86706],
+ [15.83425, 48.88018],
+ [15.9689, 48.81782],
+ [16.0886, 48.74553],
+ [16.39781, 48.74553],
+ [16.48758, 48.81454],
+ [16.6721, 48.7784],
+ [16.68208, 48.73566],
+ [16.90152, 48.71263],
+ [16.9464, 48.6237],
+ [17.11597, 48.83752],
+ [17.21072, 48.88018],
+ [17.40523, 48.81782],
+ [17.48004, 48.85393],
+ [17.52991, 48.81782],
+ [17.70446, 48.86706],
+ [17.81418, 48.9359],
+ [17.884, 48.9359],
+ [17.94385, 49.02101],
+ [18.06354, 49.03409],
+ [18.1184, 49.09944],
+ [18.1982, 49.30473],
+ [18.38771, 49.33399],
+ [18.57723, 49.50917],
+ [18.75677, 49.49946],
+ [18.84654, 49.52536],
+ [18.87646, 49.57066],
+ [18.79666, 49.69341],
+ [18.64206, 49.70954],
+ [18.5872, 49.83515],
+ [18.61214, 49.88338],
+ [18.56226, 49.93477],
+ [18.51239, 49.90587],
+ [18.36277, 49.95403],
+ [18.32786, 49.92193],
+ [18.26303, 49.97328],
+ [18.1184, 50.00534],
+ [18.06354, 50.07581],
+ [17.91392, 49.97969],
+ [17.77927, 50.03098],
+ [17.71444, 50.12379],
+ [17.60472, 50.16534],
+ [17.75932, 50.21962],
+ [17.73438, 50.34391],
+ [17.63963, 50.28021],
+ [17.38029, 50.28021],
+ [17.35037, 50.34391],
+ [17.28055, 50.33754],
+ [17.18579, 50.40752],
+ [16.90152, 50.46152],
+ [16.86661, 50.41388],
+ [16.96635, 50.31844],
+ [17.03617, 50.23238],
+ [16.83668, 50.21962],
+ [16.712, 50.1046],
+ [16.58233, 50.15895],
+ [16.56238, 50.23876],
+ [16.43272, 50.33754],
+ [16.35292, 50.39163],
+ [16.27811, 50.39163],
+ [16.20829, 50.44565],
+ [16.39781, 50.53449],
+ [16.44768, 50.59785],
+ [16.35292, 50.6706],
+ [16.23821, 50.67692],
+ [16.21827, 50.63266],
+ [16.1285, 50.68324],
+ [16.0487, 50.60734],
+ [15.98885, 50.7022],
+ [15.87415, 50.68324],
+ [15.82926, 50.76533],
+ [15.72952, 50.74324],
+ [15.45023, 50.81577],
+ [15.39039, 50.77479],
+ [15.38041, 50.85987],
+ [15.29563, 50.88504],
+ [15.29563, 50.98876],
+ [15.17095, 51.02014],
+ [14.99141, 51.00131],
+ [15.00637, 50.88819],
+ [14.84179, 50.8756],
+ [14.7969, 50.82522],
+ [14.63233, 50.85672],
+ [14.66225, 50.93536],
+ [14.57248, 50.92278],
+ [14.61238, 50.98562],
+ [14.49767, 51.04837],
+ [14.41788, 51.02328],
+ [14.30816, 51.06717],
+ [14.2533, 51.00445],
+ [14.40291, 50.93221],
+ [14.37299, 50.89763],
+ [14.24332, 50.90706],
+ [14.20841, 50.84412],
+ [14.03386, 50.81262],
+ [13.979, 50.82522],
+ [13.90419, 50.79686],
+ [13.87427, 50.74009],
+ [13.53514, 50.7243],
+ [13.53015, 50.65796],
+ [13.4703, 50.61367],
+ [13.39051, 50.66428],
+ [13.32567, 50.58835],
+ [13.25086, 50.61051],
+ [13.196, 50.50595],
+ [13.05137, 50.52181],
+ [12.96659, 50.4107],
+ [12.82695, 50.47105],
+ [12.70227, 50.41388],
+ [12.50777, 50.40116],
+ [12.34319, 50.25471],
+ [12.32324, 50.18451],
+ [12.24843, 50.27384],
+ [12.17362, 50.33118],
+ [12.09881, 50.33436],
+ [12.11876, 50.25152],
+ [12.22349, 50.16534],
+ [12.20354, 50.12379],
+ [12.50278, 49.97328],
+ [12.47784, 49.93798],
+ [12.54766, 49.91551],
+ [12.46787, 49.80298],
+ [12.40802, 49.76111],
+ [12.48283, 49.68696],
+ [12.5327, 49.68696],
+ [12.51774, 49.62885],
+ [12.60751, 49.54155],
+ [12.67234, 49.43788],
+ [12.81199, 49.34699],
+ [12.94664, 49.34374],
+ [13.23091, 49.12882],
+ [13.32567, 49.10597],
+ [13.43539, 49.0439],
+ [13.41544, 48.99484],
+ [13.50022, 48.94901],
+ [13.56506, 48.98829],
+ [13.68475, 48.88346],
+ [13.7446, 48.90313],
+ [13.82439, 48.77511],
+ [13.8992, 48.77511],
+ [14.05879, 48.67642],
+ [14.04383, 48.63029],
+ [14.14358, 48.59072],
+ [14.37299, 48.56103],
+ [14.48271, 48.65007],
+ [14.57747, 48.60721],
+ [14.62734, 48.63359],
+ [14.70713, 48.58083],
+ [14.74703, 48.70276],
+ [14.81187, 48.73895],
+ [14.81685, 48.79483],
+ [14.98642, 48.76525],
+ [15.00637, 49.01774]
+ ]
+ ],
+ "overlay": true
+ },
+ {
+ "id": "Czech_CUZK-KM-tms",
+ "name": "Czech CUZK:KM tiles proxy",
+ "type": "tms",
+ "template": "https://osm-{switch:a,b,c}.zby.cz/tiles_cuzk.php/{zoom}/{x}/{y}.png",
+ "scaleExtent": [13, 18],
+ "polygon": [
+ [
+ [15.00637, 49.01774],
+ [15.15599, 49.00138],
+ [15.1909, 48.94246],
+ [15.31059, 48.98829],
+ [15.40535, 48.9752],
+ [15.54, 48.91624],
+ [15.71456, 48.86706],
+ [15.83425, 48.88018],
+ [15.9689, 48.81782],
+ [16.0886, 48.74553],
+ [16.39781, 48.74553],
+ [16.48758, 48.81454],
+ [16.6721, 48.7784],
+ [16.68208, 48.73566],
+ [16.90152, 48.71263],
+ [16.9464, 48.6237],
+ [17.11597, 48.83752],
+ [17.21072, 48.88018],
+ [17.40523, 48.81782],
+ [17.48004, 48.85393],
+ [17.52991, 48.81782],
+ [17.70446, 48.86706],
+ [17.81418, 48.9359],
+ [17.884, 48.9359],
+ [17.94385, 49.02101],
+ [18.06354, 49.03409],
+ [18.1184, 49.09944],
+ [18.1982, 49.30473],
+ [18.38771, 49.33399],
+ [18.57723, 49.50917],
+ [18.75677, 49.49946],
+ [18.84654, 49.52536],
+ [18.87646, 49.57066],
+ [18.79666, 49.69341],
+ [18.64206, 49.70954],
+ [18.5872, 49.83515],
+ [18.61214, 49.88338],
+ [18.56226, 49.93477],
+ [18.51239, 49.90587],
+ [18.36277, 49.95403],
+ [18.32786, 49.92193],
+ [18.26303, 49.97328],
+ [18.1184, 50.00534],
+ [18.06354, 50.07581],
+ [17.91392, 49.97969],
+ [17.77927, 50.03098],
+ [17.71444, 50.12379],
+ [17.60472, 50.16534],
+ [17.75932, 50.21962],
+ [17.73438, 50.34391],
+ [17.63963, 50.28021],
+ [17.38029, 50.28021],
+ [17.35037, 50.34391],
+ [17.28055, 50.33754],
+ [17.18579, 50.40752],
+ [16.90152, 50.46152],
+ [16.86661, 50.41388],
+ [16.96635, 50.31844],
+ [17.03617, 50.23238],
+ [16.83668, 50.21962],
+ [16.712, 50.1046],
+ [16.58233, 50.15895],
+ [16.56238, 50.23876],
+ [16.43272, 50.33754],
+ [16.35292, 50.39163],
+ [16.27811, 50.39163],
+ [16.20829, 50.44565],
+ [16.39781, 50.53449],
+ [16.44768, 50.59785],
+ [16.35292, 50.6706],
+ [16.23821, 50.67692],
+ [16.21827, 50.63266],
+ [16.1285, 50.68324],
+ [16.0487, 50.60734],
+ [15.98885, 50.7022],
+ [15.87415, 50.68324],
+ [15.82926, 50.76533],
+ [15.72952, 50.74324],
+ [15.45023, 50.81577],
+ [15.39039, 50.77479],
+ [15.38041, 50.85987],
+ [15.29563, 50.88504],
+ [15.29563, 50.98876],
+ [15.17095, 51.02014],
+ [14.99141, 51.00131],
+ [15.00637, 50.88819],
+ [14.84179, 50.8756],
+ [14.7969, 50.82522],
+ [14.63233, 50.85672],
+ [14.66225, 50.93536],
+ [14.57248, 50.92278],
+ [14.61238, 50.98562],
+ [14.49767, 51.04837],
+ [14.41788, 51.02328],
+ [14.30816, 51.06717],
+ [14.2533, 51.00445],
+ [14.40291, 50.93221],
+ [14.37299, 50.89763],
+ [14.24332, 50.90706],
+ [14.20841, 50.84412],
+ [14.03386, 50.81262],
+ [13.979, 50.82522],
+ [13.90419, 50.79686],
+ [13.87427, 50.74009],
+ [13.53514, 50.7243],
+ [13.53015, 50.65796],
+ [13.4703, 50.61367],
+ [13.39051, 50.66428],
+ [13.32567, 50.58835],
+ [13.25086, 50.61051],
+ [13.196, 50.50595],
+ [13.05137, 50.52181],
+ [12.96659, 50.4107],
+ [12.82695, 50.47105],
+ [12.70227, 50.41388],
+ [12.50777, 50.40116],
+ [12.34319, 50.25471],
+ [12.32324, 50.18451],
+ [12.24843, 50.27384],
+ [12.17362, 50.33118],
+ [12.09881, 50.33436],
+ [12.11876, 50.25152],
+ [12.22349, 50.16534],
+ [12.20354, 50.12379],
+ [12.50278, 49.97328],
+ [12.47784, 49.93798],
+ [12.54766, 49.91551],
+ [12.46787, 49.80298],
+ [12.40802, 49.76111],
+ [12.48283, 49.68696],
+ [12.5327, 49.68696],
+ [12.51774, 49.62885],
+ [12.60751, 49.54155],
+ [12.67234, 49.43788],
+ [12.81199, 49.34699],
+ [12.94664, 49.34374],
+ [13.23091, 49.12882],
+ [13.32567, 49.10597],
+ [13.43539, 49.0439],
+ [13.41544, 48.99484],
+ [13.50022, 48.94901],
+ [13.56506, 48.98829],
+ [13.68475, 48.88346],
+ [13.7446, 48.90313],
+ [13.82439, 48.77511],
+ [13.8992, 48.77511],
+ [14.05879, 48.67642],
+ [14.04383, 48.63029],
+ [14.14358, 48.59072],
+ [14.37299, 48.56103],
+ [14.48271, 48.65007],
+ [14.57747, 48.60721],
+ [14.62734, 48.63359],
+ [14.70713, 48.58083],
+ [14.74703, 48.70276],
+ [14.81187, 48.73895],
+ [14.81685, 48.79483],
+ [14.98642, 48.76525],
+ [15.00637, 49.01774]
+ ]
+ ],
+ "overlay": true
+ },
+ {
+ "id": "Czech_RUIAN-budovy",
+ "name": "Czech RUIAN budovy",
+ "type": "tms",
+ "template": "https://tile.poloha.net/budovy/{zoom}/{x}/{y}.png",
+ "scaleExtent": [12, 20],
+ "polygon": [
+ [
+ [15.00637, 49.01774],
+ [15.15599, 49.00138],
+ [15.1909, 48.94246],
+ [15.31059, 48.98829],
+ [15.40535, 48.9752],
+ [15.54, 48.91624],
+ [15.71456, 48.86706],
+ [15.83425, 48.88018],
+ [15.9689, 48.81782],
+ [16.0886, 48.74553],
+ [16.39781, 48.74553],
+ [16.48758, 48.81454],
+ [16.6721, 48.7784],
+ [16.68208, 48.73566],
+ [16.90152, 48.71263],
+ [16.9464, 48.6237],
+ [17.11597, 48.83752],
+ [17.21072, 48.88018],
+ [17.40523, 48.81782],
+ [17.48004, 48.85393],
+ [17.52991, 48.81782],
+ [17.70446, 48.86706],
+ [17.81418, 48.9359],
+ [17.884, 48.9359],
+ [17.94385, 49.02101],
+ [18.06354, 49.03409],
+ [18.1184, 49.09944],
+ [18.1982, 49.30473],
+ [18.38771, 49.33399],
+ [18.57723, 49.50917],
+ [18.75677, 49.49946],
+ [18.84654, 49.52536],
+ [18.87646, 49.57066],
+ [18.79666, 49.69341],
+ [18.64206, 49.70954],
+ [18.5872, 49.83515],
+ [18.61214, 49.88338],
+ [18.56226, 49.93477],
+ [18.51239, 49.90587],
+ [18.36277, 49.95403],
+ [18.32786, 49.92193],
+ [18.26303, 49.97328],
+ [18.1184, 50.00534],
+ [18.06354, 50.07581],
+ [17.91392, 49.97969],
+ [17.77927, 50.03098],
+ [17.71444, 50.12379],
+ [17.60472, 50.16534],
+ [17.75932, 50.21962],
+ [17.73438, 50.34391],
+ [17.63963, 50.28021],
+ [17.38029, 50.28021],
+ [17.35037, 50.34391],
+ [17.28055, 50.33754],
+ [17.18579, 50.40752],
+ [16.90152, 50.46152],
+ [16.86661, 50.41388],
+ [16.96635, 50.31844],
+ [17.03617, 50.23238],
+ [16.83668, 50.21962],
+ [16.712, 50.1046],
+ [16.58233, 50.15895],
+ [16.56238, 50.23876],
+ [16.43272, 50.33754],
+ [16.35292, 50.39163],
+ [16.27811, 50.39163],
+ [16.20829, 50.44565],
+ [16.39781, 50.53449],
+ [16.44768, 50.59785],
+ [16.35292, 50.6706],
+ [16.23821, 50.67692],
+ [16.21827, 50.63266],
+ [16.1285, 50.68324],
+ [16.0487, 50.60734],
+ [15.98885, 50.7022],
+ [15.87415, 50.68324],
+ [15.82926, 50.76533],
+ [15.72952, 50.74324],
+ [15.45023, 50.81577],
+ [15.39039, 50.77479],
+ [15.38041, 50.85987],
+ [15.29563, 50.88504],
+ [15.29563, 50.98876],
+ [15.17095, 51.02014],
+ [14.99141, 51.00131],
+ [15.00637, 50.88819],
+ [14.84179, 50.8756],
+ [14.7969, 50.82522],
+ [14.63233, 50.85672],
+ [14.66225, 50.93536],
+ [14.57248, 50.92278],
+ [14.61238, 50.98562],
+ [14.49767, 51.04837],
+ [14.41788, 51.02328],
+ [14.30816, 51.06717],
+ [14.2533, 51.00445],
+ [14.40291, 50.93221],
+ [14.37299, 50.89763],
+ [14.24332, 50.90706],
+ [14.20841, 50.84412],
+ [14.03386, 50.81262],
+ [13.979, 50.82522],
+ [13.90419, 50.79686],
+ [13.87427, 50.74009],
+ [13.53514, 50.7243],
+ [13.53015, 50.65796],
+ [13.4703, 50.61367],
+ [13.39051, 50.66428],
+ [13.32567, 50.58835],
+ [13.25086, 50.61051],
+ [13.196, 50.50595],
+ [13.05137, 50.52181],
+ [12.96659, 50.4107],
+ [12.82695, 50.47105],
+ [12.70227, 50.41388],
+ [12.50777, 50.40116],
+ [12.34319, 50.25471],
+ [12.32324, 50.18451],
+ [12.24843, 50.27384],
+ [12.17362, 50.33118],
+ [12.09881, 50.33436],
+ [12.11876, 50.25152],
+ [12.22349, 50.16534],
+ [12.20354, 50.12379],
+ [12.50278, 49.97328],
+ [12.47784, 49.93798],
+ [12.54766, 49.91551],
+ [12.46787, 49.80298],
+ [12.40802, 49.76111],
+ [12.48283, 49.68696],
+ [12.5327, 49.68696],
+ [12.51774, 49.62885],
+ [12.60751, 49.54155],
+ [12.67234, 49.43788],
+ [12.81199, 49.34699],
+ [12.94664, 49.34374],
+ [13.23091, 49.12882],
+ [13.32567, 49.10597],
+ [13.43539, 49.0439],
+ [13.41544, 48.99484],
+ [13.50022, 48.94901],
+ [13.56506, 48.98829],
+ [13.68475, 48.88346],
+ [13.7446, 48.90313],
+ [13.82439, 48.77511],
+ [13.8992, 48.77511],
+ [14.05879, 48.67642],
+ [14.04383, 48.63029],
+ [14.14358, 48.59072],
+ [14.37299, 48.56103],
+ [14.48271, 48.65007],
+ [14.57747, 48.60721],
+ [14.62734, 48.63359],
+ [14.70713, 48.58083],
+ [14.74703, 48.70276],
+ [14.81187, 48.73895],
+ [14.81685, 48.79483],
+ [14.98642, 48.76525],
+ [15.00637, 49.01774]
+ ]
+ ],
+ "terms_url": "https://poloha.net/",
+ "terms_text": "Czech RUIAN"
+ },
+ {
+ "id": "Czech_RUIAN-parcely",
+ "name": "Czech RUIAN parcely",
+ "type": "tms",
+ "template": "https://tile.poloha.net/parcely/{zoom}/{x}/{y}.png",
+ "scaleExtent": [12, 20],
+ "polygon": [
+ [
+ [15.00637, 49.01774],
+ [15.15599, 49.00138],
+ [15.1909, 48.94246],
+ [15.31059, 48.98829],
+ [15.40535, 48.9752],
+ [15.54, 48.91624],
+ [15.71456, 48.86706],
+ [15.83425, 48.88018],
+ [15.9689, 48.81782],
+ [16.0886, 48.74553],
+ [16.39781, 48.74553],
+ [16.48758, 48.81454],
+ [16.6721, 48.7784],
+ [16.68208, 48.73566],
+ [16.90152, 48.71263],
+ [16.9464, 48.6237],
+ [17.11597, 48.83752],
+ [17.21072, 48.88018],
+ [17.40523, 48.81782],
+ [17.48004, 48.85393],
+ [17.52991, 48.81782],
+ [17.70446, 48.86706],
+ [17.81418, 48.9359],
+ [17.884, 48.9359],
+ [17.94385, 49.02101],
+ [18.06354, 49.03409],
+ [18.1184, 49.09944],
+ [18.1982, 49.30473],
+ [18.38771, 49.33399],
+ [18.57723, 49.50917],
+ [18.75677, 49.49946],
+ [18.84654, 49.52536],
+ [18.87646, 49.57066],
+ [18.79666, 49.69341],
+ [18.64206, 49.70954],
+ [18.5872, 49.83515],
+ [18.61214, 49.88338],
+ [18.56226, 49.93477],
+ [18.51239, 49.90587],
+ [18.36277, 49.95403],
+ [18.32786, 49.92193],
+ [18.26303, 49.97328],
+ [18.1184, 50.00534],
+ [18.06354, 50.07581],
+ [17.91392, 49.97969],
+ [17.77927, 50.03098],
+ [17.71444, 50.12379],
+ [17.60472, 50.16534],
+ [17.75932, 50.21962],
+ [17.73438, 50.34391],
+ [17.63963, 50.28021],
+ [17.38029, 50.28021],
+ [17.35037, 50.34391],
+ [17.28055, 50.33754],
+ [17.18579, 50.40752],
+ [16.90152, 50.46152],
+ [16.86661, 50.41388],
+ [16.96635, 50.31844],
+ [17.03617, 50.23238],
+ [16.83668, 50.21962],
+ [16.712, 50.1046],
+ [16.58233, 50.15895],
+ [16.56238, 50.23876],
+ [16.43272, 50.33754],
+ [16.35292, 50.39163],
+ [16.27811, 50.39163],
+ [16.20829, 50.44565],
+ [16.39781, 50.53449],
+ [16.44768, 50.59785],
+ [16.35292, 50.6706],
+ [16.23821, 50.67692],
+ [16.21827, 50.63266],
+ [16.1285, 50.68324],
+ [16.0487, 50.60734],
+ [15.98885, 50.7022],
+ [15.87415, 50.68324],
+ [15.82926, 50.76533],
+ [15.72952, 50.74324],
+ [15.45023, 50.81577],
+ [15.39039, 50.77479],
+ [15.38041, 50.85987],
+ [15.29563, 50.88504],
+ [15.29563, 50.98876],
+ [15.17095, 51.02014],
+ [14.99141, 51.00131],
+ [15.00637, 50.88819],
+ [14.84179, 50.8756],
+ [14.7969, 50.82522],
+ [14.63233, 50.85672],
+ [14.66225, 50.93536],
+ [14.57248, 50.92278],
+ [14.61238, 50.98562],
+ [14.49767, 51.04837],
+ [14.41788, 51.02328],
+ [14.30816, 51.06717],
+ [14.2533, 51.00445],
+ [14.40291, 50.93221],
+ [14.37299, 50.89763],
+ [14.24332, 50.90706],
+ [14.20841, 50.84412],
+ [14.03386, 50.81262],
+ [13.979, 50.82522],
+ [13.90419, 50.79686],
+ [13.87427, 50.74009],
+ [13.53514, 50.7243],
+ [13.53015, 50.65796],
+ [13.4703, 50.61367],
+ [13.39051, 50.66428],
+ [13.32567, 50.58835],
+ [13.25086, 50.61051],
+ [13.196, 50.50595],
+ [13.05137, 50.52181],
+ [12.96659, 50.4107],
+ [12.82695, 50.47105],
+ [12.70227, 50.41388],
+ [12.50777, 50.40116],
+ [12.34319, 50.25471],
+ [12.32324, 50.18451],
+ [12.24843, 50.27384],
+ [12.17362, 50.33118],
+ [12.09881, 50.33436],
+ [12.11876, 50.25152],
+ [12.22349, 50.16534],
+ [12.20354, 50.12379],
+ [12.50278, 49.97328],
+ [12.47784, 49.93798],
+ [12.54766, 49.91551],
+ [12.46787, 49.80298],
+ [12.40802, 49.76111],
+ [12.48283, 49.68696],
+ [12.5327, 49.68696],
+ [12.51774, 49.62885],
+ [12.60751, 49.54155],
+ [12.67234, 49.43788],
+ [12.81199, 49.34699],
+ [12.94664, 49.34374],
+ [13.23091, 49.12882],
+ [13.32567, 49.10597],
+ [13.43539, 49.0439],
+ [13.41544, 48.99484],
+ [13.50022, 48.94901],
+ [13.56506, 48.98829],
+ [13.68475, 48.88346],
+ [13.7446, 48.90313],
+ [13.82439, 48.77511],
+ [13.8992, 48.77511],
+ [14.05879, 48.67642],
+ [14.04383, 48.63029],
+ [14.14358, 48.59072],
+ [14.37299, 48.56103],
+ [14.48271, 48.65007],
+ [14.57747, 48.60721],
+ [14.62734, 48.63359],
+ [14.70713, 48.58083],
+ [14.74703, 48.70276],
+ [14.81187, 48.73895],
+ [14.81685, 48.79483],
+ [14.98642, 48.76525],
+ [15.00637, 49.01774]
+ ]
+ ],
+ "terms_url": "https://poloha.net/",
+ "terms_text": "Czech RUIAN"
+ },
+ {
+ "id": "Duna_2013",
+ "name": "Danube flood orthophoto 2013",
+ "type": "tms",
+ "template": "http://e.tile.openstreetmap.hu/dunai-arviz-2013/{zoom}/{x}/{y}.jpg",
+ "endDate": "2013-01-01T00:00:00.000Z",
+ "startDate": "2013-01-01T00:00:00.000Z",
+ "scaleExtent": [10, 20],
+ "polygon": [
+ [
+ [19.07732, 47.69597],
+ [19.07799, 47.69598],
+ [19.09462, 47.69446],
+ [19.08056, 47.59587],
+ [19.07434, 47.58909],
+ [19.07952, 47.58883],
+ [19.07717, 47.57241],
+ [19.05779, 47.57209],
+ [19.07732, 47.69597]
+ ]
+ ],
+ "terms_url": "http://fototerkep.hu",
+ "terms_text": "Fotótérkép.hu",
+ "description": "Riverbank of Danube at Budapest, Szentendre and Szigetmonostor"
+ },
+ {
+ "id": "Delaware2012Orthophotography",
+ "name": "Delaware 2012 Orthophotography",
+ "type": "wms",
+ "template": "https://firstmap.delaware.gov/arcgis/services/DE_Imagery/DE_Imagery_2012/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2012-01-01T00:00:00.000Z",
+ "startDate": "2012-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [-75.01771, 38.45189],
+ [-75.74174, 38.44996],
+ [-75.807, 39.73907],
+ [-75.75559, 39.80106],
+ [-75.64692, 39.85638],
+ [-75.47115, 39.84646],
+ [-75.37726, 39.81478],
+ [-75.48746, 39.67181],
+ [-75.50901, 39.43446],
+ [-75.39327, 39.27784],
+ [-75.30707, 39.01667],
+ [-75.19317, 38.82219],
+ [-75.05341, 38.80876],
+ [-75.01771, 38.45189]
+ ]
+ ],
+ "terms_url": "https://firstmap.delaware.gov/arcgis/rest/services/DE_Imagery/DE_Imagery_2012/ImageServer",
+ "terms_text": "Digital Aerial Solutions, LLC",
+ "description": "This data set consists of 0.3-meter pixel resolution (approximately 1-foot), 4-band true color and near infrared (R, G, B, IR) orthoimages covering New Castle, Kent and Sussex Counties in Delaware."
+ },
+ {
+ "id": "Delaware2017Orthophotography",
+ "name": "Delaware 2017 Orthophotography",
+ "type": "wms",
+ "template": "https://firstmap.delaware.gov/arcgis/services/DE_Imagery/DE_Imagery_2017/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2017-01-01T00:00:00.000Z",
+ "startDate": "2017-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [-75.01771, 38.45189],
+ [-75.74174, 38.44996],
+ [-75.807, 39.73907],
+ [-75.75559, 39.80106],
+ [-75.64692, 39.85638],
+ [-75.47115, 39.84646],
+ [-75.37726, 39.81478],
+ [-75.48746, 39.67181],
+ [-75.50901, 39.43446],
+ [-75.39327, 39.27784],
+ [-75.30707, 39.01667],
+ [-75.19317, 38.82219],
+ [-75.05341, 38.80876],
+ [-75.01771, 38.45189]
+ ]
+ ],
+ "terms_url": "https://firstmap.delaware.gov/arcgis/rest/services/DE_Imagery/DE_Imagery_2017/ImageServer",
+ "terms_text": "Digital Aerial Solutions, LLC",
+ "description": "This data set consists of 0.3-meter pixel resolution (approximately 1-foot), 4-band true color and near infrared (R, G, B, IR) orthoimages covering New Castle, Kent and Sussex Counties in Delaware."
+ },
+ {
+ "id": "delmiro_gouveia",
+ "name": "Delmiro Gouveia AL",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Delmiro%20Gouveia&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-37.94962, -9.42957],
+ [-37.94834, -9.33972],
+ [-38.03903, -9.33834],
+ [-38.04034, -9.42846],
+ [-37.94962, -9.42957]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "der-es",
+ "name": "DER-ES",
+ "type": "wms",
+ "template": "http://portal.der.es.gov.br/geoserver/wms?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=deres-ext:TRECHOINFO&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-40.94577, -21.31404],
+ [-40.6231, -20.86278],
+ [-40.38882, -20.65177],
+ [-40.22209, -20.29831],
+ [-39.80383, -19.66412],
+ [-39.69603, -19.42573],
+ [-39.67304, -19.30437],
+ [-39.70538, -18.61384],
+ [-39.65292, -18.33096],
+ [-40.22281, -17.97587],
+ [-40.34282, -17.9198],
+ [-40.45278, -17.91502],
+ [-40.46499, -17.92049],
+ [-40.48368, -17.90408],
+ [-40.50164, -17.90681],
+ [-40.51602, -17.88903],
+ [-40.53326, -17.88903],
+ [-40.54548, -17.90134],
+ [-40.58932, -17.91502],
+ [-40.58932, -17.93211],
+ [-40.61519, -17.93416],
+ [-40.62956, -17.9868],
+ [-40.64609, -17.9868],
+ [-40.65903, -18.00731],
+ [-40.68777, -18.00594],
+ [-40.70574, -18.01756],
+ [-40.71365, -18.00184],
+ [-40.72155, -17.99774],
+ [-40.75102, -18.00252],
+ [-40.76754, -17.99842],
+ [-40.76754, -17.98133],
+ [-40.80923, -17.94852],
+ [-40.82432, -17.96014],
+ [-40.83151, -17.94989],
+ [-40.86528, -17.9827],
+ [-40.88397, -17.96766],
+ [-40.90912, -17.98475],
+ [-40.77761, -18.10775],
+ [-40.77832, -18.15146],
+ [-40.79054, -18.15351],
+ [-40.8351, -18.14531],
+ [-40.89547, -18.10365],
+ [-40.93283, -18.12755],
+ [-40.95583, -18.1255],
+ [-40.95296, -18.14463],
+ [-40.96014, -18.15009],
+ [-40.96374, -18.14326],
+ [-40.97955, -18.13643],
+ [-40.99248, -18.15009],
+ [-40.99105, -18.16307],
+ [-41.00901, -18.16307],
+ [-41.05788, -18.1658],
+ [-41.05788, -18.17536],
+ [-41.09597, -18.19243],
+ [-41.09597, -18.2054],
+ [-41.1089, -18.21291],
+ [-41.09812, -18.22997],
+ [-41.10531, -18.2327],
+ [-41.09884, -18.25591],
+ [-41.12903, -18.27502],
+ [-41.16137, -18.30572],
+ [-41.15059, -18.37394],
+ [-41.16424, -18.37939],
+ [-41.16424, -18.4019],
+ [-41.15059, -18.40735],
+ [-41.15849, -18.41144],
+ [-41.17358, -18.41144],
+ [-41.18868, -18.44485],
+ [-41.02123, -18.46667],
+ [-41.04638, -18.60362],
+ [-41.03776, -18.61452],
+ [-41.05788, -18.62678],
+ [-41.0471, -18.64857],
+ [-41.03488, -18.65402],
+ [-40.99895, -18.67716],
+ [-40.94505, -18.69418],
+ [-40.94433, -18.76973],
+ [-40.92134, -18.81055],
+ [-40.93715, -18.82347],
+ [-40.94721, -18.82143],
+ [-40.97092, -18.83572],
+ [-41.08375, -18.83232],
+ [-41.10675, -18.83572],
+ [-41.11753, -18.80783],
+ [-41.13118, -18.79286],
+ [-41.23611, -18.7949],
+ [-41.2512, -18.81667],
+ [-41.2476, -18.85544],
+ [-41.2203, -18.87992],
+ [-41.20808, -18.87992],
+ [-41.20664, -18.86632],
+ [-41.16424, -18.867],
+ [-41.15634, -18.88876],
+ [-41.12903, -18.9044],
+ [-41.12112, -18.92412],
+ [-41.0392, -18.98665],
+ [-41.07585, -19.00567],
+ [-41.06507, -19.06342],
+ [-40.96877, -19.12726],
+ [-40.96158, -19.15102],
+ [-40.92996, -19.206],
+ [-40.94649, -19.22296],
+ [-40.94793, -19.24264],
+ [-40.92565, -19.26299],
+ [-40.94936, -19.2786],
+ [-40.92277, -19.31048],
+ [-40.94361, -19.35252],
+ [-40.93427, -19.381],
+ [-40.95727, -19.39184],
+ [-40.9738, -19.42641],
+ [-40.95439, -19.46165],
+ [-40.97883, -19.50298],
+ [-41.01332, -19.50298],
+ [-41.04638, -19.48333],
+ [-41.05429, -19.48401],
+ [-41.04135, -19.56664],
+ [-41.09238, -19.58966],
+ [-41.14627, -19.656],
+ [-41.16496, -19.65871],
+ [-41.17933, -19.6939],
+ [-41.19658, -19.74599],
+ [-41.16999, -19.80618],
+ [-41.18939, -19.82375],
+ [-41.18868, -19.88526],
+ [-41.21239, -19.89743],
+ [-41.22964, -19.90216],
+ [-41.24689, -19.93324],
+ [-41.25479, -19.92919],
+ [-41.26988, -19.93797],
+ [-41.30653, -19.93392],
+ [-41.31516, -19.96972],
+ [-41.3245, -19.97647],
+ [-41.313, -20.01226],
+ [-41.33672, -20.05548],
+ [-41.34822, -20.08653],
+ [-41.3554, -20.12094],
+ [-41.37768, -20.15805],
+ [-41.38702, -20.18638],
+ [-41.41074, -20.19448],
+ [-41.4208, -20.20257],
+ [-41.7636, -20.2046],
+ [-41.78516, -20.28483],
+ [-41.85055, -20.3246],
+ [-41.86349, -20.37513],
+ [-41.85127, -20.38187],
+ [-41.84337, -20.40949],
+ [-41.80887, -20.42498],
+ [-41.80672, -20.47211],
+ [-41.83115, -20.47885],
+ [-41.81103, -20.54212],
+ [-41.83115, -20.55086],
+ [-41.86205, -20.61814],
+ [-41.82109, -20.64437],
+ [-41.85343, -20.68068],
+ [-41.87139, -20.72102],
+ [-41.8678, -20.73849],
+ [-41.88002, -20.73984],
+ [-41.88289, -20.76739],
+ [-41.85415, -20.77478],
+ [-41.83331, -20.7983],
+ [-41.80887, -20.80905],
+ [-41.78444, -20.80569],
+ [-41.75138, -20.82382],
+ [-41.74707, -20.87487],
+ [-41.72335, -20.87554],
+ [-41.74132, -20.92723],
+ [-41.72335, -20.97757],
+ [-41.74347, -21.09763],
+ [-41.7291, -21.12579],
+ [-41.594, -21.16332],
+ [-41.57244, -21.18678],
+ [-41.49051, -21.18879],
+ [-41.48332, -21.20085],
+ [-41.43948, -21.22095],
+ [-41.41289, -21.20956],
+ [-41.34965, -21.21291],
+ [-41.27994, -21.2464],
+ [-41.24473, -21.23234],
+ [-41.17718, -21.25511],
+ [-41.09238, -21.2243],
+ [-41.04854, -21.25913],
+ [-41.01548, -21.25578],
+ [-41.00254, -21.28726],
+ [-40.94577, -21.31404]
+ ]
+ ],
+ "terms_url": "https://der.es.gov.br",
+ "terms_text": "Departamento de Estradas de Rodagem do Estado do Espírito Santo",
+ "overlay": true
+ },
+ {
+ "id": "DigitalGlobe-Premium",
+ "name": "DigitalGlobe Premium Imagery",
+ "type": "tms",
+ "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/digitalglobe.316c9a2e/{zoom}/{x}/{y}.png?access_token=pk.eyJ1IjoiZGlnaXRhbGdsb2JlIiwiYSI6ImNqZGFrZ2c2dzFlMWgyd2x0ZHdmMDB6NzYifQ.9Pl3XOO82ArX94fHV289Pg",
+ "scaleExtent": [0, 22],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/DigitalGlobe",
+ "terms_text": "Terms & Feedback",
+ "default": true,
+ "description": "Premium DigitalGlobe satellite imagery.",
+ "icon": "data:image/png;base64,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"
+ },
+ {
+ "id": "DigitalGlobe-Premium-vintage",
+ "name": "DigitalGlobe Premium Imagery Vintage",
+ "type": "tms",
+ "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/digitalglobe.2850d66c/{zoom}/{x}/{y}.png?access_token=pk.eyJ1IjoiZGlnaXRhbGdsb2JlIiwiYSI6ImNqOTBkcmZjNzJ5ZnozNHF6NnVkOGd6ODYifQ.grAnqgpCjOaeq-ozqt4QNw",
+ "scaleExtent": [0, 22],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/DigitalGlobe",
+ "terms_text": "Terms & Feedback",
+ "description": "Imagery boundaries and capture dates. Labels appear at zoom level 13 and higher.",
+ "icon": "data:image/png;base64,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",
+ "overlay": true
+ },
+ {
+ "id": "DigitalGlobe-Standard",
+ "name": "DigitalGlobe Standard Imagery",
+ "type": "tms",
+ "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/digitalglobe.0a8e44ba/{zoom}/{x}/{y}.png?access_token=pk.eyJ1IjoiZGlnaXRhbGdsb2JlIiwiYSI6ImNqZGFrZ3pjczNpaHYycXFyMGo0djY3N2IifQ.90uebT4-ow1uqZKTUrf6RQ",
+ "scaleExtent": [0, 22],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/DigitalGlobe",
+ "terms_text": "Terms & Feedback",
+ "default": true,
+ "description": "Standard DigitalGlobe satellite imagery.",
+ "icon": "data:image/png;base64,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"
+ },
+ {
+ "id": "DigitalGlobe-Standard-vintage",
+ "name": "DigitalGlobe Standard Imagery Vintage",
+ "type": "tms",
+ "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/digitalglobe.1412531a/{zoom}/{x}/{y}.png?access_token=pk.eyJ1IjoiZGlnaXRhbGdsb2JlIiwiYSI6ImNqOTBlYWJ1ZDAza2YyeG14NWVodTA4OWUifQ.wVc8ZOuPuYVw39lhS2j3_g",
+ "scaleExtent": [0, 22],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/DigitalGlobe",
+ "terms_text": "Terms & Feedback",
+ "description": "Imagery boundaries and capture dates. Labels appear at zoom level 13 and higher.",
+ "icon": "data:image/png;base64,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",
+ "overlay": true
+ },
+ {
+ "id": "Erlangen-2011",
+ "name": "Erlangen Luftbild (2011 5,0 cm)",
+ "type": "wms",
+ "template": "https://secure.erlangen.de/arcgiser/services/Luftbilder2011/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Erlangen_ratio10_5cm_gk4.jp2&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2011-01-01T00:00:00.000Z",
+ "startDate": "2011-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [10.92791, 49.53196],
+ [10.97194, 49.52969],
+ [10.97821, 49.53568],
+ [10.99934, 49.53589],
+ [11.03214, 49.53089],
+ [11.04425, 49.54317],
+ [11.03842, 49.55239],
+ [11.03663, 49.57167],
+ [11.04029, 49.58572],
+ [11.07287, 49.58587],
+ [11.07243, 49.63486],
+ [11.0054, 49.6344],
+ [11.00397, 49.62599],
+ [10.9748, 49.62541],
+ [10.94293, 49.64563],
+ [10.92532, 49.64876],
+ [10.91002, 49.63793],
+ [10.92235, 49.60463],
+ [10.91949, 49.57823],
+ [10.91135, 49.57095],
+ [10.91256, 49.5606],
+ [10.92907, 49.55674],
+ [10.92791, 49.53196]
+ ]
+ ],
+ "terms_text": "© Stadt Erlangen | © Aerowest GmbH"
+ },
+ {
+ "id": "Erlangen-2013",
+ "name": "Erlangen Luftbild (2013 6,25 cm)",
+ "type": "wms",
+ "template": "https://secure.erlangen.de/arcgiser/services/Luftbilder2013/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Erlangen_ratio5_6.25cm.jp2&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2013-01-01T00:00:00.000Z",
+ "startDate": "2013-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [10.92791, 49.53196],
+ [10.9726, 49.52939],
+ [10.97909, 49.53475],
+ [10.99934, 49.53589],
+ [11.03214, 49.53089],
+ [11.04425, 49.54317],
+ [11.03842, 49.55239],
+ [11.03743, 49.57873],
+ [11.0568, 49.592],
+ [11.05748, 49.61358],
+ [11.04681, 49.61447],
+ [11.04788, 49.6187],
+ [11.00308, 49.62367],
+ [10.98107, 49.62339],
+ [10.98069, 49.62617],
+ [10.96737, 49.62781],
+ [10.96539, 49.63415],
+ [10.94293, 49.64563],
+ [10.92532, 49.64876],
+ [10.91002, 49.63793],
+ [10.92235, 49.60463],
+ [10.91949, 49.57823],
+ [10.91135, 49.57095],
+ [10.91256, 49.5606],
+ [10.92907, 49.55674],
+ [10.92791, 49.53196]
+ ]
+ ],
+ "terms_text": "© Stadt Erlangen | © Aerowest GmbH"
+ },
+ {
+ "id": "Erlangen-2016",
+ "name": "Erlangen Luftbild (2016 5,0 cm)",
+ "type": "wms",
+ "template": "https://secure.erlangen.de/arcgiser/services/Luftbild2016/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2016-03-18T00:00:00.000Z",
+ "startDate": "2016-03-18T00:00:00.000Z",
+ "polygon": [
+ [
+ [10.97664, 49.53765],
+ [10.99101, 49.53392],
+ [10.99389, 49.53835],
+ [11.02784, 49.53254],
+ [11.0346, 49.53462],
+ [11.03407, 49.53759],
+ [11.04318, 49.54321],
+ [11.03557, 49.55303],
+ [11.0384, 49.55842],
+ [11.03508, 49.56929],
+ [11.03791, 49.58659],
+ [11.04797, 49.5902],
+ [11.04922, 49.5937],
+ [11.05749, 49.59521],
+ [11.05623, 49.59905],
+ [11.05127, 49.6003],
+ [11.05351, 49.60904],
+ [11.04309, 49.61381],
+ [11.04076, 49.61823],
+ [11.0285, 49.61735],
+ [11.01929, 49.61896],
+ [11.0152, 49.61372],
+ [11.00581, 49.61448],
+ [11.00639, 49.61931],
+ [11.00083, 49.6221],
+ [10.9856, 49.61651],
+ [10.97837, 49.61753],
+ [10.9737, 49.62495],
+ [10.96539, 49.62557],
+ [10.96063, 49.62856],
+ [10.96382, 49.63176],
+ [10.95474, 49.6379],
+ [10.94837, 49.637],
+ [10.94185, 49.64377],
+ [10.9273, 49.64837],
+ [10.92063, 49.63963],
+ [10.91136, 49.63773],
+ [10.92429, 49.60505],
+ [10.92205, 49.58004],
+ [10.91221, 49.57008],
+ [10.91441, 49.5618],
+ [10.92353, 49.55842],
+ [10.92712, 49.55976],
+ [10.93345, 49.55892],
+ [10.93071, 49.54467],
+ [10.93067, 49.53225],
+ [10.9406, 49.53325],
+ [10.95488, 49.53021],
+ [10.97199, 49.53126],
+ [10.97664, 49.53765]
+ ]
+ ],
+ "terms_text": "© Stadt Erlangen | © Geocart GmbH",
+ "best": true
+ },
+ {
+ "id": "EsriWorldImagery",
+ "name": "Esri World Imagery",
+ "type": "tms",
+ "template": "https://{switch:services,server}.arcgisonline.com/arcgis/rest/services/World_Imagery/MapServer/tile/{zoom}/{y}/{x}",
+ "scaleExtent": [0, 22],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/Esri",
+ "terms_text": "Terms & Feedback",
+ "default": true,
+ "description": "Esri world imagery.",
+ "icon": "data:image/png;base64,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"
+ },
+ {
+ "id": "EsriWorldImageryClarity",
+ "name": "Esri World Imagery (Clarity) Beta",
+ "type": "tms",
+ "template": "https://clarity.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer/tile/{zoom}/{y}/{x}",
+ "scaleExtent": [0, 22],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/Esri",
+ "terms_text": "Terms & Feedback",
+ "default": true,
+ "description": "Esri archive imagery that may be clearer and more accurate than the default layer.",
+ "icon": "data:image/png;base64,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"
+ },
+ {
+ "id": "maaamet.ee-pohi_vr2",
+ "name": "Estonia Basemap (Maaamet)",
+ "type": "wms",
+ "template": "https://kaart.maaamet.ee/wms/alus-geo?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=pohi_vr2&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:4326",
+ "polygon": [
+ [
+ [22.35364, 58.85385],
+ [22.09411, 58.85038],
+ [22.09179, 58.8951],
+ [22.00503, 58.89371],
+ [21.99979, 58.98374],
+ [22.34754, 58.98845],
+ [22.34535, 59.03337],
+ [22.51935, 59.03538],
+ [22.51556, 59.1251],
+ [22.69017, 59.12686],
+ [22.69212, 59.08218],
+ [22.77912, 59.083],
+ [22.78083, 59.03814],
+ [22.86808, 59.03877],
+ [22.8693, 58.99399],
+ [22.9563, 58.99487],
+ [22.95495, 59.03959],
+ [23.12895, 59.04097],
+ [23.12786, 59.08582],
+ [23.47671, 59.0877],
+ [23.47415, 59.26726],
+ [23.64924, 59.26788],
+ [23.64888, 59.31281],
+ [23.73698, 59.313],
+ [23.73649, 59.3578],
+ [23.91158, 59.35787],
+ [23.91207, 59.4028],
+ [24.176, 59.4028],
+ [24.17637, 59.4478],
+ [24.26446, 59.44767],
+ [24.26471, 59.49236],
+ [24.70605, 59.49082],
+ [24.70898, 59.62553],
+ [24.79744, 59.62497],
+ [24.79659, 59.58009],
+ [24.97327, 59.57885],
+ [24.97462, 59.62386],
+ [24.88603, 59.62473],
+ [24.88725, 59.66918],
+ [24.9762, 59.66863],
+ [24.9773, 59.71346],
+ [25.06601, 59.71259],
+ [25.0632, 59.62306],
+ [25.24037, 59.62145],
+ [25.24184, 59.66647],
+ [25.33055, 59.66548],
+ [25.32884, 59.62078],
+ [25.41755, 59.61979],
+ [25.41938, 59.66468],
+ [25.6855, 59.66148],
+ [25.68757, 59.70613],
+ [25.86511, 59.70386],
+ [25.86279, 59.65901],
+ [26.12855, 59.65507],
+ [26.12575, 59.6101],
+ [26.39114, 59.60565],
+ [26.38809, 59.56099],
+ [26.82967, 59.55215],
+ [26.82626, 59.50729],
+ [26.91423, 59.50549],
+ [26.91057, 59.46051],
+ [27.96689, 59.43303],
+ [27.9719, 59.4778],
+ [28.03669, 59.4757],
+ [28.04377, 59.47223],
+ [28.04767, 59.46578],
+ [28.05182, 59.46342],
+ [28.06915, 59.46256],
+ [28.08452, 59.45939],
+ [28.12174, 59.44091],
+ [28.13577, 59.4277],
+ [28.13711, 59.42267],
+ [28.14163, 59.41901],
+ [28.16652, 59.41205],
+ [28.17225, 59.40789],
+ [28.19275, 59.4015],
+ [28.21069, 59.3836],
+ [28.21069, 59.37994],
+ [28.20386, 59.37459],
+ [28.21057, 59.37235],
+ [28.21105, 59.36937],
+ [28.20678, 59.36719],
+ [28.20703, 59.36377],
+ [28.19971, 59.36091],
+ [28.20203, 59.35731],
+ [28.19263, 59.35227],
+ [28.19397, 59.34642],
+ [28.16969, 59.33354],
+ [28.13626, 59.29244],
+ [28.12515, 59.28901],
+ [28.11722, 59.28895],
+ [28.1099, 59.29063],
+ [28.05353, 59.2902],
+ [28.02022, 59.28334],
+ [27.99825, 59.2753],
+ [27.97983, 59.27293],
+ [27.96433, 59.27268],
+ [27.95335, 59.26863],
+ [27.9492, 59.26533],
+ [27.90564, 59.24044],
+ [27.90113, 59.23488],
+ [27.901, 59.22639],
+ [27.89783, 59.21746],
+ [27.90235, 59.20728],
+ [27.89234, 59.19222],
+ [27.88978, 59.18379],
+ [27.87648, 59.17372],
+ [27.87184, 59.16841],
+ [27.86818, 59.16159],
+ [27.84414, 59.14814],
+ [27.83206, 59.14401],
+ [27.82035, 59.13362],
+ [27.80986, 59.12905],
+ [27.80595, 59.12166],
+ [27.80534, 59.1127],
+ [27.81071, 59.10819],
+ [27.8101, 59.10606],
+ [27.80205, 59.1028],
+ [27.78887, 59.0909],
+ [27.7907, 59.08112],
+ [27.79375, 59.07842],
+ [27.79411, 59.07566],
+ [27.79277, 59.0729],
+ [27.79302, 59.06927],
+ [27.7885, 59.06657],
+ [27.78265, 59.065],
+ [27.77508, 59.0581],
+ [27.77313, 59.05107],
+ [27.77667, 59.04743],
+ [27.76983, 59.03325],
+ [27.76605, 59.03155],
+ [27.75153, 59.03017],
+ [27.74628, 59.02716],
+ [27.74567, 59.01705],
+ [27.74165, 59.00951],
+ [27.74787, 58.99267],
+ [27.74274, 58.98845],
+ [27.73213, 58.9855],
+ [27.6544, 58.98783],
+ [27.65501, 58.99241],
+ [27.39414, 58.99964],
+ [27.38974, 58.95474],
+ [27.12935, 58.96135],
+ [27.12557, 58.9164],
+ [27.03882, 58.91841],
+ [27.0271, 58.7841],
+ [27.11361, 58.78183],
+ [27.10934, 58.73709],
+ [27.19537, 58.73512],
+ [27.18731, 58.64533],
+ [27.27309, 58.64305],
+ [27.25259, 58.41883],
+ [27.53397, 58.41142],
+ [27.5552, 58.36575],
+ [27.51762, 58.33265],
+ [27.51408, 58.32214],
+ [27.49993, 58.32246],
+ [27.48687, 58.18803],
+ [27.52872, 58.18687],
+ [27.59205, 58.11875],
+ [27.63695, 58.09735],
+ [27.60938, 58.05399],
+ [27.62268, 58.0058],
+ [27.64489, 58.00205],
+ [27.65294, 58.00644],
+ [27.64781, 58.01426],
+ [27.64781, 58.02086],
+ [27.66172, 58.01866],
+ [27.66856, 58.01045],
+ [27.68393, 58.00845],
+ [27.6965, 58.0045],
+ [27.70065, 57.99862],
+ [27.69882, 57.98827],
+ [27.69125, 57.98549],
+ [27.68064, 57.97449],
+ [27.6821, 57.9719],
+ [27.68893, 57.97184],
+ [27.68588, 57.95928],
+ [27.65892, 57.9554],
+ [27.66758, 57.951],
+ [27.67161, 57.94627],
+ [27.66917, 57.94174],
+ [27.67649, 57.93552],
+ [27.68247, 57.93655],
+ [27.68613, 57.92794],
+ [27.68247, 57.92437],
+ [27.71078, 57.92392],
+ [27.72029, 57.92036],
+ [27.72054, 57.91174],
+ [27.70834, 57.90616],
+ [27.69882, 57.90616],
+ [27.70614, 57.90136],
+ [27.72896, 57.90739],
+ [27.74677, 57.90169],
+ [27.7536, 57.90409],
+ [27.75739, 57.90318],
+ [27.75592, 57.89806],
+ [27.76959, 57.89566],
+ [27.78094, 57.89832],
+ [27.799, 57.89961],
+ [27.81852, 57.89579],
+ [27.82096, 57.89047],
+ [27.81949, 57.888],
+ [27.81059, 57.88612],
+ [27.81827, 57.88249],
+ [27.81169, 57.87204],
+ [27.81583, 57.87166],
+ [27.8184, 57.8651],
+ [27.81632, 57.86134],
+ [27.79875, 57.85205],
+ [27.7946, 57.84634],
+ [27.80058, 57.8442],
+ [27.7957, 57.84017],
+ [27.78862, 57.84186],
+ [27.78411, 57.83725],
+ [27.77715, 57.8325],
+ [27.75849, 57.83536],
+ [27.74165, 57.82679],
+ [27.72383, 57.83179],
+ [27.70541, 57.84192],
+ [27.68771, 57.83419],
+ [27.66636, 57.83653],
+ [27.66026, 57.83893],
+ [27.64818, 57.8377],
+ [27.63634, 57.83978],
+ [27.62487, 57.83751],
+ [27.62207, 57.83874],
+ [27.59791, 57.83328],
+ [27.56252, 57.83023],
+ [27.5563, 57.83127],
+ [27.55227, 57.82113],
+ [27.54446, 57.82204],
+ [27.5452, 57.81808],
+ [27.55056, 57.81769],
+ [27.55667, 57.81366],
+ [27.5408, 57.81288],
+ [27.54471, 57.808],
+ [27.53726, 57.80644],
+ [27.53958, 57.80144],
+ [27.53592, 57.79663],
+ [27.53861, 57.79396],
+ [27.52921, 57.78856],
+ [27.5175, 57.78876],
+ [27.51847, 57.79201],
+ [27.50298, 57.78798],
+ [27.50005, 57.78973],
+ [27.4959, 57.78869],
+ [27.50774, 57.78349],
+ [27.51457, 57.77516],
+ [27.5081, 57.77158],
+ [27.51115, 57.76416],
+ [27.51591, 57.7639],
+ [27.52018, 57.75993],
+ [27.52811, 57.75818],
+ [27.53007, 57.75368],
+ [27.53116, 57.74073],
+ [27.548, 57.7333],
+ [27.5419, 57.73037],
+ [27.52799, 57.72946],
+ [27.5236, 57.71616],
+ [27.52762, 57.70899],
+ [27.5236, 57.70802],
+ [27.51652, 57.70873],
+ [27.51066, 57.71101],
+ [27.50859, 57.70723],
+ [27.49993, 57.70495],
+ [27.49529, 57.70749],
+ [27.48711, 57.7191],
+ [27.47357, 57.71545],
+ [27.47064, 57.70802],
+ [27.46149, 57.70619],
+ [27.44807, 57.71616],
+ [27.43086, 57.70756],
+ [27.42818, 57.69902],
+ [27.41341, 57.69915],
+ [27.41647, 57.69524],
+ [27.40744, 57.69276],
+ [27.40231, 57.68493],
+ [27.39133, 57.68539],
+ [27.39377, 57.67913],
+ [27.39145, 57.67671],
+ [27.38193, 57.67332],
+ [27.37779, 57.66836],
+ [27.38364, 57.66059],
+ [27.3801, 57.65883],
+ [27.38755, 57.6555],
+ [27.38047, 57.6495],
+ [27.38352, 57.64799],
+ [27.38157, 57.64368],
+ [27.39072, 57.6431],
+ [27.38816, 57.64009],
+ [27.40085, 57.63742],
+ [27.40317, 57.62905],
+ [27.40182, 57.62376],
+ [27.39597, 57.62115],
+ [27.39023, 57.62036],
+ [27.39084, 57.6169],
+ [27.40195, 57.61775],
+ [27.40634, 57.61546],
+ [27.40683, 57.61246],
+ [27.38572, 57.60304],
+ [27.37827, 57.59513],
+ [27.35692, 57.59696],
+ [27.3413, 57.58984],
+ [27.34179, 57.58539],
+ [27.32886, 57.5797],
+ [27.32141, 57.57898],
+ [27.3341, 57.56596],
+ [27.33178, 57.56066],
+ [27.33776, 57.56007],
+ [27.33886, 57.54671],
+ [27.34386, 57.5454],
+ [27.35472, 57.52575],
+ [27.35131, 57.51632],
+ [27.34569, 57.52104],
+ [27.32446, 57.52274],
+ [27.29664, 57.53859],
+ [27.28017, 57.53643],
+ [27.2737, 57.54311],
+ [27.26431, 57.54377],
+ [27.2637, 57.54841],
+ [27.25772, 57.54979],
+ [27.24796, 57.54769],
+ [27.2249, 57.55385],
+ [27.19329, 57.54966],
+ [27.16145, 57.55922],
+ [27.11654, 57.56118],
+ [27.10092, 57.5653],
+ [27.08506, 57.57538],
+ [27.07262, 57.57734],
+ [27.07225, 57.57989],
+ [27.0559, 57.58251],
+ [27.05285, 57.58087],
+ [27.04687, 57.58048],
+ [27.04492, 57.58251],
+ [27.0332, 57.58532],
+ [27.04126, 57.58761],
+ [27.04418, 57.5967],
+ [27.03101, 57.60461],
+ [26.99513, 57.60461],
+ [26.99233, 57.61076],
+ [26.98696, 57.60867],
+ [26.98366, 57.61174],
+ [26.97549, 57.612],
+ [26.97097, 57.60448],
+ [26.9595, 57.60625],
+ [26.9578, 57.60468],
+ [26.94596, 57.60272],
+ [26.93961, 57.60932],
+ [26.95133, 57.61579],
+ [26.94999, 57.62056],
+ [26.94059, 57.61978],
+ [26.92961, 57.62376],
+ [26.92644, 57.6331],
+ [26.90679, 57.63304],
+ [26.89971, 57.63056],
+ [26.90057, 57.62918],
+ [26.89581, 57.62572],
+ [26.88849, 57.62357],
+ [26.88898, 57.62193],
+ [26.87458, 57.61906],
+ [26.87275, 57.61736],
+ [26.86555, 57.61592],
+ [26.85786, 57.60997],
+ [26.86469, 57.6084],
+ [26.85811, 57.60049],
+ [26.85994, 57.59598],
+ [26.86433, 57.59415],
+ [26.86177, 57.59108],
+ [26.84688, 57.5884],
+ [26.83504, 57.58244],
+ [26.81589, 57.58153],
+ [26.80954, 57.58473],
+ [26.79685, 57.58179],
+ [26.79929, 57.58002],
+ [26.79295, 57.57315],
+ [26.78685, 57.57525],
+ [26.7766, 57.55994],
+ [26.76915, 57.56039],
+ [26.76354, 57.56314],
+ [26.75366, 57.56249],
+ [26.75817, 57.5653],
+ [26.76891, 57.57041],
+ [26.77379, 57.57473],
+ [26.76769, 57.57754],
+ [26.74804, 57.5778],
+ [26.75317, 57.58009],
+ [26.73816, 57.58774],
+ [26.72901, 57.58016],
+ [26.73828, 57.57584],
+ [26.73072, 57.56903],
+ [26.72388, 57.57244],
+ [26.71107, 57.56596],
+ [26.69972, 57.57106],
+ [26.69753, 57.5706],
+ [26.69741, 57.56733],
+ [26.69155, 57.56615],
+ [26.67569, 57.56668],
+ [26.67105, 57.56327],
+ [26.6719, 57.55385],
+ [26.66531, 57.55287],
+ [26.64652, 57.55391],
+ [26.64262, 57.54658],
+ [26.63444, 57.54357],
+ [26.61443, 57.52909],
+ [26.61712, 57.50885],
+ [26.60467, 57.51212],
+ [26.60479, 57.51442],
+ [26.5954, 57.51376],
+ [26.59479, 57.51592],
+ [26.58808, 57.51619],
+ [26.59015, 57.52516],
+ [26.58698, 57.52621],
+ [26.58771, 57.53781],
+ [26.58381, 57.53957],
+ [26.57978, 57.53695],
+ [26.57966, 57.53375],
+ [26.56123, 57.5285],
+ [26.56184, 57.52261],
+ [26.5666, 57.51946],
+ [26.55794, 57.5137],
+ [26.52585, 57.51619],
+ [26.49961, 57.52451],
+ [26.49095, 57.54534],
+ [26.46996, 57.57551],
+ [26.40151, 57.57237],
+ [26.34489, 57.58408],
+ [26.33476, 57.5797],
+ [26.32781, 57.57963],
+ [26.32635, 57.58277],
+ [26.3117, 57.58473],
+ [26.30853, 57.59291],
+ [26.3006, 57.59343],
+ [26.29291, 57.59114],
+ [26.28352, 57.59232],
+ [26.28217, 57.5952],
+ [26.27754, 57.595],
+ [26.27034, 57.6001],
+ [26.27022, 57.60461],
+ [26.25423, 57.61383],
+ [26.24715, 57.62082],
+ [26.24813, 57.62775],
+ [26.23947, 57.63408],
+ [26.24203, 57.63539],
+ [26.24667, 57.63559],
+ [26.23959, 57.64649],
+ [26.23239, 57.6461],
+ [26.23117, 57.64904],
+ [26.24215, 57.65146],
+ [26.2363, 57.65753],
+ [26.23032, 57.65805],
+ [26.21043, 57.66601],
+ [26.21372, 57.66888],
+ [26.21092, 57.67071],
+ [26.21018, 57.67906],
+ [26.20079, 57.68102],
+ [26.19896, 57.68356],
+ [26.19444, 57.68519],
+ [26.18541, 57.68454],
+ [26.17712, 57.68761],
+ [26.18871, 57.69472],
+ [26.19859, 57.70906],
+ [26.20567, 57.71486],
+ [26.1726, 57.72867],
+ [26.141, 57.73278],
+ [26.13563, 57.73923],
+ [26.13905, 57.74548],
+ [26.13551, 57.7503],
+ [26.10537, 57.757],
+ [26.08035, 57.76547],
+ [26.07974, 57.76384],
+ [26.07328, 57.76371],
+ [26.07047, 57.7656],
+ [26.05912, 57.75987],
+ [26.049, 57.7611],
+ [26.0435, 57.76703],
+ [26.03326, 57.77054],
+ [26.02374, 57.76761],
+ [26.01776, 57.7723],
+ [26.02459, 57.77516],
+ [26.02496, 57.7816],
+ [26.02252, 57.78355],
+ [26.02776, 57.7898],
+ [26.03081, 57.79097],
+ [26.03338, 57.80105],
+ [26.03679, 57.80592],
+ [26.03606, 57.8108],
+ [26.04851, 57.82289],
+ [26.05705, 57.83842],
+ [26.05558, 57.84764],
+ [26.03667, 57.84926],
+ [26.02008, 57.84517],
+ [26.00958, 57.85731],
+ [25.99848, 57.85816],
+ [25.96273, 57.84491],
+ [25.931, 57.85244],
+ [25.89537, 57.84972],
+ [25.8883, 57.84595],
+ [25.88085, 57.84946],
+ [25.88573, 57.85277],
+ [25.88427, 57.85595],
+ [25.87561, 57.85796],
+ [25.87475, 57.86322],
+ [25.8595, 57.85614],
+ [25.81923, 57.86419],
+ [25.78312, 57.89948],
+ [25.78629, 57.90428],
+ [25.77165, 57.91206],
+ [25.75102, 57.91692],
+ [25.73724, 57.92295],
+ [25.72833, 57.92133],
+ [25.72247, 57.91245],
+ [25.70356, 57.90331],
+ [25.67916, 57.90461],
+ [25.67549, 57.91277],
+ [25.66207, 57.91511],
+ [25.65609, 57.91439],
+ [25.64889, 57.91666],
+ [25.64987, 57.91841],
+ [25.63828, 57.93059],
+ [25.57983, 57.9442],
+ [25.59399, 57.95961],
+ [25.58935, 57.96504],
+ [25.58239, 57.96783],
+ [25.58044, 57.9721],
+ [25.57483, 57.9741],
+ [25.56556, 57.96718],
+ [25.56604, 57.96258],
+ [25.55714, 57.96038],
+ [25.55567, 57.96711],
+ [25.55079, 57.97255],
+ [25.53725, 57.97139],
+ [25.52566, 57.97184],
+ [25.5226, 57.96802],
+ [25.51638, 57.96737],
+ [25.51211, 57.96977],
+ [25.52212, 57.97488],
+ [25.51943, 57.98031],
+ [25.48539, 57.97475],
+ [25.47843, 57.98006],
+ [25.47843, 57.98264],
+ [25.44219, 57.99616],
+ [25.44817, 58.00114],
+ [25.46648, 58.00515],
+ [25.44817, 58.01698],
+ [25.40693, 58.02893],
+ [25.37155, 58.02926],
+ [25.36374, 58.03171],
+ [25.35336, 58.04334],
+ [25.34482, 58.04676],
+ [25.33604, 58.05709],
+ [25.3292, 58.05858],
+ [25.32664, 58.0638],
+ [25.31981, 58.066],
+ [25.31908, 58.06929],
+ [25.29553, 58.08161],
+ [25.28686, 58.08149],
+ [25.28113, 58.07019],
+ [25.266, 58.06716],
+ [25.26502, 58.06],
+ [25.27991, 58.05063],
+ [25.29309, 58.0467],
+ [25.30431, 58.03449],
+ [25.30114, 58.01504],
+ [25.29748, 58.01459],
+ [25.30285, 58.00011],
+ [25.29577, 57.99972],
+ [25.29736, 57.99661],
+ [25.30358, 57.99396],
+ [25.30138, 57.99273],
+ [25.29187, 57.99286],
+ [25.28308, 57.98963],
+ [25.26722, 57.99454],
+ [25.25611, 57.9939],
+ [25.25502, 58.00347],
+ [25.2455, 58.00302],
+ [25.22768, 58.01782],
+ [25.24587, 58.01872],
+ [25.23562, 58.02286],
+ [25.23635, 58.02441],
+ [25.22732, 58.02435],
+ [25.22537, 58.02195],
+ [25.21902, 58.02977],
+ [25.21658, 58.04088],
+ [25.22695, 58.04799],
+ [25.22817, 58.05348],
+ [25.22122, 58.05302],
+ [25.22146, 58.05051],
+ [25.2178, 58.04908],
+ [25.21597, 58.05954],
+ [25.21219, 58.06226],
+ [25.20523, 58.06122],
+ [25.20389, 58.0651],
+ [25.21621, 58.07413],
+ [25.21207, 58.08052],
+ [25.19962, 58.08536],
+ [25.18949, 58.08007],
+ [25.19169, 58.07613],
+ [25.1535, 58.07478],
+ [25.15154, 58.07703],
+ [25.13397, 58.07974],
+ [25.10579, 58.07749],
+ [25.10518, 58.06645],
+ [25.07662, 58.06645],
+ [25.02037, 58.01769],
+ [24.99512, 58.01084],
+ [24.94863, 58.00942],
+ [24.83234, 57.97177],
+ [24.80806, 57.99066],
+ [24.74229, 57.98187],
+ [24.74339, 57.96491],
+ [24.7329, 57.96239],
+ [24.71508, 57.96271],
+ [24.6919, 57.94653],
+ [24.67335, 57.95896],
+ [24.64468, 57.95889],
+ [24.64187, 57.95423],
+ [24.64577, 57.95268],
+ [24.62869, 57.94193],
+ [24.61612, 57.94368],
+ [24.60892, 57.95125],
+ [24.58464, 57.96174],
+ [24.57317, 57.95436],
+ [24.54792, 57.94938],
+ [24.54352, 57.94478],
+ [24.5301, 57.94705],
+ [24.5207, 57.94303],
+ [24.51839, 57.93675],
+ [24.5096, 57.93442],
+ [24.51326, 57.93066],
+ [24.4625, 57.92496],
+ [24.44579, 57.90798],
+ [24.46018, 57.90662],
+ [24.45225, 57.89942],
+ [24.46006, 57.87977],
+ [24.41138, 57.86491],
+ [24.40906, 57.87191],
+ [24.33707, 57.87393],
+ [24.33829, 58.0109],
+ [24.42272, 58.01097],
+ [24.42614, 58.28002],
+ [24.51155, 58.2797],
+ [24.51216, 58.32471],
+ [24.42638, 58.32503],
+ [24.42712, 58.36972],
+ [24.34182, 58.37017],
+ [24.34048, 58.23547],
+ [24.17014, 58.23572],
+ [24.17014, 58.1908],
+ [24.08485, 58.19092],
+ [24.0851, 58.23605],
+ [24.00066, 58.23579],
+ [23.99993, 58.28092],
+ [23.82971, 58.28047],
+ [23.82947, 58.32554],
+ [23.65864, 58.32496],
+ [23.65791, 58.41493],
+ [23.57225, 58.41468],
+ [23.57127, 58.50436],
+ [23.39935, 58.50359],
+ [23.40106, 58.41391],
+ [23.14421, 58.41238],
+ [23.14567, 58.36735],
+ [23.05989, 58.36703],
+ [23.06172, 58.32221],
+ [22.9757, 58.32157],
+ [22.97716, 58.27681],
+ [22.89187, 58.27598],
+ [22.89358, 58.23103],
+ [22.80865, 58.2302],
+ [22.81012, 58.18539],
+ [22.89529, 58.1861],
+ [22.89663, 58.1413],
+ [22.72641, 58.13982],
+ [22.72495, 58.18475],
+ [22.55522, 58.18276],
+ [22.55693, 58.13744],
+ [22.64173, 58.13886],
+ [22.64344, 58.094],
+ [22.38903, 58.0909],
+ [22.38525, 58.18063],
+ [22.29995, 58.17967],
+ [22.30679, 58.04527],
+ [22.22198, 58.0436],
+ [22.22626, 57.95404],
+ [22.14206, 57.95281],
+ [22.1445, 57.90804],
+ [22.06007, 57.90681],
+ [22.06263, 57.86186],
+ [21.97807, 57.86043],
+ [21.96831, 58.04004],
+ [22.05274, 58.04134],
+ [22.04506, 58.17581],
+ [21.96038, 58.17471],
+ [21.95781, 58.21941],
+ [21.78723, 58.21638],
+ [21.78211, 58.30631],
+ [21.69681, 58.3049],
+ [21.69401, 58.34975],
+ [21.77942, 58.35122],
+ [21.76795, 58.53074],
+ [22.02566, 58.53488],
+ [22.02797, 58.49001],
+ [22.11375, 58.49167],
+ [22.11144, 58.53621],
+ [22.19709, 58.53742],
+ [22.19453, 58.5823],
+ [22.45236, 58.58573],
+ [22.44638, 58.7203],
+ [22.36023, 58.71916],
+ [22.35364, 58.85385]
+ ],
+ [
+ [23.47415, 59.26726],
+ [23.29868, 59.26632],
+ [23.29795, 59.31138],
+ [23.47293, 59.31194],
+ [23.47415, 59.26726]
+ ],
+ [
+ [24.17014, 58.1908],
+ [24.25507, 58.19073],
+ [24.25458, 58.14581],
+ [24.17002, 58.14588],
+ [24.17014, 58.1908]
+ ],
+ [
+ [24.08485, 58.19092],
+ [24.08497, 58.10129],
+ [23.99968, 58.10116],
+ [23.99993, 58.05632],
+ [23.91525, 58.05612],
+ [23.915, 58.14613],
+ [23.83032, 58.146],
+ [23.82971, 58.23572],
+ [23.91451, 58.23585],
+ [23.91476, 58.19099],
+ [24.08485, 58.19092]
+ ],
+ [
+ [24.61854, 59.53612],
+ [24.44183, 59.5368],
+ [24.44309, 59.62659],
+ [24.62016, 59.6258],
+ [24.61854, 59.53612]
+ ],
+ [
+ [26.40403, 59.7852],
+ [26.31501, 59.78667],
+ [26.31814, 59.83152],
+ [26.40732, 59.82994],
+ [26.40403, 59.7852]
+ ],
+ [
+ [26.48308, 59.649],
+ [26.48647, 59.69383],
+ [26.57514, 59.69202],
+ [26.57166, 59.64719],
+ [26.48308, 59.649]
+ ],
+ [
+ [23.15944, 57.78408],
+ [23.24346, 57.78461],
+ [23.24445, 57.73971],
+ [23.32848, 57.74031],
+ [23.32679, 57.82998],
+ [23.15845, 57.82885],
+ [23.15944, 57.78408]
+ ]
+ ],
+ "terms_text": "Maa-Ameti põhikaart"
+ },
+ {
+ "id": "maaamet.ee-cir_ngr",
+ "name": "Estonia Forestry (Maaamet)",
+ "type": "wms",
+ "template": "https://kaart.maaamet.ee/wms/alus-geo?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=cir_ngr&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:4326",
+ "polygon": [
+ [
+ [21.69401, 57.50255],
+ [21.69401, 59.82746],
+ [28.21105, 59.82746],
+ [28.21105, 57.50255],
+ [21.69401, 57.50255]
+ ]
+ ],
+ "terms_text": "Maa-Ameti metsanduslik ortofoto"
+ },
+ {
+ "id": "maaamet.ee-reljeef",
+ "name": "Estonia Hillshading (Maaamet)",
+ "type": "wms",
+ "template": "https://kaart.maaamet.ee/wms/alus-geo?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=reljeef&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:4326",
+ "polygon": [
+ [
+ [21.69401, 57.50255],
+ [21.69401, 59.82746],
+ [28.21105, 59.82746],
+ [28.21105, 57.50255],
+ [21.69401, 57.50255]
+ ]
+ ],
+ "terms_text": "Maa-Ameti reljeefikaart"
+ },
+ {
+ "id": "maaamet.ee-orto",
+ "name": "Estonia Ortho (Maaamet)",
+ "type": "tms",
+ "template": "https://tiles.maaamet.ee/tm/tms/1.0.0/foto@GMC/{zoom}/{x}/{-y}.png",
+ "scaleExtent": [14, 18],
+ "polygon": [
+ [
+ [21.69401, 57.50255],
+ [21.69401, 59.82746],
+ [28.21105, 59.82746],
+ [28.21105, 57.50255],
+ [21.69401, 57.50255]
+ ]
+ ],
+ "terms_text": "Maa-Ameti ortofoto"
+ },
+ {
+ "id": "estrela_de_alagoas",
+ "name": "Estrela de Alagoas",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Estrela%20de%20Alagoas&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-36.71382, -9.43476],
+ [-36.71477, -9.34443],
+ [-36.80586, -9.34498],
+ [-36.80525, -9.43542],
+ [-36.71382, -9.43476]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "Fiez-2013",
+ "name": "Fiez Orthophoto 2013",
+ "type": "tms",
+ "template": "http://osmdata.asitvd.ch/tiles/fiez2013/{zoom}/{x}/{y}.png",
+ "endDate": "2013-01-01T00:00:00.000Z",
+ "startDate": "2013-01-01T00:00:00.000Z",
+ "scaleExtent": [14, 20],
+ "polygon": [
+ [
+ [6.62313, 46.82339],
+ [6.62899, 46.82484],
+ [6.62882, 46.82674],
+ [6.62531, 46.83274],
+ [6.62382, 46.83317],
+ [6.61839, 46.83194],
+ [6.62313, 46.82339]
+ ]
+ ],
+ "terms_url": "http://osmdata.asitvd.ch/",
+ "terms_text": "Fiez - Orthophoto technique 2013"
+ },
+ {
+ "id": "FOMI_2000",
+ "name": "FÖMI orthophoto 2000",
+ "type": "tms",
+ "template": "http://e.tile.openstreetmap.hu/ortofoto2000/{zoom}/{x}/{y}.jpg",
+ "endDate": "2000-01-01T00:00:00.000Z",
+ "startDate": "2000-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 17],
+ "polygon": [
+ [
+ [16.11391, 46.8691],
+ [16.17897, 46.90662],
+ [16.20004, 46.94151],
+ [16.22175, 46.93554],
+ [16.24628, 46.94639],
+ [16.25532, 46.96421],
+ [16.27647, 46.96261],
+ [16.29058, 47.01398],
+ [16.30162, 46.99923],
+ [16.34146, 46.99652],
+ [16.35052, 47.01063],
+ [16.3734, 46.99859],
+ [16.41277, 47.00475],
+ [16.43327, 46.99274],
+ [16.44781, 47.00389],
+ [16.48, 46.99412],
+ [16.5122, 47.00117],
+ [16.46356, 47.03227],
+ [16.44786, 47.02275],
+ [16.43912, 47.02966],
+ [16.44567, 47.03887],
+ [16.52032, 47.0561],
+ [16.47321, 47.07362],
+ [16.46372, 47.09392],
+ [16.5008, 47.11006],
+ [16.50004, 47.12329],
+ [16.52953, 47.12874],
+ [16.51716, 47.14969],
+ [16.45495, 47.14259],
+ [16.46487, 47.16833],
+ [16.45556, 47.18756],
+ [16.43056, 47.1847],
+ [16.4195, 47.19491],
+ [16.41892, 47.21071],
+ [16.43713, 47.2097],
+ [16.44263, 47.23371],
+ [16.43131, 47.25276],
+ [16.46715, 47.25317],
+ [16.48923, 47.27989],
+ [16.46463, 47.33385],
+ [16.4337, 47.35281],
+ [16.45851, 47.36705],
+ [16.44546, 47.40702],
+ [16.48317, 47.40936],
+ [16.49638, 47.38927],
+ [16.51709, 47.41002],
+ [16.57491, 47.40542],
+ [16.58073, 47.41917],
+ [16.66185, 47.4556],
+ [16.67064, 47.47422],
+ [16.65234, 47.50034],
+ [16.68956, 47.51016],
+ [16.71478, 47.5402],
+ [16.66354, 47.56773],
+ [16.6732, 47.60495],
+ [16.65953, 47.6061],
+ [16.65276, 47.62285],
+ [16.63142, 47.62832],
+ [16.57391, 47.61967],
+ [16.51474, 47.6462],
+ [16.49675, 47.63931],
+ [16.42546, 47.66217],
+ [16.44374, 47.67421],
+ [16.44805, 47.69647],
+ [16.4747, 47.68116],
+ [16.48722, 47.69798],
+ [16.55217, 47.72255],
+ [16.53638, 47.73678],
+ [16.54798, 47.75154],
+ [16.60952, 47.76037],
+ [16.63441, 47.75908],
+ [16.65729, 47.74149],
+ [16.72094, 47.73536],
+ [16.75341, 47.68282],
+ [16.83016, 47.68106],
+ [16.83943, 47.70451],
+ [16.86689, 47.72115],
+ [16.87668, 47.68765],
+ [17.09374, 47.70777],
+ [17.07066, 47.72854],
+ [17.0516, 47.79385],
+ [17.07495, 47.8085],
+ [17.04714, 47.82856],
+ [17.05195, 47.83777],
+ [17.01055, 47.85818],
+ [17.01639, 47.86733],
+ [17.08575, 47.87462],
+ [17.11317, 47.92716],
+ [17.09171, 47.93429],
+ [17.11838, 47.96011],
+ [17.09466, 47.97088],
+ [17.20103, 48.01999],
+ [17.24177, 48.02247],
+ [17.25795, 47.99865],
+ [17.33465, 47.99312],
+ [17.40299, 47.94785],
+ [17.45392, 47.88526],
+ [17.52674, 47.86551],
+ [17.56758, 47.81513],
+ [17.6084, 47.82189],
+ [17.70858, 47.75668],
+ [17.77987, 47.73949],
+ [17.8661, 47.74575],
+ [17.90013, 47.73926],
+ [17.94687, 47.74467],
+ [17.97087, 47.75784],
+ [18.00441, 47.74634],
+ [18.03806, 47.75768],
+ [18.29588, 47.73146],
+ [18.45407, 47.76512],
+ [18.49316, 47.75276],
+ [18.55908, 47.766],
+ [18.64609, 47.75909],
+ [18.72607, 47.78904],
+ [18.74118, 47.81382],
+ [18.792, 47.82309],
+ [18.84854, 47.81672],
+ [18.85588, 47.82608],
+ [18.82801, 47.83429],
+ [18.81357, 47.85555],
+ [18.76353, 47.8716],
+ [18.75686, 47.89684],
+ [18.77675, 47.95509],
+ [18.75525, 47.97635],
+ [18.81574, 47.99344],
+ [18.82, 48.03968],
+ [18.83327, 48.04824],
+ [18.87494, 48.04707],
+ [18.88667, 48.05868],
+ [18.90898, 48.05114],
+ [18.9439, 48.05886],
+ [18.98161, 48.0536],
+ [19.01486, 48.07818],
+ [19.05852, 48.05735],
+ [19.08436, 48.07278],
+ [19.1074, 48.0656],
+ [19.13529, 48.07415],
+ [19.24137, 48.05365],
+ [19.25578, 48.07156],
+ [19.30311, 48.08871],
+ [19.3866, 48.09191],
+ [19.40002, 48.0823],
+ [19.45405, 48.10144],
+ [19.46735, 48.08393],
+ [19.49442, 48.10991],
+ [19.49238, 48.13966],
+ [19.51282, 48.15466],
+ [19.50452, 48.17344],
+ [19.52897, 48.19036],
+ [19.52604, 48.20313],
+ [19.5775, 48.21601],
+ [19.63083, 48.25007],
+ [19.64452, 48.23917],
+ [19.66986, 48.23921],
+ [19.69122, 48.20389],
+ [19.72113, 48.20147],
+ [19.74618, 48.21651],
+ [19.78716, 48.19253],
+ [19.79873, 48.19482],
+ [19.80528, 48.18373],
+ [19.78242, 48.16504],
+ [19.79481, 48.15353],
+ [19.82133, 48.16908],
+ [19.84528, 48.16274],
+ [19.85517, 48.17843],
+ [19.86013, 48.16941],
+ [19.89875, 48.16631],
+ [19.91454, 48.14686],
+ [19.8983, 48.1249],
+ [19.93738, 48.13112],
+ [19.97439, 48.166],
+ [19.98871, 48.16217],
+ [20.02904, 48.17768],
+ [20.04945, 48.1672],
+ [20.07299, 48.17961],
+ [20.07004, 48.1917],
+ [20.13409, 48.22518],
+ [20.13319, 48.25398],
+ [20.20616, 48.25098],
+ [20.20383, 48.26191],
+ [20.22847, 48.26278],
+ [20.23495, 48.27993],
+ [20.28686, 48.26164],
+ [20.32571, 48.27279],
+ [20.33746, 48.30167],
+ [20.36566, 48.31661],
+ [20.38408, 48.35118],
+ [20.40983, 48.36586],
+ [20.40253, 48.38256],
+ [20.42053, 48.40386],
+ [20.41623, 48.41854],
+ [20.50793, 48.48936],
+ [20.50651, 48.53442],
+ [20.53747, 48.52788],
+ [20.54649, 48.54429],
+ [20.58659, 48.53576],
+ [20.65387, 48.56141],
+ [20.83636, 48.58284],
+ [20.8378, 48.57421],
+ [20.85044, 48.58163],
+ [20.84533, 48.5665],
+ [20.86815, 48.55182],
+ [20.92232, 48.55945],
+ [20.93463, 48.53834],
+ [20.95588, 48.53396],
+ [20.9562, 48.52167],
+ [20.98158, 48.51777],
+ [21.01511, 48.53231],
+ [21.06632, 48.52589],
+ [21.11745, 48.49105],
+ [21.16087, 48.5215],
+ [21.17963, 48.51823],
+ [21.22106, 48.5375],
+ [21.30549, 48.52225],
+ [21.31338, 48.55084],
+ [21.32688, 48.55413],
+ [21.31938, 48.5612],
+ [21.41545, 48.55895],
+ [21.42266, 48.57882],
+ [21.44061, 48.5851],
+ [21.51409, 48.55107],
+ [21.54202, 48.5084],
+ [21.61393, 48.50942],
+ [21.62019, 48.46983],
+ [21.66355, 48.41796],
+ [21.66456, 48.39216],
+ [21.70174, 48.3807],
+ [21.71187, 48.35762],
+ [21.81741, 48.33279],
+ [21.8352, 48.33464],
+ [21.83721, 48.36325],
+ [21.8843, 48.35605],
+ [21.88484, 48.36754],
+ [21.89788, 48.36256],
+ [21.8998, 48.37022],
+ [21.92819, 48.3616],
+ [21.92681, 48.3709],
+ [21.9492, 48.37873],
+ [21.99446, 48.37732],
+ [22.02133, 48.39275],
+ [22.0546, 48.37753],
+ [22.07649, 48.38724],
+ [22.08674, 48.37156],
+ [22.13591, 48.38052],
+ [22.13106, 48.39123],
+ [22.15277, 48.39624],
+ [22.15619, 48.40931],
+ [22.21257, 48.42565],
+ [22.23714, 48.41004],
+ [22.26549, 48.40987],
+ [22.23988, 48.38701],
+ [22.26757, 48.36116],
+ [22.31781, 48.35454],
+ [22.31329, 48.32507],
+ [22.33729, 48.30791],
+ [22.33843, 48.27921],
+ [22.38475, 48.23396],
+ [22.40064, 48.2492],
+ [22.43284, 48.25252],
+ [22.45639, 48.24231],
+ [22.4899, 48.25342],
+ [22.49722, 48.23955],
+ [22.51615, 48.23797],
+ [22.53111, 48.20943],
+ [22.57114, 48.19614],
+ [22.56164, 48.18161],
+ [22.59824, 48.14476],
+ [22.59028, 48.10734],
+ [22.67545, 48.092],
+ [22.73472, 48.11985],
+ [22.75762, 48.12006],
+ [22.77039, 48.10902],
+ [22.77232, 48.12187],
+ [22.80277, 48.12211],
+ [22.80253, 48.10708],
+ [22.82543, 48.11751],
+ [22.83644, 48.08025],
+ [22.86113, 48.07503],
+ [22.8678, 48.05243],
+ [22.88204, 48.05481],
+ [22.86597, 48.01132],
+ [22.83556, 47.9906],
+ [22.84076, 47.98136],
+ [22.87257, 47.97527],
+ [22.86973, 47.96596],
+ [22.89157, 47.96724],
+ [22.89744, 47.95406],
+ [22.84733, 47.90776],
+ [22.79281, 47.89086],
+ [22.75869, 47.89414],
+ [22.77775, 47.84225],
+ [22.71363, 47.83609],
+ [22.68019, 47.78775],
+ [22.61112, 47.77175],
+ [22.549, 47.77222],
+ [22.48121, 47.81089],
+ [22.45131, 47.80339],
+ [22.43133, 47.73981],
+ [22.35662, 47.74862],
+ [22.31777, 47.76609],
+ [22.31762, 47.74337],
+ [22.28514, 47.72928],
+ [22.26432, 47.73107],
+ [22.259, 47.69791],
+ [22.23068, 47.6932],
+ [22.17965, 47.59161],
+ [22.12892, 47.5979],
+ [22.09428, 47.55836],
+ [22.07826, 47.56213],
+ [22.05345, 47.54748],
+ [22.07122, 47.53807],
+ [22.06179, 47.5288],
+ [22.04513, 47.53989],
+ [22.03672, 47.53267],
+ [22.00719, 47.48362],
+ [22.03279, 47.45084],
+ [22.02388, 47.39086],
+ [22.01198, 47.3758],
+ [21.96274, 47.38105],
+ [21.93825, 47.37253],
+ [21.87779, 47.28578],
+ [21.88728, 47.27305],
+ [21.85349, 47.23976],
+ [21.85807, 47.18736],
+ [21.81248, 47.16675],
+ [21.79241, 47.10598],
+ [21.72683, 47.09839],
+ [21.6976, 47.05792],
+ [21.65042, 47.04083],
+ [21.68887, 47.002],
+ [21.66787, 46.97123],
+ [21.68149, 46.96521],
+ [21.6382, 46.93305],
+ [21.59845, 46.92747],
+ [21.61429, 46.88673],
+ [21.60167, 46.86682],
+ [21.52033, 46.83737],
+ [21.51861, 46.80007],
+ [21.48318, 46.76502],
+ [21.52634, 46.73932],
+ [21.52937, 46.72097],
+ [21.49233, 46.68597],
+ [21.47284, 46.69591],
+ [21.4299, 46.69394],
+ [21.43096, 46.67814],
+ [21.45467, 46.66086],
+ [21.41624, 46.64262],
+ [21.4098, 46.62181],
+ [21.3657, 46.63795],
+ [21.33005, 46.63182],
+ [21.31397, 46.61767],
+ [21.30124, 46.59087],
+ [21.32079, 46.58286],
+ [21.2743, 46.54074],
+ [21.26003, 46.50216],
+ [21.27442, 46.47673],
+ [21.29645, 46.4763],
+ [21.31743, 46.45073],
+ [21.28952, 46.41548],
+ [21.29633, 46.40696],
+ [21.22501, 46.41369],
+ [21.20642, 46.40338],
+ [21.19926, 46.3479],
+ [21.17623, 46.33577],
+ [21.1805, 46.30445],
+ [21.11554, 46.30185],
+ [21.10305, 46.26246],
+ [21.07088, 46.2539],
+ [21.06608, 46.24294],
+ [21.03662, 46.24804],
+ [21.02467, 46.26653],
+ [20.96082, 46.2623],
+ [20.94658, 46.2793],
+ [20.92507, 46.27662],
+ [20.92181, 46.26181],
+ [20.87327, 46.28776],
+ [20.77565, 46.27596],
+ [20.74905, 46.25085],
+ [20.76186, 46.20456],
+ [20.7274, 46.20775],
+ [20.73411, 46.19394],
+ [20.71405, 46.16605],
+ [20.68436, 46.14478],
+ [20.65492, 46.14977],
+ [20.63945, 46.12676],
+ [20.54505, 46.17909],
+ [20.50148, 46.19033],
+ [20.49494, 46.17099],
+ [20.45923, 46.14288],
+ [20.39751, 46.15747],
+ [20.36853, 46.15286],
+ [20.35571, 46.16963],
+ [20.29681, 46.15215],
+ [20.2549, 46.11585],
+ [20.24848, 46.1301],
+ [20.23301, 46.12417],
+ [20.18174, 46.16011],
+ [20.1365, 46.14495],
+ [20.10097, 46.17728],
+ [20.06362, 46.14373],
+ [20.03461, 46.14589],
+ [20.01581, 46.17684],
+ [19.93541, 46.17642],
+ [19.85335, 46.15],
+ [19.81797, 46.12817],
+ [19.75854, 46.14798],
+ [19.69821, 46.18793],
+ [19.68277, 46.18004],
+ [19.66151, 46.19044],
+ [19.63174, 46.1693],
+ [19.56765, 46.17911],
+ [19.5604, 46.16658],
+ [19.50266, 46.14245],
+ [19.52712, 46.12103],
+ [19.4645, 46.09538],
+ [19.46658, 46.08204],
+ [19.416, 46.04605],
+ [19.3804, 46.03587],
+ [19.36409, 46.0523],
+ [19.2819, 46.0148],
+ [19.29653, 45.98812],
+ [19.28565, 45.9969],
+ [19.14799, 45.99634],
+ [19.13384, 46.0371],
+ [19.10487, 46.04017],
+ [19.06604, 46.0002],
+ [19.07968, 45.96364],
+ [19.00598, 45.95907],
+ [19.00927, 45.92366],
+ [18.90613, 45.93538],
+ [18.87946, 45.91668],
+ [18.86471, 45.92085],
+ [18.86856, 45.91134],
+ [18.82768, 45.90517],
+ [18.822, 45.91459],
+ [18.80751, 45.90361],
+ [18.80925, 45.87962],
+ [18.79562, 45.87845],
+ [18.70489, 45.91819],
+ [18.67002, 45.91084],
+ [18.65966, 45.91689],
+ [18.66513, 45.89928],
+ [18.64128, 45.88904],
+ [18.65502, 45.87424],
+ [18.62777, 45.87338],
+ [18.61484, 45.85314],
+ [18.62367, 45.83985],
+ [18.57324, 45.81376],
+ [18.57498, 45.80043],
+ [18.55972, 45.8038],
+ [18.52235, 45.78269],
+ [18.49067, 45.79472],
+ [18.48219, 45.7655],
+ [18.45628, 45.76952],
+ [18.44508, 45.76052],
+ [18.44685, 45.73713],
+ [18.40763, 45.73971],
+ [18.39189, 45.7617],
+ [18.36423, 45.77294],
+ [18.33942, 45.74716],
+ [18.29682, 45.76122],
+ [18.24405, 45.76123],
+ [18.23073, 45.77903],
+ [18.19087, 45.78788],
+ [18.16819, 45.77627],
+ [18.12465, 45.78963],
+ [18.10681, 45.77083],
+ [18.08189, 45.76452],
+ [17.99588, 45.79573],
+ [17.93021, 45.78633],
+ [17.90668, 45.79257],
+ [17.86531, 45.76701],
+ [17.82627, 45.81],
+ [17.80898, 45.8041],
+ [17.78091, 45.81749],
+ [17.76034, 45.81192],
+ [17.74086, 45.8296],
+ [17.66329, 45.83818],
+ [17.62762, 45.89794],
+ [17.57007, 45.93582],
+ [17.43783, 45.95038],
+ [17.4259, 45.92727],
+ [17.41081, 45.93997],
+ [17.39215, 45.93021],
+ [17.38287, 45.94757],
+ [17.34762, 45.94234],
+ [17.34388, 45.96053],
+ [17.35377, 45.9525],
+ [17.39054, 45.95819],
+ [17.38742, 45.96618],
+ [17.35835, 45.96427],
+ [17.37549, 45.96869],
+ [17.37519, 45.98811],
+ [17.36357, 45.99154],
+ [17.35672, 45.97358],
+ [17.33396, 45.99608],
+ [17.33198, 45.97289],
+ [17.313, 45.96653],
+ [17.32365, 45.98878],
+ [17.29877, 45.98387],
+ [17.3042, 46.00211],
+ [17.25797, 46.01103],
+ [17.29632, 46.02852],
+ [17.25415, 46.03001],
+ [17.27096, 46.05671],
+ [17.23248, 46.0592],
+ [17.25251, 46.06647],
+ [17.23131, 46.07903],
+ [17.20199, 46.07655],
+ [17.23313, 46.09896],
+ [17.2104, 46.10017],
+ [17.21297, 46.11386],
+ [17.17593, 46.10846],
+ [17.17434, 46.12876],
+ [17.18652, 46.13323],
+ [17.1811, 46.15055],
+ [17.15623, 46.15858],
+ [17.15929, 46.16968],
+ [17.1261, 46.16845],
+ [17.12274, 46.17898],
+ [17.07525, 46.18895],
+ [17.06616, 46.2023],
+ [16.97354, 46.2252],
+ [16.97395, 46.24311],
+ [16.95041, 46.24153],
+ [16.88624, 46.28146],
+ [16.87137, 46.32528],
+ [16.88021, 46.3357],
+ [16.86154, 46.34524],
+ [16.86562, 46.35565],
+ [16.8522, 46.35172],
+ [16.84986, 46.36262],
+ [16.83529, 46.36382],
+ [16.83765, 46.3748],
+ [16.82617, 46.3671],
+ [16.79334, 46.38739],
+ [16.75921, 46.37766],
+ [16.72987, 46.40149],
+ [16.71821, 46.38987],
+ [16.67729, 46.44945],
+ [16.66318, 46.4487],
+ [16.66637, 46.4583],
+ [16.61879, 46.46199],
+ [16.60447, 46.47608],
+ [16.5236, 46.50538],
+ [16.53258, 46.5314],
+ [16.51767, 46.53635],
+ [16.50841, 46.56527],
+ [16.483, 46.56604],
+ [16.4834, 46.5786],
+ [16.44557, 46.61095],
+ [16.42486, 46.61316],
+ [16.38594, 46.64425],
+ [16.39154, 46.66373],
+ [16.41985, 46.65848],
+ [16.42863, 46.69397],
+ [16.36892, 46.70401],
+ [16.37983, 46.71539],
+ [16.37109, 46.72229],
+ [16.35706, 46.71424],
+ [16.3186, 46.75414],
+ [16.33054, 46.77521],
+ [16.31216, 46.778],
+ [16.31277, 46.79731],
+ [16.34064, 46.80519],
+ [16.35084, 46.83006],
+ [16.34033, 46.84688],
+ [16.3015, 46.85951],
+ [16.29139, 46.87283],
+ [16.23323, 46.87667],
+ [16.15609, 46.85371],
+ [16.12657, 46.85691],
+ [16.11391, 46.8691]
+ ]
+ ],
+ "terms_url": "https://www.fomi.hu",
+ "terms_text": "Földmérési és Távérzékelési Intézet"
+ },
+ {
+ "id": "FOMI_2005",
+ "name": "FÖMI orthophoto 2005",
+ "type": "tms",
+ "template": "http://e.tile.openstreetmap.hu/ortofoto2005/{zoom}/{x}/{y}.jpg",
+ "endDate": "2005-01-01T00:00:00.000Z",
+ "startDate": "2005-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 17],
+ "polygon": [
+ [
+ [16.11391, 46.8691],
+ [16.17897, 46.90662],
+ [16.20004, 46.94151],
+ [16.22175, 46.93554],
+ [16.24628, 46.94639],
+ [16.25532, 46.96421],
+ [16.27647, 46.96261],
+ [16.29058, 47.01398],
+ [16.30162, 46.99923],
+ [16.34146, 46.99652],
+ [16.35052, 47.01063],
+ [16.3734, 46.99859],
+ [16.41277, 47.00475],
+ [16.43327, 46.99274],
+ [16.44781, 47.00389],
+ [16.48, 46.99412],
+ [16.5122, 47.00117],
+ [16.46356, 47.03227],
+ [16.44786, 47.02275],
+ [16.43912, 47.02966],
+ [16.44567, 47.03887],
+ [16.52032, 47.0561],
+ [16.47321, 47.07362],
+ [16.46372, 47.09392],
+ [16.5008, 47.11006],
+ [16.50004, 47.12329],
+ [16.52953, 47.12874],
+ [16.51716, 47.14969],
+ [16.45495, 47.14259],
+ [16.46487, 47.16833],
+ [16.45556, 47.18756],
+ [16.43056, 47.1847],
+ [16.4195, 47.19491],
+ [16.41892, 47.21071],
+ [16.43713, 47.2097],
+ [16.44263, 47.23371],
+ [16.43131, 47.25276],
+ [16.46715, 47.25317],
+ [16.48923, 47.27989],
+ [16.46463, 47.33385],
+ [16.4337, 47.35281],
+ [16.45851, 47.36705],
+ [16.44546, 47.40702],
+ [16.48317, 47.40936],
+ [16.49638, 47.38927],
+ [16.51709, 47.41002],
+ [16.57491, 47.40542],
+ [16.58073, 47.41917],
+ [16.66185, 47.4556],
+ [16.67064, 47.47422],
+ [16.65234, 47.50034],
+ [16.68956, 47.51016],
+ [16.71478, 47.5402],
+ [16.66354, 47.56773],
+ [16.6732, 47.60495],
+ [16.65953, 47.6061],
+ [16.65276, 47.62285],
+ [16.63142, 47.62832],
+ [16.57391, 47.61967],
+ [16.51474, 47.6462],
+ [16.49675, 47.63931],
+ [16.42546, 47.66217],
+ [16.44374, 47.67421],
+ [16.44805, 47.69647],
+ [16.4747, 47.68116],
+ [16.48722, 47.69798],
+ [16.55217, 47.72255],
+ [16.53638, 47.73678],
+ [16.54798, 47.75154],
+ [16.60952, 47.76037],
+ [16.63441, 47.75908],
+ [16.65729, 47.74149],
+ [16.72094, 47.73536],
+ [16.75341, 47.68282],
+ [16.83016, 47.68106],
+ [16.83943, 47.70451],
+ [16.86689, 47.72115],
+ [16.87668, 47.68765],
+ [17.09374, 47.70777],
+ [17.07066, 47.72854],
+ [17.0516, 47.79385],
+ [17.07495, 47.8085],
+ [17.04714, 47.82856],
+ [17.05195, 47.83777],
+ [17.01055, 47.85818],
+ [17.01639, 47.86733],
+ [17.08575, 47.87462],
+ [17.11317, 47.92716],
+ [17.09171, 47.93429],
+ [17.11838, 47.96011],
+ [17.09466, 47.97088],
+ [17.20103, 48.01999],
+ [17.24177, 48.02247],
+ [17.25795, 47.99865],
+ [17.33465, 47.99312],
+ [17.40299, 47.94785],
+ [17.45392, 47.88526],
+ [17.52674, 47.86551],
+ [17.56758, 47.81513],
+ [17.6084, 47.82189],
+ [17.70858, 47.75668],
+ [17.77987, 47.73949],
+ [17.8661, 47.74575],
+ [17.90013, 47.73926],
+ [17.94687, 47.74467],
+ [17.97087, 47.75784],
+ [18.00441, 47.74634],
+ [18.03806, 47.75768],
+ [18.29588, 47.73146],
+ [18.45407, 47.76512],
+ [18.49316, 47.75276],
+ [18.55908, 47.766],
+ [18.64609, 47.75909],
+ [18.72607, 47.78904],
+ [18.74118, 47.81382],
+ [18.792, 47.82309],
+ [18.84854, 47.81672],
+ [18.85588, 47.82608],
+ [18.82801, 47.83429],
+ [18.81357, 47.85555],
+ [18.76353, 47.8716],
+ [18.75686, 47.89684],
+ [18.77675, 47.95509],
+ [18.75525, 47.97635],
+ [18.81574, 47.99344],
+ [18.82, 48.03968],
+ [18.83327, 48.04824],
+ [18.87494, 48.04707],
+ [18.88667, 48.05868],
+ [18.90898, 48.05114],
+ [18.9439, 48.05886],
+ [18.98161, 48.0536],
+ [19.01486, 48.07818],
+ [19.05852, 48.05735],
+ [19.08436, 48.07278],
+ [19.1074, 48.0656],
+ [19.13529, 48.07415],
+ [19.24137, 48.05365],
+ [19.25578, 48.07156],
+ [19.30311, 48.08871],
+ [19.3866, 48.09191],
+ [19.40002, 48.0823],
+ [19.45405, 48.10144],
+ [19.46735, 48.08393],
+ [19.49442, 48.10991],
+ [19.49238, 48.13966],
+ [19.51282, 48.15466],
+ [19.50452, 48.17344],
+ [19.52897, 48.19036],
+ [19.52604, 48.20313],
+ [19.5775, 48.21601],
+ [19.63083, 48.25007],
+ [19.64452, 48.23917],
+ [19.66986, 48.23921],
+ [19.69122, 48.20389],
+ [19.72113, 48.20147],
+ [19.74618, 48.21651],
+ [19.78716, 48.19253],
+ [19.79873, 48.19482],
+ [19.80528, 48.18373],
+ [19.78242, 48.16504],
+ [19.79481, 48.15353],
+ [19.82133, 48.16908],
+ [19.84528, 48.16274],
+ [19.85517, 48.17843],
+ [19.86013, 48.16941],
+ [19.89875, 48.16631],
+ [19.91454, 48.14686],
+ [19.8983, 48.1249],
+ [19.93738, 48.13112],
+ [19.97439, 48.166],
+ [19.98871, 48.16217],
+ [20.02904, 48.17768],
+ [20.04945, 48.1672],
+ [20.07299, 48.17961],
+ [20.07004, 48.1917],
+ [20.13409, 48.22518],
+ [20.13319, 48.25398],
+ [20.20616, 48.25098],
+ [20.20383, 48.26191],
+ [20.22847, 48.26278],
+ [20.23495, 48.27993],
+ [20.28686, 48.26164],
+ [20.32571, 48.27279],
+ [20.33746, 48.30167],
+ [20.36566, 48.31661],
+ [20.38408, 48.35118],
+ [20.40983, 48.36586],
+ [20.40253, 48.38256],
+ [20.42053, 48.40386],
+ [20.41623, 48.41854],
+ [20.50793, 48.48936],
+ [20.50651, 48.53442],
+ [20.53747, 48.52788],
+ [20.54649, 48.54429],
+ [20.58659, 48.53576],
+ [20.65387, 48.56141],
+ [20.83636, 48.58284],
+ [20.8378, 48.57421],
+ [20.85044, 48.58163],
+ [20.84533, 48.5665],
+ [20.86815, 48.55182],
+ [20.92232, 48.55945],
+ [20.93463, 48.53834],
+ [20.95588, 48.53396],
+ [20.9562, 48.52167],
+ [20.98158, 48.51777],
+ [21.01511, 48.53231],
+ [21.06632, 48.52589],
+ [21.11745, 48.49105],
+ [21.16087, 48.5215],
+ [21.17963, 48.51823],
+ [21.22106, 48.5375],
+ [21.30549, 48.52225],
+ [21.31338, 48.55084],
+ [21.32688, 48.55413],
+ [21.31938, 48.5612],
+ [21.41545, 48.55895],
+ [21.42266, 48.57882],
+ [21.44061, 48.5851],
+ [21.51409, 48.55107],
+ [21.54202, 48.5084],
+ [21.61393, 48.50942],
+ [21.62019, 48.46983],
+ [21.66355, 48.41796],
+ [21.66456, 48.39216],
+ [21.70174, 48.3807],
+ [21.71187, 48.35762],
+ [21.81741, 48.33279],
+ [21.8352, 48.33464],
+ [21.83721, 48.36325],
+ [21.8843, 48.35605],
+ [21.88484, 48.36754],
+ [21.89788, 48.36256],
+ [21.8998, 48.37022],
+ [21.92819, 48.3616],
+ [21.92681, 48.3709],
+ [21.9492, 48.37873],
+ [21.99446, 48.37732],
+ [22.02133, 48.39275],
+ [22.0546, 48.37753],
+ [22.07649, 48.38724],
+ [22.08674, 48.37156],
+ [22.13591, 48.38052],
+ [22.13106, 48.39123],
+ [22.15277, 48.39624],
+ [22.15619, 48.40931],
+ [22.21257, 48.42565],
+ [22.23714, 48.41004],
+ [22.26549, 48.40987],
+ [22.23988, 48.38701],
+ [22.26757, 48.36116],
+ [22.31781, 48.35454],
+ [22.31329, 48.32507],
+ [22.33729, 48.30791],
+ [22.33843, 48.27921],
+ [22.38475, 48.23396],
+ [22.40064, 48.2492],
+ [22.43284, 48.25252],
+ [22.45639, 48.24231],
+ [22.4899, 48.25342],
+ [22.49722, 48.23955],
+ [22.51615, 48.23797],
+ [22.53111, 48.20943],
+ [22.57114, 48.19614],
+ [22.56164, 48.18161],
+ [22.59824, 48.14476],
+ [22.59028, 48.10734],
+ [22.67545, 48.092],
+ [22.73472, 48.11985],
+ [22.75762, 48.12006],
+ [22.77039, 48.10902],
+ [22.77232, 48.12187],
+ [22.80277, 48.12211],
+ [22.80253, 48.10708],
+ [22.82543, 48.11751],
+ [22.83644, 48.08025],
+ [22.86113, 48.07503],
+ [22.8678, 48.05243],
+ [22.88204, 48.05481],
+ [22.86597, 48.01132],
+ [22.83556, 47.9906],
+ [22.84076, 47.98136],
+ [22.87257, 47.97527],
+ [22.86973, 47.96596],
+ [22.89157, 47.96724],
+ [22.89744, 47.95406],
+ [22.84733, 47.90776],
+ [22.79281, 47.89086],
+ [22.75869, 47.89414],
+ [22.77775, 47.84225],
+ [22.71363, 47.83609],
+ [22.68019, 47.78775],
+ [22.61112, 47.77175],
+ [22.549, 47.77222],
+ [22.48121, 47.81089],
+ [22.45131, 47.80339],
+ [22.43133, 47.73981],
+ [22.35662, 47.74862],
+ [22.31777, 47.76609],
+ [22.31762, 47.74337],
+ [22.28514, 47.72928],
+ [22.26432, 47.73107],
+ [22.259, 47.69791],
+ [22.23068, 47.6932],
+ [22.17965, 47.59161],
+ [22.12892, 47.5979],
+ [22.09428, 47.55836],
+ [22.07826, 47.56213],
+ [22.05345, 47.54748],
+ [22.07122, 47.53807],
+ [22.06179, 47.5288],
+ [22.04513, 47.53989],
+ [22.03672, 47.53267],
+ [22.00719, 47.48362],
+ [22.03279, 47.45084],
+ [22.02388, 47.39086],
+ [22.01198, 47.3758],
+ [21.96274, 47.38105],
+ [21.93825, 47.37253],
+ [21.87779, 47.28578],
+ [21.88728, 47.27305],
+ [21.85349, 47.23976],
+ [21.85807, 47.18736],
+ [21.81248, 47.16675],
+ [21.79241, 47.10598],
+ [21.72683, 47.09839],
+ [21.6976, 47.05792],
+ [21.65042, 47.04083],
+ [21.68887, 47.002],
+ [21.66787, 46.97123],
+ [21.68149, 46.96521],
+ [21.6382, 46.93305],
+ [21.59845, 46.92747],
+ [21.61429, 46.88673],
+ [21.60167, 46.86682],
+ [21.52033, 46.83737],
+ [21.51861, 46.80007],
+ [21.48318, 46.76502],
+ [21.52634, 46.73932],
+ [21.52937, 46.72097],
+ [21.49233, 46.68597],
+ [21.47284, 46.69591],
+ [21.4299, 46.69394],
+ [21.43096, 46.67814],
+ [21.45467, 46.66086],
+ [21.41624, 46.64262],
+ [21.4098, 46.62181],
+ [21.3657, 46.63795],
+ [21.33005, 46.63182],
+ [21.31397, 46.61767],
+ [21.30124, 46.59087],
+ [21.32079, 46.58286],
+ [21.2743, 46.54074],
+ [21.26003, 46.50216],
+ [21.27442, 46.47673],
+ [21.29645, 46.4763],
+ [21.31743, 46.45073],
+ [21.28952, 46.41548],
+ [21.29633, 46.40696],
+ [21.22501, 46.41369],
+ [21.20642, 46.40338],
+ [21.19926, 46.3479],
+ [21.17623, 46.33577],
+ [21.1805, 46.30445],
+ [21.11554, 46.30185],
+ [21.10305, 46.26246],
+ [21.07088, 46.2539],
+ [21.06608, 46.24294],
+ [21.03662, 46.24804],
+ [21.02467, 46.26653],
+ [20.96082, 46.2623],
+ [20.94658, 46.2793],
+ [20.92507, 46.27662],
+ [20.92181, 46.26181],
+ [20.87327, 46.28776],
+ [20.77565, 46.27596],
+ [20.74905, 46.25085],
+ [20.76186, 46.20456],
+ [20.7274, 46.20775],
+ [20.73411, 46.19394],
+ [20.71405, 46.16605],
+ [20.68436, 46.14478],
+ [20.65492, 46.14977],
+ [20.63945, 46.12676],
+ [20.54505, 46.17909],
+ [20.50148, 46.19033],
+ [20.49494, 46.17099],
+ [20.45923, 46.14288],
+ [20.39751, 46.15747],
+ [20.36853, 46.15286],
+ [20.35571, 46.16963],
+ [20.29681, 46.15215],
+ [20.2549, 46.11585],
+ [20.24848, 46.1301],
+ [20.23301, 46.12417],
+ [20.18174, 46.16011],
+ [20.1365, 46.14495],
+ [20.10097, 46.17728],
+ [20.06362, 46.14373],
+ [20.03461, 46.14589],
+ [20.01581, 46.17684],
+ [19.93541, 46.17642],
+ [19.85335, 46.15],
+ [19.81797, 46.12817],
+ [19.75854, 46.14798],
+ [19.69821, 46.18793],
+ [19.68277, 46.18004],
+ [19.66151, 46.19044],
+ [19.63174, 46.1693],
+ [19.56765, 46.17911],
+ [19.5604, 46.16658],
+ [19.50266, 46.14245],
+ [19.52712, 46.12103],
+ [19.4645, 46.09538],
+ [19.46658, 46.08204],
+ [19.416, 46.04605],
+ [19.3804, 46.03587],
+ [19.36409, 46.0523],
+ [19.2819, 46.0148],
+ [19.29653, 45.98812],
+ [19.28565, 45.9969],
+ [19.14799, 45.99634],
+ [19.13384, 46.0371],
+ [19.10487, 46.04017],
+ [19.06604, 46.0002],
+ [19.07968, 45.96364],
+ [19.00598, 45.95907],
+ [19.00927, 45.92366],
+ [18.90613, 45.93538],
+ [18.87946, 45.91668],
+ [18.86471, 45.92085],
+ [18.86856, 45.91134],
+ [18.82768, 45.90517],
+ [18.822, 45.91459],
+ [18.80751, 45.90361],
+ [18.80925, 45.87962],
+ [18.79562, 45.87845],
+ [18.70489, 45.91819],
+ [18.67002, 45.91084],
+ [18.65966, 45.91689],
+ [18.66513, 45.89928],
+ [18.64128, 45.88904],
+ [18.65502, 45.87424],
+ [18.62777, 45.87338],
+ [18.61484, 45.85314],
+ [18.62367, 45.83985],
+ [18.57324, 45.81376],
+ [18.57498, 45.80043],
+ [18.55972, 45.8038],
+ [18.52235, 45.78269],
+ [18.49067, 45.79472],
+ [18.48219, 45.7655],
+ [18.45628, 45.76952],
+ [18.44508, 45.76052],
+ [18.44685, 45.73713],
+ [18.40763, 45.73971],
+ [18.39189, 45.7617],
+ [18.36423, 45.77294],
+ [18.33942, 45.74716],
+ [18.29682, 45.76122],
+ [18.24405, 45.76123],
+ [18.23073, 45.77903],
+ [18.19087, 45.78788],
+ [18.16819, 45.77627],
+ [18.12465, 45.78963],
+ [18.10681, 45.77083],
+ [18.08189, 45.76452],
+ [17.99588, 45.79573],
+ [17.93021, 45.78633],
+ [17.90668, 45.79257],
+ [17.86531, 45.76701],
+ [17.82627, 45.81],
+ [17.80898, 45.8041],
+ [17.78091, 45.81749],
+ [17.76034, 45.81192],
+ [17.74086, 45.8296],
+ [17.66329, 45.83818],
+ [17.62762, 45.89794],
+ [17.57007, 45.93582],
+ [17.43783, 45.95038],
+ [17.4259, 45.92727],
+ [17.41081, 45.93997],
+ [17.39215, 45.93021],
+ [17.38287, 45.94757],
+ [17.34762, 45.94234],
+ [17.34388, 45.96053],
+ [17.35377, 45.9525],
+ [17.39054, 45.95819],
+ [17.38742, 45.96618],
+ [17.35835, 45.96427],
+ [17.37549, 45.96869],
+ [17.37519, 45.98811],
+ [17.36357, 45.99154],
+ [17.35672, 45.97358],
+ [17.33396, 45.99608],
+ [17.33198, 45.97289],
+ [17.313, 45.96653],
+ [17.32365, 45.98878],
+ [17.29877, 45.98387],
+ [17.3042, 46.00211],
+ [17.25797, 46.01103],
+ [17.29632, 46.02852],
+ [17.25415, 46.03001],
+ [17.27096, 46.05671],
+ [17.23248, 46.0592],
+ [17.25251, 46.06647],
+ [17.23131, 46.07903],
+ [17.20199, 46.07655],
+ [17.23313, 46.09896],
+ [17.2104, 46.10017],
+ [17.21297, 46.11386],
+ [17.17593, 46.10846],
+ [17.17434, 46.12876],
+ [17.18652, 46.13323],
+ [17.1811, 46.15055],
+ [17.15623, 46.15858],
+ [17.15929, 46.16968],
+ [17.1261, 46.16845],
+ [17.12274, 46.17898],
+ [17.07525, 46.18895],
+ [17.06616, 46.2023],
+ [16.97354, 46.2252],
+ [16.97395, 46.24311],
+ [16.95041, 46.24153],
+ [16.88624, 46.28146],
+ [16.87137, 46.32528],
+ [16.88021, 46.3357],
+ [16.86154, 46.34524],
+ [16.86562, 46.35565],
+ [16.8522, 46.35172],
+ [16.84986, 46.36262],
+ [16.83529, 46.36382],
+ [16.83765, 46.3748],
+ [16.82617, 46.3671],
+ [16.79334, 46.38739],
+ [16.75921, 46.37766],
+ [16.72987, 46.40149],
+ [16.71821, 46.38987],
+ [16.67729, 46.44945],
+ [16.66318, 46.4487],
+ [16.66637, 46.4583],
+ [16.61879, 46.46199],
+ [16.60447, 46.47608],
+ [16.5236, 46.50538],
+ [16.53258, 46.5314],
+ [16.51767, 46.53635],
+ [16.50841, 46.56527],
+ [16.483, 46.56604],
+ [16.4834, 46.5786],
+ [16.44557, 46.61095],
+ [16.42486, 46.61316],
+ [16.38594, 46.64425],
+ [16.39154, 46.66373],
+ [16.41985, 46.65848],
+ [16.42863, 46.69397],
+ [16.36892, 46.70401],
+ [16.37983, 46.71539],
+ [16.37109, 46.72229],
+ [16.35706, 46.71424],
+ [16.3186, 46.75414],
+ [16.33054, 46.77521],
+ [16.31216, 46.778],
+ [16.31277, 46.79731],
+ [16.34064, 46.80519],
+ [16.35084, 46.83006],
+ [16.34033, 46.84688],
+ [16.3015, 46.85951],
+ [16.29139, 46.87283],
+ [16.23323, 46.87667],
+ [16.15609, 46.85371],
+ [16.12657, 46.85691],
+ [16.11391, 46.8691]
+ ]
+ ],
+ "terms_url": "https://www.fomi.hu",
+ "terms_text": "Földmérési és Távérzékelési Intézet"
+ },
+ {
+ "id": "Freemap.sk-Car",
+ "name": "Freemap.sk Car",
+ "type": "tms",
+ "template": "https://{switch:a,b,c,d}.freemap.sk/A/{zoom}/{x}/{y}.jpeg",
+ "scaleExtent": [8, 16],
+ "polygon": [
+ [
+ [19.83682, 49.25529],
+ [19.80075, 49.42385],
+ [19.60437, 49.48058],
+ [19.49179, 49.63961],
+ [19.21831, 49.52604],
+ [19.16778, 49.42521],
+ [19.00308, 49.42236],
+ [18.97611, 49.5308],
+ [18.54685, 49.51425],
+ [18.31432, 49.33818],
+ [18.15913, 49.2961],
+ [18.05564, 49.11134],
+ [17.56396, 48.84938],
+ [17.17929, 48.88816],
+ [17.058, 48.81105],
+ [16.90426, 48.61947],
+ [16.79685, 48.38561],
+ [17.06762, 48.01116],
+ [17.32787, 47.97749],
+ [17.51699, 47.82535],
+ [17.74776, 47.73093],
+ [18.29515, 47.72075],
+ [18.67959, 47.75541],
+ [18.89755, 47.81203],
+ [18.79463, 47.88245],
+ [18.84318, 48.04046],
+ [19.46212, 48.05333],
+ [19.62064, 48.22938],
+ [19.89585, 48.09387],
+ [20.33766, 48.2643],
+ [20.55395, 48.52358],
+ [20.82335, 48.55714],
+ [21.10271, 48.47096],
+ [21.45863, 48.55513],
+ [21.74536, 48.31435],
+ [22.15293, 48.37179],
+ [22.61255, 49.08914],
+ [22.09997, 49.23814],
+ [21.9686, 49.36363],
+ [21.6244, 49.46989],
+ [21.06873, 49.46402],
+ [20.94336, 49.31088],
+ [20.73052, 49.44006],
+ [20.22804, 49.41714],
+ [20.05234, 49.23052],
+ [19.83682, 49.25529]
+ ]
+ ],
+ "terms_text": "Copyright ©2007-2012 Freemap Slovakia (www.freemap.sk). Some rights reserved.",
+ "icon": "https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"
+ },
+ {
+ "id": "Freemap.sk-Cyclo",
+ "name": "Freemap.sk Cyclo",
+ "type": "tms",
+ "template": "https://{switch:a,b,c,d}.freemap.sk/C/{zoom}/{x}/{y}.jpeg",
+ "scaleExtent": [8, 16],
+ "polygon": [
+ [
+ [19.83682, 49.25529],
+ [19.80075, 49.42385],
+ [19.60437, 49.48058],
+ [19.49179, 49.63961],
+ [19.21831, 49.52604],
+ [19.16778, 49.42521],
+ [19.00308, 49.42236],
+ [18.97611, 49.5308],
+ [18.54685, 49.51425],
+ [18.31432, 49.33818],
+ [18.15913, 49.2961],
+ [18.05564, 49.11134],
+ [17.56396, 48.84938],
+ [17.17929, 48.88816],
+ [17.058, 48.81105],
+ [16.90426, 48.61947],
+ [16.79685, 48.38561],
+ [17.06762, 48.01116],
+ [17.32787, 47.97749],
+ [17.51699, 47.82535],
+ [17.74776, 47.73093],
+ [18.29515, 47.72075],
+ [18.67959, 47.75541],
+ [18.89755, 47.81203],
+ [18.79463, 47.88245],
+ [18.84318, 48.04046],
+ [19.46212, 48.05333],
+ [19.62064, 48.22938],
+ [19.89585, 48.09387],
+ [20.33766, 48.2643],
+ [20.55395, 48.52358],
+ [20.82335, 48.55714],
+ [21.10271, 48.47096],
+ [21.45863, 48.55513],
+ [21.74536, 48.31435],
+ [22.15293, 48.37179],
+ [22.61255, 49.08914],
+ [22.09997, 49.23814],
+ [21.9686, 49.36363],
+ [21.6244, 49.46989],
+ [21.06873, 49.46402],
+ [20.94336, 49.31088],
+ [20.73052, 49.44006],
+ [20.22804, 49.41714],
+ [20.05234, 49.23052],
+ [19.83682, 49.25529]
+ ]
+ ],
+ "terms_text": "Copyright ©2007-2012 Freemap Slovakia (www.freemap.sk). Some rights reserved.",
+ "icon": "https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"
+ },
+ {
+ "id": "Freemap.sk-Hiking",
+ "name": "Freemap.sk Hiking",
+ "type": "tms",
+ "template": "https://{switch:a,b,c,d}.freemap.sk/T/{zoom}/{x}/{y}.jpeg",
+ "scaleExtent": [8, 16],
+ "polygon": [
+ [
+ [19.83682, 49.25529],
+ [19.80075, 49.42385],
+ [19.60437, 49.48058],
+ [19.49179, 49.63961],
+ [19.21831, 49.52604],
+ [19.16778, 49.42521],
+ [19.00308, 49.42236],
+ [18.97611, 49.5308],
+ [18.54685, 49.51425],
+ [18.31432, 49.33818],
+ [18.15913, 49.2961],
+ [18.05564, 49.11134],
+ [17.56396, 48.84938],
+ [17.17929, 48.88816],
+ [17.058, 48.81105],
+ [16.90426, 48.61947],
+ [16.79685, 48.38561],
+ [17.06762, 48.01116],
+ [17.32787, 47.97749],
+ [17.51699, 47.82535],
+ [17.74776, 47.73093],
+ [18.29515, 47.72075],
+ [18.67959, 47.75541],
+ [18.89755, 47.81203],
+ [18.79463, 47.88245],
+ [18.84318, 48.04046],
+ [19.46212, 48.05333],
+ [19.62064, 48.22938],
+ [19.89585, 48.09387],
+ [20.33766, 48.2643],
+ [20.55395, 48.52358],
+ [20.82335, 48.55714],
+ [21.10271, 48.47096],
+ [21.45863, 48.55513],
+ [21.74536, 48.31435],
+ [22.15293, 48.37179],
+ [22.61255, 49.08914],
+ [22.09997, 49.23814],
+ [21.9686, 49.36363],
+ [21.6244, 49.46989],
+ [21.06873, 49.46402],
+ [20.94336, 49.31088],
+ [20.73052, 49.44006],
+ [20.22804, 49.41714],
+ [20.05234, 49.23052],
+ [19.83682, 49.25529]
+ ]
+ ],
+ "terms_text": "Copyright ©2007-2012 Freemap Slovakia (www.freemap.sk). Some rights reserved.",
+ "icon": "https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"
+ },
+ {
+ "id": "Freemap.sk-Ski",
+ "name": "Freemap.sk Ski",
+ "type": "tms",
+ "template": "https://{switch:a,b,c,d}.freemap.sk/K/{zoom}/{x}/{y}.jpeg",
+ "scaleExtent": [8, 16],
+ "polygon": [
+ [
+ [19.83682, 49.25529],
+ [19.80075, 49.42385],
+ [19.60437, 49.48058],
+ [19.49179, 49.63961],
+ [19.21831, 49.52604],
+ [19.16778, 49.42521],
+ [19.00308, 49.42236],
+ [18.97611, 49.5308],
+ [18.54685, 49.51425],
+ [18.31432, 49.33818],
+ [18.15913, 49.2961],
+ [18.05564, 49.11134],
+ [17.56396, 48.84938],
+ [17.17929, 48.88816],
+ [17.058, 48.81105],
+ [16.90426, 48.61947],
+ [16.79685, 48.38561],
+ [17.06762, 48.01116],
+ [17.32787, 47.97749],
+ [17.51699, 47.82535],
+ [17.74776, 47.73093],
+ [18.29515, 47.72075],
+ [18.67959, 47.75541],
+ [18.89755, 47.81203],
+ [18.79463, 47.88245],
+ [18.84318, 48.04046],
+ [19.46212, 48.05333],
+ [19.62064, 48.22938],
+ [19.89585, 48.09387],
+ [20.33766, 48.2643],
+ [20.55395, 48.52358],
+ [20.82335, 48.55714],
+ [21.10271, 48.47096],
+ [21.45863, 48.55513],
+ [21.74536, 48.31435],
+ [22.15293, 48.37179],
+ [22.61255, 49.08914],
+ [22.09997, 49.23814],
+ [21.9686, 49.36363],
+ [21.6244, 49.46989],
+ [21.06873, 49.46402],
+ [20.94336, 49.31088],
+ [20.73052, 49.44006],
+ [20.22804, 49.41714],
+ [20.05234, 49.23052],
+ [19.83682, 49.25529]
+ ]
+ ],
+ "terms_text": "Copyright ©2007-2012 Freemap Slovakia (www.freemap.sk). Some rights reserved.",
+ "icon": "https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"
+ },
+ {
+ "id": "fta-digiroad-functional",
+ "name": "FTA Road Network",
+ "type": "wms",
+ "template": "https://extranet.liikennevirasto.fi/inspirepalvelu/beta/wms?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=dr_tielinkki_toim_lk&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "scaleExtent": [3, 20],
+ "polygon": [
+ [
+ [27.96569, 70.0988],
+ [27.57431, 70.07728],
+ [27.10876, 69.93548],
+ [26.70913, 69.97549],
+ [26.45507, 69.94207],
+ [25.87142, 69.6671],
+ [25.94833, 69.61024],
+ [25.83023, 69.55323],
+ [25.66955, 69.20794],
+ [25.73822, 69.01797],
+ [25.60089, 68.90309],
+ [25.45806, 68.91199],
+ [25.11749, 68.80699],
+ [25.07354, 68.64355],
+ [24.88128, 68.62003],
+ [23.97491, 68.84568],
+ [23.74969, 68.8308],
+ [23.63433, 68.71645],
+ [23.18939, 68.68053],
+ [22.52197, 68.7553],
+ [21.63894, 69.28191],
+ [21.26953, 69.31783],
+ [20.94131, 69.21622],
+ [21.08963, 69.09307],
+ [21.05941, 69.04352],
+ [20.72296, 69.12491],
+ [20.54443, 69.0558],
+ [20.84655, 68.97416],
+ [20.81634, 68.91742],
+ [21.38754, 68.68461],
+ [22.04734, 68.47066],
+ [22.80212, 68.35464],
+ [23.12072, 68.13169],
+ [23.5437, 67.9633],
+ [23.44757, 67.8393],
+ [23.48602, 67.59352],
+ [23.36517, 67.46545],
+ [23.71124, 67.41592],
+ [23.72772, 67.32186],
+ [23.54644, 67.26885],
+ [23.53128, 67.16724],
+ [23.89251, 66.86863],
+ [23.84582, 66.57775],
+ [23.61843, 66.44562],
+ [23.67171, 66.20303],
+ [23.87191, 66.14551],
+ [24.09988, 65.87247],
+ [24.1658, 65.66959],
+ [24.11636, 65.39143],
+ [21.37939, 63.68037],
+ [20.17639, 63.29787],
+ [19.08325, 60.16064],
+ [20.22033, 59.44786],
+ [22.29125, 59.44507],
+ [25.82336, 59.933],
+ [27.52075, 60.23435],
+ [27.83386, 60.53229],
+ [29.29641, 61.26165],
+ [31.20803, 62.44759],
+ [31.62826, 62.90585],
+ [31.2635, 63.22106],
+ [29.99605, 63.75387],
+ [30.28656, 63.81704],
+ [30.58319, 64.0782],
+ [30.5104, 64.26428],
+ [30.09979, 64.39218],
+ [30.02563, 64.58736],
+ [30.16845, 64.63329],
+ [30.09429, 64.79518],
+ [29.78393, 64.79811],
+ [29.65347, 64.89733],
+ [29.65759, 65.05939],
+ [29.91027, 65.09527],
+ [29.93225, 65.20895],
+ [29.72076, 65.27853],
+ [29.91577, 65.63788],
+ [30.1863, 65.66223],
+ [29.9913, 66.09771],
+ [29.07119, 66.91983],
+ [30.11077, 67.63431],
+ [29.3486, 68.08099],
+ [28.67568, 68.20166],
+ [28.46547, 68.54039],
+ [28.72375, 68.72642],
+ [28.82675, 68.87341],
+ [28.44985, 68.90792],
+ [28.95996, 69.05089],
+ [28.83324, 69.10563],
+ [28.87207, 69.22132],
+ [29.36096, 69.46526],
+ [29.15634, 69.69667],
+ [28.38455, 69.83488],
+ [28.35845, 69.88312],
+ [28.17169, 69.92511],
+ [28.00415, 70.01495],
+ [27.96569, 70.0988]
+ ]
+ ],
+ "terms_url": "https://www.liikennevirasto.fi/web/en/open-data/digiroad/",
+ "terms_text": "© Liikennevirasto",
+ "description": "Digiroad national road network from the Finnish Transport Agency, functional road classes.",
+ "icon": "https://www.liikennevirasto.fi/livi-theme/images/general/liikennevirasto_logo_2x.png",
+ "overlay": true
+ },
+ {
+ "id": "Geobase_Hydrography",
+ "name": "Geobase Hydrography - English",
+ "type": "wms",
+ "template": "https://maps.geogratis.gc.ca/wms/hydro_network_en?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=nhn:nhn&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-141.0678, 60.2442],
+ [-139.3842, 60.10331],
+ [-137.4746, 58.82791],
+ [-135.4766, 59.65971],
+ [-134.399, 58.86279],
+ [-132.5239, 57.08342],
+ [-130.1435, 55.27452],
+ [-130.7734, 54.75597],
+ [-132.4355, 54.71514],
+ [-134.5711, 54.38827],
+ [-141.7761, 53.58405],
+ [-128.9768, 46.41459],
+ [-124.8087, 48.42976],
+ [-123.4286, 48.17889],
+ [-123.0256, 48.40444],
+ [-123.19237, 48.65504],
+ [-122.99582, 48.51065],
+ [-122.4869, 48.4098],
+ [-122.32915, 48.4528],
+ [-122.22939, 48.50649],
+ [-122.17908, 48.52965],
+ [-122.1842, 48.5669],
+ [-121.77833, 48.57593],
+ [-121.66578, 48.42791],
+ [-121.33068, 48.35714],
+ [-121.02713, 48.34977],
+ [-121.03054, 48.49406],
+ [-120.698, 48.51497],
+ [-120.51041, 48.8718],
+ [-119.97579, 48.88134],
+ [-119.95447, 48.51497],
+ [-119.90758, 48.29421],
+ [-119.73193, 48.15503],
+ [-119.74386, 48.07419],
+ [-119.62279, 48.10951],
+ [-119.60232, 48.14707],
+ [-119.25273, 48.16243],
+ [-114.1499, 48.99487],
+ [-95.12094, 48.98405],
+ [-95.13419, 49.35564],
+ [-94.94415, 49.34356],
+ [-94.8839, 49.29522],
+ [-94.71704, 48.87631],
+ [-94.71791, 48.7485],
+ [-93.83204, 48.49765],
+ [-93.43778, 48.53066],
+ [-93.38216, 48.59507],
+ [-92.98471, 48.60312],
+ [-92.73847, 48.50725],
+ [-92.7095, 48.42081],
+ [-92.54293, 48.40158],
+ [-92.38361, 48.20406],
+ [-92.11564, 48.27641],
+ [-91.58697, 48.02516],
+ [-91.24658, 48.05422],
+ [-90.86275, 48.20889],
+ [-90.78308, 48.0639],
+ [-90.0774, 48.07435],
+ [-89.93835, 47.96584],
+ [-89.75469, 47.99609],
+ [-89.32745, 47.93943],
+ [-88.41489, 48.26677],
+ [-84.9566, 46.86086],
+ [-84.84795, 46.6762],
+ [-84.55904, 46.45441],
+ [-84.47642, 46.44972],
+ [-84.43758, 46.48872],
+ [-84.3669, 46.5055],
+ [-84.34899, 46.5055],
+ [-84.29026, 46.49077],
+ [-84.25742, 46.49386],
+ [-84.22507, 46.53187],
+ [-84.1962, 46.53804],
+ [-84.18027, 46.52468],
+ [-84.15987, 46.52468],
+ [-84.13449, 46.52879],
+ [-84.11558, 46.50653],
+ [-84.15944, 46.42769],
+ [-84.10024, 46.20338],
+ [-83.95558, 46.05132],
+ [-83.8864, 46.06125],
+ [-83.8203, 46.11181],
+ [-83.76975, 46.09563],
+ [-83.67498, 46.11391],
+ [-83.58084, 46.09921],
+ [-83.44747, 45.99521],
+ [-83.60888, 45.81772],
+ [-82.14271, 43.57905],
+ [-82.39133, 43.06666],
+ [-82.41252, 43.01127],
+ [-82.42522, 42.99864],
+ [-82.42618, 42.99374],
+ [-82.42363, 42.98536],
+ [-82.41503, 42.97697],
+ [-82.41853, 42.96578],
+ [-82.43064, 42.95203],
+ [-82.44911, 42.93711],
+ [-82.45739, 42.92568],
+ [-82.46472, 42.90562],
+ [-82.47228, 42.8877],
+ [-82.47228, 42.84743],
+ [-82.48536, 42.80967],
+ [-82.46844, 42.76365],
+ [-82.48586, 42.73697],
+ [-82.49155, 42.71168],
+ [-82.51488, 42.66652],
+ [-82.51224, 42.63893],
+ [-82.52421, 42.61103],
+ [-82.56854, 42.58184],
+ [-82.59498, 42.55148],
+ [-82.61286, 42.56409],
+ [-82.65158, 42.55707],
+ [-82.83439, 42.3763],
+ [-83.01489, 42.33457],
+ [-83.07244, 42.31502],
+ [-83.09647, 42.29542],
+ [-83.12823, 42.24126],
+ [-83.14167, 42.18582],
+ [-83.12799, 42.12172],
+ [-83.16266, 42.04963],
+ [-83.05136, 41.70911],
+ [-82.41932, 41.6377],
+ [-81.22563, 42.19633],
+ [-80.06688, 42.37121],
+ [-78.86642, 42.825],
+ [-78.90301, 42.92307],
+ [-78.92063, 42.95234],
+ [-78.93331, 42.95708],
+ [-78.96058, 42.9595],
+ [-78.98479, 42.9761],
+ [-79.01825, 42.9964],
+ [-79.01969, 43.01561],
+ [-79.00695, 43.0333],
+ [-78.99599, 43.06448],
+ [-79.07335, 43.07876],
+ [-79.07286, 43.083],
+ [-79.0652, 43.0917],
+ [-79.05623, 43.10825],
+ [-79.05982, 43.11563],
+ [-79.06764, 43.11992],
+ [-79.05411, 43.12801],
+ [-79.04112, 43.13986],
+ [-79.04465, 43.16192],
+ [-79.05101, 43.17037],
+ [-79.04758, 43.19974],
+ [-79.05511, 43.25682],
+ [-79.18688, 43.44858],
+ [-78.68836, 43.62502],
+ [-76.77647, 43.61369],
+ [-76.41665, 44.08498],
+ [-75.49023, 44.70772],
+ [-75.29544, 44.82587],
+ [-75.16845, 44.88548],
+ [-75.1275, 44.8975],
+ [-75.00499, 44.95265],
+ [-74.98159, 44.97728],
+ [-74.90496, 44.98222],
+ [-74.8313, 45.01108],
+ [-74.77954, 45.00158],
+ [-74.74562, 44.98526],
+ [-74.70475, 44.99877],
+ [-74.49079, 44.99343],
+ [-74.23203, 44.98552],
+ [-73.93713, 44.99512],
+ [-73.01809, 45.0121],
+ [-72.63177, 45.0121],
+ [-72.54779, 45.00506],
+ [-72.32259, 45.00286],
+ [-71.49404, 45.01093],
+ [-71.48648, 45.06221],
+ [-71.42303, 45.12765],
+ [-71.43112, 45.14037],
+ [-71.37175, 45.22117],
+ [-71.28959, 45.28578],
+ [-71.23613, 45.24302],
+ [-71.11683, 45.22933],
+ [-71.0531, 45.29866],
+ [-70.98936, 45.31088],
+ [-70.90246, 45.22525],
+ [-70.82473, 45.22714],
+ [-70.77626, 45.40013],
+ [-70.7119, 45.3754],
+ [-70.63387, 45.37346],
+ [-70.60302, 45.41179],
+ [-70.67659, 45.56319],
+ [-70.3752, 45.73075],
+ [-70.36334, 45.82013],
+ [-70.25417, 45.87468],
+ [-70.22569, 45.94403],
+ [-70.27316, 45.99022],
+ [-70.17586, 46.33538],
+ [-70.06195, 46.4107],
+ [-69.98891, 46.69363],
+ [-69.22424, 47.44463],
+ [-69.06999, 47.41092],
+ [-69.07473, 47.24202],
+ [-68.89684, 47.17469],
+ [-68.78685, 47.21493],
+ [-68.72415, 47.23217],
+ [-68.68583, 47.24028],
+ [-68.66044, 47.23183],
+ [-68.62162, 47.24028],
+ [-68.59425, 47.24974],
+ [-68.59226, 47.27001],
+ [-68.57385, 47.28486],
+ [-68.55941, 47.2798],
+ [-68.542, 47.2798],
+ [-68.51214, 47.29195],
+ [-68.47381, 47.29229],
+ [-68.46038, 47.28149],
+ [-68.43898, 47.27777],
+ [-68.37229, 47.2825],
+ [-68.3703, 47.34796],
+ [-68.33173, 47.35822],
+ [-68.29664, 47.352],
+ [-68.2399, 47.34897],
+ [-68.0906, 47.26798],
+ [-68.00002, 47.21223],
+ [-67.96344, 47.19753],
+ [-67.93582, 47.15947],
+ [-67.88619, 47.10424],
+ [-67.80218, 47.06386],
+ [-67.79415, 45.93923],
+ [-67.82753, 45.8489],
+ [-67.82753, 45.6704],
+ [-67.54943, 45.57445],
+ [-67.45302, 45.58742],
+ [-67.44189, 45.52251],
+ [-67.54201, 45.49393],
+ [-67.4456, 45.38726],
+ [-67.51605, 45.29343],
+ [-67.38257, 45.11839],
+ [-67.3047, 45.11316],
+ [-67.26762, 45.18116],
+ [-67.12671, 45.09484],
+ [-66.94835, 44.78406],
+ [-66.52283, 43.61294],
+ [-65.02339, 42.10691],
+ [-42.53366, 47.50263],
+ [-75.90901, 77.3176],
+ [-71.86482, 78.7359],
+ [-67.20011, 80.66812],
+ [-66.20727, 80.78637],
+ [-54.82473, 83.07464],
+ [-57.62518, 85.04043],
+ [-106.7949, 85.04625],
+ [-141.3957, 79.2514],
+ [-141.0678, 60.2442]
+ ]
+ ],
+ "overlay": true
+ },
+ {
+ "id": "Geobase_Hydrography_French",
+ "name": "Geobase Hydrography - French",
+ "type": "wms",
+ "template": "https://maps.geogratis.gc.ca/wms/hydro_network_fr?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=nhn:nhn&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-141.0678, 60.2442],
+ [-139.3842, 60.10331],
+ [-137.4746, 58.82791],
+ [-135.4766, 59.65971],
+ [-134.399, 58.86279],
+ [-132.5239, 57.08342],
+ [-130.1435, 55.27452],
+ [-130.7734, 54.75597],
+ [-132.4355, 54.71514],
+ [-134.5711, 54.38827],
+ [-141.7761, 53.58405],
+ [-128.9768, 46.41459],
+ [-124.8087, 48.42976],
+ [-123.4286, 48.17889],
+ [-123.0256, 48.40444],
+ [-123.19237, 48.65504],
+ [-122.99582, 48.51065],
+ [-122.4869, 48.4098],
+ [-122.32915, 48.4528],
+ [-122.22939, 48.50649],
+ [-122.17908, 48.52965],
+ [-122.1842, 48.5669],
+ [-121.77833, 48.57593],
+ [-121.66578, 48.42791],
+ [-121.33068, 48.35714],
+ [-121.02713, 48.34977],
+ [-121.03054, 48.49406],
+ [-120.698, 48.51497],
+ [-120.51041, 48.8718],
+ [-119.97579, 48.88134],
+ [-119.95447, 48.51497],
+ [-119.90758, 48.29421],
+ [-119.73193, 48.15503],
+ [-119.74386, 48.07419],
+ [-119.62279, 48.10951],
+ [-119.60232, 48.14707],
+ [-119.25273, 48.16243],
+ [-114.1499, 48.99487],
+ [-95.12094, 48.98405],
+ [-95.13419, 49.35564],
+ [-94.94415, 49.34356],
+ [-94.8839, 49.29522],
+ [-94.71704, 48.87631],
+ [-94.71791, 48.7485],
+ [-93.83204, 48.49765],
+ [-93.43778, 48.53066],
+ [-93.38216, 48.59507],
+ [-92.98471, 48.60312],
+ [-92.73847, 48.50725],
+ [-92.7095, 48.42081],
+ [-92.54293, 48.40158],
+ [-92.38361, 48.20406],
+ [-92.11564, 48.27641],
+ [-91.58697, 48.02516],
+ [-91.24658, 48.05422],
+ [-90.86275, 48.20889],
+ [-90.78308, 48.0639],
+ [-90.0774, 48.07435],
+ [-89.93835, 47.96584],
+ [-89.75469, 47.99609],
+ [-89.32745, 47.93943],
+ [-88.41489, 48.26677],
+ [-84.9566, 46.86086],
+ [-84.84795, 46.6762],
+ [-84.55904, 46.45441],
+ [-84.47642, 46.44972],
+ [-84.43758, 46.48872],
+ [-84.3669, 46.5055],
+ [-84.34899, 46.5055],
+ [-84.29026, 46.49077],
+ [-84.25742, 46.49386],
+ [-84.22507, 46.53187],
+ [-84.1962, 46.53804],
+ [-84.18027, 46.52468],
+ [-84.15987, 46.52468],
+ [-84.13449, 46.52879],
+ [-84.11558, 46.50653],
+ [-84.15944, 46.42769],
+ [-84.10024, 46.20338],
+ [-83.95558, 46.05132],
+ [-83.8864, 46.06125],
+ [-83.8203, 46.11181],
+ [-83.76975, 46.09563],
+ [-83.67498, 46.11391],
+ [-83.58084, 46.09921],
+ [-83.44747, 45.99521],
+ [-83.60888, 45.81772],
+ [-82.14271, 43.57905],
+ [-82.39133, 43.06666],
+ [-82.41252, 43.01127],
+ [-82.42522, 42.99864],
+ [-82.42618, 42.99374],
+ [-82.42363, 42.98536],
+ [-82.41503, 42.97697],
+ [-82.41853, 42.96578],
+ [-82.43064, 42.95203],
+ [-82.44911, 42.93711],
+ [-82.45739, 42.92568],
+ [-82.46472, 42.90562],
+ [-82.47228, 42.8877],
+ [-82.47228, 42.84743],
+ [-82.48536, 42.80967],
+ [-82.46844, 42.76365],
+ [-82.48586, 42.73697],
+ [-82.49155, 42.71168],
+ [-82.51488, 42.66652],
+ [-82.51224, 42.63893],
+ [-82.52421, 42.61103],
+ [-82.56854, 42.58184],
+ [-82.59498, 42.55148],
+ [-82.61286, 42.56409],
+ [-82.65158, 42.55707],
+ [-82.83439, 42.3763],
+ [-83.01489, 42.33457],
+ [-83.07244, 42.31502],
+ [-83.09647, 42.29542],
+ [-83.12823, 42.24126],
+ [-83.14167, 42.18582],
+ [-83.12799, 42.12172],
+ [-83.16266, 42.04963],
+ [-83.05136, 41.70911],
+ [-82.41932, 41.6377],
+ [-81.22563, 42.19633],
+ [-80.06688, 42.37121],
+ [-78.86642, 42.825],
+ [-78.90301, 42.92307],
+ [-78.92063, 42.95234],
+ [-78.93331, 42.95708],
+ [-78.96058, 42.9595],
+ [-78.98479, 42.9761],
+ [-79.01825, 42.9964],
+ [-79.01969, 43.01561],
+ [-79.00695, 43.0333],
+ [-78.99599, 43.06448],
+ [-79.07335, 43.07876],
+ [-79.07286, 43.083],
+ [-79.0652, 43.0917],
+ [-79.05623, 43.10825],
+ [-79.05982, 43.11563],
+ [-79.06764, 43.11992],
+ [-79.05411, 43.12801],
+ [-79.04112, 43.13986],
+ [-79.04465, 43.16192],
+ [-79.05101, 43.17037],
+ [-79.04758, 43.19974],
+ [-79.05511, 43.25682],
+ [-79.18688, 43.44858],
+ [-78.68836, 43.62502],
+ [-76.77647, 43.61369],
+ [-76.41665, 44.08498],
+ [-75.49023, 44.70772],
+ [-75.29544, 44.82587],
+ [-75.16845, 44.88548],
+ [-75.1275, 44.8975],
+ [-75.00499, 44.95265],
+ [-74.98159, 44.97728],
+ [-74.90496, 44.98222],
+ [-74.8313, 45.01108],
+ [-74.77954, 45.00158],
+ [-74.74562, 44.98526],
+ [-74.70475, 44.99877],
+ [-74.49079, 44.99343],
+ [-74.23203, 44.98552],
+ [-73.93713, 44.99512],
+ [-73.01809, 45.0121],
+ [-72.63177, 45.0121],
+ [-72.54779, 45.00506],
+ [-72.32259, 45.00286],
+ [-71.49404, 45.01093],
+ [-71.48648, 45.06221],
+ [-71.42303, 45.12765],
+ [-71.43112, 45.14037],
+ [-71.37175, 45.22117],
+ [-71.28959, 45.28578],
+ [-71.23613, 45.24302],
+ [-71.11683, 45.22933],
+ [-71.0531, 45.29866],
+ [-70.98936, 45.31088],
+ [-70.90246, 45.22525],
+ [-70.82473, 45.22714],
+ [-70.77626, 45.40013],
+ [-70.7119, 45.3754],
+ [-70.63387, 45.37346],
+ [-70.60302, 45.41179],
+ [-70.67659, 45.56319],
+ [-70.3752, 45.73075],
+ [-70.36334, 45.82013],
+ [-70.25417, 45.87468],
+ [-70.22569, 45.94403],
+ [-70.27316, 45.99022],
+ [-70.17586, 46.33538],
+ [-70.06195, 46.4107],
+ [-69.98891, 46.69363],
+ [-69.22424, 47.44463],
+ [-69.06999, 47.41092],
+ [-69.07473, 47.24202],
+ [-68.89684, 47.17469],
+ [-68.78685, 47.21493],
+ [-68.72415, 47.23217],
+ [-68.68583, 47.24028],
+ [-68.66044, 47.23183],
+ [-68.62162, 47.24028],
+ [-68.59425, 47.24974],
+ [-68.59226, 47.27001],
+ [-68.57385, 47.28486],
+ [-68.55941, 47.2798],
+ [-68.542, 47.2798],
+ [-68.51214, 47.29195],
+ [-68.47381, 47.29229],
+ [-68.46038, 47.28149],
+ [-68.43898, 47.27777],
+ [-68.37229, 47.2825],
+ [-68.3703, 47.34796],
+ [-68.33173, 47.35822],
+ [-68.29664, 47.352],
+ [-68.2399, 47.34897],
+ [-68.0906, 47.26798],
+ [-68.00002, 47.21223],
+ [-67.96344, 47.19753],
+ [-67.93582, 47.15947],
+ [-67.88619, 47.10424],
+ [-67.80218, 47.06386],
+ [-67.79415, 45.93923],
+ [-67.82753, 45.8489],
+ [-67.82753, 45.6704],
+ [-67.54943, 45.57445],
+ [-67.45302, 45.58742],
+ [-67.44189, 45.52251],
+ [-67.54201, 45.49393],
+ [-67.4456, 45.38726],
+ [-67.51605, 45.29343],
+ [-67.38257, 45.11839],
+ [-67.3047, 45.11316],
+ [-67.26762, 45.18116],
+ [-67.12671, 45.09484],
+ [-66.94835, 44.78406],
+ [-66.52283, 43.61294],
+ [-65.02339, 42.10691],
+ [-42.53366, 47.50263],
+ [-75.90901, 77.3176],
+ [-71.86482, 78.7359],
+ [-67.20011, 80.66812],
+ [-66.20727, 80.78637],
+ [-54.82473, 83.07464],
+ [-57.62518, 85.04043],
+ [-106.7949, 85.04625],
+ [-141.3957, 79.2514],
+ [-141.0678, 60.2442]
+ ]
+ ],
+ "overlay": true
+ },
+ {
+ "id": "Geobase_Roads",
+ "name": "Geobase Roads - English",
+ "type": "wms",
+ "template": "https://maps.geogratis.gc.ca/wms/roads_en?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=roads&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "scaleExtent": [4, 20],
+ "polygon": [
+ [
+ [-141.0678, 60.2442],
+ [-139.3842, 60.10331],
+ [-137.4746, 58.82791],
+ [-135.4766, 59.65971],
+ [-134.399, 58.86279],
+ [-132.5239, 57.08342],
+ [-130.1435, 55.27452],
+ [-130.7734, 54.75597],
+ [-132.4355, 54.71514],
+ [-134.5711, 54.38827],
+ [-141.7761, 53.58405],
+ [-128.9768, 46.41459],
+ [-124.8087, 48.42976],
+ [-123.4286, 48.17889],
+ [-123.0256, 48.40444],
+ [-123.19237, 48.65504],
+ [-122.99582, 48.51065],
+ [-122.4869, 48.4098],
+ [-122.32915, 48.4528],
+ [-122.22939, 48.50649],
+ [-122.17908, 48.52965],
+ [-122.1842, 48.5669],
+ [-121.77833, 48.57593],
+ [-121.66578, 48.42791],
+ [-121.33068, 48.35714],
+ [-121.02713, 48.34977],
+ [-121.03054, 48.49406],
+ [-120.698, 48.51497],
+ [-120.51041, 48.8718],
+ [-119.97579, 48.88134],
+ [-119.95447, 48.51497],
+ [-119.90758, 48.29421],
+ [-119.73193, 48.15503],
+ [-119.74386, 48.07419],
+ [-119.62279, 48.10951],
+ [-119.60232, 48.14707],
+ [-119.25273, 48.16243],
+ [-114.1499, 48.99487],
+ [-95.12094, 48.98405],
+ [-95.13419, 49.35564],
+ [-94.94415, 49.34356],
+ [-94.8839, 49.29522],
+ [-94.71704, 48.87631],
+ [-94.71791, 48.7485],
+ [-93.83204, 48.49765],
+ [-93.43778, 48.53066],
+ [-93.38216, 48.59507],
+ [-92.98471, 48.60312],
+ [-92.73847, 48.50725],
+ [-92.7095, 48.42081],
+ [-92.54293, 48.40158],
+ [-92.38361, 48.20406],
+ [-92.11564, 48.27641],
+ [-91.58697, 48.02516],
+ [-91.24658, 48.05422],
+ [-90.86275, 48.20889],
+ [-90.78308, 48.0639],
+ [-90.0774, 48.07435],
+ [-89.93835, 47.96584],
+ [-89.75469, 47.99609],
+ [-89.32745, 47.93943],
+ [-88.41489, 48.26677],
+ [-84.9566, 46.86086],
+ [-84.84795, 46.6762],
+ [-84.55904, 46.45441],
+ [-84.47642, 46.44972],
+ [-84.43758, 46.48872],
+ [-84.3669, 46.5055],
+ [-84.34899, 46.5055],
+ [-84.29026, 46.49077],
+ [-84.25742, 46.49386],
+ [-84.22507, 46.53187],
+ [-84.1962, 46.53804],
+ [-84.18027, 46.52468],
+ [-84.15987, 46.52468],
+ [-84.13449, 46.52879],
+ [-84.11558, 46.50653],
+ [-84.15944, 46.42769],
+ [-84.10024, 46.20338],
+ [-83.95558, 46.05132],
+ [-83.8864, 46.06125],
+ [-83.8203, 46.11181],
+ [-83.76975, 46.09563],
+ [-83.67498, 46.11391],
+ [-83.58084, 46.09921],
+ [-83.44747, 45.99521],
+ [-83.60888, 45.81772],
+ [-82.14271, 43.57905],
+ [-82.39133, 43.06666],
+ [-82.41252, 43.01127],
+ [-82.42522, 42.99864],
+ [-82.42618, 42.99374],
+ [-82.42363, 42.98536],
+ [-82.41503, 42.97697],
+ [-82.41853, 42.96578],
+ [-82.43064, 42.95203],
+ [-82.44911, 42.93711],
+ [-82.45739, 42.92568],
+ [-82.46472, 42.90562],
+ [-82.47228, 42.8877],
+ [-82.47228, 42.84743],
+ [-82.48536, 42.80967],
+ [-82.46844, 42.76365],
+ [-82.48586, 42.73697],
+ [-82.49155, 42.71168],
+ [-82.51488, 42.66652],
+ [-82.51224, 42.63893],
+ [-82.52421, 42.61103],
+ [-82.56854, 42.58184],
+ [-82.59498, 42.55148],
+ [-82.61286, 42.56409],
+ [-82.65158, 42.55707],
+ [-82.83439, 42.3763],
+ [-83.01489, 42.33457],
+ [-83.07244, 42.31502],
+ [-83.09647, 42.29542],
+ [-83.12823, 42.24126],
+ [-83.14167, 42.18582],
+ [-83.12799, 42.12172],
+ [-83.16266, 42.04963],
+ [-83.05136, 41.70911],
+ [-82.41932, 41.6377],
+ [-81.22563, 42.19633],
+ [-80.06688, 42.37121],
+ [-78.86642, 42.825],
+ [-78.90301, 42.92307],
+ [-78.92063, 42.95234],
+ [-78.93331, 42.95708],
+ [-78.96058, 42.9595],
+ [-78.98479, 42.9761],
+ [-79.01825, 42.9964],
+ [-79.01969, 43.01561],
+ [-79.00695, 43.0333],
+ [-78.99599, 43.06448],
+ [-79.07335, 43.07876],
+ [-79.07286, 43.083],
+ [-79.0652, 43.0917],
+ [-79.05623, 43.10825],
+ [-79.05982, 43.11563],
+ [-79.06764, 43.11992],
+ [-79.05411, 43.12801],
+ [-79.04112, 43.13986],
+ [-79.04465, 43.16192],
+ [-79.05101, 43.17037],
+ [-79.04758, 43.19974],
+ [-79.05511, 43.25682],
+ [-79.18688, 43.44858],
+ [-78.68836, 43.62502],
+ [-76.77647, 43.61369],
+ [-76.41665, 44.08498],
+ [-75.49023, 44.70772],
+ [-75.29544, 44.82587],
+ [-75.16845, 44.88548],
+ [-75.1275, 44.8975],
+ [-75.00499, 44.95265],
+ [-74.98159, 44.97728],
+ [-74.90496, 44.98222],
+ [-74.8313, 45.01108],
+ [-74.77954, 45.00158],
+ [-74.74562, 44.98526],
+ [-74.70475, 44.99877],
+ [-74.49079, 44.99343],
+ [-74.23203, 44.98552],
+ [-73.93713, 44.99512],
+ [-73.01809, 45.0121],
+ [-72.63177, 45.0121],
+ [-72.54779, 45.00506],
+ [-72.32259, 45.00286],
+ [-71.49404, 45.01093],
+ [-71.48648, 45.06221],
+ [-71.42303, 45.12765],
+ [-71.43112, 45.14037],
+ [-71.37175, 45.22117],
+ [-71.28959, 45.28578],
+ [-71.23613, 45.24302],
+ [-71.11683, 45.22933],
+ [-71.0531, 45.29866],
+ [-70.98936, 45.31088],
+ [-70.90246, 45.22525],
+ [-70.82473, 45.22714],
+ [-70.77626, 45.40013],
+ [-70.7119, 45.3754],
+ [-70.63387, 45.37346],
+ [-70.60302, 45.41179],
+ [-70.67659, 45.56319],
+ [-70.3752, 45.73075],
+ [-70.36334, 45.82013],
+ [-70.25417, 45.87468],
+ [-70.22569, 45.94403],
+ [-70.27316, 45.99022],
+ [-70.17586, 46.33538],
+ [-70.06195, 46.4107],
+ [-69.98891, 46.69363],
+ [-69.22424, 47.44463],
+ [-69.06999, 47.41092],
+ [-69.07473, 47.24202],
+ [-68.89684, 47.17469],
+ [-68.78685, 47.21493],
+ [-68.72415, 47.23217],
+ [-68.68583, 47.24028],
+ [-68.66044, 47.23183],
+ [-68.62162, 47.24028],
+ [-68.59425, 47.24974],
+ [-68.59226, 47.27001],
+ [-68.57385, 47.28486],
+ [-68.55941, 47.2798],
+ [-68.542, 47.2798],
+ [-68.51214, 47.29195],
+ [-68.47381, 47.29229],
+ [-68.46038, 47.28149],
+ [-68.43898, 47.27777],
+ [-68.37229, 47.2825],
+ [-68.3703, 47.34796],
+ [-68.33173, 47.35822],
+ [-68.29664, 47.352],
+ [-68.2399, 47.34897],
+ [-68.0906, 47.26798],
+ [-68.00002, 47.21223],
+ [-67.96344, 47.19753],
+ [-67.93582, 47.15947],
+ [-67.88619, 47.10424],
+ [-67.80218, 47.06386],
+ [-67.79415, 45.93923],
+ [-67.82753, 45.8489],
+ [-67.82753, 45.6704],
+ [-67.54943, 45.57445],
+ [-67.45302, 45.58742],
+ [-67.44189, 45.52251],
+ [-67.54201, 45.49393],
+ [-67.4456, 45.38726],
+ [-67.51605, 45.29343],
+ [-67.38257, 45.11839],
+ [-67.3047, 45.11316],
+ [-67.26762, 45.18116],
+ [-67.12671, 45.09484],
+ [-66.94835, 44.78406],
+ [-66.52283, 43.61294],
+ [-65.02339, 42.10691],
+ [-42.53366, 47.50263],
+ [-75.90901, 77.3176],
+ [-71.86482, 78.7359],
+ [-67.20011, 80.66812],
+ [-66.20727, 80.78637],
+ [-54.82473, 83.07464],
+ [-57.62518, 85.04043],
+ [-106.7949, 85.04625],
+ [-141.3957, 79.2514],
+ [-141.0678, 60.2442]
+ ]
+ ]
+ },
+ {
+ "id": "Geobase_Roads_French",
+ "name": "Geobase Roads - French",
+ "type": "wms",
+ "template": "https://cartes.geogratis.gc.ca/wms/roads_fr?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=routes&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "scaleExtent": [4, 20],
+ "polygon": [
+ [
+ [-141.0678, 60.2442],
+ [-139.3842, 60.10331],
+ [-137.4746, 58.82791],
+ [-135.4766, 59.65971],
+ [-134.399, 58.86279],
+ [-132.5239, 57.08342],
+ [-130.1435, 55.27452],
+ [-130.7734, 54.75597],
+ [-132.4355, 54.71514],
+ [-134.5711, 54.38827],
+ [-141.7761, 53.58405],
+ [-128.9768, 46.41459],
+ [-124.8087, 48.42976],
+ [-123.4286, 48.17889],
+ [-123.0256, 48.40444],
+ [-123.19237, 48.65504],
+ [-122.99582, 48.51065],
+ [-122.4869, 48.4098],
+ [-122.32915, 48.4528],
+ [-122.22939, 48.50649],
+ [-122.17908, 48.52965],
+ [-122.1842, 48.5669],
+ [-121.77833, 48.57593],
+ [-121.66578, 48.42791],
+ [-121.33068, 48.35714],
+ [-121.02713, 48.34977],
+ [-121.03054, 48.49406],
+ [-120.698, 48.51497],
+ [-120.51041, 48.8718],
+ [-119.97579, 48.88134],
+ [-119.95447, 48.51497],
+ [-119.90758, 48.29421],
+ [-119.73193, 48.15503],
+ [-119.74386, 48.07419],
+ [-119.62279, 48.10951],
+ [-119.60232, 48.14707],
+ [-119.25273, 48.16243],
+ [-114.1499, 48.99487],
+ [-95.12094, 48.98405],
+ [-95.13419, 49.35564],
+ [-94.94415, 49.34356],
+ [-94.8839, 49.29522],
+ [-94.71704, 48.87631],
+ [-94.71791, 48.7485],
+ [-93.83204, 48.49765],
+ [-93.43778, 48.53066],
+ [-93.38216, 48.59507],
+ [-92.98471, 48.60312],
+ [-92.73847, 48.50725],
+ [-92.7095, 48.42081],
+ [-92.54293, 48.40158],
+ [-92.38361, 48.20406],
+ [-92.11564, 48.27641],
+ [-91.58697, 48.02516],
+ [-91.24658, 48.05422],
+ [-90.86275, 48.20889],
+ [-90.78308, 48.0639],
+ [-90.0774, 48.07435],
+ [-89.93835, 47.96584],
+ [-89.75469, 47.99609],
+ [-89.32745, 47.93943],
+ [-88.41489, 48.26677],
+ [-84.9566, 46.86086],
+ [-84.84795, 46.6762],
+ [-84.55904, 46.45441],
+ [-84.47642, 46.44972],
+ [-84.43758, 46.48872],
+ [-84.3669, 46.5055],
+ [-84.34899, 46.5055],
+ [-84.29026, 46.49077],
+ [-84.25742, 46.49386],
+ [-84.22507, 46.53187],
+ [-84.1962, 46.53804],
+ [-84.18027, 46.52468],
+ [-84.15987, 46.52468],
+ [-84.13449, 46.52879],
+ [-84.11558, 46.50653],
+ [-84.15944, 46.42769],
+ [-84.10024, 46.20338],
+ [-83.95558, 46.05132],
+ [-83.8864, 46.06125],
+ [-83.8203, 46.11181],
+ [-83.76975, 46.09563],
+ [-83.67498, 46.11391],
+ [-83.58084, 46.09921],
+ [-83.44747, 45.99521],
+ [-83.60888, 45.81772],
+ [-82.14271, 43.57905],
+ [-82.39133, 43.06666],
+ [-82.41252, 43.01127],
+ [-82.42522, 42.99864],
+ [-82.42618, 42.99374],
+ [-82.42363, 42.98536],
+ [-82.41503, 42.97697],
+ [-82.41853, 42.96578],
+ [-82.43064, 42.95203],
+ [-82.44911, 42.93711],
+ [-82.45739, 42.92568],
+ [-82.46472, 42.90562],
+ [-82.47228, 42.8877],
+ [-82.47228, 42.84743],
+ [-82.48536, 42.80967],
+ [-82.46844, 42.76365],
+ [-82.48586, 42.73697],
+ [-82.49155, 42.71168],
+ [-82.51488, 42.66652],
+ [-82.51224, 42.63893],
+ [-82.52421, 42.61103],
+ [-82.56854, 42.58184],
+ [-82.59498, 42.55148],
+ [-82.61286, 42.56409],
+ [-82.65158, 42.55707],
+ [-82.83439, 42.3763],
+ [-83.01489, 42.33457],
+ [-83.07244, 42.31502],
+ [-83.09647, 42.29542],
+ [-83.12823, 42.24126],
+ [-83.14167, 42.18582],
+ [-83.12799, 42.12172],
+ [-83.16266, 42.04963],
+ [-83.05136, 41.70911],
+ [-82.41932, 41.6377],
+ [-81.22563, 42.19633],
+ [-80.06688, 42.37121],
+ [-78.86642, 42.825],
+ [-78.90301, 42.92307],
+ [-78.92063, 42.95234],
+ [-78.93331, 42.95708],
+ [-78.96058, 42.9595],
+ [-78.98479, 42.9761],
+ [-79.01825, 42.9964],
+ [-79.01969, 43.01561],
+ [-79.00695, 43.0333],
+ [-78.99599, 43.06448],
+ [-79.07335, 43.07876],
+ [-79.07286, 43.083],
+ [-79.0652, 43.0917],
+ [-79.05623, 43.10825],
+ [-79.05982, 43.11563],
+ [-79.06764, 43.11992],
+ [-79.05411, 43.12801],
+ [-79.04112, 43.13986],
+ [-79.04465, 43.16192],
+ [-79.05101, 43.17037],
+ [-79.04758, 43.19974],
+ [-79.05511, 43.25682],
+ [-79.18688, 43.44858],
+ [-78.68836, 43.62502],
+ [-76.77647, 43.61369],
+ [-76.41665, 44.08498],
+ [-75.49023, 44.70772],
+ [-75.29544, 44.82587],
+ [-75.16845, 44.88548],
+ [-75.1275, 44.8975],
+ [-75.00499, 44.95265],
+ [-74.98159, 44.97728],
+ [-74.90496, 44.98222],
+ [-74.8313, 45.01108],
+ [-74.77954, 45.00158],
+ [-74.74562, 44.98526],
+ [-74.70475, 44.99877],
+ [-74.49079, 44.99343],
+ [-74.23203, 44.98552],
+ [-73.93713, 44.99512],
+ [-73.01809, 45.0121],
+ [-72.63177, 45.0121],
+ [-72.54779, 45.00506],
+ [-72.32259, 45.00286],
+ [-71.49404, 45.01093],
+ [-71.48648, 45.06221],
+ [-71.42303, 45.12765],
+ [-71.43112, 45.14037],
+ [-71.37175, 45.22117],
+ [-71.28959, 45.28578],
+ [-71.23613, 45.24302],
+ [-71.11683, 45.22933],
+ [-71.0531, 45.29866],
+ [-70.98936, 45.31088],
+ [-70.90246, 45.22525],
+ [-70.82473, 45.22714],
+ [-70.77626, 45.40013],
+ [-70.7119, 45.3754],
+ [-70.63387, 45.37346],
+ [-70.60302, 45.41179],
+ [-70.67659, 45.56319],
+ [-70.3752, 45.73075],
+ [-70.36334, 45.82013],
+ [-70.25417, 45.87468],
+ [-70.22569, 45.94403],
+ [-70.27316, 45.99022],
+ [-70.17586, 46.33538],
+ [-70.06195, 46.4107],
+ [-69.98891, 46.69363],
+ [-69.22424, 47.44463],
+ [-69.06999, 47.41092],
+ [-69.07473, 47.24202],
+ [-68.89684, 47.17469],
+ [-68.78685, 47.21493],
+ [-68.72415, 47.23217],
+ [-68.68583, 47.24028],
+ [-68.66044, 47.23183],
+ [-68.62162, 47.24028],
+ [-68.59425, 47.24974],
+ [-68.59226, 47.27001],
+ [-68.57385, 47.28486],
+ [-68.55941, 47.2798],
+ [-68.542, 47.2798],
+ [-68.51214, 47.29195],
+ [-68.47381, 47.29229],
+ [-68.46038, 47.28149],
+ [-68.43898, 47.27777],
+ [-68.37229, 47.2825],
+ [-68.3703, 47.34796],
+ [-68.33173, 47.35822],
+ [-68.29664, 47.352],
+ [-68.2399, 47.34897],
+ [-68.0906, 47.26798],
+ [-68.00002, 47.21223],
+ [-67.96344, 47.19753],
+ [-67.93582, 47.15947],
+ [-67.88619, 47.10424],
+ [-67.80218, 47.06386],
+ [-67.79415, 45.93923],
+ [-67.82753, 45.8489],
+ [-67.82753, 45.6704],
+ [-67.54943, 45.57445],
+ [-67.45302, 45.58742],
+ [-67.44189, 45.52251],
+ [-67.54201, 45.49393],
+ [-67.4456, 45.38726],
+ [-67.51605, 45.29343],
+ [-67.38257, 45.11839],
+ [-67.3047, 45.11316],
+ [-67.26762, 45.18116],
+ [-67.12671, 45.09484],
+ [-66.94835, 44.78406],
+ [-66.52283, 43.61294],
+ [-65.02339, 42.10691],
+ [-42.53366, 47.50263],
+ [-75.90901, 77.3176],
+ [-71.86482, 78.7359],
+ [-67.20011, 80.66812],
+ [-66.20727, 80.78637],
+ [-54.82473, 83.07464],
+ [-57.62518, 85.04043],
+ [-106.7949, 85.04625],
+ [-141.3957, 79.2514],
+ [-141.0678, 60.2442]
+ ]
+ ]
+ },
+ {
+ "id": "geoimage.at",
+ "name": "Geoimage.at MaxRes",
+ "type": "wms",
+ "template": "http://gis.lebensministerium.at/wmsgw/?key=4d80de696cd562a63ce463a58a61488d&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=Luftbild_MR,Luftbild_1m,Luftbild_8m,Satellitenbild_30m&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [16.50733, 46.99293],
+ [16.28342, 46.99293],
+ [16.13584, 46.8713],
+ [15.98317, 46.81909],
+ [16.04933, 46.65517],
+ [15.86104, 46.71801],
+ [15.75926, 46.69009],
+ [15.56079, 46.67962],
+ [15.57606, 46.63421],
+ [15.47937, 46.60276],
+ [15.43357, 46.65168],
+ [15.22493, 46.63421],
+ [15.04682, 46.64819],
+ [14.99084, 46.58877],
+ [14.9603, 46.62373],
+ [14.85344, 46.60276],
+ [14.83308, 46.50127],
+ [14.75166, 46.49776],
+ [14.68041, 46.43818],
+ [14.61426, 46.43818],
+ [14.57864, 46.37853],
+ [14.44124, 46.43116],
+ [14.16135, 46.42766],
+ [14.12573, 46.47674],
+ [14.01886, 46.47674],
+ [13.91199, 46.52578],
+ [13.82548, 46.50477],
+ [13.44381, 46.56078],
+ [13.30641, 46.55028],
+ [13.1283, 46.58877],
+ [12.84332, 46.61324],
+ [12.72628, 46.6412],
+ [12.51255, 46.66565],
+ [12.35988, 46.70405],
+ [12.36497, 46.77032],
+ [12.28863, 46.77729],
+ [12.27337, 46.88522],
+ [12.20721, 46.87478],
+ [12.13088, 46.90261],
+ [12.11561, 46.99987],
+ [12.25301, 47.06577],
+ [12.2123, 47.0935],
+ [11.9833, 47.04497],
+ [11.73394, 46.96168],
+ [11.63217, 47.01028],
+ [11.54057, 46.97557],
+ [11.49986, 47.00681],
+ [11.41843, 46.96515],
+ [11.25559, 46.97557],
+ [11.1131, 46.91304],
+ [11.04185, 46.76335],
+ [10.88919, 46.75986],
+ [10.74161, 46.78426],
+ [10.70599, 46.86435],
+ [10.57877, 46.83998],
+ [10.45663, 46.85043],
+ [10.47699, 46.92694],
+ [10.38539, 46.98946],
+ [10.23272, 46.86435],
+ [10.12076, 46.83302],
+ [9.86632, 46.94084],
+ [9.90194, 47.00334],
+ [9.68312, 47.05884],
+ [9.61188, 47.03804],
+ [9.63223, 47.12813],
+ [9.58134, 47.1662],
+ [9.54063, 47.26644],
+ [9.60679, 47.34926],
+ [9.67294, 47.36994],
+ [9.64241, 47.44571],
+ [9.56608, 47.48011],
+ [9.71365, 47.52824],
+ [9.7849, 47.59692],
+ [9.83579, 47.54542],
+ [9.94774, 47.53855],
+ [10.09023, 47.44915],
+ [10.11059, 47.36649],
+ [10.2429, 47.38717],
+ [10.18692, 47.2699],
+ [10.32432, 47.29751],
+ [10.48208, 47.44915],
+ [10.43119, 47.48699],
+ [10.44137, 47.59005],
+ [10.48717, 47.55229],
+ [10.54823, 47.53511],
+ [10.59912, 47.56602],
+ [10.75688, 47.53168],
+ [10.88919, 47.54542],
+ [10.94008, 47.48699],
+ [10.99605, 47.39061],
+ [11.23523, 47.44227],
+ [11.28103, 47.3975],
+ [11.42352, 47.51449],
+ [11.57619, 47.50762],
+ [11.60672, 47.59005],
+ [11.83572, 47.58662],
+ [12.00366, 47.62436],
+ [12.20721, 47.60378],
+ [12.16141, 47.69634],
+ [12.2581, 47.74427],
+ [12.25301, 47.67921],
+ [12.43112, 47.71004],
+ [12.49219, 47.63122],
+ [12.56852, 47.62779],
+ [12.62959, 47.68949],
+ [12.77208, 47.66893],
+ [12.83315, 47.54198],
+ [12.97564, 47.47323],
+ [13.04179, 47.49387],
+ [13.0367, 47.55572],
+ [13.09777, 47.64151],
+ [13.03161, 47.71004],
+ [12.90439, 47.72031],
+ [13.00617, 47.84683],
+ [12.9451, 47.93555],
+ [12.86368, 47.95941],
+ [12.86368, 48.00369],
+ [12.75172, 48.09894],
+ [12.87386, 48.21097],
+ [12.96037, 48.21097],
+ [13.04179, 48.2652],
+ [13.18428, 48.29907],
+ [13.26061, 48.2923],
+ [13.39801, 48.35659],
+ [13.44381, 48.41742],
+ [13.43872, 48.55234],
+ [13.50997, 48.58601],
+ [13.61175, 48.57255],
+ [13.72879, 48.5119],
+ [13.78477, 48.57255],
+ [13.82039, 48.62639],
+ [13.79495, 48.71713],
+ [13.85093, 48.77417],
+ [14.05957, 48.66338],
+ [14.01377, 48.63312],
+ [14.07484, 48.59274],
+ [14.21733, 48.59611],
+ [14.3649, 48.54897],
+ [14.46668, 48.64993],
+ [14.55828, 48.59611],
+ [14.59899, 48.62639],
+ [14.72113, 48.57591],
+ [14.72113, 48.6869],
+ [14.8229, 48.7272],
+ [14.81782, 48.77753],
+ [14.96472, 48.78518],
+ [14.98936, 49.01266],
+ [15.14859, 48.99503],
+ [15.19439, 48.93155],
+ [15.30635, 48.98501],
+ [15.39286, 48.98501],
+ [15.48446, 48.92821],
+ [15.74908, 48.8546],
+ [15.84068, 48.88807],
+ [16.00862, 48.78088],
+ [16.20708, 48.73391],
+ [16.39537, 48.73727],
+ [16.49206, 48.81105],
+ [16.69053, 48.77417],
+ [16.7058, 48.73391],
+ [16.89917, 48.71377],
+ [16.97551, 48.51527],
+ [16.84828, 48.45118],
+ [16.85337, 48.34644],
+ [16.95515, 48.25165],
+ [16.99077, 48.1499],
+ [17.09255, 48.13971],
+ [17.08237, 48.02412],
+ [17.17397, 48.02071],
+ [17.08237, 47.87414],
+ [16.98568, 47.86732],
+ [17.08237, 47.80925],
+ [17.09255, 47.70319],
+ [16.74142, 47.67921],
+ [16.7058, 47.75112],
+ [16.53786, 47.75454],
+ [16.54804, 47.70662],
+ [16.42082, 47.66893],
+ [16.57348, 47.6175],
+ [16.67017, 47.63122],
+ [16.71088, 47.53855],
+ [16.66, 47.44915],
+ [16.54295, 47.39406],
+ [16.46153, 47.39406],
+ [16.49206, 47.2768],
+ [16.42591, 47.19733],
+ [16.47171, 47.1489],
+ [16.54804, 47.1489],
+ [16.47679, 47.07964],
+ [16.52768, 47.05884],
+ [16.50733, 46.99293]
+ ]
+ ],
+ "terms_url": "http://geoimage.at",
+ "terms_text": "geoimage.at",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QwTFA8gQvGHigAAAwtJREFUOMvtk19oW1Ucx7/nnntukpvGtF2btHG1o52bYxULOp99sYggiM7pVKbbQNCH+SYOFMHCHhR88g9jjPmgm32YMpGNTbpp1W5D7NyfJnYLTdNm3ZI0SZPc5N5zzz3n+CIiCtM9+KQf+D39+H74Pfy+wH8Ocqvlh4enyblMO7JpKHl/X080sbhcnH3r3eNXkR1XtyU8cHiS2Hakf+iuxJ7enq7n4x12ijFDtz3fW11tzBZL1YMnpjKfvrN3m/O3ws+OTRnxmP1gsrf7g2RizUbGLCtkGdSkBnigtPCFaLXc1ZvF8vfZXOG1HdvGcn/M0z8Ln9nx8vBAas0ngwN9dzPGmGlSCkIMrTQxQABCSDjE2B2xyJ2E0A0d/Q+cPP/tMb7v0Kwx+tBz5PcL9350mXZFVuzR4b73Nm3o326HQpYdNonWMEAIgdZQWmvP8yECpZptKetNtzqTLkz8UpBfKmJ1tJo1SgBgfP8V2mhVn2JYet0Osc09Xabp+DFdbpgkV7SQ6jbRdCXaHAgU4AsFj0sQAFGbgguNhsPRqiyeM/d/PkezS4WxRilzpLM5ga5EEu5qGJvXDZFDuXvA4sO4b30MXCi4XCLRGYZhaFQaEtTQ6I5bKNV8HJ3ML1cLM+Pm1fnCaNFZmLhRORkkUltIpl2mI/duxMW8Rk0N4okRG3OLDtb2RlB3AthhgXI9QLbgIp13QQ0CrQSEU57JnX3/OBnbfWBfpVIZjEb7DClb8WRv50jMDqesSNzwpU+UFAiZFIGmaHsKFjNAKNOub8LhkC6XbiD4wvXLR19dOH/wzF9+8McL6Uev31jJNlrc8Xjg+4GSvlBKSKXaLpfFUk3kl5bddOZa7dTk1PTT2194DED3LfqxlZz+7qc35uZvXitXHdf1ROALKX+boO353nKpXr2UyU9/deLMzn9aPfLNDz+/NLC2/0WDhgZNxnqYSUzOA0f4vMg9J33xytzHz2595Ivb6vKet48kHx/b8mQ40vFwNMKS9UbzQmWleHrXK29+XZs/1cD//Cv8CriEgFStQ2K4AAAAAElFTkSuQmCC"
+ },
+ {
+ "id": "Geolittoral-Orthophotos2000",
+ "name": "Géolittoral - Orthophotos 2000",
+ "type": "wms",
+ "template": "http://geolittoral.application.developpement-durable.gouv.fr/wms2/metropole?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortholittorale&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2000-01-01T00:00:00.000Z",
+ "startDate": "2000-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [-1.07962, 46.10959],
+ [-0.94115, 46.01474],
+ [-0.56306, 45.15178],
+ [-0.7266, 45.08425],
+ [-0.87904, 45.34094],
+ [-0.99794, 45.33779],
+ [-0.95558, 44.69982],
+ [-1.15862, 44.19865],
+ [-1.21512, 44.20558],
+ [-1.24654, 44.1162],
+ [-1.27903, 44.03937],
+ [-1.28825, 44.02304],
+ [-1.32117, 43.94094],
+ [-1.32151, 43.92296],
+ [-1.3092, 43.92337],
+ [-1.3085, 43.91439],
+ [-1.28366, 43.91514],
+ [-1.28302, 43.90624],
+ [-1.2761, 43.90655],
+ [-1.28211, 43.89254],
+ [-1.30102, 43.85159],
+ [-1.30384, 43.8424],
+ [-1.30923, 43.83498],
+ [-1.33474, 43.76946],
+ [-1.34407, 43.74875],
+ [-1.3456, 43.74214],
+ [-1.34673, 43.73688],
+ [-1.43284, 43.53152],
+ [-1.42806, 43.46812],
+ [-1.60627, 43.40591],
+ [-1.6061, 43.36012],
+ [-1.77441, 43.30357],
+ [-1.82995, 43.38484],
+ [-1.58551, 43.46856],
+ [-1.35706, 44.03374],
+ [-1.40217, 44.06461],
+ [-1.33584, 44.22832],
+ [-1.21836, 44.23033],
+ [-1.16795, 44.41097],
+ [-1.30744, 44.41847],
+ [-1.16979, 45.59107],
+ [-1.48685, 46.06042],
+ [-1.36364, 46.09146],
+ [-1.60176, 46.17019],
+ [-1.64442, 46.22375],
+ [-1.58595, 46.30426],
+ [-1.51008, 46.33888],
+ [-1.75643, 46.42214],
+ [-2.1872, 46.81857],
+ [-2.16423, 46.85534],
+ [-2.23654, 46.9337],
+ [-2.39769, 46.96718],
+ [-2.282, 47.07631],
+ [-2.12563, 47.01875],
+ [-2.09013, 47.06562],
+ [-2.18487, 47.10698],
+ [-2.2647, 47.10763],
+ [-2.24489, 47.18562],
+ [-2.56779, 47.24467],
+ [-2.66727, 47.46686],
+ [-2.74787, 47.47122],
+ [-2.75771, 47.43461],
+ [-2.89321, 47.4629],
+ [-2.90369, 47.50905],
+ [-3.03383, 47.53833],
+ [-3.07113, 47.51185],
+ [-3.01653, 47.49873],
+ [-3.12502, 47.42693],
+ [-3.18803, 47.48441],
+ [-3.22791, 47.61132],
+ [-3.2967, 47.63161],
+ [-3.2876, 47.67154],
+ [-3.34074, 47.66893],
+ [-3.38912, 47.59473],
+ [-3.55087, 47.63827],
+ [-3.53384, 47.72488],
+ [-3.76577, 47.76476],
+ [-3.77595, 47.7371],
+ [-3.91168, 47.75915],
+ [-3.8959, 47.79911],
+ [-3.97236, 47.81526],
+ [-3.99722, 47.7975],
+ [-3.97956, 47.76268],
+ [-3.8945, 47.72193],
+ [-3.9162, 47.67831],
+ [-4.10163, 47.70921],
+ [-4.08989, 47.78944],
+ [-4.03798, 47.79909],
+ [-4.04125, 47.83109],
+ [-4.08765, 47.84221],
+ [-4.14781, 47.82525],
+ [-4.14314, 47.78847],
+ [-4.35162, 47.7415],
+ [-4.47962, 47.9776],
+ [-4.98565, 47.99896],
+ [-4.96938, 48.08972],
+ [-4.63576, 48.07798],
+ [-4.60147, 48.11469],
+ [-4.385, 48.10962],
+ [-4.38955, 48.14543],
+ [-4.30925, 48.15009],
+ [-4.31268, 48.17694],
+ [-4.46369, 48.18468],
+ [-4.49748, 48.1453],
+ [-4.5921, 48.14758],
+ [-4.57537, 48.22488],
+ [-4.67101, 48.2331],
+ [-4.65434, 48.31049],
+ [-4.84243, 48.3005],
+ [-5.19867, 48.44926],
+ [-5.10346, 48.51722],
+ [-4.81465, 48.39413],
+ [-4.83515, 48.54319],
+ [-4.63387, 48.66373],
+ [-3.96692, 48.77978],
+ [-3.94939, 48.74715],
+ [-3.6502, 48.75356],
+ [-3.65853, 48.82527],
+ [-3.53931, 48.85834],
+ [-3.54444, 48.90297],
+ [-3.40954, 48.91866],
+ [-3.40755, 48.87366],
+ [-3.02769, 48.9275],
+ [-2.67861, 48.58841],
+ [-2.28475, 48.71909],
+ [-2.17543, 48.65016],
+ [-2.0137, 48.73221],
+ [-1.80953, 48.73178],
+ [-1.80392, 48.66126],
+ [-1.61161, 48.68582],
+ [-1.71645, 49.24781],
+ [-1.8026, 49.32721],
+ [-1.85748, 49.3253],
+ [-1.9262, 49.65573],
+ [-2.03908, 49.67872],
+ [-2.00445, 49.76087],
+ [-1.61759, 49.68498],
+ [-1.28373, 49.76067],
+ [-1.1492, 49.63504],
+ [-1.17134, 49.55412],
+ [-1.27353, 49.55245],
+ [-1.1328, 49.3934],
+ [-0.93059, 49.40804],
+ [-0.74827, 49.35976],
+ [-0.38935, 49.34167],
+ [-0.24704, 49.29995],
+ [-0.12454, 49.29353],
+ [0.02731, 49.37619],
+ [0.01801, 49.54656],
+ [0.12211, 49.69292],
+ [0.51713, 49.86466],
+ [1.05727, 49.94904],
+ [1.43908, 50.11819],
+ [1.53177, 50.46437],
+ [1.52549, 50.85867],
+ [1.64118, 50.95919],
+ [2.4521, 51.12144],
+ [2.59286, 51.12124],
+ [2.60683, 51.05779],
+ [1.7976, 50.89906],
+ [1.66458, 50.82379],
+ [1.70786, 50.1282],
+ [1.05936, 49.85],
+ [0.61607, 49.79062],
+ [0.24731, 49.65027],
+ [0.1709, 49.53174],
+ [0.57065, 49.49622],
+ [0.41115, 49.3396],
+ [0.19504, 49.35736],
+ [0.01718, 49.25479],
+ [-0.24453, 49.26312],
+ [-0.38408, 49.30495],
+ [-0.74091, 49.32438],
+ [-0.9954, 49.37133],
+ [-1.05453, 49.25175],
+ [-1.27704, 49.29022],
+ [-1.25966, 49.43463],
+ [-1.39141, 49.53985],
+ [-1.27535, 49.62056],
+ [-1.29775, 49.65946],
+ [-1.4905, 49.57139],
+ [-1.77517, 49.63398],
+ [-1.74601, 49.48155],
+ [-1.51294, 49.24691],
+ [-1.48261, 48.72607],
+ [-1.30574, 48.72531],
+ [-1.28323, 48.59731],
+ [-2.76114, 48.43471],
+ [-3.00174, 48.67646],
+ [-3.21062, 48.72097],
+ [-3.95404, 48.56051],
+ [-4.15643, 48.60792],
+ [-4.44475, 48.55852],
+ [-4.63683, 48.48299],
+ [-4.6319, 48.44727],
+ [-4.25022, 48.43088],
+ [-4.06141, 48.21805],
+ [-4.1757, 48.05165],
+ [-4.31904, 48.0141],
+ [-4.26781, 47.89977],
+ [-3.88484, 47.98172],
+ [-3.76375, 47.86403],
+ [-2.32727, 47.52634],
+ [-2.36911, 47.3339],
+ [-1.74067, 47.33507],
+ [-1.77062, 47.20451],
+ [-2.03678, 47.21942],
+ [-2.0968, 47.15548],
+ [-1.88786, 47.01239],
+ [-2.08797, 46.83007],
+ [-2.01214, 46.83436],
+ [-1.84079, 46.69651],
+ [-1.87318, 46.65484],
+ [-1.68859, 46.50392],
+ [-1.62117, 46.51513],
+ [-1.42428, 46.41675],
+ [-1.01761, 46.35917],
+ [-1.07962, 46.10959]
+ ],
+ [
+ [-2.41232, 46.69242],
+ [-2.37197, 46.67611],
+ [-2.26749, 46.68033],
+ [-2.27007, 46.70705],
+ [-2.29827, 46.73286],
+ [-2.41655, 46.73711],
+ [-2.41232, 46.69242]
+ ],
+ [
+ [-3.06018, 47.40542],
+ [-2.82587, 47.29635],
+ [-2.78787, 47.33417],
+ [-3.02436, 47.44563],
+ [-3.06018, 47.40542]
+ ],
+ [
+ [-3.26482, 47.4295],
+ [-3.3343, 47.35928],
+ [-3.29614, 47.34133],
+ [-3.31489, 47.30057],
+ [-3.19941, 47.24492],
+ [-3.16567, 47.27751],
+ [-3.08686, 47.23612],
+ [-3.00637, 47.30855],
+ [-3.26482, 47.4295]
+ ],
+ [
+ [-1.93966, 48.86346],
+ [-1.93993, 48.91179],
+ [-1.701, 48.91105],
+ [-1.69726, 48.86173],
+ [-1.93966, 48.86346]
+ ]
+ ],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/WikiProject_France/G%C3%A9oLittoral",
+ "terms_text": "Ortho littorale 2000"
+ },
+ {
+ "id": "Geolittoral-Sentiers",
+ "name": "Géolittoral - Sentiers",
+ "type": "wms",
+ "template": "http://geolittoral.application.developpement-durable.gouv.fr/wms2/metropole?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=n_sentier_littoral_l&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-0.98385, 46.18807],
+ [-0.89497, 46.15628],
+ [-0.93455, 46.10163],
+ [-0.84388, 46.06949],
+ [-0.88241, 46.01637],
+ [-0.53787, 45.89558],
+ [-0.63498, 45.76444],
+ [-0.86666, 45.8479],
+ [-0.76264, 45.6245],
+ [-0.69695, 45.62659],
+ [-0.69397, 45.60184],
+ [-0.68755, 45.60174],
+ [-0.688, 45.50986],
+ [-0.63799, 45.50892],
+ [-0.63978, 45.44747],
+ [-0.61574, 45.44695],
+ [-0.61619, 45.38586],
+ [-0.58544, 45.38596],
+ [-0.58529, 45.32334],
+ [-0.55379, 45.32344],
+ [-0.55275, 45.19661],
+ [-0.49094, 45.19577],
+ [-0.49184, 45.13315],
+ [-0.45661, 45.13325],
+ [-0.45512, 45.07161],
+ [-0.41611, 45.07089],
+ [-0.41621, 45.02696],
+ [-0.2907, 44.98278],
+ [-0.22, 45.06771],
+ [-0.12252, 45.02563],
+ [-0.18925, 44.94591],
+ [-0.09266, 44.91019],
+ [-0.14521, 44.8392],
+ [-0.15491, 44.84238],
+ [-0.19387, 44.78678],
+ [-0.43541, 44.87317],
+ [-0.39048, 44.68413],
+ [-0.58798, 44.66014],
+ [-0.66628, 44.99129],
+ [-0.77838, 44.99263],
+ [-0.77764, 45.05389],
+ [-0.81584, 45.05321],
+ [-0.81838, 45.11962],
+ [-0.88393, 45.12051],
+ [-0.88171, 45.18081],
+ [-0.93438, 45.18185],
+ [-0.9328, 45.24484],
+ [-1.00163, 45.24439],
+ [-1.00247, 45.30827],
+ [-1.0524, 45.31013],
+ [-1.04828, 45.36911],
+ [-1.06412, 45.36911],
+ [-1.05039, 45.18252],
+ [-1.10761, 44.80787],
+ [-1.01514, 44.80113],
+ [-1.01946, 44.76914],
+ [-0.93365, 44.76149],
+ [-0.9404, 44.7018],
+ [-0.96035, 44.56434],
+ [-1.01408, 44.56765],
+ [-1.09916, 44.1456],
+ [-1.22689, 44.14022],
+ [-1.21853, 44.03249],
+ [-1.30762, 44.029],
+ [-1.39572, 43.74301],
+ [-1.31296, 43.72951],
+ [-1.37439, 43.53109],
+ [-1.34589, 43.50606],
+ [-1.59964, 43.35423],
+ [-1.76549, 43.25548],
+ [-1.79281, 43.28038],
+ [-1.80281, 43.40425],
+ [-1.72832, 43.45033],
+ [-1.58531, 43.489],
+ [-1.33584, 44.22832],
+ [-1.30744, 44.41847],
+ [-1.22511, 45.44416],
+ [-1.48685, 46.06042],
+ [-1.60176, 46.17019],
+ [-1.64442, 46.22375],
+ [-1.75643, 46.42214],
+ [-2.03483, 46.61895],
+ [-2.3466, 46.62382],
+ [-2.46561, 46.71196],
+ [-2.3233, 46.83812],
+ [-2.45286, 46.93856],
+ [-2.31733, 47.16214],
+ [-2.92848, 47.28413],
+ [-2.96742, 47.22147],
+ [-3.35602, 47.32474],
+ [-3.18803, 47.48441],
+ [-3.22791, 47.61132],
+ [-3.38912, 47.59473],
+ [-3.9162, 47.67831],
+ [-4.10163, 47.70921],
+ [-4.14314, 47.78847],
+ [-4.37619, 47.71067],
+ [-4.47962, 47.9776],
+ [-4.98565, 47.99896],
+ [-4.96938, 48.08972],
+ [-4.60147, 48.11469],
+ [-4.5921, 48.14758],
+ [-4.67101, 48.2331],
+ [-4.84243, 48.3005],
+ [-5.19867, 48.44926],
+ [-5.10346, 48.51722],
+ [-4.83515, 48.54319],
+ [-4.63117, 48.66129],
+ [-3.96692, 48.77978],
+ [-3.94939, 48.74715],
+ [-3.67013, 48.89508],
+ [-3.54444, 48.90297],
+ [-3.40954, 48.91866],
+ [-3.33344, 48.90458],
+ [-3.02769, 48.9275],
+ [-2.80207, 48.79793],
+ [-2.69353, 48.76722],
+ [-2.45786, 48.70896],
+ [-2.28475, 48.71909],
+ [-2.17543, 48.65016],
+ [-2.0137, 48.73221],
+ [-1.80953, 48.73178],
+ [-1.7243, 48.75828],
+ [-1.70557, 48.84512],
+ [-1.90304, 48.86288],
+ [-1.91027, 48.92348],
+ [-1.68714, 48.93249],
+ [-1.74277, 49.24473],
+ [-1.85748, 49.3253],
+ [-1.9262, 49.65573],
+ [-2.03908, 49.67872],
+ [-2.00445, 49.76087],
+ [-1.61759, 49.68498],
+ [-1.28373, 49.76067],
+ [-1.1492, 49.63504],
+ [-1.18545, 49.54836],
+ [-0.96463, 49.42509],
+ [-0.74429, 49.36802],
+ [-0.39014, 49.3622],
+ [-0.24976, 49.3158],
+ [-0.13342, 49.31293],
+ [0.02731, 49.37619],
+ [0.01801, 49.54656],
+ [0.12211, 49.69292],
+ [0.51713, 49.86466],
+ [1.05727, 49.94904],
+ [1.43908, 50.11819],
+ [1.53177, 50.46437],
+ [1.52549, 50.85867],
+ [1.64118, 50.95919],
+ [2.59712, 51.17355],
+ [2.66071, 51.0196],
+ [2.07124, 50.92022],
+ [2.05937, 50.94709],
+ [1.7976, 50.89906],
+ [1.68089, 50.8717],
+ [1.65569, 50.59729],
+ [1.75357, 50.5932],
+ [1.72295, 50.24702],
+ [1.82156, 50.24262],
+ [1.80149, 50.05116],
+ [1.54565, 50.06311],
+ [1.54155, 50.01267],
+ [1.42462, 50.01747],
+ [1.42667, 50.05276],
+ [1.03838, 49.84609],
+ [0.9827, 49.88916],
+ [0.57961, 49.82133],
+ [0.42063, 49.76297],
+ [0.4281, 49.75445],
+ [0.20831, 49.67269],
+ [0.14765, 49.57767],
+ [0.13461, 49.5809],
+ [0.11117, 49.54365],
+ [0.56598, 49.52045],
+ [0.5632, 49.49989],
+ [0.63001, 49.49666],
+ [0.61478, 49.37441],
+ [0.54825, 49.37851],
+ [0.54254, 49.33461],
+ [0.45741, 49.33938],
+ [0.45843, 49.34492],
+ [0.32597, 49.35456],
+ [0.32846, 49.38128],
+ [0.28011, 49.38433],
+ [0.27689, 49.36334],
+ [0.21095, 49.36658],
+ [0.20817, 49.35084],
+ [0.14326, 49.35532],
+ [0.13769, 49.3115],
+ [0.07204, 49.31532],
+ [0.0675, 49.28713],
+ [0.00274, 49.29076],
+ [0.00508, 49.25711],
+ [-0.02027, 49.26036],
+ [-0.03492, 49.1973],
+ [-0.19448, 49.21463],
+ [-0.38966, 49.12726],
+ [-0.45369, 49.18792],
+ [-0.3561, 49.23214],
+ [-0.82088, 49.28331],
+ [-0.99778, 49.30149],
+ [-1.16728, 49.24545],
+ [-1.19515, 49.28183],
+ [-1.26768, 49.24099],
+ [-1.34114, 49.2975],
+ [-1.24768, 49.35025],
+ [-1.44583, 49.60689],
+ [-1.81105, 49.61757],
+ [-1.77479, 49.44333],
+ [-1.72775, 49.46509],
+ [-1.5339, 49.29098],
+ [-1.47909, 49.29233],
+ [-1.47608, 49.24027],
+ [-1.43557, 49.20326],
+ [-1.47225, 49.1822],
+ [-1.45091, 48.75725],
+ [-1.31155, 48.76408],
+ [-1.30533, 48.70216],
+ [-1.2584, 48.70421],
+ [-1.25229, 48.64353],
+ [-1.23519, 48.64435],
+ [-1.2269, 48.56824],
+ [-1.85218, 48.53086],
+ [-1.84908, 48.4975],
+ [-1.92326, 48.49187],
+ [-1.92813, 48.44096],
+ [-2.04272, 48.43601],
+ [-2.03889, 48.48191],
+ [-2.2895, 48.46102],
+ [-2.3021, 48.52433],
+ [-2.40863, 48.51618],
+ [-2.42035, 48.56954],
+ [-2.43084, 48.57852],
+ [-2.49083, 48.54924],
+ [-2.47353, 48.53326],
+ [-2.54978, 48.49647],
+ [-2.54005, 48.48747],
+ [-2.70681, 48.40746],
+ [-3.02979, 48.69115],
+ [-4.01034, 48.53179],
+ [-4.05342, 48.64412],
+ [-4.38281, 48.57349],
+ [-4.35482, 48.5118],
+ [-4.38853, 48.50473],
+ [-4.13495, 48.44868],
+ [-4.16411, 48.38936],
+ [-4.01832, 48.35685],
+ [-4.04733, 48.29918],
+ [-3.98814, 48.2867],
+ [-4.0214, 48.21606],
+ [-4.03634, 48.21958],
+ [-4.06623, 48.16028],
+ [-4.16675, 48.18247],
+ [-4.18331, 48.14934],
+ [-4.17232, 48.1065],
+ [-4.20111, 48.10285],
+ [-4.18643, 48.04389],
+ [-4.18806, 48.04061],
+ [-4.35686, 48.02305],
+ [-4.25657, 47.93997],
+ [-4.23363, 47.93497],
+ [-4.21371, 47.97598],
+ [-4.21854, 47.97726],
+ [-4.1806, 48.05569],
+ [-3.6172, 47.93124],
+ [-2.17991, 47.58642],
+ [-2.25449, 47.44501],
+ [-2.30182, 47.4568],
+ [-2.32043, 47.42092],
+ [-2.30372, 47.41755],
+ [-2.34753, 47.33499],
+ [-2.36219, 47.33837],
+ [-2.38079, 47.3039],
+ [-2.35852, 47.29854],
+ [-2.29962, 47.29784],
+ [-2.29742, 47.3618],
+ [-2.13199, 47.35852],
+ [-2.13478, 47.39107],
+ [-2.01565, 47.39623],
+ [-2.01404, 47.38095],
+ [-1.92862, 47.38254],
+ [-1.92891, 47.37956],
+ [-1.8322, 47.38184],
+ [-1.82986, 47.34165],
+ [-1.73608, 47.34304],
+ [-1.73418, 47.305],
+ [-1.64084, 47.30639],
+ [-1.64011, 47.29427],
+ [-1.58355, 47.29566],
+ [-1.58531, 47.33708],
+ [-1.4612, 47.33966],
+ [-1.46003, 47.32924],
+ [-1.37211, 47.33221],
+ [-1.36054, 47.11239],
+ [-1.48567, 47.11149],
+ [-1.48582, 47.11877],
+ [-1.66897, 47.11688],
+ [-1.66971, 47.12864],
+ [-1.72553, 47.12764],
+ [-1.72612, 47.13761],
+ [-1.93975, 47.13263],
+ [-1.94019, 47.1422],
+ [-1.9925, 47.14309],
+ [-1.81066, 47.00588],
+ [-1.94723, 46.92078],
+ [-1.92891, 46.90677],
+ [-1.99529, 46.86461],
+ [-1.73652, 46.66839],
+ [-1.77535, 46.64386],
+ [-1.82678, 46.64174],
+ [-1.82473, 46.62071],
+ [-1.18192, 46.39987],
+ [-0.91261, 46.3048],
+ [-0.95481, 46.2489],
+ [-0.94235, 46.24424],
+ [-0.98385, 46.18807]
+ ],
+ [
+ [3.14769, 42.40072],
+ [3.14949, 42.40015],
+ [3.15305, 42.40052],
+ [3.15804, 42.40243],
+ [3.1877, 42.42805],
+ [3.14227, 42.5248],
+ [3.06837, 42.54635],
+ [3.04884, 42.6942],
+ [3.0799, 43.03073],
+ [3.22641, 43.18727],
+ [3.40916, 43.26032],
+ [3.52104, 43.25877],
+ [3.66429, 43.37628],
+ [3.73841, 43.39054],
+ [4.00979, 43.53607],
+ [4.17692, 43.45636],
+ [4.54355, 43.43349],
+ [4.54943, 43.35401],
+ [4.83506, 43.30891],
+ [4.97506, 43.38309],
+ [5.03219, 43.31928],
+ [5.25919, 43.31928],
+ [5.31082, 43.20504],
+ [5.35682, 43.18645],
+ [5.36882, 43.16785],
+ [5.40232, 43.16211],
+ [5.41382, 43.17123],
+ [5.40919, 43.19921],
+ [5.54232, 43.18827],
+ [5.60582, 43.14797],
+ [5.6197, 43.1529],
+ [5.63832, 43.17159],
+ [5.67157, 43.1674],
+ [5.69095, 43.13411],
+ [5.77607, 43.10637],
+ [5.7762, 43.09432],
+ [5.75407, 43.08328],
+ [5.75707, 43.0725],
+ [5.77032, 43.06465],
+ [5.85933, 43.03469],
+ [5.8877, 43.06273],
+ [5.9567, 43.06109],
+ [5.96383, 43.09277],
+ [6.00033, 43.09186],
+ [6.01745, 43.06849],
+ [6.10233, 43.07415],
+ [6.10483, 43.0526],
+ [6.0666, 43.04318],
+ [6.06722, 43.03785],
+ [6.1427, 43.00923],
+ [6.15676, 42.98715],
+ [6.19635, 42.97331],
+ [6.22221, 42.9801],
+ [6.26891, 42.99651],
+ [6.25515, 43.03627],
+ [6.2019, 43.02713],
+ [6.18378, 43.09188],
+ [6.30153, 43.09909],
+ [6.32478, 43.07974],
+ [6.37778, 43.08011],
+ [6.38866, 43.13395],
+ [6.51341, 43.14608],
+ [6.57704, 43.17881],
+ [6.62291, 43.14563],
+ [6.69779, 43.19969],
+ [6.68016, 43.23357],
+ [6.72116, 43.26007],
+ [6.72241, 43.27472],
+ [6.67054, 43.29192],
+ [6.68741, 43.33113],
+ [6.72416, 43.34267],
+ [6.75291, 43.409],
+ [6.79104, 43.39674],
+ [6.90629, 43.41672],
+ [6.96767, 43.50273],
+ [6.96617, 43.52812],
+ [7.00617, 43.53845],
+ [7.03554, 43.4982],
+ [7.06892, 43.5001],
+ [7.09079, 43.51642],
+ [7.06267, 43.53672],
+ [7.08254, 43.5456],
+ [7.1238, 43.53074],
+ [7.1558, 43.5437],
+ [7.1433, 43.62284],
+ [7.16867, 43.64636],
+ [7.2138, 43.63469],
+ [7.25417, 43.68497],
+ [7.3403, 43.66744],
+ [7.36442, 43.6894],
+ [7.35305, 43.7082],
+ [7.4163, 43.71091],
+ [7.45405, 43.74506],
+ [7.4943, 43.74524],
+ [7.57943, 43.78424],
+ [7.60552, 43.78603],
+ [7.60368, 43.78898],
+ [7.59588, 43.79528],
+ [7.59628, 43.79549],
+ [7.53853, 43.84195],
+ [7.45996, 43.79988],
+ [7.44781, 43.80934],
+ [7.32353, 43.74806],
+ [7.30822, 43.76357],
+ [6.64878, 43.3885],
+ [6.66865, 43.37178],
+ [6.51003, 43.27803],
+ [6.56584, 43.22509],
+ [6.12681, 43.10527],
+ [5.48229, 43.24939],
+ [5.47267, 43.2309],
+ [5.41567, 43.24657],
+ [5.45267, 43.3451],
+ [4.80191, 43.48158],
+ [4.76416, 43.39244],
+ [4.65716, 43.42368],
+ [4.67228, 43.45608],
+ [4.43203, 43.52419],
+ [4.41453, 43.49255],
+ [4.16102, 43.56433],
+ [4.14452, 43.57067],
+ [4.14165, 43.57393],
+ [4.18677, 43.59946],
+ [4.10565, 43.68196],
+ [3.79689, 43.52165],
+ [3.77851, 43.51313],
+ [3.76464, 43.50597],
+ [3.76201, 43.50334],
+ [3.74226, 43.49328],
+ [3.71601, 43.52075],
+ [3.26213, 43.28143],
+ [3.24638, 43.29735],
+ [3.18388, 43.28052],
+ [3.10675, 43.24083],
+ [3.15475, 43.19419],
+ [2.90625, 43.19383],
+ [2.90675, 42.76189],
+ [2.94613, 42.76208],
+ [2.9465, 42.61516],
+ [2.99238, 42.61497],
+ [2.99238, 42.5125],
+ [3.041, 42.51259],
+ [3.04121, 42.50093],
+ [3.09086, 42.50082],
+ [3.14769, 42.40072]
+ ],
+ [
+ [6.35945, 43.02321],
+ [6.42477, 43.02444],
+ [6.45244, 43.03504],
+ [6.46985, 43.05461],
+ [6.51121, 43.05765],
+ [6.52156, 43.04318],
+ [6.48364, 43.02444],
+ [6.47179, 43.00725],
+ [6.41178, 42.9918],
+ [6.39852, 42.98048],
+ [6.35178, 42.99905],
+ [6.35945, 43.02321]
+ ]
+ ],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/WikiProject_France/G%C3%A9oLittoral",
+ "terms_text": "Ortho littorale 2000"
+ },
+ {
+ "id": "GeolittoralV2-Orthophotos",
+ "name": "Géolittoral V2 - Orthophotos 2011-2014",
+ "type": "wms",
+ "template": "http://geolittoral.application.developpement-durable.gouv.fr/wms2/metropole?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortholittorale_v2_rvb&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2014-01-01T00:00:00.000Z",
+ "startDate": "2011-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [-0.98385, 46.18807],
+ [-0.89497, 46.15628],
+ [-0.93455, 46.10163],
+ [-0.84388, 46.06949],
+ [-0.88241, 46.01637],
+ [-0.53787, 45.89558],
+ [-0.63498, 45.76444],
+ [-0.86666, 45.8479],
+ [-0.76264, 45.6245],
+ [-0.69695, 45.62659],
+ [-0.69397, 45.60184],
+ [-0.68755, 45.60174],
+ [-0.688, 45.50986],
+ [-0.63799, 45.50892],
+ [-0.63978, 45.44747],
+ [-0.61574, 45.44695],
+ [-0.61619, 45.38586],
+ [-0.58544, 45.38596],
+ [-0.58529, 45.32334],
+ [-0.55379, 45.32344],
+ [-0.55275, 45.19661],
+ [-0.49094, 45.19577],
+ [-0.49184, 45.13315],
+ [-0.45661, 45.13325],
+ [-0.45512, 45.07161],
+ [-0.41611, 45.07089],
+ [-0.41621, 45.02696],
+ [-0.2907, 44.98278],
+ [-0.22, 45.06771],
+ [-0.12252, 45.02563],
+ [-0.18925, 44.94591],
+ [-0.09266, 44.91019],
+ [-0.14521, 44.8392],
+ [-0.15491, 44.84238],
+ [-0.19387, 44.78678],
+ [-0.43541, 44.87317],
+ [-0.39048, 44.68413],
+ [-0.58798, 44.66014],
+ [-0.66628, 44.99129],
+ [-0.77838, 44.99263],
+ [-0.77764, 45.05389],
+ [-0.81584, 45.05321],
+ [-0.81838, 45.11962],
+ [-0.88393, 45.12051],
+ [-0.88171, 45.18081],
+ [-0.93438, 45.18185],
+ [-0.9328, 45.24484],
+ [-1.00163, 45.24439],
+ [-1.00247, 45.30827],
+ [-1.0524, 45.31013],
+ [-1.04828, 45.36911],
+ [-1.06412, 45.36911],
+ [-1.05039, 45.18252],
+ [-1.10761, 44.80787],
+ [-1.01514, 44.80113],
+ [-1.01946, 44.76914],
+ [-0.93365, 44.76149],
+ [-0.9404, 44.7018],
+ [-0.96035, 44.56434],
+ [-1.01408, 44.56765],
+ [-1.09916, 44.1456],
+ [-1.22689, 44.14022],
+ [-1.21853, 44.03249],
+ [-1.30762, 44.029],
+ [-1.39572, 43.74301],
+ [-1.31296, 43.72951],
+ [-1.37439, 43.53109],
+ [-1.34589, 43.50606],
+ [-1.59964, 43.35423],
+ [-1.76549, 43.25548],
+ [-1.79281, 43.28038],
+ [-1.80281, 43.40425],
+ [-1.72832, 43.45033],
+ [-1.58531, 43.489],
+ [-1.33584, 44.22832],
+ [-1.30744, 44.41847],
+ [-1.22511, 45.44416],
+ [-1.48685, 46.06042],
+ [-1.60176, 46.17019],
+ [-1.64442, 46.22375],
+ [-1.75643, 46.42214],
+ [-2.03483, 46.61895],
+ [-2.3466, 46.62382],
+ [-2.46561, 46.71196],
+ [-2.3233, 46.83812],
+ [-2.45286, 46.93856],
+ [-2.31733, 47.16214],
+ [-2.92848, 47.28413],
+ [-2.96742, 47.22147],
+ [-3.35602, 47.32474],
+ [-3.18803, 47.48441],
+ [-3.22791, 47.61132],
+ [-3.38912, 47.59473],
+ [-3.9162, 47.67831],
+ [-4.10163, 47.70921],
+ [-4.14314, 47.78847],
+ [-4.37619, 47.71067],
+ [-4.47962, 47.9776],
+ [-4.98565, 47.99896],
+ [-4.96938, 48.08972],
+ [-4.60147, 48.11469],
+ [-4.5921, 48.14758],
+ [-4.67101, 48.2331],
+ [-4.84243, 48.3005],
+ [-5.19867, 48.44926],
+ [-5.10346, 48.51722],
+ [-4.83515, 48.54319],
+ [-4.63117, 48.66129],
+ [-3.96692, 48.77978],
+ [-3.94939, 48.74715],
+ [-3.67013, 48.89508],
+ [-3.54444, 48.90297],
+ [-3.40954, 48.91866],
+ [-3.33344, 48.90458],
+ [-3.02769, 48.9275],
+ [-2.80207, 48.79793],
+ [-2.69353, 48.76722],
+ [-2.45786, 48.70896],
+ [-2.28475, 48.71909],
+ [-2.17543, 48.65016],
+ [-2.0137, 48.73221],
+ [-1.80953, 48.73178],
+ [-1.7243, 48.75828],
+ [-1.70557, 48.84512],
+ [-1.90304, 48.86288],
+ [-1.91027, 48.92348],
+ [-1.68714, 48.93249],
+ [-1.74277, 49.24473],
+ [-1.85748, 49.3253],
+ [-1.9262, 49.65573],
+ [-2.03908, 49.67872],
+ [-2.00445, 49.76087],
+ [-1.61759, 49.68498],
+ [-1.28373, 49.76067],
+ [-1.1492, 49.63504],
+ [-1.18545, 49.54836],
+ [-0.96463, 49.42509],
+ [-0.74429, 49.36802],
+ [-0.39014, 49.3622],
+ [-0.24976, 49.3158],
+ [-0.13342, 49.31293],
+ [0.02731, 49.37619],
+ [0.01801, 49.54656],
+ [0.12211, 49.69292],
+ [0.51713, 49.86466],
+ [1.05727, 49.94904],
+ [1.43908, 50.11819],
+ [1.53177, 50.46437],
+ [1.52549, 50.85867],
+ [1.64118, 50.95919],
+ [2.59712, 51.17355],
+ [2.66071, 51.0196],
+ [2.07124, 50.92022],
+ [2.05937, 50.94709],
+ [1.7976, 50.89906],
+ [1.68089, 50.8717],
+ [1.65569, 50.59729],
+ [1.75357, 50.5932],
+ [1.72295, 50.24702],
+ [1.82156, 50.24262],
+ [1.80149, 50.05116],
+ [1.54565, 50.06311],
+ [1.54155, 50.01267],
+ [1.42462, 50.01747],
+ [1.42667, 50.05276],
+ [1.03838, 49.84609],
+ [0.9827, 49.88916],
+ [0.57961, 49.82133],
+ [0.42063, 49.76297],
+ [0.4281, 49.75445],
+ [0.20831, 49.67269],
+ [0.14765, 49.57767],
+ [0.13461, 49.5809],
+ [0.11117, 49.54365],
+ [0.56598, 49.52045],
+ [0.5632, 49.49989],
+ [0.63001, 49.49666],
+ [0.61478, 49.37441],
+ [0.54825, 49.37851],
+ [0.54254, 49.33461],
+ [0.45741, 49.33938],
+ [0.45843, 49.34492],
+ [0.32597, 49.35456],
+ [0.32846, 49.38128],
+ [0.28011, 49.38433],
+ [0.27689, 49.36334],
+ [0.21095, 49.36658],
+ [0.20817, 49.35084],
+ [0.14326, 49.35532],
+ [0.13769, 49.3115],
+ [0.07204, 49.31532],
+ [0.0675, 49.28713],
+ [0.00274, 49.29076],
+ [0.00508, 49.25711],
+ [-0.02027, 49.26036],
+ [-0.03492, 49.1973],
+ [-0.19448, 49.21463],
+ [-0.38966, 49.12726],
+ [-0.45369, 49.18792],
+ [-0.3561, 49.23214],
+ [-0.82088, 49.28331],
+ [-0.99778, 49.30149],
+ [-1.16728, 49.24545],
+ [-1.19515, 49.28183],
+ [-1.26768, 49.24099],
+ [-1.34114, 49.2975],
+ [-1.24768, 49.35025],
+ [-1.44583, 49.60689],
+ [-1.81105, 49.61757],
+ [-1.77479, 49.44333],
+ [-1.72775, 49.46509],
+ [-1.5339, 49.29098],
+ [-1.47909, 49.29233],
+ [-1.47608, 49.24027],
+ [-1.43557, 49.20326],
+ [-1.47225, 49.1822],
+ [-1.45091, 48.75725],
+ [-1.31155, 48.76408],
+ [-1.30533, 48.70216],
+ [-1.2584, 48.70421],
+ [-1.25229, 48.64353],
+ [-1.23519, 48.64435],
+ [-1.2269, 48.56824],
+ [-1.85218, 48.53086],
+ [-1.84908, 48.4975],
+ [-1.92326, 48.49187],
+ [-1.92813, 48.44096],
+ [-2.04272, 48.43601],
+ [-2.03889, 48.48191],
+ [-2.2895, 48.46102],
+ [-2.3021, 48.52433],
+ [-2.40863, 48.51618],
+ [-2.42035, 48.56954],
+ [-2.43084, 48.57852],
+ [-2.49083, 48.54924],
+ [-2.47353, 48.53326],
+ [-2.54978, 48.49647],
+ [-2.54005, 48.48747],
+ [-2.70681, 48.40746],
+ [-3.02979, 48.69115],
+ [-4.01034, 48.53179],
+ [-4.05342, 48.64412],
+ [-4.38281, 48.57349],
+ [-4.35482, 48.5118],
+ [-4.38853, 48.50473],
+ [-4.13495, 48.44868],
+ [-4.16411, 48.38936],
+ [-4.01832, 48.35685],
+ [-4.04733, 48.29918],
+ [-3.98814, 48.2867],
+ [-4.0214, 48.21606],
+ [-4.03634, 48.21958],
+ [-4.06623, 48.16028],
+ [-4.16675, 48.18247],
+ [-4.18331, 48.14934],
+ [-4.17232, 48.1065],
+ [-4.20111, 48.10285],
+ [-4.18643, 48.04389],
+ [-4.18806, 48.04061],
+ [-4.35686, 48.02305],
+ [-4.25657, 47.93997],
+ [-4.23363, 47.93497],
+ [-4.21371, 47.97598],
+ [-4.21854, 47.97726],
+ [-4.1806, 48.05569],
+ [-3.6172, 47.93124],
+ [-2.17991, 47.58642],
+ [-2.25449, 47.44501],
+ [-2.30182, 47.4568],
+ [-2.32043, 47.42092],
+ [-2.30372, 47.41755],
+ [-2.34753, 47.33499],
+ [-2.36219, 47.33837],
+ [-2.38079, 47.3039],
+ [-2.35852, 47.29854],
+ [-2.29962, 47.29784],
+ [-2.29742, 47.3618],
+ [-2.13199, 47.35852],
+ [-2.13478, 47.39107],
+ [-2.01565, 47.39623],
+ [-2.01404, 47.38095],
+ [-1.92862, 47.38254],
+ [-1.92891, 47.37956],
+ [-1.8322, 47.38184],
+ [-1.82986, 47.34165],
+ [-1.73608, 47.34304],
+ [-1.73418, 47.305],
+ [-1.64084, 47.30639],
+ [-1.64011, 47.29427],
+ [-1.58355, 47.29566],
+ [-1.58531, 47.33708],
+ [-1.4612, 47.33966],
+ [-1.46003, 47.32924],
+ [-1.37211, 47.33221],
+ [-1.36054, 47.11239],
+ [-1.48567, 47.11149],
+ [-1.48582, 47.11877],
+ [-1.66897, 47.11688],
+ [-1.66971, 47.12864],
+ [-1.72553, 47.12764],
+ [-1.72612, 47.13761],
+ [-1.93975, 47.13263],
+ [-1.94019, 47.1422],
+ [-1.9925, 47.14309],
+ [-1.81066, 47.00588],
+ [-1.94723, 46.92078],
+ [-1.92891, 46.90677],
+ [-1.99529, 46.86461],
+ [-1.73652, 46.66839],
+ [-1.77535, 46.64386],
+ [-1.82678, 46.64174],
+ [-1.82473, 46.62071],
+ [-1.18192, 46.39987],
+ [-0.91261, 46.3048],
+ [-0.95481, 46.2489],
+ [-0.94235, 46.24424],
+ [-0.98385, 46.18807]
+ ],
+ [
+ [3.14769, 42.40072],
+ [3.14949, 42.40015],
+ [3.15305, 42.40052],
+ [3.15804, 42.40243],
+ [3.1877, 42.42805],
+ [3.14227, 42.5248],
+ [3.06837, 42.54635],
+ [3.04884, 42.6942],
+ [3.0799, 43.03073],
+ [3.22641, 43.18727],
+ [3.40916, 43.26032],
+ [3.52104, 43.25877],
+ [3.66429, 43.37628],
+ [3.73841, 43.39054],
+ [4.00979, 43.53607],
+ [4.17692, 43.45636],
+ [4.54355, 43.43349],
+ [4.54943, 43.35401],
+ [4.83506, 43.30891],
+ [4.97506, 43.38309],
+ [5.03219, 43.31928],
+ [5.25919, 43.31928],
+ [5.31082, 43.20504],
+ [5.35682, 43.18645],
+ [5.36882, 43.16785],
+ [5.40232, 43.16211],
+ [5.41382, 43.17123],
+ [5.40919, 43.19921],
+ [5.54232, 43.18827],
+ [5.60582, 43.14797],
+ [5.6197, 43.1529],
+ [5.63832, 43.17159],
+ [5.67157, 43.1674],
+ [5.69095, 43.13411],
+ [5.77607, 43.10637],
+ [5.7762, 43.09432],
+ [5.75407, 43.08328],
+ [5.75707, 43.0725],
+ [5.77032, 43.06465],
+ [5.85933, 43.03469],
+ [5.8877, 43.06273],
+ [5.9567, 43.06109],
+ [5.96383, 43.09277],
+ [6.00033, 43.09186],
+ [6.01745, 43.06849],
+ [6.10233, 43.07415],
+ [6.10483, 43.0526],
+ [6.0666, 43.04318],
+ [6.06722, 43.03785],
+ [6.1427, 43.00923],
+ [6.15676, 42.98715],
+ [6.19635, 42.97331],
+ [6.22221, 42.9801],
+ [6.26891, 42.99651],
+ [6.25515, 43.03627],
+ [6.2019, 43.02713],
+ [6.18378, 43.09188],
+ [6.30153, 43.09909],
+ [6.32478, 43.07974],
+ [6.37778, 43.08011],
+ [6.38866, 43.13395],
+ [6.51341, 43.14608],
+ [6.57704, 43.17881],
+ [6.62291, 43.14563],
+ [6.69779, 43.19969],
+ [6.68016, 43.23357],
+ [6.72116, 43.26007],
+ [6.72241, 43.27472],
+ [6.67054, 43.29192],
+ [6.68741, 43.33113],
+ [6.72416, 43.34267],
+ [6.75291, 43.409],
+ [6.79104, 43.39674],
+ [6.90629, 43.41672],
+ [6.96767, 43.50273],
+ [6.96617, 43.52812],
+ [7.00617, 43.53845],
+ [7.03554, 43.4982],
+ [7.06892, 43.5001],
+ [7.09079, 43.51642],
+ [7.06267, 43.53672],
+ [7.08254, 43.5456],
+ [7.1238, 43.53074],
+ [7.1558, 43.5437],
+ [7.1433, 43.62284],
+ [7.16867, 43.64636],
+ [7.2138, 43.63469],
+ [7.25417, 43.68497],
+ [7.3403, 43.66744],
+ [7.36442, 43.6894],
+ [7.35305, 43.7082],
+ [7.4163, 43.71091],
+ [7.45405, 43.74506],
+ [7.4943, 43.74524],
+ [7.57943, 43.78424],
+ [7.60552, 43.78603],
+ [7.60368, 43.78898],
+ [7.59588, 43.79528],
+ [7.59628, 43.79549],
+ [7.53853, 43.84195],
+ [7.45996, 43.79988],
+ [7.44781, 43.80934],
+ [7.32353, 43.74806],
+ [7.30822, 43.76357],
+ [6.64878, 43.3885],
+ [6.66865, 43.37178],
+ [6.51003, 43.27803],
+ [6.56584, 43.22509],
+ [6.12681, 43.10527],
+ [5.48229, 43.24939],
+ [5.47267, 43.2309],
+ [5.41567, 43.24657],
+ [5.45267, 43.3451],
+ [4.80191, 43.48158],
+ [4.76416, 43.39244],
+ [4.65716, 43.42368],
+ [4.67228, 43.45608],
+ [4.43203, 43.52419],
+ [4.41453, 43.49255],
+ [4.16102, 43.56433],
+ [4.14452, 43.57067],
+ [4.14165, 43.57393],
+ [4.18677, 43.59946],
+ [4.10565, 43.68196],
+ [3.79689, 43.52165],
+ [3.77851, 43.51313],
+ [3.76464, 43.50597],
+ [3.76201, 43.50334],
+ [3.74226, 43.49328],
+ [3.71601, 43.52075],
+ [3.26213, 43.28143],
+ [3.24638, 43.29735],
+ [3.18388, 43.28052],
+ [3.10675, 43.24083],
+ [3.15475, 43.19419],
+ [2.90625, 43.19383],
+ [2.90675, 42.76189],
+ [2.94613, 42.76208],
+ [2.9465, 42.61516],
+ [2.99238, 42.61497],
+ [2.99238, 42.5125],
+ [3.041, 42.51259],
+ [3.04121, 42.50093],
+ [3.09086, 42.50082],
+ [3.14769, 42.40072]
+ ],
+ [
+ [6.35945, 43.02321],
+ [6.42477, 43.02444],
+ [6.45244, 43.03504],
+ [6.46985, 43.05461],
+ [6.51121, 43.05765],
+ [6.52156, 43.04318],
+ [6.48364, 43.02444],
+ [6.47179, 43.00725],
+ [6.41178, 42.9918],
+ [6.39852, 42.98048],
+ [6.35178, 42.99905],
+ [6.35945, 43.02321]
+ ]
+ ],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/WikiProject_France/G%C3%A9oLittoral",
+ "terms_text": "Ortho Littorale V2 - MEDDE"
+ },
+ {
+ "id": "lu.geoportail.opendata.ortho_10cm_proto_lidar",
+ "name": "geoportail.lu LIDAR prototype Nordstad 2017",
+ "type": "tms",
+ "template": "http://{switch:wmts1,wmts2}.geoportail.lu/opendata/wmts/ortho_10cm_proto_lidar/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg",
+ "endDate": "2017-04-09T00:00:00.000Z",
+ "startDate": "2017-04-09T00:00:00.000Z",
+ "scaleExtent": [0, 21],
+ "polygon": [
+ [
+ [6.05001, 49.82175],
+ [6.04979, 49.91166],
+ [6.18901, 49.91172],
+ [6.18897, 49.82181],
+ [6.05001, 49.82175]
+ ]
+ ],
+ "terms_url": "https://act.public.lu/fr/cartographie/lidar",
+ "terms_text": "Administration du Cadastre et de la Topographie",
+ "icon": "https://www.geoportail.lu/static/img/lion.png"
+ },
+ {
+ "id": "Geoportal-PL-aerial_image",
+ "name": "Geoportal.gov.pl (Orthophotomap)",
+ "type": "tms",
+ "template": "https://wms.misek.pl/geoportal.orto/tms/{zoom}/{x}/{y}",
+ "scaleExtent": [6, 24],
+ "polygon": [
+ [
+ [15.9751, 54.37092],
+ [16.31116, 54.55618],
+ [17.13919, 54.78457],
+ [18.34485, 54.90227],
+ [19.66137, 54.47372],
+ [20.28152, 54.42135],
+ [21.46639, 54.34064],
+ [22.77599, 54.37698],
+ [22.8626, 54.42336],
+ [23.29567, 54.26786],
+ [23.53472, 54.09553],
+ [23.52086, 53.97752],
+ [23.71834, 53.46296],
+ [23.92968, 53.18567],
+ [23.92968, 52.68873],
+ [23.7322, 52.60675],
+ [23.5659, 52.58781],
+ [23.20905, 52.33026],
+ [23.19519, 52.23701],
+ [23.50354, 52.18606],
+ [23.69062, 52.00301],
+ [23.59708, 51.7399],
+ [23.66291, 51.38886],
+ [23.9366, 50.98278],
+ [24.16873, 50.86048],
+ [24.01975, 50.80358],
+ [24.10983, 50.66105],
+ [24.05786, 50.41884],
+ [23.61787, 50.30834],
+ [22.68244, 49.51635],
+ [22.73788, 49.20949],
+ [22.90417, 49.07804],
+ [22.8626, 48.99401],
+ [22.60969, 49.03718],
+ [22.07615, 49.20044],
+ [21.84749, 49.37219],
+ [21.37631, 49.44883],
+ [21.10262, 49.37219],
+ [20.91207, 49.3022],
+ [20.6453, 49.39023],
+ [20.18451, 49.33156],
+ [20.11869, 49.20044],
+ [19.942, 49.13021],
+ [19.76531, 49.21176],
+ [19.74798, 49.39925],
+ [19.60247, 49.41503],
+ [19.50893, 49.58154],
+ [19.42925, 49.59052],
+ [19.23177, 49.41503],
+ [18.99618, 49.38798],
+ [18.93382, 49.4916],
+ [18.83681, 49.49386],
+ [18.80216, 49.66234],
+ [18.6428, 49.70941],
+ [18.52154, 49.89947],
+ [18.08154, 50.01092],
+ [17.88753, 49.98865],
+ [17.73855, 50.06877],
+ [17.6069, 50.17096],
+ [17.74548, 50.21532],
+ [17.71084, 50.3017],
+ [17.41635, 50.26407],
+ [16.94864, 50.44533],
+ [16.89321, 50.40339],
+ [17.00061, 50.31055],
+ [17.01793, 50.22419],
+ [16.81352, 50.18649],
+ [16.64029, 50.09767],
+ [16.43242, 50.28621],
+ [16.19683, 50.42767],
+ [16.42203, 50.58852],
+ [16.33888, 50.66324],
+ [16.22802, 50.63688],
+ [16.05479, 50.61271],
+ [15.57322, 50.76415],
+ [15.26834, 50.89764],
+ [15.24409, 50.9806],
+ [15.02929, 51.0133],
+ [15.00157, 50.85829],
+ [14.81102, 50.87359],
+ [14.95653, 51.07212],
+ [15.01889, 51.29146],
+ [14.93921, 51.46015],
+ [14.72094, 51.55718],
+ [14.75212, 51.62606],
+ [14.59968, 51.84276],
+ [14.70362, 52.07334],
+ [14.55811, 52.24974],
+ [14.51654, 52.42544],
+ [14.60315, 52.58781],
+ [14.11465, 52.82083],
+ [14.15276, 52.9734],
+ [14.35024, 53.07342],
+ [14.42299, 53.26656],
+ [14.1978, 53.87348],
+ [14.22205, 53.99585],
+ [15.9751, 54.37092]
+ ]
+ ],
+ "terms_text": "Copyright © Główny Urząd Geodezji i Kartografii.",
+ "best": true,
+ "icon": "https://i.imgur.com/aFlvMpM.png"
+ },
+ {
+ "id": "girau_do_pnciano",
+ "name": "Girau do Ponciano",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Girau%20do%20Ponciano&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-36.78013, -9.92939],
+ [-36.78087, -9.83892],
+ [-36.87233, -9.83917],
+ [-36.87173, -9.90542],
+ [-36.87037, -9.92989],
+ [-36.86156, -9.92994],
+ [-36.85566, -9.92981],
+ [-36.85146, -9.92973],
+ [-36.84575, -9.92977],
+ [-36.83213, -9.92967],
+ [-36.81456, -9.9296],
+ [-36.78013, -9.92939]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "GRAFCAN-Canary_Islands",
+ "name": "GRAFCAN - Canary Islands",
+ "type": "wms",
+ "template": "https://idecan1.grafcan.es/ServicioWMS/OrtoUrb?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=OU&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:4326",
+ "polygon": [
+ [
+ [-17.92917, 28.89106],
+ [-18.03334, 28.79981],
+ [-18.03743, 28.73178],
+ [-17.87811, 28.43224],
+ [-17.83113, 28.41787],
+ [-17.72696, 28.56328],
+ [-17.73105, 28.67982],
+ [-17.68407, 28.73715],
+ [-17.75352, 28.86781],
+ [-17.85768, 28.86065],
+ [-17.92917, 28.89106]
+ ],
+ [
+ [-18.07818, 27.77211],
+ [-18.13707, 27.78751],
+ [-18.17054, 27.76441],
+ [-18.1779, 27.70695],
+ [-18.15782, 27.68799],
+ [-18.0581, 27.6791],
+ [-18.00656, 27.62574],
+ [-17.96105, 27.62218],
+ [-17.93896, 27.70814],
+ [-17.90751, 27.7194],
+ [-17.86199, 27.80468],
+ [-17.8727, 27.84079],
+ [-17.92558, 27.86801],
+ [-18.00522, 27.83605],
+ [-18.01392, 27.8035],
+ [-18.07818, 27.77211]
+ ],
+ [
+ [-17.26878, 28.23996],
+ [-17.33403, 28.21933],
+ [-17.36331, 28.1537],
+ [-17.36666, 28.08803],
+ [-17.33069, 28.04742],
+ [-17.27296, 28.00681],
+ [-17.20017, 28.00533],
+ [-17.14412, 28.02896],
+ [-17.07803, 28.0836],
+ [-17.08723, 28.1537],
+ [-17.1826, 28.2149],
+ [-17.26878, 28.23996]
+ ],
+ [
+ [-16.9358, 28.37623],
+ [-16.945, 28.33574],
+ [-16.71995, 27.98317],
+ [-16.62541, 27.98317],
+ [-16.52753, 28.01641],
+ [-16.39953, 28.14632],
+ [-16.33594, 28.30922],
+ [-16.33009, 28.36445],
+ [-16.10253, 28.52408],
+ [-16.09834, 28.5814],
+ [-16.14268, 28.62547],
+ [-16.33929, 28.59609],
+ [-16.43801, 28.53143],
+ [-16.53924, 28.44025],
+ [-16.83959, 28.41229],
+ [-16.9358, 28.37623]
+ ],
+ [
+ [-15.68833, 28.20585],
+ [-15.47395, 28.16437],
+ [-15.42427, 28.21046],
+ [-15.36283, 28.17244],
+ [-15.38375, 28.05598],
+ [-15.33146, 27.98444],
+ [-15.3576, 27.8042],
+ [-15.5916, 27.69777],
+ [-15.7001, 27.73365],
+ [-15.79944, 27.80305],
+ [-15.87134, 27.92439],
+ [-15.84781, 28.03637],
+ [-15.74716, 28.08943],
+ [-15.73147, 28.18396],
+ [-15.68833, 28.20585]
+ ],
+ [
+ [-14.50882, 28.13448],
+ [-14.41078, 28.13448],
+ [-14.24868, 28.24278],
+ [-14.23822, 28.34637],
+ [-14.03953, 28.73911],
+ [-13.89442, 28.78265],
+ [-13.78592, 28.77692],
+ [-13.82122, 28.38433],
+ [-13.91534, 28.19095],
+ [-14.18593, 28.13563],
+ [-14.30881, 28.00529],
+ [-14.54019, 28.05144],
+ [-14.50882, 28.13448]
+ ],
+ [
+ [-13.5525, 29.37727],
+ [-13.50868, 29.36824],
+ [-13.47955, 29.38728],
+ [-13.47543, 29.40963],
+ [-13.5003, 29.42807],
+ [-13.5505, 29.40712],
+ [-13.5525, 29.37727]
+ ],
+ [
+ [-13.3976, 29.16102],
+ [-13.42814, 29.12157],
+ [-13.44174, 28.99084],
+ [-13.53899, 28.91947],
+ [-13.70841, 28.88468],
+ [-13.77116, 28.80865],
+ [-13.90083, 28.83522],
+ [-13.90711, 28.88926],
+ [-13.85796, 28.93686],
+ [-13.85691, 29.03657],
+ [-13.67599, 29.14988],
+ [-13.56723, 29.15719],
+ [-13.55428, 29.35073],
+ [-13.39988, 29.21806],
+ [-13.3976, 29.16102]
+ ],
+ [
+ [-13.33792, 29.28667],
+ [-13.35035, 29.27436],
+ [-13.3386, 29.26533],
+ [-13.32617, 29.27765],
+ [-13.33792, 29.28667]
+ ]
+ ],
+ "terms_text": "GRAFCAN OrtoExpress Urbana 2009"
+ },
+ {
+ "id": "GrandNancy_Orthophotographie_2012",
+ "name": "GrandNancy - Orthophoto - 2012",
+ "type": "tms",
+ "template": "http://wms.openstreetmap.fr/tms/1.0.0/nancy_2012/{zoom}/{x}/{y}",
+ "endDate": "2012-01-01T00:00:00.000Z",
+ "startDate": "2012-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 22],
+ "polygon": [
+ [
+ [6.06066, 48.60554],
+ [6.29717, 48.59923],
+ [6.30611, 48.74077],
+ [6.06896, 48.7471],
+ [6.06066, 48.60554]
+ ]
+ ],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/Nancy/Orthophotographie",
+ "terms_text": "GrandNancy Orthophotographie 2012"
+ },
+ {
+ "id": "hamburg-20cm",
+ "name": "Hamburg (20 cm)",
+ "type": "wms",
+ "template": "http://geodienste.hamburg.de/HH_WMS_DOP20?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=1&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [8.4826, 53.9356],
+ [8.48274, 53.90924],
+ [8.5275, 53.90941],
+ [8.52792, 53.93577],
+ [8.4826, 53.9356]
+ ],
+ [
+ [9.77232, 53.54352],
+ [9.77434, 53.55433],
+ [9.76314, 53.55521],
+ [9.73047, 53.55787],
+ [9.73465, 53.56536],
+ [9.75793, 53.61828],
+ [9.77129, 53.63131],
+ [9.7707, 53.61607],
+ [9.79634, 53.6103],
+ [9.78993, 53.60386],
+ [9.81817, 53.58591],
+ [9.83773, 53.59198],
+ [9.84498, 53.59498],
+ [9.85416, 53.59805],
+ [9.86814, 53.6093],
+ [9.86931, 53.61323],
+ [9.88505, 53.62199],
+ [9.88697, 53.6252],
+ [9.89356, 53.63026],
+ [9.89637, 53.63122],
+ [9.89688, 53.63492],
+ [9.90678, 53.65231],
+ [9.93115, 53.65262],
+ [9.94552, 53.65276],
+ [9.95024, 53.65085],
+ [9.95155, 53.65065],
+ [9.97795, 53.64887],
+ [9.98492, 53.6483],
+ [9.98739, 53.65072],
+ [9.9996, 53.68153],
+ [10.02282, 53.68157],
+ [10.04338, 53.68198],
+ [10.05148, 53.67759],
+ [10.06925, 53.67955],
+ [10.0604, 53.68833],
+ [10.071, 53.69585],
+ [10.0707, 53.70996],
+ [10.08198, 53.72044],
+ [10.11908, 53.71324],
+ [10.16939, 53.73896],
+ [10.19369, 53.731],
+ [10.1779, 53.70992],
+ [10.15694, 53.70451],
+ [10.15829, 53.68944],
+ [10.14342, 53.68057],
+ [10.14176, 53.67744],
+ [10.14473, 53.67613],
+ [10.14643, 53.67588],
+ [10.14955, 53.67545],
+ [10.17153, 53.66869],
+ [10.19885, 53.64675],
+ [10.18973, 53.63838],
+ [10.22202, 53.63349],
+ [10.18887, 53.61316],
+ [10.19236, 53.59474],
+ [10.20117, 53.58392],
+ [10.15169, 53.57619],
+ [10.15067, 53.56973],
+ [10.148, 53.5639],
+ [10.15308, 53.56242],
+ [10.15942, 53.56091],
+ [10.15189, 53.5417],
+ [10.15465, 53.53657],
+ [10.16874, 53.5374],
+ [10.16327, 53.52185],
+ [10.16611, 53.52013],
+ [10.16919, 53.51965],
+ [10.18951, 53.51148],
+ [10.21043, 53.51996],
+ [10.21828, 53.49923],
+ [10.2367, 53.49629],
+ [10.25008, 53.47898],
+ [10.26592, 53.47079],
+ [10.29043, 53.45512],
+ [10.30962, 53.44309],
+ [10.31223, 53.45229],
+ [10.32514, 53.44979],
+ [10.30799, 53.43332],
+ [10.25598, 53.41623],
+ [10.25089, 53.41024],
+ [10.24578, 53.40261],
+ [10.24155, 53.39797],
+ [10.16555, 53.39933],
+ [10.14506, 53.41614],
+ [10.10949, 53.42649],
+ [10.1068, 53.42658],
+ [10.07581, 53.45436],
+ [10.05155, 53.46394],
+ [10.03517, 53.4469],
+ [10.01449, 53.44203],
+ [10.02294, 53.43228],
+ [9.99754, 53.42546],
+ [9.98243, 53.41478],
+ [9.97873, 53.4142],
+ [9.9581, 53.42708],
+ [9.92953, 53.42007],
+ [9.92552, 53.41924],
+ [9.90667, 53.41596],
+ [9.92305, 53.43631],
+ [9.91704, 53.44664],
+ [9.90436, 53.45707],
+ [9.89493, 53.45583],
+ [9.86885, 53.44462],
+ [9.86211, 53.42942],
+ [9.84872, 53.44111],
+ [9.80663, 53.46648],
+ [9.80021, 53.47372],
+ [9.8028, 53.49383],
+ [9.78203, 53.49236],
+ [9.76885, 53.5053],
+ [9.77107, 53.52185],
+ [9.78105, 53.51838],
+ [9.77352, 53.52796],
+ [9.77232, 53.54352]
+ ]
+ ],
+ "terms_url": "http://www.hamburg.de/bsw/landesbetrieb-geoinformation-und-vermessung/",
+ "terms_text": "Freie und Hansestadt Hamburg, Landesbetrieb Geoinformation und Vermessung"
+ },
+ {
+ "id": "Hamburg-DK5",
+ "name": "Hamburg (DK5)",
+ "type": "wms",
+ "template": "http://geodienste.hamburg.de/HH_WMS_Geobasisdaten?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=13&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:4326",
+ "polygon": [
+ [
+ [8.4826, 53.9356],
+ [8.48274, 53.90924],
+ [8.5275, 53.90941],
+ [8.52792, 53.93577],
+ [8.4826, 53.9356]
+ ],
+ [
+ [9.77232, 53.54352],
+ [9.77434, 53.55433],
+ [9.76314, 53.55521],
+ [9.73047, 53.55787],
+ [9.73465, 53.56536],
+ [9.75793, 53.61828],
+ [9.77129, 53.63131],
+ [9.7707, 53.61607],
+ [9.79634, 53.6103],
+ [9.78993, 53.60386],
+ [9.81817, 53.58591],
+ [9.83773, 53.59198],
+ [9.84498, 53.59498],
+ [9.85416, 53.59805],
+ [9.86814, 53.6093],
+ [9.86931, 53.61323],
+ [9.88505, 53.62199],
+ [9.88697, 53.6252],
+ [9.89356, 53.63026],
+ [9.89637, 53.63122],
+ [9.89688, 53.63492],
+ [9.90678, 53.65231],
+ [9.93115, 53.65262],
+ [9.94552, 53.65276],
+ [9.95024, 53.65085],
+ [9.95155, 53.65065],
+ [9.97795, 53.64887],
+ [9.98492, 53.6483],
+ [9.98739, 53.65072],
+ [9.9996, 53.68153],
+ [10.02282, 53.68157],
+ [10.04338, 53.68198],
+ [10.05148, 53.67759],
+ [10.06925, 53.67955],
+ [10.0604, 53.68833],
+ [10.071, 53.69585],
+ [10.0707, 53.70996],
+ [10.08198, 53.72044],
+ [10.11908, 53.71324],
+ [10.16939, 53.73896],
+ [10.19369, 53.731],
+ [10.1779, 53.70992],
+ [10.15694, 53.70451],
+ [10.15829, 53.68944],
+ [10.14342, 53.68057],
+ [10.14176, 53.67744],
+ [10.14473, 53.67613],
+ [10.14643, 53.67588],
+ [10.14955, 53.67545],
+ [10.17153, 53.66869],
+ [10.19885, 53.64675],
+ [10.18973, 53.63838],
+ [10.22202, 53.63349],
+ [10.18887, 53.61316],
+ [10.19236, 53.59474],
+ [10.20117, 53.58392],
+ [10.15169, 53.57619],
+ [10.15067, 53.56973],
+ [10.148, 53.5639],
+ [10.15308, 53.56242],
+ [10.15942, 53.56091],
+ [10.15189, 53.5417],
+ [10.15465, 53.53657],
+ [10.16874, 53.5374],
+ [10.16327, 53.52185],
+ [10.16611, 53.52013],
+ [10.16919, 53.51965],
+ [10.18951, 53.51148],
+ [10.21043, 53.51996],
+ [10.21828, 53.49923],
+ [10.2367, 53.49629],
+ [10.25008, 53.47898],
+ [10.26592, 53.47079],
+ [10.29043, 53.45512],
+ [10.30962, 53.44309],
+ [10.31223, 53.45229],
+ [10.32514, 53.44979],
+ [10.30799, 53.43332],
+ [10.25598, 53.41623],
+ [10.25089, 53.41024],
+ [10.24578, 53.40261],
+ [10.24155, 53.39797],
+ [10.16555, 53.39933],
+ [10.14506, 53.41614],
+ [10.10949, 53.42649],
+ [10.1068, 53.42658],
+ [10.07581, 53.45436],
+ [10.05155, 53.46394],
+ [10.03517, 53.4469],
+ [10.01449, 53.44203],
+ [10.02294, 53.43228],
+ [9.99754, 53.42546],
+ [9.98243, 53.41478],
+ [9.97873, 53.4142],
+ [9.9581, 53.42708],
+ [9.92953, 53.42007],
+ [9.92552, 53.41924],
+ [9.90667, 53.41596],
+ [9.92305, 53.43631],
+ [9.91704, 53.44664],
+ [9.90436, 53.45707],
+ [9.89493, 53.45583],
+ [9.86885, 53.44462],
+ [9.86211, 53.42942],
+ [9.84872, 53.44111],
+ [9.80663, 53.46648],
+ [9.80021, 53.47372],
+ [9.8028, 53.49383],
+ [9.78203, 53.49236],
+ [9.76885, 53.5053],
+ [9.77107, 53.52185],
+ [9.78105, 53.51838],
+ [9.77352, 53.52796],
+ [9.77232, 53.54352]
+ ]
+ ]
+ },
+ {
+ "id": "Hampshire-Aerial-FCIR",
+ "name": "Hampshire Aerial FCIR",
+ "type": "tms",
+ "template": "https://{switch:a,b,c}.hampshire.aerial.openstreetmap.org.uk/layer/gb_hampshire_aerial_fcir/{zoom}/{x}/{y}.png",
+ "endDate": "2014-01-01T00:00:00.000Z",
+ "startDate": "2013-01-01T00:00:00.000Z",
+ "scaleExtent": [8, 20],
+ "polygon": [
+ [
+ [-1.31567, 50.77809],
+ [-1.49139, 50.73027],
+ [-1.57113, 50.69041],
+ [-1.68095, 50.71748],
+ [-1.69338, 50.73484],
+ [-1.69528, 50.74065],
+ [-1.68689, 50.74999],
+ [-1.71068, 50.74812],
+ [-1.7195, 50.75261],
+ [-1.746, 50.74452],
+ [-1.74845, 50.75675],
+ [-1.74287, 50.76397],
+ [-1.75101, 50.77577],
+ [-1.78525, 50.76177],
+ [-1.79911, 50.77236],
+ [-1.82256, 50.77225],
+ [-1.82678, 50.78077],
+ [-1.8225, 50.79933],
+ [-1.80732, 50.80074],
+ [-1.81566, 50.80752],
+ [-1.80889, 50.81358],
+ [-1.80579, 50.83249],
+ [-1.79816, 50.83535],
+ [-1.80649, 50.84414],
+ [-1.80988, 50.86189],
+ [-1.81378, 50.85591],
+ [-1.83052, 50.85261],
+ [-1.85271, 50.85651],
+ [-1.85655, 50.86684],
+ [-1.8492, 50.87802],
+ [-1.85082, 50.89178],
+ [-1.84077, 50.90051],
+ [-1.82693, 50.89939],
+ [-1.82006, 50.90492],
+ [-1.82151, 50.91691],
+ [-1.81689, 50.92412],
+ [-1.84114, 50.92886],
+ [-1.87446, 50.91441],
+ [-1.91129, 50.9439],
+ [-1.92339, 50.95917],
+ [-1.95751, 50.97575],
+ [-1.9591, 50.99152],
+ [-1.94907, 50.98649],
+ [-1.92879, 51.00055],
+ [-1.88709, 51.0026],
+ [-1.87393, 51.0097],
+ [-1.8717, 50.99083],
+ [-1.85433, 51.00786],
+ [-1.83567, 51.01238],
+ [-1.81502, 50.9899],
+ [-1.80031, 50.99457],
+ [-1.75184, 50.98133],
+ [-1.71927, 50.98047],
+ [-1.69142, 50.95943],
+ [-1.66829, 50.95041],
+ [-1.6526, 50.95029],
+ [-1.63536, 50.96269],
+ [-1.62397, 50.95903],
+ [-1.6089, 50.97686],
+ [-1.62172, 50.98099],
+ [-1.63115, 50.99984],
+ [-1.60984, 51.01225],
+ [-1.60173, 51.01042],
+ [-1.60787, 51.01582],
+ [-1.6057, 51.02271],
+ [-1.63542, 51.03176],
+ [-1.63858, 51.04126],
+ [-1.63107, 51.07819],
+ [-1.64025, 51.09201],
+ [-1.6306, 51.10359],
+ [-1.63408, 51.11099],
+ [-1.63067, 51.11652],
+ [-1.64109, 51.12237],
+ [-1.66525, 51.12546],
+ [-1.65724, 51.15539],
+ [-1.67474, 51.177],
+ [-1.67213, 51.18708],
+ [-1.69679, 51.20233],
+ [-1.69247, 51.21617],
+ [-1.65288, 51.22301],
+ [-1.63564, 51.22019],
+ [-1.62395, 51.24136],
+ [-1.61402, 51.24467],
+ [-1.60741, 51.25513],
+ [-1.57717, 51.25863],
+ [-1.54443, 51.24826],
+ [-1.5384, 51.25085],
+ [-1.53436, 51.25919],
+ [-1.54345, 51.25957],
+ [-1.54007, 51.27602],
+ [-1.54596, 51.28095],
+ [-1.53591, 51.28978],
+ [-1.52595, 51.28975],
+ [-1.53093, 51.29948],
+ [-1.53008, 51.3111],
+ [-1.53628, 51.31596],
+ [-1.52986, 51.34057],
+ [-1.51552, 51.34219],
+ [-1.49498, 51.33228],
+ [-1.43599, 51.33861],
+ [-1.44759, 51.3464],
+ [-1.4463, 51.35699],
+ [-1.43056, 51.35941],
+ [-1.41608, 51.37517],
+ [-1.34899, 51.37045],
+ [-1.31472, 51.37627],
+ [-1.27555, 51.3707],
+ [-1.25116, 51.37511],
+ [-1.24118, 51.36938],
+ [-1.22209, 51.37271],
+ [-1.17602, 51.36102],
+ [-1.14321, 51.36028],
+ [-1.11875, 51.36156],
+ [-1.12096, 51.36859],
+ [-1.11678, 51.3767],
+ [-1.08363, 51.38712],
+ [-1.04754, 51.36122],
+ [-0.9904, 51.36619],
+ [-0.97264, 51.36297],
+ [-0.92376, 51.36937],
+ [-0.87681, 51.3555],
+ [-0.86549, 51.35947],
+ [-0.82728, 51.35574],
+ [-0.81122, 51.34418],
+ [-0.78322, 51.34084],
+ [-0.76325, 51.32721],
+ [-0.76005, 51.32013],
+ [-0.74183, 51.31112],
+ [-0.72842, 51.28238],
+ [-0.72631, 51.25653],
+ [-0.73713, 51.23126],
+ [-0.74898, 51.2277],
+ [-0.77712, 51.23901],
+ [-0.80193, 51.23628],
+ [-0.80611, 51.24056],
+ [-0.82491, 51.23137],
+ [-0.82701, 51.22315],
+ [-0.84493, 51.20998],
+ [-0.82268, 51.18268],
+ [-0.83042, 51.15022],
+ [-0.81952, 51.15047],
+ [-0.80504, 51.15847],
+ [-0.79382, 51.15491],
+ [-0.78879, 51.14141],
+ [-0.77846, 51.13664],
+ [-0.77813, 51.13063],
+ [-0.76654, 51.11946],
+ [-0.74365, 51.11491],
+ [-0.74715, 51.10131],
+ [-0.75411, 51.10116],
+ [-0.75122, 51.09547],
+ [-0.75506, 51.08987],
+ [-0.75076, 51.0852],
+ [-0.7785, 51.07715],
+ [-0.78645, 51.06467],
+ [-0.79954, 51.06078],
+ [-0.82645, 51.05881],
+ [-0.83646, 51.0664],
+ [-0.84519, 51.06052],
+ [-0.8499, 51.0436],
+ [-0.89485, 51.01978],
+ [-0.89065, 51.00194],
+ [-0.90461, 50.99327],
+ [-0.91461, 50.97806],
+ [-0.91278, 50.9708],
+ [-0.93246, 50.94278],
+ [-0.92119, 50.9232],
+ [-0.93793, 50.91615],
+ [-0.95132, 50.89178],
+ [-0.92368, 50.86513],
+ [-0.92976, 50.85365],
+ [-0.92903, 50.84245],
+ [-0.94342, 50.82191],
+ [-0.9299, 50.78445],
+ [-0.93275, 50.77435],
+ [-0.95347, 50.73682],
+ [-1.31567, 50.77809]
+ ]
+ ]
+ },
+ {
+ "id": "Hampshire-Aerial-RGB",
+ "name": "Hampshire Aerial RGB",
+ "type": "tms",
+ "template": "https://{switch:a,b,c}.hampshire.aerial.openstreetmap.org.uk/layer/gb_hampshire_aerial_rgb/{zoom}/{x}/{y}.png",
+ "endDate": "2013-01-01T00:00:00.000Z",
+ "startDate": "2013-01-01T00:00:00.000Z",
+ "scaleExtent": [8, 20],
+ "polygon": [
+ [
+ [-1.31567, 50.77809],
+ [-1.49139, 50.73027],
+ [-1.57113, 50.69041],
+ [-1.68095, 50.71748],
+ [-1.69338, 50.73484],
+ [-1.69528, 50.74065],
+ [-1.68689, 50.74999],
+ [-1.71068, 50.74812],
+ [-1.7195, 50.75261],
+ [-1.746, 50.74452],
+ [-1.74845, 50.75675],
+ [-1.74287, 50.76397],
+ [-1.75101, 50.77577],
+ [-1.78525, 50.76177],
+ [-1.79911, 50.77236],
+ [-1.82256, 50.77225],
+ [-1.82678, 50.78077],
+ [-1.8225, 50.79933],
+ [-1.80732, 50.80074],
+ [-1.81566, 50.80752],
+ [-1.80889, 50.81358],
+ [-1.80579, 50.83249],
+ [-1.79816, 50.83535],
+ [-1.80649, 50.84414],
+ [-1.80988, 50.86189],
+ [-1.81378, 50.85591],
+ [-1.83052, 50.85261],
+ [-1.85271, 50.85651],
+ [-1.85655, 50.86684],
+ [-1.8492, 50.87802],
+ [-1.85082, 50.89178],
+ [-1.84077, 50.90051],
+ [-1.82693, 50.89939],
+ [-1.82006, 50.90492],
+ [-1.82151, 50.91691],
+ [-1.81689, 50.92412],
+ [-1.84114, 50.92886],
+ [-1.87446, 50.91441],
+ [-1.91129, 50.9439],
+ [-1.92339, 50.95917],
+ [-1.95751, 50.97575],
+ [-1.9591, 50.99152],
+ [-1.94907, 50.98649],
+ [-1.92879, 51.00055],
+ [-1.88709, 51.0026],
+ [-1.87393, 51.0097],
+ [-1.8717, 50.99083],
+ [-1.85433, 51.00786],
+ [-1.83567, 51.01238],
+ [-1.81502, 50.9899],
+ [-1.80031, 50.99457],
+ [-1.75184, 50.98133],
+ [-1.71927, 50.98047],
+ [-1.69142, 50.95943],
+ [-1.66829, 50.95041],
+ [-1.6526, 50.95029],
+ [-1.63536, 50.96269],
+ [-1.62397, 50.95903],
+ [-1.6089, 50.97686],
+ [-1.62172, 50.98099],
+ [-1.63115, 50.99984],
+ [-1.60984, 51.01225],
+ [-1.60173, 51.01042],
+ [-1.60787, 51.01582],
+ [-1.6057, 51.02271],
+ [-1.63542, 51.03176],
+ [-1.63858, 51.04126],
+ [-1.63107, 51.07819],
+ [-1.64025, 51.09201],
+ [-1.6306, 51.10359],
+ [-1.63408, 51.11099],
+ [-1.63067, 51.11652],
+ [-1.64109, 51.12237],
+ [-1.66525, 51.12546],
+ [-1.65724, 51.15539],
+ [-1.67474, 51.177],
+ [-1.67213, 51.18708],
+ [-1.69679, 51.20233],
+ [-1.69247, 51.21617],
+ [-1.65288, 51.22301],
+ [-1.63564, 51.22019],
+ [-1.62395, 51.24136],
+ [-1.61402, 51.24467],
+ [-1.60741, 51.25513],
+ [-1.57717, 51.25863],
+ [-1.54443, 51.24826],
+ [-1.5384, 51.25085],
+ [-1.53436, 51.25919],
+ [-1.54345, 51.25957],
+ [-1.54007, 51.27602],
+ [-1.54596, 51.28095],
+ [-1.53591, 51.28978],
+ [-1.52595, 51.28975],
+ [-1.53093, 51.29948],
+ [-1.53008, 51.3111],
+ [-1.53628, 51.31596],
+ [-1.52986, 51.34057],
+ [-1.51552, 51.34219],
+ [-1.49498, 51.33228],
+ [-1.43599, 51.33861],
+ [-1.44759, 51.3464],
+ [-1.4463, 51.35699],
+ [-1.43056, 51.35941],
+ [-1.41608, 51.37517],
+ [-1.34899, 51.37045],
+ [-1.31472, 51.37627],
+ [-1.27555, 51.3707],
+ [-1.25116, 51.37511],
+ [-1.24118, 51.36938],
+ [-1.22209, 51.37271],
+ [-1.17602, 51.36102],
+ [-1.14321, 51.36028],
+ [-1.11875, 51.36156],
+ [-1.12096, 51.36859],
+ [-1.11678, 51.3767],
+ [-1.08363, 51.38712],
+ [-1.04754, 51.36122],
+ [-0.9904, 51.36619],
+ [-0.97264, 51.36297],
+ [-0.92376, 51.36937],
+ [-0.87681, 51.3555],
+ [-0.86549, 51.35947],
+ [-0.82728, 51.35574],
+ [-0.81122, 51.34418],
+ [-0.78322, 51.34084],
+ [-0.76325, 51.32721],
+ [-0.76005, 51.32013],
+ [-0.74183, 51.31112],
+ [-0.72842, 51.28238],
+ [-0.72631, 51.25653],
+ [-0.73713, 51.23126],
+ [-0.74898, 51.2277],
+ [-0.77712, 51.23901],
+ [-0.80193, 51.23628],
+ [-0.80611, 51.24056],
+ [-0.82491, 51.23137],
+ [-0.82701, 51.22315],
+ [-0.84493, 51.20998],
+ [-0.82268, 51.18268],
+ [-0.83042, 51.15022],
+ [-0.81952, 51.15047],
+ [-0.80504, 51.15847],
+ [-0.79382, 51.15491],
+ [-0.78879, 51.14141],
+ [-0.77846, 51.13664],
+ [-0.77813, 51.13063],
+ [-0.76654, 51.11946],
+ [-0.74365, 51.11491],
+ [-0.74715, 51.10131],
+ [-0.75411, 51.10116],
+ [-0.75122, 51.09547],
+ [-0.75506, 51.08987],
+ [-0.75076, 51.0852],
+ [-0.7785, 51.07715],
+ [-0.78645, 51.06467],
+ [-0.79954, 51.06078],
+ [-0.82645, 51.05881],
+ [-0.83646, 51.0664],
+ [-0.84519, 51.06052],
+ [-0.8499, 51.0436],
+ [-0.89485, 51.01978],
+ [-0.89065, 51.00194],
+ [-0.90461, 50.99327],
+ [-0.91461, 50.97806],
+ [-0.91278, 50.9708],
+ [-0.93246, 50.94278],
+ [-0.92119, 50.9232],
+ [-0.93793, 50.91615],
+ [-0.95132, 50.89178],
+ [-0.92368, 50.86513],
+ [-0.92976, 50.85365],
+ [-0.92903, 50.84245],
+ [-0.94342, 50.82191],
+ [-0.9299, 50.78445],
+ [-0.93275, 50.77435],
+ [-0.95347, 50.73682],
+ [-1.31567, 50.77809]
+ ]
+ ]
+ },
+ {
+ "id": "IBGE_DF_Addresses",
+ "name": "IBGE Distrito Federal",
+ "type": "tms",
+ "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/wille/cirnnxni1000jg8nfppc8g7pm/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoid2lsbGUiLCJhIjoicFNVWk5VWSJ9.hluCd0YGvYHNlFi_utWe2g",
+ "scaleExtent": [0, 20],
+ "polygon": [
+ [
+ [-48.2444, -16.0508],
+ [-48.2444, -15.5005],
+ [-47.5695, -15.5005],
+ [-47.5695, -16.0508],
+ [-48.2444, -16.0508]
+ ]
+ ],
+ "terms_text": "IBGE",
+ "description": "Addresses data from IBGE",
+ "overlay": true
+ },
+ {
+ "id": "IBGE_Setores_Rurais",
+ "name": "IBGE Mapa de Setores Rurais",
+ "type": "tms",
+ "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/tmpsantos.i00mo1kj/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJncjlmd0t3In0.DmZsIeOW-3x-C5eX-wAqTw",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [-69.94793, -4.23168],
+ [-69.45659, -1.49119],
+ [-69.3973, -1.36508],
+ [-69.42989, -1.22173],
+ [-69.39523, -1.12555],
+ [-69.44292, -1.03351],
+ [-69.41861, -0.99827],
+ [-69.528, -0.92514],
+ [-69.52577, -0.86807],
+ [-69.62491, -0.74667],
+ [-69.56179, -0.63692],
+ [-69.60783, -0.5008],
+ [-69.8446, -0.33732],
+ [-69.92054, -0.32573],
+ [-70.04323, -0.18998],
+ [-70.04302, 0.56359],
+ [-69.80272, 0.57162],
+ [-69.6711, 0.66759],
+ [-69.60529, 0.61328],
+ [-69.59701, 0.6542],
+ [-69.48002, 0.73577],
+ [-69.35277, 0.61416],
+ [-69.28914, 0.64997],
+ [-69.29484, 0.60389],
+ [-69.19975, 0.60591],
+ [-69.19425, 0.64982],
+ [-69.11563, 0.64484],
+ [-69.19001, 0.74056],
+ [-69.14881, 0.76751],
+ [-69.13576, 0.87204],
+ [-69.18846, 0.91324],
+ [-69.1646, 0.94156],
+ [-69.21679, 0.97245],
+ [-69.19773, 0.99974],
+ [-69.24494, 1.05655],
+ [-69.37641, 1.08794],
+ [-69.42312, 1.04265],
+ [-69.60989, 1.09826],
+ [-69.67718, 1.06994],
+ [-69.70963, 1.11817],
+ [-69.84266, 1.07272],
+ [-69.83972, 1.71893],
+ [-69.78236, 1.69244],
+ [-69.53464, 1.77691],
+ [-69.39109, 1.72935],
+ [-68.1645, 1.72945],
+ [-68.19207, 1.7797],
+ [-68.23954, 1.77044],
+ [-68.22688, 1.82918],
+ [-68.28555, 1.83084],
+ [-68.19583, 2.03479],
+ [-68.18033, 1.9767],
+ [-68.14417, 1.97854],
+ [-68.09043, 1.89774],
+ [-67.90162, 1.81165],
+ [-67.76942, 2.00924],
+ [-67.55095, 2.04769],
+ [-67.49519, 2.16312],
+ [-67.39404, 2.22894],
+ [-67.32672, 2.06387],
+ [-67.33083, 1.94158],
+ [-67.22831, 1.84127],
+ [-67.15384, 1.8315],
+ [-67.15922, 1.67504],
+ [-67.08017, 1.38546],
+ [-67.13923, 1.32002],
+ [-67.08675, 1.16704],
+ [-66.85119, 1.22896],
+ [-66.31032, 0.74494],
+ [-66.19737, 0.78161],
+ [-66.07783, 0.76174],
+ [-66.07024, 0.8123],
+ [-65.96712, 0.81511],
+ [-65.88369, 0.94159],
+ [-65.77261, 0.95859],
+ [-65.7421, 1.00125],
+ [-65.58894, 1.00471],
+ [-65.49624, 0.87415],
+ [-65.60623, 0.70748],
+ [-65.54116, 0.64881],
+ [-65.44499, 0.68921],
+ [-65.39213, 0.75692],
+ [-65.41198, 0.82415],
+ [-65.32734, 0.93596],
+ [-65.21302, 0.90282],
+ [-65.1749, 0.94131],
+ [-65.15831, 1.1246],
+ [-65.07232, 1.15303],
+ [-65.06317, 1.11205],
+ [-65.01361, 1.10905],
+ [-64.97445, 1.20288],
+ [-64.90439, 1.25153],
+ [-64.86966, 1.22713],
+ [-64.80053, 1.31527],
+ [-64.74446, 1.22569],
+ [-64.5789, 1.34041],
+ [-64.52608, 1.44322],
+ [-64.43586, 1.47006],
+ [-64.3939, 1.52901],
+ [-64.35111, 1.52921],
+ [-64.34777, 1.49508],
+ [-64.41019, 1.40301],
+ [-64.33791, 1.36134],
+ [-64.3136, 1.45617],
+ [-64.19707, 1.52071],
+ [-64.0735, 1.64902],
+ [-64.05781, 1.92899],
+ [-63.97219, 1.99194],
+ [-63.83555, 1.96644],
+ [-63.71155, 2.04645],
+ [-63.66501, 2.01861],
+ [-63.6268, 2.11222],
+ [-63.56474, 2.13571],
+ [-63.44059, 2.126],
+ [-63.36742, 2.26864],
+ [-63.37088, 2.41121],
+ [-63.42123, 2.45102],
+ [-63.46036, 2.39684],
+ [-63.56398, 2.44573],
+ [-63.76805, 2.43994],
+ [-63.84358, 2.4916],
+ [-64.01914, 2.46135],
+ [-64.0573, 2.49752],
+ [-63.98033, 2.7237],
+ [-64.07709, 2.87262],
+ [-64.07156, 2.92142],
+ [-64.12349, 2.99048],
+ [-64.15754, 2.98243],
+ [-64.14592, 3.03459],
+ [-64.22642, 3.12356],
+ [-64.19795, 3.20121],
+ [-64.2444, 3.43036],
+ [-64.17437, 3.56841],
+ [-64.281, 3.70928],
+ [-64.54357, 3.85713],
+ [-64.72239, 4.11775],
+ [-64.80203, 4.17422],
+ [-64.81123, 4.27048],
+ [-64.69522, 4.25323],
+ [-64.623, 4.135],
+ [-64.5565, 4.10529],
+ [-64.164, 4.127],
+ [-63.964, 3.868],
+ [-63.928, 3.925],
+ [-63.85, 3.95],
+ [-63.682, 3.908],
+ [-63.676, 4.019],
+ [-63.591, 3.886],
+ [-63.497, 3.84],
+ [-63.489, 3.874],
+ [-63.434, 3.865],
+ [-63.428, 3.977],
+ [-63.204, 3.952],
+ [-63.226, 3.836],
+ [-63.103, 3.794],
+ [-63.059, 3.748],
+ [-63.081, 3.694],
+ [-62.96, 3.608],
+ [-62.835, 3.739],
+ [-62.743, 3.674],
+ [-62.729, 3.805],
+ [-62.788, 3.894],
+ [-62.753, 4.032],
+ [-62.555, 4.019],
+ [-62.552, 4.109],
+ [-62.437, 4.183],
+ [-62.14308, 4.07768],
+ [-62.071, 4.126],
+ [-62.076, 4.154],
+ [-61.982, 4.181],
+ [-61.93175, 4.12009],
+ [-61.92213, 4.16126],
+ [-61.824, 4.164],
+ [-61.802, 4.229],
+ [-61.724, 4.27],
+ [-61.56, 4.252],
+ [-61.508, 4.322],
+ [-61.513, 4.406],
+ [-61.288, 4.458],
+ [-61.323, 4.535],
+ [-61.217, 4.536],
+ [-61.14559, 4.48016],
+ [-61.095, 4.522],
+ [-60.994, 4.519],
+ [-60.932, 4.587],
+ [-60.949, 4.653],
+ [-60.899, 4.717],
+ [-60.751, 4.756],
+ [-60.591, 4.927],
+ [-60.661, 5.164],
+ [-60.73197, 5.21203],
+ [-60.434, 5.182],
+ [-60.20825, 5.28346],
+ [-60.172, 5.227],
+ [-60.135, 5.249],
+ [-60.094, 5.14],
+ [-59.96984, 5.06334],
+ [-60.02524, 4.7065],
+ [-60.0705, 4.61688],
+ [-60.15725, 4.57247],
+ [-60.16114, 4.51773],
+ [-59.79503, 4.46554],
+ [-59.66948, 4.37629],
+ [-59.7319, 4.28587],
+ [-59.73069, 4.18076],
+ [-59.61818, 4.13166],
+ [-59.65406, 4.06943],
+ [-59.58417, 3.96851],
+ [-59.5153, 3.94493],
+ [-59.59279, 3.88538],
+ [-59.59631, 3.79386],
+ [-59.66555, 3.78126],
+ [-59.66842, 3.70277],
+ [-59.86728, 3.57776],
+ [-59.80205, 3.50156],
+ [-59.8408, 3.43174],
+ [-59.80488, 3.35695],
+ [-59.907, 3.212],
+ [-59.98944, 2.88185],
+ [-59.99, 2.686],
+ [-59.895, 2.482],
+ [-59.89872, 2.36245],
+ [-59.72315, 2.27614],
+ [-59.751, 1.859],
+ [-59.677, 1.839],
+ [-59.663, 1.871],
+ [-59.69, 1.757],
+ [-59.539, 1.723],
+ [-59.381, 1.507],
+ [-59.329, 1.514],
+ [-59.327, 1.464],
+ [-59.284, 1.45],
+ [-59.253, 1.389],
+ [-58.978, 1.302],
+ [-58.918, 1.317],
+ [-58.886, 1.261],
+ [-58.912, 1.239],
+ [-58.82512, 1.17127],
+ [-58.73956, 1.1999],
+ [-58.69456, 1.29732],
+ [-58.49622, 1.26796],
+ [-58.45787, 1.37145],
+ [-58.50511, 1.40317],
+ [-58.50873, 1.46295],
+ [-58.38559, 1.46999],
+ [-58.39472, 1.52651],
+ [-58.32237, 1.59702],
+ [-58.236, 1.54669],
+ [-58.16064, 1.56011],
+ [-58.12942, 1.4989],
+ [-58.00423, 1.50303],
+ [-57.99009, 1.65844],
+ [-57.85206, 1.66782],
+ [-57.77431, 1.72973],
+ [-57.70509, 1.73093],
+ [-57.65042, 1.68237],
+ [-57.5376, 1.7005],
+ [-57.50187, 1.78609],
+ [-57.43776, 1.82681],
+ [-57.43343, 1.90598],
+ [-57.36768, 1.92372],
+ [-57.36912, 1.95638],
+ [-57.30712, 1.99665],
+ [-57.22923, 1.93759],
+ [-57.08668, 2.02644],
+ [-57.01421, 1.91489],
+ [-56.91971, 1.93036],
+ [-56.79793, 1.85336],
+ [-56.72096, 1.92582],
+ [-56.62145, 1.94588],
+ [-56.57976, 1.90588],
+ [-56.45126, 1.95614],
+ [-56.24404, 1.87808],
+ [-56.1709, 1.90048],
+ [-56.11762, 1.85097],
+ [-55.95638, 1.84509],
+ [-55.90385, 1.88803],
+ [-55.93635, 1.98647],
+ [-55.9031, 2.04108],
+ [-56.00307, 2.1676],
+ [-56.05505, 2.18464],
+ [-56.04288, 2.22778],
+ [-56.13887, 2.26574],
+ [-56.09012, 2.37228],
+ [-56.02181, 2.34247],
+ [-55.97052, 2.52931],
+ [-55.76663, 2.45524],
+ [-55.71028, 2.39917],
+ [-55.49971, 2.44324],
+ [-55.38533, 2.41836],
+ [-55.32019, 2.51537],
+ [-55.23474, 2.50338],
+ [-55.1234, 2.56762],
+ [-55.10302, 2.52564],
+ [-54.95424, 2.58359],
+ [-54.86846, 2.43989],
+ [-54.68917, 2.45389],
+ [-54.68861, 2.32472],
+ [-54.54667, 2.31833],
+ [-54.53778, 2.26556],
+ [-54.46861, 2.21306],
+ [-54.24917, 2.14667],
+ [-54.18056, 2.1725],
+ [-54.11083, 2.11222],
+ [-54.06139, 2.19167],
+ [-53.94083, 2.21917],
+ [-53.93194, 2.27194],
+ [-53.88667, 2.26778],
+ [-53.745, 2.37389],
+ [-53.73389, 2.31222],
+ [-53.52972, 2.24917],
+ [-53.45861, 2.2575],
+ [-53.32833, 2.35333],
+ [-53.21667, 2.25333],
+ [-53.27899, 2.18603],
+ [-53.11861, 2.2225],
+ [-52.99472, 2.17528],
+ [-52.90972, 2.19583],
+ [-52.84722, 2.28556],
+ [-52.67528, 2.37389],
+ [-52.59444, 2.47389],
+ [-52.54028, 2.57028],
+ [-52.56417, 2.63944],
+ [-52.43944, 2.87778],
+ [-52.39583, 2.90222],
+ [-52.33187, 3.16938],
+ [-52.21472, 3.26833],
+ [-51.97104, 3.70696],
+ [-51.92148, 3.72422],
+ [-51.922, 3.7792],
+ [-51.79731, 3.88888],
+ [-51.77783, 3.97406],
+ [-51.65867, 4.05276],
+ [-51.61325, 4.17437],
+ [-51.63716, 4.50834],
+ [-51.49427, 4.67426],
+ [-51.11466, 4.42286],
+ [-50.94232, 4.20165],
+ [-50.85475, 3.92491],
+ [-50.85507, 3.45573],
+ [-50.75331, 2.94057],
+ [-50.29908, 2.33079],
+ [-49.73896, 1.79143],
+ [-48.23746, -0.07449],
+ [-44.84728, -1.07246],
+ [-43.54602, -2.04705],
+ [-43.24389, -2.12403],
+ [-42.78189, -2.33053],
+ [-41.78084, -2.51859],
+ [-41.5085, -2.68486],
+ [-40.66365, -2.63829],
+ [-40.50396, -2.57531],
+ [-39.8907, -2.65328],
+ [-39.15187, -3.04444],
+ [-38.57151, -3.48047],
+ [-38.34306, -3.54434],
+ [-38.21421, -3.74103],
+ [-38.12555, -3.80544],
+ [-37.90182, -4.07265],
+ [-37.77934, -4.18046],
+ [-37.63401, -4.24454],
+ [-37.51218, -4.41535],
+ [-37.22122, -4.51045],
+ [-37.07874, -4.71355],
+ [-36.91716, -4.71372],
+ [-36.62299, -4.85815],
+ [-36.18969, -4.88505],
+ [-35.93627, -4.83327],
+ [-35.56471, -4.90758],
+ [-35.33677, -4.99239],
+ [-35.17659, -5.12497],
+ [-34.79469, -6.33583],
+ [-34.71587, -6.74615],
+ [-34.62306, -6.90323],
+ [-34.59953, -7.11133],
+ [-34.64374, -7.98735],
+ [-34.81497, -8.62472],
+ [-35.0253, -9.13761],
+ [-35.55848, -9.81261],
+ [-35.69663, -9.90026],
+ [-35.96401, -10.31281],
+ [-36.06155, -10.37447],
+ [-36.26639, -10.64593],
+ [-36.61764, -10.81082],
+ [-36.78725, -10.95151],
+ [-36.99511, -11.29602],
+ [-37.11368, -11.41261],
+ [-37.46002, -12.10275],
+ [-37.89668, -12.75844],
+ [-38.22146, -13.09717],
+ [-38.61146, -13.26537],
+ [-38.85337, -14.65508],
+ [-38.74388, -15.60089],
+ [-38.66456, -15.74741],
+ [-38.64697, -15.88327],
+ [-38.8013, -16.24838],
+ [-38.92933, -16.80775],
+ [-38.53193, -17.80026],
+ [-38.49171, -18.0046],
+ [-38.53661, -18.09683],
+ [-38.67053, -18.16855],
+ [-39.35288, -18.10892],
+ [-39.4675, -18.30359],
+ [-39.54529, -18.78548],
+ [-39.49227, -19.40134],
+ [-39.63477, -19.74403],
+ [-39.86353, -19.88681],
+ [-40.17827, -20.75426],
+ [-40.81442, -21.67672],
+ [-40.76948, -21.87786],
+ [-40.81442, -22.09702],
+ [-41.5086, -22.52638],
+ [-41.59666, -22.83627],
+ [-41.79292, -23.08823],
+ [-41.91484, -23.18527],
+ [-43.19603, -23.26703],
+ [-44.07735, -23.40501],
+ [-45.13508, -24.12014],
+ [-46.61368, -24.67512],
+ [-47.85376, -25.47012],
+ [-48.2801, -26.23036],
+ [-48.34897, -26.75081],
+ [-48.11076, -27.28208],
+ [-48.21148, -27.85592],
+ [-48.40713, -28.43255],
+ [-48.68615, -28.76016],
+ [-48.9156, -28.86305],
+ [-49.1579, -29.02871],
+ [-49.52748, -29.42005],
+ [-49.82565, -29.86559],
+ [-50.17344, -30.64282],
+ [-50.60441, -31.24135],
+ [-51.18785, -31.77646],
+ [-51.74211, -32.10539],
+ [-51.89236, -32.29596],
+ [-52.06117, -32.38504],
+ [-52.27087, -32.92102],
+ [-52.45986, -33.25369],
+ [-52.61505, -33.42291],
+ [-53.18109, -33.86891],
+ [-53.43053, -33.73947],
+ [-53.43951, -33.69347],
+ [-53.53228, -33.6888],
+ [-53.51819, -33.15342],
+ [-53.44438, -33.05296],
+ [-53.24468, -32.93489],
+ [-53.31008, -32.91875],
+ [-53.29454, -32.89931],
+ [-53.18496, -32.85043],
+ [-53.14569, -32.79202],
+ [-53.0858, -32.78835],
+ [-53.07558, -32.74088],
+ [-53.24992, -32.6041],
+ [-53.39137, -32.58573],
+ [-53.46423, -32.48446],
+ [-53.58321, -32.45192],
+ [-53.74599, -32.07848],
+ [-53.83375, -32.05524],
+ [-53.84978, -32.00064],
+ [-53.96073, -31.95532],
+ [-53.96972, -31.91765],
+ [-54.10019, -31.92825],
+ [-54.4549, -31.65295],
+ [-54.4528, -31.59959],
+ [-54.58676, -31.45656],
+ [-54.8367, -31.442],
+ [-54.88623, -31.3773],
+ [-54.94087, -31.38068],
+ [-55.00723, -31.26692],
+ [-55.07446, -31.33216],
+ [-55.24003, -31.26062],
+ [-55.29118, -31.14226],
+ [-55.34037, -31.13144],
+ [-55.34981, -31.03922],
+ [-55.42306, -31.01823],
+ [-55.57742, -30.83309],
+ [-55.65834, -30.864],
+ [-55.66621, -30.95395],
+ [-55.723, -30.943],
+ [-55.727, -30.979],
+ [-55.882, -31.077],
+ [-56.00989, -31.08267],
+ [-56.02241, -30.78565],
+ [-56.12508, -30.73871],
+ [-56.17074, -30.61517],
+ [-56.26095, -30.58509],
+ [-56.29193, -30.51967],
+ [-56.38177, -30.49956],
+ [-56.46126, -30.38486],
+ [-56.54706, -30.35946],
+ [-56.54115, -30.31291],
+ [-56.6187, -30.30054],
+ [-56.64628, -30.20346],
+ [-56.77662, -30.1633],
+ [-56.80777, -30.10301],
+ [-57.07113, -30.08671],
+ [-57.22081, -30.28928],
+ [-57.31303, -30.25785],
+ [-57.39229, -30.30474],
+ [-57.46574, -30.26589],
+ [-57.52431, -30.28569],
+ [-57.56087, -30.21134],
+ [-57.64744, -30.19483],
+ [-57.48047, -30.12315],
+ [-57.33713, -29.99284],
+ [-57.294, -29.831],
+ [-57.121, -29.765],
+ [-56.89888, -29.53179],
+ [-56.81905, -29.48816],
+ [-56.76618, -29.37768],
+ [-56.70164, -29.35913],
+ [-56.59315, -29.12516],
+ [-56.418, -29.075],
+ [-56.40775, -28.9748],
+ [-56.29995, -28.89614],
+ [-56.29652, -28.8027],
+ [-56.17858, -28.75922],
+ [-56.00984, -28.60718],
+ [-56.01249, -28.50873],
+ [-55.88357, -28.47923],
+ [-55.87739, -28.36159],
+ [-55.75157, -28.37095],
+ [-55.69433, -28.42204],
+ [-55.67047, -28.33218],
+ [-55.77415, -28.27414],
+ [-55.7757, -28.24481],
+ [-55.63167, -28.17719],
+ [-55.60747, -28.11604],
+ [-55.55957, -28.16523],
+ [-55.4952, -28.07682],
+ [-55.44611, -28.09787],
+ [-55.368, -28.029],
+ [-55.38299, -27.97948],
+ [-55.343, -27.972],
+ [-55.32706, -27.92664],
+ [-55.26574, -27.92969],
+ [-55.196, -27.856],
+ [-55.133, -27.897],
+ [-55.106, -27.846],
+ [-55.035, -27.858],
+ [-55.081, -27.779],
+ [-54.936, -27.772],
+ [-54.90617, -27.63871],
+ [-54.85, -27.624],
+ [-54.814, -27.533],
+ [-54.775, -27.586],
+ [-54.67926, -27.57394],
+ [-54.67709, -27.508],
+ [-54.621, -27.541],
+ [-54.574, -27.453],
+ [-54.5246, -27.5059],
+ [-54.444, -27.472],
+ [-54.47081, -27.42674],
+ [-54.41, -27.405],
+ [-54.35466, -27.46528],
+ [-54.34067, -27.40311],
+ [-54.28484, -27.44819],
+ [-54.261, -27.397],
+ [-54.21736, -27.38603],
+ [-54.172, -27.254],
+ [-54.15619, -27.29619],
+ [-54.08872, -27.30149],
+ [-54.01026, -27.19978],
+ [-53.96219, -27.19698],
+ [-53.95195, -27.15169],
+ [-53.79879, -27.14629],
+ [-53.80233, -27.04028],
+ [-53.76087, -27.06543],
+ [-53.78585, -27.02674],
+ [-53.7473, -27.03218],
+ [-53.7092, -26.93414],
+ [-53.67125, -26.94222],
+ [-53.69684, -26.86015],
+ [-53.66059, -26.85814],
+ [-53.75814, -26.72045],
+ [-53.7205, -26.65099],
+ [-53.75864, -26.64113],
+ [-53.63739, -26.24968],
+ [-53.742, -26.108],
+ [-53.73409, -26.04333],
+ [-53.83619, -25.97166],
+ [-53.82214, -25.79377],
+ [-53.89113, -25.62286],
+ [-53.94895, -25.6117],
+ [-53.95638, -25.64628],
+ [-54.01, -25.567],
+ [-54.07592, -25.55766],
+ [-54.098, -25.619],
+ [-54.099, -25.495],
+ [-54.206, -25.541],
+ [-54.178, -25.584],
+ [-54.23, -25.562],
+ [-54.25, -25.597],
+ [-54.28, -25.556],
+ [-54.38395, -25.59747],
+ [-54.43288, -25.69756],
+ [-54.4927, -25.6181],
+ [-54.59354, -25.59275],
+ [-54.61941, -25.45312],
+ [-54.4295, -25.15915],
+ [-54.43548, -24.94769],
+ [-54.32437, -24.66059],
+ [-54.32714, -24.47073],
+ [-54.25877, -24.36377],
+ [-54.34537, -24.14705],
+ [-54.28223, -24.07336],
+ [-54.43984, -23.90446],
+ [-54.66978, -23.81262],
+ [-54.70533, -23.86452],
+ [-54.89, -23.898],
+ [-54.924, -23.959],
+ [-55.06223, -23.99335],
+ [-55.107, -23.961],
+ [-55.22907, -24.01383],
+ [-55.30415, -23.96504],
+ [-55.34542, -23.99458],
+ [-55.41423, -23.9645],
+ [-55.44167, -23.70084],
+ [-55.47306, -23.64834],
+ [-55.53989, -23.625],
+ [-55.52356, -23.19733],
+ [-55.54199, -23.1561],
+ [-55.59635, -23.14993],
+ [-55.66578, -22.85274],
+ [-55.61432, -22.65521],
+ [-55.72364, -22.55166],
+ [-55.74302, -22.39266],
+ [-55.78939, -22.3846],
+ [-55.84304, -22.28725],
+ [-56.20983, -22.27805],
+ [-56.36485, -22.16949],
+ [-56.39404, -22.07434],
+ [-56.50711, -22.09561],
+ [-56.63705, -22.26341],
+ [-56.70344, -22.21693],
+ [-56.72026, -22.26479],
+ [-56.79344, -22.24238],
+ [-56.84285, -22.30155],
+ [-56.88343, -22.24755],
+ [-56.9967, -22.22246],
+ [-57.3744, -22.23204],
+ [-57.5804, -22.17534],
+ [-57.6106, -22.09462],
+ [-57.70751, -22.09111],
+ [-57.80183, -22.15072],
+ [-57.99384, -22.09023],
+ [-58.00946, -22.04038],
+ [-57.91281, -21.88266],
+ [-57.96603, -21.85045],
+ [-57.90866, -21.77355],
+ [-57.94714, -21.74413],
+ [-57.88329, -21.68903],
+ [-57.93436, -21.65037],
+ [-57.91387, -21.59021],
+ [-57.96795, -21.52432],
+ [-57.8535, -21.33109],
+ [-57.92019, -21.27655],
+ [-57.85066, -21.22407],
+ [-57.86834, -21.04417],
+ [-57.81919, -20.94066],
+ [-57.92836, -20.90036],
+ [-57.8552, -20.83403],
+ [-57.89863, -20.78872],
+ [-57.96183, -20.7916],
+ [-57.93478, -20.74565],
+ [-57.86732, -20.73265],
+ [-57.92414, -20.66392],
+ [-57.98848, -20.69879],
+ [-57.99847, -20.43551],
+ [-58.09339, -20.35554],
+ [-58.09596, -20.25445],
+ [-58.16216, -20.25953],
+ [-58.12152, -20.19246],
+ [-58.16932, -20.1694],
+ [-57.95347, -20.02094],
+ [-57.90248, -20.04207],
+ [-57.85796, -19.9703],
+ [-58.131, -19.758],
+ [-57.784, -19.033],
+ [-57.694, -19.011],
+ [-57.719, -18.899],
+ [-57.766, -18.899],
+ [-57.557, -18.24],
+ [-57.453, -18.231],
+ [-57.574, -18.131],
+ [-57.72302, -17.83074],
+ [-57.68472, -17.8306],
+ [-57.70991, -17.72702],
+ [-57.783, -17.639],
+ [-57.73696, -17.5583],
+ [-57.883, -17.449],
+ [-57.996, -17.515],
+ [-58.06, -17.45],
+ [-58.116, -17.451],
+ [-58.151, -17.384],
+ [-58.263, -17.344],
+ [-58.396, -17.181],
+ [-58.423, -16.989],
+ [-58.474, -16.935],
+ [-58.47, -16.703],
+ [-58.436, -16.592],
+ [-58.333, -16.49],
+ [-58.32227, -16.26559],
+ [-58.388, -16.261],
+ [-58.43059, -16.32264],
+ [-60.17335, -16.26672],
+ [-60.238, -15.473],
+ [-60.57543, -15.09677],
+ [-60.244, -15.096],
+ [-60.272, -14.62],
+ [-60.321, -14.608],
+ [-60.492, -14.188],
+ [-60.479, -14.097],
+ [-60.38066, -13.9888],
+ [-60.45062, -13.9364],
+ [-60.45599, -13.85422],
+ [-60.49068, -13.85782],
+ [-60.46776, -13.79446],
+ [-60.76755, -13.68329],
+ [-60.87678, -13.62149],
+ [-60.91857, -13.54334],
+ [-61.0056, -13.552],
+ [-61.0129, -13.48925],
+ [-61.0938, -13.49081],
+ [-61.10314, -13.53056],
+ [-61.18155, -13.50557],
+ [-61.19236, -13.53695],
+ [-61.29954, -13.47718],
+ [-61.46527, -13.55427],
+ [-61.57927, -13.48711],
+ [-61.852, -13.538],
+ [-61.892, -13.431],
+ [-61.96968, -13.40759],
+ [-61.97592, -13.36695],
+ [-62.11498, -13.25932],
+ [-62.115, -13.163],
+ [-62.15254, -13.15993],
+ [-62.16703, -13.11346],
+ [-62.19, -13.153],
+ [-62.214, -13.111],
+ [-62.27269, -13.15687],
+ [-62.39178, -13.13471],
+ [-62.453, -13.064],
+ [-62.612, -13.041],
+ [-62.65, -12.965],
+ [-62.729, -13.02],
+ [-62.779, -13.009],
+ [-62.89672, -12.8539],
+ [-63.01134, -12.83602],
+ [-63.08186, -12.72323],
+ [-63.06163, -12.68584],
+ [-63.15726, -12.6138],
+ [-63.24621, -12.66222],
+ [-63.23713, -12.69043],
+ [-63.30125, -12.68138],
+ [-63.44052, -12.608],
+ [-63.43627, -12.56526],
+ [-63.50641, -12.56562],
+ [-63.55295, -12.50598],
+ [-63.7848, -12.42871],
+ [-63.88957, -12.44745],
+ [-63.89949, -12.50204],
+ [-63.95144, -12.53179],
+ [-64.13464, -12.47732],
+ [-64.16781, -12.51503],
+ [-64.17504, -12.46675],
+ [-64.22945, -12.45419],
+ [-64.29018, -12.50313],
+ [-64.29452, -12.4582],
+ [-64.41057, -12.44436],
+ [-64.51217, -12.3551],
+ [-64.51256, -12.22562],
+ [-64.70406, -12.1827],
+ [-64.70719, -12.08684],
+ [-64.75486, -12.15762],
+ [-64.7688, -12.09356],
+ [-64.83747, -12.11786],
+ [-64.80954, -12.05633],
+ [-64.84077, -12.01027],
+ [-65.03548, -11.99408],
+ [-65.01398, -11.90303],
+ [-65.0727, -11.86587],
+ [-65.08672, -11.7082],
+ [-65.18953, -11.72353],
+ [-65.18216, -11.75609],
+ [-65.2593, -11.71053],
+ [-65.21178, -11.52857],
+ [-65.3074, -11.49957],
+ [-65.33276, -11.33986],
+ [-65.29053, -11.32275],
+ [-65.34347, -11.3082],
+ [-65.35834, -11.26834],
+ [-65.35938, -11.22067],
+ [-65.31294, -11.19578],
+ [-65.35387, -11.18419],
+ [-65.36177, -11.14031],
+ [-65.28269, -11.09009],
+ [-65.30071, -11.03142],
+ [-65.25053, -10.98506],
+ [-65.27476, -10.87302],
+ [-65.35376, -10.78881],
+ [-65.34667, -10.68155],
+ [-65.40569, -10.63935],
+ [-65.43011, -10.48505],
+ [-65.288, -10.219],
+ [-65.333, -9.965],
+ [-65.28588, -9.84413],
+ [-65.39313, -9.68683],
+ [-65.44394, -9.66957],
+ [-65.4883, -9.71015],
+ [-65.55611, -9.84498],
+ [-65.627, -9.83804],
+ [-65.66963, -9.78129],
+ [-65.71023, -9.80857],
+ [-65.68395, -9.74992],
+ [-65.7432, -9.78296],
+ [-65.77013, -9.73442],
+ [-65.79437, -9.79295],
+ [-65.79962, -9.75663],
+ [-65.86532, -9.79533],
+ [-65.87184, -9.75307],
+ [-65.91976, -9.75314],
+ [-65.98222, -9.81011],
+ [-66.151, -9.785],
+ [-66.426, -9.899],
+ [-66.435, -9.866],
+ [-66.61995, -9.89353],
+ [-66.63701, -9.94983],
+ [-66.8751, -10.08268],
+ [-66.9528, -10.18886],
+ [-66.99683, -10.20017],
+ [-67.01537, -10.25919],
+ [-67.17745, -10.33923],
+ [-67.31545, -10.31932],
+ [-67.31155, -10.37716],
+ [-67.40717, -10.37386],
+ [-67.44361, -10.45492],
+ [-67.57925, -10.5028],
+ [-67.64028, -10.59807],
+ [-67.67631, -10.60484],
+ [-67.70825, -10.71083],
+ [-67.86386, -10.64067],
+ [-68.03289, -10.65486],
+ [-68.10456, -10.71426],
+ [-68.10333, -10.77541],
+ [-68.27819, -10.98926],
+ [-68.71576, -11.14483],
+ [-68.75767, -11.00079],
+ [-68.9118, -11.02192],
+ [-69.41453, -10.92575],
+ [-69.73653, -10.97445],
+ [-69.76903, -10.92972],
+ [-69.93442, -10.9219],
+ [-70.15869, -11.04096],
+ [-70.30672, -11.06983],
+ [-70.43675, -11.03923],
+ [-70.53033, -10.93465],
+ [-70.62103, -10.99982],
+ [-70.62338, -9.82054],
+ [-70.53663, -9.76584],
+ [-70.59972, -9.56264],
+ [-70.55282, -9.57093],
+ [-70.56894, -9.53127],
+ [-70.50506, -9.50557],
+ [-70.49665, -9.42489],
+ [-70.59581, -9.4425],
+ [-70.6632, -9.52601],
+ [-70.75067, -9.56043],
+ [-70.79332, -9.63846],
+ [-70.96337, -9.74891],
+ [-70.99391, -9.81721],
+ [-71.13974, -9.85702],
+ [-71.22052, -9.96968],
+ [-72.1804, -9.99967],
+ [-72.15136, -9.79742],
+ [-72.26296, -9.75085],
+ [-72.25282, -9.61633],
+ [-72.28821, -9.60316],
+ [-72.2829, -9.53995],
+ [-72.35688, -9.4946],
+ [-72.51954, -9.49128],
+ [-72.71676, -9.4122],
+ [-73.2038, -9.40715],
+ [-73.07352, -9.23461],
+ [-73.0093, -9.22236],
+ [-73.02612, -9.17786],
+ [-72.9582, -9.14302],
+ [-72.94091, -8.98494],
+ [-72.99931, -8.91778],
+ [-73.05901, -8.90561],
+ [-73.14992, -8.6839],
+ [-73.20907, -8.6857],
+ [-73.28745, -8.61948],
+ [-73.3055, -8.47197],
+ [-73.38956, -8.46878],
+ [-73.41286, -8.41099],
+ [-73.53744, -8.34587],
+ [-73.62739, -8.02187],
+ [-73.73175, -7.9684],
+ [-73.7725, -7.90237],
+ [-73.76164, -7.85803],
+ [-73.69706, -7.86527],
+ [-73.6843, -7.77644],
+ [-73.82217, -7.71788],
+ [-73.99094, -7.53635],
+ [-73.948, -7.52661],
+ [-73.91981, -7.46568],
+ [-73.96394, -7.34764],
+ [-73.87014, -7.37882],
+ [-73.7003, -7.30429],
+ [-73.79842, -7.11306],
+ [-73.71046, -6.84019],
+ [-73.53639, -6.6834],
+ [-73.39115, -6.64193],
+ [-73.35281, -6.59327],
+ [-73.22741, -6.58884],
+ [-73.18797, -6.52302],
+ [-73.13523, -6.51046],
+ [-73.10473, -6.40666],
+ [-73.24664, -6.14963],
+ [-73.23821, -6.04399],
+ [-73.1868, -6.00512],
+ [-73.15207, -5.86796],
+ [-73.05303, -5.79517],
+ [-72.95912, -5.65689],
+ [-72.95888, -5.46613],
+ [-72.86052, -5.27117],
+ [-72.88725, -5.16307],
+ [-72.73986, -5.08859],
+ [-72.72765, -5.05199],
+ [-72.6212, -5.0518],
+ [-72.598, -4.98386],
+ [-72.38202, -4.87296],
+ [-72.36895, -4.80387],
+ [-72.12601, -4.73454],
+ [-72.04335, -4.62384],
+ [-72.00689, -4.64622],
+ [-71.99464, -4.60996],
+ [-71.94743, -4.60877],
+ [-71.91909, -4.5298],
+ [-71.88549, -4.53803],
+ [-71.9073, -4.51644],
+ [-71.76637, -4.50446],
+ [-71.75109, -4.46887],
+ [-71.70817, -4.51165],
+ [-71.65479, -4.47246],
+ [-71.65032, -4.50395],
+ [-71.61548, -4.4687],
+ [-71.6335, -4.51524],
+ [-71.59625, -4.52928],
+ [-71.53703, -4.46442],
+ [-71.49428, -4.48701],
+ [-71.50716, -4.43909],
+ [-71.43438, -4.42882],
+ [-71.42562, -4.47058],
+ [-71.35026, -4.42728],
+ [-71.30752, -4.46288],
+ [-71.32091, -4.42009],
+ [-71.27782, -4.44217],
+ [-71.26975, -4.385],
+ [-71.20263, -4.37987],
+ [-71.19422, -4.42471],
+ [-71.14478, -4.38158],
+ [-71.11491, -4.41119],
+ [-71.10616, -4.37764],
+ [-70.99389, -4.38654],
+ [-70.99595, -4.34632],
+ [-70.9357, -4.38432],
+ [-70.84483, -4.27905],
+ [-70.86447, -4.25245],
+ [-70.81677, -4.23005],
+ [-70.8458, -4.21872],
+ [-70.75901, -4.15944],
+ [-70.68147, -4.20791],
+ [-70.64256, -4.12805],
+ [-70.62521, -4.19151],
+ [-70.56118, -4.1775],
+ [-70.57357, -4.21169],
+ [-70.54796, -4.13671],
+ [-70.51036, -4.14824],
+ [-70.50417, -4.20098],
+ [-70.48535, -4.16132],
+ [-70.43435, -4.16266],
+ [-70.43146, -4.13217],
+ [-70.33892, -4.17997],
+ [-70.32281, -4.14206],
+ [-70.28769, -4.16555],
+ [-70.29141, -4.28709],
+ [-70.21457, -4.29749],
+ [-70.19194, -4.36179],
+ [-70.15508, -4.27308],
+ [-70.11749, -4.28585],
+ [-70.10881, -4.25454],
+ [-70.04189, -4.29409],
+ [-70.07948, -4.31428],
+ [-70.02826, -4.3703],
+ [-69.99182, -4.37482],
+ [-69.94793, -4.23168]
+ ],
+ [
+ [-34.00035, -3.76654],
+ [-34.01797, -3.84985],
+ [-34.00664, -3.91809],
+ [-33.98608, -3.95952],
+ [-33.95923, -3.99217],
+ [-33.8921, -4.03653],
+ [-33.81658, -4.05077],
+ [-33.72931, -4.03151],
+ [-33.66638, -3.9838],
+ [-33.62736, -3.9185],
+ [-33.61519, -3.84985],
+ [-33.63239, -3.76864],
+ [-33.68693, -3.69537],
+ [-33.74987, -3.65978],
+ [-33.81658, -3.6489],
+ [-33.89336, -3.66397],
+ [-33.96007, -3.70877],
+ [-34.00035, -3.76654]
+ ],
+ [
+ [-32.5538, -4.00884],
+ [-32.59937, -3.9531],
+ [-32.64061, -3.87309],
+ [-32.61755, -3.73712],
+ [-32.58338, -3.70527],
+ [-32.54228, -3.65606],
+ [-32.4592, -3.63029],
+ [-32.35174, -3.63887],
+ [-32.30049, -3.67684],
+ [-32.24749, -3.75266],
+ [-32.23155, -3.81889],
+ [-32.2357, -3.90247],
+ [-32.30194, -3.9883],
+ [-32.42898, -4.0384],
+ [-32.5538, -4.00884]
+ ],
+ [
+ [-29.50321, 0.79391],
+ [-29.54097, 0.8689],
+ [-29.54727, 0.92553],
+ [-29.52367, 0.99422],
+ [-29.48958, 1.06134],
+ [-29.43136, 1.10224],
+ [-29.35899, 1.1206],
+ [-29.29238, 1.11378],
+ [-29.22158, 1.0776],
+ [-29.16285, 1.00314],
+ [-29.14501, 0.92605],
+ [-29.14764, 0.88358],
+ [-29.17176, 0.8196],
+ [-29.24885, 0.74357],
+ [-29.29448, 0.72521],
+ [-29.36371, 0.71892],
+ [-29.43556, 0.73937],
+ [-29.50321, 0.79391]
+ ],
+ [
+ [-29.09537, -20.42649],
+ [-29.19756, -20.33509],
+ [-29.3343, -20.28932],
+ [-29.46741, -20.3288],
+ [-29.54604, -20.42958],
+ [-29.55396, -20.52706],
+ [-29.51696, -20.62613],
+ [-29.40995, -20.68955],
+ [-29.27599, -20.72578],
+ [-29.15968, -20.66209],
+ [-29.07188, -20.57088],
+ [-28.9712, -20.64769],
+ [-28.83286, -20.69814],
+ [-28.67968, -20.62099],
+ [-28.63549, -20.49284],
+ [-28.63412, -20.47146],
+ [-28.7431, -20.30094],
+ [-28.8683, -20.27288],
+ [-29.0031, -20.32416],
+ [-29.09537, -20.42649]
+ ]
+ ],
+ "terms_text": "IBGE",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAOsSURBVHja7JXbb1RVFIe/fTmn05lepp0OpTcuUgQEElGgGGJSNYhggpdoTEz8m3w1xsQHE00MJj5oDGKCRI2IqKEKlpZCaSmXXubWmc6Zc/bFhwGp3N540LiTX7KTvbLWyvp+WVt473mUR/KIz7+/gJ64uNisJAW1lcbGUz9f+MQ6l5dCGID7EWpEMYcO7GB6tsifE9cItGo+CEEYaLyXl/p620+O7Nn2rp67sQCAUpLFpeXRYsWOKCUBcZ/UgqgRs2tnP5l0K2Pnx/GEJLYZ7RHU6hYwjy+V5l+KomStbElpmlKUl6NXpRQ0xV0SJCZhaKCdwwd2cHmmQJI4lAQpQAiQwqOkQEmJVprr89UjOt+TQylJobA8Wig0Xpby/liiKGawv503jjyFFJJiuY6Q4sFwpcAYl9JJnECguDq39EpinAoCif97QALnHEli2Lq5hxdHt5JpDZoJBDj3YLjOQyqUVb1UKCGlYH6xuk+pW7A8GOexJiHdqtn39AbW9nbw2Re/sbLS4Jk9mxgayHL23HUS41FyNaWmMax1ZPPtZ8Xv49eZXygdPnXmypcCiRAQhpqOtpB1g53sH9lMpVLno09P47xCSIjjhNcO7ySKYn4du4oxDucFUkqkFAgB1lp271p/SOdzbUT12tvbhntIZwLyXW309+XIdWcIAg3A+OQNEguplmarRinmbpQ5+NwT7N61EZMYKrWYUjmiUlmhutKgNaXG1g92H9dz1wrpqculkSg21OqOhcWIPy40reu9ZdvmXrq6Mgg8znkQAmsM+e4MADOzi/wyNsNSsU6tmhAbSxwbtgznfspkWqwulupHLs0UhtVd7nG3WMxcneSFZx/j4PNbOPHdRZx17N+7jlx3mo+PnmZ2roTzAqUkUkqEkKRSOh7s73nfuwB9c6H4phASpf5ZQN2++ICp6SLvvLWXTRvW4L1nemaRz786R62WEIYaLe7Y1VhHbz79Q0tKnqnWq8hCKXpSqYf5GeoNgzGObGeaiambHDsxQSN2tLQEiFXJPeC9p7M99bWUEikkMtSi5B/mZ+fpzraiteLHM1N8c3ISrTVKins3lfekU6rSu6btaBwnWGuQA33ZD7x3WNuE6P1tNbsx1tK/toMrs0uc+H6KIAyA1XF3lCSWgb7ssaGB/MVcVwc93Z3o7duH3yuWl7Pl5fh1JYKs815a571A4Lynoz0k35Ph+LfnybSG97BavQnDQIZdXZkPy8sNrG2ORfz/Zf73C/w1AJZ/tYbRRy7/AAAAAElFTkSuQmCC"
+ },
+ {
+ "id": "IBGE_Setores_Urbanos",
+ "name": "IBGE Mapa de Setores Urbanos",
+ "type": "tms",
+ "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/tmpsantos.hgda0m6h/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJncjlmd0t3In0.DmZsIeOW-3x-C5eX-wAqTw",
+ "scaleExtent": [0, 19],
+ "polygon": [
+ [
+ [-69.94793, -4.23168],
+ [-69.45659, -1.49119],
+ [-69.3973, -1.36508],
+ [-69.42989, -1.22173],
+ [-69.39523, -1.12555],
+ [-69.44292, -1.03351],
+ [-69.41861, -0.99827],
+ [-69.528, -0.92514],
+ [-69.52577, -0.86807],
+ [-69.62491, -0.74667],
+ [-69.56179, -0.63692],
+ [-69.60783, -0.5008],
+ [-69.8446, -0.33732],
+ [-69.92054, -0.32573],
+ [-70.04323, -0.18998],
+ [-70.04302, 0.56359],
+ [-69.80272, 0.57162],
+ [-69.6711, 0.66759],
+ [-69.60529, 0.61328],
+ [-69.59701, 0.6542],
+ [-69.48002, 0.73577],
+ [-69.35277, 0.61416],
+ [-69.28914, 0.64997],
+ [-69.29484, 0.60389],
+ [-69.19975, 0.60591],
+ [-69.19425, 0.64982],
+ [-69.11563, 0.64484],
+ [-69.19001, 0.74056],
+ [-69.14881, 0.76751],
+ [-69.13576, 0.87204],
+ [-69.18846, 0.91324],
+ [-69.1646, 0.94156],
+ [-69.21679, 0.97245],
+ [-69.19773, 0.99974],
+ [-69.24494, 1.05655],
+ [-69.37641, 1.08794],
+ [-69.42312, 1.04265],
+ [-69.60989, 1.09826],
+ [-69.67718, 1.06994],
+ [-69.70963, 1.11817],
+ [-69.84266, 1.07272],
+ [-69.83972, 1.71893],
+ [-69.78236, 1.69244],
+ [-69.53464, 1.77691],
+ [-69.39109, 1.72935],
+ [-68.1645, 1.72945],
+ [-68.19207, 1.7797],
+ [-68.23954, 1.77044],
+ [-68.22688, 1.82918],
+ [-68.28555, 1.83084],
+ [-68.19583, 2.03479],
+ [-68.18033, 1.9767],
+ [-68.14417, 1.97854],
+ [-68.09043, 1.89774],
+ [-67.90162, 1.81165],
+ [-67.76942, 2.00924],
+ [-67.55095, 2.04769],
+ [-67.49519, 2.16312],
+ [-67.39404, 2.22894],
+ [-67.32672, 2.06387],
+ [-67.33083, 1.94158],
+ [-67.22831, 1.84127],
+ [-67.15384, 1.8315],
+ [-67.15922, 1.67504],
+ [-67.08017, 1.38546],
+ [-67.13923, 1.32002],
+ [-67.08675, 1.16704],
+ [-66.85119, 1.22896],
+ [-66.31032, 0.74494],
+ [-66.19737, 0.78161],
+ [-66.07783, 0.76174],
+ [-66.07024, 0.8123],
+ [-65.96712, 0.81511],
+ [-65.88369, 0.94159],
+ [-65.77261, 0.95859],
+ [-65.7421, 1.00125],
+ [-65.58894, 1.00471],
+ [-65.49624, 0.87415],
+ [-65.60623, 0.70748],
+ [-65.54116, 0.64881],
+ [-65.44499, 0.68921],
+ [-65.39213, 0.75692],
+ [-65.41198, 0.82415],
+ [-65.32734, 0.93596],
+ [-65.21302, 0.90282],
+ [-65.1749, 0.94131],
+ [-65.15831, 1.1246],
+ [-65.07232, 1.15303],
+ [-65.06317, 1.11205],
+ [-65.01361, 1.10905],
+ [-64.97445, 1.20288],
+ [-64.90439, 1.25153],
+ [-64.86966, 1.22713],
+ [-64.80053, 1.31527],
+ [-64.74446, 1.22569],
+ [-64.5789, 1.34041],
+ [-64.52608, 1.44322],
+ [-64.43586, 1.47006],
+ [-64.3939, 1.52901],
+ [-64.35111, 1.52921],
+ [-64.34777, 1.49508],
+ [-64.41019, 1.40301],
+ [-64.33791, 1.36134],
+ [-64.3136, 1.45617],
+ [-64.19707, 1.52071],
+ [-64.0735, 1.64902],
+ [-64.05781, 1.92899],
+ [-63.97219, 1.99194],
+ [-63.83555, 1.96644],
+ [-63.71155, 2.04645],
+ [-63.66501, 2.01861],
+ [-63.6268, 2.11222],
+ [-63.56474, 2.13571],
+ [-63.44059, 2.126],
+ [-63.36742, 2.26864],
+ [-63.37088, 2.41121],
+ [-63.42123, 2.45102],
+ [-63.46036, 2.39684],
+ [-63.56398, 2.44573],
+ [-63.76805, 2.43994],
+ [-63.84358, 2.4916],
+ [-64.01914, 2.46135],
+ [-64.0573, 2.49752],
+ [-63.98033, 2.7237],
+ [-64.07709, 2.87262],
+ [-64.07156, 2.92142],
+ [-64.12349, 2.99048],
+ [-64.15754, 2.98243],
+ [-64.14592, 3.03459],
+ [-64.22642, 3.12356],
+ [-64.19795, 3.20121],
+ [-64.2444, 3.43036],
+ [-64.17437, 3.56841],
+ [-64.281, 3.70928],
+ [-64.54357, 3.85713],
+ [-64.72239, 4.11775],
+ [-64.80203, 4.17422],
+ [-64.81123, 4.27048],
+ [-64.69522, 4.25323],
+ [-64.623, 4.135],
+ [-64.5565, 4.10529],
+ [-64.164, 4.127],
+ [-63.964, 3.868],
+ [-63.928, 3.925],
+ [-63.85, 3.95],
+ [-63.682, 3.908],
+ [-63.676, 4.019],
+ [-63.591, 3.886],
+ [-63.497, 3.84],
+ [-63.489, 3.874],
+ [-63.434, 3.865],
+ [-63.428, 3.977],
+ [-63.204, 3.952],
+ [-63.226, 3.836],
+ [-63.103, 3.794],
+ [-63.059, 3.748],
+ [-63.081, 3.694],
+ [-62.96, 3.608],
+ [-62.835, 3.739],
+ [-62.743, 3.674],
+ [-62.729, 3.805],
+ [-62.788, 3.894],
+ [-62.753, 4.032],
+ [-62.555, 4.019],
+ [-62.552, 4.109],
+ [-62.437, 4.183],
+ [-62.14308, 4.07768],
+ [-62.071, 4.126],
+ [-62.076, 4.154],
+ [-61.982, 4.181],
+ [-61.93175, 4.12009],
+ [-61.92213, 4.16126],
+ [-61.824, 4.164],
+ [-61.802, 4.229],
+ [-61.724, 4.27],
+ [-61.56, 4.252],
+ [-61.508, 4.322],
+ [-61.513, 4.406],
+ [-61.288, 4.458],
+ [-61.323, 4.535],
+ [-61.217, 4.536],
+ [-61.14559, 4.48016],
+ [-61.095, 4.522],
+ [-60.994, 4.519],
+ [-60.932, 4.587],
+ [-60.949, 4.653],
+ [-60.899, 4.717],
+ [-60.751, 4.756],
+ [-60.591, 4.927],
+ [-60.661, 5.164],
+ [-60.73197, 5.21203],
+ [-60.434, 5.182],
+ [-60.20825, 5.28346],
+ [-60.172, 5.227],
+ [-60.135, 5.249],
+ [-60.094, 5.14],
+ [-59.96984, 5.06334],
+ [-60.02524, 4.7065],
+ [-60.0705, 4.61688],
+ [-60.15725, 4.57247],
+ [-60.16114, 4.51773],
+ [-59.79503, 4.46554],
+ [-59.66948, 4.37629],
+ [-59.7319, 4.28587],
+ [-59.73069, 4.18076],
+ [-59.61818, 4.13166],
+ [-59.65406, 4.06943],
+ [-59.58417, 3.96851],
+ [-59.5153, 3.94493],
+ [-59.59279, 3.88538],
+ [-59.59631, 3.79386],
+ [-59.66555, 3.78126],
+ [-59.66842, 3.70277],
+ [-59.86728, 3.57776],
+ [-59.80205, 3.50156],
+ [-59.8408, 3.43174],
+ [-59.80488, 3.35695],
+ [-59.907, 3.212],
+ [-59.98944, 2.88185],
+ [-59.99, 2.686],
+ [-59.895, 2.482],
+ [-59.89872, 2.36245],
+ [-59.72315, 2.27614],
+ [-59.751, 1.859],
+ [-59.677, 1.839],
+ [-59.663, 1.871],
+ [-59.69, 1.757],
+ [-59.539, 1.723],
+ [-59.381, 1.507],
+ [-59.329, 1.514],
+ [-59.327, 1.464],
+ [-59.284, 1.45],
+ [-59.253, 1.389],
+ [-58.978, 1.302],
+ [-58.918, 1.317],
+ [-58.886, 1.261],
+ [-58.912, 1.239],
+ [-58.82512, 1.17127],
+ [-58.73956, 1.1999],
+ [-58.69456, 1.29732],
+ [-58.49622, 1.26796],
+ [-58.45787, 1.37145],
+ [-58.50511, 1.40317],
+ [-58.50873, 1.46295],
+ [-58.38559, 1.46999],
+ [-58.39472, 1.52651],
+ [-58.32237, 1.59702],
+ [-58.236, 1.54669],
+ [-58.16064, 1.56011],
+ [-58.12942, 1.4989],
+ [-58.00423, 1.50303],
+ [-57.99009, 1.65844],
+ [-57.85206, 1.66782],
+ [-57.77431, 1.72973],
+ [-57.70509, 1.73093],
+ [-57.65042, 1.68237],
+ [-57.5376, 1.7005],
+ [-57.50187, 1.78609],
+ [-57.43776, 1.82681],
+ [-57.43343, 1.90598],
+ [-57.36768, 1.92372],
+ [-57.36912, 1.95638],
+ [-57.30712, 1.99665],
+ [-57.22923, 1.93759],
+ [-57.08668, 2.02644],
+ [-57.01421, 1.91489],
+ [-56.91971, 1.93036],
+ [-56.79793, 1.85336],
+ [-56.72096, 1.92582],
+ [-56.62145, 1.94588],
+ [-56.57976, 1.90588],
+ [-56.45126, 1.95614],
+ [-56.24404, 1.87808],
+ [-56.1709, 1.90048],
+ [-56.11762, 1.85097],
+ [-55.95638, 1.84509],
+ [-55.90385, 1.88803],
+ [-55.93635, 1.98647],
+ [-55.9031, 2.04108],
+ [-56.00307, 2.1676],
+ [-56.05505, 2.18464],
+ [-56.04288, 2.22778],
+ [-56.13887, 2.26574],
+ [-56.09012, 2.37228],
+ [-56.02181, 2.34247],
+ [-55.97052, 2.52931],
+ [-55.76663, 2.45524],
+ [-55.71028, 2.39917],
+ [-55.49971, 2.44324],
+ [-55.38533, 2.41836],
+ [-55.32019, 2.51537],
+ [-55.23474, 2.50338],
+ [-55.1234, 2.56762],
+ [-55.10302, 2.52564],
+ [-54.95424, 2.58359],
+ [-54.86846, 2.43989],
+ [-54.68917, 2.45389],
+ [-54.68861, 2.32472],
+ [-54.54667, 2.31833],
+ [-54.53778, 2.26556],
+ [-54.46861, 2.21306],
+ [-54.24917, 2.14667],
+ [-54.18056, 2.1725],
+ [-54.11083, 2.11222],
+ [-54.06139, 2.19167],
+ [-53.94083, 2.21917],
+ [-53.93194, 2.27194],
+ [-53.88667, 2.26778],
+ [-53.745, 2.37389],
+ [-53.73389, 2.31222],
+ [-53.52972, 2.24917],
+ [-53.45861, 2.2575],
+ [-53.32833, 2.35333],
+ [-53.21667, 2.25333],
+ [-53.27899, 2.18603],
+ [-53.11861, 2.2225],
+ [-52.99472, 2.17528],
+ [-52.90972, 2.19583],
+ [-52.84722, 2.28556],
+ [-52.67528, 2.37389],
+ [-52.59444, 2.47389],
+ [-52.54028, 2.57028],
+ [-52.56417, 2.63944],
+ [-52.43944, 2.87778],
+ [-52.39583, 2.90222],
+ [-52.33187, 3.16938],
+ [-52.21472, 3.26833],
+ [-51.97104, 3.70696],
+ [-51.92148, 3.72422],
+ [-51.922, 3.7792],
+ [-51.79731, 3.88888],
+ [-51.77783, 3.97406],
+ [-51.65867, 4.05276],
+ [-51.61325, 4.17437],
+ [-51.63716, 4.50834],
+ [-51.49427, 4.67426],
+ [-51.11466, 4.42286],
+ [-50.94232, 4.20165],
+ [-50.85475, 3.92491],
+ [-50.85507, 3.45573],
+ [-50.75331, 2.94057],
+ [-50.29908, 2.33079],
+ [-49.73896, 1.79143],
+ [-48.23746, -0.07449],
+ [-44.84728, -1.07246],
+ [-43.54602, -2.04705],
+ [-43.24389, -2.12403],
+ [-42.78189, -2.33053],
+ [-41.78084, -2.51859],
+ [-41.5085, -2.68486],
+ [-40.66365, -2.63829],
+ [-40.50396, -2.57531],
+ [-39.8907, -2.65328],
+ [-39.15187, -3.04444],
+ [-38.57151, -3.48047],
+ [-38.34306, -3.54434],
+ [-38.21421, -3.74103],
+ [-38.12555, -3.80544],
+ [-37.90182, -4.07265],
+ [-37.77934, -4.18046],
+ [-37.63401, -4.24454],
+ [-37.51218, -4.41535],
+ [-37.22122, -4.51045],
+ [-37.07874, -4.71355],
+ [-36.91716, -4.71372],
+ [-36.62299, -4.85815],
+ [-36.18969, -4.88505],
+ [-35.93627, -4.83327],
+ [-35.56471, -4.90758],
+ [-35.33677, -4.99239],
+ [-35.17659, -5.12497],
+ [-34.79469, -6.33583],
+ [-34.71587, -6.74615],
+ [-34.62306, -6.90323],
+ [-34.59953, -7.11133],
+ [-34.64374, -7.98735],
+ [-34.81497, -8.62472],
+ [-35.0253, -9.13761],
+ [-35.55848, -9.81261],
+ [-35.69663, -9.90026],
+ [-35.96401, -10.31281],
+ [-36.06155, -10.37447],
+ [-36.26639, -10.64593],
+ [-36.61764, -10.81082],
+ [-36.78725, -10.95151],
+ [-36.99511, -11.29602],
+ [-37.11368, -11.41261],
+ [-37.46002, -12.10275],
+ [-37.89668, -12.75844],
+ [-38.22146, -13.09717],
+ [-38.61146, -13.26537],
+ [-38.85337, -14.65508],
+ [-38.74388, -15.60089],
+ [-38.66456, -15.74741],
+ [-38.64697, -15.88327],
+ [-38.8013, -16.24838],
+ [-38.92933, -16.80775],
+ [-38.53193, -17.80026],
+ [-38.49171, -18.0046],
+ [-38.53661, -18.09683],
+ [-38.67053, -18.16855],
+ [-39.35288, -18.10892],
+ [-39.4675, -18.30359],
+ [-39.54529, -18.78548],
+ [-39.49227, -19.40134],
+ [-39.63477, -19.74403],
+ [-39.86353, -19.88681],
+ [-40.17827, -20.75426],
+ [-40.81442, -21.67672],
+ [-40.76948, -21.87786],
+ [-40.81442, -22.09702],
+ [-41.5086, -22.52638],
+ [-41.59666, -22.83627],
+ [-41.79292, -23.08823],
+ [-41.91484, -23.18527],
+ [-43.19603, -23.26703],
+ [-44.07735, -23.40501],
+ [-45.13508, -24.12014],
+ [-46.61368, -24.67512],
+ [-47.85376, -25.47012],
+ [-48.2801, -26.23036],
+ [-48.34897, -26.75081],
+ [-48.11076, -27.28208],
+ [-48.21148, -27.85592],
+ [-48.40713, -28.43255],
+ [-48.68615, -28.76016],
+ [-48.9156, -28.86305],
+ [-49.1579, -29.02871],
+ [-49.52748, -29.42005],
+ [-49.82565, -29.86559],
+ [-50.17344, -30.64282],
+ [-50.60441, -31.24135],
+ [-51.18785, -31.77646],
+ [-51.74211, -32.10539],
+ [-51.89236, -32.29596],
+ [-52.06117, -32.38504],
+ [-52.27087, -32.92102],
+ [-52.45986, -33.25369],
+ [-52.61505, -33.42291],
+ [-53.18109, -33.86891],
+ [-53.43053, -33.73947],
+ [-53.43951, -33.69347],
+ [-53.53228, -33.6888],
+ [-53.51819, -33.15342],
+ [-53.44438, -33.05296],
+ [-53.24468, -32.93489],
+ [-53.31008, -32.91875],
+ [-53.29454, -32.89931],
+ [-53.18496, -32.85043],
+ [-53.14569, -32.79202],
+ [-53.0858, -32.78835],
+ [-53.07558, -32.74088],
+ [-53.24992, -32.6041],
+ [-53.39137, -32.58573],
+ [-53.46423, -32.48446],
+ [-53.58321, -32.45192],
+ [-53.74599, -32.07848],
+ [-53.83375, -32.05524],
+ [-53.84978, -32.00064],
+ [-53.96073, -31.95532],
+ [-53.96972, -31.91765],
+ [-54.10019, -31.92825],
+ [-54.4549, -31.65295],
+ [-54.4528, -31.59959],
+ [-54.58676, -31.45656],
+ [-54.8367, -31.442],
+ [-54.88623, -31.3773],
+ [-54.94087, -31.38068],
+ [-55.00723, -31.26692],
+ [-55.07446, -31.33216],
+ [-55.24003, -31.26062],
+ [-55.29118, -31.14226],
+ [-55.34037, -31.13144],
+ [-55.34981, -31.03922],
+ [-55.42306, -31.01823],
+ [-55.57742, -30.83309],
+ [-55.65834, -30.864],
+ [-55.66621, -30.95395],
+ [-55.723, -30.943],
+ [-55.727, -30.979],
+ [-55.882, -31.077],
+ [-56.00989, -31.08267],
+ [-56.02241, -30.78565],
+ [-56.12508, -30.73871],
+ [-56.17074, -30.61517],
+ [-56.26095, -30.58509],
+ [-56.29193, -30.51967],
+ [-56.38177, -30.49956],
+ [-56.46126, -30.38486],
+ [-56.54706, -30.35946],
+ [-56.54115, -30.31291],
+ [-56.6187, -30.30054],
+ [-56.64628, -30.20346],
+ [-56.77662, -30.1633],
+ [-56.80777, -30.10301],
+ [-57.07113, -30.08671],
+ [-57.22081, -30.28928],
+ [-57.31303, -30.25785],
+ [-57.39229, -30.30474],
+ [-57.46574, -30.26589],
+ [-57.52431, -30.28569],
+ [-57.56087, -30.21134],
+ [-57.64744, -30.19483],
+ [-57.48047, -30.12315],
+ [-57.33713, -29.99284],
+ [-57.294, -29.831],
+ [-57.121, -29.765],
+ [-56.89888, -29.53179],
+ [-56.81905, -29.48816],
+ [-56.76618, -29.37768],
+ [-56.70164, -29.35913],
+ [-56.59315, -29.12516],
+ [-56.418, -29.075],
+ [-56.40775, -28.9748],
+ [-56.29995, -28.89614],
+ [-56.29652, -28.8027],
+ [-56.17858, -28.75922],
+ [-56.00984, -28.60718],
+ [-56.01249, -28.50873],
+ [-55.88357, -28.47923],
+ [-55.87739, -28.36159],
+ [-55.75157, -28.37095],
+ [-55.69433, -28.42204],
+ [-55.67047, -28.33218],
+ [-55.77415, -28.27414],
+ [-55.7757, -28.24481],
+ [-55.63167, -28.17719],
+ [-55.60747, -28.11604],
+ [-55.55957, -28.16523],
+ [-55.4952, -28.07682],
+ [-55.44611, -28.09787],
+ [-55.368, -28.029],
+ [-55.38299, -27.97948],
+ [-55.343, -27.972],
+ [-55.32706, -27.92664],
+ [-55.26574, -27.92969],
+ [-55.196, -27.856],
+ [-55.133, -27.897],
+ [-55.106, -27.846],
+ [-55.035, -27.858],
+ [-55.081, -27.779],
+ [-54.936, -27.772],
+ [-54.90617, -27.63871],
+ [-54.85, -27.624],
+ [-54.814, -27.533],
+ [-54.775, -27.586],
+ [-54.67926, -27.57394],
+ [-54.67709, -27.508],
+ [-54.621, -27.541],
+ [-54.574, -27.453],
+ [-54.5246, -27.5059],
+ [-54.444, -27.472],
+ [-54.47081, -27.42674],
+ [-54.41, -27.405],
+ [-54.35466, -27.46528],
+ [-54.34067, -27.40311],
+ [-54.28484, -27.44819],
+ [-54.261, -27.397],
+ [-54.21736, -27.38603],
+ [-54.172, -27.254],
+ [-54.15619, -27.29619],
+ [-54.08872, -27.30149],
+ [-54.01026, -27.19978],
+ [-53.96219, -27.19698],
+ [-53.95195, -27.15169],
+ [-53.79879, -27.14629],
+ [-53.80233, -27.04028],
+ [-53.76087, -27.06543],
+ [-53.78585, -27.02674],
+ [-53.7473, -27.03218],
+ [-53.7092, -26.93414],
+ [-53.67125, -26.94222],
+ [-53.69684, -26.86015],
+ [-53.66059, -26.85814],
+ [-53.75814, -26.72045],
+ [-53.7205, -26.65099],
+ [-53.75864, -26.64113],
+ [-53.63739, -26.24968],
+ [-53.742, -26.108],
+ [-53.73409, -26.04333],
+ [-53.83619, -25.97166],
+ [-53.82214, -25.79377],
+ [-53.89113, -25.62286],
+ [-53.94895, -25.6117],
+ [-53.95638, -25.64628],
+ [-54.01, -25.567],
+ [-54.07592, -25.55766],
+ [-54.098, -25.619],
+ [-54.099, -25.495],
+ [-54.206, -25.541],
+ [-54.178, -25.584],
+ [-54.23, -25.562],
+ [-54.25, -25.597],
+ [-54.28, -25.556],
+ [-54.38395, -25.59747],
+ [-54.43288, -25.69756],
+ [-54.4927, -25.6181],
+ [-54.59354, -25.59275],
+ [-54.61941, -25.45312],
+ [-54.4295, -25.15915],
+ [-54.43548, -24.94769],
+ [-54.32437, -24.66059],
+ [-54.32714, -24.47073],
+ [-54.25877, -24.36377],
+ [-54.34537, -24.14705],
+ [-54.28223, -24.07336],
+ [-54.43984, -23.90446],
+ [-54.66978, -23.81262],
+ [-54.70533, -23.86452],
+ [-54.89, -23.898],
+ [-54.924, -23.959],
+ [-55.06223, -23.99335],
+ [-55.107, -23.961],
+ [-55.22907, -24.01383],
+ [-55.30415, -23.96504],
+ [-55.34542, -23.99458],
+ [-55.41423, -23.9645],
+ [-55.44167, -23.70084],
+ [-55.47306, -23.64834],
+ [-55.53989, -23.625],
+ [-55.52356, -23.19733],
+ [-55.54199, -23.1561],
+ [-55.59635, -23.14993],
+ [-55.66578, -22.85274],
+ [-55.61432, -22.65521],
+ [-55.72364, -22.55166],
+ [-55.74302, -22.39266],
+ [-55.78939, -22.3846],
+ [-55.84304, -22.28725],
+ [-56.20983, -22.27805],
+ [-56.36485, -22.16949],
+ [-56.39404, -22.07434],
+ [-56.50711, -22.09561],
+ [-56.63705, -22.26341],
+ [-56.70344, -22.21693],
+ [-56.72026, -22.26479],
+ [-56.79344, -22.24238],
+ [-56.84285, -22.30155],
+ [-56.88343, -22.24755],
+ [-56.9967, -22.22246],
+ [-57.3744, -22.23204],
+ [-57.5804, -22.17534],
+ [-57.6106, -22.09462],
+ [-57.70751, -22.09111],
+ [-57.80183, -22.15072],
+ [-57.99384, -22.09023],
+ [-58.00946, -22.04038],
+ [-57.91281, -21.88266],
+ [-57.96603, -21.85045],
+ [-57.90866, -21.77355],
+ [-57.94714, -21.74413],
+ [-57.88329, -21.68903],
+ [-57.93436, -21.65037],
+ [-57.91387, -21.59021],
+ [-57.96795, -21.52432],
+ [-57.8535, -21.33109],
+ [-57.92019, -21.27655],
+ [-57.85066, -21.22407],
+ [-57.86834, -21.04417],
+ [-57.81919, -20.94066],
+ [-57.92836, -20.90036],
+ [-57.8552, -20.83403],
+ [-57.89863, -20.78872],
+ [-57.96183, -20.7916],
+ [-57.93478, -20.74565],
+ [-57.86732, -20.73265],
+ [-57.92414, -20.66392],
+ [-57.98848, -20.69879],
+ [-57.99847, -20.43551],
+ [-58.09339, -20.35554],
+ [-58.09596, -20.25445],
+ [-58.16216, -20.25953],
+ [-58.12152, -20.19246],
+ [-58.16932, -20.1694],
+ [-57.95347, -20.02094],
+ [-57.90248, -20.04207],
+ [-57.85796, -19.9703],
+ [-58.131, -19.758],
+ [-57.784, -19.033],
+ [-57.694, -19.011],
+ [-57.719, -18.899],
+ [-57.766, -18.899],
+ [-57.557, -18.24],
+ [-57.453, -18.231],
+ [-57.574, -18.131],
+ [-57.72302, -17.83074],
+ [-57.68472, -17.8306],
+ [-57.70991, -17.72702],
+ [-57.783, -17.639],
+ [-57.73696, -17.5583],
+ [-57.883, -17.449],
+ [-57.996, -17.515],
+ [-58.06, -17.45],
+ [-58.116, -17.451],
+ [-58.151, -17.384],
+ [-58.263, -17.344],
+ [-58.396, -17.181],
+ [-58.423, -16.989],
+ [-58.474, -16.935],
+ [-58.47, -16.703],
+ [-58.436, -16.592],
+ [-58.333, -16.49],
+ [-58.32227, -16.26559],
+ [-58.388, -16.261],
+ [-58.43059, -16.32264],
+ [-60.17335, -16.26672],
+ [-60.238, -15.473],
+ [-60.57543, -15.09677],
+ [-60.244, -15.096],
+ [-60.272, -14.62],
+ [-60.321, -14.608],
+ [-60.492, -14.188],
+ [-60.479, -14.097],
+ [-60.38066, -13.9888],
+ [-60.45062, -13.9364],
+ [-60.45599, -13.85422],
+ [-60.49068, -13.85782],
+ [-60.46776, -13.79446],
+ [-60.76755, -13.68329],
+ [-60.87678, -13.62149],
+ [-60.91857, -13.54334],
+ [-61.0056, -13.552],
+ [-61.0129, -13.48925],
+ [-61.0938, -13.49081],
+ [-61.10314, -13.53056],
+ [-61.18155, -13.50557],
+ [-61.19236, -13.53695],
+ [-61.29954, -13.47718],
+ [-61.46527, -13.55427],
+ [-61.57927, -13.48711],
+ [-61.852, -13.538],
+ [-61.892, -13.431],
+ [-61.96968, -13.40759],
+ [-61.97592, -13.36695],
+ [-62.11498, -13.25932],
+ [-62.115, -13.163],
+ [-62.15254, -13.15993],
+ [-62.16703, -13.11346],
+ [-62.19, -13.153],
+ [-62.214, -13.111],
+ [-62.27269, -13.15687],
+ [-62.39178, -13.13471],
+ [-62.453, -13.064],
+ [-62.612, -13.041],
+ [-62.65, -12.965],
+ [-62.729, -13.02],
+ [-62.779, -13.009],
+ [-62.89672, -12.8539],
+ [-63.01134, -12.83602],
+ [-63.08186, -12.72323],
+ [-63.06163, -12.68584],
+ [-63.15726, -12.6138],
+ [-63.24621, -12.66222],
+ [-63.23713, -12.69043],
+ [-63.30125, -12.68138],
+ [-63.44052, -12.608],
+ [-63.43627, -12.56526],
+ [-63.50641, -12.56562],
+ [-63.55295, -12.50598],
+ [-63.7848, -12.42871],
+ [-63.88957, -12.44745],
+ [-63.89949, -12.50204],
+ [-63.95144, -12.53179],
+ [-64.13464, -12.47732],
+ [-64.16781, -12.51503],
+ [-64.17504, -12.46675],
+ [-64.22945, -12.45419],
+ [-64.29018, -12.50313],
+ [-64.29452, -12.4582],
+ [-64.41057, -12.44436],
+ [-64.51217, -12.3551],
+ [-64.51256, -12.22562],
+ [-64.70406, -12.1827],
+ [-64.70719, -12.08684],
+ [-64.75486, -12.15762],
+ [-64.7688, -12.09356],
+ [-64.83747, -12.11786],
+ [-64.80954, -12.05633],
+ [-64.84077, -12.01027],
+ [-65.03548, -11.99408],
+ [-65.01398, -11.90303],
+ [-65.0727, -11.86587],
+ [-65.08672, -11.7082],
+ [-65.18953, -11.72353],
+ [-65.18216, -11.75609],
+ [-65.2593, -11.71053],
+ [-65.21178, -11.52857],
+ [-65.3074, -11.49957],
+ [-65.33276, -11.33986],
+ [-65.29053, -11.32275],
+ [-65.34347, -11.3082],
+ [-65.35834, -11.26834],
+ [-65.35938, -11.22067],
+ [-65.31294, -11.19578],
+ [-65.35387, -11.18419],
+ [-65.36177, -11.14031],
+ [-65.28269, -11.09009],
+ [-65.30071, -11.03142],
+ [-65.25053, -10.98506],
+ [-65.27476, -10.87302],
+ [-65.35376, -10.78881],
+ [-65.34667, -10.68155],
+ [-65.40569, -10.63935],
+ [-65.43011, -10.48505],
+ [-65.288, -10.219],
+ [-65.333, -9.965],
+ [-65.28588, -9.84413],
+ [-65.39313, -9.68683],
+ [-65.44394, -9.66957],
+ [-65.4883, -9.71015],
+ [-65.55611, -9.84498],
+ [-65.627, -9.83804],
+ [-65.66963, -9.78129],
+ [-65.71023, -9.80857],
+ [-65.68395, -9.74992],
+ [-65.7432, -9.78296],
+ [-65.77013, -9.73442],
+ [-65.79437, -9.79295],
+ [-65.79962, -9.75663],
+ [-65.86532, -9.79533],
+ [-65.87184, -9.75307],
+ [-65.91976, -9.75314],
+ [-65.98222, -9.81011],
+ [-66.151, -9.785],
+ [-66.426, -9.899],
+ [-66.435, -9.866],
+ [-66.61995, -9.89353],
+ [-66.63701, -9.94983],
+ [-66.8751, -10.08268],
+ [-66.9528, -10.18886],
+ [-66.99683, -10.20017],
+ [-67.01537, -10.25919],
+ [-67.17745, -10.33923],
+ [-67.31545, -10.31932],
+ [-67.31155, -10.37716],
+ [-67.40717, -10.37386],
+ [-67.44361, -10.45492],
+ [-67.57925, -10.5028],
+ [-67.64028, -10.59807],
+ [-67.67631, -10.60484],
+ [-67.70825, -10.71083],
+ [-67.86386, -10.64067],
+ [-68.03289, -10.65486],
+ [-68.10456, -10.71426],
+ [-68.10333, -10.77541],
+ [-68.27819, -10.98926],
+ [-68.71576, -11.14483],
+ [-68.75767, -11.00079],
+ [-68.9118, -11.02192],
+ [-69.41453, -10.92575],
+ [-69.73653, -10.97445],
+ [-69.76903, -10.92972],
+ [-69.93442, -10.9219],
+ [-70.15869, -11.04096],
+ [-70.30672, -11.06983],
+ [-70.43675, -11.03923],
+ [-70.53033, -10.93465],
+ [-70.62103, -10.99982],
+ [-70.62338, -9.82054],
+ [-70.53663, -9.76584],
+ [-70.59972, -9.56264],
+ [-70.55282, -9.57093],
+ [-70.56894, -9.53127],
+ [-70.50506, -9.50557],
+ [-70.49665, -9.42489],
+ [-70.59581, -9.4425],
+ [-70.6632, -9.52601],
+ [-70.75067, -9.56043],
+ [-70.79332, -9.63846],
+ [-70.96337, -9.74891],
+ [-70.99391, -9.81721],
+ [-71.13974, -9.85702],
+ [-71.22052, -9.96968],
+ [-72.1804, -9.99967],
+ [-72.15136, -9.79742],
+ [-72.26296, -9.75085],
+ [-72.25282, -9.61633],
+ [-72.28821, -9.60316],
+ [-72.2829, -9.53995],
+ [-72.35688, -9.4946],
+ [-72.51954, -9.49128],
+ [-72.71676, -9.4122],
+ [-73.2038, -9.40715],
+ [-73.07352, -9.23461],
+ [-73.0093, -9.22236],
+ [-73.02612, -9.17786],
+ [-72.9582, -9.14302],
+ [-72.94091, -8.98494],
+ [-72.99931, -8.91778],
+ [-73.05901, -8.90561],
+ [-73.14992, -8.6839],
+ [-73.20907, -8.6857],
+ [-73.28745, -8.61948],
+ [-73.3055, -8.47197],
+ [-73.38956, -8.46878],
+ [-73.41286, -8.41099],
+ [-73.53744, -8.34587],
+ [-73.62739, -8.02187],
+ [-73.73175, -7.9684],
+ [-73.7725, -7.90237],
+ [-73.76164, -7.85803],
+ [-73.69706, -7.86527],
+ [-73.6843, -7.77644],
+ [-73.82217, -7.71788],
+ [-73.99094, -7.53635],
+ [-73.948, -7.52661],
+ [-73.91981, -7.46568],
+ [-73.96394, -7.34764],
+ [-73.87014, -7.37882],
+ [-73.7003, -7.30429],
+ [-73.79842, -7.11306],
+ [-73.71046, -6.84019],
+ [-73.53639, -6.6834],
+ [-73.39115, -6.64193],
+ [-73.35281, -6.59327],
+ [-73.22741, -6.58884],
+ [-73.18797, -6.52302],
+ [-73.13523, -6.51046],
+ [-73.10473, -6.40666],
+ [-73.24664, -6.14963],
+ [-73.23821, -6.04399],
+ [-73.1868, -6.00512],
+ [-73.15207, -5.86796],
+ [-73.05303, -5.79517],
+ [-72.95912, -5.65689],
+ [-72.95888, -5.46613],
+ [-72.86052, -5.27117],
+ [-72.88725, -5.16307],
+ [-72.73986, -5.08859],
+ [-72.72765, -5.05199],
+ [-72.6212, -5.0518],
+ [-72.598, -4.98386],
+ [-72.38202, -4.87296],
+ [-72.36895, -4.80387],
+ [-72.12601, -4.73454],
+ [-72.04335, -4.62384],
+ [-72.00689, -4.64622],
+ [-71.99464, -4.60996],
+ [-71.94743, -4.60877],
+ [-71.91909, -4.5298],
+ [-71.88549, -4.53803],
+ [-71.9073, -4.51644],
+ [-71.76637, -4.50446],
+ [-71.75109, -4.46887],
+ [-71.70817, -4.51165],
+ [-71.65479, -4.47246],
+ [-71.65032, -4.50395],
+ [-71.61548, -4.4687],
+ [-71.6335, -4.51524],
+ [-71.59625, -4.52928],
+ [-71.53703, -4.46442],
+ [-71.49428, -4.48701],
+ [-71.50716, -4.43909],
+ [-71.43438, -4.42882],
+ [-71.42562, -4.47058],
+ [-71.35026, -4.42728],
+ [-71.30752, -4.46288],
+ [-71.32091, -4.42009],
+ [-71.27782, -4.44217],
+ [-71.26975, -4.385],
+ [-71.20263, -4.37987],
+ [-71.19422, -4.42471],
+ [-71.14478, -4.38158],
+ [-71.11491, -4.41119],
+ [-71.10616, -4.37764],
+ [-70.99389, -4.38654],
+ [-70.99595, -4.34632],
+ [-70.9357, -4.38432],
+ [-70.84483, -4.27905],
+ [-70.86447, -4.25245],
+ [-70.81677, -4.23005],
+ [-70.8458, -4.21872],
+ [-70.75901, -4.15944],
+ [-70.68147, -4.20791],
+ [-70.64256, -4.12805],
+ [-70.62521, -4.19151],
+ [-70.56118, -4.1775],
+ [-70.57357, -4.21169],
+ [-70.54796, -4.13671],
+ [-70.51036, -4.14824],
+ [-70.50417, -4.20098],
+ [-70.48535, -4.16132],
+ [-70.43435, -4.16266],
+ [-70.43146, -4.13217],
+ [-70.33892, -4.17997],
+ [-70.32281, -4.14206],
+ [-70.28769, -4.16555],
+ [-70.29141, -4.28709],
+ [-70.21457, -4.29749],
+ [-70.19194, -4.36179],
+ [-70.15508, -4.27308],
+ [-70.11749, -4.28585],
+ [-70.10881, -4.25454],
+ [-70.04189, -4.29409],
+ [-70.07948, -4.31428],
+ [-70.02826, -4.3703],
+ [-69.99182, -4.37482],
+ [-69.94793, -4.23168]
+ ],
+ [
+ [-34.00035, -3.76654],
+ [-34.01797, -3.84985],
+ [-34.00664, -3.91809],
+ [-33.98608, -3.95952],
+ [-33.95923, -3.99217],
+ [-33.8921, -4.03653],
+ [-33.81658, -4.05077],
+ [-33.72931, -4.03151],
+ [-33.66638, -3.9838],
+ [-33.62736, -3.9185],
+ [-33.61519, -3.84985],
+ [-33.63239, -3.76864],
+ [-33.68693, -3.69537],
+ [-33.74987, -3.65978],
+ [-33.81658, -3.6489],
+ [-33.89336, -3.66397],
+ [-33.96007, -3.70877],
+ [-34.00035, -3.76654]
+ ],
+ [
+ [-32.5538, -4.00884],
+ [-32.59937, -3.9531],
+ [-32.64061, -3.87309],
+ [-32.61755, -3.73712],
+ [-32.58338, -3.70527],
+ [-32.54228, -3.65606],
+ [-32.4592, -3.63029],
+ [-32.35174, -3.63887],
+ [-32.30049, -3.67684],
+ [-32.24749, -3.75266],
+ [-32.23155, -3.81889],
+ [-32.2357, -3.90247],
+ [-32.30194, -3.9883],
+ [-32.42898, -4.0384],
+ [-32.5538, -4.00884]
+ ],
+ [
+ [-29.50321, 0.79391],
+ [-29.54097, 0.8689],
+ [-29.54727, 0.92553],
+ [-29.52367, 0.99422],
+ [-29.48958, 1.06134],
+ [-29.43136, 1.10224],
+ [-29.35899, 1.1206],
+ [-29.29238, 1.11378],
+ [-29.22158, 1.0776],
+ [-29.16285, 1.00314],
+ [-29.14501, 0.92605],
+ [-29.14764, 0.88358],
+ [-29.17176, 0.8196],
+ [-29.24885, 0.74357],
+ [-29.29448, 0.72521],
+ [-29.36371, 0.71892],
+ [-29.43556, 0.73937],
+ [-29.50321, 0.79391]
+ ],
+ [
+ [-29.09537, -20.42649],
+ [-29.19756, -20.33509],
+ [-29.3343, -20.28932],
+ [-29.46741, -20.3288],
+ [-29.54604, -20.42958],
+ [-29.55396, -20.52706],
+ [-29.51696, -20.62613],
+ [-29.40995, -20.68955],
+ [-29.27599, -20.72578],
+ [-29.15968, -20.66209],
+ [-29.07188, -20.57088],
+ [-28.9712, -20.64769],
+ [-28.83286, -20.69814],
+ [-28.67968, -20.62099],
+ [-28.63549, -20.49284],
+ [-28.63412, -20.47146],
+ [-28.7431, -20.30094],
+ [-28.8683, -20.27288],
+ [-29.0031, -20.32416],
+ [-29.09537, -20.42649]
+ ]
+ ],
+ "terms_text": "IBGE",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAOsSURBVHja7JXbb1RVFIe/fTmn05lepp0OpTcuUgQEElGgGGJSNYhggpdoTEz8m3w1xsQHE00MJj5oDGKCRI2IqKEKlpZCaSmXXubWmc6Zc/bFhwGp3N540LiTX7KTvbLWyvp+WVt473mUR/KIz7+/gJ64uNisJAW1lcbGUz9f+MQ6l5dCGID7EWpEMYcO7GB6tsifE9cItGo+CEEYaLyXl/p620+O7Nn2rp67sQCAUpLFpeXRYsWOKCUBcZ/UgqgRs2tnP5l0K2Pnx/GEJLYZ7RHU6hYwjy+V5l+KomStbElpmlKUl6NXpRQ0xV0SJCZhaKCdwwd2cHmmQJI4lAQpQAiQwqOkQEmJVprr89UjOt+TQylJobA8Wig0Xpby/liiKGawv503jjyFFJJiuY6Q4sFwpcAYl9JJnECguDq39EpinAoCif97QALnHEli2Lq5hxdHt5JpDZoJBDj3YLjOQyqUVb1UKCGlYH6xuk+pW7A8GOexJiHdqtn39AbW9nbw2Re/sbLS4Jk9mxgayHL23HUS41FyNaWmMax1ZPPtZ8Xv49eZXygdPnXmypcCiRAQhpqOtpB1g53sH9lMpVLno09P47xCSIjjhNcO7ySKYn4du4oxDucFUkqkFAgB1lp271p/SOdzbUT12tvbhntIZwLyXW309+XIdWcIAg3A+OQNEguplmarRinmbpQ5+NwT7N61EZMYKrWYUjmiUlmhutKgNaXG1g92H9dz1wrpqculkSg21OqOhcWIPy40reu9ZdvmXrq6Mgg8znkQAmsM+e4MADOzi/wyNsNSsU6tmhAbSxwbtgznfspkWqwulupHLs0UhtVd7nG3WMxcneSFZx/j4PNbOPHdRZx17N+7jlx3mo+PnmZ2roTzAqUkUkqEkKRSOh7s73nfuwB9c6H4phASpf5ZQN2++ICp6SLvvLWXTRvW4L1nemaRz786R62WEIYaLe7Y1VhHbz79Q0tKnqnWq8hCKXpSqYf5GeoNgzGObGeaiambHDsxQSN2tLQEiFXJPeC9p7M99bWUEikkMtSi5B/mZ+fpzraiteLHM1N8c3ISrTVKins3lfekU6rSu6btaBwnWGuQA33ZD7x3WNuE6P1tNbsx1tK/toMrs0uc+H6KIAyA1XF3lCSWgb7ssaGB/MVcVwc93Z3o7duH3yuWl7Pl5fh1JYKs815a571A4Lynoz0k35Ph+LfnybSG97BavQnDQIZdXZkPy8sNrG2ORfz/Zf73C/w1AJZ/tYbRRy7/AAAAAElFTkSuQmCC"
+ },
+ {
+ "id": "IBGE_BC250_Aglomerado_Rural",
+ "name": "IBGE-BC250-Aglomerado Rural Isolado",
+ "type": "wms",
+ "template": "http://www.geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Aglomerado_Rural_Isolado_P&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-29.3325, 2.33596],
+ [-28.72472, 2.03155],
+ [-27.76041, -8.93703],
+ [-27.67249, -22.20839],
+ [-51.11495, -35.46552],
+ [-53.39394, -33.85064],
+ [-53.62553, -33.72493],
+ [-53.62503, -33.15428],
+ [-53.24498, -32.73392],
+ [-53.65747, -32.51873],
+ [-53.8329, -32.16592],
+ [-54.64174, -31.55507],
+ [-55.29638, -31.3429],
+ [-55.57371, -30.99691],
+ [-56.06384, -31.16749],
+ [-56.10468, -30.86436],
+ [-56.86862, -30.20752],
+ [-57.39671, -30.40464],
+ [-57.74384, -30.22142],
+ [-55.83724, -28.16598],
+ [-54.86969, -27.44994],
+ [-53.9016, -27.02998],
+ [-53.74972, -26.25781],
+ [-53.97158, -25.74513],
+ [-54.44723, -25.79609],
+ [-54.67802, -25.64668],
+ [-54.36097, -24.35145],
+ [-54.41679, -24.06527],
+ [-54.64355, -23.94107],
+ [-55.22163, -24.11355],
+ [-55.49138, -24.02797],
+ [-55.71734, -22.68488],
+ [-55.90555, -22.39886],
+ [-56.45255, -22.21731],
+ [-56.8256, -22.4002],
+ [-57.34109, -22.34351],
+ [-58.08472, -22.13075],
+ [-57.95766, -20.99818],
+ [-58.26551, -20.24147],
+ [-58.03577, -19.95871],
+ [-58.23083, -19.75211],
+ [-57.64739, -18.19828],
+ [-57.89356, -17.57377],
+ [-58.16997, -17.53519],
+ [-58.48825, -17.21961],
+ [-58.57691, -16.81466],
+ [-58.45563, -16.42158],
+ [-60.2541, -16.32571],
+ [-60.33481, -15.51483],
+ [-60.67423, -15.1122],
+ [-60.34999, -14.99707],
+ [-60.63603, -13.84119],
+ [-61.07283, -13.62569],
+ [-61.9025, -13.62647],
+ [-62.21395, -13.25048],
+ [-62.80185, -13.10905],
+ [-63.17194, -12.76568],
+ [-63.74229, -12.54071],
+ [-64.32845, -12.59578],
+ [-65.10261, -12.0682],
+ [-65.45781, -11.27865],
+ [-65.41641, -9.83894],
+ [-66.52331, -9.98587],
+ [-67.66452, -10.80093],
+ [-67.99778, -10.75991],
+ [-68.52286, -11.20807],
+ [-69.88988, -11.02776],
+ [-70.30957, -11.1699],
+ [-70.71896, -11.02003],
+ [-70.68128, -9.66908],
+ [-71.27536, -10.08971],
+ [-72.18053, -10.09967],
+ [-72.41623, -9.5874],
+ [-73.29207, -9.45415],
+ [-73.0625, -9.01727],
+ [-73.61432, -8.40982],
+ [-74.09056, -7.52755],
+ [-74.03652, -7.27885],
+ [-73.84718, -7.23829],
+ [-73.78618, -6.77487],
+ [-73.22362, -6.43011],
+ [-73.33719, -6.02974],
+ [-72.93016, -5.03871],
+ [-71.93973, -4.42503],
+ [-70.96802, -4.24829],
+ [-70.79598, -4.06493],
+ [-70.02393, -4.16735],
+ [-69.51025, -1.13409],
+ [-69.70776, -0.56762],
+ [-70.13645, -0.22616],
+ [-70.14083, 0.5844],
+ [-69.26594, 0.8065],
+ [-69.34226, 0.96892],
+ [-69.92481, 1.01571],
+ [-69.92343, 1.77385],
+ [-68.38511, 1.82943],
+ [-68.24848, 2.11981],
+ [-67.94571, 1.94842],
+ [-67.37696, 2.32747],
+ [-67.05751, 1.85834],
+ [-67.00579, 1.2916],
+ [-66.79967, 1.31468],
+ [-66.28683, 0.85771],
+ [-65.67671, 1.11115],
+ [-65.42494, 0.96655],
+ [-65.15671, 1.24203],
+ [-64.27483, 1.60159],
+ [-64.0486, 2.06514],
+ [-63.47236, 2.27936],
+ [-64.13446, 2.43391],
+ [-64.10005, 2.72378],
+ [-64.32628, 3.11828],
+ [-64.28142, 3.54198],
+ [-64.88451, 4.11767],
+ [-64.88064, 4.34246],
+ [-64.13653, 4.22315],
+ [-63.95465, 4.02132],
+ [-63.17706, 4.0483],
+ [-62.96093, 3.76366],
+ [-62.82024, 4.10602],
+ [-62.49922, 4.27081],
+ [-61.91181, 4.26284],
+ [-61.35393, 4.6301],
+ [-61.04904, 4.62312],
+ [-60.70452, 4.96985],
+ [-60.78709, 5.29676],
+ [-60.22457, 5.37121],
+ [-59.89857, 5.10754],
+ [-59.97549, 4.60302],
+ [-59.59676, 4.43987],
+ [-59.41942, 3.96994],
+ [-59.71017, 3.54201],
+ [-59.88955, 2.72301],
+ [-59.63006, 2.31633],
+ [-59.63382, 1.96658],
+ [-59.18812, 1.47808],
+ [-58.80545, 1.32073],
+ [-58.35933, 1.68993],
+ [-57.6, 1.80391],
+ [-57.39854, 2.06512],
+ [-57.12392, 2.12876],
+ [-56.02925, 1.94945],
+ [-56.23884, 2.26335],
+ [-55.98195, 2.62866],
+ [-55.64816, 2.51995],
+ [-54.93958, 2.68251],
+ [-54.24988, 2.25056],
+ [-53.73937, 2.47373],
+ [-52.98578, 2.28049],
+ [-52.65712, 2.56407],
+ [-52.41739, 3.22121],
+ [-51.73983, 4.11916],
+ [-51.7246, 4.55687],
+ [-51.0112, 5.5229],
+ [-43.48209, 5.33583],
+ [-29.3325, 2.33596]
+ ]
+ ],
+ "terms_text": "IBGE",
+ "overlay": true
+ },
+ {
+ "id": "IBGE_BC250_Pista_Pouso",
+ "name": "IBGE-BC250-Pista de Pouso",
+ "type": "wms",
+ "template": "http://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Pista_Ponto_Pouso_L&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-29.3325, 2.33596],
+ [-28.72472, 2.03155],
+ [-27.76041, -8.93703],
+ [-27.67249, -22.20839],
+ [-51.11495, -35.46552],
+ [-53.39394, -33.85064],
+ [-53.62553, -33.72493],
+ [-53.62503, -33.15428],
+ [-53.24498, -32.73392],
+ [-53.65747, -32.51873],
+ [-53.8329, -32.16592],
+ [-54.64174, -31.55507],
+ [-55.29638, -31.3429],
+ [-55.57371, -30.99691],
+ [-56.06384, -31.16749],
+ [-56.10468, -30.86436],
+ [-56.86862, -30.20752],
+ [-57.39671, -30.40464],
+ [-57.74384, -30.22142],
+ [-55.83724, -28.16598],
+ [-54.86969, -27.44994],
+ [-53.9016, -27.02998],
+ [-53.74972, -26.25781],
+ [-53.97158, -25.74513],
+ [-54.44723, -25.79609],
+ [-54.67802, -25.64668],
+ [-54.36097, -24.35145],
+ [-54.41679, -24.06527],
+ [-54.64355, -23.94107],
+ [-55.22163, -24.11355],
+ [-55.49138, -24.02797],
+ [-55.71734, -22.68488],
+ [-55.90555, -22.39886],
+ [-56.45255, -22.21731],
+ [-56.8256, -22.4002],
+ [-57.34109, -22.34351],
+ [-58.08472, -22.13075],
+ [-57.95766, -20.99818],
+ [-58.26551, -20.24147],
+ [-58.03577, -19.95871],
+ [-58.23083, -19.75211],
+ [-57.64739, -18.19828],
+ [-57.89356, -17.57377],
+ [-58.16997, -17.53519],
+ [-58.48825, -17.21961],
+ [-58.57691, -16.81466],
+ [-58.45563, -16.42158],
+ [-60.2541, -16.32571],
+ [-60.33481, -15.51483],
+ [-60.67423, -15.1122],
+ [-60.34999, -14.99707],
+ [-60.63603, -13.84119],
+ [-61.07283, -13.62569],
+ [-61.9025, -13.62647],
+ [-62.21395, -13.25048],
+ [-62.80185, -13.10905],
+ [-63.17194, -12.76568],
+ [-63.74229, -12.54071],
+ [-64.32845, -12.59578],
+ [-65.10261, -12.0682],
+ [-65.45781, -11.27865],
+ [-65.41641, -9.83894],
+ [-66.52331, -9.98587],
+ [-67.66452, -10.80093],
+ [-67.99778, -10.75991],
+ [-68.52286, -11.20807],
+ [-69.88988, -11.02776],
+ [-70.30957, -11.1699],
+ [-70.71896, -11.02003],
+ [-70.68128, -9.66908],
+ [-71.27536, -10.08971],
+ [-72.18053, -10.09967],
+ [-72.41623, -9.5874],
+ [-73.29207, -9.45415],
+ [-73.0625, -9.01727],
+ [-73.61432, -8.40982],
+ [-74.09056, -7.52755],
+ [-74.03652, -7.27885],
+ [-73.84718, -7.23829],
+ [-73.78618, -6.77487],
+ [-73.22362, -6.43011],
+ [-73.33719, -6.02974],
+ [-72.93016, -5.03871],
+ [-71.93973, -4.42503],
+ [-70.96802, -4.24829],
+ [-70.79598, -4.06493],
+ [-70.02393, -4.16735],
+ [-69.51025, -1.13409],
+ [-69.70776, -0.56762],
+ [-70.13645, -0.22616],
+ [-70.14083, 0.5844],
+ [-69.26594, 0.8065],
+ [-69.34226, 0.96892],
+ [-69.92481, 1.01571],
+ [-69.92343, 1.77385],
+ [-68.38511, 1.82943],
+ [-68.24848, 2.11981],
+ [-67.94571, 1.94842],
+ [-67.37696, 2.32747],
+ [-67.05751, 1.85834],
+ [-67.00579, 1.2916],
+ [-66.79967, 1.31468],
+ [-66.28683, 0.85771],
+ [-65.67671, 1.11115],
+ [-65.42494, 0.96655],
+ [-65.15671, 1.24203],
+ [-64.27483, 1.60159],
+ [-64.0486, 2.06514],
+ [-63.47236, 2.27936],
+ [-64.13446, 2.43391],
+ [-64.10005, 2.72378],
+ [-64.32628, 3.11828],
+ [-64.28142, 3.54198],
+ [-64.88451, 4.11767],
+ [-64.88064, 4.34246],
+ [-64.13653, 4.22315],
+ [-63.95465, 4.02132],
+ [-63.17706, 4.0483],
+ [-62.96093, 3.76366],
+ [-62.82024, 4.10602],
+ [-62.49922, 4.27081],
+ [-61.91181, 4.26284],
+ [-61.35393, 4.6301],
+ [-61.04904, 4.62312],
+ [-60.70452, 4.96985],
+ [-60.78709, 5.29676],
+ [-60.22457, 5.37121],
+ [-59.89857, 5.10754],
+ [-59.97549, 4.60302],
+ [-59.59676, 4.43987],
+ [-59.41942, 3.96994],
+ [-59.71017, 3.54201],
+ [-59.88955, 2.72301],
+ [-59.63006, 2.31633],
+ [-59.63382, 1.96658],
+ [-59.18812, 1.47808],
+ [-58.80545, 1.32073],
+ [-58.35933, 1.68993],
+ [-57.6, 1.80391],
+ [-57.39854, 2.06512],
+ [-57.12392, 2.12876],
+ [-56.02925, 1.94945],
+ [-56.23884, 2.26335],
+ [-55.98195, 2.62866],
+ [-55.64816, 2.51995],
+ [-54.93958, 2.68251],
+ [-54.24988, 2.25056],
+ [-53.73937, 2.47373],
+ [-52.98578, 2.28049],
+ [-52.65712, 2.56407],
+ [-52.41739, 3.22121],
+ [-51.73983, 4.11916],
+ [-51.7246, 4.55687],
+ [-51.0112, 5.5229],
+ [-43.48209, 5.33583],
+ [-29.3325, 2.33596]
+ ]
+ ],
+ "terms_text": "IBGE",
+ "overlay": true
+ },
+ {
+ "id": "IBGE_BC250_Rios_Drenagem",
+ "name": "IBGE-BC250-Rios Drenagem",
+ "type": "wms",
+ "template": "http://www.geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Trecho_Drenagem_L&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-29.3325, 2.33596],
+ [-28.72472, 2.03155],
+ [-27.76041, -8.93703],
+ [-27.67249, -22.20839],
+ [-51.11495, -35.46552],
+ [-53.39394, -33.85064],
+ [-53.62553, -33.72493],
+ [-53.62503, -33.15428],
+ [-53.24498, -32.73392],
+ [-53.65747, -32.51873],
+ [-53.8329, -32.16592],
+ [-54.64174, -31.55507],
+ [-55.29638, -31.3429],
+ [-55.57371, -30.99691],
+ [-56.06384, -31.16749],
+ [-56.10468, -30.86436],
+ [-56.86862, -30.20752],
+ [-57.39671, -30.40464],
+ [-57.74384, -30.22142],
+ [-55.83724, -28.16598],
+ [-54.86969, -27.44994],
+ [-53.9016, -27.02998],
+ [-53.74972, -26.25781],
+ [-53.97158, -25.74513],
+ [-54.44723, -25.79609],
+ [-54.67802, -25.64668],
+ [-54.36097, -24.35145],
+ [-54.41679, -24.06527],
+ [-54.64355, -23.94107],
+ [-55.22163, -24.11355],
+ [-55.49138, -24.02797],
+ [-55.71734, -22.68488],
+ [-55.90555, -22.39886],
+ [-56.45255, -22.21731],
+ [-56.8256, -22.4002],
+ [-57.34109, -22.34351],
+ [-58.08472, -22.13075],
+ [-57.95766, -20.99818],
+ [-58.26551, -20.24147],
+ [-58.03577, -19.95871],
+ [-58.23083, -19.75211],
+ [-57.64739, -18.19828],
+ [-57.89356, -17.57377],
+ [-58.16997, -17.53519],
+ [-58.48825, -17.21961],
+ [-58.57691, -16.81466],
+ [-58.45563, -16.42158],
+ [-60.2541, -16.32571],
+ [-60.33481, -15.51483],
+ [-60.67423, -15.1122],
+ [-60.34999, -14.99707],
+ [-60.63603, -13.84119],
+ [-61.07283, -13.62569],
+ [-61.9025, -13.62647],
+ [-62.21395, -13.25048],
+ [-62.80185, -13.10905],
+ [-63.17194, -12.76568],
+ [-63.74229, -12.54071],
+ [-64.32845, -12.59578],
+ [-65.10261, -12.0682],
+ [-65.45781, -11.27865],
+ [-65.41641, -9.83894],
+ [-66.52331, -9.98587],
+ [-67.66452, -10.80093],
+ [-67.99778, -10.75991],
+ [-68.52286, -11.20807],
+ [-69.88988, -11.02776],
+ [-70.30957, -11.1699],
+ [-70.71896, -11.02003],
+ [-70.68128, -9.66908],
+ [-71.27536, -10.08971],
+ [-72.18053, -10.09967],
+ [-72.41623, -9.5874],
+ [-73.29207, -9.45415],
+ [-73.0625, -9.01727],
+ [-73.61432, -8.40982],
+ [-74.09056, -7.52755],
+ [-74.03652, -7.27885],
+ [-73.84718, -7.23829],
+ [-73.78618, -6.77487],
+ [-73.22362, -6.43011],
+ [-73.33719, -6.02974],
+ [-72.93016, -5.03871],
+ [-71.93973, -4.42503],
+ [-70.96802, -4.24829],
+ [-70.79598, -4.06493],
+ [-70.02393, -4.16735],
+ [-69.51025, -1.13409],
+ [-69.70776, -0.56762],
+ [-70.13645, -0.22616],
+ [-70.14083, 0.5844],
+ [-69.26594, 0.8065],
+ [-69.34226, 0.96892],
+ [-69.92481, 1.01571],
+ [-69.92343, 1.77385],
+ [-68.38511, 1.82943],
+ [-68.24848, 2.11981],
+ [-67.94571, 1.94842],
+ [-67.37696, 2.32747],
+ [-67.05751, 1.85834],
+ [-67.00579, 1.2916],
+ [-66.79967, 1.31468],
+ [-66.28683, 0.85771],
+ [-65.67671, 1.11115],
+ [-65.42494, 0.96655],
+ [-65.15671, 1.24203],
+ [-64.27483, 1.60159],
+ [-64.0486, 2.06514],
+ [-63.47236, 2.27936],
+ [-64.13446, 2.43391],
+ [-64.10005, 2.72378],
+ [-64.32628, 3.11828],
+ [-64.28142, 3.54198],
+ [-64.88451, 4.11767],
+ [-64.88064, 4.34246],
+ [-64.13653, 4.22315],
+ [-63.95465, 4.02132],
+ [-63.17706, 4.0483],
+ [-62.96093, 3.76366],
+ [-62.82024, 4.10602],
+ [-62.49922, 4.27081],
+ [-61.91181, 4.26284],
+ [-61.35393, 4.6301],
+ [-61.04904, 4.62312],
+ [-60.70452, 4.96985],
+ [-60.78709, 5.29676],
+ [-60.22457, 5.37121],
+ [-59.89857, 5.10754],
+ [-59.97549, 4.60302],
+ [-59.59676, 4.43987],
+ [-59.41942, 3.96994],
+ [-59.71017, 3.54201],
+ [-59.88955, 2.72301],
+ [-59.63006, 2.31633],
+ [-59.63382, 1.96658],
+ [-59.18812, 1.47808],
+ [-58.80545, 1.32073],
+ [-58.35933, 1.68993],
+ [-57.6, 1.80391],
+ [-57.39854, 2.06512],
+ [-57.12392, 2.12876],
+ [-56.02925, 1.94945],
+ [-56.23884, 2.26335],
+ [-55.98195, 2.62866],
+ [-55.64816, 2.51995],
+ [-54.93958, 2.68251],
+ [-54.24988, 2.25056],
+ [-53.73937, 2.47373],
+ [-52.98578, 2.28049],
+ [-52.65712, 2.56407],
+ [-52.41739, 3.22121],
+ [-51.73983, 4.11916],
+ [-51.7246, 4.55687],
+ [-51.0112, 5.5229],
+ [-43.48209, 5.33583],
+ [-29.3325, 2.33596]
+ ]
+ ],
+ "terms_text": "IBGE",
+ "overlay": true
+ },
+ {
+ "id": "IBGE_BC250_Terra_Indegina",
+ "name": "IBGE-BC250-Terra Indigena",
+ "type": "wms",
+ "template": "http://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Terra_Indigena_A&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-29.3325, 2.33596],
+ [-28.72472, 2.03155],
+ [-27.76041, -8.93703],
+ [-27.67249, -22.20839],
+ [-51.11495, -35.46552],
+ [-53.39394, -33.85064],
+ [-53.62553, -33.72493],
+ [-53.62503, -33.15428],
+ [-53.24498, -32.73392],
+ [-53.65747, -32.51873],
+ [-53.8329, -32.16592],
+ [-54.64174, -31.55507],
+ [-55.29638, -31.3429],
+ [-55.57371, -30.99691],
+ [-56.06384, -31.16749],
+ [-56.10468, -30.86436],
+ [-56.86862, -30.20752],
+ [-57.39671, -30.40464],
+ [-57.74384, -30.22142],
+ [-55.83724, -28.16598],
+ [-54.86969, -27.44994],
+ [-53.9016, -27.02998],
+ [-53.74972, -26.25781],
+ [-53.97158, -25.74513],
+ [-54.44723, -25.79609],
+ [-54.67802, -25.64668],
+ [-54.36097, -24.35145],
+ [-54.41679, -24.06527],
+ [-54.64355, -23.94107],
+ [-55.22163, -24.11355],
+ [-55.49138, -24.02797],
+ [-55.71734, -22.68488],
+ [-55.90555, -22.39886],
+ [-56.45255, -22.21731],
+ [-56.8256, -22.4002],
+ [-57.34109, -22.34351],
+ [-58.08472, -22.13075],
+ [-57.95766, -20.99818],
+ [-58.26551, -20.24147],
+ [-58.03577, -19.95871],
+ [-58.23083, -19.75211],
+ [-57.64739, -18.19828],
+ [-57.89356, -17.57377],
+ [-58.16997, -17.53519],
+ [-58.48825, -17.21961],
+ [-58.57691, -16.81466],
+ [-58.45563, -16.42158],
+ [-60.2541, -16.32571],
+ [-60.33481, -15.51483],
+ [-60.67423, -15.1122],
+ [-60.34999, -14.99707],
+ [-60.63603, -13.84119],
+ [-61.07283, -13.62569],
+ [-61.9025, -13.62647],
+ [-62.21395, -13.25048],
+ [-62.80185, -13.10905],
+ [-63.17194, -12.76568],
+ [-63.74229, -12.54071],
+ [-64.32845, -12.59578],
+ [-65.10261, -12.0682],
+ [-65.45781, -11.27865],
+ [-65.41641, -9.83894],
+ [-66.52331, -9.98587],
+ [-67.66452, -10.80093],
+ [-67.99778, -10.75991],
+ [-68.52286, -11.20807],
+ [-69.88988, -11.02776],
+ [-70.30957, -11.1699],
+ [-70.71896, -11.02003],
+ [-70.68128, -9.66908],
+ [-71.27536, -10.08971],
+ [-72.18053, -10.09967],
+ [-72.41623, -9.5874],
+ [-73.29207, -9.45415],
+ [-73.0625, -9.01727],
+ [-73.61432, -8.40982],
+ [-74.09056, -7.52755],
+ [-74.03652, -7.27885],
+ [-73.84718, -7.23829],
+ [-73.78618, -6.77487],
+ [-73.22362, -6.43011],
+ [-73.33719, -6.02974],
+ [-72.93016, -5.03871],
+ [-71.93973, -4.42503],
+ [-70.96802, -4.24829],
+ [-70.79598, -4.06493],
+ [-70.02393, -4.16735],
+ [-69.51025, -1.13409],
+ [-69.70776, -0.56762],
+ [-70.13645, -0.22616],
+ [-70.14083, 0.5844],
+ [-69.26594, 0.8065],
+ [-69.34226, 0.96892],
+ [-69.92481, 1.01571],
+ [-69.92343, 1.77385],
+ [-68.38511, 1.82943],
+ [-68.24848, 2.11981],
+ [-67.94571, 1.94842],
+ [-67.37696, 2.32747],
+ [-67.05751, 1.85834],
+ [-67.00579, 1.2916],
+ [-66.79967, 1.31468],
+ [-66.28683, 0.85771],
+ [-65.67671, 1.11115],
+ [-65.42494, 0.96655],
+ [-65.15671, 1.24203],
+ [-64.27483, 1.60159],
+ [-64.0486, 2.06514],
+ [-63.47236, 2.27936],
+ [-64.13446, 2.43391],
+ [-64.10005, 2.72378],
+ [-64.32628, 3.11828],
+ [-64.28142, 3.54198],
+ [-64.88451, 4.11767],
+ [-64.88064, 4.34246],
+ [-64.13653, 4.22315],
+ [-63.95465, 4.02132],
+ [-63.17706, 4.0483],
+ [-62.96093, 3.76366],
+ [-62.82024, 4.10602],
+ [-62.49922, 4.27081],
+ [-61.91181, 4.26284],
+ [-61.35393, 4.6301],
+ [-61.04904, 4.62312],
+ [-60.70452, 4.96985],
+ [-60.78709, 5.29676],
+ [-60.22457, 5.37121],
+ [-59.89857, 5.10754],
+ [-59.97549, 4.60302],
+ [-59.59676, 4.43987],
+ [-59.41942, 3.96994],
+ [-59.71017, 3.54201],
+ [-59.88955, 2.72301],
+ [-59.63006, 2.31633],
+ [-59.63382, 1.96658],
+ [-59.18812, 1.47808],
+ [-58.80545, 1.32073],
+ [-58.35933, 1.68993],
+ [-57.6, 1.80391],
+ [-57.39854, 2.06512],
+ [-57.12392, 2.12876],
+ [-56.02925, 1.94945],
+ [-56.23884, 2.26335],
+ [-55.98195, 2.62866],
+ [-55.64816, 2.51995],
+ [-54.93958, 2.68251],
+ [-54.24988, 2.25056],
+ [-53.73937, 2.47373],
+ [-52.98578, 2.28049],
+ [-52.65712, 2.56407],
+ [-52.41739, 3.22121],
+ [-51.73983, 4.11916],
+ [-51.7246, 4.55687],
+ [-51.0112, 5.5229],
+ [-43.48209, 5.33583],
+ [-29.3325, 2.33596]
+ ]
+ ],
+ "terms_text": "IBGE",
+ "overlay": true
+ },
+ {
+ "id": "IBGE_BC250_Rodoviario",
+ "name": "IBGE-BC250-Trecho Rodoviario",
+ "type": "wms",
+ "template": "http://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Trecho_Rodoviario_L&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image/png&TRANSPARENT=TRUE",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-29.3325, 2.33596],
+ [-28.72472, 2.03155],
+ [-27.76041, -8.93703],
+ [-27.67249, -22.20839],
+ [-51.11495, -35.46552],
+ [-53.39394, -33.85064],
+ [-53.62553, -33.72493],
+ [-53.62503, -33.15428],
+ [-53.24498, -32.73392],
+ [-53.65747, -32.51873],
+ [-53.8329, -32.16592],
+ [-54.64174, -31.55507],
+ [-55.29638, -31.3429],
+ [-55.57371, -30.99691],
+ [-56.06384, -31.16749],
+ [-56.10468, -30.86436],
+ [-56.86862, -30.20752],
+ [-57.39671, -30.40464],
+ [-57.74384, -30.22142],
+ [-55.83724, -28.16598],
+ [-54.86969, -27.44994],
+ [-53.9016, -27.02998],
+ [-53.74972, -26.25781],
+ [-53.97158, -25.74513],
+ [-54.44723, -25.79609],
+ [-54.67802, -25.64668],
+ [-54.36097, -24.35145],
+ [-54.41679, -24.06527],
+ [-54.64355, -23.94107],
+ [-55.22163, -24.11355],
+ [-55.49138, -24.02797],
+ [-55.71734, -22.68488],
+ [-55.90555, -22.39886],
+ [-56.45255, -22.21731],
+ [-56.8256, -22.4002],
+ [-57.34109, -22.34351],
+ [-58.08472, -22.13075],
+ [-57.95766, -20.99818],
+ [-58.26551, -20.24147],
+ [-58.03577, -19.95871],
+ [-58.23083, -19.75211],
+ [-57.64739, -18.19828],
+ [-57.89356, -17.57377],
+ [-58.16997, -17.53519],
+ [-58.48825, -17.21961],
+ [-58.57691, -16.81466],
+ [-58.45563, -16.42158],
+ [-60.2541, -16.32571],
+ [-60.33481, -15.51483],
+ [-60.67423, -15.1122],
+ [-60.34999, -14.99707],
+ [-60.63603, -13.84119],
+ [-61.07283, -13.62569],
+ [-61.9025, -13.62647],
+ [-62.21395, -13.25048],
+ [-62.80185, -13.10905],
+ [-63.17194, -12.76568],
+ [-63.74229, -12.54071],
+ [-64.32845, -12.59578],
+ [-65.10261, -12.0682],
+ [-65.45781, -11.27865],
+ [-65.41641, -9.83894],
+ [-66.52331, -9.98587],
+ [-67.66452, -10.80093],
+ [-67.99778, -10.75991],
+ [-68.52286, -11.20807],
+ [-69.88988, -11.02776],
+ [-70.30957, -11.1699],
+ [-70.71896, -11.02003],
+ [-70.68128, -9.66908],
+ [-71.27536, -10.08971],
+ [-72.18053, -10.09967],
+ [-72.41623, -9.5874],
+ [-73.29207, -9.45415],
+ [-73.0625, -9.01727],
+ [-73.61432, -8.40982],
+ [-74.09056, -7.52755],
+ [-74.03652, -7.27885],
+ [-73.84718, -7.23829],
+ [-73.78618, -6.77487],
+ [-73.22362, -6.43011],
+ [-73.33719, -6.02974],
+ [-72.93016, -5.03871],
+ [-71.93973, -4.42503],
+ [-70.96802, -4.24829],
+ [-70.79598, -4.06493],
+ [-70.02393, -4.16735],
+ [-69.51025, -1.13409],
+ [-69.70776, -0.56762],
+ [-70.13645, -0.22616],
+ [-70.14083, 0.5844],
+ [-69.26594, 0.8065],
+ [-69.34226, 0.96892],
+ [-69.92481, 1.01571],
+ [-69.92343, 1.77385],
+ [-68.38511, 1.82943],
+ [-68.24848, 2.11981],
+ [-67.94571, 1.94842],
+ [-67.37696, 2.32747],
+ [-67.05751, 1.85834],
+ [-67.00579, 1.2916],
+ [-66.79967, 1.31468],
+ [-66.28683, 0.85771],
+ [-65.67671, 1.11115],
+ [-65.42494, 0.96655],
+ [-65.15671, 1.24203],
+ [-64.27483, 1.60159],
+ [-64.0486, 2.06514],
+ [-63.47236, 2.27936],
+ [-64.13446, 2.43391],
+ [-64.10005, 2.72378],
+ [-64.32628, 3.11828],
+ [-64.28142, 3.54198],
+ [-64.88451, 4.11767],
+ [-64.88064, 4.34246],
+ [-64.13653, 4.22315],
+ [-63.95465, 4.02132],
+ [-63.17706, 4.0483],
+ [-62.96093, 3.76366],
+ [-62.82024, 4.10602],
+ [-62.49922, 4.27081],
+ [-61.91181, 4.26284],
+ [-61.35393, 4.6301],
+ [-61.04904, 4.62312],
+ [-60.70452, 4.96985],
+ [-60.78709, 5.29676],
+ [-60.22457, 5.37121],
+ [-59.89857, 5.10754],
+ [-59.97549, 4.60302],
+ [-59.59676, 4.43987],
+ [-59.41942, 3.96994],
+ [-59.71017, 3.54201],
+ [-59.88955, 2.72301],
+ [-59.63006, 2.31633],
+ [-59.63382, 1.96658],
+ [-59.18812, 1.47808],
+ [-58.80545, 1.32073],
+ [-58.35933, 1.68993],
+ [-57.6, 1.80391],
+ [-57.39854, 2.06512],
+ [-57.12392, 2.12876],
+ [-56.02925, 1.94945],
+ [-56.23884, 2.26335],
+ [-55.98195, 2.62866],
+ [-55.64816, 2.51995],
+ [-54.93958, 2.68251],
+ [-54.24988, 2.25056],
+ [-53.73937, 2.47373],
+ [-52.98578, 2.28049],
+ [-52.65712, 2.56407],
+ [-52.41739, 3.22121],
+ [-51.73983, 4.11916],
+ [-51.7246, 4.55687],
+ [-51.0112, 5.5229],
+ [-43.48209, 5.33583],
+ [-29.3325, 2.33596]
+ ]
+ ],
+ "terms_text": "IBGE",
+ "overlay": true
+ },
+ {
+ "id": "IBGE_BC250_Uso_Sustentavel",
+ "name": "IBGE-BC250-Unidade de Uso Sistentável - APA",
+ "type": "wms",
+ "template": "http://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Unidade_Uso_Sustentavel_A&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-29.3325, 2.33596],
+ [-28.72472, 2.03155],
+ [-27.76041, -8.93703],
+ [-27.67249, -22.20839],
+ [-51.11495, -35.46552],
+ [-53.39394, -33.85064],
+ [-53.62553, -33.72493],
+ [-53.62503, -33.15428],
+ [-53.24498, -32.73392],
+ [-53.65747, -32.51873],
+ [-53.8329, -32.16592],
+ [-54.64174, -31.55507],
+ [-55.29638, -31.3429],
+ [-55.57371, -30.99691],
+ [-56.06384, -31.16749],
+ [-56.10468, -30.86436],
+ [-56.86862, -30.20752],
+ [-57.39671, -30.40464],
+ [-57.74384, -30.22142],
+ [-55.83724, -28.16598],
+ [-54.86969, -27.44994],
+ [-53.9016, -27.02998],
+ [-53.74972, -26.25781],
+ [-53.97158, -25.74513],
+ [-54.44723, -25.79609],
+ [-54.67802, -25.64668],
+ [-54.36097, -24.35145],
+ [-54.41679, -24.06527],
+ [-54.64355, -23.94107],
+ [-55.22163, -24.11355],
+ [-55.49138, -24.02797],
+ [-55.71734, -22.68488],
+ [-55.90555, -22.39886],
+ [-56.45255, -22.21731],
+ [-56.8256, -22.4002],
+ [-57.34109, -22.34351],
+ [-58.08472, -22.13075],
+ [-57.95766, -20.99818],
+ [-58.26551, -20.24147],
+ [-58.03577, -19.95871],
+ [-58.23083, -19.75211],
+ [-57.64739, -18.19828],
+ [-57.89356, -17.57377],
+ [-58.16997, -17.53519],
+ [-58.48825, -17.21961],
+ [-58.57691, -16.81466],
+ [-58.45563, -16.42158],
+ [-60.2541, -16.32571],
+ [-60.33481, -15.51483],
+ [-60.67423, -15.1122],
+ [-60.34999, -14.99707],
+ [-60.63603, -13.84119],
+ [-61.07283, -13.62569],
+ [-61.9025, -13.62647],
+ [-62.21395, -13.25048],
+ [-62.80185, -13.10905],
+ [-63.17194, -12.76568],
+ [-63.74229, -12.54071],
+ [-64.32845, -12.59578],
+ [-65.10261, -12.0682],
+ [-65.45781, -11.27865],
+ [-65.41641, -9.83894],
+ [-66.52331, -9.98587],
+ [-67.66452, -10.80093],
+ [-67.99778, -10.75991],
+ [-68.52286, -11.20807],
+ [-69.88988, -11.02776],
+ [-70.30957, -11.1699],
+ [-70.71896, -11.02003],
+ [-70.68128, -9.66908],
+ [-71.27536, -10.08971],
+ [-72.18053, -10.09967],
+ [-72.41623, -9.5874],
+ [-73.29207, -9.45415],
+ [-73.0625, -9.01727],
+ [-73.61432, -8.40982],
+ [-74.09056, -7.52755],
+ [-74.03652, -7.27885],
+ [-73.84718, -7.23829],
+ [-73.78618, -6.77487],
+ [-73.22362, -6.43011],
+ [-73.33719, -6.02974],
+ [-72.93016, -5.03871],
+ [-71.93973, -4.42503],
+ [-70.96802, -4.24829],
+ [-70.79598, -4.06493],
+ [-70.02393, -4.16735],
+ [-69.51025, -1.13409],
+ [-69.70776, -0.56762],
+ [-70.13645, -0.22616],
+ [-70.14083, 0.5844],
+ [-69.26594, 0.8065],
+ [-69.34226, 0.96892],
+ [-69.92481, 1.01571],
+ [-69.92343, 1.77385],
+ [-68.38511, 1.82943],
+ [-68.24848, 2.11981],
+ [-67.94571, 1.94842],
+ [-67.37696, 2.32747],
+ [-67.05751, 1.85834],
+ [-67.00579, 1.2916],
+ [-66.79967, 1.31468],
+ [-66.28683, 0.85771],
+ [-65.67671, 1.11115],
+ [-65.42494, 0.96655],
+ [-65.15671, 1.24203],
+ [-64.27483, 1.60159],
+ [-64.0486, 2.06514],
+ [-63.47236, 2.27936],
+ [-64.13446, 2.43391],
+ [-64.10005, 2.72378],
+ [-64.32628, 3.11828],
+ [-64.28142, 3.54198],
+ [-64.88451, 4.11767],
+ [-64.88064, 4.34246],
+ [-64.13653, 4.22315],
+ [-63.95465, 4.02132],
+ [-63.17706, 4.0483],
+ [-62.96093, 3.76366],
+ [-62.82024, 4.10602],
+ [-62.49922, 4.27081],
+ [-61.91181, 4.26284],
+ [-61.35393, 4.6301],
+ [-61.04904, 4.62312],
+ [-60.70452, 4.96985],
+ [-60.78709, 5.29676],
+ [-60.22457, 5.37121],
+ [-59.89857, 5.10754],
+ [-59.97549, 4.60302],
+ [-59.59676, 4.43987],
+ [-59.41942, 3.96994],
+ [-59.71017, 3.54201],
+ [-59.88955, 2.72301],
+ [-59.63006, 2.31633],
+ [-59.63382, 1.96658],
+ [-59.18812, 1.47808],
+ [-58.80545, 1.32073],
+ [-58.35933, 1.68993],
+ [-57.6, 1.80391],
+ [-57.39854, 2.06512],
+ [-57.12392, 2.12876],
+ [-56.02925, 1.94945],
+ [-56.23884, 2.26335],
+ [-55.98195, 2.62866],
+ [-55.64816, 2.51995],
+ [-54.93958, 2.68251],
+ [-54.24988, 2.25056],
+ [-53.73937, 2.47373],
+ [-52.98578, 2.28049],
+ [-52.65712, 2.56407],
+ [-52.41739, 3.22121],
+ [-51.73983, 4.11916],
+ [-51.7246, 4.55687],
+ [-51.0112, 5.5229],
+ [-43.48209, 5.33583],
+ [-29.3325, 2.33596]
+ ]
+ ],
+ "terms_text": "IBGE",
+ "overlay": true
+ },
+ {
+ "id": "IBGE_BC250_Villa",
+ "name": "IBGE-BC250-Villa",
+ "type": "wms",
+ "template": "http://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Vila_P&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-29.3325, 2.33596],
+ [-28.72472, 2.03155],
+ [-27.76041, -8.93703],
+ [-27.67249, -22.20839],
+ [-51.11495, -35.46552],
+ [-53.39394, -33.85064],
+ [-53.62553, -33.72493],
+ [-53.62503, -33.15428],
+ [-53.24498, -32.73392],
+ [-53.65747, -32.51873],
+ [-53.8329, -32.16592],
+ [-54.64174, -31.55507],
+ [-55.29638, -31.3429],
+ [-55.57371, -30.99691],
+ [-56.06384, -31.16749],
+ [-56.10468, -30.86436],
+ [-56.86862, -30.20752],
+ [-57.39671, -30.40464],
+ [-57.74384, -30.22142],
+ [-55.83724, -28.16598],
+ [-54.86969, -27.44994],
+ [-53.9016, -27.02998],
+ [-53.74972, -26.25781],
+ [-53.97158, -25.74513],
+ [-54.44723, -25.79609],
+ [-54.67802, -25.64668],
+ [-54.36097, -24.35145],
+ [-54.41679, -24.06527],
+ [-54.64355, -23.94107],
+ [-55.22163, -24.11355],
+ [-55.49138, -24.02797],
+ [-55.71734, -22.68488],
+ [-55.90555, -22.39886],
+ [-56.45255, -22.21731],
+ [-56.8256, -22.4002],
+ [-57.34109, -22.34351],
+ [-58.08472, -22.13075],
+ [-57.95766, -20.99818],
+ [-58.26551, -20.24147],
+ [-58.03577, -19.95871],
+ [-58.23083, -19.75211],
+ [-57.64739, -18.19828],
+ [-57.89356, -17.57377],
+ [-58.16997, -17.53519],
+ [-58.48825, -17.21961],
+ [-58.57691, -16.81466],
+ [-58.45563, -16.42158],
+ [-60.2541, -16.32571],
+ [-60.33481, -15.51483],
+ [-60.67423, -15.1122],
+ [-60.34999, -14.99707],
+ [-60.63603, -13.84119],
+ [-61.07283, -13.62569],
+ [-61.9025, -13.62647],
+ [-62.21395, -13.25048],
+ [-62.80185, -13.10905],
+ [-63.17194, -12.76568],
+ [-63.74229, -12.54071],
+ [-64.32845, -12.59578],
+ [-65.10261, -12.0682],
+ [-65.45781, -11.27865],
+ [-65.41641, -9.83894],
+ [-66.52331, -9.98587],
+ [-67.66452, -10.80093],
+ [-67.99778, -10.75991],
+ [-68.52286, -11.20807],
+ [-69.88988, -11.02776],
+ [-70.30957, -11.1699],
+ [-70.71896, -11.02003],
+ [-70.68128, -9.66908],
+ [-71.27536, -10.08971],
+ [-72.18053, -10.09967],
+ [-72.41623, -9.5874],
+ [-73.29207, -9.45415],
+ [-73.0625, -9.01727],
+ [-73.61432, -8.40982],
+ [-74.09056, -7.52755],
+ [-74.03652, -7.27885],
+ [-73.84718, -7.23829],
+ [-73.78618, -6.77487],
+ [-73.22362, -6.43011],
+ [-73.33719, -6.02974],
+ [-72.93016, -5.03871],
+ [-71.93973, -4.42503],
+ [-70.96802, -4.24829],
+ [-70.79598, -4.06493],
+ [-70.02393, -4.16735],
+ [-69.51025, -1.13409],
+ [-69.70776, -0.56762],
+ [-70.13645, -0.22616],
+ [-70.14083, 0.5844],
+ [-69.26594, 0.8065],
+ [-69.34226, 0.96892],
+ [-69.92481, 1.01571],
+ [-69.92343, 1.77385],
+ [-68.38511, 1.82943],
+ [-68.24848, 2.11981],
+ [-67.94571, 1.94842],
+ [-67.37696, 2.32747],
+ [-67.05751, 1.85834],
+ [-67.00579, 1.2916],
+ [-66.79967, 1.31468],
+ [-66.28683, 0.85771],
+ [-65.67671, 1.11115],
+ [-65.42494, 0.96655],
+ [-65.15671, 1.24203],
+ [-64.27483, 1.60159],
+ [-64.0486, 2.06514],
+ [-63.47236, 2.27936],
+ [-64.13446, 2.43391],
+ [-64.10005, 2.72378],
+ [-64.32628, 3.11828],
+ [-64.28142, 3.54198],
+ [-64.88451, 4.11767],
+ [-64.88064, 4.34246],
+ [-64.13653, 4.22315],
+ [-63.95465, 4.02132],
+ [-63.17706, 4.0483],
+ [-62.96093, 3.76366],
+ [-62.82024, 4.10602],
+ [-62.49922, 4.27081],
+ [-61.91181, 4.26284],
+ [-61.35393, 4.6301],
+ [-61.04904, 4.62312],
+ [-60.70452, 4.96985],
+ [-60.78709, 5.29676],
+ [-60.22457, 5.37121],
+ [-59.89857, 5.10754],
+ [-59.97549, 4.60302],
+ [-59.59676, 4.43987],
+ [-59.41942, 3.96994],
+ [-59.71017, 3.54201],
+ [-59.88955, 2.72301],
+ [-59.63006, 2.31633],
+ [-59.63382, 1.96658],
+ [-59.18812, 1.47808],
+ [-58.80545, 1.32073],
+ [-58.35933, 1.68993],
+ [-57.6, 1.80391],
+ [-57.39854, 2.06512],
+ [-57.12392, 2.12876],
+ [-56.02925, 1.94945],
+ [-56.23884, 2.26335],
+ [-55.98195, 2.62866],
+ [-55.64816, 2.51995],
+ [-54.93958, 2.68251],
+ [-54.24988, 2.25056],
+ [-53.73937, 2.47373],
+ [-52.98578, 2.28049],
+ [-52.65712, 2.56407],
+ [-52.41739, 3.22121],
+ [-51.73983, 4.11916],
+ [-51.7246, 4.55687],
+ [-51.0112, 5.5229],
+ [-43.48209, 5.33583],
+ [-29.3325, 2.33596]
+ ]
+ ],
+ "terms_text": "IBGE",
+ "overlay": true
+ },
+ {
+ "id": "IBGE_BCIM_Gerador_Eletrica",
+ "name": "IBGE-BCIM-Estações Geradora de Energia Elétrica",
+ "type": "wms",
+ "template": "http://www.geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BCIM_Est_Gerad_Energia_Eletrica_P&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-29.3325, 2.33596],
+ [-28.72472, 2.03155],
+ [-27.76041, -8.93703],
+ [-27.67249, -22.20839],
+ [-51.11495, -35.46552],
+ [-53.39394, -33.85064],
+ [-53.62553, -33.72493],
+ [-53.62503, -33.15428],
+ [-53.24498, -32.73392],
+ [-53.65747, -32.51873],
+ [-53.8329, -32.16592],
+ [-54.64174, -31.55507],
+ [-55.29638, -31.3429],
+ [-55.57371, -30.99691],
+ [-56.06384, -31.16749],
+ [-56.10468, -30.86436],
+ [-56.86862, -30.20752],
+ [-57.39671, -30.40464],
+ [-57.74384, -30.22142],
+ [-55.83724, -28.16598],
+ [-54.86969, -27.44994],
+ [-53.9016, -27.02998],
+ [-53.74972, -26.25781],
+ [-53.97158, -25.74513],
+ [-54.44723, -25.79609],
+ [-54.67802, -25.64668],
+ [-54.36097, -24.35145],
+ [-54.41679, -24.06527],
+ [-54.64355, -23.94107],
+ [-55.22163, -24.11355],
+ [-55.49138, -24.02797],
+ [-55.71734, -22.68488],
+ [-55.90555, -22.39886],
+ [-56.45255, -22.21731],
+ [-56.8256, -22.4002],
+ [-57.34109, -22.34351],
+ [-58.08472, -22.13075],
+ [-57.95766, -20.99818],
+ [-58.26551, -20.24147],
+ [-58.03577, -19.95871],
+ [-58.23083, -19.75211],
+ [-57.64739, -18.19828],
+ [-57.89356, -17.57377],
+ [-58.16997, -17.53519],
+ [-58.48825, -17.21961],
+ [-58.57691, -16.81466],
+ [-58.45563, -16.42158],
+ [-60.2541, -16.32571],
+ [-60.33481, -15.51483],
+ [-60.67423, -15.1122],
+ [-60.34999, -14.99707],
+ [-60.63603, -13.84119],
+ [-61.07283, -13.62569],
+ [-61.9025, -13.62647],
+ [-62.21395, -13.25048],
+ [-62.80185, -13.10905],
+ [-63.17194, -12.76568],
+ [-63.74229, -12.54071],
+ [-64.32845, -12.59578],
+ [-65.10261, -12.0682],
+ [-65.45781, -11.27865],
+ [-65.41641, -9.83894],
+ [-66.52331, -9.98587],
+ [-67.66452, -10.80093],
+ [-67.99778, -10.75991],
+ [-68.52286, -11.20807],
+ [-69.88988, -11.02776],
+ [-70.30957, -11.1699],
+ [-70.71896, -11.02003],
+ [-70.68128, -9.66908],
+ [-71.27536, -10.08971],
+ [-72.18053, -10.09967],
+ [-72.41623, -9.5874],
+ [-73.29207, -9.45415],
+ [-73.0625, -9.01727],
+ [-73.61432, -8.40982],
+ [-74.09056, -7.52755],
+ [-74.03652, -7.27885],
+ [-73.84718, -7.23829],
+ [-73.78618, -6.77487],
+ [-73.22362, -6.43011],
+ [-73.33719, -6.02974],
+ [-72.93016, -5.03871],
+ [-71.93973, -4.42503],
+ [-70.96802, -4.24829],
+ [-70.79598, -4.06493],
+ [-70.02393, -4.16735],
+ [-69.51025, -1.13409],
+ [-69.70776, -0.56762],
+ [-70.13645, -0.22616],
+ [-70.14083, 0.5844],
+ [-69.26594, 0.8065],
+ [-69.34226, 0.96892],
+ [-69.92481, 1.01571],
+ [-69.92343, 1.77385],
+ [-68.38511, 1.82943],
+ [-68.24848, 2.11981],
+ [-67.94571, 1.94842],
+ [-67.37696, 2.32747],
+ [-67.05751, 1.85834],
+ [-67.00579, 1.2916],
+ [-66.79967, 1.31468],
+ [-66.28683, 0.85771],
+ [-65.67671, 1.11115],
+ [-65.42494, 0.96655],
+ [-65.15671, 1.24203],
+ [-64.27483, 1.60159],
+ [-64.0486, 2.06514],
+ [-63.47236, 2.27936],
+ [-64.13446, 2.43391],
+ [-64.10005, 2.72378],
+ [-64.32628, 3.11828],
+ [-64.28142, 3.54198],
+ [-64.88451, 4.11767],
+ [-64.88064, 4.34246],
+ [-64.13653, 4.22315],
+ [-63.95465, 4.02132],
+ [-63.17706, 4.0483],
+ [-62.96093, 3.76366],
+ [-62.82024, 4.10602],
+ [-62.49922, 4.27081],
+ [-61.91181, 4.26284],
+ [-61.35393, 4.6301],
+ [-61.04904, 4.62312],
+ [-60.70452, 4.96985],
+ [-60.78709, 5.29676],
+ [-60.22457, 5.37121],
+ [-59.89857, 5.10754],
+ [-59.97549, 4.60302],
+ [-59.59676, 4.43987],
+ [-59.41942, 3.96994],
+ [-59.71017, 3.54201],
+ [-59.88955, 2.72301],
+ [-59.63006, 2.31633],
+ [-59.63382, 1.96658],
+ [-59.18812, 1.47808],
+ [-58.80545, 1.32073],
+ [-58.35933, 1.68993],
+ [-57.6, 1.80391],
+ [-57.39854, 2.06512],
+ [-57.12392, 2.12876],
+ [-56.02925, 1.94945],
+ [-56.23884, 2.26335],
+ [-55.98195, 2.62866],
+ [-55.64816, 2.51995],
+ [-54.93958, 2.68251],
+ [-54.24988, 2.25056],
+ [-53.73937, 2.47373],
+ [-52.98578, 2.28049],
+ [-52.65712, 2.56407],
+ [-52.41739, 3.22121],
+ [-51.73983, 4.11916],
+ [-51.7246, 4.55687],
+ [-51.0112, 5.5229],
+ [-43.48209, 5.33583],
+ [-29.3325, 2.33596]
+ ]
+ ],
+ "terms_text": "IBGE",
+ "overlay": true
+ },
+ {
+ "id": "IBGE_BCIM_Municipio",
+ "name": "IBGE-BCIM-Município",
+ "type": "wms",
+ "template": "http://www.geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BCIM_Municipio_A&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-29.3325, 2.33596],
+ [-28.72472, 2.03155],
+ [-27.76041, -8.93703],
+ [-27.67249, -22.20839],
+ [-51.11495, -35.46552],
+ [-53.39394, -33.85064],
+ [-53.62553, -33.72493],
+ [-53.62503, -33.15428],
+ [-53.24498, -32.73392],
+ [-53.65747, -32.51873],
+ [-53.8329, -32.16592],
+ [-54.64174, -31.55507],
+ [-55.29638, -31.3429],
+ [-55.57371, -30.99691],
+ [-56.06384, -31.16749],
+ [-56.10468, -30.86436],
+ [-56.86862, -30.20752],
+ [-57.39671, -30.40464],
+ [-57.74384, -30.22142],
+ [-55.83724, -28.16598],
+ [-54.86969, -27.44994],
+ [-53.9016, -27.02998],
+ [-53.74972, -26.25781],
+ [-53.97158, -25.74513],
+ [-54.44723, -25.79609],
+ [-54.67802, -25.64668],
+ [-54.36097, -24.35145],
+ [-54.41679, -24.06527],
+ [-54.64355, -23.94107],
+ [-55.22163, -24.11355],
+ [-55.49138, -24.02797],
+ [-55.71734, -22.68488],
+ [-55.90555, -22.39886],
+ [-56.45255, -22.21731],
+ [-56.8256, -22.4002],
+ [-57.34109, -22.34351],
+ [-58.08472, -22.13075],
+ [-57.95766, -20.99818],
+ [-58.26551, -20.24147],
+ [-58.03577, -19.95871],
+ [-58.23083, -19.75211],
+ [-57.64739, -18.19828],
+ [-57.89356, -17.57377],
+ [-58.16997, -17.53519],
+ [-58.48825, -17.21961],
+ [-58.57691, -16.81466],
+ [-58.45563, -16.42158],
+ [-60.2541, -16.32571],
+ [-60.33481, -15.51483],
+ [-60.67423, -15.1122],
+ [-60.34999, -14.99707],
+ [-60.63603, -13.84119],
+ [-61.07283, -13.62569],
+ [-61.9025, -13.62647],
+ [-62.21395, -13.25048],
+ [-62.80185, -13.10905],
+ [-63.17194, -12.76568],
+ [-63.74229, -12.54071],
+ [-64.32845, -12.59578],
+ [-65.10261, -12.0682],
+ [-65.45781, -11.27865],
+ [-65.41641, -9.83894],
+ [-66.52331, -9.98587],
+ [-67.66452, -10.80093],
+ [-67.99778, -10.75991],
+ [-68.52286, -11.20807],
+ [-69.88988, -11.02776],
+ [-70.30957, -11.1699],
+ [-70.71896, -11.02003],
+ [-70.68128, -9.66908],
+ [-71.27536, -10.08971],
+ [-72.18053, -10.09967],
+ [-72.41623, -9.5874],
+ [-73.29207, -9.45415],
+ [-73.0625, -9.01727],
+ [-73.61432, -8.40982],
+ [-74.09056, -7.52755],
+ [-74.03652, -7.27885],
+ [-73.84718, -7.23829],
+ [-73.78618, -6.77487],
+ [-73.22362, -6.43011],
+ [-73.33719, -6.02974],
+ [-72.93016, -5.03871],
+ [-71.93973, -4.42503],
+ [-70.96802, -4.24829],
+ [-70.79598, -4.06493],
+ [-70.02393, -4.16735],
+ [-69.51025, -1.13409],
+ [-69.70776, -0.56762],
+ [-70.13645, -0.22616],
+ [-70.14083, 0.5844],
+ [-69.26594, 0.8065],
+ [-69.34226, 0.96892],
+ [-69.92481, 1.01571],
+ [-69.92343, 1.77385],
+ [-68.38511, 1.82943],
+ [-68.24848, 2.11981],
+ [-67.94571, 1.94842],
+ [-67.37696, 2.32747],
+ [-67.05751, 1.85834],
+ [-67.00579, 1.2916],
+ [-66.79967, 1.31468],
+ [-66.28683, 0.85771],
+ [-65.67671, 1.11115],
+ [-65.42494, 0.96655],
+ [-65.15671, 1.24203],
+ [-64.27483, 1.60159],
+ [-64.0486, 2.06514],
+ [-63.47236, 2.27936],
+ [-64.13446, 2.43391],
+ [-64.10005, 2.72378],
+ [-64.32628, 3.11828],
+ [-64.28142, 3.54198],
+ [-64.88451, 4.11767],
+ [-64.88064, 4.34246],
+ [-64.13653, 4.22315],
+ [-63.95465, 4.02132],
+ [-63.17706, 4.0483],
+ [-62.96093, 3.76366],
+ [-62.82024, 4.10602],
+ [-62.49922, 4.27081],
+ [-61.91181, 4.26284],
+ [-61.35393, 4.6301],
+ [-61.04904, 4.62312],
+ [-60.70452, 4.96985],
+ [-60.78709, 5.29676],
+ [-60.22457, 5.37121],
+ [-59.89857, 5.10754],
+ [-59.97549, 4.60302],
+ [-59.59676, 4.43987],
+ [-59.41942, 3.96994],
+ [-59.71017, 3.54201],
+ [-59.88955, 2.72301],
+ [-59.63006, 2.31633],
+ [-59.63382, 1.96658],
+ [-59.18812, 1.47808],
+ [-58.80545, 1.32073],
+ [-58.35933, 1.68993],
+ [-57.6, 1.80391],
+ [-57.39854, 2.06512],
+ [-57.12392, 2.12876],
+ [-56.02925, 1.94945],
+ [-56.23884, 2.26335],
+ [-55.98195, 2.62866],
+ [-55.64816, 2.51995],
+ [-54.93958, 2.68251],
+ [-54.24988, 2.25056],
+ [-53.73937, 2.47373],
+ [-52.98578, 2.28049],
+ [-52.65712, 2.56407],
+ [-52.41739, 3.22121],
+ [-51.73983, 4.11916],
+ [-51.7246, 4.55687],
+ [-51.0112, 5.5229],
+ [-43.48209, 5.33583],
+ [-29.3325, 2.33596]
+ ]
+ ],
+ "terms_text": "IBGE",
+ "overlay": true
+ },
+ {
+ "id": "Haiti-Drone",
+ "name": "Imagerie Drone (Haiti)",
+ "type": "tms",
+ "template": "http://wms.openstreetmap.fr/tms/1.0.0/iomhaiti/{zoom}/{x}/{y}",
+ "polygon": [
+ [
+ [-72.15474, 19.6879],
+ [-72.16223, 19.68901],
+ [-72.165, 19.69324],
+ [-72.16578, 19.698],
+ [-72.1616, 19.70357],
+ [-72.14874, 19.7029],
+ [-72.14772, 19.70268],
+ [-72.14851, 19.70015],
+ [-72.1437, 19.70112],
+ [-72.14101, 19.7],
+ [-72.13948, 19.69737],
+ [-72.13825, 19.69276],
+ [-72.13869, 19.69232],
+ [-72.13806, 19.68964],
+ [-72.13853, 19.68949],
+ [-72.13881, 19.69013],
+ [-72.13888, 19.68767],
+ [-72.13782, 19.68727],
+ [-72.13778, 19.685],
+ [-72.13695, 19.68559],
+ [-72.13679, 19.68407],
+ [-72.13573, 19.68351],
+ [-72.13557, 19.67408],
+ [-72.13664, 19.67081],
+ [-72.14878, 19.67107],
+ [-72.15348, 19.67638],
+ [-72.15308, 19.67694],
+ [-72.15333, 19.67698],
+ [-72.15328, 19.67965],
+ [-72.15238, 19.67972],
+ [-72.15227, 19.68035],
+ [-72.15191, 19.68034],
+ [-72.15186, 19.68051],
+ [-72.15282, 19.68066],
+ [-72.15223, 19.6833],
+ [-72.15078, 19.68315],
+ [-72.15045, 19.68479],
+ [-72.15086, 19.68435],
+ [-72.15301, 19.68499],
+ [-72.15463, 19.68544],
+ [-72.15431, 19.68707],
+ [-72.15472, 19.68685],
+ [-72.15485, 19.68776],
+ [-72.15458, 19.6878],
+ [-72.15474, 19.6879]
+ ],
+ [
+ [-72.13106, 19.67189],
+ [-72.12598, 19.67728],
+ [-72.12554, 19.67762],
+ [-72.12169, 19.67764],
+ [-72.11497, 19.6726],
+ [-72.11527, 19.66872],
+ [-72.11982, 19.66275],
+ [-72.12278, 19.66257],
+ [-72.1249, 19.6627],
+ [-72.12858, 19.66454],
+ [-72.13081, 19.66617],
+ [-72.13167, 19.66879],
+ [-72.13156, 19.671],
+ [-72.13106, 19.67189]
+ ],
+ [
+ [-71.84579, 19.67098],
+ [-71.84294, 19.67595],
+ [-71.841, 19.67595],
+ [-71.83802, 19.67553],
+ [-71.83787, 19.6745],
+ [-71.83905, 19.67439],
+ [-71.83901, 19.67411],
+ [-71.83984, 19.67395],
+ [-71.83891, 19.67361],
+ [-71.83802, 19.67209],
+ [-71.83801, 19.67263],
+ [-71.83767, 19.67272],
+ [-71.83763, 19.67254],
+ [-71.83544, 19.67321],
+ [-71.83533, 19.673],
+ [-71.83312, 19.67346],
+ [-71.83267, 19.67168],
+ [-71.83216, 19.67209],
+ [-71.83072, 19.66949],
+ [-71.8306, 19.66976],
+ [-71.83022, 19.66989],
+ [-71.82918, 19.66721],
+ [-71.82907, 19.66721],
+ [-71.82891, 19.66679],
+ [-71.82895, 19.66662],
+ [-71.82883, 19.66635],
+ [-71.82856, 19.66648],
+ [-71.82887, 19.66725],
+ [-71.82876, 19.66741],
+ [-71.8278, 19.66782],
+ [-71.82771, 19.66786],
+ [-71.82783, 19.66796],
+ [-71.82718, 19.66812],
+ [-71.82718, 19.66809],
+ [-71.82644, 19.66839],
+ [-71.82641, 19.66832],
+ [-71.8262, 19.66843],
+ [-71.82618, 19.66836],
+ [-71.82589, 19.66842],
+ [-71.82589, 19.66866],
+ [-71.82516, 19.66875],
+ [-71.82545, 19.66916],
+ [-71.82293, 19.66957],
+ [-71.82271, 19.66967],
+ [-71.82277, 19.66976],
+ [-71.82018, 19.67099],
+ [-71.81985, 19.67045],
+ [-71.8198, 19.6706],
+ [-71.81947, 19.67076],
+ [-71.81825, 19.67134],
+ [-71.81814, 19.67114],
+ [-71.81758, 19.67143],
+ [-71.81696, 19.67077],
+ [-71.81764, 19.6719],
+ [-71.81714, 19.67204],
+ [-71.81582, 19.6718],
+ [-71.81384, 19.67119],
+ [-71.81233, 19.6707],
+ [-71.81218, 19.67043],
+ [-71.81243, 19.67015],
+ [-71.81192, 19.67001],
+ [-71.81188, 19.67058],
+ [-71.81117, 19.67035],
+ [-71.80959, 19.66985],
+ [-71.8078, 19.66928],
+ [-71.8056, 19.66861],
+ [-71.80514, 19.66689],
+ [-71.80512, 19.66523],
+ [-71.80523, 19.66198],
+ [-71.80656, 19.65239],
+ [-71.80734, 19.64829],
+ [-71.80997, 19.64683],
+ [-71.81475, 19.64545],
+ [-71.81477, 19.64556],
+ [-71.815, 19.64551],
+ [-71.81495, 19.64538],
+ [-71.81599, 19.64502],
+ [-71.81589, 19.64489],
+ [-71.81659, 19.64461],
+ [-71.81901, 19.6438],
+ [-71.82115, 19.64345],
+ [-71.82216, 19.64333],
+ [-71.8269, 19.64321],
+ [-71.82805, 19.64322],
+ [-71.83045, 19.64408],
+ [-71.83064, 19.64486],
+ [-71.82953, 19.64504],
+ [-71.82961, 19.64561],
+ [-71.82994, 19.64557],
+ [-71.83037, 19.64517],
+ [-71.83047, 19.64535],
+ [-71.83081, 19.6452],
+ [-71.83102, 19.64511],
+ [-71.83125, 19.64585],
+ [-71.83111, 19.64582],
+ [-71.83137, 19.64659],
+ [-71.83289, 19.64619],
+ [-71.83446, 19.64571],
+ [-71.83447, 19.64631],
+ [-71.83422, 19.64619],
+ [-71.8342, 19.64655],
+ [-71.83467, 19.6463],
+ [-71.83491, 19.64639],
+ [-71.8348, 19.64622],
+ [-71.83544, 19.64585],
+ [-71.8355, 19.6458],
+ [-71.83647, 19.64613],
+ [-71.83764, 19.64727],
+ [-71.83791, 19.64789],
+ [-71.83905, 19.6508],
+ [-71.84569, 19.66962],
+ [-71.84579, 19.67098]
+ ],
+ [
+ [-72.09888, 18.54843],
+ [-72.09699, 18.5502],
+ [-72.09729, 18.55032],
+ [-72.09685, 18.55035],
+ [-72.09556, 18.55185],
+ [-72.09564, 18.55267],
+ [-72.09599, 18.55337],
+ [-72.09621, 18.5532],
+ [-72.09628, 18.55357],
+ [-72.09644, 18.55355],
+ [-72.09654, 18.55398],
+ [-72.09651, 18.55417],
+ [-72.09661, 18.55417],
+ [-72.09652, 18.55421],
+ [-72.09688, 18.55466],
+ [-72.0979, 18.55521],
+ [-72.10062, 18.55559],
+ [-72.10149, 18.55562],
+ [-72.10243, 18.5555],
+ [-72.10342, 18.55435],
+ [-72.10348, 18.55162],
+ [-72.10308, 18.55161],
+ [-72.10338, 18.55152],
+ [-72.1035, 18.55152],
+ [-72.10352, 18.55024],
+ [-72.10287, 18.55031],
+ [-72.1029, 18.55025],
+ [-72.10285, 18.55018],
+ [-72.10351, 18.55003],
+ [-72.10349, 18.54974],
+ [-72.10352, 18.54974],
+ [-72.10354, 18.5489],
+ [-72.10343, 18.54871],
+ [-72.10272, 18.54814],
+ [-72.10256, 18.54815],
+ [-72.10229, 18.54828],
+ [-72.10229, 18.54826],
+ [-72.10252, 18.54814],
+ [-72.10234, 18.54813],
+ [-72.09991, 18.54809],
+ [-72.09907, 18.54838],
+ [-72.09888, 18.54843]
+ ],
+ [
+ [-72.25425, 18.56826],
+ [-72.25603, 18.57178],
+ [-72.25579, 18.5748],
+ [-72.2535, 18.57555],
+ [-72.25228, 18.57555],
+ [-72.24999, 18.57409],
+ [-72.24739, 18.56983],
+ [-72.24601, 18.56673],
+ [-72.24585, 18.56295],
+ [-72.24794, 18.56254],
+ [-72.25015, 18.5628],
+ [-72.25192, 18.56508],
+ [-72.25425, 18.56826]
+ ],
+ [
+ [-72.30315, 18.53327],
+ [-72.30313, 18.53318],
+ [-72.30483, 18.53111],
+ [-72.30974, 18.53111],
+ [-72.31643, 18.53243],
+ [-72.32341, 18.53661],
+ [-72.32614, 18.53878],
+ [-72.32619, 18.54264],
+ [-72.31705, 18.55406],
+ [-72.31309, 18.55406],
+ [-72.29875, 18.54533],
+ [-72.29886, 18.54073],
+ [-72.2963, 18.54047],
+ [-72.29546, 18.53952],
+ [-72.29619, 18.53386],
+ [-72.29719, 18.53322],
+ [-72.3007, 18.53328],
+ [-72.30227, 18.53423],
+ [-72.30285, 18.53352],
+ [-72.3031, 18.53334],
+ [-72.30318, 18.5334],
+ [-72.30358, 18.53356],
+ [-72.30308, 18.53465],
+ [-72.30371, 18.53399],
+ [-72.30453, 18.53441],
+ [-72.3044, 18.53451],
+ [-72.30627, 18.53526],
+ [-72.30631, 18.53527],
+ [-72.30612, 18.53576],
+ [-72.30612, 18.53582],
+ [-72.30637, 18.53589],
+ [-72.30627, 18.53549],
+ [-72.30667, 18.53509],
+ [-72.3062, 18.53497],
+ [-72.30589, 18.53494],
+ [-72.30554, 18.53468],
+ [-72.30549, 18.53461],
+ [-72.30556, 18.53451],
+ [-72.30467, 18.53423],
+ [-72.30476, 18.53388],
+ [-72.30433, 18.53375],
+ [-72.30426, 18.53363],
+ [-72.30315, 18.53327]
+ ],
+ [
+ [-72.29814, 18.4775],
+ [-72.29357, 18.49486],
+ [-72.29222, 18.49643],
+ [-72.29317, 18.49725],
+ [-72.28923, 18.50571],
+ [-72.28781, 18.5081],
+ [-72.28505, 18.51199],
+ [-72.28402, 18.51132],
+ [-72.28086, 18.51588],
+ [-72.27732, 18.5176],
+ [-72.27235, 18.51752],
+ [-72.26627, 18.51446],
+ [-72.26659, 18.50668],
+ [-72.26926, 18.50462],
+ [-72.2662, 18.50298],
+ [-72.26882, 18.49652],
+ [-72.26915, 18.49594],
+ [-72.27027, 18.49615],
+ [-72.27027, 18.4956],
+ [-72.26907, 18.49557],
+ [-72.26929, 18.49377],
+ [-72.2737, 18.486],
+ [-72.27467, 18.48504],
+ [-72.27518, 18.4834],
+ [-72.27654, 18.48134],
+ [-72.27735, 18.4815],
+ [-72.2783, 18.48097],
+ [-72.27785, 18.4807],
+ [-72.2771, 18.48012],
+ [-72.279, 18.47758],
+ [-72.27972, 18.47729],
+ [-72.28064, 18.47764],
+ [-72.28137, 18.47716],
+ [-72.28084, 18.47698],
+ [-72.28128, 18.47584],
+ [-72.28232, 18.47518],
+ [-72.28516, 18.4751],
+ [-72.28499, 18.47637],
+ [-72.28544, 18.47698],
+ [-72.28628, 18.47563],
+ [-72.28693, 18.47547],
+ [-72.2866, 18.47519],
+ [-72.2866, 18.475],
+ [-72.29098, 18.47473],
+ [-72.29466, 18.47494],
+ [-72.29739, 18.47684],
+ [-72.29814, 18.4775]
+ ],
+ [
+ [-72.34667, 18.52224],
+ [-72.34683, 18.52443],
+ [-72.34753, 18.52776],
+ [-72.34555, 18.52911],
+ [-72.34031, 18.52922],
+ [-72.33833, 18.52803],
+ [-72.3369, 18.53012],
+ [-72.33381, 18.52967],
+ [-72.32893, 18.52708],
+ [-72.32865, 18.52533],
+ [-72.32921, 18.52327],
+ [-72.33041, 18.52205],
+ [-72.33216, 18.52218],
+ [-72.33225, 18.5192],
+ [-72.33692, 18.51836],
+ [-72.3382, 18.51847],
+ [-72.33815, 18.51818],
+ [-72.3412, 18.51779],
+ [-72.34549, 18.5172],
+ [-72.34926, 18.51728],
+ [-72.35043, 18.51889],
+ [-72.35035, 18.52061],
+ [-72.34968, 18.52204],
+ [-72.34667, 18.52224]
+ ],
+ [
+ [-72.33031, 18.54865],
+ [-72.34297, 18.55081],
+ [-72.34332, 18.55306],
+ [-72.34131, 18.56143],
+ [-72.33906, 18.56136],
+ [-72.33847, 18.56383],
+ [-72.33753, 18.56543],
+ [-72.33484, 18.56506],
+ [-72.33118, 18.56383],
+ [-72.33121, 18.56162],
+ [-72.32321, 18.56069],
+ [-72.32124, 18.5596],
+ [-72.3208, 18.5587],
+ [-72.32088, 18.55788],
+ [-72.32595, 18.55803],
+ [-72.32662, 18.5582],
+ [-72.32592, 18.55775],
+ [-72.3251, 18.55738],
+ [-72.32338, 18.55226],
+ [-72.3246, 18.54785],
+ [-72.3289, 18.54837],
+ [-72.32998, 18.54895],
+ [-72.33031, 18.54865]
+ ],
+ [
+ [-72.32314, 18.52698],
+ [-72.32234, 18.52807],
+ [-72.32096, 18.52797],
+ [-72.32078, 18.52713],
+ [-72.32085, 18.52537],
+ [-72.32146, 18.52496],
+ [-72.32257, 18.52489],
+ [-72.32285, 18.52533],
+ [-72.32324, 18.52648],
+ [-72.32314, 18.52698]
+ ],
+ [
+ [-72.21608, 18.64578],
+ [-72.21596, 18.65538],
+ [-72.20303, 18.65583],
+ [-72.19471, 18.65534],
+ [-72.19222, 18.65456],
+ [-72.19206, 18.65213],
+ [-72.19348, 18.64776],
+ [-72.20125, 18.63852],
+ [-72.20693, 18.63882],
+ [-72.2121, 18.64241],
+ [-72.21181, 18.64306],
+ [-72.21217, 18.64269],
+ [-72.2128, 18.64276],
+ [-72.21347, 18.64313],
+ [-72.21356, 18.64375],
+ [-72.21542, 18.64439],
+ [-72.21589, 18.64503],
+ [-72.21608, 18.64578]
+ ],
+ [
+ [-72.28677, 18.6482],
+ [-72.2901, 18.65274],
+ [-72.28981, 18.65365],
+ [-72.29007, 18.65427],
+ [-72.29072, 18.65377],
+ [-72.29103, 18.65447],
+ [-72.29125, 18.65422],
+ [-72.29168, 18.65589],
+ [-72.29122, 18.65661],
+ [-72.29227, 18.65597],
+ [-72.29269, 18.65675],
+ [-72.29307, 18.65673],
+ [-72.29413, 18.65818],
+ [-72.29602, 18.66084],
+ [-72.29597, 18.66191],
+ [-72.29329, 18.66457],
+ [-72.29067, 18.666],
+ [-72.28959, 18.66613],
+ [-72.28959, 18.66657],
+ [-72.2877, 18.66647],
+ [-72.28758, 18.66766],
+ [-72.28312, 18.66972],
+ [-72.27965, 18.66965],
+ [-72.27843, 18.66908],
+ [-72.2784, 18.66877],
+ [-72.27774, 18.66917],
+ [-72.27744, 18.66914],
+ [-72.27701, 18.66832],
+ [-72.27656, 18.66811],
+ [-72.27654, 18.66806],
+ [-72.27523, 18.66852],
+ [-72.27493, 18.66746],
+ [-72.27464, 18.66743],
+ [-72.27347, 18.66821],
+ [-72.27323, 18.66827],
+ [-72.27268, 18.66716],
+ [-72.27191, 18.66743],
+ [-72.27188, 18.66734],
+ [-72.26881, 18.66819],
+ [-72.26883, 18.66718],
+ [-72.26908, 18.66682],
+ [-72.26881, 18.66679],
+ [-72.26811, 18.66707],
+ [-72.26763, 18.66738],
+ [-72.26756, 18.66669],
+ [-72.26686, 18.66695],
+ [-72.26559, 18.66736],
+ [-72.26545, 18.66701],
+ [-72.26475, 18.66741],
+ [-72.26299, 18.66819],
+ [-72.26285, 18.66818],
+ [-72.26265, 18.66761],
+ [-72.2623, 18.66771],
+ [-72.26248, 18.66792],
+ [-72.26248, 18.66823],
+ [-72.26231, 18.66826],
+ [-72.2621, 18.66797],
+ [-72.26228, 18.66892],
+ [-72.26015, 18.6689],
+ [-72.25427, 18.66879],
+ [-72.25054, 18.66835],
+ [-72.25044, 18.66954],
+ [-72.24779, 18.66989],
+ [-72.24152, 18.66979],
+ [-72.24142, 18.67419],
+ [-72.23892, 18.67398],
+ [-72.23872, 18.67346],
+ [-72.23837, 18.67331],
+ [-72.2387, 18.67395],
+ [-72.23755, 18.6739],
+ [-72.23742, 18.67351],
+ [-72.23774, 18.67334],
+ [-72.23751, 18.67326],
+ [-72.23684, 18.67349],
+ [-72.23644, 18.67241],
+ [-72.23551, 18.6726],
+ [-72.2354, 18.67242],
+ [-72.2353, 18.6729],
+ [-72.23455, 18.67269],
+ [-72.23431, 18.67246],
+ [-72.23424, 18.67347],
+ [-72.23341, 18.67346],
+ [-72.23329, 18.6733],
+ [-72.23274, 18.67329],
+ [-72.23271, 18.6735],
+ [-72.2277, 18.67253],
+ [-72.22653, 18.67165],
+ [-72.2268, 18.67157],
+ [-72.2275, 18.67159],
+ [-72.22749, 18.67145],
+ [-72.22729, 18.67146],
+ [-72.22728, 18.6713],
+ [-72.22721, 18.67136],
+ [-72.22618, 18.67137],
+ [-72.2256, 18.67088],
+ [-72.22551, 18.66945],
+ [-72.22611, 18.66969],
+ [-72.22618, 18.66959],
+ [-72.22598, 18.66955],
+ [-72.22578, 18.66914],
+ [-72.22533, 18.66946],
+ [-72.22497, 18.66947],
+ [-72.22458, 18.66788],
+ [-72.22355, 18.6677],
+ [-72.22359, 18.66759],
+ [-72.22246, 18.66763],
+ [-72.22237, 18.66702],
+ [-72.22233, 18.66709],
+ [-72.22192, 18.66703],
+ [-72.22081, 18.6669],
+ [-72.22081, 18.66653],
+ [-72.22087, 18.66636],
+ [-72.2206, 18.66681],
+ [-72.22039, 18.66664],
+ [-72.21843, 18.66505],
+ [-72.21829, 18.6641],
+ [-72.21835, 18.66084],
+ [-72.21872, 18.66065],
+ [-72.21869, 18.6606],
+ [-72.21873, 18.66045],
+ [-72.21898, 18.66032],
+ [-72.21878, 18.6602],
+ [-72.2187, 18.66024],
+ [-72.21858, 18.66004],
+ [-72.21861, 18.66],
+ [-72.21878, 18.66013],
+ [-72.219, 18.66002],
+ [-72.21891, 18.65991],
+ [-72.21897, 18.65979],
+ [-72.21838, 18.65958],
+ [-72.21847, 18.65397],
+ [-72.2201, 18.65116],
+ [-72.2258, 18.64695],
+ [-72.2283, 18.64573],
+ [-72.23793, 18.64586],
+ [-72.23776, 18.6447],
+ [-72.24004, 18.64325],
+ [-72.2456, 18.64335],
+ [-72.24827, 18.64504],
+ [-72.24875, 18.64367],
+ [-72.25111, 18.64298],
+ [-72.25124, 18.64334],
+ [-72.25126, 18.64316],
+ [-72.25148, 18.64314],
+ [-72.25133, 18.64297],
+ [-72.25336, 18.64235],
+ [-72.25352, 18.64268],
+ [-72.25395, 18.64254],
+ [-72.25415, 18.64293],
+ [-72.25439, 18.64287],
+ [-72.25438, 18.64275],
+ [-72.25642, 18.64232],
+ [-72.25669, 18.64314],
+ [-72.25688, 18.64286],
+ [-72.25682, 18.64253],
+ [-72.25884, 18.6421],
+ [-72.25889, 18.64225],
+ [-72.25926, 18.64223],
+ [-72.25965, 18.64241],
+ [-72.25922, 18.64069],
+ [-72.25995, 18.64048],
+ [-72.26012, 18.64063],
+ [-72.26012, 18.63994],
+ [-72.26153, 18.63947],
+ [-72.26261, 18.6391],
+ [-72.26545, 18.63873],
+ [-72.27194, 18.63868],
+ [-72.2722, 18.63886],
+ [-72.27303, 18.63942],
+ [-72.27317, 18.64126],
+ [-72.27387, 18.64103],
+ [-72.27422, 18.64161],
+ [-72.27522, 18.6417],
+ [-72.27545, 18.64157],
+ [-72.27555, 18.64169],
+ [-72.27554, 18.64175],
+ [-72.27647, 18.64186],
+ [-72.27675, 18.6419],
+ [-72.2763, 18.6426],
+ [-72.27742, 18.643],
+ [-72.27798, 18.64272],
+ [-72.27858, 18.64313],
+ [-72.27857, 18.64323],
+ [-72.2789, 18.64335],
+ [-72.27985, 18.64397],
+ [-72.28587, 18.64697],
+ [-72.28677, 18.6482]
+ ],
+ [
+ [-72.55572, 18.53059],
+ [-72.55559, 18.5367],
+ [-72.555, 18.53797],
+ [-72.5488, 18.53792],
+ [-72.54866, 18.53728],
+ [-72.54884, 18.53063],
+ [-72.54937, 18.5301],
+ [-72.55513, 18.53012],
+ [-72.55572, 18.53059]
+ ],
+ [
+ [-72.62353, 18.50799],
+ [-72.62344, 18.50952],
+ [-72.62261, 18.51043],
+ [-72.62049, 18.51185],
+ [-72.61834, 18.51075],
+ [-72.61622, 18.50832],
+ [-72.61626, 18.50647],
+ [-72.61866, 18.50444],
+ [-72.6204, 18.5045],
+ [-72.62283, 18.507],
+ [-72.62353, 18.50799]
+ ]
+ ]
+ },
+ {
+ "id": "osmim-imagicode-S2A_R119_N09_20160327T050917",
+ "name": "imagico.de: Adams Bridge",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R119_N09_20160327T050917&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-03-27T00:00:00.000Z",
+ "startDate": "2016-03-27T00:00:00.000Z",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [79.01779, 8.82757],
+ [79.01402, 9.64678],
+ [80.17642, 9.65042],
+ [80.17728, 8.8313],
+ [79.01779, 8.82757]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Supplementing incomplete coverage in other sources (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC80700162014211LGN00",
+ "name": "imagico.de: Alaska Range",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC80700162014211LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2014-07-31T00:00:00.000Z",
+ "startDate": "2014-07-31T00:00:00.000Z",
+ "scaleExtent": [0, 12],
+ "polygon": [
+ [
+ [-152.70873, 62.30357],
+ [-152.70839, 62.58153],
+ [-152.00835, 63.54646],
+ [-148.99432, 63.5333],
+ [-148.99432, 62.30357],
+ [-152.70873, 62.30357]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Recent summer image of the Alaska Range for mapping natural features (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-aral2",
+ "name": "imagico.de: Aral Sea (high water level)",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=aral2&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-03-03T00:00:00.000Z",
+ "startDate": "2016-03-03T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [58.049, 43.2623],
+ [58.049, 46.7189],
+ [58.1014, 46.8645],
+ [61.5524, 46.8629],
+ [61.5524, 46.3896],
+ [61.4675, 45.3416],
+ [60.6317, 43.2623],
+ [58.049, 43.2623]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Water and wetland extents, dams etc. - some remaining winter ice in the north (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-aral1",
+ "name": "imagico.de: Aral Sea (low water level)",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=aral1&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-09-09T00:00:00.000Z",
+ "startDate": "2016-09-09T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [58.049, 43.2623],
+ [58.049, 46.7334],
+ [58.096, 46.8645],
+ [61.5524, 46.8629],
+ [61.5524, 46.3896],
+ [61.4685, 45.3544],
+ [60.6267, 43.2623],
+ [58.049, 43.2623]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Water and wetland extents, dams etc. (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R067_S40_20170417T140051",
+ "name": "imagico.de: Bahía Blanca (high tide)",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R067_S40_20170417T140051&z={zoom}&x={x}&y={-y}",
+ "endDate": "2017-04-17T00:00:00.000Z",
+ "startDate": "2017-04-17T00:00:00.000Z",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [-62.9988, -40.7327],
+ [-62.9988, -37.9476],
+ [-61.7505, -37.9474],
+ [-61.7501, -40.7322],
+ [-62.9988, -40.7327]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Tidal flats and islands at the coast (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R067_S40_20170127T140051",
+ "name": "imagico.de: Bahía Blanca (low tide)",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R067_S40_20170127T140051&z={zoom}&x={x}&y={-y}",
+ "endDate": "2017-01-27T00:00:00.000Z",
+ "startDate": "2017-01-27T00:00:00.000Z",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [-62.9988, -40.7327],
+ [-62.9988, -37.9476],
+ [-61.7505, -37.9474],
+ [-61.7501, -40.7322],
+ [-62.9988, -40.7327]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Tidal flats and islands at the coast (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC81190582014075LGN00",
+ "name": "imagico.de: Bakun Reservoir",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81190582014075LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2014-03-16T00:00:00.000Z",
+ "startDate": "2014-03-16T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [114.36, 2.02846],
+ [113.53448, 2.03],
+ [113.53619, 3.07077],
+ [114.76512, 3.06751],
+ [114.76254, 2.08816],
+ [114.36, 2.02846]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Missing in older pre-2011 images (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC81250592016107LGN00",
+ "name": "imagico.de: Batam",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81250592016107LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-01-01T00:00:00.000Z",
+ "startDate": "2014-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [104.00155, -0.00008],
+ [104.00137, 1.45099],
+ [104.91015, 1.45116],
+ [104.91015, -0.00008],
+ [104.00155, -0.00008]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Missing Islands in OSM (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC80770232017156LGN00",
+ "name": "imagico.de: Bogoslof Island",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC80770232017156LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2017-06-05T00:00:00.000Z",
+ "startDate": "2017-06-05T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [-168.2544, 53.8749],
+ [-168.2544, 54.0213],
+ [-167.8591, 54.0213],
+ [-167.8591, 53.8749],
+ [-168.2544, 53.8749]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Recent image from after the eruption (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC81800982013291LGN00",
+ "name": "imagico.de: Bouvet Island",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81800982013291LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2013-10-18T00:00:00.000Z",
+ "startDate": "2013-10-18T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [3.24653, -54.47047],
+ [3.24653, -54.37539],
+ [3.46385, -54.37539],
+ [3.46385, -54.47047],
+ [3.24653, -54.47047]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "best": true,
+ "description": "For more accurate coastline and glacier mapping (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R017_S67_20170223T022551",
+ "name": "imagico.de: Bunger Hills",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R017_S67_20170223T022551&z={zoom}&x={x}&y={-y}",
+ "endDate": "2017-02-23T00:00:00.000Z",
+ "startDate": "2017-02-23T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [96.1197, -67.6542],
+ [96.1201, -67.1899],
+ [98.7331, -65.044],
+ [105.1028, -65.044],
+ [105.1028, -65.7224],
+ [103.3017, -67.6542],
+ [96.1197, -67.6542]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Largest ice free area at the East Antarctic coast - shows considerable amounts of non-permanent ice. (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R065_N47_20160929T102022",
+ "name": "imagico.de: Central Alps in late September 2016",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R065_N47_20160929T102022&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-09-29T00:00:00.000Z",
+ "startDate": "2016-09-29T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [10.55906, 45.95485],
+ [7.47396, 45.95533],
+ [7.55585, 46.2708],
+ [8.0547, 47.66469],
+ [11.75245, 47.66481],
+ [11.75245, 46.81334],
+ [11.38424, 45.95509],
+ [10.55906, 45.95485]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Up-to-date image for glacier mapping - beware of some fresh snow at higher altitudes (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC82050982015344LGN00",
+ "name": "imagico.de: Clerke Rocks",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC82050982015344LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2015-12-10T00:00:00.000Z",
+ "startDate": "2015-12-10T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [-34.17701, -55.29693],
+ [-35.19599, -55.28285],
+ [-35.16664, -54.72097],
+ [-34.12517, -54.73465],
+ [-34.1401, -55.29693],
+ [-34.17701, -55.29693]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Missing in other image sources (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R086_N60_20160831T213532",
+ "name": "imagico.de: Cook Inlet",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R086_N60_20160831T213532&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-08-31T00:00:00.000Z",
+ "startDate": "2016-08-31T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [-154.5102, 59.4577],
+ [-154.5097, 60.6888],
+ [-153.5403, 62.1718],
+ [-148.0423, 62.1718],
+ [-148.0445, 61.5342],
+ [-149.7291, 59.4584],
+ [-154.5102, 59.4577]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Tidal flats and glaciers in surrounding mountains (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-EO1A0040712016264110KF",
+ "name": "imagico.de: Coropuna",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=EO1A0040712016264110KF&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-09-21T00:00:00.000Z",
+ "startDate": "2016-09-21T00:00:00.000Z",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [-72.75945, -15.68684],
+ [-72.75945, -15.4957],
+ [-72.74434, -15.4263],
+ [-72.41286, -15.4263],
+ [-72.41286, -15.65296],
+ [-72.42411, -15.68667],
+ [-72.75945, -15.68684]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Up-to-date image for glacier mapping (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R022_N06_20151221T103009",
+ "name": "imagico.de: Cotonou",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R022_N06_20151221T103009&z={zoom}&x={x}&y={-y}",
+ "endDate": "2015-12-21T00:00:00.000Z",
+ "startDate": "2015-12-21T00:00:00.000Z",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [1.83975, 6.2578],
+ [1.83975, 7.11427],
+ [2.5494, 7.11427],
+ [2.5494, 6.48905],
+ [2.49781, 6.25806],
+ [1.83975, 6.2578]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Patchy and partly cloudy coverage in usual sources (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R040_N01_20160311T164128",
+ "name": "imagico.de: Darwin and Wolf islands, Galapagos",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R040_N01_20160311T164128&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-03-11T00:00:00.000Z",
+ "startDate": "2016-03-11T00:00:00.000Z",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [-92.05216, 1.3213],
+ [-92.05216, 1.72181],
+ [-91.74849, 1.72181],
+ [-91.74849, 1.3213],
+ [-92.05216, 1.3213]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Recent image, only old and poor images in other sources currently (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC80360072014245LGN00",
+ "name": "imagico.de: Eastern Devon Island coast",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC80360072014245LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2014-09-02T00:00:00.000Z",
+ "startDate": "2014-09-02T00:00:00.000Z",
+ "scaleExtent": [0, 11],
+ "polygon": [
+ [
+ [-84.34799, 74.38946],
+ [-84.34799, 75.8903],
+ [-79.14871, 75.8903],
+ [-79.14871, 74.38946],
+ [-84.34799, 74.38946]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Coastline mostly mapped meanwhile (false color IR)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC82160152013239LGN00",
+ "name": "imagico.de: Eastern Iceland",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC82160152013239LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2013-08-27T00:00:00.000Z",
+ "startDate": "2013-08-27T00:00:00.000Z",
+ "scaleExtent": [0, 12],
+ "polygon": [
+ [
+ [-13.04701, 64.21109],
+ [-15.16496, 64.22408],
+ [-15.16805, 64.81573],
+ [-13.04357, 64.8036],
+ [-13.04701, 64.21109]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Missing islets and inaccurate coast (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-AST_L1T_00302052007154424_20150518041444_91492",
+ "name": "imagico.de: El Altar",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=AST_L1T_00302052007154424_20150518041444_91492&z={zoom}&x={x}&y={-y}",
+ "endDate": "2012-02-05T00:00:00.000Z",
+ "startDate": "2012-02-05T00:00:00.000Z",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [-78.532, -1.80509],
+ [-78.532, -1.60811],
+ [-78.33562, -1.60811],
+ [-78.33562, -1.80509],
+ [-78.532, -1.80509]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "2007 ASTER image offering better glacier coverage than common sources (true color with estimated blue)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R009_S61_20160109",
+ "name": "imagico.de: Elephant Island/Clarence Island",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R009_S61_20160109&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-01-09T00:00:00.000Z",
+ "startDate": "2016-01-09T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [-56.13476, -61.63472],
+ [-56.13476, -61.19936],
+ [-55.83264, -60.84015],
+ [-53.72343, -60.83982],
+ [-53.72343, -61.63472],
+ [-56.13476, -61.63472]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Fairly clear up-to-date image for updating glacier edges (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-enderby",
+ "name": "imagico.de: Enderby Land and Kemp Coast",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=enderby&z={zoom}&x={x}&y={-y}",
+ "endDate": "2017-03-27T00:00:00.000Z",
+ "startDate": "2017-01-25T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [45.4547, -68.5091],
+ [45.4547, -67.5724],
+ [49.7155, -65.7176],
+ [59.2693, -65.7176],
+ [67.3735, -67.3449],
+ [67.3735, -68.2581],
+ [67.088, -68.5091],
+ [45.4547, -68.5091]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Sentinel-2 images of Enderby Land and Kemp Coast (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC82100502015347LGN00",
+ "name": "imagico.de: Fogo, Cape Verde",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC82100502015347LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2015-12-13T00:00:00.000Z",
+ "startDate": "2015-12-13T00:00:00.000Z",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [-24.75878, 14.74814],
+ [-24.75878, 15.09249],
+ [-24.26706, 15.09249],
+ [-24.26706, 14.74814],
+ [-24.75878, 14.74814]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Image from after the 2014/2015 eruption (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-greenland",
+ "name": "imagico.de: Greenland mosaic",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=greenland&z={zoom}&x={x}&y={-y}",
+ "endDate": "2015-01-01T00:00:00.000Z",
+ "startDate": "2013-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 12],
+ "polygon": [
+ [
+ [-43.9774, 59.7171],
+ [-44.545, 59.7302],
+ [-44.9203, 59.7672],
+ [-45.3587, 59.8218],
+ [-45.763, 59.8848],
+ [-46.0859, 59.9827],
+ [-46.3381, 60.119],
+ [-46.577, 60.2652],
+ [-46.8114, 60.4418],
+ [-47.2635, 60.5314],
+ [-47.6937, 60.5549],
+ [-48.1457, 60.6192],
+ [-48.5771, 60.7015],
+ [-48.8689, 60.8506],
+ [-49.0578, 61.0555],
+ [-49.396, 61.2957],
+ [-49.7601, 61.4934],
+ [-50.2064, 61.7324],
+ [-50.4699, 61.9539],
+ [-50.8647, 62.1596],
+ [-51.0631, 62.3869],
+ [-51.2121, 62.6001],
+ [-51.3005, 62.8389],
+ [-51.4238, 62.9979],
+ [-51.6767, 63.1944],
+ [-51.9465, 63.4079],
+ [-52.0253, 63.6377],
+ [-52.2255, 63.8378],
+ [-52.3658, 64.0705],
+ [-52.4829, 64.3792],
+ [-52.4988, 64.6788],
+ [-52.789, 64.9063],
+ [-53.2046, 65.1321],
+ [-53.6649, 65.4753],
+ [-53.9977, 65.8019],
+ [-54.1348, 66.1568],
+ [-54.1441, 66.5235],
+ [-54.2285, 66.8319],
+ [-54.4519, 67.303],
+ [-54.5141, 67.7648],
+ [-54.604, 68.2021],
+ [-54.568, 68.5698],
+ [-54.598, 68.8347],
+ [-54.7606, 69.1207],
+ [-55.0028, 69.4125],
+ [-55.2735, 69.6187],
+ [-55.3808, 69.8283],
+ [-55.3945, 70.0838],
+ [-55.3094, 70.2573],
+ [-55.4307, 70.479],
+ [-55.5501, 70.6707],
+ [-55.7654, 70.861],
+ [-56.2489, 71.2343],
+ [-56.5018, 71.5429],
+ [-56.5867, 71.9015],
+ [-56.5189, 72.2355],
+ [-56.5085, 72.5258],
+ [-56.8923, 72.8144],
+ [-57.4027, 73.1054],
+ [-57.8066, 73.4566],
+ [-58.1461, 73.7696],
+ [-58.3554, 74.0972],
+ [-58.5125, 74.3783],
+ [-58.7336, 74.6328],
+ [-59.3551, 74.8869],
+ [-60.1412, 75.102],
+ [-61.0067, 75.2763],
+ [-61.911, 75.3886],
+ [-62.4706, 75.5595],
+ [-62.9776, 75.7454],
+ [-64.1463, 75.779],
+ [-65.4481, 75.7235],
+ [-66.7068, 75.6792],
+ [-67.8379, 75.6525],
+ [-69.0456, 75.6195],
+ [-70.055, 75.5344],
+ [-71.0898, 75.4705],
+ [-72.1119, 75.4476],
+ [-74.2311, 76.4102],
+ [-74.5601, 76.5328],
+ [-74.5601, 82.6959],
+ [-14.4462, 82.6959],
+ [-14.3994, 82.5997],
+ [-13.5339, 82.4379],
+ [-12.0312, 82.3426],
+ [-10.7796, 82.3196],
+ [-10.7796, 80.1902],
+ [-11.2123, 80.069],
+ [-11.136, 79.8103],
+ [-10.7796, 79.5176],
+ [-10.7796, 79.0441],
+ [-11.2626, 78.7128],
+ [-12.2579, 78.3558],
+ [-13.2398, 78.1272],
+ [-13.7649, 77.9279],
+ [-14.1169, 77.6779],
+ [-14.7129, 77.5278],
+ [-15.5507, 77.3655],
+ [-16.0936, 77.0771],
+ [-16.0586, 76.5548],
+ [-15.838, 75.9611],
+ [-15.6879, 75.4726],
+ [-16.253, 75.058],
+ [-17.0427, 74.6425],
+ [-18.3155, 74.2702],
+ [-19.4463, 73.9378],
+ [-19.8329, 73.632],
+ [-20.2938, 73.3524],
+ [-20.7831, 73.0446],
+ [-21.01, 72.6766],
+ [-20.8774, 72.2926],
+ [-20.7672, 71.8726],
+ [-20.7765, 71.4304],
+ [-20.9411, 70.9802],
+ [-21.219, 70.6126],
+ [-21.5326, 70.3001],
+ [-21.8039, 70.0911],
+ [-22.166, 69.8947],
+ [-22.4831, 69.7539],
+ [-22.9027, 69.6585],
+ [-23.3545, 69.544],
+ [-23.9177, 69.4036],
+ [-24.1794, 69.3088],
+ [-24.6745, 69.1084],
+ [-25.1222, 68.9555],
+ [-25.6659, 68.7995],
+ [-26.0994, 68.583],
+ [-26.6316, 68.4043],
+ [-27.7638, 68.2813],
+ [-28.4575, 68.0023],
+ [-29.353, 67.8135],
+ [-30.6456, 67.4911],
+ [-31.7673, 67.0005],
+ [-32.9783, 66.2596],
+ [-33.9313, 66.0156],
+ [-34.8956, 65.7403],
+ [-35.5914, 65.5208],
+ [-36.1483, 65.372],
+ [-36.7532, 65.2559],
+ [-37.1858, 65.1349],
+ [-37.6032, 64.9727],
+ [-38.0624, 64.4901],
+ [-38.5304, 64.1244],
+ [-39.0545, 63.7213],
+ [-39.3131, 63.4405],
+ [-39.5739, 62.7506],
+ [-39.9532, 62.2739],
+ [-40.2757, 61.8547],
+ [-40.714, 61.3365],
+ [-41.2091, 60.8495],
+ [-41.821, 60.5526],
+ [-42.4368, 60.3264],
+ [-42.8643, 60.0299],
+ [-43.1131, 59.9147],
+ [-43.3282, 59.83],
+ [-43.5459, 59.7695],
+ [-43.797, 59.7284],
+ [-43.9774, 59.7171]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Landsat mosaic of Greenland (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R047_S54_20160411T044330",
+ "name": "imagico.de: Heard Island coast",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R047_S54_20160411T044330&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-04-12T00:00:00.000Z",
+ "startDate": "2016-04-12T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [73.06897, -53.27059],
+ [73.06897, -52.87549],
+ [73.67338, -52.87673],
+ [74.08863, -52.9495],
+ [74.08863, -53.27059],
+ [73.06897, -53.27059]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Recent image of Heard island with interior mostly cloud covered but mostly well visible coast (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC82280982013259LGN00",
+ "name": "imagico.de: Isla Londonderry",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC82280982013259LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2013-09-16T00:00:00.000Z",
+ "startDate": "2013-09-16T00:00:00.000Z",
+ "scaleExtent": [0, 12],
+ "polygon": [
+ [
+ [-69.8568, -55.55949],
+ [-72.26521, -55.14943],
+ [-72.26521, -54.51089],
+ [-72.08531, -54.17909],
+ [-69.49116, -54.17889],
+ [-69.4915, -55.28379],
+ [-69.62231, -55.5591],
+ [-69.8568, -55.55949]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "A lot of very coarse coastlines could be improved here, much snow cover though so no use for glacier mapping (false color IR)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-dms_kangerlussuaq_20151008",
+ "name": "imagico.de: Kangerlussuaq Autumn",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=dms_kangerlussuaq_20151008&z={zoom}&x={x}&y={-y}",
+ "endDate": "2015-10-08T00:00:00.000Z",
+ "startDate": "2015-10-08T00:00:00.000Z",
+ "scaleExtent": [0, 17],
+ "polygon": [
+ [
+ [-50.6992, 66.9888],
+ [-50.721, 67.0017],
+ [-50.7341, 67.0125],
+ [-50.7396, 67.0193],
+ [-50.7396, 67.0212],
+ [-50.7158, 67.0265],
+ [-50.7017, 67.0265],
+ [-50.6829, 67.0176],
+ [-50.6686, 67.0077],
+ [-50.6638, 66.998],
+ [-50.6642, 66.9946],
+ [-50.6891, 66.9888],
+ [-50.6992, 66.9888]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Icebridge DMS image of the airport and settlement - alignment might be poor",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-dms_kangerlussuaq_20160518",
+ "name": "imagico.de: Kangerlussuaq Spring",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=dms_kangerlussuaq_20160518&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-05-18T00:00:00.000Z",
+ "startDate": "2016-05-18T00:00:00.000Z",
+ "scaleExtent": [0, 18],
+ "polygon": [
+ [
+ [-50.7519, 66.9996],
+ [-50.7555, 67.0023],
+ [-50.7555, 67.0033],
+ [-50.6395, 67.0297],
+ [-50.6162, 67.0339],
+ [-50.6097, 67.0281],
+ [-50.6331, 67.022],
+ [-50.7323, 66.9996],
+ [-50.7519, 66.9996]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Icebridge DMS image of the airport and roads - alignment might be poor",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R021_N44_20160807T083013",
+ "name": "imagico.de: Kerch Strait",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R021_N44_20160807T083013&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-08-07T00:00:00.000Z",
+ "startDate": "2016-08-07T00:00:00.000Z",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [35.93259, 44.96237],
+ [35.93259, 45.55926],
+ [37.36991, 45.55926],
+ [37.36991, 44.96237],
+ [35.93259, 44.96237]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "State of bridge construction in August 2016 (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R021_N44_20180429T082601",
+ "name": "imagico.de: Kerch Strait 2018",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R021_N44_20180429T082601&z={zoom}&x={x}&y={-y}",
+ "endDate": "2018-04-29T00:00:00.000Z",
+ "startDate": "2018-04-29T00:00:00.000Z",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [35.8787, 45.0348],
+ [35.8787, 45.6095],
+ [36.9208, 45.6095],
+ [36.9208, 45.0348],
+ [35.8787, 45.0348]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Bridge and surrounding after completion in April 2018 (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-ls_polar2",
+ "name": "imagico.de: Landsat off-nadir July 2016",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=ls_polar2&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-07-17T00:00:00.000Z",
+ "startDate": "2016-07-17T00:00:00.000Z",
+ "scaleExtent": [0, 10],
+ "polygon": [
+ [
+ [-79.05175, 81.91484],
+ [-79.05175, 83.43339],
+ [-73.6039, 83.80225],
+ [-26.42449, 83.80225],
+ [-21.493, 83.50352],
+ [-16.88835, 83.15095],
+ [-16.88835, 81.91484],
+ [-79.05175, 81.91484]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Latest images north of the regular Landsat limit (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-larsen_2018",
+ "name": "imagico.de: Larsen C ice shelf after calving",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=larsen_2018&z={zoom}&x={x}&y={-y}",
+ "endDate": "2018-01-06T00:00:00.000Z",
+ "startDate": "2018-01-06T00:00:00.000Z",
+ "scaleExtent": [0, 12],
+ "polygon": [
+ [
+ [-62.7282, -68.9652],
+ [-64.0489, -68.7318],
+ [-64.0486, -68.5373],
+ [-60.8845, -65.9399],
+ [-59.9187, -65.9389],
+ [-59.1088, -66.0775],
+ [-59.1088, -68.8359],
+ [-59.2544, -68.9652],
+ [-62.7282, -68.9652]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "For updating the ice edge after the 2017 iceberg calving (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-AST_L1T_00311162013112731_20150618142416_109190",
+ "name": "imagico.de: Leskov Island ASTER",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=AST_L1T_00311162013112731_20150618142416_109190&z={zoom}&x={x}&y={-y}",
+ "endDate": "2013-11-16T00:00:00.000Z",
+ "startDate": "2013-11-16T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [-28.21075, -56.72108],
+ [-28.21075, -56.62498],
+ [-27.96956, -56.62498],
+ [-27.96956, -56.72108],
+ [-28.21075, -56.72108]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Missing in other image sources (true color with estimated blue)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC81991002015286LGN00",
+ "name": "imagico.de: Leskov Island Landsat",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81991002015286LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2015-10-13T00:00:00.000Z",
+ "startDate": "2015-10-13T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [-27.99293, -56.73479],
+ [-28.22776, -56.73262],
+ [-28.22416, -56.60075],
+ [-27.96975, -56.60283],
+ [-27.97319, -56.73479],
+ [-27.99293, -56.73479]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Missing in other image sources (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2B_R005_S69_20180222T061749",
+ "name": "imagico.de: Lützow-Holm Bay",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2B_R005_S69_20180222T061749&z={zoom}&x={x}&y={-y}",
+ "endDate": "2018-02-22T00:00:00.000Z",
+ "startDate": "2018-02-22T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [35.124, -70.3693],
+ [35.1241, -69.2795],
+ [36.3864, -68.4765],
+ [42.2208, -68.4762],
+ [42.2208, -70.3651],
+ [35.124, -70.3693]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Up-to-date late season image or an area poorly mapped in OSM at the moment - lots of sea ice, be careful with distinguishing sea ice from ice shelves and floating glacier tongues. (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-ls_polar",
+ "name": "imagico.de: May 2013 off-nadir Landsat",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=ls_polar&z={zoom}&x={x}&y={-y}",
+ "endDate": "2013-05-17T00:00:00.000Z",
+ "startDate": "2013-05-17T00:00:00.000Z",
+ "scaleExtent": [0, 10],
+ "polygon": [
+ [
+ [-85.76109, 81.39333],
+ [-89.83016, 82.14952],
+ [-89.83153, 82.24405],
+ [-84.99342, 82.73099],
+ [-79.95207, 83.13108],
+ [-74.55641, 83.46267],
+ [-69.35851, 83.70451],
+ [-28.20784, 83.70451],
+ [-23.06624, 83.46532],
+ [-17.96584, 83.15518],
+ [-17.96721, 82.72386],
+ [-22.78197, 81.4419],
+ [-85.76109, 81.39333]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "First available image north of the regular Landsat limit, mostly with seasonal snow cover so difficult to interpret (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R042_S78_20170214T202521",
+ "name": "imagico.de: McMurdo Sound and Dry Valleys",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R042_S78_20170214T202521&z={zoom}&x={x}&y={-y}",
+ "endDate": "2017-02-14T00:00:00.000Z",
+ "startDate": "2017-02-14T00:00:00.000Z",
+ "scaleExtent": [0, 12],
+ "polygon": [
+ [
+ [162.9125, -78.4514],
+ [162.6595, -78.4257],
+ [159.2712, -77.6013],
+ [159.2712, -77.4108],
+ [164.157, -76.477],
+ [169.7813, -76.4764],
+ [169.7813, -78.4514],
+ [162.9125, -78.4514]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Up-to-date late season image - not ice minimum, be careful with distinguishing sea ice from ice shelves. (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R092_S02_20160613T075613",
+ "name": "imagico.de: Mount Kenya 2016",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R092_S02_20160613T075613&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-06-13T00:00:00.000Z",
+ "startDate": "2016-06-13T00:00:00.000Z",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [37.20666, -0.26685],
+ [37.20666, -0.01193],
+ [37.56552, -0.01193],
+ [37.56552, -0.26685],
+ [37.20666, -0.26685]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Up-to-date image for glacier mapping (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R092_S05_20160802T075556",
+ "name": "imagico.de: Mount Kilimanjaro 2016",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R092_S05_20160802T075556&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-08-02T00:00:00.000Z",
+ "startDate": "2016-08-02T00:00:00.000Z",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [37.24769, -3.22921],
+ [37.24769, -2.96816],
+ [37.61581, -2.96816],
+ [37.61581, -3.22921],
+ [37.24769, -3.22921]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Up-to-date image for glacier mapping (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC80940622015159LGN00",
+ "name": "imagico.de: New Ireland",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC80940622015159LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2015-06-08T00:00:00.000Z",
+ "startDate": "2015-06-08T00:00:00.000Z",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [150.38853, -2.80053],
+ [150.38853, -2.3834],
+ [150.83348, -2.3834],
+ [150.83348, -2.80053],
+ [150.38853, -2.80053]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Many missing islands in OSM (mostly mapped meanwhile) (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-northsea_s2_2016",
+ "name": "imagico.de: North Sea Coast 2016",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=northsea_s2_2016&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-09-25T00:00:00.000Z",
+ "startDate": "2016-09-25T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [5.1562, 52.8755],
+ [5.1615, 53.0325],
+ [6.4155, 55.7379],
+ [9.8813, 55.7459],
+ [9.8813, 53.2428],
+ [9.6846, 52.8877],
+ [5.1562, 52.8755]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-northsea_s2_2017",
+ "name": "imagico.de: North Sea Coast 2017",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=northsea_s2_2017&z={zoom}&x={x}&y={-y}",
+ "endDate": "2017-06-02T00:00:00.000Z",
+ "startDate": "2017-06-02T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [5.1713, 53.0918],
+ [6.477, 55.8973],
+ [9.8813, 55.8973],
+ [9.8813, 53.2761],
+ [9.7789, 53.0918],
+ [5.1713, 53.0918]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-northsea_s2_2018",
+ "name": "imagico.de: North Sea Coast spring 2018",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=northsea_s2_2018&z={zoom}&x={x}&y={-y}",
+ "endDate": "2018-05-08T00:00:00.000Z",
+ "startDate": "2018-05-08T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [5.3179, 53.0918],
+ [5.322, 53.4418],
+ [6.7023, 56.3572],
+ [9.8813, 56.3578],
+ [9.8813, 53.2819],
+ [9.7758, 53.0921],
+ [5.3179, 53.0918]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-caspian_2018",
+ "name": "imagico.de: Northeast Caspian Sea 2018",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=caspian_2018&z={zoom}&x={x}&y={-y}",
+ "endDate": "2018-05-16T00:00:00.000Z",
+ "startDate": "2018-05-16T00:00:00.000Z",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [51.0243, 45.0729],
+ [51.0243, 46.569],
+ [52.4259, 46.5687],
+ [53.6471, 46.3177],
+ [53.6474, 45.0729],
+ [51.0243, 45.0729]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Coastal contruction and Kashagan oil field in Kazakhstan in May 2018 (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-ural_s2_2016",
+ "name": "imagico.de: Northern and Polar Ural mountains August 2016",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=ural_s2_2016&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-08-12T00:00:00.000Z",
+ "startDate": "2016-08-12T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [59.19898, 64.89205],
+ [59.19898, 66.91656],
+ [60.73329, 68.44289],
+ [67.73295, 68.44327],
+ [67.73295, 67.74883],
+ [64.21647, 64.91957],
+ [59.19898, 64.89205]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Up-to-date late summer imagery with few clouds - caution: not all visible snow is glaciers (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-ndvina",
+ "name": "imagico.de: Northern Dvina delta at low tide",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=ndvina&z={zoom}&x={x}&y={-y}",
+ "endDate": "2015-09-13T00:00:00.000Z",
+ "startDate": "2015-09-13T00:00:00.000Z",
+ "scaleExtent": [0, 12],
+ "polygon": [
+ [
+ [37.7291, 64.1971],
+ [37.7291, 65.1161],
+ [37.8592, 65.2705],
+ [41.3223, 65.2705],
+ [41.3223, 64.3142],
+ [41.2114, 64.1973],
+ [37.7291, 64.1971]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Beaches, tidal flats and other costal forms (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-nellesmere_ast",
+ "name": "imagico.de: Northern Ellesmere Island",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=nellesmere_ast&z={zoom}&x={x}&y={-y}",
+ "endDate": "2012-07-09T00:00:00.000Z",
+ "startDate": "2012-07-09T00:00:00.000Z",
+ "scaleExtent": [0, 10],
+ "polygon": [
+ [
+ [-81.62923, 82.4597],
+ [-83.03136, 82.47986],
+ [-83.03136, 83.05876],
+ [-72.80309, 83.09567],
+ [-65.65786, 83.03232],
+ [-65.81167, 82.4597],
+ [-81.62923, 82.4597]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Assembled from July 2012 ASTER imagery (true color with estimated blue)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-nellesmere_ast_2016",
+ "name": "imagico.de: Northern Ellesmere Island July 2016",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=nellesmere_ast_2016&z={zoom}&x={x}&y={-y}",
+ "endDate": "2012-07-15T00:00:00.000Z",
+ "startDate": "2012-07-08T00:00:00.000Z",
+ "scaleExtent": [0, 10],
+ "polygon": [
+ [
+ [-78.89729, 82.17577],
+ [-82.64501, 82.19426],
+ [-82.64501, 83.08067],
+ [-66.58986, 83.08497],
+ [-63.78011, 82.98908],
+ [-63.78011, 82.72198],
+ [-65.0092, 82.17577],
+ [-78.89729, 82.17577]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Assembled from July 2016 ASTER imagery (true color with estimated blue)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC81960222015233LGN00vis",
+ "name": "imagico.de: Northern German west coast tidalflats",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81960222015233LGN00vis&z={zoom}&x={x}&y={-y}",
+ "endDate": "2015-08-21T00:00:00.000Z",
+ "startDate": "2015-08-21T00:00:00.000Z",
+ "scaleExtent": [0, 12],
+ "polygon": [
+ [
+ [7.63568, 53.28027],
+ [7.63568, 53.6677],
+ [8.49433, 55.50246],
+ [9.20775, 55.48106],
+ [9.20775, 53.28027],
+ [7.63568, 53.28027]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC81960222015233LGN00ir",
+ "name": "imagico.de: Northern German west coast tidalflats (infrared)",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81960222015233LGN00ir&z={zoom}&x={x}&y={-y}",
+ "endDate": "2015-08-21T00:00:00.000Z",
+ "startDate": "2015-08-21T00:00:00.000Z",
+ "scaleExtent": [0, 12],
+ "polygon": [
+ [
+ [7.63568, 53.28027],
+ [7.63568, 53.66811],
+ [8.49433, 55.50246],
+ [9.20775, 55.48106],
+ [9.20775, 53.28027],
+ [7.63568, 53.28027]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (false color IR)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-ngreenland_ast",
+ "name": "imagico.de: Northern Greenland ASTER",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=ngreenland_ast&z={zoom}&x={x}&y={-y}",
+ "endDate": "2012-08-13T00:00:00.000Z",
+ "startDate": "2005-06-21T00:00:00.000Z",
+ "scaleExtent": [0, 10],
+ "polygon": [
+ [
+ [-52.49222, 82.48972],
+ [-52.49222, 82.94295],
+ [-49.28696, 83.47312],
+ [-44.5285, 83.73214],
+ [-29.5253, 83.73214],
+ [-25.26398, 83.58271],
+ [-21.18393, 83.39776],
+ [-21.18393, 82.74312],
+ [-23.40454, 82.48972],
+ [-52.49222, 82.48972]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Assembled from mostly 2012 ASTER imagery, some 2005 images mainly in the northeast (true color with estimated blue)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-EO1A1350972013086110KF",
+ "name": "imagico.de: Northwest Heard Island",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=EO1A1350972013086110KF&z={zoom}&x={x}&y={-y}",
+ "endDate": "2013-03-13T00:00:00.000Z",
+ "startDate": "2013-03-13T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [73.2279, -53.20333],
+ [73.2279, -53.01073],
+ [73.25949, -52.94944],
+ [73.78992, -52.94944],
+ [73.78992, -53.06048],
+ [73.71783, -53.20333],
+ [73.2279, -53.20333]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Glaciers of Northwest Heard Island (mapped meanwhile) (false color IR)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R111_N09_20160604T154554",
+ "name": "imagico.de: Panama Canal",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R111_N09_20160604T154554&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-06-07T00:00:00.000Z",
+ "startDate": "2016-06-07T00:00:00.000Z",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [-80.01654, 8.84898],
+ [-80.01654, 9.41481],
+ [-79.46859, 9.41481],
+ [-79.46859, 8.84898],
+ [-80.01654, 8.84898]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Images of the new locks (but partly cloudy) (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-EO1A0120532016364110KF",
+ "name": "imagico.de: Panama Canal - Pacific side",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=EO1A0120532016364110KF&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-12-30T00:00:00.000Z",
+ "startDate": "2016-12-30T00:00:00.000Z",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [-79.62539, 8.77083],
+ [-79.68684, 8.82197],
+ [-79.68667, 8.93705],
+ [-79.65363, 9.09294],
+ [-79.26816, 9.09294],
+ [-79.32833, 8.77083],
+ [-79.62539, 8.77083]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "New locks with less clouds than in the Sentinel-2 image - make sure to check image alignment (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R078_N68_20160930T081002",
+ "name": "imagico.de: Pechora Sea Coast",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R078_N68_20160930T081002&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-09-30T00:00:00.000Z",
+ "startDate": "2016-09-30T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [53.1802, 67.5344],
+ [53.1821, 68.414],
+ [54.2107, 69.3367],
+ [55.3584, 70.2786],
+ [59.004, 70.2786],
+ [60.6947, 69.977],
+ [61.9837, 69.7161],
+ [61.9823, 68.9395],
+ [59.9153, 67.5344],
+ [53.1802, 67.5344]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Sentinel-2 image of the Pechora Sea coast in autumn 2016 (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC81511242016033LGN00",
+ "name": "imagico.de: Pensacola Mountains",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81511242016033LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-02-02T00:00:00.000Z",
+ "startDate": "2016-02-02T00:00:00.000Z",
+ "scaleExtent": [0, 10],
+ "polygon": [
+ [
+ [-53.20922, -84.12525],
+ [-60.61538, -83.78609],
+ [-60.61538, -82.29969],
+ [-48.72405, -82.29987],
+ [-44.52178, -82.43683],
+ [-44.51354, -84.12525],
+ [-53.20922, -84.12525]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Outside regular Landsat coverage and therefore not in LIMA and Bing/Mapbox (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R136_N41_20150831T093006",
+ "name": "imagico.de: Prokletije Mountains",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R136_N41_20150831T093006&z={zoom}&x={x}&y={-y}",
+ "endDate": "2015-08-31T00:00:00.000Z",
+ "startDate": "2015-08-31T00:00:00.000Z",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [19.11233, 42.15316],
+ [19.08426, 43.08074],
+ [20.63299, 43.09603],
+ [20.63788, 42.16779],
+ [19.11233, 42.15316]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Late summer imagery where usual sources are severely limited by clouds and snow (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-DMS_1142622_03746_20110415_17533956",
+ "name": "imagico.de: Qasigiannguit",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=DMS_1142622_03746_20110415_17533956&z={zoom}&x={x}&y={-y}",
+ "endDate": "2011-04-15T00:00:00.000Z",
+ "startDate": "2011-04-15T00:00:00.000Z",
+ "scaleExtent": [0, 15],
+ "polygon": [
+ [
+ [-51.23857, 68.79972],
+ [-51.24334, 68.85303],
+ [-51.15167, 68.85303],
+ [-51.14038, 68.80116],
+ [-51.23857, 68.79972]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Icebridge DMS image of the settlement - alignment might be poor",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC81510432015030LGN00",
+ "name": "imagico.de: Rann of Kutch",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81510432015030LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2015-01-01T00:00:00.000Z",
+ "startDate": "2015-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 12],
+ "polygon": [
+ [
+ [67.9684, 22.36265],
+ [67.86231, 22.38392],
+ [67.86231, 24.88693],
+ [71.48986, 24.88693],
+ [71.48986, 22.36265],
+ [67.9684, 22.36265]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Land/water distinction difficult to properly map based on Bing/Mapbox images (false color IR)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R093_N41_20150828T092005",
+ "name": "imagico.de: Rila and Pirin Mountains",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R093_N41_20150828T092005&z={zoom}&x={x}&y={-y}",
+ "endDate": "2015-08-28T00:00:00.000Z",
+ "startDate": "2015-08-28T00:00:00.000Z",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [23.80811, 41.58488],
+ [22.99238, 41.60195],
+ [23.01186, 42.29984],
+ [23.99402, 42.28339],
+ [23.96561, 41.58488],
+ [23.80811, 41.58488]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Late summer imagery where usual sources are severely limited by clouds and snow (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC81730602015040LGN00",
+ "name": "imagico.de: Rwenzori Mountains",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81730602015040LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2015-02-09T00:00:00.000Z",
+ "startDate": "2015-02-09T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [29.7663, 0.20689],
+ [29.7663, 0.50918],
+ [30.0346, 0.50918],
+ [30.0346, 0.20689],
+ [29.7663, 0.20689]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Recent image of most of the remaining Rwenzori Mountains glaciers (false color IR)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R078_N01_20160702T082522",
+ "name": "imagico.de: Rwenzori Mountains 2016",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R078_N01_20160702T082522&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-07-02T00:00:00.000Z",
+ "startDate": "2016-07-02T00:00:00.000Z",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [29.80514, 0.23586],
+ [29.80514, 0.46709],
+ [30.02503, 0.46709],
+ [30.02503, 0.23586],
+ [29.80514, 0.23586]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Up-to-date image for glacier mapping (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC80611072014036LGN00",
+ "name": "imagico.de: Scott Island",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC80611072014036LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2014-02-05T00:00:00.000Z",
+ "startDate": "2014-02-05T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [-180, -67.42635],
+ [-180, -67.32544],
+ [-179.82473, -67.32538],
+ [-179.82473, -67.42635],
+ [-180, -67.42635]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Missing in other image sources (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC82100972015347LGN00",
+ "name": "imagico.de: Shag Rocks",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC82100972015347LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2015-12-13T00:00:00.000Z",
+ "startDate": "2015-12-13T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [-42.12875, -53.7205],
+ [-42.14626, -53.45782],
+ [-41.67573, -53.44586],
+ [-41.65582, -53.70872],
+ [-42.12875, -53.7205]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Missing in other image sources (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC81130622013270LGN00",
+ "name": "imagico.de: Southeastern Sulawesi",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81130622013270LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2013-09-27T00:00:00.000Z",
+ "startDate": "2013-09-27T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [120.84382, -3.59545],
+ [120.84382, -3.15985],
+ [120.98184, -2.51468],
+ [122.62618, -2.51468],
+ [122.62618, -3.00215],
+ [122.5007, -3.59545],
+ [120.84382, -3.59545]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Missing islands and coarse coastline due to cloud cover in Bing, lakes could also use additional detail (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC80281222016035LGN00",
+ "name": "imagico.de: Southern Transantarctic Mountains",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC80281222016035LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-02-04T00:00:00.000Z",
+ "startDate": "2016-02-04T00:00:00.000Z",
+ "scaleExtent": [0, 10],
+ "polygon": [
+ [
+ [156.96951, -84.50098],
+ [154.50858, -84.46255],
+ [154.50858, -82.60681],
+ [175.46774, -82.58505],
+ [177.00583, -83.52807],
+ [177.00583, -84.19262],
+ [171.93839, -84.34633],
+ [166.83798, -84.4437],
+ [161.67029, -84.50045],
+ [156.96951, -84.50098]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Outside regular Landsat coverage and therefore not in LIMA and Bing/Mapbox (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC81030632015286LGN00",
+ "name": "imagico.de: Sudirman Range 2015",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81030632015286LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2015-10-13T00:00:00.000Z",
+ "startDate": "2015-10-13T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [136.4226, -4.2853],
+ [136.4226, -3.6447],
+ [137.7971, -3.6447],
+ [137.7971, -4.2853],
+ [136.4226, -4.2853]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Older image of the Sudirman Range with no fresh snow showing glacier extent (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R088_S05_20160812T011732",
+ "name": "imagico.de: Sudirman Range 2016",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R088_S05_20160812T011732&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-08-12T00:00:00.000Z",
+ "startDate": "2016-08-12T00:00:00.000Z",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [136.8044, -4.2585],
+ [136.8044, -3.7836],
+ [137.7701, -3.7836],
+ [137.7701, -4.2585],
+ [136.8044, -4.2585]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Cloud free image of the Sudirman Range but with fresh snow (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-s2sval",
+ "name": "imagico.de: Svalbard mosaic",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=s2sval&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-01-01T00:00:00.000Z",
+ "startDate": "2016-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 12],
+ "polygon": [
+ [
+ [16.6108, 76.4137],
+ [16.4731, 76.4268],
+ [16.3788, 76.4589],
+ [14.4124, 77.1324],
+ [14.0784, 77.2536],
+ [10.9875, 78.4054],
+ [10.631, 78.5605],
+ [10.2314, 78.8392],
+ [10.3952, 79.6074],
+ [10.516, 79.7731],
+ [10.9632, 79.8707],
+ [20.2294, 80.849],
+ [20.4702, 80.8493],
+ [25.1752, 80.6817],
+ [33.4391, 80.3438],
+ [33.7809, 80.3016],
+ [34.0395, 80.239],
+ [33.977, 80.1527],
+ [25.5722, 76.5917],
+ [25.2739, 76.481],
+ [25.1416, 76.4327],
+ [24.937, 76.4176],
+ [16.6108, 76.4137]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Sentinel-2 mosaic of Svalbard (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-DMS_1142636_160xx_20110507_1822xxxx",
+ "name": "imagico.de: Thule Air Base",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=DMS_1142636_160xx_20110507_1822xxxx&z={zoom}&x={x}&y={-y}",
+ "endDate": "2011-05-07T00:00:00.000Z",
+ "startDate": "2011-05-07T00:00:00.000Z",
+ "scaleExtent": [0, 15],
+ "polygon": [
+ [
+ [-68.93977, 76.51133],
+ [-68.93977, 76.5499],
+ [-68.76635, 76.55176],
+ [-68.50993, 76.55176],
+ [-68.50744, 76.51612],
+ [-68.67897, 76.51194],
+ [-68.93977, 76.51133]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Icebridge DMS image - alignment might be poor",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-dms_thule2_2015.09.25",
+ "name": "imagico.de: Thule Airbase DMS low altitude overflight September 2015",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=dms_thule2_2015.09.25&z={zoom}&x={x}&y={-y}",
+ "endDate": "2015-09-25T00:00:00.000Z",
+ "startDate": "2015-09-25T00:00:00.000Z",
+ "scaleExtent": [0, 17],
+ "polygon": [
+ [
+ [-68.74292, 76.52636],
+ [-68.74446, 76.5284],
+ [-68.74807, 76.54939],
+ [-68.74615, 76.56017],
+ [-68.72276, 76.56022],
+ [-68.72017, 76.55775],
+ [-68.71853, 76.52921],
+ [-68.71978, 76.52637],
+ [-68.74292, 76.52636]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Icebridge DMS aerial images from Thule Airbase - alignment might be poor",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-dms_thule_2015.10.06",
+ "name": "imagico.de: Thule Airbase DMS overflight October 2015",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=dms_thule_2015.10.06&z={zoom}&x={x}&y={-y}",
+ "endDate": "2015-10-06T00:00:00.000Z",
+ "startDate": "2015-10-06T00:00:00.000Z",
+ "scaleExtent": [0, 16],
+ "polygon": [
+ [
+ [-68.81924, 76.5251],
+ [-68.82651, 76.54177],
+ [-68.77345, 76.5439],
+ [-68.7021, 76.54545],
+ [-68.59177, 76.5456],
+ [-68.59183, 76.52793],
+ [-68.6597, 76.5251],
+ [-68.81924, 76.5251]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Icebridge DMS aerial images from Thule Airbase - alignment might be poor",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-dms_thule_2015.09.25",
+ "name": "imagico.de: Thule Airbase DMS overflight September 2015",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=dms_thule_2015.09.25&z={zoom}&x={x}&y={-y}",
+ "endDate": "2015-09-25T00:00:00.000Z",
+ "startDate": "2015-09-25T00:00:00.000Z",
+ "scaleExtent": [0, 16],
+ "polygon": [
+ [
+ [-68.77771, 76.50688],
+ [-68.77662, 76.57064],
+ [-68.68115, 76.57065],
+ [-68.6763, 76.55384],
+ [-68.6762, 76.53074],
+ [-68.68523, 76.50688],
+ [-68.77771, 76.50688]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Icebridge DMS aerial images from Thule Airbase - alignment might be poor",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R094_N79_20160812T105622",
+ "name": "imagico.de: Ushakov Island August 2016",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R094_N79_20160812T105622&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-08-12T00:00:00.000Z",
+ "startDate": "2016-08-12T00:00:00.000Z",
+ "scaleExtent": [0, 12],
+ "polygon": [
+ [
+ [78.45886, 80.72643],
+ [78.45886, 80.9099],
+ [80.48892, 80.9099],
+ [80.48892, 80.72643],
+ [78.45886, 80.72643]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Up-to-date late summer imagery with few clouds (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC80910682014358LGN00",
+ "name": "imagico.de: Vanatinai",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC80910682014358LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2014-12-24T00:00:00.000Z",
+ "startDate": "2014-12-24T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [153.06138, -11.78923],
+ [153.06138, -11.28869],
+ [153.10927, -11.07229],
+ [154.41201, -11.07229],
+ [154.41201, -11.78923],
+ [153.06138, -11.78923]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Coarse coastline due to cloud cover in Bing/Mapbox (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC82330892016031LGN00",
+ "name": "imagico.de: Volcán Calbuco",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC82330892016031LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-01-31T00:00:00.000Z",
+ "startDate": "2016-01-31T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [-72.86696, -41.51741],
+ [-72.86696, -41.04527],
+ [-72.23181, -41.04527],
+ [-71.8751, -41.10829],
+ [-72.00007, -41.51741],
+ [-72.86696, -41.51741]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Image from after the 2015 eruption (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R089_N52_20160623T024048",
+ "name": "imagico.de: Vostochny Cosmodrome",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R089_N52_20160623T024048&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-06-23T00:00:00.000Z",
+ "startDate": "2016-06-23T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [126.36143, 51.37553],
+ [126.34804, 52.33932],
+ [128.60762, 52.3409],
+ [128.61174, 51.37553],
+ [126.36143, 51.37553]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Recent image showing newest features (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-walps_autumn_2017",
+ "name": "imagico.de: Western Alps autumn colors 2017",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=walps_autumn_2017&z={zoom}&x={x}&y={-y}",
+ "endDate": "2017-10-17T00:00:00.000Z",
+ "startDate": "2017-10-17T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [4.6412, 43.2493],
+ [4.3118, 43.2653],
+ [4.3118, 44.2167],
+ [5.2562, 46.965],
+ [5.9151, 48.7177],
+ [7.3866, 48.7467],
+ [10.088, 48.7467],
+ [10.088, 48.7032],
+ [7.7819, 43.2813],
+ [7.76, 43.2653],
+ [7.3646, 43.2493],
+ [4.6412, 43.2493]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Autumn colors in the Alps, Jura and southwestern Germany (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-LC81490352013282LGN00",
+ "name": "imagico.de: Western Karakoram",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=LC81490352013282LGN00&z={zoom}&x={x}&y={-y}",
+ "endDate": "2013-10-09T00:00:00.000Z",
+ "startDate": "2013-10-09T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [75.98364, 34.97851],
+ [73.96164, 35.36957],
+ [74.44281, 37.09391],
+ [76.50601, 36.70267],
+ [75.98364, 34.97851]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Represents approximately minimum snow cover so can be well used for glacier mapping (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "osmim-imagicode-S2A_R039_S15_20160510T145731",
+ "name": "imagico.de: Willkanuta Mountains and Quelccaya Ice Cap",
+ "type": "tms",
+ "template": "http://imagico.de/map/osmim_tiles.php?layer=S2A_R039_S15_20160510T145731&z={zoom}&x={x}&y={-y}",
+ "endDate": "2016-05-10T00:00:00.000Z",
+ "startDate": "2016-05-10T00:00:00.000Z",
+ "scaleExtent": [0, 14],
+ "polygon": [
+ [
+ [-71.18071, -14.49785],
+ [-71.17976, -13.71029],
+ [-70.55637, -13.71263],
+ [-70.55637, -14.49785],
+ [-71.18071, -14.49785]
+ ]
+ ],
+ "terms_url": "http://maps.imagico.de/#osmim",
+ "terms_text": "imagico.de OSM images for mapping",
+ "description": "Poor and outdated imagery in other sources (true color)",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAADWElEQVQ4y13TS2gcdQDH8e/szGQ372Tz2irGpoS0KSapoqjRQ4knD0WweLRCCXiQXuJFMR6EYMVC0IsPyKVFsJpWbQ0KQmL14KPWirGmZjdmk+w7mX1kZ2d2dv7/mfFUsX5Pv8Pv+lH4X6/NvTPc239gOlXyp7ZzlaEg8EGYyVaZWY7dc+/CuTde+fu/f+XOeP3iLT2bTMxN9NVm1PZhbfKBGC/OXsDzHJr1EEf6ilSMLZFrxObHJk/OfvDqCQmgArz3TUJfXZm/3K53nZ4YPRw69czjXPrqR+LJHJ4rUFXA3qG33Va3cpknU2vxY1pz9yWzlPZVgL6xobNGXp7u6T9Geq/O+U+usHRtE6du0aJncSyXtnCOcqVC0ZTIhnM44itNhpFeVs5+kRxe//OP22VDar4ncRwHz85TKtY40H2D4n6KwNMRgUPIC9ES0mj2NNwK4rfE2qhWyBnT1YrUQkqA3hwmpIYw63law4JcaR/hR9GVAh2tOmEUHunpwKkJVm10VdOntbptP+VJiaIoKIDv7zPQbVDxJIPRPkRkh8CN0KFrjHdGiXW3kkuXSRYEakid0qQrDkrhEgQ+tZpNtVTmoQdNrGgB6XjUpEJzSxvCgnhOZ+RQFKtcZV8IpO8NhXxfIoWLY9tUS0XePxXHMNrY3BxkOx+lXVX54dc+VjdaiHabXPg6RcMSWFULT3poEGxJ0eit1Wq06w4FMURPl8NObo9MvgnTaOGF402M399DrDNEPJHnl99rZIoWvudvaeGwtux53sOPjffy9pn7CHdKnn5WJ/5XnudnrjF2tJ/F61mGBiIc7fe4mXT5ds0lu1tE8f1lbSDWu5DZyb98fMLVwp0dgINv5Bjpcfj50yloUsAo8Ob8T/iVBociLrtlC9+tCwgW1O8++7A09dxLbUvfrzzRpV7nSCyK0qRDOEwjlUYr7iH2DPx6hXevpLi5YXNjfRsCcQ4aiwrAlxuB/tHCx5fTyaUTg/1pJke6eHR0GF9AKZtnv1BlYSWFWYBEepdyuXwV5EmQ8l9Mn9929asXF+c21xMz5b1NreHewvNcHAc0qRGpQyqfFZZZnQc5C1LepfFOZ946P5xJbkybRmbKzm8f3C3b2GZlyzYLy9WqteD5jbs4/wOHuM2qT5aWEQAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "IPR-orotofoto-last-tms",
+ "name": "IPR ortofoto LAST (tmsproxy)",
+ "type": "tms",
+ "template": "https://osm-{switch:a,b,c}.zby.cz/tiles_ipr_last.php/{zoom}/{x}/{y}.jpg",
+ "scaleExtent": [1, 18],
+ "polygon": [
+ [
+ [14.81232, 49.93089],
+ [14.18755, 49.87687],
+ [14.12025, 50.19882],
+ [14.74502, 50.25247],
+ [14.81232, 49.93089]
+ ]
+ ]
+ },
+ {
+ "id": "IPR-orotofoto-vege-tms",
+ "name": "IPR ortofoto Low-Vegetation (tmsproxy)",
+ "type": "tms",
+ "template": "https://osm-{switch:a,b,c}.zby.cz/tiles_ipr_vege.php/{zoom}/{x}/{y}.jpg",
+ "scaleExtent": [1, 20],
+ "polygon": [
+ [
+ [14.30454, 49.99538],
+ [14.31604, 49.94205],
+ [14.35, 49.94508],
+ [14.35384, 49.92726],
+ [14.42385, 49.93352],
+ [14.42009, 49.95097],
+ [14.48865, 49.95709],
+ [14.48479, 49.97501],
+ [14.55386, 49.98117],
+ [14.55012, 49.99852],
+ [14.58455, 50.00159],
+ [14.5883, 49.98424],
+ [14.69168, 49.99346],
+ [14.67634, 50.06453],
+ [14.71279, 50.06777],
+ [14.70115, 50.12158],
+ [14.6647, 50.11834],
+ [14.661, 50.13543],
+ [14.62755, 50.13246],
+ [14.61965, 50.16895],
+ [14.58543, 50.16591],
+ [14.58163, 50.18344],
+ [14.40776, 50.168],
+ [14.41156, 50.15045],
+ [14.37765, 50.14744],
+ [14.3738, 50.16524],
+ [14.33893, 50.16214],
+ [14.34278, 50.14434],
+ [14.27368, 50.1382],
+ [14.27749, 50.12058],
+ [14.2088, 50.11447],
+ [14.21289, 50.09557],
+ [14.24656, 50.09857],
+ [14.25417, 50.06336],
+ [14.21987, 50.0603],
+ [14.2237, 50.04259],
+ [14.258, 50.04565],
+ [14.26953, 49.99226],
+ [14.30454, 49.99538]
+ ]
+ ]
+ },
+ {
+ "id": "GSGS3906",
+ "name": "Ireland British War Office 1:25k GSGS 3906",
+ "type": "tms",
+ "template": "https://mapwarper.net/layers/tile/101/{zoom}/{x}/{y}.png",
+ "scaleExtent": [0, 18],
+ "polygon": [
+ [
+ [-9.31139, 51.43828],
+ [-7.36131, 51.99302],
+ [-7.33934, 52.13149],
+ [-6.9658, 52.06231],
+ [-6.23796, 52.1534],
+ [-6.21049, 52.52928],
+ [-5.98253, 52.80079],
+ [-5.96056, 53.67037],
+ [-6.20775, 53.67851],
+ [-6.22423, 53.95255],
+ [-5.86442, 54.12513],
+ [-5.85893, 54.20392],
+ [-5.53483, 54.23122],
+ [-5.39476, 54.44739],
+ [-5.50188, 54.70052],
+ [-6.21873, 55.38194],
+ [-6.86418, 55.2162],
+ [-7.25145, 55.46455],
+ [-7.53435, 55.30853],
+ [-8.25395, 55.26787],
+ [-8.61101, 54.97259],
+ [-8.49016, 54.89369],
+ [-8.83897, 54.68306],
+ [-8.42699, 54.52397],
+ [-8.75108, 54.31302],
+ [-9.29765, 54.38985],
+ [-10.05296, 54.37866],
+ [-10.30015, 54.05747],
+ [-10.02275, 53.79386],
+ [-10.30565, 53.55142],
+ [-9.99803, 53.24354],
+ [-9.09166, 53.19256],
+ [-9.81676, 53.1102],
+ [-9.48167, 52.96984],
+ [-9.70415, 52.68107],
+ [-10.00627, 52.63608],
+ [-9.78929, 52.52426],
+ [-9.99803, 52.32663],
+ [-10.64348, 52.1753],
+ [-10.39629, 51.9761],
+ [-10.16832, 51.64668],
+ [-10.28642, 51.57334],
+ [-9.88542, 51.57163],
+ [-9.79204, 51.44684],
+ [-9.31139, 51.43828]
+ ]
+ ],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/Ireland/Background_Imagery#Trinity_College_Dublin",
+ "terms_text": "Glucksman Map Library, Trinity College Dublin",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAB3RJTUUH3gQOFR0YB1KT3QAAAAlwSFlzAAAewQAAHsEBw2lUUwAAAARnQU1BAACxjwv8YQUAAAS/SURBVHjandN7TFNXHAfwzrn/lm3ZHy7LYrJkybK5zMw9fCEoPjbeChoHTtBVRF7l1ZZSaG8flCtvsFVpoZZHC5Y6jDM+UScDaxF5lIfSAaMIlVKBS8EZN4d+d9voZpbMFX/JN7nnnvM7n5xzcxmM5wrPlX1yFmP2adgmXKHc78bsU+j9ZRT3HzzE+D0n7tjuYdo5h38X47/q+UWD1nE0tw/gktEC66gdN/tG0Dc4hnEHhdG7DujOdqGHxi4ae2AZti8ccJXZYoOxawRPnjzGwcpmzM8//ntOe86MickZTEw7ka+99nJAZ/8YWjqs7ufc6ibM/fbQ/fzHo0eoOduJ8UkKljt2nLhk9hj4/Wlm6VA9A2NUa/ew6wNQE1OzVGvPEGUZvkvZHVNUo2mA6ugfpvoGrNT8/Dz1tMfd/yJgKZ13h6zjzFbzvbwO8wDZaR4kzeZbZG/fIHnTbCOvdzrI9h472dnVT97oociO23NkW+9M3pDVsc/V69rjRYA7Su11/dvbfkRJvDeOcMORuj8CpelLkJO6BVs4vQhj3QD5fTQS2PXYndQAblw2yrUt9c/6/xeoqzulK+VEoCTtawgSM5HCr0Nsmg48ngJhYiukonNIybeg8MQEFIZBFBWIoa4z1XoMaOrbtbHci2BtW4RachnOlO/GZW0SjuZEY2eWGYVEFfYJ+kDo/4ThdDPExadQcbxb5zmgb6/xYZlAxPtDmByFS2U+EHM5yBOyEZZ8HkzeZaQmyxFZROGkgUQIMQSNvkPrMXBM31YdFqNDJK8ZHE4FYgSt2Jl0GpKUGAhFjTiQ2QJDgRBGdSTIvEJ8IXDSQJvngEbfWrWacGJDzn1sJ34FkSqFQbgWTcUrcLWIATlnBzYSE8hOOIBQzk9YK56jgRs1CzlBVXD6bcijCYSwTYjhXUFD7nrUlHyFc6pPUCL4BpskUwhn6iGPSMYG3igN3KxeCKDZyulGddReBKV3YbNkGidkIWhQLMeFiuUoE3ths8iOfXFnoQ5nwTt9xHVFVZ5f0XGjxks0A++sIWyNqYM0TYp6qS9+UHxOn+BjqMQfwF8wgg2x5+ErccCboKA5bloAUGc8tk40i2CmGuGhgQhjX0MZwUY5uRJVuX6QcpPhm2TErlBfBLAa4S2epYHrlZ5fke4K6SVyIjRejz1REfhO2Ab2wavgZJ8EU9gEUek1MDMvIIa5DUFpzVhHzECtbRR4DJRrDP5f8h04ILwAmTQLAkEWCgsLIJVIIcwS4uhRBSQSCfi8FGzP6sbKjLsoV+tWewwolUfe+pR1y7GD1YDd4cGIi4uFgM/HulWr4LdpI5ITE5EQH49dOwMRmtmND/ebLMoy+WueA2VyBmO9opSTcx6HimWQHypGBicF+6MjwdzzLSQEH6UlBSjKFyNS1AnGMm6Csuwww2NApVK6hkv2JMptmTkGiPNqEcc+jFiuGsy0SrD4lciQ1kJW3ICAqJIWeu1ilUq1EEDlHr/6vr/XxozBuQD6jw6UUXRm6DgRQCeQfIA1iaZ+BuP191xrXwpw1RtL16zwSfi5PVg2hZAcyp0gqQOr9548TU+/82zdywGvLH429eZnO8rPBNMbB4ps+MhPpvyna9ELgb8ASvKZeuq+E9sAAAAASUVORK5CYII="
+ },
+ {
+ "id": "ITACyL-Castile-and-Leon",
+ "name": "ITACyL - Castile and León",
+ "type": "wms",
+ "template": "http://orto.wms.itacyl.es/WMS?REQUEST=GetMap&SERVICE=WMS&VERSION=1.1.1&LAYERS=Ortofoto_CyL&SRS={proj}&FORMAT=image/jpeg&STYLES=Default&TRANSPARENT=TRUE&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:4326",
+ "polygon": [
+ [
+ [-1.9358, 41.43834],
+ [-1.89601, 41.43869],
+ [-1.89536, 41.39687],
+ [-1.9767, 41.39616],
+ [-1.97639, 41.37623],
+ [-2.06201, 41.37548],
+ [-2.06262, 41.41471],
+ [-2.10458, 41.41434],
+ [-2.10363, 41.35367],
+ [-2.14448, 41.35331],
+ [-2.1419, 41.18683],
+ [-2.06204, 41.18753],
+ [-2.06171, 41.16624],
+ [-2.02046, 41.16661],
+ [-2.01887, 41.06334],
+ [-2.10083, 41.06262],
+ [-2.10114, 41.08296],
+ [-2.22733, 41.08185],
+ [-2.22704, 41.0635],
+ [-2.26912, 41.06313],
+ [-2.2688, 41.04257],
+ [-2.35325, 41.04182],
+ [-2.35356, 41.06148],
+ [-2.39487, 41.06112],
+ [-2.39457, 41.04206],
+ [-2.43722, 41.04168],
+ [-2.43756, 41.06315],
+ [-2.47928, 41.06278],
+ [-2.47991, 41.10369],
+ [-2.52078, 41.10333],
+ [-2.5211, 41.12429],
+ [-2.60415, 41.12357],
+ [-2.60481, 41.16628],
+ [-2.6471, 41.16591],
+ [-2.64808, 41.22931],
+ [-2.72874, 41.2286],
+ [-2.72907, 41.24974],
+ [-2.89552, 41.24828],
+ [-2.89649, 41.31063],
+ [-2.9363, 41.31028],
+ [-2.93571, 41.27231],
+ [-3.14692, 41.27046],
+ [-3.14723, 41.29045],
+ [-3.22828, 41.28974],
+ [-3.22767, 41.25008],
+ [-3.39581, 41.2486],
+ [-3.39518, 41.20808],
+ [-3.43492, 41.20773],
+ [-3.43429, 41.16696],
+ [-3.47877, 41.16657],
+ [-3.47844, 41.14556],
+ [-3.60336, 41.14446],
+ [-3.6027, 41.10169],
+ [-3.64539, 41.10131],
+ [-3.64508, 41.08159],
+ [-3.68735, 41.08122],
+ [-3.68673, 41.04104],
+ [-3.72866, 41.04067],
+ [-3.72803, 40.9998],
+ [-3.76896, 40.99944],
+ [-3.76864, 40.97886],
+ [-3.85473, 40.97811],
+ [-3.8544, 40.95653],
+ [-3.89857, 40.95615],
+ [-3.89764, 40.89575],
+ [-3.93906, 40.89539],
+ [-3.93716, 40.77204],
+ [-4.06198, 40.77093],
+ [-4.06133, 40.72926],
+ [-4.10372, 40.72888],
+ [-4.10311, 40.68918],
+ [-4.14628, 40.6888],
+ [-4.14498, 40.60421],
+ [-4.19025, 40.60381],
+ [-4.18994, 40.58362],
+ [-4.22946, 40.58327],
+ [-4.22979, 40.60487],
+ [-4.27054, 40.60451],
+ [-4.26958, 40.54211],
+ [-4.31384, 40.54171],
+ [-4.31163, 40.39758],
+ [-4.39376, 40.39685],
+ [-4.39345, 40.37677],
+ [-4.43723, 40.37638],
+ [-4.43623, 40.31123],
+ [-4.52192, 40.31046],
+ [-4.52037, 40.20897],
+ [-4.56131, 40.2086],
+ [-4.56099, 40.18763],
+ [-4.68895, 40.18649],
+ [-4.68933, 40.21101],
+ [-4.73192, 40.21063],
+ [-4.73252, 40.24966],
+ [-4.76838, 40.24934],
+ [-4.76809, 40.23035],
+ [-4.81104, 40.22996],
+ [-4.81147, 40.20726],
+ [-4.8542, 40.18414],
+ [-4.85264, 40.12563],
+ [-4.93699, 40.12488],
+ [-4.93638, 40.08529],
+ [-5.35538, 40.08155],
+ [-5.35606, 40.12562],
+ [-5.44027, 40.12487],
+ [-5.44091, 40.16673],
+ [-5.60382, 40.16527],
+ [-5.60448, 40.20881],
+ [-5.68646, 40.20808],
+ [-5.68712, 40.25131],
+ [-6.02166, 40.24834],
+ [-6.02295, 40.33257],
+ [-6.10433, 40.33184],
+ [-6.1056, 40.41451],
+ [-6.18951, 40.41376],
+ [-6.19018, 40.45745],
+ [-6.26971, 40.45675],
+ [-6.26909, 40.41653],
+ [-6.35192, 40.41579],
+ [-6.35128, 40.37422],
+ [-6.43325, 40.37349],
+ [-6.43264, 40.33361],
+ [-6.52245, 40.33281],
+ [-6.52116, 40.24849],
+ [-6.59942, 40.24779],
+ [-6.59886, 40.21128],
+ [-6.85568, 40.20899],
+ [-6.85634, 40.25257],
+ [-6.93622, 40.25186],
+ [-6.93751, 40.33657],
+ [-6.85111, 40.33734],
+ [-6.86001, 40.91672],
+ [-6.93544, 40.91605],
+ [-6.93741, 41.0435],
+ [-6.85482, 41.04423],
+ [-6.85548, 41.08706],
+ [-6.77015, 41.08781],
+ [-6.77245, 41.23623],
+ [-6.68379, 41.23701],
+ [-6.60436, 41.2377],
+ [-6.60524, 41.29474],
+ [-6.5193, 41.29549],
+ [-6.51991, 41.33479],
+ [-6.43673, 41.33552],
+ [-6.43801, 41.41814],
+ [-6.35318, 41.41888],
+ [-6.35447, 41.50141],
+ [-6.26889, 41.50216],
+ [-6.2708, 41.6245],
+ [-6.35661, 41.62375],
+ [-6.35724, 41.66401],
+ [-6.43548, 41.66333],
+ [-6.4349, 41.62651],
+ [-6.52279, 41.62575],
+ [-6.52343, 41.66635],
+ [-6.6034, 41.66565],
+ [-6.60733, 41.9166],
+ [-7.02209, 41.913],
+ [-7.02406, 42.03872],
+ [-7.1054, 42.03801],
+ [-7.10613, 42.08421],
+ [-7.0208, 42.08495],
+ [-7.02276, 42.2094],
+ [-6.93699, 42.21014],
+ [-6.93763, 42.25087],
+ [-6.8548, 42.25159],
+ [-6.85545, 42.29329],
+ [-6.77342, 42.294],
+ [-6.77403, 42.33244],
+ [-6.85325, 42.33176],
+ [-6.85523, 42.4569],
+ [-7.10341, 42.45477],
+ [-7.10811, 42.75115],
+ [-7.02199, 42.75189],
+ [-7.02241, 42.77825],
+ [-6.93976, 42.77896],
+ [-6.94199, 42.91962],
+ [-6.77302, 42.92106],
+ [-6.77363, 42.95958],
+ [-6.52329, 42.96172],
+ [-6.52391, 43.00095],
+ [-6.43893, 43.00167],
+ [-6.44024, 43.08361],
+ [-5.93782, 43.08789],
+ [-5.93708, 43.04189],
+ [-5.85421, 43.0426],
+ [-5.85357, 43.00258],
+ [-5.77236, 43.00327],
+ [-5.77363, 43.08308],
+ [-5.6027, 43.08453],
+ [-5.60202, 43.04222],
+ [-5.52161, 43.04291],
+ [-5.52226, 43.08409],
+ [-5.4376, 43.08481],
+ [-5.43827, 43.12651],
+ [-5.10444, 43.12935],
+ [-5.10573, 43.2099],
+ [-5.02386, 43.2106],
+ [-5.02451, 43.25117],
+ [-4.90017, 43.25222],
+ [-4.89941, 43.20501],
+ [-4.81126, 43.20576],
+ [-4.80966, 43.10538],
+ [-4.76975, 43.10571],
+ [-4.76937, 43.08168],
+ [-4.72945, 43.08202],
+ [-4.72881, 43.04219],
+ [-4.56322, 43.0436],
+ [-4.56353, 43.06296],
+ [-4.39599, 43.06438],
+ [-4.39566, 43.04336],
+ [-4.3537, 43.04371],
+ [-4.35266, 42.97836],
+ [-4.23013, 42.9794],
+ [-4.22913, 42.91625],
+ [-4.18774, 42.9166],
+ [-4.18706, 42.87407],
+ [-4.10552, 42.87476],
+ [-4.10486, 42.83348],
+ [-3.97801, 42.83457],
+ [-3.97733, 42.79214],
+ [-3.9375, 42.79248],
+ [-3.93781, 42.81183],
+ [-3.85397, 42.81254],
+ [-3.85427, 42.83193],
+ [-3.89573, 42.83158],
+ [-3.89607, 42.85343],
+ [-3.93821, 42.85307],
+ [-3.93889, 42.89577],
+ [-3.9806, 42.89542],
+ [-3.98093, 42.91627],
+ [-4.0222, 42.91591],
+ [-4.0229, 42.96014],
+ [-3.97851, 42.96052],
+ [-3.97946, 43.01999],
+ [-3.93883, 43.02034],
+ [-3.93918, 43.04239],
+ [-3.89704, 43.04275],
+ [-3.89738, 43.06414],
+ [-3.85424, 43.06451],
+ [-3.8549, 43.10583],
+ [-3.77086, 43.10654],
+ [-3.77116, 43.12515],
+ [-3.72819, 43.12551],
+ [-3.72853, 43.14656],
+ [-3.68713, 43.14691],
+ [-3.68778, 43.18786],
+ [-3.60365, 43.18858],
+ [-3.60331, 43.16747],
+ [-3.52278, 43.16815],
+ [-3.52243, 43.14619],
+ [-3.39669, 43.14726],
+ [-3.39699, 43.16601],
+ [-3.35444, 43.16637],
+ [-3.35479, 43.18837],
+ [-3.31268, 43.18873],
+ [-3.31299, 43.20828],
+ [-3.22993, 43.20899],
+ [-3.22959, 43.18768],
+ [-3.10343, 43.18875],
+ [-3.10274, 43.14562],
+ [-3.14546, 43.14526],
+ [-3.14516, 43.1271],
+ [-3.10617, 43.12743],
+ [-3.10445, 43.01915],
+ [-3.02075, 43.01987],
+ [-3.0201, 42.97903],
+ [-2.9811, 42.97936],
+ [-2.97977, 42.8958],
+ [-3.10476, 42.89473],
+ [-3.10276, 42.76928],
+ [-3.02199, 42.76997],
+ [-3.02168, 42.74983],
+ [-2.98024, 42.75019],
+ [-2.97988, 42.7275],
+ [-2.89613, 42.72822],
+ [-2.89679, 42.76967],
+ [-2.8534, 42.77004],
+ [-2.85405, 42.81087],
+ [-2.68577, 42.81231],
+ [-2.68544, 42.79159],
+ [-2.64523, 42.79194],
+ [-2.64489, 42.77024],
+ [-2.52005, 42.7713],
+ [-2.51936, 42.72827],
+ [-2.5607, 42.72791],
+ [-2.56038, 42.7076],
+ [-2.51944, 42.70795],
+ [-2.5181, 42.62357],
+ [-2.60404, 42.62283],
+ [-2.60439, 42.64497],
+ [-2.77154, 42.64353],
+ [-2.77188, 42.66544],
+ [-2.81176, 42.6651],
+ [-2.8121, 42.68624],
+ [-2.85469, 42.68588],
+ [-2.85337, 42.60302],
+ [-2.89413, 42.60267],
+ [-2.89379, 42.58159],
+ [-3.0619, 42.58015],
+ [-3.06031, 42.47952],
+ [-3.02191, 42.47985],
+ [-3.0199, 42.3525],
+ [-3.06255, 42.35213],
+ [-3.06029, 42.20906],
+ [-3.1012, 42.20871],
+ [-3.10086, 42.18682],
+ [-3.06175, 42.18716],
+ [-3.0611, 42.14559],
+ [-3.02029, 42.14594],
+ [-3.01963, 42.10375],
+ [-2.89602, 42.10482],
+ [-2.89501, 42.04071],
+ [-2.81222, 42.04143],
+ [-2.81353, 42.1246],
+ [-2.76871, 42.12499],
+ [-2.76905, 42.14674],
+ [-2.72695, 42.14711],
+ [-2.7266, 42.12485],
+ [-2.68706, 42.12519],
+ [-2.68605, 42.06109],
+ [-2.72804, 42.06073],
+ [-2.72739, 42.0193],
+ [-2.60343, 42.02037],
+ [-2.60376, 42.04135],
+ [-2.561, 42.04173],
+ [-2.56198, 42.10411],
+ [-2.52266, 42.10445],
+ [-2.52299, 42.12577],
+ [-2.47933, 42.12615],
+ [-2.47963, 42.145],
+ [-2.35517, 42.14608],
+ [-2.3555, 42.16747],
+ [-2.31184, 42.16785],
+ [-2.3115, 42.14605],
+ [-2.2699, 42.14641],
+ [-2.26924, 42.1048],
+ [-2.2295, 42.10515],
+ [-2.22981, 42.12514],
+ [-2.14467, 42.12587],
+ [-2.14432, 42.10386],
+ [-2.10385, 42.10421],
+ [-2.10156, 41.95811],
+ [-1.97689, 41.95919],
+ [-1.97655, 41.93765],
+ [-1.93473, 41.93801],
+ [-1.93504, 41.95776],
+ [-1.89453, 41.95811],
+ [-1.89483, 41.97715],
+ [-1.854, 41.97751],
+ [-1.85304, 41.91638],
+ [-1.81381, 41.91672],
+ [-1.81151, 41.76984],
+ [-1.7706, 41.77019],
+ [-1.76866, 41.64582],
+ [-1.85335, 41.64508],
+ [-1.85305, 41.62567],
+ [-1.89471, 41.6253],
+ [-1.89403, 41.58215],
+ [-1.97716, 41.58142],
+ [-1.97683, 41.56021],
+ [-1.9377, 41.56055],
+ [-1.9358, 41.43834]
+ ]
+ ],
+ "terms_text": "ITACyL"
+ },
+ {
+ "id": "gsi.go.jp",
+ "name": "Japan GSI ortho Imagery",
+ "type": "tms",
+ "template": "https://cyberjapandata.gsi.go.jp/xyz/ort/{zoom}/{x}/{y}.jpg",
+ "scaleExtent": [5, 19],
+ "polygon": [
+ [
+ [130.35021, 31.45741],
+ [130.26851, 31.45817],
+ [130.20875, 31.44939],
+ [130.1002, 31.44996],
+ [130.09237, 31.3919],
+ [130.13355, 31.37528],
+ [130.35043, 31.37528],
+ [130.35021, 31.45741]
+ ],
+ [
+ [130.4193, 31.41715],
+ [130.417, 31.41672],
+ [130.41677, 31.47525],
+ [130.34179, 31.47506],
+ [130.34179, 31.48374],
+ [130.33362, 31.48374],
+ [130.33329, 31.50044],
+ [130.36675, 31.49997],
+ [130.36664, 31.52458],
+ [130.35019, 31.52544],
+ [130.35041, 31.54986],
+ [130.32523, 31.55024],
+ [130.32501, 31.60029],
+ [130.31661, 31.63336],
+ [130.31634, 31.65084],
+ [130.3752, 31.65084],
+ [130.31164, 31.67599],
+ [130.29194, 31.69179],
+ [130.29105, 31.73235],
+ [130.2521, 31.73387],
+ [130.24986, 31.71693],
+ [130.24427, 31.71712],
+ [130.21629, 31.75804],
+ [130.17533, 31.75919],
+ [130.17422, 31.78259],
+ [130.18384, 31.79096],
+ [130.23644, 31.79096],
+ [130.26911, 31.77003],
+ [130.36334, 31.75785],
+ [130.42668, 31.70893],
+ [130.62409, 31.7076],
+ [130.62588, 31.68627],
+ [130.61088, 31.62245],
+ [130.55582, 31.50249],
+ [130.54239, 31.41715],
+ [130.42158, 31.41715],
+ [130.4193, 31.41715]
+ ],
+ [
+ [130.52516, 31.24184],
+ [130.54441, 31.24107],
+ [130.56858, 31.21715],
+ [130.59924, 31.21657],
+ [130.59924, 31.26633],
+ [130.57641, 31.26633],
+ [130.57351, 31.31625],
+ [130.6308, 31.28393],
+ [130.68989, 31.27666],
+ [130.66706, 31.26059],
+ [130.66594, 31.21925],
+ [130.64401, 31.18135],
+ [130.59007, 31.14688],
+ [130.54239, 31.17503],
+ [130.54239, 31.1913],
+ [130.50009, 31.19207],
+ [130.50009, 31.21581],
+ [130.52494, 31.21715],
+ [130.52516, 31.24184]
+ ],
+ [
+ [130.74987, 31.16622],
+ [130.74965, 31.24107],
+ [130.77449, 31.25887],
+ [130.77718, 31.33307],
+ [130.75122, 31.37455],
+ [130.74898, 31.41658],
+ [130.67557, 31.46852],
+ [130.67489, 31.50077],
+ [131.40006, 31.5002],
+ [131.40834, 31.45916],
+ [131.36694, 31.40932],
+ [131.3656, 31.35142],
+ [131.31703, 31.34206],
+ [131.29957, 31.36595],
+ [131.24317, 31.36633],
+ [131.19952, 31.43358],
+ [131.14782, 31.45019],
+ [131.13394, 31.45],
+ [131.1326, 31.42899],
+ [131.10059, 31.42536],
+ [131.05091, 31.41639],
+ [131.04912, 31.39155],
+ [131.08403, 31.35085],
+ [131.11626, 31.35085],
+ [131.11783, 31.33422],
+ [130.99943, 31.33365],
+ [130.99965, 31.25102],
+ [130.87521, 31.25064],
+ [130.87454, 31.16679],
+ [130.74987, 31.16622]
+ ],
+ [
+ [130.86625, 30.47468],
+ [130.86602, 30.49937],
+ [130.93362, 30.57493],
+ [130.93227, 30.61597],
+ [131.00636, 30.61655],
+ [131.04933, 30.59112],
+ [131.04933, 30.54275],
+ [130.99203, 30.50843],
+ [130.99114, 30.47526],
+ [130.86625, 30.47468]
+ ],
+ [
+ [137.87486, 36.37519],
+ [138.00005, 36.37494],
+ [138.00005, 36.30839],
+ [138.04159, 36.30827],
+ [138.04191, 36.29175],
+ [138.08306, 36.29162],
+ [138.08353, 36.2499],
+ [138.13307, 36.24996],
+ [138.13354, 36.16677],
+ [138.16654, 36.1667],
+ [138.16694, 36.12485],
+ [138.04167, 36.12491],
+ [138.04144, 36.04158],
+ [137.87479, 36.04152],
+ [137.87486, 36.37519]
+ ],
+ [
+ [138.37446, 35.83393],
+ [138.4998, 35.83285],
+ [138.4998, 35.75042],
+ [138.74936, 35.7506],
+ [138.7507, 35.58332],
+ [138.62447, 35.58386],
+ [138.62536, 35.49991],
+ [138.37491, 35.49972],
+ [138.37446, 35.83393]
+ ],
+ [
+ [135.79179, 35.64165],
+ [135.8006, 35.64923],
+ [135.834, 35.65052],
+ [135.8916, 35.62003],
+ [135.89271, 35.6091],
+ [135.95776, 35.60858],
+ [135.9834, 35.6172],
+ [135.98435, 35.641],
+ [135.95095, 35.6419],
+ [135.95048, 35.68305],
+ [135.94225, 35.69204],
+ [135.94178, 35.73239],
+ [136.00809, 35.77516],
+ [136.03167, 35.77503],
+ [136.05018, 35.75012],
+ [136.05003, 35.66646],
+ [136.0084, 35.65836],
+ [136.00856, 35.61694],
+ [136.03404, 35.60022],
+ [136.06664, 35.59996],
+ [136.06617, 35.61656],
+ [136.1002, 35.62492],
+ [136.1002, 35.69127],
+ [136.07598, 35.69166],
+ [136.07503, 35.74922],
+ [136.08342, 35.76694],
+ [136.12441, 35.76605],
+ [136.15021, 35.7004],
+ [136.15875, 35.64216],
+ [136.17442, 35.62492],
+ [136.17553, 35.58342],
+ [136.1749, 35.55813],
+ [136.15859, 35.55832],
+ [136.15875, 35.56701],
+ [136.1165, 35.56675],
+ [136.11626, 35.52555],
+ [136.04045, 35.5247],
+ [136.01684, 35.50311],
+ [136.01661, 35.48334],
+ [135.97543, 35.48334],
+ [135.94141, 35.50885],
+ [135.94186, 35.56641],
+ [135.93358, 35.57487],
+ [135.90873, 35.57514],
+ [135.90851, 35.59953],
+ [135.83185, 35.59972],
+ [135.7928, 35.62519],
+ [135.79179, 35.64165]
+ ],
+ [
+ [135.80916, 35.47505],
+ [135.77044, 35.53345],
+ [135.7579, 35.53326],
+ [135.74168, 35.51641],
+ [135.70072, 35.51705],
+ [135.67464, 35.53363],
+ [135.67543, 35.56659],
+ [135.6996, 35.58333],
+ [135.81654, 35.58343],
+ [135.81654, 35.56804],
+ [135.85817, 35.54956],
+ [135.85851, 35.52543],
+ [135.8509, 35.5247],
+ [135.85012, 35.47514],
+ [135.80916, 35.47505]
+ ],
+ [
+ [135.58333, 35.44132],
+ [135.61656, 35.44989],
+ [135.64163, 35.47496],
+ [135.71639, 35.47478],
+ [135.71728, 35.46703],
+ [135.81442, 35.46539],
+ [135.86668, 35.44187],
+ [135.86679, 35.40868],
+ [135.81722, 35.40822],
+ [135.81677, 35.38496],
+ [135.77548, 35.3835],
+ [135.75835, 35.40804],
+ [135.59183, 35.4084],
+ [135.58322, 35.42536],
+ [135.58333, 35.44132]
+ ],
+ [
+ [135.40011, 35.43312],
+ [135.42496, 35.44189],
+ [135.45803, 35.45008],
+ [135.45899, 35.49164],
+ [135.46642, 35.49184],
+ [135.46619, 35.50807],
+ [135.44181, 35.51709],
+ [135.43968, 35.53293],
+ [135.45843, 35.55804],
+ [135.52324, 35.55811],
+ [135.52498, 35.5091],
+ [135.54152, 35.50008],
+ [135.54152, 35.4834],
+ [135.57515, 35.48366],
+ [135.57491, 35.49164],
+ [135.60878, 35.49171],
+ [135.60894, 35.46684],
+ [135.59208, 35.45826],
+ [135.53305, 35.45826],
+ [135.50029, 35.45008],
+ [135.50045, 35.4415],
+ [135.50789, 35.42506],
+ [135.53337, 35.42513],
+ [135.53297, 35.38346],
+ [135.5416, 35.38333],
+ [135.54176, 35.36688],
+ [135.5086, 35.35836],
+ [135.50892, 35.34216],
+ [135.50013, 35.34164],
+ [135.50013, 35.41662],
+ [135.39987, 35.41655],
+ [135.40011, 35.43312]
+ ],
+ [
+ [133.70822, 35.45816],
+ [133.70822, 35.33319],
+ [133.12484, 35.33328],
+ [133.12495, 35.3749],
+ [132.95877, 35.37508],
+ [132.95821, 35.4578],
+ [132.87506, 35.45853],
+ [132.87461, 35.52504],
+ [132.95015, 35.52522],
+ [132.9497, 35.55819],
+ [133.01674, 35.55855],
+ [133.01685, 35.56675],
+ [133.03352, 35.56693],
+ [133.03308, 35.59205],
+ [133.06687, 35.59187],
+ [133.06654, 35.6168],
+ [133.14135, 35.61671],
+ [133.14151, 35.59181],
+ [133.36667, 35.59186],
+ [133.36689, 35.57484],
+ [133.34216, 35.57447],
+ [133.34194, 35.558],
+ [133.33321, 35.55026],
+ [133.28363, 35.55017],
+ [133.28341, 35.49178],
+ [133.33354, 35.4916],
+ [133.33354, 35.47529],
+ [133.41714, 35.47492],
+ [133.41714, 35.37516],
+ [133.49995, 35.37534],
+ [133.49973, 35.45806],
+ [133.45854, 35.45806],
+ [133.45854, 35.51629],
+ [133.49212, 35.5335],
+ [133.54136, 35.54161],
+ [133.58343, 35.54197],
+ [133.58355, 35.45843],
+ [133.70822, 35.45816]
+ ],
+ [
+ [133.84174, 35.46646],
+ [133.84158, 35.58367],
+ [133.975, 35.58329],
+ [133.97532, 35.5086],
+ [134.00823, 35.50834],
+ [134.0334, 35.49971],
+ [134.0421, 35.47497],
+ [134.04432, 35.45834],
+ [134.08357, 35.4586],
+ [134.08309, 35.53359],
+ [134.13326, 35.54969],
+ [134.23328, 35.55999],
+ [134.27491, 35.58342],
+ [134.33299, 35.58367],
+ [134.33521, 35.49172],
+ [134.36654, 35.49224],
+ [134.36654, 35.49997],
+ [134.41718, 35.49971],
+ [134.41592, 35.5417],
+ [134.6253, 35.54157],
+ [134.62514, 35.37554],
+ [134.70839, 35.37463],
+ [134.70823, 35.33398],
+ [134.41655, 35.33359],
+ [134.41592, 35.37528],
+ [134.39218, 35.37541],
+ [134.39155, 35.35011],
+ [134.37477, 35.33346],
+ [134.20005, 35.33359],
+ [134.19939, 35.35874],
+ [134.24997, 35.39971],
+ [134.27515, 35.39962],
+ [134.27504, 35.39205],
+ [134.35819, 35.39314],
+ [134.35852, 35.3999],
+ [134.3752, 35.39999],
+ [134.37441, 35.42489],
+ [134.33256, 35.42507],
+ [134.33278, 35.41659],
+ [134.04954, 35.41659],
+ [134.05077, 35.39178],
+ [134.0661, 35.39187],
+ [134.06711, 35.39999],
+ [134.14187, 35.40017],
+ [134.14164, 35.36678],
+ [134.18339, 35.35847],
+ [134.18372, 35.33337],
+ [133.78309, 35.33364],
+ [133.78331, 35.34159],
+ [133.82472, 35.3592],
+ [133.82505, 35.38311],
+ [133.84173, 35.40838],
+ [133.89981, 35.40893],
+ [133.89981, 35.41677],
+ [133.85829, 35.41659],
+ [133.8574, 35.46646],
+ [133.84174, 35.46646]
+ ],
+ [
+ [133.24987, 33.66667],
+ [133.41786, 33.66674],
+ [133.52485, 33.66674],
+ [133.52493, 33.79178],
+ [133.64157, 33.79185],
+ [133.64188, 33.66681],
+ [133.75006, 33.66687],
+ [133.75029, 33.62517],
+ [133.79152, 33.62498],
+ [133.79168, 33.5084],
+ [133.73336, 33.5084],
+ [133.73328, 33.51658],
+ [133.64196, 33.51671],
+ [133.60833, 33.48346],
+ [133.52493, 33.46682],
+ [133.47492, 33.41935],
+ [133.43313, 33.38321],
+ [133.37497, 33.38334],
+ [133.37497, 33.49157],
+ [133.20817, 33.49191],
+ [133.20824, 33.55827],
+ [133.24947, 33.55833],
+ [133.24987, 33.66667]
+ ],
+ [
+ [134.3501, 33.73355],
+ [134.4832, 33.73368],
+ [134.48336, 33.66732],
+ [134.43366, 33.65033],
+ [134.43287, 33.63412],
+ [134.35279, 33.63347],
+ [134.3501, 33.73355]
+ ],
+ [
+ [140.31656, 36.21656],
+ [140.31671, 36.44984],
+ [140.34973, 36.44994],
+ [140.35012, 36.51668],
+ [140.47467, 36.51671],
+ [140.47483, 36.59159],
+ [140.62489, 36.59204],
+ [140.62467, 36.63354],
+ [140.64974, 36.6348],
+ [140.65041, 36.71684],
+ [140.69912, 36.81554],
+ [140.71006, 36.91306],
+ [140.70838, 36.95687],
+ [140.74956, 36.95866],
+ [140.75323, 37.06176],
+ [140.75001, 37.16671],
+ [141.00832, 37.16666],
+ [141.00837, 37.0917],
+ [140.98331, 37.05828],
+ [140.98333, 36.95834],
+ [140.90834, 36.90002],
+ [140.81672, 36.89999],
+ [140.80828, 36.87498],
+ [140.80833, 36.85],
+ [140.81655, 36.85004],
+ [140.81669, 36.8415],
+ [140.81669, 36.81816],
+ [140.79988, 36.80832],
+ [140.7834, 36.79992],
+ [140.775, 36.79523],
+ [140.77498, 36.78339],
+ [140.75836, 36.775],
+ [140.75825, 36.75837],
+ [140.75002, 36.75831],
+ [140.74689, 36.71939],
+ [140.73336, 36.65048],
+ [140.69167, 36.58337],
+ [140.65003, 36.51336],
+ [140.64998, 36.38351],
+ [140.59986, 36.27483],
+ [140.57499, 36.24796],
+ [140.57463, 36.21729],
+ [140.31656, 36.21656]
+ ],
+ [
+ [141.2166, 41.24992],
+ [141.41662, 41.24971],
+ [141.39858, 41.17052],
+ [141.40426, 41.0968],
+ [141.39503, 41.04046],
+ [141.39858, 40.97185],
+ [141.40625, 40.91003],
+ [141.41136, 40.83011],
+ [141.41307, 40.80204],
+ [141.42245, 40.74987],
+ [141.34161, 40.75084],
+ [141.3149, 40.74556],
+ [141.29203, 40.74169],
+ [141.23322, 40.7419],
+ [141.23307, 40.85837],
+ [141.25026, 40.85858],
+ [141.24941, 40.91647],
+ [141.17412, 40.9169],
+ [141.22498, 40.9948],
+ [141.23819, 41.0696],
+ [141.2497, 41.1258],
+ [141.27143, 41.15875],
+ [141.23336, 41.22995],
+ [141.2166, 41.24992]
+ ],
+ [
+ [141.25854, 41.3166],
+ [141.15015, 41.31672],
+ [141.1499, 41.39163],
+ [141.18877, 41.39205],
+ [141.21625, 41.37916],
+ [141.25849, 41.36012],
+ [141.25854, 41.3166]
+ ],
+ [
+ [141.05841, 45.2584],
+ [141.03453, 45.25833],
+ [141.00874, 45.25815],
+ [141.0083, 45.27495],
+ [140.99994, 45.27495],
+ [141.00002, 45.30371],
+ [140.99999, 45.30828],
+ [140.99196, 45.30846],
+ [140.99171, 45.34162],
+ [140.98351, 45.34172],
+ [140.98336, 45.34998],
+ [140.97477, 45.35008],
+ [140.97502, 45.3667],
+ [140.96664, 45.36675],
+ [140.96685, 45.39818],
+ [140.9665, 45.42499],
+ [140.9584, 45.42484],
+ [140.95816, 45.43314],
+ [140.95012, 45.4335],
+ [140.94967, 45.51651],
+ [140.97443, 45.51672],
+ [140.97448, 45.50014],
+ [140.98307, 45.50042],
+ [140.98332, 45.46697],
+ [140.99045, 45.46704],
+ [140.99135, 45.45876],
+ [141.00019, 45.45813],
+ [141.00035, 45.45002],
+ [141.01627, 45.4502],
+ [141.01637, 45.47496],
+ [141.04992, 45.47532],
+ [141.04992, 45.46676],
+ [141.06614, 45.46679],
+ [141.0665, 45.4502],
+ [141.07463, 45.44999],
+ [141.07498, 45.34178],
+ [141.0666, 45.34168],
+ [141.06418, 45.30611],
+ [141.06644, 45.30565],
+ [141.06629, 45.28484],
+ [141.05906, 45.28357],
+ [141.05841, 45.2584]
+ ],
+ [
+ [144.27488, 42.96671],
+ [144.27502, 42.99155],
+ [144.25861, 42.99145],
+ [144.25805, 42.98314],
+ [144.20818, 42.98319],
+ [144.20854, 42.97472],
+ [144.16684, 42.97503],
+ [144.16684, 43.00496],
+ [144.16642, 43.04178],
+ [144.07486, 43.04188],
+ [144.07493, 43.10025],
+ [144.24988, 43.1],
+ [144.24988, 43.1168],
+ [144.29179, 43.11675],
+ [144.292, 43.0919],
+ [144.4168, 43.09185],
+ [144.4168, 43.1168],
+ [144.56654, 43.1168],
+ [144.56675, 42.99171],
+ [144.50005, 42.9915],
+ [144.5002, 42.92481],
+ [144.46653, 42.92501],
+ [144.31739, 42.96675],
+ [144.27488, 42.96671]
+ ],
+ [
+ [140.69973, 42.57513],
+ [140.70015, 42.61647],
+ [140.84451, 42.61673],
+ [140.99961, 42.61669],
+ [141.00006, 42.54168],
+ [141.24984, 42.54168],
+ [141.24994, 42.58336],
+ [141.29163, 42.58332],
+ [141.29158, 42.6251],
+ [141.37501, 42.62498],
+ [141.37501, 42.66662],
+ [141.49992, 42.66666],
+ [141.49992, 42.8165],
+ [141.47496, 42.8165],
+ [141.47511, 42.83341],
+ [141.81236, 42.83357],
+ [141.95752, 42.83328],
+ [141.94355, 42.77977],
+ [141.95762, 42.77896],
+ [141.95832, 42.7502],
+ [141.99991, 42.75086],
+ [141.9992, 42.71493],
+ [142.00031, 42.67632],
+ [142.01799, 42.65076],
+ [142.09082, 42.65002],
+ [142.09122, 42.5251],
+ [142.02472, 42.5251],
+ [141.96033, 42.52495],
+ [141.8665, 42.52518],
+ [141.8656, 42.57713],
+ [141.83577, 42.58519],
+ [141.80482, 42.57417],
+ [141.74646, 42.57705],
+ [141.73069, 42.61477],
+ [141.61707, 42.61055],
+ [141.52134, 42.60331],
+ [141.45615, 42.57587],
+ [141.3562, 42.52866],
+ [141.27523, 42.48822],
+ [141.19507, 42.43791],
+ [141.10476, 42.3914],
+ [141.05393, 42.33165],
+ [141.0254, 42.29161],
+ [140.95187, 42.29146],
+ [140.9147, 42.32682],
+ [140.89451, 42.37174],
+ [140.88426, 42.42723],
+ [140.85041, 42.46096],
+ [140.76643, 42.49978],
+ [140.76663, 42.52821],
+ [140.69973, 42.57513]
+ ],
+ [
+ [140.75005, 43.23374],
+ [140.82762, 43.2135],
+ [140.88245, 43.22531],
+ [140.97338, 43.24601],
+ [141.02139, 43.24311],
+ [141.04213, 43.20211],
+ [141.08346, 43.18205],
+ [141.17267, 43.16382],
+ [141.25678, 43.19366],
+ [141.37528, 43.33327],
+ [141.62491, 43.33335],
+ [141.62451, 43.4168],
+ [141.79146, 43.4168],
+ [141.79197, 43.83339],
+ [142.12487, 43.83332],
+ [142.12487, 43.75022],
+ [142.16656, 43.74993],
+ [142.16656, 43.83317],
+ [142.24954, 43.83325],
+ [142.24984, 43.8581],
+ [142.27465, 43.8581],
+ [142.27465, 43.87425],
+ [142.26671, 43.8749],
+ [142.26651, 43.91688],
+ [142.24994, 43.9171],
+ [142.25001, 44.5],
+ [142.49997, 44.50013],
+ [142.49977, 43.88366],
+ [142.51674, 43.88344],
+ [142.51644, 43.83346],
+ [142.62473, 43.83346],
+ [142.62473, 43.58331],
+ [142.54176, 43.58403],
+ [142.54196, 43.50008],
+ [142.50057, 43.50022],
+ [142.50037, 43.25006],
+ [142.25054, 43.25014],
+ [142.25004, 43.45838],
+ [142.00031, 43.45816],
+ [142.00001, 43.41724],
+ [141.91703, 43.41688],
+ [141.91703, 43.33342],
+ [141.87494, 43.33327],
+ [141.87454, 43.17487],
+ [141.93351, 43.17473],
+ [141.93391, 43.15868],
+ [141.99137, 43.15802],
+ [141.99207, 43.1334],
+ [141.87524, 43.13332],
+ [141.87484, 43.00012],
+ [141.49984, 43.00027],
+ [141.50015, 42.91683],
+ [141.25021, 42.91631],
+ [141.25001, 42.9999],
+ [141.12505, 43.00005],
+ [141.12525, 43.08323],
+ [140.99988, 43.0836],
+ [141.00008, 43.16638],
+ [140.75086, 43.1666],
+ [140.75005, 43.23374]
+ ],
+ [
+ [140.59121, 41.78353],
+ [140.58382, 41.8334],
+ [140.58453, 41.87732],
+ [140.59092, 41.91613],
+ [140.60797, 41.94403],
+ [140.57544, 41.95914],
+ [140.58439, 41.99979],
+ [140.7104, 42.00011],
+ [140.86894, 42.00011],
+ [140.91724, 42.00053],
+ [140.99041, 41.91909],
+ [141.04737, 41.90693],
+ [141.12722, 41.88398],
+ [141.17552, 41.83732],
+ [141.20194, 41.81488],
+ [141.18418, 41.78321],
+ [141.11301, 41.76711],
+ [141.05689, 41.71559],
+ [140.99382, 41.69968],
+ [140.94267, 41.70414],
+ [140.89238, 41.73563],
+ [140.84806, 41.74326],
+ [140.80018, 41.75672],
+ [140.73299, 41.74634],
+ [140.69705, 41.73234],
+ [140.6881, 41.76986],
+ [140.59121, 41.78353]
+ ],
+ [
+ [140.2418, 42.2338],
+ [140.24159, 42.25827],
+ [140.21005, 42.25797],
+ [140.20804, 42.27485],
+ [140.26611, 42.27514],
+ [140.2651, 42.29179],
+ [140.29001, 42.2912],
+ [140.29182, 42.26779],
+ [140.33914, 42.24139],
+ [140.34145, 42.21662],
+ [140.29323, 42.21662],
+ [140.2418, 42.2338]
+ ],
+ [
+ [140.55007, 42.08447],
+ [140.54977, 42.11387],
+ [140.58066, 42.11193],
+ [140.62636, 42.12069],
+ [140.63365, 42.12136],
+ [140.6336, 42.10061],
+ [140.60853, 42.09964],
+ [140.60848, 42.08327],
+ [140.54972, 42.08312],
+ [140.55007, 42.08447]
+ ],
+ [
+ [140.6583, 41.06668],
+ [140.67117, 40.91974],
+ [140.84492, 40.91652],
+ [140.91726, 40.91688],
+ [140.91712, 40.87597],
+ [140.9846, 40.87533],
+ [140.98503, 40.79278],
+ [141.13391, 40.79192],
+ [141.13972, 40.68034],
+ [141.17424, 40.68174],
+ [141.18504, 40.60057],
+ [141.43351, 40.60078],
+ [141.43308, 40.51757],
+ [141.18305, 40.51649],
+ [141.18362, 40.58223],
+ [141.16714, 40.59172],
+ [141.04397, 40.59237],
+ [141.04283, 40.65825],
+ [140.98402, 40.65836],
+ [140.72646, 40.65857],
+ [140.72589, 40.57521],
+ [140.66849, 40.57467],
+ [140.60883, 40.57489],
+ [140.60925, 40.48311],
+ [140.55058, 40.483],
+ [140.54888, 40.51757],
+ [140.40028, 40.51692],
+ [140.40013, 40.5832],
+ [140.25665, 40.58233],
+ [140.24898, 40.63292],
+ [140.33251, 40.63292],
+ [140.33251, 40.66687],
+ [140.41676, 40.66698],
+ [140.41704, 40.73311],
+ [140.33194, 40.73375],
+ [140.33351, 40.75851],
+ [140.28421, 40.75818],
+ [140.28037, 40.85679],
+ [140.30254, 40.98507],
+ [140.31845, 41.00019],
+ [140.42443, 41.0004],
+ [140.42443, 40.90029],
+ [140.55044, 40.89975],
+ [140.54994, 41.06668],
+ [140.6583, 41.06668]
+ ],
+ [
+ [140.01669, 40.33381],
+ [140.25252, 40.33381],
+ [140.25006, 39.33298],
+ [139.98341, 39.3332],
+ [140.05622, 39.72433],
+ [140.00614, 39.77043],
+ [139.94073, 39.88023],
+ [139.94158, 40.01081],
+ [139.94055, 40.08509],
+ [139.94116, 40.10876],
+ [140.01669, 40.33381]
+ ],
+ [
+ [139.85814, 39.04176],
+ [139.87552, 39.04137],
+ [139.87703, 39.00009],
+ [139.91671, 39.00001],
+ [139.9167, 38.79173],
+ [139.75493, 38.79165],
+ [139.7502, 38.79386],
+ [139.79376, 38.89687],
+ [139.79014, 38.9254],
+ [139.83615, 38.99102],
+ [139.85814, 39.04176]
+ ],
+ [
+ [139.37551, 38.1174],
+ [139.38053, 37.95893],
+ [139.417, 37.95845],
+ [139.417, 37.87413],
+ [139.37571, 37.8746],
+ [139.37611, 37.83296],
+ [139.29234, 37.83145],
+ [139.30007, 37.78074],
+ [139.29173, 37.68357],
+ [139.29193, 37.66473],
+ [139.22935, 37.6594],
+ [139.18113, 37.61024],
+ [139.14537, 37.60769],
+ [139.12367, 37.62671],
+ [139.09816, 37.65018],
+ [139.08831, 37.6664],
+ [138.99951, 37.66656],
+ [138.99942, 37.79171],
+ [138.81261, 37.79199],
+ [138.86834, 37.84689],
+ [138.9915, 37.91333],
+ [139.08231, 37.9775],
+ [139.27679, 38.03417],
+ [139.37551, 38.1174]
+ ],
+ [
+ [139.96008, 38.49993],
+ [140.50033, 38.50009],
+ [140.50023, 38.16654],
+ [140.37496, 38.16654],
+ [140.37536, 38.08348],
+ [140.2504, 38.08293],
+ [140.21705, 38.07407],
+ [140.22136, 38.0422],
+ [140.2512, 38.04196],
+ [140.2504, 38.00017],
+ [140.23372, 37.99962],
+ [140.23352, 37.94197],
+ [140.20861, 37.9411],
+ [140.20841, 37.90013],
+ [140.19253, 37.89965],
+ [140.19123, 37.88372],
+ [140.15838, 37.883],
+ [140.15828, 37.85811],
+ [140.0753, 37.85945],
+ [140.0741, 37.87476],
+ [140.05019, 37.87571],
+ [140.05019, 37.89252],
+ [140.05762, 37.89355],
+ [140.05813, 37.92541],
+ [140.0741, 37.92573],
+ [140.0742, 37.94197],
+ [140.09871, 37.95369],
+ [140.09821, 37.99234],
+ [140.10182, 38.00041],
+ [140.12282, 38.00081],
+ [140.11549, 38.01806],
+ [140.08977, 38.02795],
+ [140.0747, 38.04133],
+ [140.06727, 38.03492],
+ [140.06707, 37.99186],
+ [140.01634, 37.9917],
+ [140.01584, 38.066],
+ [139.99805, 38.06656],
+ [139.99966, 38.13739],
+ [139.99956, 38.17514],
+ [139.99795, 38.3337],
+ [139.95787, 38.33378],
+ [139.95837, 38.50028],
+ [139.96008, 38.49993]
+ ],
+ [
+ [140.70822, 38.7833],
+ [140.70837, 39.15023],
+ [141.04194, 39.14957],
+ [141.04167, 39.50008],
+ [141.00147, 39.49986],
+ [140.99893, 39.91638],
+ [141.25077, 39.91692],
+ [141.25037, 39.5007],
+ [141.16709, 39.50008],
+ [141.16699, 39.45627],
+ [141.16669, 39.40273],
+ [141.16689, 39.25073],
+ [141.20798, 39.24996],
+ [141.20898, 38.87471],
+ [141.03399, 38.8751],
+ [141.03339, 38.78354],
+ [140.86794, 38.78315],
+ [140.70822, 38.7833]
+ ],
+ [
+ [141.3759, 38.36972],
+ [141.37476, 38.49992],
+ [141.24904, 38.50025],
+ [141.25134, 38.66886],
+ [141.52524, 38.66653],
+ [141.54981, 38.63369],
+ [141.55052, 38.55563],
+ [141.55549, 38.47938],
+ [141.56558, 38.39559],
+ [141.54626, 38.37398],
+ [141.55919, 38.32429],
+ [141.59854, 38.31226],
+ [141.59527, 38.26063],
+ [141.50762, 38.23664],
+ [141.46983, 38.24479],
+ [141.39226, 38.27725],
+ [141.41158, 38.34781],
+ [141.3759, 38.36972]
+ ],
+ [
+ [131.04175, 33.7381],
+ [131.0413, 33.70887],
+ [130.99956, 33.70858],
+ [131.00035, 33.68392],
+ [131.04959, 33.68392],
+ [131.05014, 33.64171],
+ [131.0751, 33.64201],
+ [131.07588, 33.61683],
+ [131.10039, 33.61666],
+ [131.10084, 33.60082],
+ [131.17448, 33.60007],
+ [131.19999, 33.58422],
+ [131.20066, 33.55868],
+ [131.2405, 33.55868],
+ [131.28258, 33.54207],
+ [131.33137, 33.52528],
+ [131.41821, 33.55065],
+ [131.51625, 33.55084],
+ [131.51692, 33.5667],
+ [131.63353, 33.56688],
+ [131.63308, 33.47545],
+ [131.7423, 33.47452],
+ [131.74946, 33.45939],
+ [131.75014, 33.33289],
+ [131.60756, 33.33401],
+ [131.60801, 33.37421],
+ [131.52565, 33.37458],
+ [131.52467, 33.26691],
+ [131.5769, 33.25843],
+ [131.64942, 33.28332],
+ [131.71634, 33.28388],
+ [131.77497, 33.26687],
+ [131.78385, 33.25028],
+ [131.83291, 33.25015],
+ [131.88403, 33.2745],
+ [131.90825, 33.2749],
+ [131.90809, 33.25849],
+ [131.87517, 33.20607],
+ [131.84985, 33.18276],
+ [131.85032, 33.14964],
+ [131.87525, 33.15038],
+ [131.90777, 33.14129],
+ [131.9171, 33.13332],
+ [131.91733, 33.10858],
+ [131.9505, 33.09967],
+ [131.95019, 33.08349],
+ [131.98279, 33.08336],
+ [131.98279, 33.10007],
+ [132.00036, 33.1169],
+ [132.0252, 33.1169],
+ [132.02473, 33.0998],
+ [132.00843, 33.09172],
+ [132.00843, 33.06718],
+ [132.01745, 33.06705],
+ [132.01715, 33.04988],
+ [131.99181, 33.04211],
+ [131.92518, 33.04092],
+ [131.9255, 33.025],
+ [131.95003, 33.025],
+ [131.95045, 33.01347],
+ [131.95034, 32.97482],
+ [131.98326, 32.97536],
+ [131.98492, 32.95941],
+ [132.0261, 32.95922],
+ [132.05828, 32.95862],
+ [132.05844, 32.99142],
+ [132.07198, 32.9917],
+ [132.08297, 32.98332],
+ [132.09168, 32.92635],
+ [132.02473, 32.92542],
+ [132.02473, 32.90058],
+ [132.03349, 32.88294],
+ [132.00795, 32.88357],
+ [131.98326, 32.85871],
+ [131.99988, 32.8498],
+ [132.01715, 32.8429],
+ [132.01603, 32.82654],
+ [131.97551, 32.78396],
+ [131.93411, 32.76746],
+ [131.8992, 32.76614],
+ [131.89179, 32.71661],
+ [131.83317, 32.6507],
+ [131.78369, 32.64894],
+ [131.78415, 32.58396],
+ [131.74185, 32.58283],
+ [131.7082, 32.56669],
+ [131.70773, 32.54294],
+ [131.74159, 32.50852],
+ [131.74141, 32.45129],
+ [131.70804, 32.44216],
+ [131.70112, 32.40878],
+ [131.65787, 32.39219],
+ [131.64226, 32.33355],
+ [131.59948, 32.27572],
+ [131.57492, 32.18338],
+ [131.54184, 32.08474],
+ [131.542, 32.00009],
+ [131.49975, 32.00023],
+ [131.50038, 31.74971],
+ [131.4586, 31.75011],
+ [131.45876, 31.79182],
+ [131.24969, 31.79169],
+ [131.24969, 32.16704],
+ [131.37488, 32.16717],
+ [131.37504, 32.25046],
+ [131.49991, 32.25019],
+ [131.49991, 32.33341],
+ [131.54137, 32.33341],
+ [131.54167, 32.62506],
+ [131.66645, 32.62515],
+ [131.66633, 32.66662],
+ [131.74993, 32.66652],
+ [131.75006, 32.91664],
+ [131.5977, 32.91688],
+ [131.25044, 32.91663],
+ [131.24902, 33.00042],
+ [131.49971, 33.00002],
+ [131.49987, 33.06345],
+ [131.50018, 33.13915],
+ [131.4804, 33.16631],
+ [131.284, 33.16618],
+ [131.26706, 33.20035],
+ [131.26627, 33.25039],
+ [131.29966, 33.26985],
+ [131.29951, 33.31999],
+ [131.24427, 33.34114],
+ [131.17511, 33.34154],
+ [131.17527, 33.35806],
+ [131.07525, 33.35806],
+ [131.07572, 33.33347],
+ [131.00055, 33.33321],
+ [131.00007, 33.2496],
+ [130.91445, 33.2496],
+ [130.7497, 33.25013],
+ [130.7497, 33.08374],
+ [130.62546, 33.08321],
+ [130.62546, 33.00002],
+ [130.72796, 33.00171],
+ [130.87492, 33.00018],
+ [130.8753, 32.79131],
+ [130.96677, 32.79185],
+ [130.96709, 32.85808],
+ [130.92531, 32.85781],
+ [130.92531, 32.95029],
+ [130.96679, 32.95831],
+ [131.00012, 32.91683],
+ [131.00017, 32.50007],
+ [130.66647, 32.50046],
+ [130.66669, 32.33306],
+ [130.62506, 32.33306],
+ [130.62461, 32.24943],
+ [130.49972, 32.25037],
+ [130.50039, 32.12517],
+ [130.33275, 32.12498],
+ [130.3437, 32.16133],
+ [130.34954, 32.20815],
+ [130.42748, 32.29423],
+ [130.46637, 32.40054],
+ [130.4939, 32.40073],
+ [130.523, 32.43304],
+ [130.54941, 32.44456],
+ [130.54986, 32.4659],
+ [130.48383, 32.46647],
+ [130.47421, 32.47535],
+ [130.4751, 32.50064],
+ [130.5089, 32.54197],
+ [130.62439, 32.62571],
+ [130.62484, 32.6666],
+ [130.52569, 32.66679],
+ [130.52524, 32.68337],
+ [130.55859, 32.71671],
+ [130.55903, 32.7745],
+ [130.57493, 32.78372],
+ [130.57493, 32.82172],
+ [130.50935, 32.84185],
+ [130.50778, 32.86986],
+ [130.44155, 32.89158],
+ [130.41624, 32.94258],
+ [130.41579, 32.97488],
+ [130.37438, 33.00098],
+ [130.37528, 33.08315],
+ [130.24927, 33.08372],
+ [130.24905, 33.16076],
+ [130.15863, 33.09741],
+ [130.17775, 33.07174],
+ [130.18369, 33.06684],
+ [130.18369, 33.03401],
+ [130.19958, 33.025],
+ [130.19977, 33.00001],
+ [130.12479, 33.00001],
+ [130.12457, 32.96678],
+ [130.0409, 32.9407],
+ [130.02501, 32.94164],
+ [130.02456, 32.91647],
+ [130.12457, 32.9172],
+ [130.12457, 32.86739],
+ [130.15031, 32.86683],
+ [130.19578, 32.8661],
+ [130.23334, 32.89183],
+ [130.29198, 32.89183],
+ [130.29243, 32.84991],
+ [130.29153, 32.7916],
+ [130.2922, 32.71725],
+ [130.18343, 32.65791],
+ [130.15034, 32.65002],
+ [130.11539, 32.64962],
+ [130.11744, 32.70014],
+ [130.15903, 32.71706],
+ [130.24856, 32.75867],
+ [130.24968, 32.79085],
+ [130.1333, 32.79235],
+ [130.12569, 32.76751],
+ [130.00147, 32.74963],
+ [129.9294, 32.67317],
+ [129.80048, 32.57459],
+ [129.80003, 32.54704],
+ [129.77425, 32.54749],
+ [129.71767, 32.54987],
+ [129.71632, 32.59043],
+ [129.7499, 32.67487],
+ [129.75012, 32.72459],
+ [129.80025, 32.72553],
+ [129.74161, 32.77523],
+ [129.62411, 32.8501],
+ [129.62646, 32.91787],
+ [129.83159, 32.91738],
+ [129.87121, 32.91644],
+ [129.89269, 32.94105],
+ [129.93343, 33.00827],
+ [129.967, 33.07469],
+ [130.05809, 33.12025],
+ [130.05876, 33.21693],
+ [130.24946, 33.21674],
+ [130.2499, 33.33331],
+ [130.21566, 33.3335],
+ [130.0422, 33.33331],
+ [129.92559, 33.33294],
+ [129.90836, 33.35837],
+ [129.90791, 33.38304],
+ [129.86695, 33.38285],
+ [129.86697, 33.36012],
+ [129.83338, 33.34079],
+ [129.80093, 33.34098],
+ [129.80003, 33.31592],
+ [129.75057, 33.31686],
+ [129.75034, 33.27533],
+ [129.72572, 33.27477],
+ [129.6917, 33.30807],
+ [129.69237, 33.25025],
+ [129.87479, 33.25025],
+ [129.8759, 33.21299],
+ [129.87521, 33.11856],
+ [129.87523, 33.03323],
+ [129.80831, 33.03305],
+ [129.7499, 33.05031],
+ [129.734, 33.058],
+ [129.72658, 33.08172],
+ [129.69842, 33.09982],
+ [129.62413, 33.09928],
+ [129.62374, 33.12377],
+ [129.62501, 33.24201],
+ [129.59255, 33.24108],
+ [129.59255, 33.29928],
+ [129.54197, 33.3004],
+ [129.50012, 33.31761],
+ [129.49989, 33.41686],
+ [129.59949, 33.41593],
+ [129.66753, 33.40864],
+ [129.66775, 33.43274],
+ [129.8336, 33.56656],
+ [129.93208, 33.56787],
+ [129.93522, 33.40827],
+ [130.04131, 33.3836],
+ [130.04108, 33.48428],
+ [130.24901, 33.48465],
+ [130.25057, 33.61681],
+ [130.28504, 33.63405],
+ [130.28303, 33.69151],
+ [130.30888, 33.69151],
+ [130.32365, 33.66712],
+ [130.39225, 33.69179],
+ [130.41777, 33.72484],
+ [130.43388, 33.77546],
+ [130.39024, 33.87047],
+ [130.39113, 33.92509],
+ [130.50774, 33.92621],
+ [130.60555, 33.89166],
+ [130.66665, 33.9496],
+ [130.74991, 34.00844],
+ [130.84973, 34.00825],
+ [130.8504, 34.14155],
+ [130.88308, 34.19192],
+ [130.85801, 34.27519],
+ [130.83228, 34.36706],
+ [130.97127, 34.45052],
+ [131.08608, 34.43336],
+ [131.19307, 34.44166],
+ [131.29356, 34.44092],
+ [131.36518, 34.44591],
+ [131.37548, 34.5328],
+ [131.44934, 34.55013],
+ [131.57445, 34.69176],
+ [131.62526, 34.69158],
+ [131.78596, 34.70078],
+ [131.86989, 34.77435],
+ [131.99545, 34.88146],
+ [132.37594, 35.16739],
+ [132.74972, 35.16684],
+ [132.75084, 35.08318],
+ [132.6255, 35.08337],
+ [132.62505, 34.91671],
+ [132.3755, 34.91689],
+ [132.37527, 34.83426],
+ [132.12482, 34.83298],
+ [132.12482, 34.75008],
+ [132.00038, 34.7499],
+ [132.00038, 34.5833],
+ [131.74989, 34.58326],
+ [131.75139, 34.37954],
+ [131.75147, 34.1671],
+ [132.12497, 34.16683],
+ [132.12481, 34.2914],
+ [132.25016, 34.29193],
+ [132.24929, 34.40917],
+ [132.25016, 34.49983],
+ [132.37249, 34.49996],
+ [132.37503, 34.58339],
+ [132.49167, 34.58339],
+ [132.49182, 34.70831],
+ [132.59177, 34.70824],
+ [132.58365, 34.5417],
+ [132.84148, 34.54133],
+ [132.84193, 34.66623],
+ [133.08343, 34.66678],
+ [133.08365, 34.76631],
+ [133.20743, 34.76687],
+ [133.20787, 34.66678],
+ [133.49973, 34.66642],
+ [133.50026, 34.83314],
+ [133.7012, 34.83357],
+ [133.69941, 34.87526],
+ [133.74984, 34.87535],
+ [133.74984, 34.9999],
+ [133.8751, 35.00003],
+ [133.87518, 35.12504],
+ [133.97425, 35.12517],
+ [133.97546, 35.00097],
+ [134.0585, 34.99997],
+ [134.05816, 35.07464],
+ [134.16654, 35.0748],
+ [134.1667, 35.00016],
+ [134.75338, 35.00016],
+ [134.83324, 34.99997],
+ [134.8333, 35.04176],
+ [135.24494, 35.04176],
+ [135.37472, 35.04153],
+ [135.37535, 35.0836],
+ [135.74948, 35.08335],
+ [135.75066, 35.25004],
+ [135.87474, 35.2503],
+ [135.87529, 35.33388],
+ [136.00001, 35.33356],
+ [136.00024, 35.2587],
+ [135.98331, 35.24255],
+ [135.93361, 35.20027],
+ [135.93306, 35.1667],
+ [135.97539, 35.16664],
+ [135.97523, 35.15597],
+ [136.04993, 35.15829],
+ [136.04993, 35.21663],
+ [136.05895, 35.22484],
+ [136.12455, 35.23344],
+ [136.12536, 35.25011],
+ [136.16667, 35.24997],
+ [136.16651, 35.36441],
+ [136.16664, 35.45873],
+ [136.33347, 35.45857],
+ [136.37478, 35.33382],
+ [136.49981, 35.33356],
+ [136.49965, 35.49981],
+ [136.74991, 35.58365],
+ [137.00003, 35.58344],
+ [136.99984, 35.41254],
+ [136.99999, 35.33351],
+ [137.24995, 35.33357],
+ [137.24998, 34.91665],
+ [137.6249, 34.91658],
+ [137.62516, 35.00034],
+ [137.69186, 35.00052],
+ [137.69182, 35.06711],
+ [137.74199, 35.06668],
+ [137.74222, 35.10789],
+ [137.77489, 35.10844],
+ [137.77474, 35.15015],
+ [138.16671, 35.15021],
+ [138.16666, 35.2918],
+ [138.38224, 35.29138],
+ [138.50029, 35.29187],
+ [138.50119, 35.33333],
+ [138.38256, 35.33369],
+ [138.38319, 35.44169],
+ [138.49985, 35.44208],
+ [138.49988, 35.4584],
+ [138.66644, 35.45855],
+ [138.66704, 35.37476],
+ [138.70818, 35.37519],
+ [138.70818, 35.33348],
+ [138.8334, 35.33357],
+ [138.83329, 35.40832],
+ [139.0082, 35.40836],
+ [139.00858, 35.39192],
+ [139.1243, 35.39228],
+ [139.12498, 35.41668],
+ [139.25001, 35.41667],
+ [139.24995, 35.49996],
+ [139.12487, 35.50005],
+ [139.12492, 35.5833],
+ [138.99999, 35.58333],
+ [138.99999, 35.6667],
+ [139.1249, 35.66678],
+ [139.12504, 35.8092],
+ [139.12474, 35.91713],
+ [139.00053, 35.91713],
+ [139.00006, 36.00001],
+ [139.12492, 36.00012],
+ [139.12547, 36.11894],
+ [139.12495, 36.16664],
+ [139, 36.16668],
+ [138.99941, 36.25031],
+ [138.95831, 36.25002],
+ [138.95822, 36.29127],
+ [138.91663, 36.29166],
+ [138.91678, 36.37496],
+ [138.95845, 36.37565],
+ [138.95836, 36.45832],
+ [139.08379, 36.45868],
+ [139.08334, 36.5],
+ [139.25009, 36.50012],
+ [139.2496, 36.54136],
+ [139.37464, 36.54189],
+ [139.37505, 36.62499],
+ [139.45022, 36.62528],
+ [139.44999, 36.66667],
+ [139.66374, 36.66671],
+ [139.75002, 36.66665],
+ [139.75005, 36.75003],
+ [140, 36.75001],
+ [139.99998, 36.62209],
+ [140.00001, 36.41668],
+ [140.25001, 36.41666],
+ [140.24999, 36.04158],
+ [140.50004, 36.04158],
+ [140.49989, 35.83349],
+ [140.41632, 35.83374],
+ [140.4168, 35.7919],
+ [140.45874, 35.79113],
+ [140.45874, 35.72461],
+ [140.51666, 35.72486],
+ [140.51691, 35.7417],
+ [140.59144, 35.74174],
+ [140.5915, 35.94177],
+ [140.65002, 35.94164],
+ [140.64994, 36.00837],
+ [140.67503, 36.00834],
+ [140.71403, 35.92326],
+ [140.77327, 35.83877],
+ [140.81532, 35.78508],
+ [140.89133, 35.7501],
+ [140.89211, 35.71717],
+ [140.86632, 35.67853],
+ [140.80694, 35.70622],
+ [140.72767, 35.6761],
+ [140.68235, 35.68891],
+ [140.60194, 35.63074],
+ [140.48545, 35.54409],
+ [140.4095, 35.42897],
+ [140.40816, 35.33353],
+ [140.30722, 35.33371],
+ [140.30767, 35.41748],
+ [140.30946, 35.45851],
+ [140.20762, 35.45905],
+ [140.20829, 35.37478],
+ [140.12503, 35.37478],
+ [140.12436, 35.33408],
+ [140.29155, 35.33316],
+ [140.29245, 35.20909],
+ [140.31707, 35.20836],
+ [140.31662, 35.18422],
+ [140.35042, 35.18257],
+ [140.3431, 35.13152],
+ [140.23201, 35.10096],
+ [140.13697, 35.09271],
+ [140.05542, 35.03643],
+ [139.98865, 34.98849],
+ [139.96379, 34.91688],
+ [139.91222, 34.88262],
+ [139.82272, 34.89218],
+ [139.78337, 34.93633],
+ [139.73961, 34.95322],
+ [139.7443, 34.99303],
+ [139.81476, 35.00932],
+ [139.7963, 35.05283],
+ [139.80169, 35.09108],
+ [139.80766, 35.1529],
+ [139.80866, 35.19667],
+ [139.85153, 35.24127],
+ [139.8325, 35.29189],
+ [139.74927, 35.2961],
+ [139.76149, 35.33517],
+ [139.79232, 35.35267],
+ [139.81035, 35.49933],
+ [140.0035, 35.49988],
+ [140.03349, 35.53668],
+ [140.06639, 35.58384],
+ [139.79714, 35.58311],
+ [139.80005, 35.50079],
+ [139.77087, 35.47343],
+ [139.70992, 35.44207],
+ [139.6987, 35.40282],
+ [139.66887, 35.36715],
+ [139.68478, 35.30781],
+ [139.73549, 35.2728],
+ [139.75069, 35.25934],
+ [139.73734, 35.23092],
+ [139.74388, 35.20852],
+ [139.69714, 35.18971],
+ [139.67426, 35.1702],
+ [139.68932, 35.15394],
+ [139.68151, 35.13477],
+ [139.62355, 35.12199],
+ [139.59783, 35.1285],
+ [139.60224, 35.17253],
+ [139.58363, 35.18959],
+ [139.59033, 35.24164],
+ [139.5496, 35.28403],
+ [139.49879, 35.30084],
+ [139.42314, 35.30942],
+ [139.29131, 35.30066],
+ [139.23074, 35.27778],
+ [139.15546, 35.23542],
+ [139.15031, 35.17507],
+ [139.16665, 35.13316],
+ [139.12502, 35.13298],
+ [139.09436, 35.13335],
+ [139.05832, 35.13316],
+ [139.05671, 35.00443],
+ [139.03348, 34.98385],
+ [138.99968, 34.98367],
+ [139.00057, 34.88274],
+ [139.14136, 34.88348],
+ [139.11002, 34.84602],
+ [139.08129, 34.79529],
+ [139.01691, 34.74107],
+ [138.9999, 34.64151],
+ [138.90044, 34.6097],
+ [138.87367, 34.59159],
+ [138.80026, 34.59988],
+ [138.75773, 34.65881],
+ [138.72528, 34.67575],
+ [138.72528, 34.72506],
+ [138.83316, 34.72598],
+ [138.83383, 34.74952],
+ [138.7419, 34.75106],
+ [138.7338, 34.8136],
+ [138.74985, 34.90057],
+ [138.76065, 34.93773],
+ [138.75028, 34.98313],
+ [138.77855, 35.04352],
+ [138.87546, 35.03316],
+ [138.87703, 35.04929],
+ [138.85845, 35.04984],
+ [138.76804, 35.12107],
+ [138.68294, 35.12223],
+ [138.61873, 35.09015],
+ [138.55409, 35.05201],
+ [138.54926, 34.99442],
+ [138.49996, 34.95392],
+ [138.39142, 34.91129],
+ [138.35562, 34.86759],
+ [138.33929, 34.80042],
+ [138.27635, 34.72246],
+ [138.24467, 34.66616],
+ [138.24396, 34.58503],
+ [138.12662, 34.58573],
+ [138.01467, 34.62561],
+ [137.88184, 34.65541],
+ [137.79532, 34.63718],
+ [137.68991, 34.65307],
+ [137.57654, 34.66441],
+ [137.38135, 34.64618],
+ [137.18402, 34.58409],
+ [137.03187, 34.5662],
+ [137.00794, 34.57573],
+ [137.0254, 34.61792],
+ [137.0599, 34.66613],
+ [137.17517, 34.66686],
+ [137.30767, 34.75996],
+ [137.29894, 34.77595],
+ [137.29088, 34.79231],
+ [137.25037, 34.79213],
+ [137.21635, 34.76768],
+ [137.15816, 34.74911],
+ [137.08318, 34.75076],
+ [137.03215, 34.76345],
+ [136.94061, 34.80848],
+ [136.93456, 34.77522],
+ [136.98335, 34.72575],
+ [137.06751, 34.74212],
+ [137.06773, 34.70183],
+ [137.02454, 34.70809],
+ [137.01581, 34.64937],
+ [136.98179, 34.65029],
+ [136.82601, 34.74911],
+ [136.84884, 34.82319],
+ [136.79266, 34.82521],
+ [136.79132, 35.00048],
+ [136.75081, 35.00012],
+ [136.74991, 34.95849],
+ [136.68277, 34.96069],
+ [136.6624, 34.89701],
+ [136.59078, 34.80003],
+ [136.53863, 34.72704],
+ [136.58294, 34.62506],
+ [136.75682, 34.54181],
+ [136.85798, 34.54126],
+ [136.93945, 34.54347],
+ [136.91675, 34.49231],
+ [136.94081, 34.46687],
+ [136.94113, 34.40866],
+ [136.92404, 34.35876],
+ [136.90742, 34.30209],
+ [136.90045, 34.2666],
+ [136.84981, 34.23416],
+ [136.81693, 34.1923],
+ [136.79948, 34.19254],
+ [136.79996, 34.22906],
+ [136.74203, 34.25863],
+ [136.73325, 34.28285],
+ [136.70896, 34.28334],
+ [136.64264, 34.25902],
+ [136.5594, 34.22605],
+ [136.53564, 34.22167],
+ [136.50068, 34.20864],
+ [136.44007, 34.20053],
+ [136.38325, 34.16675],
+ [136.3334, 34.14802],
+ [136.31583, 34.08487],
+ [136.2674, 34.08316],
+ [136.12497, 34.08343],
+ [136.12449, 34.16688],
+ [136.24968, 34.16688],
+ [136.24984, 34.25012],
+ [136.37486, 34.25025],
+ [136.37468, 34.33331],
+ [136.50021, 34.33302],
+ [136.49973, 34.49192],
+ [136.45843, 34.49127],
+ [136.45811, 34.5416],
+ [136.4168, 34.54186],
+ [136.41664, 34.62516],
+ [136.37494, 34.62464],
+ [136.37469, 34.68106],
+ [136.37485, 34.74974],
+ [136.33402, 34.75026],
+ [136.33354, 34.79109],
+ [136.37485, 34.79213],
+ [136.37533, 34.95858],
+ [136.33323, 34.95858],
+ [136.33323, 34.83345],
+ [136.29239, 34.83371],
+ [136.29208, 34.792],
+ [136.24966, 34.79213],
+ [136.24998, 34.70838],
+ [136.29192, 34.70851],
+ [136.2916, 34.62475],
+ [136.12487, 34.62512],
+ [136.12498, 34.66674],
+ [136.04161, 34.66655],
+ [136.04094, 34.7499],
+ [136.00023, 34.75009],
+ [135.99991, 34.65993],
+ [135.99975, 34.58387],
+ [136.04153, 34.58374],
+ [136.04185, 34.50017],
+ [136.04989, 34.49997],
+ [136.05005, 34.42503],
+ [135.91674, 34.425],
+ [135.91667, 34.35836],
+ [135.81665, 34.35837],
+ [135.81661, 34.31668],
+ [135.74991, 34.31672],
+ [135.75007, 34.29167],
+ [135.64152, 34.29176],
+ [135.64186, 34.27512],
+ [135.53325, 34.27489],
+ [135.53348, 34.25834],
+ [135.475, 34.25834],
+ [135.47511, 34.22498],
+ [135.37507, 34.22512],
+ [135.3749, 34.20814],
+ [135.50001, 34.20837],
+ [135.50001, 33.66652],
+ [135.87502, 33.66661],
+ [135.87558, 33.74983],
+ [136.03371, 33.75021],
+ [136.01272, 33.71062],
+ [135.99681, 33.67327],
+ [135.97948, 33.63389],
+ [135.97195, 33.61271],
+ [135.95831, 33.56798],
+ [135.85332, 33.50522],
+ [135.85353, 33.48302],
+ [135.87591, 33.4814],
+ [135.86057, 33.44051],
+ [135.77718, 33.42558],
+ [135.7418, 33.42534],
+ [135.74163, 33.4665],
+ [135.68498, 33.47915],
+ [135.59008, 33.49633],
+ [135.47373, 33.52819],
+ [135.3902, 33.5752],
+ [135.37485, 33.61633],
+ [135.37533, 33.64967],
+ [135.33371, 33.6498],
+ [135.32468, 33.66653],
+ [135.45794, 33.66666],
+ [135.45842, 33.74987],
+ [135.41727, 33.75],
+ [135.41663, 33.78802],
+ [135.41743, 33.83273],
+ [135.37517, 33.83326],
+ [135.37517, 33.79171],
+ [135.3284, 33.78999],
+ [135.28777, 33.75622],
+ [135.21503, 33.7698],
+ [135.14371, 33.85113],
+ [135.12013, 33.87826],
+ [135.05776, 33.87991],
+ [135.05947, 33.96479],
+ [135.07709, 34.00837],
+ [135.11345, 34.05029],
+ [135.06515, 34.06759],
+ [135.07041, 34.121],
+ [135.15522, 34.16286],
+ [135.1163, 34.18742],
+ [135.06316, 34.25849],
+ [135.04915, 34.27082],
+ [134.99554, 34.27152],
+ [134.9955, 34.29122],
+ [134.99945, 34.29894],
+ [135.00904, 34.30357],
+ [135.1457, 34.34721],
+ [135.20804, 34.35108],
+ [135.24174, 34.39165],
+ [135.19145, 34.42482],
+ [135.25012, 34.46056],
+ [135.29487, 34.42658],
+ [135.30902, 34.44119],
+ [135.36647, 34.53277],
+ [135.39147, 34.53394],
+ [135.38308, 34.63128],
+ [135.36409, 34.66669],
+ [135.29161, 34.66695],
+ [135.29061, 34.6245],
+ [135.08349, 34.62463],
+ [135.04725, 34.61643],
+ [134.92905, 34.64799],
+ [134.826, 34.69662],
+ [134.75874, 34.74267],
+ [134.71632, 34.74982],
+ [134.52561, 34.74969],
+ [134.41657, 34.70885],
+ [134.31671, 34.66669],
+ [134.25055, 34.66656],
+ [134.24992, 34.68309],
+ [134.15797, 34.68348],
+ [134.15781, 34.70013],
+ [134.12505, 34.7],
+ [134.12474, 34.58386],
+ [134.11666, 34.55845],
+ [134.02519, 34.55024],
+ [134.02535, 34.44785],
+ [134.02788, 34.41639],
+ [134.19168, 34.41678],
+ [134.19152, 34.38401],
+ [134.28347, 34.38296],
+ [134.28347, 34.33371],
+ [134.38082, 34.29415],
+ [134.40952, 34.26539],
+ [134.43268, 34.24648],
+ [134.56265, 34.25055],
+ [134.66663, 34.24963],
+ [134.64146, 34.04963],
+ [134.70809, 33.96554],
+ [134.74006, 33.92825],
+ [134.71221, 33.86773],
+ [134.76918, 33.86691],
+ [134.76712, 33.82524],
+ [134.66742, 33.7754],
+ [134.63102, 33.77487],
+ [134.50018, 33.77493],
+ [134.49978, 33.95855],
+ [134.4582, 33.95874],
+ [134.45816, 34.00006],
+ [134.34679, 33.99889],
+ [134.06047, 33.99988],
+ [133.74955, 34.00047],
+ [133.74998, 34.33337],
+ [133.875, 34.33342],
+ [133.87494, 34.41668],
+ [133.95888, 34.41683],
+ [133.95843, 34.44157],
+ [133.85055, 34.44157],
+ [133.84966, 34.46621],
+ [133.82537, 34.46704],
+ [133.81642, 34.44222],
+ [133.84205, 34.43326],
+ [133.84194, 34.41656],
+ [133.75822, 34.41715],
+ [133.74122, 34.44175],
+ [133.6913, 34.44152],
+ [133.69085, 34.45739],
+ [133.69097, 34.46639],
+ [133.70004, 34.48346],
+ [133.61655, 34.48355],
+ [133.61689, 34.45827],
+ [133.53351, 34.45887],
+ [133.53329, 34.41752],
+ [133.4897, 34.41743],
+ [133.46642, 34.43313],
+ [133.46631, 34.44992],
+ [133.4503, 34.45002],
+ [133.45008, 34.4166],
+ [133.41713, 34.41696],
+ [133.41668, 34.35786],
+ [133.34174, 34.3583],
+ [133.30304, 34.37515],
+ [133.2748, 34.35876],
+ [133.21655, 34.35],
+ [133.16694, 34.35007],
+ [133.16662, 34.36659],
+ [133.09184, 34.36659],
+ [133.09176, 34.3417],
+ [133.05837, 34.34164],
+ [133.05829, 34.32491],
+ [132.90003, 34.32517],
+ [132.89148, 34.29164],
+ [132.7917, 34.29164],
+ [132.79133, 34.28281],
+ [132.792, 34.24212],
+ [132.77492, 34.22513],
+ [132.71629, 34.22499],
+ [132.71652, 34.21655],
+ [132.75854, 34.21636],
+ [132.775, 34.20877],
+ [132.79218, 34.20095],
+ [132.79223, 34.14177],
+ [132.74138, 34.14173],
+ [132.70838, 34.16655],
+ [132.63354, 34.16665],
+ [132.61664, 34.1917],
+ [132.59185, 34.1916],
+ [132.5749, 34.1666],
+ [132.54155, 34.16674],
+ [132.54178, 34.14196],
+ [132.42515, 34.14165],
+ [132.42503, 34.16657],
+ [132.3749, 34.16663],
+ [132.37515, 34.18348],
+ [132.40833, 34.18343],
+ [132.3752, 34.2168],
+ [132.34991, 34.23331],
+ [132.35014, 34.25834],
+ [132.35814, 34.25843],
+ [132.35819, 34.27503],
+ [132.33922, 34.25834],
+ [132.29166, 34.22494],
+ [132.24992, 34.22494],
+ [132.25003, 34.2043],
+ [132.25809, 34.18324],
+ [132.28327, 34.18352],
+ [132.28321, 34.19995],
+ [132.29183, 34.20837],
+ [132.32501, 34.20847],
+ [132.31684, 34.1753],
+ [132.25843, 34.17533],
+ [132.25843, 34.14171],
+ [132.2502, 34.11675],
+ [132.21669, 34.11684],
+ [132.21685, 34.0585],
+ [132.22491, 34.05827],
+ [132.22502, 33.99163],
+ [132.21669, 33.99177],
+ [132.21652, 33.97516],
+ [132.25037, 33.97526],
+ [132.25014, 33.91622],
+ [131.95761, 33.91733],
+ [131.95783, 33.92512],
+ [131.91755, 33.92495],
+ [131.91586, 33.95863],
+ [131.88699, 33.96671],
+ [131.87569, 33.95891],
+ [131.84973, 33.92502],
+ [131.80049, 33.92439],
+ [131.79948, 33.95046],
+ [131.7752, 33.95057],
+ [131.75058, 33.9668],
+ [131.70828, 33.97508],
+ [131.70918, 33.92551],
+ [131.68366, 33.92513],
+ [131.68321, 33.95056],
+ [131.6916, 33.96717],
+ [131.69988, 33.98323],
+ [131.68332, 33.99937],
+ [131.68354, 34.01681],
+ [131.69999, 34.017],
+ [131.70011, 34.03314],
+ [131.68209, 34.03352],
+ [131.67515, 34.02581],
+ [131.62513, 34.02488],
+ [131.59122, 33.97515],
+ [131.38721, 33.97497],
+ [131.29981, 33.91685],
+ [131.16675, 33.91667],
+ [131.1172, 33.97473],
+ [131.06078, 34.02462],
+ [131.03349, 34.02557],
+ [131.04198, 34.00848],
+ [131.04175, 33.7381]
+ ],
+ [
+ [135.98583, 35.86595],
+ [135.93905, 35.95517],
+ [135.95723, 36.1316],
+ [136.15271, 36.29666],
+ [136.6596, 36.75695],
+ [136.65846, 37.00603],
+ [136.66642, 37.33477],
+ [136.85167, 37.42328],
+ [137.11307, 37.5288],
+ [137.31877, 37.54953],
+ [137.39151, 37.50356],
+ [137.34765, 37.35791],
+ [137.20218, 37.24762],
+ [137.09307, 37.06828],
+ [137.0223, 36.83795],
+ [137.09532, 36.80133],
+ [137.22971, 36.77368],
+ [137.35387, 36.80451],
+ [137.39706, 36.90966],
+ [137.50588, 36.95883],
+ [137.72267, 37.01579],
+ [137.95199, 37.10656],
+ [138.053, 37.16975],
+ [138.18626, 37.18254],
+ [138.28854, 37.24861],
+ [138.43501, 37.34512],
+ [138.54909, 37.41229],
+ [138.61842, 37.49225],
+ [138.73903, 37.51536],
+ [138.78378, 37.5674],
+ [138.82185, 37.62796],
+ [138.91491, 37.63009],
+ [138.924, 37.6032],
+ [139.01321, 37.59757],
+ [139.01421, 37.53507],
+ [139.03452, 37.52325],
+ [139.03793, 37.45798],
+ [139.04887, 37.42358],
+ [139.13027, 37.42312],
+ [139.23881, 37.4326],
+ [139.26282, 37.33326],
+ [139.12289, 37.32784],
+ [139.11408, 37.26354],
+ [139.11422, 37.16748],
+ [139.05555, 37.16658],
+ [138.82825, 37.17133],
+ [138.87072, 37.2338],
+ [138.89104, 37.31316],
+ [138.72965, 37.33259],
+ [138.71403, 37.29474],
+ [138.71715, 37.1642],
+ [138.53517, 37.16533],
+ [138.39907, 37.16692],
+ [138.37478, 37.13261],
+ [138.3725, 36.99907],
+ [138.08823, 36.99839],
+ [138.08596, 36.91586],
+ [137.89233, 36.91768],
+ [137.87798, 36.83517],
+ [137.66517, 36.8321],
+ [137.52111, 36.83142],
+ [137.51216, 36.74222],
+ [137.39482, 36.74427],
+ [137.37138, 36.58325],
+ [137.29367, 36.58371],
+ [137.18016, 36.55028],
+ [137.21383, 36.53133],
+ [137.26384, 36.33176],
+ [136.63321, 36.33496],
+ [136.50436, 36.29227],
+ [136.39412, 36.29444],
+ [136.38034, 36.25493],
+ [136.37778, 36.17665],
+ [136.38218, 36.09507],
+ [136.38758, 36.00065],
+ [136.2593, 35.99399],
+ [136.25532, 35.90923],
+ [136.24992, 35.83337],
+ [136.12207, 35.82876],
+ [136.11184, 35.88725],
+ [136.05984, 35.91165],
+ [136.01793, 35.86676],
+ [135.98583, 35.86595]
+ ],
+ [
+ [140.03281, 37.29986],
+ [140.03344, 37.34643],
+ [140.03344, 37.47427],
+ [140.03407, 37.48281],
+ [139.99973, 37.48356],
+ [140.00036, 37.44198],
+ [139.94212, 37.44173],
+ [139.94197, 37.35007],
+ [139.89116, 37.35007],
+ [139.89116, 37.41698],
+ [139.81725, 37.41647],
+ [139.81266, 37.57468],
+ [139.74192, 37.57556],
+ [139.74224, 37.79174],
+ [139.81789, 37.79162],
+ [139.98296, 37.79112],
+ [139.98359, 37.58334],
+ [140.0412, 37.58334],
+ [140.04151, 37.47502],
+ [140.1591, 37.47528],
+ [140.15815, 37.63311],
+ [140.3745, 37.63399],
+ [140.37481, 37.83338],
+ [140.5, 37.83525],
+ [140.49989, 37.91662],
+ [140.53144, 37.9168],
+ [140.62489, 37.9167],
+ [140.62489, 37.84641],
+ [140.62534, 37.33359],
+ [140.57502, 37.33284],
+ [140.57486, 37.25881],
+ [140.4579, 37.25855],
+ [140.45774, 37.2084],
+ [140.2501, 37.20866],
+ [140.24994, 37.29998],
+ [140.03281, 37.29986]
+ ],
+ [
+ [141.00075, 38.16707],
+ [140.84264, 38.16752],
+ [140.68779, 38.16405],
+ [140.70788, 38.09499],
+ [140.70868, 38.03346],
+ [140.61627, 38.03362],
+ [140.53369, 38.11364],
+ [140.5359, 38.14478],
+ [140.61948, 38.14478],
+ [140.62471, 38.2048],
+ [140.6231, 38.27376],
+ [140.63073, 38.33902],
+ [140.81255, 38.33698],
+ [141.00362, 38.33398],
+ [141.00075, 38.16707]
+ ],
+ [
+ [129.44454, 34.73675],
+ [129.52524, 34.65452],
+ [129.35703, 34.19046],
+ [129.23088, 34.06063],
+ [129.15132, 34.11616],
+ [129.27179, 34.63488],
+ [129.44454, 34.73675]
+ ]
+ ],
+ "terms_url": "http://www.gsi.go.jp/kikakuchousei/kikakuchousei40182.html",
+ "terms_text": "GSI Japan"
+ },
+ {
+ "id": "gsi.go.jp_std_map",
+ "name": "Japan GSI Standard Map",
+ "type": "tms",
+ "template": "https://cyberjapandata.gsi.go.jp/xyz/std/{zoom}/{x}/{y}.png",
+ "scaleExtent": [5, 18],
+ "polygon": [
+ [
+ [141.85547, 44.64912],
+ [140.22949, 43.9691],
+ [138.95508, 41.80408],
+ [139.48242, 40.17887],
+ [138.86719, 38.30718],
+ [136.31836, 37.19533],
+ [132.14355, 35.13788],
+ [128.93555, 33.35806],
+ [129.50684, 32.4727],
+ [129.77051, 31.69078],
+ [130.20996, 30.90223],
+ [131.2207, 30.78904],
+ [131.66016, 32.32428],
+ [132.71484, 32.87959],
+ [133.76953, 33.17434],
+ [136.75781, 33.87042],
+ [139.30664, 35.06597],
+ [140.88867, 35.17381],
+ [141.15234, 36.5626],
+ [142.11914, 39.94344],
+ [141.76758, 42.68243],
+ [141.85547, 44.64912]
+ ]
+ ],
+ "terms_url": "https://maps.gsi.go.jp/help/use.html",
+ "terms_text": "GSI Japan"
+ },
+ {
+ "id": "Aargau-AGIS-2014",
+ "name": "Kanton Aargau 25cm (AGIS 2014)",
+ "type": "tms",
+ "template": "https://mapproxy.osm.ch/tiles/AGIS2014/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
+ "endDate": "2014-01-01T00:00:00.000Z",
+ "startDate": "2014-01-01T00:00:00.000Z",
+ "scaleExtent": [8, 19],
+ "polygon": [
+ [
+ [8.09602, 47.57882],
+ [8.10323, 47.57879],
+ [8.10323, 47.58583],
+ [8.10591, 47.58732],
+ [8.11019, 47.58878],
+ [8.11589, 47.5893],
+ [8.12168, 47.58916],
+ [8.12546, 47.58873],
+ [8.12959, 47.58888],
+ [8.13023, 47.59122],
+ [8.132, 47.59358],
+ [8.13506, 47.59546],
+ [8.13831, 47.59698],
+ [8.14161, 47.59939],
+ [8.14534, 47.60076],
+ [8.14961, 47.60144],
+ [8.15438, 47.60127],
+ [8.15751, 47.60063],
+ [8.16119, 47.59914],
+ [8.16255, 47.59976],
+ [8.16438, 47.60148],
+ [8.16653, 47.60399],
+ [8.17087, 47.60673],
+ [8.17608, 47.60838],
+ [8.17912, 47.60868],
+ [8.18153, 47.6118],
+ [8.18304, 47.61489],
+ [8.18498, 47.6176],
+ [8.18953, 47.62151],
+ [8.19212, 47.62321],
+ [8.22261, 47.623],
+ [8.22561, 47.6212],
+ [8.22849, 47.61842],
+ [8.22959, 47.61621],
+ [8.23008, 47.61501],
+ [8.23261, 47.61686],
+ [8.23657, 47.61803],
+ [8.24, 47.61835],
+ [8.24351, 47.61783],
+ [8.24749, 47.61877],
+ [8.25066, 47.61988],
+ [8.25708, 47.6208],
+ [8.26104, 47.62069],
+ [8.26491, 47.61935],
+ [8.26732, 47.61769],
+ [8.26902, 47.61531],
+ [8.27579, 47.61702],
+ [8.28106, 47.61707],
+ [8.28772, 47.61626],
+ [8.29421, 47.61442],
+ [8.29947, 47.61221],
+ [8.30311, 47.60977],
+ [8.30287, 47.59447],
+ [8.30438, 47.59227],
+ [8.30591, 47.59109],
+ [8.30791, 47.59019],
+ [8.31236, 47.58917],
+ [8.31655, 47.58713],
+ [8.32049, 47.58436],
+ [8.32598, 47.57888],
+ [8.32864, 47.57716],
+ [8.33219, 47.57604],
+ [8.33902, 47.57577],
+ [8.34702, 47.57628],
+ [8.35962, 47.57552],
+ [8.36475, 47.57436],
+ [8.37207, 47.57377],
+ [8.38002, 47.57233],
+ [8.38194, 47.57496],
+ [8.38387, 47.57686],
+ [8.38879, 47.58027],
+ [8.39232, 47.58174],
+ [8.39611, 47.58247],
+ [8.40013, 47.58255],
+ [8.40432, 47.58158],
+ [8.41158, 47.57928],
+ [8.418, 47.57602],
+ [8.42381, 47.57452],
+ [8.43039, 47.57228],
+ [8.43275, 47.57035],
+ [8.4336, 47.56849],
+ [8.43353, 47.56669],
+ [8.4319, 47.56444],
+ [8.4286, 47.56217],
+ [8.42575, 47.56121],
+ [8.4259, 47.55854],
+ [8.42498, 47.55624],
+ [8.42353, 47.55469],
+ [8.42296, 47.5537],
+ [8.4246, 47.5517],
+ [8.42492, 47.54981],
+ [8.42434, 47.54836],
+ [8.42539, 47.54679],
+ [8.425, 47.54418],
+ [8.4233, 47.5422],
+ [8.421, 47.54106],
+ [8.41832, 47.54049],
+ [8.41551, 47.54062],
+ [8.4139, 47.53924],
+ [8.41283, 47.5372],
+ [8.41194, 47.53626],
+ [8.41241, 47.53415],
+ [8.41185, 47.53237],
+ [8.41117, 47.53158],
+ [8.40143, 47.53169],
+ [8.40124, 47.52443],
+ [8.39936, 47.5222],
+ [8.39666, 47.52082],
+ [8.39385, 47.51988],
+ [8.39085, 47.51973],
+ [8.38877, 47.52014],
+ [8.38809, 47.5146],
+ [8.38551, 47.51075],
+ [8.38366, 47.50944],
+ [8.36776, 47.50953],
+ [8.36739, 47.48709],
+ [8.3751, 47.48689],
+ [8.37889, 47.4853],
+ [8.38196, 47.48188],
+ [8.38184, 47.47521],
+ [8.38328, 47.47192],
+ [8.38244, 47.46879],
+ [8.37943, 47.46643],
+ [8.37751, 47.4659],
+ [8.37787, 47.46496],
+ [8.38238, 47.46423],
+ [8.38671, 47.46097],
+ [8.39171, 47.45743],
+ [8.39315, 47.45349],
+ [8.39514, 47.45031],
+ [8.39418, 47.44722],
+ [8.39171, 47.44535],
+ [8.3896, 47.44449],
+ [8.38996, 47.44339],
+ [8.39111, 47.4416],
+ [8.39213, 47.43924],
+ [8.39339, 47.4359],
+ [8.39249, 47.43411],
+ [8.39369, 47.43143],
+ [8.39568, 47.42854],
+ [8.39959, 47.42463],
+ [8.39953, 47.41954],
+ [8.449, 47.41897],
+ [8.45369, 47.41233],
+ [8.45369, 47.40451],
+ [8.44858, 47.39649],
+ [8.40362, 47.39685],
+ [8.40483, 47.39392],
+ [8.4029, 47.38903],
+ [8.4035, 47.38553],
+ [8.40314, 47.38304],
+ [8.40483, 47.37905],
+ [8.40844, 47.37575],
+ [8.41379, 47.37338],
+ [8.4159, 47.37016],
+ [8.41584, 47.36539],
+ [8.4144, 47.36327],
+ [8.41494, 47.35912],
+ [8.41722, 47.35573],
+ [8.41632, 47.35231],
+ [8.41355, 47.34913],
+ [8.41367, 47.34688],
+ [8.41476, 47.3448],
+ [8.41885, 47.34244],
+ [8.42264, 47.34052],
+ [8.42469, 47.33718],
+ [8.42421, 47.33163],
+ [8.42914, 47.33286],
+ [8.4351, 47.33192],
+ [8.43763, 47.33281],
+ [8.44328, 47.33506],
+ [8.44527, 47.33746],
+ [8.45213, 47.3402],
+ [8.45761, 47.33975],
+ [8.46212, 47.33649],
+ [8.46278, 47.33322],
+ [8.46043, 47.32829],
+ [8.45797, 47.32457],
+ [8.45556, 47.32005],
+ [8.44918, 47.31495],
+ [8.44713, 47.31217],
+ [8.44021, 47.30948],
+ [8.43624, 47.29817],
+ [8.43311, 47.29593],
+ [8.42806, 47.29397],
+ [8.42318, 47.29001],
+ [8.41656, 47.28789],
+ [8.41024, 47.28728],
+ [8.4035, 47.28409],
+ [8.40188, 47.2805],
+ [8.40862, 47.27593],
+ [8.41066, 47.2716],
+ [8.40892, 47.26613],
+ [8.41235, 47.2618],
+ [8.41235, 47.25873],
+ [8.41109, 47.25608],
+ [8.41698, 47.25142],
+ [8.41885, 47.2475],
+ [8.41801, 47.24305],
+ [8.4144, 47.23904],
+ [8.41373, 47.23565],
+ [8.4106, 47.23226],
+ [8.40435, 47.22797],
+ [8.40296, 47.2256],
+ [8.40398, 47.22127],
+ [8.40856, 47.21718],
+ [8.40928, 47.21326],
+ [8.40844, 47.20945],
+ [8.41012, 47.20258],
+ [8.41319, 47.19678],
+ [8.41271, 47.1924],
+ [8.4088, 47.18799],
+ [8.40814, 47.18475],
+ [8.4091, 47.1812],
+ [8.41518, 47.17915],
+ [8.41915, 47.17563],
+ [8.42294, 47.16553],
+ [8.42294, 47.15747],
+ [8.42011, 47.15325],
+ [8.42246, 47.14838],
+ [8.42276, 47.14392],
+ [8.42053, 47.13954],
+ [8.41584, 47.13524],
+ [8.40898, 47.13274],
+ [8.40386, 47.13201],
+ [8.40116, 47.13258],
+ [8.39532, 47.1327],
+ [8.38437, 47.1345],
+ [8.37895, 47.13385],
+ [8.37245, 47.13442],
+ [8.36908, 47.13659],
+ [8.368, 47.13876],
+ [8.35656, 47.14228],
+ [8.35409, 47.14564],
+ [8.35331, 47.14916],
+ [8.3506, 47.15161],
+ [8.3503, 47.15419],
+ [8.34772, 47.15669],
+ [8.34561, 47.15923],
+ [8.34086, 47.16164],
+ [8.33935, 47.16512],
+ [8.3373, 47.16896],
+ [8.33315, 47.17154],
+ [8.33261, 47.17351],
+ [8.33062, 47.17792],
+ [8.33002, 47.18717],
+ [8.32924, 47.18786],
+ [8.32936, 47.19494],
+ [8.32292, 47.19514],
+ [8.32148, 47.19854],
+ [8.32196, 47.20115],
+ [8.31835, 47.21043],
+ [8.31413, 47.21178],
+ [8.31089, 47.2153],
+ [8.31107, 47.21857],
+ [8.31221, 47.2198],
+ [8.30884, 47.22433],
+ [8.30932, 47.22646],
+ [8.30715, 47.23042],
+ [8.30727, 47.2321],
+ [8.30595, 47.23582],
+ [8.30607, 47.23949],
+ [8.30378, 47.24366],
+ [8.30144, 47.24677],
+ [8.29554, 47.24836],
+ [8.29187, 47.25293],
+ [8.28814, 47.25869],
+ [8.28766, 47.26143],
+ [8.28627, 47.26519],
+ [8.28723, 47.26805],
+ [8.28838, 47.26964],
+ [8.2823, 47.27478],
+ [8.27718, 47.27576],
+ [8.27273, 47.27531],
+ [8.26749, 47.27593],
+ [8.26533, 47.27719],
+ [8.2616, 47.27695],
+ [8.25793, 47.27781],
+ [8.25576, 47.27887],
+ [8.25317, 47.27678],
+ [8.25034, 47.27548],
+ [8.2501, 47.27348],
+ [8.24956, 47.27017],
+ [8.24559, 47.26715],
+ [8.24095, 47.26678],
+ [8.23452, 47.26727],
+ [8.23145, 47.26278],
+ [8.2309, 47.25931],
+ [8.22663, 47.24942],
+ [8.222, 47.24713],
+ [8.21526, 47.24431],
+ [8.21363, 47.24203],
+ [8.21309, 47.23602],
+ [8.21123, 47.23246],
+ [8.21285, 47.22548],
+ [8.21117, 47.22266],
+ [8.20689, 47.22053],
+ [8.19762, 47.22065],
+ [8.19149, 47.21861],
+ [8.16976, 47.21865],
+ [8.16543, 47.22315],
+ [8.16085, 47.22405],
+ [8.15351, 47.2294],
+ [8.15171, 47.2332],
+ [8.14822, 47.23647],
+ [8.14798, 47.241],
+ [8.14635, 47.24203],
+ [8.13823, 47.24166],
+ [8.13558, 47.23941],
+ [8.12673, 47.23606],
+ [8.1218, 47.23631],
+ [8.11614, 47.23872],
+ [8.10675, 47.23945],
+ [8.10266, 47.24113],
+ [8.09983, 47.24436],
+ [8.09766, 47.2493],
+ [8.09797, 47.25069],
+ [8.09339, 47.25567],
+ [8.08852, 47.2569],
+ [8.08485, 47.25583],
+ [8.08323, 47.25405],
+ [8.07995, 47.25246],
+ [8.0769, 47.25054],
+ [8.06854, 47.24284],
+ [8.06325, 47.24098],
+ [8.05134, 47.23865],
+ [8.04857, 47.23886],
+ [8.03575, 47.23747],
+ [8.0322, 47.23555],
+ [8.02714, 47.23534],
+ [8.01139, 47.23967],
+ [8.00927, 47.24116],
+ [8.00791, 47.24312],
+ [8.00783, 47.24821],
+ [8.00857, 47.25042],
+ [8.0084, 47.25769],
+ [8.00712, 47.25922],
+ [8.00299, 47.26162],
+ [8.00052, 47.26486],
+ [7.99759, 47.26789],
+ [7.99627, 47.27271],
+ [7.99474, 47.27369],
+ [7.98993, 47.27121],
+ [7.97278, 47.26907],
+ [7.96857, 47.27008],
+ [7.96737, 47.27098],
+ [7.95861, 47.27112],
+ [7.9601, 47.26748],
+ [7.96274, 47.26396],
+ [7.96576, 47.26171],
+ [7.96699, 47.25879],
+ [7.96695, 47.25001],
+ [7.95963, 47.24582],
+ [7.95112, 47.23918],
+ [7.94469, 47.236],
+ [7.93733, 47.23106],
+ [7.93405, 47.23051],
+ [7.9298, 47.23077],
+ [7.9178, 47.23305],
+ [7.90784, 47.23837],
+ [7.89793, 47.2377],
+ [7.8695, 47.23207],
+ [7.85478, 47.22719],
+ [7.85137, 47.22713],
+ [7.83958, 47.22947],
+ [7.83584, 47.22976],
+ [7.83082, 47.23259],
+ [7.82707, 47.23505],
+ [7.82431, 47.23831],
+ [7.82129, 47.24042],
+ [7.82014, 47.24264],
+ [7.81822, 47.24562],
+ [7.81771, 47.24917],
+ [7.81822, 47.25082],
+ [7.81835, 47.25371],
+ [7.81988, 47.25587],
+ [7.82116, 47.2568],
+ [7.82112, 47.25778],
+ [7.8192, 47.26058],
+ [7.81912, 47.26154],
+ [7.81686, 47.26486],
+ [7.8175, 47.26731],
+ [7.81958, 47.26982],
+ [7.82439, 47.27158],
+ [7.82805, 47.2721],
+ [7.83592, 47.27837],
+ [7.83707, 47.28342],
+ [7.84005, 47.2872],
+ [7.84201, 47.29067],
+ [7.84588, 47.29427],
+ [7.84763, 47.2982],
+ [7.85137, 47.30299],
+ [7.8529, 47.30741],
+ [7.85571, 47.31032],
+ [7.86065, 47.31254],
+ [7.86422, 47.31349],
+ [7.87018, 47.31672],
+ [7.87631, 47.31736],
+ [7.88082, 47.31716],
+ [7.88337, 47.31667],
+ [7.88588, 47.31941],
+ [7.88886, 47.32131],
+ [7.88805, 47.32443],
+ [7.88907, 47.3287],
+ [7.8915, 47.33262],
+ [7.8978, 47.34014],
+ [7.9001, 47.34156],
+ [7.90005, 47.3432],
+ [7.90222, 47.34557],
+ [7.90635, 47.34704],
+ [7.90963, 47.34735],
+ [7.91359, 47.34626],
+ [7.91618, 47.34456],
+ [7.91699, 47.34303],
+ [7.92401, 47.33899],
+ [7.93839, 47.33792],
+ [7.94929, 47.33784],
+ [7.95431, 47.33596],
+ [7.95593, 47.33317],
+ [7.95691, 47.32968],
+ [7.95571, 47.32535],
+ [7.96993, 47.32797],
+ [7.97308, 47.33017],
+ [7.98333, 47.33432],
+ [7.98563, 47.33692],
+ [7.98954, 47.33818],
+ [7.99248, 47.33827],
+ [7.99784, 47.34017],
+ [7.99635, 47.34257],
+ [7.99601, 47.34588],
+ [7.99733, 47.34859],
+ [8.00116, 47.35081],
+ [8.00137, 47.3569],
+ [8.00261, 47.3577],
+ [8.00418, 47.36044],
+ [8.00976, 47.36419],
+ [8.01125, 47.36598],
+ [8.01746, 47.36926],
+ [8.01912, 47.37157],
+ [8.0198, 47.37376],
+ [8.02023, 47.37598],
+ [8.02172, 47.37837],
+ [8.02193, 47.38093],
+ [8.02282, 47.38286],
+ [8.02078, 47.38857],
+ [8.01606, 47.38929],
+ [8.01265, 47.38897],
+ [8.00772, 47.39012],
+ [8.00367, 47.39205],
+ [8.00163, 47.39479],
+ [8.00155, 47.39998],
+ [8.00023, 47.40306],
+ [7.99801, 47.40453],
+ [7.99261, 47.40551],
+ [7.98776, 47.40637],
+ [7.98418, 47.40839],
+ [7.98027, 47.4081],
+ [7.9732, 47.41127],
+ [7.96963, 47.41383],
+ [7.95695, 47.41893],
+ [7.95529, 47.4218],
+ [7.95593, 47.42402],
+ [7.95746, 47.42621],
+ [7.96274, 47.42828],
+ [7.97746, 47.43254],
+ [7.97567, 47.43732],
+ [7.97614, 47.44138],
+ [7.97431, 47.44368],
+ [7.95129, 47.45111],
+ [7.94861, 47.4539],
+ [7.94818, 47.4566],
+ [7.94678, 47.45755],
+ [7.94039, 47.45669],
+ [7.93588, 47.45738],
+ [7.93631, 47.47625],
+ [7.9318, 47.47605],
+ [7.92469, 47.47717],
+ [7.91571, 47.47743],
+ [7.90903, 47.47947],
+ [7.90316, 47.47967],
+ [7.90295, 47.48965],
+ [7.8969, 47.4898],
+ [7.8918, 47.49405],
+ [7.89086, 47.49765],
+ [7.8878, 47.49931],
+ [7.88631, 47.5023],
+ [7.87999, 47.50397],
+ [7.87403, 47.50787],
+ [7.86994, 47.50944],
+ [7.87006, 47.51239],
+ [7.86435, 47.51245],
+ [7.85851, 47.51543],
+ [7.8558, 47.51854],
+ [7.85625, 47.52147],
+ [7.8549, 47.52474],
+ [7.85183, 47.5285],
+ [7.84647, 47.52714],
+ [7.84148, 47.52777],
+ [7.8413, 47.52406],
+ [7.84015, 47.51587],
+ [7.83943, 47.51259],
+ [7.83688, 47.51256],
+ [7.83679, 47.51049],
+ [7.83352, 47.50949],
+ [7.83156, 47.50765],
+ [7.82981, 47.50552],
+ [7.82522, 47.50354],
+ [7.82049, 47.5004],
+ [7.81475, 47.49491],
+ [7.81181, 47.49261],
+ [7.80645, 47.4914],
+ [7.80403, 47.49146],
+ [7.80049, 47.49014],
+ [7.77977, 47.49028],
+ [7.77871, 47.49304],
+ [7.7796, 47.496],
+ [7.78386, 47.5004],
+ [7.78203, 47.50368],
+ [7.78088, 47.5073],
+ [7.78109, 47.51018],
+ [7.77977, 47.51265],
+ [7.77969, 47.51529],
+ [7.77045, 47.51802],
+ [7.75905, 47.52003],
+ [7.75266, 47.52009],
+ [7.74781, 47.51957],
+ [7.73368, 47.52291],
+ [7.72781, 47.52719],
+ [7.71985, 47.52978],
+ [7.71262, 47.53095],
+ [7.70764, 47.5344],
+ [7.70551, 47.53917],
+ [7.70696, 47.54279],
+ [7.71415, 47.54627],
+ [7.72245, 47.54756],
+ [7.749, 47.54977],
+ [7.75428, 47.55339],
+ [7.76654, 47.55615],
+ [7.77168, 47.55761],
+ [7.78007, 47.55836],
+ [7.78577, 47.55982],
+ [7.7902, 47.5616],
+ [7.79398, 47.56634],
+ [7.80492, 47.57237],
+ [7.80611, 47.57989],
+ [7.81173, 47.58954],
+ [7.81577, 47.59218],
+ [7.82211, 47.59352],
+ [7.83645, 47.59163],
+ [7.83952, 47.59045],
+ [7.84305, 47.58778],
+ [7.84875, 47.58899],
+ [7.85624, 47.59189],
+ [7.86488, 47.59393],
+ [7.87126, 47.5943],
+ [7.87726, 47.59367],
+ [7.88535, 47.59424],
+ [7.89343, 47.59301],
+ [7.90109, 47.58976],
+ [7.90833, 47.58514],
+ [7.91386, 47.57923],
+ [7.91867, 47.57194],
+ [7.91956, 47.56772],
+ [7.91875, 47.56433],
+ [7.9156, 47.56008],
+ [7.91577, 47.55715],
+ [7.91841, 47.55405],
+ [7.92126, 47.55261],
+ [7.92552, 47.55227],
+ [7.93471, 47.55221],
+ [7.9405, 47.55078],
+ [7.94326, 47.54968],
+ [7.94356, 47.55052],
+ [7.94458, 47.55589],
+ [7.94841, 47.55979],
+ [7.95394, 47.56229],
+ [7.96003, 47.56333],
+ [7.96577, 47.56272],
+ [7.97203, 47.5612],
+ [7.97833, 47.56057],
+ [7.98624, 47.56094],
+ [7.99718, 47.56212],
+ [8.0045, 47.56137],
+ [8.01114, 47.55974],
+ [8.01641, 47.55701],
+ [8.02046, 47.55574],
+ [8.0262, 47.55741],
+ [8.03799, 47.55876],
+ [8.04254, 47.56028],
+ [8.0485, 47.56333],
+ [8.05454, 47.56798],
+ [8.05931, 47.56921],
+ [8.0622, 47.56895],
+ [8.06693, 47.57002],
+ [8.07242, 47.56973],
+ [8.07739, 47.56795],
+ [8.08182, 47.56436],
+ [8.08522, 47.56281],
+ [8.08791, 47.56298],
+ [8.09259, 47.56559],
+ [8.09395, 47.56809],
+ [8.09484, 47.57587],
+ [8.09602, 47.57882]
+ ]
+ ],
+ "terms_text": "AGIS OF2014"
+ },
+ {
+ "id": "Aargau-AGIS-2016",
+ "name": "Kanton Aargau 25cm (AGIS 2016)",
+ "type": "tms",
+ "template": "https://mapproxy.osm.ch/tiles/AGIS2016/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
+ "endDate": "2016-01-01T00:00:00.000Z",
+ "startDate": "2016-01-01T00:00:00.000Z",
+ "scaleExtent": [8, 19],
+ "polygon": [
+ [
+ [7.70438, 47.55794],
+ [7.77076, 47.55772],
+ [7.77103, 47.58025],
+ [7.80408, 47.58017],
+ [7.80433, 47.60248],
+ [7.93713, 47.60217],
+ [7.93703, 47.57962],
+ [8.00374, 47.57917],
+ [8.00338, 47.55687],
+ [8.0364, 47.55665],
+ [8.03681, 47.57928],
+ [8.10313, 47.57881],
+ [8.10387, 47.60112],
+ [8.17011, 47.60086],
+ [8.17036, 47.6235],
+ [8.30311, 47.62235],
+ [8.30305, 47.59988],
+ [8.3362, 47.59927],
+ [8.33585, 47.5771],
+ [8.36913, 47.57694],
+ [8.36943, 47.59931],
+ [8.43564, 47.59877],
+ [8.43454, 47.53133],
+ [8.40144, 47.53162],
+ [8.40096, 47.50926],
+ [8.3678, 47.50959],
+ [8.3675, 47.48698],
+ [8.40042, 47.48666],
+ [8.39939, 47.41929],
+ [8.46558, 47.4187],
+ [8.46515, 47.39647],
+ [8.43206, 47.39654],
+ [8.43125, 47.3516],
+ [8.46434, 47.35128],
+ [8.46327, 47.28387],
+ [8.42997, 47.28421],
+ [8.42714, 47.12676],
+ [8.3293, 47.12753],
+ [8.32937, 47.13007],
+ [8.32833, 47.13007],
+ [8.3285, 47.14529],
+ [8.3294, 47.19502],
+ [8.2964, 47.19526],
+ [8.29714, 47.24022],
+ [8.2641, 47.24046],
+ [8.26446, 47.26297],
+ [8.23141, 47.26316],
+ [8.23075, 47.21822],
+ [8.09886, 47.21912],
+ [8.09874, 47.24135],
+ [8.066, 47.24176],
+ [8.06552, 47.2192],
+ [7.99993, 47.21952],
+ [8.00003, 47.26433],
+ [7.96735, 47.26462],
+ [7.96675, 47.21961],
+ [7.80153, 47.22029],
+ [7.80244, 47.28791],
+ [7.83518, 47.28772],
+ [7.83543, 47.31017],
+ [7.86837, 47.31017],
+ [7.86885, 47.35542],
+ [8.00097, 47.3543],
+ [8.00156, 47.39928],
+ [7.9353, 47.39976],
+ [7.93607, 47.46716],
+ [7.90278, 47.46729],
+ [7.90303, 47.48981],
+ [7.86987, 47.48998],
+ [7.86993, 47.5125],
+ [7.83689, 47.51258],
+ [7.83665, 47.4901],
+ [7.77027, 47.49026],
+ [7.77045, 47.51274],
+ [7.70452, 47.51307],
+ [7.70438, 47.55794]
+ ]
+ ],
+ "terms_text": "AGIS OF2016",
+ "best": true
+ },
+ {
+ "id": "Basel-Landschaft-2015",
+ "name": "Kanton Basel-Landschaft 10cm (2015)",
+ "type": "tms",
+ "template": "https://mapproxy.osm.ch/tiles/KTBASELLANDSCHAFT2015/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
+ "endDate": "2015-01-01T00:00:00.000Z",
+ "startDate": "2015-01-01T00:00:00.000Z",
+ "scaleExtent": [18, 21],
+ "polygon": [
+ [
+ [7.37028, 47.41368],
+ [7.35758, 47.41508],
+ [7.35792, 47.41827],
+ [7.35354, 47.41961],
+ [7.34488, 47.42402],
+ [7.33973, 47.42971],
+ [7.33269, 47.43024],
+ [7.32685, 47.43192],
+ [7.32528, 47.43489],
+ [7.3305, 47.44176],
+ [7.33899, 47.44109],
+ [7.34496, 47.43608],
+ [7.35266, 47.43436],
+ [7.3812, 47.43208],
+ [7.37599, 47.41431],
+ [7.37815, 47.414],
+ [7.38204, 47.41331],
+ [7.38839, 47.41398],
+ [7.41371, 47.41093],
+ [7.42074, 47.4111],
+ [7.42748, 47.41448],
+ [7.43811, 47.41274],
+ [7.4484, 47.41507],
+ [7.45558, 47.42792],
+ [7.45062, 47.43534],
+ [7.43784, 47.44632],
+ [7.42542, 47.44328],
+ [7.4209, 47.44594],
+ [7.42242, 47.45072],
+ [7.4288, 47.45388],
+ [7.43003, 47.45949],
+ [7.44577, 47.46197],
+ [7.44717, 47.45696],
+ [7.45651, 47.44926],
+ [7.49236, 47.45897],
+ [7.53068, 47.46119],
+ [7.52745, 47.47391],
+ [7.53633, 47.48383],
+ [7.53623, 47.49105],
+ [7.5326, 47.49097],
+ [7.53179, 47.4974],
+ [7.52004, 47.49678],
+ [7.51223, 47.49892],
+ [7.50935, 47.50888],
+ [7.49908, 47.51628],
+ [7.49787, 47.52125],
+ [7.50228, 47.51491],
+ [7.51746, 47.51728],
+ [7.5222, 47.51409],
+ [7.53096, 47.52905],
+ [7.51935, 47.53472],
+ [7.51075, 47.52899],
+ [7.5023, 47.5284],
+ [7.49804, 47.53615],
+ [7.50545, 47.54438],
+ [7.51676, 47.54541],
+ [7.52732, 47.55278],
+ [7.55466, 47.56437],
+ [7.56458, 47.55704],
+ [7.56124, 47.55172],
+ [7.55875, 47.55235],
+ [7.55588, 47.54434],
+ [7.56479, 47.54569],
+ [7.58726, 47.5419],
+ [7.58269, 47.53247],
+ [7.58948, 47.52792],
+ [7.59025, 47.51979],
+ [7.59478, 47.51929],
+ [7.61378, 47.53925],
+ [7.6223, 47.53977],
+ [7.62285, 47.55004],
+ [7.61774, 47.55437],
+ [7.61762, 47.55865],
+ [7.63273, 47.56149],
+ [7.63997, 47.55816],
+ [7.649, 47.5483],
+ [7.66131, 47.54483],
+ [7.66586, 47.53746],
+ [7.67467, 47.53375],
+ [7.69494, 47.5325],
+ [7.71347, 47.53978],
+ [7.71596, 47.53582],
+ [7.72362, 47.53675],
+ [7.72716, 47.53293],
+ [7.73322, 47.53275],
+ [7.73797, 47.52732],
+ [7.74902, 47.52498],
+ [7.75786, 47.52605],
+ [7.78763, 47.52012],
+ [7.79014, 47.51864],
+ [7.78887, 47.50683],
+ [7.7928, 47.50068],
+ [7.78663, 47.49312],
+ [7.79889, 47.49565],
+ [7.79816, 47.4994],
+ [7.7994, 47.49748],
+ [7.80742, 47.49714],
+ [7.81471, 47.5048],
+ [7.83198, 47.51474],
+ [7.83321, 47.53382],
+ [7.84653, 47.53266],
+ [7.85233, 47.53524],
+ [7.86257, 47.52692],
+ [7.86396, 47.51931],
+ [7.87666, 47.52269],
+ [7.87567, 47.51319],
+ [7.89399, 47.50606],
+ [7.90477, 47.49218],
+ [7.90482, 47.48491],
+ [7.93329, 47.48141],
+ [7.94702, 47.48489],
+ [7.94003, 47.46202],
+ [7.94885, 47.46378],
+ [7.95761, 47.45881],
+ [7.95785, 47.45128],
+ [7.94678, 47.44319],
+ [7.95003, 47.43172],
+ [7.96183, 47.42183],
+ [7.95657, 47.41968],
+ [7.95504, 47.41561],
+ [7.94839, 47.41627],
+ [7.93493, 47.41177],
+ [7.93672, 47.40806],
+ [7.93266, 47.40527],
+ [7.90974, 47.39852],
+ [7.89022, 47.40714],
+ [7.88333, 47.4061],
+ [7.88344, 47.4012],
+ [7.8777, 47.40126],
+ [7.86914, 47.39551],
+ [7.87943, 47.38799],
+ [7.87881, 47.38351],
+ [7.86265, 47.38198],
+ [7.84012, 47.37476],
+ [7.83055, 47.36512],
+ [7.80217, 47.3611],
+ [7.79637, 47.35347],
+ [7.79356, 47.33905],
+ [7.78529, 47.33788],
+ [7.76896, 47.33891],
+ [7.76642, 47.34273],
+ [7.75152, 47.34433],
+ [7.73415, 47.35776],
+ [7.72791, 47.36886],
+ [7.70195, 47.37245],
+ [7.6442, 47.36721],
+ [7.64176, 47.38047],
+ [7.63558, 47.38059],
+ [7.63332, 47.38291],
+ [7.63331, 47.38534],
+ [7.63725, 47.38607],
+ [7.63272, 47.41003],
+ [7.66405, 47.41002],
+ [7.6798, 47.41751],
+ [7.68658, 47.43366],
+ [7.68297, 47.43872],
+ [7.68485, 47.44784],
+ [7.69227, 47.45421],
+ [7.69883, 47.45586],
+ [7.69993, 47.46191],
+ [7.70988, 47.46938],
+ [7.69976, 47.48063],
+ [7.66833, 47.48635],
+ [7.66612, 47.49687],
+ [7.65217, 47.49581],
+ [7.64865, 47.49183],
+ [7.65539, 47.49021],
+ [7.65051, 47.48826],
+ [7.65593, 47.48739],
+ [7.64442, 47.48564],
+ [7.64097, 47.48273],
+ [7.6073, 47.4894],
+ [7.60885, 47.48353],
+ [7.60563, 47.47936],
+ [7.60815, 47.47521],
+ [7.60449, 47.47045],
+ [7.61887, 47.46745],
+ [7.62607, 47.46291],
+ [7.62217, 47.46195],
+ [7.61646, 47.44523],
+ [7.6158, 47.43275],
+ [7.59207, 47.43271],
+ [7.58121, 47.42878],
+ [7.57842, 47.43491],
+ [7.5689, 47.4369],
+ [7.5683, 47.42233],
+ [7.58074, 47.4147],
+ [7.52524, 47.41163],
+ [7.53117, 47.40353],
+ [7.51862, 47.38822],
+ [7.5113, 47.38974],
+ [7.50226, 47.38481],
+ [7.49233, 47.38523],
+ [7.47841, 47.39056],
+ [7.47747, 47.40128],
+ [7.46448, 47.40251],
+ [7.46092, 47.40068],
+ [7.45002, 47.40393],
+ [7.44951, 47.39976],
+ [7.4434, 47.40231],
+ [7.44131, 47.40018],
+ [7.44357, 47.3889],
+ [7.43732, 47.38089],
+ [7.41169, 47.38057],
+ [7.41628, 47.38479],
+ [7.41449, 47.3943],
+ [7.39894, 47.39684],
+ [7.39592, 47.40338],
+ [7.38869, 47.40302],
+ [7.38405, 47.41236],
+ [7.37968, 47.41281],
+ [7.37584, 47.41401],
+ [7.37028, 47.41368]
+ ]
+ ],
+ "terms_url": "https://www.geo.bl.ch/fileadmin/user_upload/Geodaten/Nutzungsbedingungen_GBD_BL_V3p2.pdf",
+ "terms_text": "Geodaten des Kantons Basel-Landschaft 2015",
+ "best": true
+ },
+ {
+ "id": "KTBASELSTADT2015",
+ "name": "Kanton Basel-Stadt 2015",
+ "type": "tms",
+ "template": "https://mapproxy.osm.ch/tiles/KTBASELSTADT2015/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
+ "endDate": "2015-01-01T00:00:00.000Z",
+ "startDate": "2015-01-01T00:00:00.000Z",
+ "scaleExtent": [8, 21],
+ "polygon": [
+ [
+ [7.492, 47.4817],
+ [7.492, 47.6342],
+ [7.784, 47.6342],
+ [7.784, 47.4817],
+ [7.492, 47.4817]
+ ]
+ ],
+ "terms_text": "Kanton Basel-Stadt OF 2015"
+ },
+ {
+ "id": "KTBASELSTADT2017",
+ "name": "Kanton Basel-Stadt 2017",
+ "type": "tms",
+ "template": "https://mapproxy.osm.ch/tiles/KTBASELSTADT2017/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
+ "endDate": "2017-01-01T00:00:00.000Z",
+ "startDate": "2017-01-01T00:00:00.000Z",
+ "scaleExtent": [8, 21],
+ "polygon": [
+ [
+ [7.67138, 47.59522],
+ [7.67996, 47.60078],
+ [7.68451, 47.60182],
+ [7.69438, 47.60171],
+ [7.69395, 47.59667],
+ [7.68708, 47.59355],
+ [7.67884, 47.58712],
+ [7.68571, 47.58538],
+ [7.68906, 47.57612],
+ [7.69412, 47.5734],
+ [7.6924, 47.56691],
+ [7.6847, 47.5617],
+ [7.66425, 47.56164],
+ [7.64872, 47.55689],
+ [7.63035, 47.55869],
+ [7.62357, 47.55666],
+ [7.62786, 47.55145],
+ [7.62738, 47.53658],
+ [7.61833, 47.53662],
+ [7.61335, 47.53262],
+ [7.59962, 47.51911],
+ [7.58503, 47.51917],
+ [7.58409, 47.52636],
+ [7.57713, 47.53163],
+ [7.58125, 47.53986],
+ [7.5719, 47.54148],
+ [7.55387, 47.54148],
+ [7.55379, 47.55122],
+ [7.55653, 47.55828],
+ [7.5537, 47.56031],
+ [7.55379, 47.57473],
+ [7.56434, 47.58122],
+ [7.57936, 47.57988],
+ [7.58331, 47.59019],
+ [7.58563, 47.59233],
+ [7.59207, 47.59239],
+ [7.59851, 47.59071],
+ [7.60915, 47.58643],
+ [7.60923, 47.5811],
+ [7.6191, 47.58046],
+ [7.63687, 47.59314],
+ [7.63782, 47.59557],
+ [7.64168, 47.59887],
+ [7.64528, 47.60026],
+ [7.66494, 47.59618],
+ [7.67138, 47.59522]
+ ]
+ ],
+ "terms_text": "Kanton Basel-Stadt OF 2017",
+ "best": true
+ },
+ {
+ "id": "Solothurn-sogis2014-tms",
+ "name": "Kanton Solothurn (SOGIS)",
+ "type": "tms",
+ "template": "https://mapproxy.osm.ch/tiles/sogis2014/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
+ "endDate": "2017-01-01T00:00:00.000Z",
+ "startDate": "2015-01-01T00:00:00.000Z",
+ "scaleExtent": [15, 19],
+ "polygon": [
+ [
+ [7.95595, 47.47162],
+ [7.98239, 47.47155],
+ [7.98239, 47.45353],
+ [7.99553, 47.45353],
+ [7.99521, 47.41747],
+ [8.0218, 47.41743],
+ [8.02155, 47.39935],
+ [8.03456, 47.39926],
+ [8.03468, 47.39028],
+ [8.04788, 47.39022],
+ [8.04769, 47.37224],
+ [8.03456, 47.37232],
+ [8.03437, 47.3544],
+ [8.02117, 47.35427],
+ [8.02072, 47.32739],
+ [7.99445, 47.32747],
+ [7.99426, 47.31857],
+ [7.96773, 47.31866],
+ [7.96767, 47.30966],
+ [7.94122, 47.30978],
+ [7.94133, 47.32778],
+ [7.91486, 47.32786],
+ [7.91467, 47.30988],
+ [7.9016, 47.31005],
+ [7.9014, 47.30097],
+ [7.87501, 47.3011],
+ [7.87501, 47.29223],
+ [7.86165, 47.29212],
+ [7.86154, 47.27409],
+ [7.84832, 47.27416],
+ [7.8483, 47.26523],
+ [7.83502, 47.2652],
+ [7.83502, 47.25624],
+ [7.79535, 47.25636],
+ [7.7953, 47.24741],
+ [7.72924, 47.24756],
+ [7.72929, 47.25652],
+ [7.71623, 47.25667],
+ [7.71618, 47.26559],
+ [7.70304, 47.26559],
+ [7.70304, 47.27461],
+ [7.68975, 47.27467],
+ [7.68989, 47.28368],
+ [7.66341, 47.28371],
+ [7.66332, 47.2747],
+ [7.61055, 47.27476],
+ [7.61041, 47.24787],
+ [7.62352, 47.24777],
+ [7.62356, 47.23879],
+ [7.64986, 47.23876],
+ [7.64999, 47.22977],
+ [7.6499, 47.22083],
+ [7.66308, 47.22073],
+ [7.6631, 47.21178],
+ [7.66297, 47.20273],
+ [7.67617, 47.2027],
+ [7.67623, 47.19372],
+ [7.68938, 47.19369],
+ [7.68924, 47.17572],
+ [7.70243, 47.1756],
+ [7.70234, 47.14869],
+ [7.66267, 47.14881],
+ [7.66281, 47.13978],
+ [7.63633, 47.1399],
+ [7.63647, 47.14869],
+ [7.5968, 47.14893],
+ [7.59684, 47.13996],
+ [7.57041, 47.13999],
+ [7.57042, 47.15792],
+ [7.55736, 47.15795],
+ [7.55732, 47.14888],
+ [7.54421, 47.14895],
+ [7.54417, 47.13991],
+ [7.53098, 47.13991],
+ [7.53095, 47.13097],
+ [7.51767, 47.13097],
+ [7.51765, 47.12196],
+ [7.51769, 47.11292],
+ [7.49131, 47.11301],
+ [7.49135, 47.10403],
+ [7.4782, 47.104],
+ [7.47813, 47.07705],
+ [7.46493, 47.07708],
+ [7.46498, 47.06807],
+ [7.42552, 47.06801],
+ [7.42543, 47.08601],
+ [7.37279, 47.08598],
+ [7.37288, 47.10403],
+ [7.3596, 47.10403],
+ [7.35955, 47.131],
+ [7.41228, 47.131],
+ [7.41223, 47.14901],
+ [7.42538, 47.14901],
+ [7.42552, 47.15801],
+ [7.3727, 47.15796],
+ [7.3727, 47.18498],
+ [7.34627, 47.18492],
+ [7.34636, 47.20287],
+ [7.33307, 47.2029],
+ [7.33307, 47.22096],
+ [7.34614, 47.22096],
+ [7.34614, 47.22991],
+ [7.37256, 47.22991],
+ [7.3727, 47.2389],
+ [7.399, 47.23896],
+ [7.39913, 47.24792],
+ [7.41228, 47.24792],
+ [7.41228, 47.26592],
+ [7.45186, 47.26589],
+ [7.45195, 47.2749],
+ [7.46505, 47.27493],
+ [7.4651, 47.28385],
+ [7.47829, 47.28385],
+ [7.47834, 47.29293],
+ [7.5046, 47.29288],
+ [7.50473, 47.30183],
+ [7.5312, 47.30181],
+ [7.53129, 47.31979],
+ [7.54448, 47.31985],
+ [7.54453, 47.3288],
+ [7.55768, 47.32883],
+ [7.55768, 47.33786],
+ [7.53125, 47.33786],
+ [7.53133, 47.35586],
+ [7.51801, 47.35583],
+ [7.5181, 47.36483],
+ [7.3988, 47.36484],
+ [7.39889, 47.39182],
+ [7.38564, 47.39181],
+ [7.38564, 47.4008],
+ [7.37234, 47.4008],
+ [7.37234, 47.40978],
+ [7.34584, 47.40978],
+ [7.34584, 47.41878],
+ [7.31925, 47.41878],
+ [7.31925, 47.44578],
+ [7.4121, 47.44578],
+ [7.4121, 47.49078],
+ [7.42535, 47.49078],
+ [7.42535, 47.49981],
+ [7.43856, 47.49981],
+ [7.43856, 47.50876],
+ [7.49177, 47.50876],
+ [7.49178, 47.63468],
+ [7.7845, 47.63428],
+ [7.78415, 47.57123],
+ [7.81074, 47.57114],
+ [7.81074, 47.56216],
+ [7.82395, 47.56206],
+ [7.82387, 47.54414],
+ [7.86368, 47.54397],
+ [7.86363, 47.53498],
+ [7.87679, 47.53495],
+ [7.87675, 47.52599],
+ [7.8901, 47.52596],
+ [7.89006, 47.51695],
+ [7.90319, 47.51692],
+ [7.9031, 47.49886],
+ [7.91649, 47.49883],
+ [7.91645, 47.48976],
+ [7.95612, 47.48967],
+ [7.95595, 47.47162]
+ ]
+ ],
+ "terms_text": "Orthofoto WMS Solothurn",
+ "best": true,
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQBAMAAADt3eJSAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAIVBMVEX///+LKCbMAABycnL+/v7v7+9sbGz39/fz8/Pw8PD8/Pz60siYAAAAAWJLR0QAiAUdSAAAAAd0SU1FB+AIGAsXN84mS+sAAAA4SURBVAjXY2AUBAMBBkYlMCCXwcwABgZYGCwGIJo5AMQGAjYgLgYxLICY05iBwRisjsvY2IGBAQAGpQmjMKkg/wAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAxNi0wOC0yNFQxMToyMzo1NS0wNDowMLEFqzIAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMTYtMDgtMjRUMTE6MjM6NTUtMDQ6MDDAWBOOAAAAAElFTkSuQmCC"
+ },
+ {
+ "id": "Solothurn-infrared-SOGIS",
+ "name": "Kanton Solothurn Infrarot (SOGIS)",
+ "type": "wms",
+ "template": "https://geoweb.so.ch/wms/sogis_orthofoto.wms?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Orthofoto_CIR_SO&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:4326",
+ "endDate": "2017-01-01T00:00:00.000Z",
+ "startDate": "2015-01-01T00:00:00.000Z",
+ "scaleExtent": [15, 19],
+ "polygon": [
+ [
+ [7.57042, 47.15792],
+ [7.55736, 47.15795],
+ [7.55732, 47.14888],
+ [7.54421, 47.14895],
+ [7.54417, 47.13991],
+ [7.53098, 47.13991],
+ [7.53093, 47.12196],
+ [7.51765, 47.12196],
+ [7.51769, 47.11292],
+ [7.49131, 47.11301],
+ [7.49135, 47.10403],
+ [7.4782, 47.104],
+ [7.47816, 47.09496],
+ [7.49144, 47.09499],
+ [7.4914, 47.07702],
+ [7.47816, 47.07705],
+ [7.4782, 47.06804],
+ [7.42552, 47.06801],
+ [7.42543, 47.08601],
+ [7.37279, 47.08598],
+ [7.37288, 47.10403],
+ [7.3596, 47.10403],
+ [7.35955, 47.131],
+ [7.41228, 47.131],
+ [7.41223, 47.14901],
+ [7.42538, 47.14901],
+ [7.42552, 47.15801],
+ [7.39913, 47.15804],
+ [7.39913, 47.14901],
+ [7.3727, 47.14898],
+ [7.3727, 47.18498],
+ [7.34627, 47.18492],
+ [7.34636, 47.19391],
+ [7.33307, 47.19394],
+ [7.33307, 47.22991],
+ [7.37256, 47.22991],
+ [7.3727, 47.2389],
+ [7.399, 47.23896],
+ [7.39913, 47.24792],
+ [7.41228, 47.24792],
+ [7.41228, 47.26592],
+ [7.45186, 47.26589],
+ [7.45195, 47.2749],
+ [7.46505, 47.27493],
+ [7.4651, 47.28385],
+ [7.47829, 47.28385],
+ [7.47834, 47.29293],
+ [7.49149, 47.29289],
+ [7.49162, 47.30184],
+ [7.5312, 47.30181],
+ [7.53129, 47.31979],
+ [7.54448, 47.31985],
+ [7.54453, 47.3288],
+ [7.55768, 47.32883],
+ [7.55768, 47.33786],
+ [7.53125, 47.33786],
+ [7.53133, 47.35586],
+ [7.51801, 47.35583],
+ [7.5181, 47.36483],
+ [7.43862, 47.36492],
+ [7.43867, 47.37389],
+ [7.42538, 47.37395],
+ [7.42543, 47.40081],
+ [7.38558, 47.4009],
+ [7.38567, 47.4098],
+ [7.35915, 47.4098],
+ [7.35915, 47.41878],
+ [7.37239, 47.41884],
+ [7.37247, 47.43682],
+ [7.38571, 47.43682],
+ [7.38571, 47.44104],
+ [7.39563, 47.44016],
+ [7.3963, 47.44258],
+ [7.40761, 47.4411],
+ [7.40793, 47.44225],
+ [7.40313, 47.44246],
+ [7.39738, 47.44331],
+ [7.39832, 47.44583],
+ [7.41214, 47.44583],
+ [7.41228, 47.45478],
+ [7.43867, 47.45488],
+ [7.4388, 47.47053],
+ [7.45007, 47.46941],
+ [7.45007, 47.47223],
+ [7.44647, 47.47223],
+ [7.44647, 47.47381],
+ [7.44293, 47.4739],
+ [7.44288, 47.47553],
+ [7.43921, 47.4756],
+ [7.43921, 47.4772],
+ [7.43557, 47.47729],
+ [7.43548, 47.47899],
+ [7.4174, 47.47896],
+ [7.41744, 47.48573],
+ [7.42099, 47.48573],
+ [7.42108, 47.49082],
+ [7.42763, 47.49073],
+ [7.42852, 47.49349],
+ [7.43099, 47.49643],
+ [7.43485, 47.49889],
+ [7.4419, 47.49552],
+ [7.44665, 47.49455],
+ [7.45011, 47.49176],
+ [7.45087, 47.4907],
+ [7.46451, 47.49073],
+ [7.46456, 47.48903],
+ [7.46819, 47.489],
+ [7.46819, 47.48566],
+ [7.47187, 47.48573],
+ [7.47192, 47.48233],
+ [7.48269, 47.48239],
+ [7.48264, 47.48388],
+ [7.48623, 47.48397],
+ [7.48637, 47.48566],
+ [7.48991, 47.48566],
+ [7.49, 47.4907],
+ [7.4997, 47.49073],
+ [7.49965, 47.4914],
+ [7.49175, 47.49194],
+ [7.49175, 47.49513],
+ [7.49822, 47.49479],
+ [7.49889, 47.49585],
+ [7.49566, 47.49628],
+ [7.49171, 47.49625],
+ [7.4918, 47.49973],
+ [7.50504, 47.4997],
+ [7.50504, 47.50874],
+ [7.5448, 47.50871],
+ [7.54474, 47.45482],
+ [7.49169, 47.45469],
+ [7.49175, 47.44581],
+ [7.46529, 47.44577],
+ [7.46522, 47.40983],
+ [7.49156, 47.40979],
+ [7.49175, 47.39192],
+ [7.50489, 47.39183],
+ [7.50489, 47.40068],
+ [7.51821, 47.40077],
+ [7.51834, 47.41876],
+ [7.55794, 47.41872],
+ [7.55813, 47.44581],
+ [7.58453, 47.44572],
+ [7.58441, 47.43667],
+ [7.61094, 47.43662],
+ [7.611, 47.4637],
+ [7.59767, 47.4637],
+ [7.59793, 47.49964],
+ [7.62433, 47.49969],
+ [7.62445, 47.4906],
+ [7.63778, 47.49055],
+ [7.63784, 47.4996],
+ [7.67757, 47.49947],
+ [7.67745, 47.49047],
+ [7.70385, 47.49043],
+ [7.70391, 47.48146],
+ [7.71711, 47.48129],
+ [7.71711, 47.45452],
+ [7.70397, 47.45452],
+ [7.70385, 47.44559],
+ [7.69046, 47.44551],
+ [7.69033, 47.40957],
+ [7.67713, 47.40949],
+ [7.67713, 47.40068],
+ [7.65066, 47.40068],
+ [7.65047, 47.37365],
+ [7.67706, 47.37357],
+ [7.67706, 47.38251],
+ [7.71667, 47.38251],
+ [7.71679, 47.37344],
+ [7.74307, 47.3734],
+ [7.74307, 47.35538],
+ [7.7562, 47.35534],
+ [7.75633, 47.3464],
+ [7.78261, 47.34627],
+ [7.78292, 47.36433],
+ [7.79612, 47.36428],
+ [7.79619, 47.37327],
+ [7.82265, 47.37314],
+ [7.82271, 47.38229],
+ [7.84912, 47.38212],
+ [7.84924, 47.39106],
+ [7.86251, 47.39097],
+ [7.86263, 47.40906],
+ [7.8759, 47.40897],
+ [7.87602, 47.41803],
+ [7.90242, 47.41795],
+ [7.90242, 47.40897],
+ [7.92889, 47.4088],
+ [7.92914, 47.41782],
+ [7.94215, 47.41769],
+ [7.94266, 47.46276],
+ [7.95592, 47.46259],
+ [7.95612, 47.47164],
+ [7.98239, 47.47155],
+ [7.98239, 47.45353],
+ [7.99553, 47.45353],
+ [7.99521, 47.41747],
+ [8.0218, 47.41743],
+ [8.02155, 47.39935],
+ [8.03456, 47.39926],
+ [8.03468, 47.39028],
+ [8.04788, 47.39015],
+ [8.04769, 47.37224],
+ [8.03456, 47.37232],
+ [8.03437, 47.3544],
+ [8.02117, 47.35427],
+ [8.02072, 47.32739],
+ [7.99445, 47.32747],
+ [7.99426, 47.31857],
+ [7.96773, 47.31866],
+ [7.96767, 47.30966],
+ [7.9412, 47.30992],
+ [7.94133, 47.32778],
+ [7.91486, 47.32786],
+ [7.91467, 47.30988],
+ [7.9016, 47.31005],
+ [7.9014, 47.30097],
+ [7.87501, 47.3011],
+ [7.87501, 47.29223],
+ [7.86165, 47.29212],
+ [7.86154, 47.27409],
+ [7.84843, 47.27415],
+ [7.8483, 47.26523],
+ [7.83502, 47.2652],
+ [7.83502, 47.25624],
+ [7.79535, 47.25636],
+ [7.7953, 47.24741],
+ [7.72924, 47.24756],
+ [7.72929, 47.25652],
+ [7.71623, 47.25667],
+ [7.71618, 47.26559],
+ [7.70304, 47.26559],
+ [7.70304, 47.27461],
+ [7.68975, 47.27467],
+ [7.68989, 47.28368],
+ [7.66341, 47.28371],
+ [7.66332, 47.2747],
+ [7.61055, 47.27476],
+ [7.61041, 47.24787],
+ [7.62352, 47.24765],
+ [7.62356, 47.23879],
+ [7.64986, 47.23876],
+ [7.64999, 47.22977],
+ [7.66305, 47.22971],
+ [7.6631, 47.21178],
+ [7.67621, 47.21169],
+ [7.67623, 47.19372],
+ [7.68938, 47.19369],
+ [7.68924, 47.17572],
+ [7.70243, 47.1756],
+ [7.70248, 47.16663],
+ [7.71567, 47.16663],
+ [7.71558, 47.15769],
+ [7.70239, 47.15766],
+ [7.70234, 47.14869],
+ [7.66267, 47.14881],
+ [7.66281, 47.13978],
+ [7.63633, 47.1399],
+ [7.63647, 47.14869],
+ [7.5968, 47.14893],
+ [7.59684, 47.13996],
+ [7.57041, 47.13999],
+ [7.57042, 47.15792]
+ ]
+ ],
+ "terms_text": "Orthofoto WMS Solothurn",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQBAMAAADt3eJSAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAIVBMVEX///+LKCbMAABycnL+/v7v7+9sbGz39/fz8/Pw8PD8/Pz60siYAAAAAWJLR0QAiAUdSAAAAAd0SU1FB+AIGAsXN84mS+sAAAA4SURBVAjXY2AUBAMBBkYlMCCXwcwABgZYGCwGIJo5AMQGAjYgLgYxLICY05iBwRisjsvY2IGBAQAGpQmjMKkg/wAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAxNi0wOC0yNFQxMToyMzo1NS0wNDowMLEFqzIAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMTYtMDgtMjRUMTE6MjM6NTUtMDQ6MDDAWBOOAAAAAElFTkSuQmCC"
+ },
+ {
+ "id": "KTTHURGAU2017",
+ "name": "Kanton Thurgau OF 2017",
+ "type": "tms",
+ "template": "https://mapproxy.osm.ch/tiles/KTTHURGAU2017/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
+ "scaleExtent": [8, 21],
+ "polygon": [
+ [
+ [8.63768, 47.70041],
+ [8.78328, 47.6988],
+ [8.78304, 47.68533],
+ [8.87027, 47.68427],
+ [8.86997, 47.6709],
+ [8.89901, 47.67047],
+ [8.89867, 47.65698],
+ [8.9277, 47.65661],
+ [8.92828, 47.67015],
+ [8.95726, 47.66973],
+ [8.95774, 47.68327],
+ [9.19061, 47.67994],
+ [9.19027, 47.66645],
+ [9.21922, 47.66603],
+ [9.21899, 47.65256],
+ [9.24784, 47.6521],
+ [9.24747, 47.63864],
+ [9.3057, 47.63765],
+ [9.30526, 47.6242],
+ [9.33417, 47.62371],
+ [9.33348, 47.59674],
+ [9.39151, 47.59577],
+ [9.39114, 47.58235],
+ [9.42007, 47.58176],
+ [9.4186, 47.54139],
+ [9.44754, 47.54084],
+ [9.44717, 47.5273],
+ [9.47605, 47.52681],
+ [9.47519, 47.49986],
+ [9.50414, 47.49935],
+ [9.5031, 47.47242],
+ [9.41596, 47.47392],
+ [9.41554, 47.46045],
+ [9.3576, 47.46141],
+ [9.35818, 47.47498],
+ [9.32896, 47.47534],
+ [9.32864, 47.46188],
+ [9.18361, 47.4642],
+ [9.18411, 47.47769],
+ [9.15492, 47.4781],
+ [9.15466, 47.46463],
+ [9.06736, 47.46583],
+ [9.06718, 47.45234],
+ [9.09609, 47.45193],
+ [9.09582, 47.43853],
+ [9.06663, 47.43883],
+ [9.06642, 47.42537],
+ [9.00829, 47.4262],
+ [9.00714, 47.38573],
+ [8.97811, 47.38616],
+ [8.9774, 47.35913],
+ [8.9194, 47.35989],
+ [8.92032, 47.38697],
+ [8.89136, 47.38725],
+ [8.89286, 47.44117],
+ [8.86398, 47.44149],
+ [8.86604, 47.52251],
+ [8.80784, 47.52317],
+ [8.80894, 47.56373],
+ [8.77985, 47.56403],
+ [8.78024, 47.57751],
+ [8.72209, 47.57814],
+ [8.72337, 47.63213],
+ [8.6652, 47.63273],
+ [8.6658, 47.6598],
+ [8.63674, 47.66],
+ [8.63768, 47.70041]
+ ]
+ ],
+ "terms_text": "Kanton Thurgau OF 2017",
+ "best": true
+ },
+ {
+ "id": "KTZUERICH2015",
+ "name": "Kanton Zürich 2015 10cm",
+ "type": "tms",
+ "template": "https://mapproxy.osm.ch/tiles/KTZUERICH2015/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
+ "endDate": "2015-01-01T00:00:00.000Z",
+ "startDate": "2014-01-01T00:00:00.000Z",
+ "scaleExtent": [8, 21],
+ "polygon": [
+ [
+ [8.71338, 47.21388],
+ [8.7137, 47.22737],
+ [8.8117, 47.22626],
+ [8.80337, 47.23858],
+ [8.80866, 47.2431],
+ [8.82448, 47.24656],
+ [8.82971, 47.24539],
+ [8.83652, 47.24257],
+ [8.84568, 47.24253],
+ [8.84837, 47.24322],
+ [8.85232, 47.24034],
+ [8.86206, 47.23882],
+ [8.86472, 47.23966],
+ [8.86863, 47.23968],
+ [8.87339, 47.24125],
+ [8.87882, 47.24476],
+ [8.88054, 47.24791],
+ [8.89878, 47.24976],
+ [8.90281, 47.25094],
+ [8.91025, 47.25003],
+ [8.92735, 47.25406],
+ [8.93644, 47.25499],
+ [8.94233, 47.25849],
+ [8.94423, 47.26173],
+ [8.94882, 47.26536],
+ [8.95094, 47.2686],
+ [8.95068, 47.27108],
+ [8.953, 47.27285],
+ [8.95411, 47.27505],
+ [8.95504, 47.28251],
+ [8.95171, 47.28527],
+ [8.94664, 47.28647],
+ [8.95258, 47.28844],
+ [8.95454, 47.28982],
+ [8.96141, 47.30098],
+ [8.97552, 47.30245],
+ [8.98006, 47.30416],
+ [8.99153, 47.31893],
+ [8.99069, 47.32183],
+ [8.98637, 47.32542],
+ [8.98548, 47.32778],
+ [8.98364, 47.32931],
+ [8.98592, 47.33815],
+ [8.98464, 47.34061],
+ [8.98079, 47.34237],
+ [8.98088, 47.34835],
+ [8.97785, 47.35437],
+ [8.9759, 47.35606],
+ [8.97002, 47.35843],
+ [8.96572, 47.3589],
+ [8.96238, 47.36252],
+ [8.95665, 47.37432],
+ [8.9521, 47.37836],
+ [8.94778, 47.37971],
+ [8.95023, 47.38346],
+ [8.95018, 47.38596],
+ [8.9488, 47.38836],
+ [8.9397, 47.39403],
+ [8.93637, 47.39496],
+ [8.93251, 47.39871],
+ [8.92801, 47.40148],
+ [8.92278, 47.4038],
+ [8.91388, 47.40569],
+ [8.91924, 47.41213],
+ [8.92049, 47.41915],
+ [8.91829, 47.42323],
+ [8.92094, 47.42544],
+ [8.92107, 47.42828],
+ [8.92571, 47.42695],
+ [8.93437, 47.42796],
+ [8.93877, 47.43173],
+ [8.93974, 47.43411],
+ [8.93889, 47.43725],
+ [8.93511, 47.43973],
+ [8.92349, 47.43953],
+ [8.91973, 47.44081],
+ [8.91322, 47.44119],
+ [8.91162, 47.44347],
+ [8.91527, 47.44628],
+ [8.91499, 47.45004],
+ [8.91196, 47.45378],
+ [8.90517, 47.45791],
+ [8.90183, 47.46435],
+ [8.89735, 47.46898],
+ [8.89581, 47.47219],
+ [8.89135, 47.4738],
+ [8.89143, 47.47821],
+ [8.90142, 47.48133],
+ [8.90428, 47.48449],
+ [8.90314, 47.48928],
+ [8.90001, 47.49187],
+ [8.89967, 47.49885],
+ [8.90357, 47.50404],
+ [8.90413, 47.50745],
+ [8.90322, 47.51948],
+ [8.90497, 47.52447],
+ [8.90365, 47.52691],
+ [8.89982, 47.52965],
+ [8.88423, 47.53392],
+ [8.87883, 47.53277],
+ [8.87061, 47.53477],
+ [8.8602, 47.53488],
+ [8.85674, 47.53594],
+ [8.84782, 47.5358],
+ [8.84614, 47.54087],
+ [8.8403, 47.54654],
+ [8.83728, 47.55278],
+ [8.84275, 47.5537],
+ [8.84648, 47.5562],
+ [8.85269, 47.55645],
+ [8.8562, 47.55792],
+ [8.85775, 47.56141],
+ [8.85728, 47.56489],
+ [8.85511, 47.56721],
+ [8.85079, 47.56818],
+ [8.84763, 47.57023],
+ [8.84538, 47.57061],
+ [8.8448, 47.57309],
+ [8.84211, 47.57513],
+ [8.83326, 47.57769],
+ [8.82962, 47.57778],
+ [8.82661, 47.57662],
+ [8.82137, 47.57756],
+ [8.81432, 47.57598],
+ [8.81234, 47.5778],
+ [8.81222, 47.58473],
+ [8.81067, 47.58639],
+ [8.80812, 47.58738],
+ [8.76818, 47.59674],
+ [8.7543, 47.59729],
+ [8.75529, 47.60108],
+ [8.75416, 47.60273],
+ [8.74883, 47.60588],
+ [8.74829, 47.60874],
+ [8.7507, 47.60981],
+ [8.75255, 47.61292],
+ [8.75575, 47.61217],
+ [8.76102, 47.61335],
+ [8.78169, 47.60634],
+ [8.78165, 47.60345],
+ [8.78467, 47.59993],
+ [8.80168, 47.5966],
+ [8.80512, 47.59686],
+ [8.80895, 47.59938],
+ [8.81074, 47.60981],
+ [8.81866, 47.61372],
+ [8.82001, 47.61526],
+ [8.82089, 47.62058],
+ [8.82015, 47.62415],
+ [8.82415, 47.6256],
+ [8.83079, 47.63206],
+ [8.83448, 47.64099],
+ [8.83182, 47.64945],
+ [8.82695, 47.65206],
+ [8.81168, 47.65599],
+ [8.81112, 47.6621],
+ [8.81192, 47.66454],
+ [8.81041, 47.66752],
+ [8.80881, 47.66857],
+ [8.80293, 47.66978],
+ [8.79299, 47.66919],
+ [8.78685, 47.66978],
+ [8.78453, 47.66899],
+ [8.78216, 47.66659],
+ [8.77921, 47.65695],
+ [8.77763, 47.65563],
+ [8.77398, 47.65435],
+ [8.76623, 47.65438],
+ [8.76108, 47.65257],
+ [8.75852, 47.65033],
+ [8.75464, 47.64883],
+ [8.7534, 47.64733],
+ [8.74839, 47.64613],
+ [8.74329, 47.64749],
+ [8.73882, 47.64651],
+ [8.72376, 47.64753],
+ [8.72063, 47.64664],
+ [8.71492, 47.64885],
+ [8.70826, 47.64764],
+ [8.70481, 47.65039],
+ [8.70053, 47.65199],
+ [8.69427, 47.65307],
+ [8.69242, 47.65581],
+ [8.68632, 47.66094],
+ [8.68485, 47.66413],
+ [8.68574, 47.66799],
+ [8.68326, 47.67315],
+ [8.68056, 47.67561],
+ [8.67521, 47.6776],
+ [8.67642, 47.68177],
+ [8.67561, 47.68661],
+ [8.67427, 47.68799],
+ [8.67227, 47.68891],
+ [8.66273, 47.69029],
+ [8.64644, 47.69847],
+ [8.63968, 47.69877],
+ [8.6355, 47.69743],
+ [8.62162, 47.69554],
+ [8.61818, 47.69279],
+ [8.61744, 47.69087],
+ [8.62007, 47.68134],
+ [8.61478, 47.68308],
+ [8.60917, 47.68188],
+ [8.60199, 47.67451],
+ [8.59954, 47.66923],
+ [8.60275, 47.66132],
+ [8.60979, 47.6568],
+ [8.6141, 47.6564],
+ [8.61574, 47.65557],
+ [8.62231, 47.65104],
+ [8.62227, 47.65024],
+ [8.62048, 47.64758],
+ [8.61939, 47.65043],
+ [8.61521, 47.65452],
+ [8.6093, 47.65677],
+ [8.60324, 47.65654],
+ [8.60069, 47.65541],
+ [8.59788, 47.65276],
+ [8.59645, 47.64876],
+ [8.59092, 47.64623],
+ [8.58937, 47.6444],
+ [8.58874, 47.63936],
+ [8.59116, 47.62755],
+ [8.59325, 47.62233],
+ [8.59838, 47.61587],
+ [8.59854, 47.6145],
+ [8.59114, 47.60917],
+ [8.58937, 47.60682],
+ [8.58796, 47.60319],
+ [8.58788, 47.59909],
+ [8.58203, 47.59793],
+ [8.57398, 47.59329],
+ [8.57146, 47.58988],
+ [8.57035, 47.58633],
+ [8.57203, 47.57985],
+ [8.56771, 47.57799],
+ [8.56506, 47.57524],
+ [8.56117, 47.56407],
+ [8.55707, 47.55947],
+ [8.55616, 47.56336],
+ [8.55206, 47.56904],
+ [8.55334, 47.57146],
+ [8.5526, 47.57599],
+ [8.55007, 47.57806],
+ [8.54666, 47.57923],
+ [8.5435, 47.58228],
+ [8.54319, 47.5851],
+ [8.54888, 47.5879],
+ [8.55175, 47.58777],
+ [8.55764, 47.58963],
+ [8.56114, 47.59151],
+ [8.56265, 47.5946],
+ [8.56668, 47.59565],
+ [8.56902, 47.59748],
+ [8.56953, 47.60049],
+ [8.57237, 47.60386],
+ [8.57308, 47.60641],
+ [8.57562, 47.60676],
+ [8.579, 47.60845],
+ [8.58076, 47.61031],
+ [8.58125, 47.61203],
+ [8.58025, 47.61456],
+ [8.57712, 47.61636],
+ [8.57525, 47.61957],
+ [8.57277, 47.6211],
+ [8.56785, 47.62164],
+ [8.56341, 47.62697],
+ [8.56105, 47.62838],
+ [8.54803, 47.62998],
+ [8.54558, 47.63122],
+ [8.54498, 47.63297],
+ [8.54288, 47.63458],
+ [8.53995, 47.63565],
+ [8.52769, 47.63634],
+ [8.52112, 47.63887],
+ [8.51478, 47.6385],
+ [8.50932, 47.63559],
+ [8.50829, 47.62942],
+ [8.50161, 47.62597],
+ [8.5007, 47.62421],
+ [8.50149, 47.62154],
+ [8.49253, 47.61893],
+ [8.48884, 47.61953],
+ [8.47669, 47.61937],
+ [8.47439, 47.61838],
+ [8.47154, 47.61495],
+ [8.47129, 47.61307],
+ [8.46785, 47.61272],
+ [8.46446, 47.61109],
+ [8.46173, 47.60659],
+ [8.45519, 47.60676],
+ [8.45061, 47.60411],
+ [8.4499, 47.60164],
+ [8.4507, 47.59584],
+ [8.45382, 47.59343],
+ [8.45428, 47.5866],
+ [8.4563, 47.5848],
+ [8.46014, 47.58382],
+ [8.46332, 47.58044],
+ [8.46881, 47.5795],
+ [8.46219, 47.57653],
+ [8.45419, 47.57668],
+ [8.43642, 47.57154],
+ [8.43161, 47.57102],
+ [8.42476, 47.57231],
+ [8.41477, 47.56879],
+ [8.41304, 47.56745],
+ [8.41034, 47.56194],
+ [8.41039, 47.55972],
+ [8.40789, 47.55465],
+ [8.40846, 47.55018],
+ [8.39964, 47.54444],
+ [8.39609, 47.543],
+ [8.39469, 47.54094],
+ [8.39495, 47.53674],
+ [8.39136, 47.53568],
+ [8.38835, 47.53305],
+ [8.38525, 47.53316],
+ [8.38113, 47.53219],
+ [8.3774, 47.52969],
+ [8.37518, 47.52679],
+ [8.37279, 47.51651],
+ [8.36579, 47.51663],
+ [8.35666, 47.51348],
+ [8.35439, 47.51104],
+ [8.35103, 47.50314],
+ [8.3524, 47.49957],
+ [8.35163, 47.4973],
+ [8.35274, 47.49484],
+ [8.3545, 47.49355],
+ [8.3557, 47.48979],
+ [8.35533, 47.48525],
+ [8.35698, 47.47931],
+ [8.35891, 47.47743],
+ [8.36187, 47.47645],
+ [8.36722, 47.47654],
+ [8.36702, 47.47487],
+ [8.36073, 47.47222],
+ [8.35903, 47.46604],
+ [8.35996, 47.46381],
+ [8.36326, 47.46204],
+ [8.3673, 47.45653],
+ [8.36975, 47.45504],
+ [8.37393, 47.45472],
+ [8.37754, 47.45201],
+ [8.37583, 47.45068],
+ [8.37441, 47.44614],
+ [8.37623, 47.43818],
+ [8.37168, 47.43675],
+ [8.36855, 47.43406],
+ [8.3681, 47.43158],
+ [8.36904, 47.42863],
+ [8.37222, 47.42603],
+ [8.38283, 47.42346],
+ [8.38371, 47.42251],
+ [8.38073, 47.42207],
+ [8.37555, 47.4178],
+ [8.37598, 47.41378],
+ [8.37441, 47.40906],
+ [8.36067, 47.40664],
+ [8.35789, 47.40542],
+ [8.35629, 47.40377],
+ [8.35661, 47.39961],
+ [8.36195, 47.39516],
+ [8.36577, 47.39429],
+ [8.37601, 47.3947],
+ [8.37743, 47.39218],
+ [8.38036, 47.39048],
+ [8.38761, 47.39035],
+ [8.38832, 47.38012],
+ [8.39034, 47.37527],
+ [8.39355, 47.3719],
+ [8.39387, 47.36945],
+ [8.39574, 47.3671],
+ [8.39902, 47.36608],
+ [8.39836, 47.36408],
+ [8.40012, 47.36094],
+ [8.40103, 47.35433],
+ [8.39728, 47.34677],
+ [8.39779, 47.34475],
+ [8.40186, 47.3391],
+ [8.40931, 47.33409],
+ [8.4061, 47.32975],
+ [8.40578, 47.32667],
+ [8.40689, 47.32447],
+ [8.41295, 47.3205],
+ [8.41611, 47.31996],
+ [8.42948, 47.32227],
+ [8.43556, 47.32083],
+ [8.43437, 47.31954],
+ [8.43155, 47.31851],
+ [8.42609, 47.31375],
+ [8.42276, 47.30706],
+ [8.42311, 47.30368],
+ [8.41745, 47.3015],
+ [8.41372, 47.29824],
+ [8.40012, 47.29564],
+ [8.39768, 47.29392],
+ [8.39518, 47.29516],
+ [8.39108, 47.29552],
+ [8.38602, 47.29437],
+ [8.38272, 47.29225],
+ [8.38198, 47.29034],
+ [8.38255, 47.2881],
+ [8.38508, 47.28565],
+ [8.38977, 47.27507],
+ [8.39563, 47.271],
+ [8.39407, 47.26672],
+ [8.39415, 47.26361],
+ [8.39756, 47.25986],
+ [8.39614, 47.25481],
+ [8.39742, 47.25189],
+ [8.40647, 47.24452],
+ [8.40826, 47.24118],
+ [8.40761, 47.23957],
+ [8.4096, 47.23585],
+ [8.41073, 47.22799],
+ [8.41248, 47.22433],
+ [8.41695, 47.22014],
+ [8.41959, 47.21902],
+ [8.42269, 47.21886],
+ [8.42977, 47.22],
+ [8.43936, 47.21937],
+ [8.45, 47.21363],
+ [8.4546, 47.21334],
+ [8.45625, 47.21081],
+ [8.4591, 47.20934],
+ [8.46447, 47.20928],
+ [8.46609, 47.20862],
+ [8.46868, 47.20533],
+ [8.47329, 47.20398],
+ [8.47693, 47.20458],
+ [8.48399, 47.20392],
+ [8.49489, 47.20738],
+ [8.504, 47.20768],
+ [8.51538, 47.21152],
+ [8.51753, 47.21271],
+ [8.51906, 47.21495],
+ [8.5306, 47.21306],
+ [8.53307, 47.21325],
+ [8.5415, 47.21778],
+ [8.54456, 47.21707],
+ [8.55407, 47.21726],
+ [8.55858, 47.21517],
+ [8.56984, 47.2139],
+ [8.57491, 47.21255],
+ [8.57749, 47.20771],
+ [8.58044, 47.2064],
+ [8.58408, 47.20603],
+ [8.59012, 47.20714],
+ [8.58965, 47.2046],
+ [8.59074, 47.20195],
+ [8.59358, 47.1986],
+ [8.59581, 47.19753],
+ [8.60168, 47.19722],
+ [8.60653, 47.1992],
+ [8.60725, 47.19885],
+ [8.61097, 47.19387],
+ [8.61128, 47.19059],
+ [8.61391, 47.18838],
+ [8.61522, 47.18515],
+ [8.61938, 47.18045],
+ [8.61976, 47.17918],
+ [8.61721, 47.17359],
+ [8.6196, 47.1698],
+ [8.62292, 47.16821],
+ [8.6339, 47.16715],
+ [8.63561, 47.16578],
+ [8.63965, 47.16459],
+ [8.64287, 47.16443],
+ [8.65216, 47.16598],
+ [8.65425, 47.16552],
+ [8.6549, 47.15967],
+ [8.65649, 47.15783],
+ [8.65882, 47.15658],
+ [8.66853, 47.15492],
+ [8.67847, 47.15558],
+ [8.68241, 47.15759],
+ [8.69361, 47.15898],
+ [8.69804, 47.16134],
+ [8.69886, 47.16303],
+ [8.6977, 47.17033],
+ [8.69599, 47.17232],
+ [8.68919, 47.17566],
+ [8.6872, 47.17959],
+ [8.6879, 47.18229],
+ [8.69186, 47.18485],
+ [8.69824, 47.19205],
+ [8.70323, 47.19326],
+ [8.70852, 47.19602],
+ [8.71423, 47.19693],
+ [8.71692, 47.19893],
+ [8.74212, 47.2071],
+ [8.74218, 47.21355],
+ [8.71338, 47.21388]
+ ]
+ ],
+ "terms_text": "Kanton Zürich Orthophotos 2014/2015",
+ "best": true
+ },
+ {
+ "id": "kartverket-dom-skygge",
+ "name": "Kartverket DOM Digital Surface Model",
+ "type": "wms",
+ "template": "https://wms.geonorge.no/skwms1/wms.hoyde-dom_somlos_skyggerelieff?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=las_dom_skyggerelieff_somlos&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "scaleExtent": [0, 24],
+ "polygon": [
+ [
+ [11.53568, 58.86659],
+ [11.66192, 58.89784],
+ [11.7935, 59.09471],
+ [11.84243, 59.239],
+ [11.82877, 59.34509],
+ [11.71279, 59.60387],
+ [11.86205, 59.63771],
+ [11.95608, 59.69196],
+ [11.93389, 59.86895],
+ [12.17881, 59.8786],
+ [12.46948, 60.03124],
+ [12.55438, 60.18972],
+ [12.51237, 60.31659],
+ [12.61793, 60.40065],
+ [12.61883, 60.51512],
+ [12.25387, 61.01106],
+ [12.69195, 61.04632],
+ [12.90756, 61.34802],
+ [12.57493, 61.57623],
+ [12.42465, 61.57175],
+ [12.15233, 61.72694],
+ [12.31212, 62.26512],
+ [12.07078, 62.61109],
+ [12.14907, 62.7455],
+ [12.08883, 62.89668],
+ [12.23464, 62.99952],
+ [11.99225, 63.26684],
+ [12.23327, 63.47505],
+ [12.17971, 63.57117],
+ [12.69313, 63.96344],
+ [13.21378, 64.0839],
+ [13.99183, 64.00514],
+ [14.17035, 64.18236],
+ [14.13253, 64.47516],
+ [13.67658, 64.58356],
+ [14.02455, 64.88119],
+ [14.33572, 65.11098],
+ [14.51699, 65.30365],
+ [14.54177, 65.67762],
+ [14.63674, 65.81299],
+ [14.53903, 66.12496],
+ [15.03881, 66.14245],
+ [15.50033, 66.27956],
+ [15.39368, 66.4795],
+ [15.63473, 66.59685],
+ [16.04695, 66.90283],
+ [16.39832, 67.03827],
+ [16.41439, 67.21036],
+ [16.10744, 67.43617],
+ [16.16455, 67.5087],
+ [16.42318, 67.52589],
+ [16.5866, 67.64528],
+ [16.7471, 67.90466],
+ [17.34741, 68.09995],
+ [17.90583, 67.95885],
+ [18.16489, 68.19424],
+ [18.13721, 68.52675],
+ [18.40761, 68.57059],
+ [18.62222, 68.49607],
+ [18.98574, 68.50591],
+ [19.92752, 68.34558],
+ [20.24505, 68.49201],
+ [19.99237, 68.55586],
+ [20.21137, 68.65685],
+ [20.34848, 68.79976],
+ [20.31623, 68.93227],
+ [20.10322, 69.0359],
+ [20.55694, 69.04926],
+ [20.7206, 69.10837],
+ [21.06178, 69.02541],
+ [21.12098, 69.10587],
+ [21.01135, 69.21086],
+ [21.2824, 69.30076],
+ [21.62645, 69.26589],
+ [22.33512, 68.81965],
+ [22.37485, 68.70596],
+ [22.5377, 68.73329],
+ [22.80161, 68.67674],
+ [23.04635, 68.67833],
+ [23.16467, 68.61903],
+ [23.68789, 68.70049],
+ [23.79776, 68.81592],
+ [23.96804, 68.82287],
+ [24.17541, 68.7314],
+ [24.76043, 68.63655],
+ [24.8544, 68.55285],
+ [24.90827, 68.54387],
+ [24.93347, 68.6025],
+ [25.12435, 68.62003],
+ [25.1667, 68.79008],
+ [25.43334, 68.87886],
+ [25.62945, 68.88103],
+ [25.79589, 69.01157],
+ [25.73272, 69.19428],
+ [26.02249, 69.66758],
+ [26.56631, 69.94207],
+ [27.10601, 69.89539],
+ [27.63679, 70.05317],
+ [27.93548, 70.07401],
+ [27.96569, 70.00415],
+ [28.40312, 69.80824],
+ [29.1014, 69.69095],
+ [29.328, 69.47585],
+ [28.82859, 69.2316],
+ [28.7931, 69.0943],
+ [29.04485, 68.99986],
+ [29.25292, 69.10601],
+ [29.32641, 69.22982],
+ [29.29229, 69.27632],
+ [29.39117, 69.31298],
+ [29.57038, 69.31201],
+ [29.85191, 69.41631],
+ [29.96795, 69.39916],
+ [30.13069, 69.4667],
+ [30.2008, 69.5658],
+ [30.13137, 69.6609],
+ [30.15678, 69.66496],
+ [30.51589, 69.53787],
+ [30.82077, 69.52371],
+ [30.95329, 69.55563],
+ [30.96221, 69.67832],
+ [30.83578, 69.79192],
+ [31.65161, 70.17579],
+ [31.78344, 70.4662],
+ [30.49255, 70.86989],
+ [28.43261, 71.30079],
+ [25.66406, 71.40266],
+ [23.81835, 71.29374],
+ [18.30322, 70.40734],
+ [14.24926, 69.07641],
+ [11.18408, 67.47913],
+ [11.74438, 66.90852],
+ [9.95361, 64.88393],
+ [4.72961, 62.3649],
+ [4.12948, 61.69247],
+ [4.08142, 61.02637],
+ [4.4577, 59.19421],
+ [5.31188, 58.4276],
+ [6.47094, 57.84475],
+ [7.56408, 57.72468],
+ [8.4375, 57.91776],
+ [10.59792, 58.75006],
+ [10.64905, 58.88203],
+ [11.09035, 58.97673],
+ [11.16173, 59.06743],
+ [11.34175, 59.10293],
+ [11.44922, 58.99078],
+ [11.45194, 58.88136],
+ [11.53568, 58.86659]
+ ]
+ ],
+ "terms_url": "https://hoydedata.no/",
+ "terms_text": "© Kartverket",
+ "description": "Shaded relief representation of the Norwegian digital surface model (DOM), i.e. earth surface including trees, buildings and other objects on top of it.",
+ "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png"
+ },
+ {
+ "id": "kartverket-dtm-skygge",
+ "name": "Kartverket DTM Digital Terrain Model",
+ "type": "wms",
+ "template": "https://wms.geonorge.no/skwms1/wms.hoyde-dtm_somlos_skyggerelieff?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=las_dtm_skyggerelieff_somlos&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "scaleExtent": [0, 24],
+ "polygon": [
+ [
+ [11.53568, 58.86659],
+ [11.66192, 58.89784],
+ [11.7935, 59.09471],
+ [11.84243, 59.239],
+ [11.82877, 59.34509],
+ [11.71279, 59.60387],
+ [11.86205, 59.63771],
+ [11.95608, 59.69196],
+ [11.93389, 59.86895],
+ [12.17881, 59.8786],
+ [12.46948, 60.03124],
+ [12.55438, 60.18972],
+ [12.51237, 60.31659],
+ [12.61793, 60.40065],
+ [12.61883, 60.51512],
+ [12.25387, 61.01106],
+ [12.69195, 61.04632],
+ [12.90756, 61.34802],
+ [12.57493, 61.57623],
+ [12.42465, 61.57175],
+ [12.15233, 61.72694],
+ [12.31212, 62.26512],
+ [12.07078, 62.61109],
+ [12.14907, 62.7455],
+ [12.08883, 62.89668],
+ [12.23464, 62.99952],
+ [11.99225, 63.26684],
+ [12.23327, 63.47505],
+ [12.17971, 63.57117],
+ [12.69313, 63.96344],
+ [13.21378, 64.0839],
+ [13.99183, 64.00514],
+ [14.17035, 64.18236],
+ [14.13253, 64.47516],
+ [13.67658, 64.58356],
+ [14.02455, 64.88119],
+ [14.33572, 65.11098],
+ [14.51699, 65.30365],
+ [14.54177, 65.67762],
+ [14.63674, 65.81299],
+ [14.53903, 66.12496],
+ [15.03881, 66.14245],
+ [15.50033, 66.27956],
+ [15.39368, 66.4795],
+ [15.63473, 66.59685],
+ [16.04695, 66.90283],
+ [16.39832, 67.03827],
+ [16.41439, 67.21036],
+ [16.10744, 67.43617],
+ [16.16455, 67.5087],
+ [16.42318, 67.52589],
+ [16.5866, 67.64528],
+ [16.7471, 67.90466],
+ [17.34741, 68.09995],
+ [17.90583, 67.95885],
+ [18.16489, 68.19424],
+ [18.13721, 68.52675],
+ [18.40761, 68.57059],
+ [18.62222, 68.49607],
+ [18.98574, 68.50591],
+ [19.92752, 68.34558],
+ [20.24505, 68.49201],
+ [19.99237, 68.55586],
+ [20.21137, 68.65685],
+ [20.34848, 68.79976],
+ [20.31623, 68.93227],
+ [20.10322, 69.0359],
+ [20.55694, 69.04926],
+ [20.7206, 69.10837],
+ [21.06178, 69.02541],
+ [21.12098, 69.10587],
+ [21.01135, 69.21086],
+ [21.2824, 69.30076],
+ [21.62645, 69.26589],
+ [22.33512, 68.81965],
+ [22.37485, 68.70596],
+ [22.5377, 68.73329],
+ [22.80161, 68.67674],
+ [23.04635, 68.67833],
+ [23.16467, 68.61903],
+ [23.68789, 68.70049],
+ [23.79776, 68.81592],
+ [23.96804, 68.82287],
+ [24.17541, 68.7314],
+ [24.76043, 68.63655],
+ [24.8544, 68.55285],
+ [24.90827, 68.54387],
+ [24.93347, 68.6025],
+ [25.12435, 68.62003],
+ [25.1667, 68.79008],
+ [25.43334, 68.87886],
+ [25.62945, 68.88103],
+ [25.79589, 69.01157],
+ [25.73272, 69.19428],
+ [26.02249, 69.66758],
+ [26.56631, 69.94207],
+ [27.10601, 69.89539],
+ [27.63679, 70.05317],
+ [27.93548, 70.07401],
+ [27.96569, 70.00415],
+ [28.40312, 69.80824],
+ [29.1014, 69.69095],
+ [29.328, 69.47585],
+ [28.82859, 69.2316],
+ [28.7931, 69.0943],
+ [29.04485, 68.99986],
+ [29.25292, 69.10601],
+ [29.32641, 69.22982],
+ [29.29229, 69.27632],
+ [29.39117, 69.31298],
+ [29.57038, 69.31201],
+ [29.85191, 69.41631],
+ [29.96795, 69.39916],
+ [30.13069, 69.4667],
+ [30.2008, 69.5658],
+ [30.13137, 69.6609],
+ [30.15678, 69.66496],
+ [30.51589, 69.53787],
+ [30.82077, 69.52371],
+ [30.95329, 69.55563],
+ [30.96221, 69.67832],
+ [30.83578, 69.79192],
+ [31.65161, 70.17579],
+ [31.78344, 70.4662],
+ [30.49255, 70.86989],
+ [28.43261, 71.30079],
+ [25.66406, 71.40266],
+ [23.81835, 71.29374],
+ [18.30322, 70.40734],
+ [14.24926, 69.07641],
+ [11.18408, 67.47913],
+ [11.74438, 66.90852],
+ [9.95361, 64.88393],
+ [4.72961, 62.3649],
+ [4.12948, 61.69247],
+ [4.08142, 61.02637],
+ [4.4577, 59.19421],
+ [5.31188, 58.4276],
+ [6.47094, 57.84475],
+ [7.56408, 57.72468],
+ [8.4375, 57.91776],
+ [10.59792, 58.75006],
+ [10.64905, 58.88203],
+ [11.09035, 58.97673],
+ [11.16173, 59.06743],
+ [11.34175, 59.10293],
+ [11.44922, 58.99078],
+ [11.45194, 58.88136],
+ [11.53568, 58.86659]
+ ]
+ ],
+ "terms_url": "https://hoydedata.no/",
+ "terms_text": "© Kartverket",
+ "description": "Shaded relief representation of the Norwegian digital terrain model (DTM), i.e. earth surface without trees, buildings and other objects.",
+ "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png"
+ },
+ {
+ "id": "kartverket-friluft",
+ "name": "Kartverket Hiking Trails",
+ "type": "wms",
+ "template": "https://wms.geonorge.no/skwms1/wms.friluftsruter2?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Fotrute&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "scaleExtent": [6, 24],
+ "polygon": [
+ [
+ [11.53568, 58.86659],
+ [11.66192, 58.89784],
+ [11.7935, 59.09471],
+ [11.84243, 59.239],
+ [11.82877, 59.34509],
+ [11.71279, 59.60387],
+ [11.86205, 59.63771],
+ [11.95608, 59.69196],
+ [11.93389, 59.86895],
+ [12.17881, 59.8786],
+ [12.46948, 60.03124],
+ [12.55438, 60.18972],
+ [12.51237, 60.31659],
+ [12.61793, 60.40065],
+ [12.61883, 60.51512],
+ [12.25387, 61.01106],
+ [12.69195, 61.04632],
+ [12.90756, 61.34802],
+ [12.57493, 61.57623],
+ [12.42465, 61.57175],
+ [12.15233, 61.72694],
+ [12.31212, 62.26512],
+ [12.07078, 62.61109],
+ [12.14907, 62.7455],
+ [12.08883, 62.89668],
+ [12.23464, 62.99952],
+ [11.99225, 63.26684],
+ [12.23327, 63.47505],
+ [12.17971, 63.57117],
+ [12.69313, 63.96344],
+ [13.21378, 64.0839],
+ [13.99183, 64.00514],
+ [14.17035, 64.18236],
+ [14.13253, 64.47516],
+ [13.67658, 64.58356],
+ [14.02455, 64.88119],
+ [14.33572, 65.11098],
+ [14.51699, 65.30365],
+ [14.54177, 65.67762],
+ [14.63674, 65.81299],
+ [14.53903, 66.12496],
+ [15.03881, 66.14245],
+ [15.50033, 66.27956],
+ [15.39368, 66.4795],
+ [15.63473, 66.59685],
+ [16.04695, 66.90283],
+ [16.39832, 67.03827],
+ [16.41439, 67.21036],
+ [16.10744, 67.43617],
+ [16.16455, 67.5087],
+ [16.42318, 67.52589],
+ [16.5866, 67.64528],
+ [16.7471, 67.90466],
+ [17.34741, 68.09995],
+ [17.90583, 67.95885],
+ [18.16489, 68.19424],
+ [18.13721, 68.52675],
+ [18.40761, 68.57059],
+ [18.62222, 68.49607],
+ [18.98574, 68.50591],
+ [19.92752, 68.34558],
+ [20.24505, 68.49201],
+ [19.99237, 68.55586],
+ [20.21137, 68.65685],
+ [20.34848, 68.79976],
+ [20.31623, 68.93227],
+ [20.10322, 69.0359],
+ [20.55694, 69.04926],
+ [20.7206, 69.10837],
+ [21.06178, 69.02541],
+ [21.12098, 69.10587],
+ [21.01135, 69.21086],
+ [21.2824, 69.30076],
+ [21.62645, 69.26589],
+ [22.33512, 68.81965],
+ [22.37485, 68.70596],
+ [22.5377, 68.73329],
+ [22.80161, 68.67674],
+ [23.04635, 68.67833],
+ [23.16467, 68.61903],
+ [23.68789, 68.70049],
+ [23.79776, 68.81592],
+ [23.96804, 68.82287],
+ [24.17541, 68.7314],
+ [24.76043, 68.63655],
+ [24.8544, 68.55285],
+ [24.90827, 68.54387],
+ [24.93347, 68.6025],
+ [25.12435, 68.62003],
+ [25.1667, 68.79008],
+ [25.43334, 68.87886],
+ [25.62945, 68.88103],
+ [25.79589, 69.01157],
+ [25.73272, 69.19428],
+ [26.02249, 69.66758],
+ [26.56631, 69.94207],
+ [27.10601, 69.89539],
+ [27.63679, 70.05317],
+ [27.93548, 70.07401],
+ [27.96569, 70.00415],
+ [28.40312, 69.80824],
+ [29.1014, 69.69095],
+ [29.328, 69.47585],
+ [28.82859, 69.2316],
+ [28.7931, 69.0943],
+ [29.04485, 68.99986],
+ [29.25292, 69.10601],
+ [29.32641, 69.22982],
+ [29.29229, 69.27632],
+ [29.39117, 69.31298],
+ [29.57038, 69.31201],
+ [29.85191, 69.41631],
+ [29.96795, 69.39916],
+ [30.13069, 69.4667],
+ [30.2008, 69.5658],
+ [30.13137, 69.6609],
+ [30.15678, 69.66496],
+ [30.51589, 69.53787],
+ [30.82077, 69.52371],
+ [30.95329, 69.55563],
+ [30.96221, 69.67832],
+ [30.83578, 69.79192],
+ [31.65161, 70.17579],
+ [31.78344, 70.4662],
+ [30.49255, 70.86989],
+ [28.43261, 71.30079],
+ [25.66406, 71.40266],
+ [23.81835, 71.29374],
+ [18.30322, 70.40734],
+ [14.24926, 69.07641],
+ [11.18408, 67.47913],
+ [11.74438, 66.90852],
+ [9.95361, 64.88393],
+ [4.72961, 62.3649],
+ [4.12948, 61.69247],
+ [4.08142, 61.02637],
+ [4.4577, 59.19421],
+ [5.31188, 58.4276],
+ [6.47094, 57.84475],
+ [7.56408, 57.72468],
+ [8.4375, 57.91776],
+ [10.59792, 58.75006],
+ [10.64905, 58.88203],
+ [11.09035, 58.97673],
+ [11.16173, 59.06743],
+ [11.34175, 59.10293],
+ [11.44922, 58.99078],
+ [11.45194, 58.88136],
+ [11.53568, 58.86659]
+ ]
+ ],
+ "terms_url": "https://kartverket.no/geodataarbeid/temadata/nasjonal-database-for-tur--og-friluftsruter/",
+ "terms_text": "© Kartverket",
+ "description": "Hiking trails from the Norwegian database `Tur- og Friluftsruter´, including DNT routes.",
+ "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
+ "overlay": true
+ },
+ {
+ "id": "kartverket-topo4",
+ "name": "Kartverket N50 topo",
+ "type": "tms",
+ "template": "https://opencache{switch:,2,3}.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=topo4&zoom={zoom}&x={x}&y={y}",
+ "scaleExtent": [3, 15],
+ "polygon": [
+ [
+ [11.53568, 58.86659],
+ [11.66192, 58.89784],
+ [11.7935, 59.09471],
+ [11.84243, 59.239],
+ [11.82877, 59.34509],
+ [11.71279, 59.60387],
+ [11.86205, 59.63771],
+ [11.95608, 59.69196],
+ [11.93389, 59.86895],
+ [12.17881, 59.8786],
+ [12.46948, 60.03124],
+ [12.55438, 60.18972],
+ [12.51237, 60.31659],
+ [12.61793, 60.40065],
+ [12.61883, 60.51512],
+ [12.25387, 61.01106],
+ [12.69195, 61.04632],
+ [12.90756, 61.34802],
+ [12.57493, 61.57623],
+ [12.42465, 61.57175],
+ [12.15233, 61.72694],
+ [12.31212, 62.26512],
+ [12.07078, 62.61109],
+ [12.14907, 62.7455],
+ [12.08883, 62.89668],
+ [12.23464, 62.99952],
+ [11.99225, 63.26684],
+ [12.23327, 63.47505],
+ [12.17971, 63.57117],
+ [12.69313, 63.96344],
+ [13.21378, 64.0839],
+ [13.99183, 64.00514],
+ [14.17035, 64.18236],
+ [14.13253, 64.47516],
+ [13.67658, 64.58356],
+ [14.02455, 64.88119],
+ [14.33572, 65.11098],
+ [14.51699, 65.30365],
+ [14.54177, 65.67762],
+ [14.63674, 65.81299],
+ [14.53903, 66.12496],
+ [15.03881, 66.14245],
+ [15.50033, 66.27956],
+ [15.39368, 66.4795],
+ [15.63473, 66.59685],
+ [16.04695, 66.90283],
+ [16.39832, 67.03827],
+ [16.41439, 67.21036],
+ [16.10744, 67.43617],
+ [16.16455, 67.5087],
+ [16.42318, 67.52589],
+ [16.5866, 67.64528],
+ [16.7471, 67.90466],
+ [17.34741, 68.09995],
+ [17.90583, 67.95885],
+ [18.16489, 68.19424],
+ [18.13721, 68.52675],
+ [18.40761, 68.57059],
+ [18.62222, 68.49607],
+ [18.98574, 68.50591],
+ [19.92752, 68.34558],
+ [20.24505, 68.49201],
+ [19.99237, 68.55586],
+ [20.21137, 68.65685],
+ [20.34848, 68.79976],
+ [20.31623, 68.93227],
+ [20.10322, 69.0359],
+ [20.55694, 69.04926],
+ [20.7206, 69.10837],
+ [21.06178, 69.02541],
+ [21.12098, 69.10587],
+ [21.01135, 69.21086],
+ [21.2824, 69.30076],
+ [21.62645, 69.26589],
+ [22.33512, 68.81965],
+ [22.37485, 68.70596],
+ [22.5377, 68.73329],
+ [22.80161, 68.67674],
+ [23.04635, 68.67833],
+ [23.16467, 68.61903],
+ [23.68789, 68.70049],
+ [23.79776, 68.81592],
+ [23.96804, 68.82287],
+ [24.17541, 68.7314],
+ [24.76043, 68.63655],
+ [24.8544, 68.55285],
+ [24.90827, 68.54387],
+ [24.93347, 68.6025],
+ [25.12435, 68.62003],
+ [25.1667, 68.79008],
+ [25.43334, 68.87886],
+ [25.62945, 68.88103],
+ [25.79589, 69.01157],
+ [25.73272, 69.19428],
+ [26.02249, 69.66758],
+ [26.56631, 69.94207],
+ [27.10601, 69.89539],
+ [27.63679, 70.05317],
+ [27.93548, 70.07401],
+ [27.96569, 70.00415],
+ [28.40312, 69.80824],
+ [29.1014, 69.69095],
+ [29.328, 69.47585],
+ [28.82859, 69.2316],
+ [28.7931, 69.0943],
+ [29.04485, 68.99986],
+ [29.25292, 69.10601],
+ [29.32641, 69.22982],
+ [29.29229, 69.27632],
+ [29.39117, 69.31298],
+ [29.57038, 69.31201],
+ [29.85191, 69.41631],
+ [29.96795, 69.39916],
+ [30.13069, 69.4667],
+ [30.2008, 69.5658],
+ [30.13137, 69.6609],
+ [30.15678, 69.66496],
+ [30.51589, 69.53787],
+ [30.82077, 69.52371],
+ [30.95329, 69.55563],
+ [30.96221, 69.67832],
+ [30.83578, 69.79192],
+ [31.65161, 70.17579],
+ [31.78344, 70.4662],
+ [30.49255, 70.86989],
+ [28.43261, 71.30079],
+ [25.66406, 71.40266],
+ [23.81835, 71.29374],
+ [18.30322, 70.40734],
+ [14.24926, 69.07641],
+ [11.18408, 67.47913],
+ [11.74438, 66.90852],
+ [9.95361, 64.88393],
+ [4.72961, 62.3649],
+ [4.12948, 61.69247],
+ [4.08142, 61.02637],
+ [4.4577, 59.19421],
+ [5.31188, 58.4276],
+ [6.47094, 57.84475],
+ [7.56408, 57.72468],
+ [8.4375, 57.91776],
+ [10.59792, 58.75006],
+ [10.64905, 58.88203],
+ [11.09035, 58.97673],
+ [11.16173, 59.06743],
+ [11.34175, 59.10293],
+ [11.44922, 58.99078],
+ [11.45194, 58.88136],
+ [11.53568, 58.86659]
+ ]
+ ],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/No:Kartverket_import",
+ "terms_text": "© Kartverket",
+ "description": "Topographic map N50, equivalent to Norway 1:50.000 paper map series.",
+ "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png"
+ },
+ {
+ "id": "kartverket-vegnett",
+ "name": "Kartverket Road Network",
+ "type": "wms",
+ "template": "https://openwms.statkart.no/skwms1/wms.vegnett?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=all&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "scaleExtent": [3, 24],
+ "polygon": [
+ [
+ [11.53568, 58.86659],
+ [11.66192, 58.89784],
+ [11.7935, 59.09471],
+ [11.84243, 59.239],
+ [11.82877, 59.34509],
+ [11.71279, 59.60387],
+ [11.86205, 59.63771],
+ [11.95608, 59.69196],
+ [11.93389, 59.86895],
+ [12.17881, 59.8786],
+ [12.46948, 60.03124],
+ [12.55438, 60.18972],
+ [12.51237, 60.31659],
+ [12.61793, 60.40065],
+ [12.61883, 60.51512],
+ [12.25387, 61.01106],
+ [12.69195, 61.04632],
+ [12.90756, 61.34802],
+ [12.57493, 61.57623],
+ [12.42465, 61.57175],
+ [12.15233, 61.72694],
+ [12.31212, 62.26512],
+ [12.07078, 62.61109],
+ [12.14907, 62.7455],
+ [12.08883, 62.89668],
+ [12.23464, 62.99952],
+ [11.99225, 63.26684],
+ [12.23327, 63.47505],
+ [12.17971, 63.57117],
+ [12.69313, 63.96344],
+ [13.21378, 64.0839],
+ [13.99183, 64.00514],
+ [14.17035, 64.18236],
+ [14.13253, 64.47516],
+ [13.67658, 64.58356],
+ [14.02455, 64.88119],
+ [14.33572, 65.11098],
+ [14.51699, 65.30365],
+ [14.54177, 65.67762],
+ [14.63674, 65.81299],
+ [14.53903, 66.12496],
+ [15.03881, 66.14245],
+ [15.50033, 66.27956],
+ [15.39368, 66.4795],
+ [15.63473, 66.59685],
+ [16.04695, 66.90283],
+ [16.39832, 67.03827],
+ [16.41439, 67.21036],
+ [16.10744, 67.43617],
+ [16.16455, 67.5087],
+ [16.42318, 67.52589],
+ [16.5866, 67.64528],
+ [16.7471, 67.90466],
+ [17.34741, 68.09995],
+ [17.90583, 67.95885],
+ [18.16489, 68.19424],
+ [18.13721, 68.52675],
+ [18.40761, 68.57059],
+ [18.62222, 68.49607],
+ [18.98574, 68.50591],
+ [19.92752, 68.34558],
+ [20.24505, 68.49201],
+ [19.99237, 68.55586],
+ [20.21137, 68.65685],
+ [20.34848, 68.79976],
+ [20.31623, 68.93227],
+ [20.10322, 69.0359],
+ [20.55694, 69.04926],
+ [20.7206, 69.10837],
+ [21.06178, 69.02541],
+ [21.12098, 69.10587],
+ [21.01135, 69.21086],
+ [21.2824, 69.30076],
+ [21.62645, 69.26589],
+ [22.33512, 68.81965],
+ [22.37485, 68.70596],
+ [22.5377, 68.73329],
+ [22.80161, 68.67674],
+ [23.04635, 68.67833],
+ [23.16467, 68.61903],
+ [23.68789, 68.70049],
+ [23.79776, 68.81592],
+ [23.96804, 68.82287],
+ [24.17541, 68.7314],
+ [24.76043, 68.63655],
+ [24.8544, 68.55285],
+ [24.90827, 68.54387],
+ [24.93347, 68.6025],
+ [25.12435, 68.62003],
+ [25.1667, 68.79008],
+ [25.43334, 68.87886],
+ [25.62945, 68.88103],
+ [25.79589, 69.01157],
+ [25.73272, 69.19428],
+ [26.02249, 69.66758],
+ [26.56631, 69.94207],
+ [27.10601, 69.89539],
+ [27.63679, 70.05317],
+ [27.93548, 70.07401],
+ [27.96569, 70.00415],
+ [28.40312, 69.80824],
+ [29.1014, 69.69095],
+ [29.328, 69.47585],
+ [28.82859, 69.2316],
+ [28.7931, 69.0943],
+ [29.04485, 68.99986],
+ [29.25292, 69.10601],
+ [29.32641, 69.22982],
+ [29.29229, 69.27632],
+ [29.39117, 69.31298],
+ [29.57038, 69.31201],
+ [29.85191, 69.41631],
+ [29.96795, 69.39916],
+ [30.13069, 69.4667],
+ [30.2008, 69.5658],
+ [30.13137, 69.6609],
+ [30.15678, 69.66496],
+ [30.51589, 69.53787],
+ [30.82077, 69.52371],
+ [30.95329, 69.55563],
+ [30.96221, 69.67832],
+ [30.83578, 69.79192],
+ [31.65161, 70.17579],
+ [31.78344, 70.4662],
+ [30.49255, 70.86989],
+ [28.43261, 71.30079],
+ [25.66406, 71.40266],
+ [23.81835, 71.29374],
+ [18.30322, 70.40734],
+ [14.24926, 69.07641],
+ [11.18408, 67.47913],
+ [11.74438, 66.90852],
+ [9.95361, 64.88393],
+ [4.72961, 62.3649],
+ [4.12948, 61.69247],
+ [4.08142, 61.02637],
+ [4.4577, 59.19421],
+ [5.31188, 58.4276],
+ [6.47094, 57.84475],
+ [7.56408, 57.72468],
+ [8.4375, 57.91776],
+ [10.59792, 58.75006],
+ [10.64905, 58.88203],
+ [11.09035, 58.97673],
+ [11.16173, 59.06743],
+ [11.34175, 59.10293],
+ [11.44922, 58.99078],
+ [11.45194, 58.88136],
+ [11.53568, 58.86659]
+ ]
+ ],
+ "terms_url": "https://www.kartverket.no/data/kartdata/vegdata/",
+ "terms_text": "© Kartverket",
+ "description": "Norwegian road network from the National Road database (NVDB). Colours represent national, county, municipal, private and forest roads + footways/cycleways.",
+ "icon": "https://www.kartverket.no/Content/Images/logo-graphic-512.png",
+ "overlay": true
+ },
+ {
+ "id": "kelowna_2012",
+ "name": "Kelowna 2012",
+ "type": "tms",
+ "template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/kelowna2012/{zoom}/{x}/{y}.png",
+ "endDate": "2012-05-14T00:00:00.000Z",
+ "startDate": "2012-05-13T00:00:00.000Z",
+ "scaleExtent": [9, 20],
+ "polygon": [
+ [
+ [-119.58673, 49.79281],
+ [-119.54657, 49.79281],
+ [-119.54657, 49.80138],
+ [-119.53434, 49.80138],
+ [-119.53434, 49.80473],
+ [-119.52962, 49.80473],
+ [-119.52962, 49.81196],
+ [-119.51045, 49.81196],
+ [-119.51157, 49.87443],
+ [-119.51089, 49.87449],
+ [-119.51141, 49.88433],
+ [-119.51141, 49.92218],
+ [-119.49386, 49.92235],
+ [-119.49405, 49.9313],
+ [-119.48039, 49.93175],
+ [-119.48046, 49.94075],
+ [-119.46667, 49.94099],
+ [-119.46928, 49.99137],
+ [-119.45513, 49.99161],
+ [-119.45567, 50.01212],
+ [-119.44167, 50.01239],
+ [-119.44173, 50.01363],
+ [-119.42215, 50.01404],
+ [-119.4221, 50.01193],
+ [-119.41213, 50.01217],
+ [-119.41261, 50.02169],
+ [-119.41234, 50.02169],
+ [-119.41248, 50.02508],
+ [-119.41209, 50.02508],
+ [-119.4122, 50.02708],
+ [-119.41261, 50.02707],
+ [-119.41283, 50.03219],
+ [-119.39363, 50.03264],
+ [-119.39353, 50.03078],
+ [-119.37957, 50.03101],
+ [-119.37954, 50.02876],
+ [-119.37358, 50.02886],
+ [-119.37154, 49.97936],
+ [-119.35735, 49.97936],
+ [-119.35484, 49.92561],
+ [-119.32681, 49.92572],
+ [-119.32566, 49.88041],
+ [-119.31389, 49.88065],
+ [-119.31371, 49.87717],
+ [-119.31322, 49.87722],
+ [-119.31315, 49.87497],
+ [-119.31245, 49.87491],
+ [-119.31223, 49.87236],
+ [-119.31176, 49.87233],
+ [-119.3116, 49.86961],
+ [-119.31122, 49.86942],
+ [-119.31092, 49.86324],
+ [-119.31037, 49.86327],
+ [-119.30951, 49.85124],
+ [-119.31064, 49.85123],
+ [-119.31039, 49.84626],
+ [-119.32453, 49.846],
+ [-119.3246, 49.84507],
+ [-119.3367, 49.84488],
+ [-119.33675, 49.84351],
+ [-119.33794, 49.84347],
+ [-119.3378, 49.83821],
+ [-119.33836, 49.8381],
+ [-119.33837, 49.83512],
+ [-119.33909, 49.83511],
+ [-119.3388, 49.83212],
+ [-119.33915, 49.83206],
+ [-119.33917, 49.82933],
+ [-119.33946, 49.82933],
+ [-119.33959, 49.82679],
+ [-119.35001, 49.82658],
+ [-119.34937, 49.81806],
+ [-119.4047, 49.81638],
+ [-119.40457, 49.8099],
+ [-119.41016, 49.8099],
+ [-119.41029, 49.80728],
+ [-119.43195, 49.80691],
+ [-119.43226, 49.7908],
+ [-119.44598, 49.79055],
+ [-119.44529, 49.78202],
+ [-119.49674, 49.78116],
+ [-119.49661, 49.77849],
+ [-119.54184, 49.77751],
+ [-119.54159, 49.77183],
+ [-119.55603, 49.77149],
+ [-119.55612, 49.77184],
+ [-119.57157, 49.77151],
+ [-119.57162, 49.77173],
+ [-119.58192, 49.77149],
+ [-119.58201, 49.77177],
+ [-119.5923, 49.77152],
+ [-119.59234, 49.77181],
+ [-119.60038, 49.7716],
+ [-119.60119, 49.78391],
+ [-119.58644, 49.78439],
+ [-119.58673, 49.79281]
+ ]
+ ],
+ "description": "High quality aerial imagery taken for the City of Kelowna"
+ },
+ {
+ "id": "kelowna_roads",
+ "name": "Kelowna Roads overlay",
+ "type": "tms",
+ "template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/kelowna_overlay/{zoom}/{x}/{y}.png",
+ "scaleExtent": [9, 20],
+ "polygon": [
+ [
+ [-119.58673, 49.79281],
+ [-119.54657, 49.79281],
+ [-119.54657, 49.80138],
+ [-119.53434, 49.80138],
+ [-119.53434, 49.80473],
+ [-119.52962, 49.80473],
+ [-119.52962, 49.81196],
+ [-119.51045, 49.81196],
+ [-119.51157, 49.87443],
+ [-119.51089, 49.87449],
+ [-119.51141, 49.88433],
+ [-119.51141, 49.92218],
+ [-119.49386, 49.92235],
+ [-119.49405, 49.9313],
+ [-119.48039, 49.93175],
+ [-119.48046, 49.94075],
+ [-119.46667, 49.94099],
+ [-119.46928, 49.99137],
+ [-119.45513, 49.99161],
+ [-119.45567, 50.01212],
+ [-119.44167, 50.01239],
+ [-119.44173, 50.01363],
+ [-119.42215, 50.01404],
+ [-119.4221, 50.01193],
+ [-119.41213, 50.01217],
+ [-119.41261, 50.02169],
+ [-119.41234, 50.02169],
+ [-119.41248, 50.02508],
+ [-119.41209, 50.02508],
+ [-119.4122, 50.02708],
+ [-119.41261, 50.02707],
+ [-119.41283, 50.03219],
+ [-119.39363, 50.03264],
+ [-119.39353, 50.03078],
+ [-119.37957, 50.03101],
+ [-119.37954, 50.02876],
+ [-119.37358, 50.02886],
+ [-119.37154, 49.97936],
+ [-119.35735, 49.97936],
+ [-119.35484, 49.92561],
+ [-119.32681, 49.92572],
+ [-119.32566, 49.88041],
+ [-119.31389, 49.88065],
+ [-119.31371, 49.87717],
+ [-119.31322, 49.87722],
+ [-119.31315, 49.87497],
+ [-119.31245, 49.87491],
+ [-119.31223, 49.87236],
+ [-119.31176, 49.87233],
+ [-119.3116, 49.86961],
+ [-119.31122, 49.86942],
+ [-119.31092, 49.86324],
+ [-119.31037, 49.86327],
+ [-119.30951, 49.85124],
+ [-119.31064, 49.85123],
+ [-119.31039, 49.84626],
+ [-119.32453, 49.846],
+ [-119.3246, 49.84507],
+ [-119.3367, 49.84488],
+ [-119.33675, 49.84351],
+ [-119.33794, 49.84347],
+ [-119.3378, 49.83821],
+ [-119.33836, 49.8381],
+ [-119.33837, 49.83512],
+ [-119.33909, 49.83511],
+ [-119.3388, 49.83212],
+ [-119.33915, 49.83206],
+ [-119.33917, 49.82933],
+ [-119.33946, 49.82933],
+ [-119.33959, 49.82679],
+ [-119.35001, 49.82658],
+ [-119.34937, 49.81806],
+ [-119.4047, 49.81638],
+ [-119.40457, 49.8099],
+ [-119.41016, 49.8099],
+ [-119.41029, 49.80728],
+ [-119.43195, 49.80691],
+ [-119.43226, 49.7908],
+ [-119.44598, 49.79055],
+ [-119.44529, 49.78202],
+ [-119.49674, 49.78116],
+ [-119.49661, 49.77849],
+ [-119.54184, 49.77751],
+ [-119.54159, 49.77183],
+ [-119.55603, 49.77149],
+ [-119.55612, 49.77184],
+ [-119.57157, 49.77151],
+ [-119.57162, 49.77173],
+ [-119.58192, 49.77149],
+ [-119.58201, 49.77177],
+ [-119.5923, 49.77152],
+ [-119.59234, 49.77181],
+ [-119.60038, 49.7716],
+ [-119.60119, 49.78391],
+ [-119.58644, 49.78439],
+ [-119.58673, 49.79281]
+ ]
+ ],
+ "overlay": true
+ },
+ {
+ "id": "landsat_233055",
+ "name": "Landsat 233055",
+ "type": "tms",
+ "template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/landsat_233055/{zoom}/{x}/{y}.png",
+ "endDate": "2013-09-03T00:00:00.000Z",
+ "startDate": "2013-09-03T00:00:00.000Z",
+ "scaleExtent": [5, 14],
+ "polygon": [
+ [
+ [-60.855, 6.1765],
+ [-60.47626, 7.91883],
+ [-62.16169, 8.27787],
+ [-62.53225, 6.53755],
+ [-60.855, 6.1765]
+ ]
+ ],
+ "description": "Recent Landsat imagery"
+ },
+ {
+ "id": "osmse-ekonomiska",
+ "name": "Lantmäteriet Economic Map (historic)",
+ "type": "tms",
+ "template": "https://mapproxy.openstreetmap.se/tms/1.0.0/ek_EPSG3857/{zoom}/{x}/{-y}.jpeg",
+ "scaleExtent": [3, 17],
+ "polygon": [
+ [
+ [12.71117, 55.2666],
+ [14.38109, 55.29163],
+ [19.65453, 57.24934],
+ [19.85228, 59.75087],
+ [17.77587, 61.13794],
+ [18.06151, 62.27815],
+ [20.97289, 63.5779],
+ [24.35668, 65.60842],
+ [23.96117, 66.79191],
+ [20.61034, 66.45189],
+ [17.13866, 63.96632],
+ [11.99706, 61.03702],
+ [12.29369, 60.31607],
+ [10.70067, 58.81375],
+ [12.71117, 55.2666]
+ ]
+ ],
+ "terms_url": "https://www.lantmateriet.se",
+ "terms_text": "© Lantmäteriet",
+ "description": "Scan of ´Economic maps´ ca 1950-1980",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAA0CAMAAADPNIq/AAAA7VBMVEVHcEz1NzT1NjT4NzTwNTLzNjP4ODX3NzTyNTPyNS/zNjPyNjPxNTP2NzTvMi70NjPzNjP0NjL1NjP3NzP1NzT1NjP0NjP3NzT/Njb0NjP3NzT4ODP0NjPzNjP2NzX2NzTvLCzzNjTtNC/zNTPyNDP5NzT0NjTzNjP1NjPtMy72NzT5ODX3ODT1NjT1NzTyNjP1NzTyODD0NzT/Ozj/OjfzNzT9OTb3NzT0NDH/ODX6ODX1NzT/PDn5NTL4ODX0NjP2PTr8YmL1OTb9Y2P2QT/4TUz3R0X+Zmb7ODX8X1/4Skj6UlH7W1r+NjP5T03RuQwnAAAAMnRSTlMA8SH8F63p7FkZsHRcsw/ErCddmTKo2/QD+34roLpExwfMG25W1djATRKRk9CG+VOkPjR6UnQAAAIzSURBVEjHnZXpVuowEIDZC3gBBRQEBNerqN4lk9bS1FIqUAH0/R/HbkmT0haOc/jDnK/zTZihyWR+GP3my6BaHbw0+2lUrvecn3gBYD33cglY5akz+TTMuROmOjWw3nmqxHHNEn4zv7armROrDZoiZOilX7vcI3yam5ltv7thrywHRLICj1HuVFeXM3u23SyWy+V6bboccoueitxAVxf2ajFHahAoCKIPeO7I4d4XlqpOUTSIfhRy7fzbemvGUJ4932ZgYzLfIBXFhwwNyj0AWVpJnCOHhwC8x6bFaQkxiEDCfTBey0CMkzXAhoFBk/kuT/wjA/90tnXbbv9tSULSP3gNuHZqwSbkahD6oeamumdKmOHm8C98XjnrOolCVgsTlyF4+ZsV0LIFJ3FybrCCTX5cZVbSOHdP00cU1KQ6D9alDwoid99zfyiIR+KmNLBQccx6xBcieIGFHrusaXwlgldYOHWmSJs2OsJ/pJKlPUHVS9xAZAJ0ScP8jT8EdhqtdM0VLGmRWYczlPFoTLnxCNO9AHrI//iVSe6Gfm54x8QED+nTRZBZTaXRK5d7DYXVk4OjeO1I4V4QDNj5hKvzIV3zY+V3mghfxAU4Bjnpr1UVhlDg5EIoUuRFJco58c5rqqjL+8WJ8h1xgjxGLP7sKeJYeaw4Rp4g3vnZZSgmXh+FknKAOCJPEQvyNLEgTxVzcgLlfbemJ98nZnJFKuy/iG+BHCD2bzv9+KC7vd5q1TM/j284bszID7oc+QAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "lu.geoportail.opendata.ortholatest",
+ "name": "Latest available ortho geoportail.lu",
+ "type": "tms",
+ "template": "http://{switch:wmts1,wmts2}.geoportail.lu/opendata/wmts/ortho_latest/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg",
+ "endDate": "2017-06-22T00:00:00.000Z",
+ "startDate": "2017-06-14T00:00:00.000Z",
+ "scaleExtent": [0, 20],
+ "polygon": [
+ [
+ [5.96175, 50.17631],
+ [6.02627, 50.18496],
+ [6.03318, 50.16395],
+ [6.06069, 50.15536],
+ [6.07668, 50.15913],
+ [6.07824, 50.17255],
+ [6.10176, 50.17199],
+ [6.1225, 50.16437],
+ [6.1201, 50.15594],
+ [6.1277, 50.14993],
+ [6.11323, 50.13739],
+ [6.12369, 50.13719],
+ [6.14093, 50.1305],
+ [6.13555, 50.11899],
+ [6.13808, 50.10263],
+ [6.13108, 50.09964],
+ [6.13547, 50.09119],
+ [6.12194, 50.09059],
+ [6.12634, 50.07817],
+ [6.13186, 50.07348],
+ [6.12117, 50.064],
+ [6.11444, 50.06139],
+ [6.11563, 50.05817],
+ [6.12361, 50.06323],
+ [6.13661, 50.04178],
+ [6.13034, 50.02975],
+ [6.14821, 50.02307],
+ [6.13868, 50.01572],
+ [6.13594, 50.01485],
+ [6.13138, 50.01905],
+ [6.13024, 50.01819],
+ [6.13934, 50.01116],
+ [6.1517, 50.01058],
+ [6.14546, 49.99689],
+ [6.13966, 49.9994],
+ [6.13852, 49.99829],
+ [6.14218, 49.99535],
+ [6.15023, 49.99518],
+ [6.15625, 49.98867],
+ [6.17305, 49.98589],
+ [6.17348, 49.98344],
+ [6.17035, 49.98376],
+ [6.16549, 49.97115],
+ [6.17151, 49.96298],
+ [6.1763, 49.962],
+ [6.17995, 49.95386],
+ [6.18339, 49.9548],
+ [6.17983, 49.96307],
+ [6.18331, 49.9686],
+ [6.19277, 49.97158],
+ [6.19978, 49.95352],
+ [6.20707, 49.95672],
+ [6.21269, 49.9514],
+ [6.22502, 49.95039],
+ [6.22044, 49.94369],
+ [6.22824, 49.93726],
+ [6.22635, 49.92766],
+ [6.21913, 49.92354],
+ [6.22986, 49.92125],
+ [6.23603, 49.91355],
+ [6.23187, 49.91064],
+ [6.22769, 49.91062],
+ [6.23229, 49.9072],
+ [6.23381, 49.90028],
+ [6.24692, 49.89535],
+ [6.25781, 49.88724],
+ [6.26301, 49.88101],
+ [6.27646, 49.87725],
+ [6.28113, 49.87957],
+ [6.29166, 49.87548],
+ [6.2977, 49.86673],
+ [6.30989, 49.87107],
+ [6.31532, 49.8673],
+ [6.31465, 49.86057],
+ [6.32361, 49.85188],
+ [6.32158, 49.8409],
+ [6.32741, 49.83673],
+ [6.33656, 49.83998],
+ [6.33937, 49.8507],
+ [6.36465, 49.85164],
+ [6.4022, 49.82098],
+ [6.42643, 49.81629],
+ [6.42807, 49.81186],
+ [6.43097, 49.81129],
+ [6.44161, 49.81547],
+ [6.44344, 49.81233],
+ [6.45366, 49.81275],
+ [6.46454, 49.81975],
+ [6.47057, 49.82385],
+ [6.49681, 49.81277],
+ [6.50669, 49.80993],
+ [6.51155, 49.80238],
+ [6.51485, 49.80513],
+ [6.5196, 49.81446],
+ [6.52981, 49.81048],
+ [6.53225, 49.80686],
+ [6.53083, 49.80116],
+ [6.50622, 49.78899],
+ [6.51917, 49.78344],
+ [6.51105, 49.77422],
+ [6.52056, 49.76818],
+ [6.52052, 49.76134],
+ [6.50373, 49.75086],
+ [6.50263, 49.73298],
+ [6.50727, 49.72938],
+ [6.51809, 49.7242],
+ [6.51642, 49.72129],
+ [6.51176, 49.72016],
+ [6.50479, 49.725],
+ [6.49891, 49.72639],
+ [6.49558, 49.72443],
+ [6.50712, 49.71655],
+ [6.50788, 49.71215],
+ [6.5046, 49.71227],
+ [6.42714, 49.66237],
+ [6.4399, 49.66025],
+ [6.44251, 49.65591],
+ [6.42178, 49.61809],
+ [6.39898, 49.60094],
+ [6.37941, 49.59526],
+ [6.37551, 49.58809],
+ [6.38443, 49.5801],
+ [6.38119, 49.57509],
+ [6.36909, 49.5783],
+ [6.35791, 49.57166],
+ [6.3849, 49.55817],
+ [6.38009, 49.54856],
+ [6.35855, 49.53296],
+ [6.35932, 49.52481],
+ [6.37076, 49.50545],
+ [6.37056, 49.45732],
+ [6.3334, 49.46493],
+ [6.32189, 49.47244],
+ [6.29503, 49.47928],
+ [6.28789, 49.48379],
+ [6.27191, 49.49995],
+ [6.24133, 49.50693],
+ [6.19669, 49.50331],
+ [6.17337, 49.50577],
+ [6.16086, 49.50085],
+ [6.1671, 49.49006],
+ [6.14018, 49.48525],
+ [6.12937, 49.48803],
+ [6.12725, 49.47081],
+ [6.1014, 49.46726],
+ [6.10483, 49.45076],
+ [6.08167, 49.45417],
+ [6.07722, 49.46139],
+ [6.05917, 49.46306],
+ [6.05222, 49.46028],
+ [6.04421, 49.44553],
+ [6.02529, 49.44703],
+ [6.02154, 49.45127],
+ [6.01574, 49.44885],
+ [5.99412, 49.45301],
+ [5.97657, 49.44885],
+ [5.97773, 49.45955],
+ [5.97232, 49.46087],
+ [5.96891, 49.48202],
+ [5.9616, 49.49026],
+ [5.91578, 49.49835],
+ [5.89033, 49.4948],
+ [5.86332, 49.50006],
+ [5.84897, 49.50826],
+ [5.84828, 49.51397],
+ [5.83641, 49.51817],
+ [5.83187, 49.52639],
+ [5.84308, 49.53081],
+ [5.83562, 49.54114],
+ [5.81625, 49.53325],
+ [5.8052, 49.54272],
+ [5.85943, 49.57158],
+ [5.86866, 49.587],
+ [5.86289, 49.58525],
+ [5.8511, 49.58379],
+ [5.84712, 49.58961],
+ [5.84565, 49.5981],
+ [5.8694, 49.6106],
+ [5.88182, 49.63815],
+ [5.89998, 49.63907],
+ [5.89934, 49.66239],
+ [5.85656, 49.67628],
+ [5.85628, 49.68211],
+ [5.8757, 49.71118],
+ [5.86481, 49.72331],
+ [5.84325, 49.71822],
+ [5.82191, 49.72128],
+ [5.82489, 49.73767],
+ [5.82073, 49.74878],
+ [5.78626, 49.79079],
+ [5.76517, 49.78961],
+ [5.75094, 49.79094],
+ [5.74159, 49.82126],
+ [5.74581, 49.82435],
+ [5.7372, 49.83353],
+ [5.74053, 49.84142],
+ [5.74701, 49.84048],
+ [5.74624, 49.84783],
+ [5.75399, 49.84878],
+ [5.74066, 49.85152],
+ [5.75229, 49.85922],
+ [5.74955, 49.87554],
+ [5.77567, 49.87438],
+ [5.77505, 49.88057],
+ [5.7346, 49.89341],
+ [5.73303, 49.90285],
+ [5.75783, 49.91737],
+ [5.76039, 49.93252],
+ [5.77073, 49.93711],
+ [5.76878, 49.94239],
+ [5.7688, 49.96104],
+ [5.78672, 49.96816],
+ [5.80524, 49.96677],
+ [5.80652, 49.97321],
+ [5.83129, 49.97995],
+ [5.83462, 49.98656],
+ [5.81806, 49.99936],
+ [5.81561, 50.01437],
+ [5.84792, 50.02809],
+ [5.86189, 50.04581],
+ [5.85087, 50.0563],
+ [5.85781, 50.07186],
+ [5.881, 50.08069],
+ [5.89196, 50.12041],
+ [5.95286, 50.13384],
+ [5.96175, 50.17631]
+ ]
+ ],
+ "terms_url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts",
+ "terms_text": "Administration du Cadastre et de la Topographie",
+ "best": true,
+ "icon": "https://www.geoportail.lu/static/img/lion.png"
+ },
+ {
+ "id": "landsat_047026",
+ "name": "Latest southwest British Columbia Landsat",
+ "type": "tms",
+ "template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/landsat_047026/{zoom}/{x}/{y}.png",
+ "endDate": "2013-09-12T00:00:00.000Z",
+ "startDate": "2013-09-12T00:00:00.000Z",
+ "scaleExtent": [5, 13],
+ "polygon": [
+ [
+ [-121.93555, 47.78206],
+ [-121.57206, 48.64101],
+ [-121.20155, 49.48462],
+ [-121.83755, 49.60232],
+ [-122.4767, 49.71617],
+ [-123.11891, 49.82688],
+ [-123.76023, 49.93358],
+ [-124.08877, 49.08705],
+ [-124.41289, 48.22526],
+ [-123.79277, 48.11973],
+ [-123.17279, 48.01096],
+ [-122.55355, 47.89823],
+ [-121.93555, 47.78206]
+ ]
+ ],
+ "description": "Recent lower-resolution landsat imagery for southwest British Columbia"
+ },
+ {
+ "id": "Lausanne-2012",
+ "name": "Lausanne - Orthophoto technique 2012",
+ "type": "tms",
+ "template": "http://osmdata.asitvd.ch/tiles/lausanne2012/{zoom}/{x}/{y}.png",
+ "endDate": "2012-01-01T00:00:00.000Z",
+ "startDate": "2012-01-01T00:00:00.000Z",
+ "scaleExtent": [14, 20],
+ "polygon": [
+ [
+ [6.66668, 46.49441],
+ [6.61637, 46.49406],
+ [6.61636, 46.49836],
+ [6.60135, 46.49825],
+ [6.60131, 46.50227],
+ [6.55923, 46.50194],
+ [6.55773, 46.59687],
+ [6.72895, 46.59805],
+ [6.7304, 46.49004],
+ [6.67702, 46.48978],
+ [6.67703, 46.49011],
+ [6.67345, 46.49006],
+ [6.67347, 46.49041],
+ [6.66672, 46.49036],
+ [6.66668, 46.49441]
+ ]
+ ],
+ "terms_url": "http://carto.lausanne.ch/lausanne-gc/",
+ "terms_text": "Ville de Lausanne - Orthophoto technique 2012"
+ },
+ {
+ "id": "LINZ_NZ_Aerial_Imagery",
+ "name": "LINZ NZ Aerial Imagery",
+ "type": "tms",
+ "template": "https://tiles-a.data-cdn.linz.govt.nz/services;key=3197c6d0e5cb494a95d58dc2de3216c2/tiles/v4/set=2/EPSG:3857/{zoom}/{x}/{y}.png",
+ "scaleExtent": [0, 21],
+ "polygon": [
+ [
+ [167.25037, -47.21957],
+ [167.24487, -47.28016],
+ [167.50305, -47.37975],
+ [168.25012, -47.1561],
+ [168.74451, -46.7963],
+ [169.32678, -46.75492],
+ [169.78271, -46.60417],
+ [170.42542, -46.11133],
+ [170.80444, -45.95115],
+ [170.95276, -45.44086],
+ [171.30981, -44.91036],
+ [171.40869, -44.39062],
+ [172.56226, -43.92955],
+ [172.90283, -43.9691],
+ [173.16101, -43.90977],
+ [173.25989, -43.69568],
+ [172.97424, -43.5366],
+ [172.76001, -43.37711],
+ [173.15002, -43.17714],
+ [173.70483, -42.63396],
+ [174.36401, -41.7836],
+ [174.32007, -41.40978],
+ [174.84741, -41.52914],
+ [175.07263, -41.70573],
+ [175.50659, -41.67291],
+ [176.2262, -41.10833],
+ [176.83044, -40.42604],
+ [177.17102, -39.67337],
+ [177.03918, -39.39375],
+ [177.44568, -39.18118],
+ [177.60498, -39.33005],
+ [177.97852, -39.36828],
+ [178.33557, -38.65978],
+ [178.70911, -37.74466],
+ [178.62671, -37.54458],
+ [178.3136, -37.43125],
+ [177.62146, -37.37889],
+ [177.03918, -37.39635],
+ [176.56128, -37.37016],
+ [176.33606, -37.05956],
+ [176.00647, -36.29742],
+ [175.67688, -36.05354],
+ [174.67163, -35.1783],
+ [173.19397, -34.28445],
+ [172.67761, -34.23451],
+ [172.38647, -34.40238],
+ [172.47986, -34.71904],
+ [172.98523, -35.32185],
+ [173.56201, -36.14231],
+ [174.30908, -37.07709],
+ [174.55627, -38.05242],
+ [174.47937, -38.65549],
+ [174.32556, -38.86537],
+ [173.79822, -38.95941],
+ [173.60596, -39.23225],
+ [173.69934, -39.56335],
+ [174.58923, -39.95607],
+ [174.98474, -40.21664],
+ [174.98474, -40.49292],
+ [174.72107, -40.80549],
+ [174.14978, -40.65147],
+ [173.28186, -40.4344],
+ [172.58972, -40.35073],
+ [172.08435, -40.53468],
+ [171.76575, -40.82628],
+ [171.57349, -41.39742],
+ [171.28235, -41.65239],
+ [170.87585, -42.53284],
+ [170.354, -42.87194],
+ [168.27759, -43.92955],
+ [167.6239, -44.47691],
+ [166.55273, -45.38688],
+ [166.27258, -45.91677],
+ [166.48132, -46.22545],
+ [167.67883, -46.47192],
+ [167.25037, -47.21957]
+ ]
+ ],
+ "terms_url": "https://www.linz.govt.nz/data/licensing-and-using-data/attributing-elevation-or-aerial-imagery-data",
+ "terms_text": "Sourced from LINZ CC-BY 4.0",
+ "best": true
+ },
+ {
+ "id": "LINZ_NZ_Topo50_Gridless_Maps",
+ "name": "LINZ NZ Topo50 Gridless Maps",
+ "type": "tms",
+ "template": "https://tiles-a.data-cdn.linz.govt.nz/services;key=3197c6d0e5cb494a95d58dc2de3216c2/tiles/v4/layer=2343/EPSG:3857/{zoom}/{x}/{y}.png",
+ "scaleExtent": [0, 21],
+ "polygon": [
+ [
+ [167.25037, -47.21957],
+ [167.24487, -47.28016],
+ [167.50305, -47.37975],
+ [168.25012, -47.1561],
+ [168.74451, -46.7963],
+ [169.32678, -46.75492],
+ [169.78271, -46.60417],
+ [170.42542, -46.11133],
+ [170.80444, -45.95115],
+ [170.95276, -45.44086],
+ [171.30981, -44.91036],
+ [171.40869, -44.39062],
+ [172.56226, -43.92955],
+ [172.90283, -43.9691],
+ [173.16101, -43.90977],
+ [173.25989, -43.69568],
+ [172.97424, -43.5366],
+ [172.76001, -43.37711],
+ [173.15002, -43.17714],
+ [173.70483, -42.63396],
+ [174.36401, -41.7836],
+ [174.32007, -41.40978],
+ [174.84741, -41.52914],
+ [175.07263, -41.70573],
+ [175.50659, -41.67291],
+ [176.2262, -41.10833],
+ [176.83044, -40.42604],
+ [177.17102, -39.67337],
+ [177.03918, -39.39375],
+ [177.44568, -39.18118],
+ [177.60498, -39.33005],
+ [177.97852, -39.36828],
+ [178.33557, -38.65978],
+ [178.70911, -37.74466],
+ [178.62671, -37.54458],
+ [178.3136, -37.43125],
+ [177.62146, -37.37889],
+ [177.03918, -37.39635],
+ [176.56128, -37.37016],
+ [176.33606, -37.05956],
+ [176.00647, -36.29742],
+ [175.67688, -36.05354],
+ [174.67163, -35.1783],
+ [173.19397, -34.28445],
+ [172.67761, -34.23451],
+ [172.38647, -34.40238],
+ [172.47986, -34.71904],
+ [172.98523, -35.32185],
+ [173.56201, -36.14231],
+ [174.30908, -37.07709],
+ [174.55627, -38.05242],
+ [174.47937, -38.65549],
+ [174.32556, -38.86537],
+ [173.79822, -38.95941],
+ [173.60596, -39.23225],
+ [173.69934, -39.56335],
+ [174.58923, -39.95607],
+ [174.98474, -40.21664],
+ [174.98474, -40.49292],
+ [174.72107, -40.80549],
+ [174.14978, -40.65147],
+ [173.28186, -40.4344],
+ [172.58972, -40.35073],
+ [172.08435, -40.53468],
+ [171.76575, -40.82628],
+ [171.57349, -41.39742],
+ [171.28235, -41.65239],
+ [170.87585, -42.53284],
+ [170.354, -42.87194],
+ [168.27759, -43.92955],
+ [167.6239, -44.47691],
+ [166.55273, -45.38688],
+ [166.27258, -45.91677],
+ [166.48132, -46.22545],
+ [167.67883, -46.47192],
+ [167.25037, -47.21957]
+ ]
+ ],
+ "terms_url": "https://data.linz.govt.nz/layer/2343-nz-mainland-topo50-gridless-maps",
+ "terms_text": "CC BY 4.0 Land Information New Zealand"
+ },
+ {
+ "id": "ORT10LT",
+ "name": "Lithuania - NŽT ORT10LT",
+ "type": "tms",
+ "template": "https://ort10lt.openmap.lt/g16/{zoom}/{x}/{y}.jpeg",
+ "endDate": "2016-01-01T00:00:00.000Z",
+ "startDate": "2010-01-01T00:00:00.000Z",
+ "scaleExtent": [4, 18],
+ "polygon": [
+ [
+ [26.21384, 55.85075],
+ [26.38583, 55.70453],
+ [26.63036, 55.68067],
+ [26.62053, 55.56892],
+ [26.52422, 55.50992],
+ [26.55415, 55.38883],
+ [26.43993, 55.34794],
+ [26.79197, 55.3212],
+ [26.82913, 55.27635],
+ [26.74346, 55.25399],
+ [26.67648, 55.15883],
+ [26.46112, 55.12856],
+ [26.35774, 55.15054],
+ [26.22963, 55.10732],
+ [26.27138, 55.07759],
+ [26.20851, 54.99741],
+ [26.06191, 54.94161],
+ [25.85782, 54.9276],
+ [25.74298, 54.81506],
+ [25.76261, 54.5769],
+ [25.53194, 54.34182],
+ [25.67716, 54.32381],
+ [25.78573, 54.23362],
+ [25.78588, 54.15506],
+ [25.55508, 54.14619],
+ [25.51095, 54.17503],
+ [25.58967, 54.22858],
+ [25.51362, 54.30785],
+ [25.26893, 54.27447],
+ [25.0706, 54.13363],
+ [24.95737, 54.17206],
+ [24.81338, 54.14486],
+ [24.77902, 54.09991],
+ [24.87128, 54.0349],
+ [24.81957, 53.99772],
+ [24.68459, 53.96211],
+ [24.69787, 54.01714],
+ [24.62591, 54.0105],
+ [24.43426, 53.90144],
+ [24.35206, 53.89679],
+ [24.20161, 53.97001],
+ [23.96833, 53.9267],
+ [23.91302, 53.96968],
+ [23.77812, 53.89892],
+ [23.70977, 53.93945],
+ [23.53704, 53.94307],
+ [23.48224, 53.98938],
+ [23.52734, 54.04735],
+ [23.48586, 54.15323],
+ [23.38679, 54.22484],
+ [23.04212, 54.31597],
+ [23.01021, 54.3828],
+ [22.85469, 54.4104],
+ [22.792, 54.36332],
+ [22.70234, 54.4529],
+ [22.68386, 54.58597],
+ [22.74897, 54.63198],
+ [22.74297, 54.72682],
+ [22.88668, 54.8135],
+ [22.8204, 54.91198],
+ [22.6424, 54.97134],
+ [22.58924, 55.07024],
+ [22.0806, 55.02448],
+ [22.03241, 55.0841],
+ [21.91307, 55.08168],
+ [21.64919, 55.18081],
+ [21.50151, 55.18682],
+ [21.38437, 55.2937],
+ [21.27098, 55.24501],
+ [21.09836, 55.25639],
+ [20.94217, 55.28245],
+ [21.08635, 55.56183],
+ [21.03995, 55.83636],
+ [21.06403, 56.06995],
+ [21.20478, 56.08117],
+ [21.2308, 56.16233],
+ [21.5021, 56.2955],
+ [21.72359, 56.31382],
+ [21.83566, 56.37162],
+ [21.96954, 56.37665],
+ [22.0153, 56.42428],
+ [22.43727, 56.4064],
+ [22.68, 56.35159],
+ [22.91917, 56.37902],
+ [22.94668, 56.41465],
+ [23.09325, 56.30464],
+ [23.17034, 56.36677],
+ [23.30645, 56.38305],
+ [23.55717, 56.33382],
+ [23.7648, 56.37332],
+ [23.76669, 56.32381],
+ [24.019, 56.32976],
+ [24.12146, 56.2489],
+ [24.28574, 56.30064],
+ [24.45415, 56.25816],
+ [24.57947, 56.28824],
+ [24.62841, 56.37533],
+ [24.90238, 56.48053],
+ [25.12774, 56.20591],
+ [25.57714, 56.18241],
+ [25.67312, 56.14937],
+ [26.21384, 55.85075]
+ ]
+ ],
+ "terms_url": "https://www.geoportal.lt",
+ "terms_text": "NŽT ORT10LT",
+ "best": true
+ },
+ {
+ "id": "mapbox_locator_overlay",
+ "name": "Locator Overlay",
+ "type": "tms",
+ "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/v4/openstreetmap.map-inh76ba2/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJncjlmd0t3In0.DmZsIeOW-3x-C5eX-wAqTw",
+ "scaleExtent": [0, 16],
+ "overzoom": false,
+ "terms_url": "https://www.mapbox.com/about/maps",
+ "terms_text": "Terms & Feedback",
+ "default": true,
+ "description": "Shows major features to help orient you.",
+ "overlay": true
+ },
+ {
+ "id": "Loire_Atlantique-Orthophotos-2012",
+ "name": "Loire-Atlantique - Orthophotos 2012 - 20 cm",
+ "type": "tms",
+ "template": "http://{switch:a,b,c,d,e,f,g,h}.tiles.cg44.makina-corpus.net/ortho-2012/{zoom}/{x}/{-y}.jpg",
+ "endDate": "2012-01-01T00:00:00.000Z",
+ "startDate": "2012-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 19],
+ "polygon": [
+ [
+ [-1.48638, 46.87691],
+ [-1.54437, 46.84873],
+ [-1.73468, 46.87246],
+ [-1.89276, 46.94234],
+ [-1.95475, 46.98084],
+ [-2.07067, 47.08521],
+ [-2.2678, 47.12656],
+ [-2.22627, 47.17124],
+ [-2.19217, 47.16914],
+ [-2.19341, 47.25546],
+ [-2.29694, 47.22769],
+ [-2.41658, 47.25336],
+ [-2.54862, 47.28575],
+ [-2.63913, 47.41678],
+ [-2.50573, 47.50812],
+ [-2.31063, 47.53021],
+ [-2.24836, 47.52384],
+ [-2.23223, 47.51499],
+ [-2.12109, 47.54674],
+ [-2.11783, 47.60126],
+ [-2.1001, 47.61123],
+ [-2.09981, 47.62005],
+ [-2.11141, 47.62873],
+ [-2.10055, 47.65141],
+ [-2.08121, 47.66578],
+ [-1.98016, 47.70751],
+ [-1.83077, 47.72419],
+ [-1.67455, 47.72544],
+ [-1.63735, 47.77463],
+ [-1.49601, 47.81752],
+ [-1.49911, 47.84166],
+ [-1.38133, 47.84415],
+ [-1.346, 47.81086],
+ [-1.23007, 47.78587],
+ [-1.21643, 47.75838],
+ [-1.22635, 47.73628],
+ [-1.21086, 47.7317],
+ [-1.18668, 47.73462],
+ [-1.15196, 47.69332],
+ [-1.13151, 47.63654],
+ [-1.09121, 47.6332],
+ [-0.99265, 47.6027],
+ [-0.98459, 47.58598],
+ [-1.0317, 47.55001],
+ [-1.13585, 47.55628],
+ [-1.13275, 47.5161],
+ [-1.0317, 47.51778],
+ [-0.94863, 47.50103],
+ [-0.93686, 47.47715],
+ [-0.93376, 47.43859],
+ [-0.9009, 47.39874],
+ [-0.92694, 47.37482],
+ [-0.97157, 47.35845],
+ [-1.28339, 47.32736],
+ [-1.23379, 47.26093],
+ [-1.20032, 47.26935],
+ [-1.16498, 47.24957],
+ [-1.14143, 47.1763],
+ [-1.1563, 47.15818],
+ [-1.20652, 47.12402],
+ [-1.20838, 47.10968],
+ [-1.15568, 47.10504],
+ [-1.14081, 47.08056],
+ [-1.09431, 47.0717],
+ [-1.09989, 47.03199],
+ [-1.14453, 47.01636],
+ [-1.21582, 47.02904],
+ [-1.26727, 47.06325],
+ [-1.28524, 47.02185],
+ [-1.34972, 47.02397],
+ [-1.33918, 46.969],
+ [-1.3491, 46.94446],
+ [-1.45014, 46.91186],
+ [-1.47504, 46.9176],
+ [-1.48775, 46.93063],
+ [-1.49235, 46.98433],
+ [-1.48644, 46.99943],
+ [-1.49213, 47.02722],
+ [-1.52764, 47.00541],
+ [-1.52961, 46.97252],
+ [-1.50507, 46.94439],
+ [-1.50222, 46.92973],
+ [-1.51142, 46.91371],
+ [-1.48622, 46.89724],
+ [-1.48638, 46.87691]
+ ]
+ ],
+ "terms_url": "http://data.loire-atlantique.fr/licence",
+ "terms_text": "Département de Loire-Atlantique"
+ },
+ {
+ "id": "Lombardia-Italy-CTR-DBT",
+ "name": "Lombardia - Italy (CTR DBT)",
+ "type": "wms",
+ "template": "https://www.cartografia.servizirl.it/arcgis/services/wms/ctr_wms/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Sfondo%20C.T.R.%2010000&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [8.4816, 45.28938],
+ [8.63085, 45.01372],
+ [8.78009, 44.98189],
+ [8.86775, 45.02712],
+ [9.07148, 44.80063],
+ [9.14966, 44.79055],
+ [9.19467, 44.67106],
+ [9.31549, 44.65758],
+ [9.36997, 44.698],
+ [9.37945, 44.82752],
+ [9.33207, 44.91483],
+ [9.41025, 45.03716],
+ [9.78692, 45.04386],
+ [9.78692, 45.00032],
+ [9.93853, 45.002],
+ [9.93379, 45.08903],
+ [10.00013, 45.09071],
+ [10.00013, 44.99697],
+ [10.20149, 45.002],
+ [10.20149, 44.95004],
+ [10.40523, 44.9534],
+ [10.40523, 44.90476],
+ [10.49288, 44.90308],
+ [10.49288, 44.8628],
+ [10.6516, 44.85776],
+ [10.64686, 44.90308],
+ [11.35282, 44.89469],
+ [11.35519, 44.93663],
+ [11.45706, 44.93328],
+ [11.44758, 44.97351],
+ [11.3623, 45.00032],
+ [11.35282, 45.09238],
+ [11.25806, 45.09572],
+ [11.25806, 45.13752],
+ [11.16094, 45.14253],
+ [11.16094, 45.18262],
+ [11.05196, 45.19097],
+ [11.05196, 45.23436],
+ [10.9572, 45.23269],
+ [10.9572, 45.28605],
+ [10.8577, 45.28438],
+ [10.85534, 45.32271],
+ [10.74636, 45.32937],
+ [10.75347, 45.47408],
+ [10.64686, 45.48073],
+ [10.60301, 45.51074],
+ [10.57636, 45.47379],
+ [10.53549, 45.50036],
+ [10.59116, 45.53148],
+ [10.61666, 45.61304],
+ [10.87429, 45.84001],
+ [10.82217, 45.85982],
+ [10.67529, 45.85817],
+ [10.57342, 45.8103],
+ [10.58624, 46.00773],
+ [10.5016, 46.01596],
+ [10.59325, 46.11529],
+ [10.60896, 46.35583],
+ [10.65634, 46.38688],
+ [10.64686, 46.46037],
+ [10.4147, 46.57285],
+ [10.32705, 46.56797],
+ [10.25124, 46.65422],
+ [10.07357, 46.62494],
+ [10.02382, 46.53212],
+ [10.02855, 46.43588],
+ [10.07357, 46.39832],
+ [10.12095, 46.39669],
+ [10.0783, 46.32802],
+ [10.14464, 46.26582],
+ [10.10436, 46.24781],
+ [9.97407, 46.40812],
+ [9.71111, 46.3689],
+ [9.68742, 46.32312],
+ [9.61872, 46.30675],
+ [9.55712, 46.32475],
+ [9.50264, 46.39015],
+ [9.47895, 46.5256],
+ [9.25626, 46.51582],
+ [9.22546, 46.44078],
+ [9.27284, 46.34438],
+ [9.17098, 46.19044],
+ [9.04305, 46.12808],
+ [9.062, 46.09195],
+ [8.97435, 46.04593],
+ [8.98856, 46.00152],
+ [8.93882, 45.97354],
+ [9.04068, 45.8961],
+ [9.01936, 45.84827],
+ [8.84879, 46.0081],
+ [8.89854, 46.07059],
+ [8.8251, 46.11823],
+ [8.70902, 46.11659],
+ [8.67823, 46.07552],
+ [8.7185, 46.01468],
+ [8.55504, 45.90434],
+ [8.59768, 45.83836],
+ [8.53372, 45.79378],
+ [8.6877, 45.49235],
+ [8.78009, 45.41591],
+ [8.68533, 45.37931],
+ [8.71139, 45.34103],
+ [8.69481, 45.32104],
+ [8.62848, 45.37765],
+ [8.5124, 45.35768],
+ [8.4816, 45.28938]
+ ]
+ ],
+ "terms_url": "https://www.dati.gov.it/content/italian-open-data-license-v20",
+ "terms_text": "CTR DBT 10000 Regione Lombardia"
+ },
+ {
+ "id": "Lombardia-Italy-CTR",
+ "name": "Lombardia - Italy (CTR)",
+ "type": "wms",
+ "template": "https://www.cartografia.regione.lombardia.it/ArcGIS10/services/wms/ctr_wms/MapServer/WMSServer?STYLES=&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=0&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [8.4816, 45.28938],
+ [8.63085, 45.01372],
+ [8.78009, 44.98189],
+ [8.86775, 45.02712],
+ [9.07148, 44.80063],
+ [9.14966, 44.79055],
+ [9.19467, 44.67106],
+ [9.31549, 44.65758],
+ [9.36997, 44.698],
+ [9.37945, 44.82752],
+ [9.33207, 44.91483],
+ [9.41025, 45.03716],
+ [9.78692, 45.04386],
+ [9.78692, 45.00032],
+ [9.93853, 45.002],
+ [9.93379, 45.08903],
+ [10.00013, 45.09071],
+ [10.00013, 44.99697],
+ [10.20149, 45.002],
+ [10.20149, 44.95004],
+ [10.40523, 44.9534],
+ [10.40523, 44.90476],
+ [10.49288, 44.90308],
+ [10.49288, 44.8628],
+ [10.6516, 44.85776],
+ [10.64686, 44.90308],
+ [11.35282, 44.89469],
+ [11.35519, 44.93663],
+ [11.45706, 44.93328],
+ [11.44758, 44.97351],
+ [11.3623, 45.00032],
+ [11.35282, 45.09238],
+ [11.25806, 45.09572],
+ [11.25806, 45.13752],
+ [11.16094, 45.14253],
+ [11.16094, 45.18262],
+ [11.05196, 45.19097],
+ [11.05196, 45.23436],
+ [10.9572, 45.23269],
+ [10.9572, 45.28605],
+ [10.8577, 45.28438],
+ [10.85534, 45.32271],
+ [10.74636, 45.32937],
+ [10.75347, 45.47408],
+ [10.64686, 45.48073],
+ [10.60301, 45.51074],
+ [10.57636, 45.47379],
+ [10.53549, 45.50036],
+ [10.59116, 45.53148],
+ [10.61666, 45.61304],
+ [10.87429, 45.84001],
+ [10.82217, 45.85982],
+ [10.67529, 45.85817],
+ [10.57342, 45.8103],
+ [10.58624, 46.00773],
+ [10.5016, 46.01596],
+ [10.59325, 46.11529],
+ [10.60896, 46.35583],
+ [10.65634, 46.38688],
+ [10.64686, 46.46037],
+ [10.4147, 46.57285],
+ [10.32705, 46.56797],
+ [10.25124, 46.65422],
+ [10.07357, 46.62494],
+ [10.02382, 46.53212],
+ [10.02855, 46.43588],
+ [10.07357, 46.39832],
+ [10.12095, 46.39669],
+ [10.0783, 46.32802],
+ [10.14464, 46.26582],
+ [10.10436, 46.24781],
+ [9.97407, 46.40812],
+ [9.71111, 46.3689],
+ [9.68742, 46.32312],
+ [9.61872, 46.30675],
+ [9.55712, 46.32475],
+ [9.50264, 46.39015],
+ [9.47895, 46.5256],
+ [9.25626, 46.51582],
+ [9.22546, 46.44078],
+ [9.27284, 46.34438],
+ [9.17098, 46.19044],
+ [9.04305, 46.12808],
+ [9.062, 46.09195],
+ [8.97435, 46.04593],
+ [8.98856, 46.00152],
+ [8.93882, 45.97354],
+ [9.04068, 45.8961],
+ [9.01936, 45.84827],
+ [8.84879, 46.0081],
+ [8.89854, 46.07059],
+ [8.8251, 46.11823],
+ [8.70902, 46.11659],
+ [8.67823, 46.07552],
+ [8.7185, 46.01468],
+ [8.55504, 45.90434],
+ [8.59768, 45.83836],
+ [8.53372, 45.79378],
+ [8.6877, 45.49235],
+ [8.78009, 45.41591],
+ [8.68533, 45.37931],
+ [8.71139, 45.34103],
+ [8.69481, 45.32104],
+ [8.62848, 45.37765],
+ [8.5124, 45.35768],
+ [8.4816, 45.28938]
+ ]
+ ],
+ "terms_url": "https://www.dati.gov.it/content/italian-open-data-license-v20",
+ "terms_text": "Regione Lombardia - Infrastruttura per l'informazione territoriale"
+ },
+ {
+ "id": "londrina2011",
+ "name": "Londrina Ortofoto 2011",
+ "type": "tms",
+ "template": "https://siglon.londrina.pr.gov.br/arcgis/rest/services/Imagens/Ortofotos_2011_Paranacidade/MapServer/WMTS/tile/1.0.0/Imagens_Ortofotos_2011_Paranacidade/default/GoogleMapsCompatible/{zoom}/{y}/{x}",
+ "endDate": "2011-01-01T00:00:00.000Z",
+ "startDate": "2011-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [-51.10903, -23.39275],
+ [-51.11015, -23.39112],
+ [-51.11198, -23.3896],
+ [-51.11358, -23.38977],
+ [-51.121, -23.38593],
+ [-51.12225, -23.38511],
+ [-51.12483, -23.3835],
+ [-51.12538, -23.38187],
+ [-51.12482, -23.3777],
+ [-51.12446, -23.37505],
+ [-51.12437, -23.3723],
+ [-51.12244, -23.37033],
+ [-51.12302, -23.36643],
+ [-51.12856, -23.36548],
+ [-51.12832, -23.35884],
+ [-51.12477, -23.35476],
+ [-51.12703, -23.35091],
+ [-51.12412, -23.3468],
+ [-51.12025, -23.34781],
+ [-51.11765, -23.33969],
+ [-51.11265, -23.34129],
+ [-51.1094, -23.33489],
+ [-51.10756, -23.33409],
+ [-51.10486, -23.33398],
+ [-51.10253, -23.33419],
+ [-51.09987, -23.33102],
+ [-51.09801, -23.32936],
+ [-51.09999, -23.32831],
+ [-51.10323, -23.32532],
+ [-51.10473, -23.32319],
+ [-51.10466, -23.32129],
+ [-51.10515, -23.31844],
+ [-51.10636, -23.31575],
+ [-51.10661, -23.31467],
+ [-51.1105, -23.31167],
+ [-51.11158, -23.30842],
+ [-51.0995, -23.30947],
+ [-51.0974, -23.30863],
+ [-51.09512, -23.30745],
+ [-51.09202, -23.30494],
+ [-51.09036, -23.30371],
+ [-51.09205, -23.29875],
+ [-51.09269, -23.2975],
+ [-51.09408, -23.29295],
+ [-51.10074, -23.29332],
+ [-51.10102, -23.28871],
+ [-51.10068, -23.28837],
+ [-51.10085, -23.28778],
+ [-51.09938, -23.28664],
+ [-51.09632, -23.27791],
+ [-51.10285, -23.27302],
+ [-51.10836, -23.27034],
+ [-51.1131, -23.2684],
+ [-51.1316, -23.26534],
+ [-51.13188, -23.26201],
+ [-51.13173, -23.25506],
+ [-51.1329, -23.25468],
+ [-51.13296, -23.25075],
+ [-51.13474, -23.25127],
+ [-51.13534, -23.25133],
+ [-51.13517, -23.24359],
+ [-51.13535, -23.24118],
+ [-51.13752, -23.24219],
+ [-51.13885, -23.2435],
+ [-51.14109, -23.24521],
+ [-51.14717, -23.24318],
+ [-51.14761, -23.23828],
+ [-51.14908, -23.23588],
+ [-51.14977, -23.23681],
+ [-51.15139, -23.23854],
+ [-51.15289, -23.23884],
+ [-51.15384, -23.23895],
+ [-51.1582, -23.23814],
+ [-51.16045, -23.23816],
+ [-51.16035, -23.24658],
+ [-51.15912, -23.24783],
+ [-51.16131, -23.24777],
+ [-51.16659, -23.24594],
+ [-51.17193, -23.24582],
+ [-51.17205, -23.24956],
+ [-51.17424, -23.2484],
+ [-51.17514, -23.24932],
+ [-51.17686, -23.24816],
+ [-51.17947, -23.25169],
+ [-51.18135, -23.25381],
+ [-51.18274, -23.25363],
+ [-51.18379, -23.25326],
+ [-51.18496, -23.2533],
+ [-51.18627, -23.25215],
+ [-51.18665, -23.24748],
+ [-51.19118, -23.24914],
+ [-51.19142, -23.25286],
+ [-51.19369, -23.25278],
+ [-51.19384, -23.26074],
+ [-51.20097, -23.26055],
+ [-51.20127, -23.2426],
+ [-51.20994, -23.24278],
+ [-51.2109, -23.26988],
+ [-51.21969, -23.27222],
+ [-51.22597, -23.27453],
+ [-51.22934, -23.2786],
+ [-51.23452, -23.2816],
+ [-51.23498, -23.28325],
+ [-51.23507, -23.28544],
+ [-51.23371, -23.2859],
+ [-51.23216, -23.28802],
+ [-51.2287, -23.29229],
+ [-51.2274, -23.2946],
+ [-51.22679, -23.29548],
+ [-51.2256, -23.29657],
+ [-51.22393, -23.29721],
+ [-51.22048, -23.30073],
+ [-51.21864, -23.3013],
+ [-51.21668, -23.30212],
+ [-51.21424, -23.30441],
+ [-51.21097, -23.30697],
+ [-51.22328, -23.3183],
+ [-51.22439, -23.31459],
+ [-51.22521, -23.31289],
+ [-51.22512, -23.31258],
+ [-51.22521, -23.31251],
+ [-51.22553, -23.31253],
+ [-51.22595, -23.31239],
+ [-51.22617, -23.31183],
+ [-51.22936, -23.31489],
+ [-51.22802, -23.31661],
+ [-51.22789, -23.31902],
+ [-51.22767, -23.32023],
+ [-51.22723, -23.32151],
+ [-51.22739, -23.32223],
+ [-51.22725, -23.32285],
+ [-51.23033, -23.32558],
+ [-51.23046, -23.32671],
+ [-51.22954, -23.32789],
+ [-51.22916, -23.3305],
+ [-51.22929, -23.33178],
+ [-51.22681, -23.33447],
+ [-51.22602, -23.33657],
+ [-51.22473, -23.33839],
+ [-51.2221, -23.34023],
+ [-51.22257, -23.34196],
+ [-51.22381, -23.34339],
+ [-51.22384, -23.34531],
+ [-51.22441, -23.347],
+ [-51.22454, -23.34829],
+ [-51.22404, -23.34968],
+ [-51.22351, -23.35011],
+ [-51.22382, -23.35077],
+ [-51.22305, -23.35174],
+ [-51.2226, -23.35296],
+ [-51.22587, -23.35481],
+ [-51.2265, -23.36706],
+ [-51.22354, -23.36915],
+ [-51.22367, -23.37968],
+ [-51.22038, -23.38163],
+ [-51.21647, -23.3817],
+ [-51.21416, -23.37995],
+ [-51.20928, -23.37395],
+ [-51.20738, -23.36814],
+ [-51.20629, -23.36723],
+ [-51.20472, -23.36627],
+ [-51.19823, -23.36668],
+ [-51.19297, -23.36651],
+ [-51.18986, -23.36544],
+ [-51.18806, -23.36464],
+ [-51.18718, -23.36453],
+ [-51.1858, -23.36374],
+ [-51.18304, -23.36359],
+ [-51.18071, -23.36376],
+ [-51.17907, -23.36158],
+ [-51.17764, -23.35836],
+ [-51.16684, -23.35626],
+ [-51.16614, -23.35854],
+ [-51.16476, -23.36039],
+ [-51.16077, -23.35922],
+ [-51.15983, -23.3666],
+ [-51.16204, -23.36861],
+ [-51.16276, -23.37416],
+ [-51.15845, -23.3758],
+ [-51.15505, -23.37631],
+ [-51.15396, -23.37903],
+ [-51.15299, -23.38105],
+ [-51.15119, -23.38208],
+ [-51.14917, -23.38251],
+ [-51.14722, -23.38216],
+ [-51.14518, -23.38259],
+ [-51.1441, -23.38376],
+ [-51.14512, -23.38808],
+ [-51.1418, -23.3894],
+ [-51.14031, -23.3888],
+ [-51.14068, -23.39161],
+ [-51.14127, -23.39354],
+ [-51.14094, -23.39443],
+ [-51.14046, -23.39536],
+ [-51.13939, -23.3951],
+ [-51.13739, -23.39315],
+ [-51.13609, -23.3898],
+ [-51.13429, -23.38976],
+ [-51.13216, -23.39007],
+ [-51.13172, -23.39286],
+ [-51.12259, -23.38864],
+ [-51.12228, -23.39166],
+ [-51.11883, -23.39317],
+ [-51.11568, -23.39335],
+ [-51.10903, -23.39275]
+ ],
+ [
+ [-51.13829, -23.41601],
+ [-51.13331, -23.41867],
+ [-51.13209, -23.41644],
+ [-51.13002, -23.41829],
+ [-51.12869, -23.41901],
+ [-51.12824, -23.42103],
+ [-51.12696, -23.42186],
+ [-51.12533, -23.42269],
+ [-51.12445, -23.42097],
+ [-51.12151, -23.42411],
+ [-51.12063, -23.42327],
+ [-51.11971, -23.42312],
+ [-51.11977, -23.42157],
+ [-51.1188, -23.42155],
+ [-51.11643, -23.42084],
+ [-51.11943, -23.41917],
+ [-51.11787, -23.41678],
+ [-51.11655, -23.41731],
+ [-51.1157, -23.4157],
+ [-51.11512, -23.41309],
+ [-51.11908, -23.41111],
+ [-51.1196, -23.4117],
+ [-51.12052, -23.41489],
+ [-51.12148, -23.41714],
+ [-51.12309, -23.41863],
+ [-51.12755, -23.41654],
+ [-51.12803, -23.4174],
+ [-51.1312, -23.41557],
+ [-51.1308, -23.41477],
+ [-51.13279, -23.41264],
+ [-51.13522, -23.41106],
+ [-51.13586, -23.41096],
+ [-51.13682, -23.41119],
+ [-51.13721, -23.41158],
+ [-51.1373, -23.41324],
+ [-51.13743, -23.41471],
+ [-51.13829, -23.41601]
+ ],
+ [
+ [-51.18929, -23.61469],
+ [-51.18869, -23.61385],
+ [-51.18818, -23.61339],
+ [-51.18731, -23.61302],
+ [-51.18629, -23.61314],
+ [-51.18402, -23.61396],
+ [-51.18349, -23.61397],
+ [-51.18183, -23.61284],
+ [-51.1814, -23.61344],
+ [-51.18063, -23.61314],
+ [-51.18001, -23.61409],
+ [-51.17866, -23.61329],
+ [-51.18065, -23.6106],
+ [-51.17972, -23.61018],
+ [-51.18062, -23.60849],
+ [-51.18212, -23.6085],
+ [-51.18261, -23.60775],
+ [-51.1832, -23.60804],
+ [-51.18415, -23.60628],
+ [-51.18511, -23.60666],
+ [-51.18649, -23.6047],
+ [-51.18902, -23.6061],
+ [-51.18821, -23.60742],
+ [-51.18919, -23.60802],
+ [-51.1889, -23.60953],
+ [-51.18962, -23.60993],
+ [-51.19119, -23.61119],
+ [-51.19015, -23.61245],
+ [-51.19054, -23.61276],
+ [-51.19029, -23.61378],
+ [-51.18929, -23.61469]
+ ],
+ [
+ [-51.08006, -23.52984],
+ [-51.07962, -23.52205],
+ [-51.08468, -23.52194],
+ [-51.08582, -23.52404],
+ [-51.08589, -23.52704],
+ [-51.08579, -23.52777],
+ [-51.0853, -23.52806],
+ [-51.08514, -23.52857],
+ [-51.08512, -23.52982],
+ [-51.08471, -23.53024],
+ [-51.08343, -23.53024],
+ [-51.0833, -23.52978],
+ [-51.08006, -23.52984]
+ ]
+ ],
+ "terms_url": "http://siglon.londrina.pr.gov.br",
+ "terms_text": "Prefeitura do Londrinas, PR"
+ },
+ {
+ "id": "LPI_NSW_Administrative_Boundaries_County",
+ "name": "LPI NSW Administrative Boundaries County",
+ "type": "wms",
+ "template": "https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=4&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE",
+ "projection": "EPSG:3857",
+ "scaleExtent": [1, 21],
+ "polygon": [
+ [
+ [159.00339, -31.48767],
+ [159.03789, -31.70558],
+ [159.31098, -31.85952],
+ [159.37278, -31.77892],
+ [159.17443, -31.4374],
+ [159.00339, -31.48767]
+ ],
+ [
+ [140.99865, -28.99893],
+ [148.9452, -28.99487],
+ [149.48562, -28.5615],
+ [150.29914, -28.53373],
+ [151.0954, -28.71792],
+ [151.39436, -28.97978],
+ [151.98941, -28.73557],
+ [151.92904, -28.49836],
+ [152.49246, -28.2353],
+ [153.57907, -28.14156],
+ [153.69692, -28.64983],
+ [153.25847, -30.97354],
+ [152.75437, -32.50849],
+ [151.90879, -33.05535],
+ [151.25834, -34.38081],
+ [151.01442, -35.11568],
+ [150.46154, -36.1203],
+ [150.41275, -36.61786],
+ [149.97847, -37.507],
+ [148.20135, -36.80566],
+ [148.07918, -36.81716],
+ [147.88542, -36.09019],
+ [147.69029, -36.04418],
+ [146.82844, -36.18868],
+ [145.23484, -35.98499],
+ [144.84457, -36.21492],
+ [144.51935, -36.1296],
+ [143.20218, -35.13174],
+ [142.47856, -34.81194],
+ [140.9937, -34.07017],
+ [141.0026, -34.01974],
+ [140.99865, -28.99893]
+ ]
+ ],
+ "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
+ "terms_text": "© Land and Property Information 2017",
+ "overlay": true
+ },
+ {
+ "id": "LPI_NSW_Administrative_Boundaries_LGA",
+ "name": "LPI NSW Administrative Boundaries LGA",
+ "type": "wms",
+ "template": "https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=6&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE",
+ "projection": "EPSG:3857",
+ "scaleExtent": [1, 21],
+ "polygon": [
+ [
+ [159.00339, -31.48767],
+ [159.03789, -31.70558],
+ [159.31098, -31.85952],
+ [159.37278, -31.77892],
+ [159.17443, -31.4374],
+ [159.00339, -31.48767]
+ ],
+ [
+ [140.99865, -28.99893],
+ [148.9452, -28.99487],
+ [149.48562, -28.5615],
+ [150.29914, -28.53373],
+ [151.0954, -28.71792],
+ [151.39436, -28.97978],
+ [151.98941, -28.73557],
+ [151.92904, -28.49836],
+ [152.49246, -28.2353],
+ [153.57907, -28.14156],
+ [153.69692, -28.64983],
+ [153.25847, -30.97354],
+ [152.75437, -32.50849],
+ [151.90879, -33.05535],
+ [151.25834, -34.38081],
+ [151.01442, -35.11568],
+ [150.46154, -36.1203],
+ [150.41275, -36.61786],
+ [149.97847, -37.507],
+ [148.20135, -36.80566],
+ [148.07918, -36.81716],
+ [147.88542, -36.09019],
+ [147.69029, -36.04418],
+ [146.82844, -36.18868],
+ [145.23484, -35.98499],
+ [144.84457, -36.21492],
+ [144.51935, -36.1296],
+ [143.20218, -35.13174],
+ [142.47856, -34.81194],
+ [140.9937, -34.07017],
+ [141.0026, -34.01974],
+ [140.99865, -28.99893]
+ ]
+ ],
+ "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
+ "terms_text": "© Land and Property Information 2017",
+ "overlay": true
+ },
+ {
+ "id": "LPI_NSW_Administrative_Boundaries_NPWS_Reserve",
+ "name": "LPI NSW Administrative Boundaries NPWS Reserve",
+ "type": "wms",
+ "template": "https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=1&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE",
+ "projection": "EPSG:3857",
+ "scaleExtent": [1, 21],
+ "polygon": [
+ [
+ [159.00339, -31.48767],
+ [159.03789, -31.70558],
+ [159.31098, -31.85952],
+ [159.37278, -31.77892],
+ [159.17443, -31.4374],
+ [159.00339, -31.48767]
+ ],
+ [
+ [140.99865, -28.99893],
+ [148.9452, -28.99487],
+ [149.48562, -28.5615],
+ [150.29914, -28.53373],
+ [151.0954, -28.71792],
+ [151.39436, -28.97978],
+ [151.98941, -28.73557],
+ [151.92904, -28.49836],
+ [152.49246, -28.2353],
+ [153.57907, -28.14156],
+ [153.69692, -28.64983],
+ [153.25847, -30.97354],
+ [152.75437, -32.50849],
+ [151.90879, -33.05535],
+ [151.25834, -34.38081],
+ [151.01442, -35.11568],
+ [150.46154, -36.1203],
+ [150.41275, -36.61786],
+ [149.97847, -37.507],
+ [148.20135, -36.80566],
+ [148.07918, -36.81716],
+ [147.88542, -36.09019],
+ [147.69029, -36.04418],
+ [146.82844, -36.18868],
+ [145.23484, -35.98499],
+ [144.84457, -36.21492],
+ [144.51935, -36.1296],
+ [143.20218, -35.13174],
+ [142.47856, -34.81194],
+ [140.9937, -34.07017],
+ [141.0026, -34.01974],
+ [140.99865, -28.99893]
+ ]
+ ],
+ "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
+ "terms_text": "© Land and Property Information 2017",
+ "overlay": true
+ },
+ {
+ "id": "LPI_NSW_Administrative_Boundaries_Parish",
+ "name": "LPI NSW Administrative Boundaries Parish",
+ "type": "wms",
+ "template": "https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=3&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE",
+ "projection": "EPSG:3857",
+ "scaleExtent": [1, 21],
+ "polygon": [
+ [
+ [159.00339, -31.48767],
+ [159.03789, -31.70558],
+ [159.31098, -31.85952],
+ [159.37278, -31.77892],
+ [159.17443, -31.4374],
+ [159.00339, -31.48767]
+ ],
+ [
+ [140.99865, -28.99893],
+ [148.9452, -28.99487],
+ [149.48562, -28.5615],
+ [150.29914, -28.53373],
+ [151.0954, -28.71792],
+ [151.39436, -28.97978],
+ [151.98941, -28.73557],
+ [151.92904, -28.49836],
+ [152.49246, -28.2353],
+ [153.57907, -28.14156],
+ [153.69692, -28.64983],
+ [153.25847, -30.97354],
+ [152.75437, -32.50849],
+ [151.90879, -33.05535],
+ [151.25834, -34.38081],
+ [151.01442, -35.11568],
+ [150.46154, -36.1203],
+ [150.41275, -36.61786],
+ [149.97847, -37.507],
+ [148.20135, -36.80566],
+ [148.07918, -36.81716],
+ [147.88542, -36.09019],
+ [147.69029, -36.04418],
+ [146.82844, -36.18868],
+ [145.23484, -35.98499],
+ [144.84457, -36.21492],
+ [144.51935, -36.1296],
+ [143.20218, -35.13174],
+ [142.47856, -34.81194],
+ [140.9937, -34.07017],
+ [141.0026, -34.01974],
+ [140.99865, -28.99893]
+ ]
+ ],
+ "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
+ "terms_text": "© Land and Property Information 2017",
+ "overlay": true
+ },
+ {
+ "id": "LPI_NSW_Administrative_Boundaries_StateForest",
+ "name": "LPI NSW Administrative Boundaries State Forest",
+ "type": "wms",
+ "template": "https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=2&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE",
+ "projection": "EPSG:3857",
+ "scaleExtent": [1, 21],
+ "polygon": [
+ [
+ [159.00339, -31.48767],
+ [159.03789, -31.70558],
+ [159.31098, -31.85952],
+ [159.37278, -31.77892],
+ [159.17443, -31.4374],
+ [159.00339, -31.48767]
+ ],
+ [
+ [140.99865, -28.99893],
+ [148.9452, -28.99487],
+ [149.48562, -28.5615],
+ [150.29914, -28.53373],
+ [151.0954, -28.71792],
+ [151.39436, -28.97978],
+ [151.98941, -28.73557],
+ [151.92904, -28.49836],
+ [152.49246, -28.2353],
+ [153.57907, -28.14156],
+ [153.69692, -28.64983],
+ [153.25847, -30.97354],
+ [152.75437, -32.50849],
+ [151.90879, -33.05535],
+ [151.25834, -34.38081],
+ [151.01442, -35.11568],
+ [150.46154, -36.1203],
+ [150.41275, -36.61786],
+ [149.97847, -37.507],
+ [148.20135, -36.80566],
+ [148.07918, -36.81716],
+ [147.88542, -36.09019],
+ [147.69029, -36.04418],
+ [146.82844, -36.18868],
+ [145.23484, -35.98499],
+ [144.84457, -36.21492],
+ [144.51935, -36.1296],
+ [143.20218, -35.13174],
+ [142.47856, -34.81194],
+ [140.9937, -34.07017],
+ [141.0026, -34.01974],
+ [140.99865, -28.99893]
+ ]
+ ],
+ "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
+ "terms_text": "© Land and Property Information 2017",
+ "overlay": true
+ },
+ {
+ "id": "LPI_NSW_Administrative_Boundaries_Suburb",
+ "name": "LPI NSW Administrative Boundaries Suburb",
+ "type": "wms",
+ "template": "https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=7&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE",
+ "projection": "EPSG:3857",
+ "scaleExtent": [1, 21],
+ "polygon": [
+ [
+ [159.00339, -31.48767],
+ [159.03789, -31.70558],
+ [159.31098, -31.85952],
+ [159.37278, -31.77892],
+ [159.17443, -31.4374],
+ [159.00339, -31.48767]
+ ],
+ [
+ [140.99865, -28.99893],
+ [148.9452, -28.99487],
+ [149.48562, -28.5615],
+ [150.29914, -28.53373],
+ [151.0954, -28.71792],
+ [151.39436, -28.97978],
+ [151.98941, -28.73557],
+ [151.92904, -28.49836],
+ [152.49246, -28.2353],
+ [153.57907, -28.14156],
+ [153.69692, -28.64983],
+ [153.25847, -30.97354],
+ [152.75437, -32.50849],
+ [151.90879, -33.05535],
+ [151.25834, -34.38081],
+ [151.01442, -35.11568],
+ [150.46154, -36.1203],
+ [150.41275, -36.61786],
+ [149.97847, -37.507],
+ [148.20135, -36.80566],
+ [148.07918, -36.81716],
+ [147.88542, -36.09019],
+ [147.69029, -36.04418],
+ [146.82844, -36.18868],
+ [145.23484, -35.98499],
+ [144.84457, -36.21492],
+ [144.51935, -36.1296],
+ [143.20218, -35.13174],
+ [142.47856, -34.81194],
+ [140.9937, -34.07017],
+ [141.0026, -34.01974],
+ [140.99865, -28.99893]
+ ]
+ ],
+ "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
+ "terms_text": "© Land and Property Information 2017",
+ "overlay": true
+ },
+ {
+ "id": "NSW_LPI_BaseMap",
+ "name": "LPI NSW Base Map",
+ "type": "tms",
+ "template": "https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Base_Map/MapServer/tile/{zoom}/{y}/{x}",
+ "scaleExtent": [1, 19],
+ "polygon": [
+ [
+ [140.99486, -28.95297],
+ [148.96114, -28.89977],
+ [148.98701, -28.48623],
+ [151.01361, -28.47865],
+ [151.10847, -28.70329],
+ [151.87599, -28.68312],
+ [151.93348, -28.40788],
+ [152.25544, -28.23327],
+ [153.06608, -28.21047],
+ [153.14082, -28.1091],
+ [153.47351, -28.11648],
+ [153.35765, -27.69361],
+ [159.49383, -27.69925],
+ [159.4857, -37.84741],
+ [149.52569, -37.82815],
+ [149.91596, -37.487],
+ [148.04859, -36.81317],
+ [147.9681, -36.15679],
+ [146.71477, -36.28666],
+ [145.30046, -36.15679],
+ [144.53007, -36.14751],
+ [142.8398, -35.02543],
+ [142.35686, -34.78025],
+ [141.97741, -34.40162],
+ [140.99503, -34.13718],
+ [140.99486, -28.95297]
+ ]
+ ],
+ "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
+ "terms_text": "© Land and Property Information 2017"
+ },
+ {
+ "id": "NSW_LPI_Imagery",
+ "name": "LPI NSW Imagery",
+ "type": "tms",
+ "template": "https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Imagery/MapServer/tile/{zoom}/{y}/{x}",
+ "scaleExtent": [1, 21],
+ "polygon": [
+ [
+ [140.98687, -28.98878],
+ [148.99515, -28.97275],
+ [148.99667, -28.49151],
+ [151.0029, -28.49307],
+ [151.0029, -28.72617],
+ [151.49151, -28.73239],
+ [151.49187, -28.71553],
+ [151.92282, -28.71964],
+ [151.92516, -28.48971],
+ [151.99559, -28.48987],
+ [151.99899, -28.11927],
+ [152.49676, -28.12209],
+ [152.49682, -28.11464],
+ [153.00446, -28.11544],
+ [153.00446, -28.1204],
+ [153.50386, -28.11934],
+ [153.50393, -28.12271],
+ [153.59194, -28.12236],
+ [153.59266, -28.17769],
+ [153.61112, -28.17579],
+ [153.61139, -28.18252],
+ [153.74268, -28.21621],
+ [153.77873, -28.71091],
+ [152.6238, -32.58772],
+ [152.3124, -32.63288],
+ [151.41419, -33.57904],
+ [150.89299, -35.26487],
+ [150.46207, -35.77773],
+ [150.01565, -37.51036],
+ [149.99181, -37.51268],
+ [149.51978, -37.51307],
+ [149.51996, -37.52169],
+ [149.4463, -37.53537],
+ [149.06334, -37.5358],
+ [148.98366, -37.52176],
+ [148.98169, -37.5192],
+ [148.98638, -37.2585],
+ [148.48754, -37.26585],
+ [148.48248, -37.00927],
+ [147.99439, -37.01434],
+ [147.98829, -36.53322],
+ [147.95297, -36.52607],
+ [147.94865, -36.0686],
+ [147.5035, -36.07168],
+ [147.50477, -36.2651],
+ [146.492, -36.26613],
+ [146.49225, -36.2565],
+ [145.99298, -36.25343],
+ [145.99659, -36.01881],
+ [145.98316, -36.01871],
+ [145.96245, -36.0219],
+ [145.94624, -36.01209],
+ [145.94543, -36.00603],
+ [145.50415, -36.00136],
+ [145.50379, -36.01091],
+ [145.0072, -36.00362],
+ [145.00354, -36.15204],
+ [144.48608, -36.14231],
+ [144.48741, -36.01375],
+ [143.98747, -36.00241],
+ [143.99329, -35.57238],
+ [143.49717, -35.58371],
+ [143.4918, -35.40656],
+ [143.46134, -35.36749],
+ [143.45856, -35.35559],
+ [143.48978, -35.33965],
+ [143.48955, -35.33221],
+ [143.4317, -35.25706],
+ [143.25055, -35.26066],
+ [143.24384, -35.01327],
+ [142.99333, -35.01772],
+ [142.99198, -34.79619],
+ [142.49714, -34.80323],
+ [142.49732, -34.80076],
+ [142.42114, -34.80176],
+ [142.42092, -34.78383],
+ [142.23309, -34.78592],
+ [142.23077, -34.78075],
+ [142.227, -34.50613],
+ [141.99753, -34.50837],
+ [141.9946, -34.25267],
+ [141.49823, -34.25569],
+ [141.49817, -34.25228],
+ [140.99454, -34.25284],
+ [140.98687, -28.98878]
+ ]
+ ],
+ "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
+ "terms_text": "© Land and Property Information 2017",
+ "best": true
+ },
+ {
+ "id": "NSW_LPI_Imagery_Dates",
+ "name": "LPI NSW Imagery Dates",
+ "type": "wms",
+ "template": "https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Imagery_Dates/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=0&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE",
+ "projection": "EPSG:3857",
+ "scaleExtent": [0, 21],
+ "polygon": [
+ [
+ [140.98687, -28.98878],
+ [148.99515, -28.97275],
+ [148.99667, -28.49151],
+ [151.0029, -28.49307],
+ [151.0029, -28.72617],
+ [151.49151, -28.73239],
+ [151.49187, -28.71553],
+ [151.92282, -28.71964],
+ [151.92516, -28.48971],
+ [151.99559, -28.48987],
+ [151.99899, -28.11927],
+ [152.49676, -28.12209],
+ [152.49682, -28.11464],
+ [153.00446, -28.11544],
+ [153.00446, -28.1204],
+ [153.50386, -28.11934],
+ [153.50393, -28.12271],
+ [153.59194, -28.12236],
+ [153.59266, -28.17769],
+ [153.61112, -28.17579],
+ [153.61139, -28.18252],
+ [153.74268, -28.21621],
+ [153.77873, -28.71091],
+ [152.6238, -32.58772],
+ [152.3124, -32.63288],
+ [151.41419, -33.57904],
+ [150.89299, -35.26487],
+ [150.46207, -35.77773],
+ [150.01565, -37.51036],
+ [149.99181, -37.51268],
+ [149.51978, -37.51307],
+ [149.51996, -37.52169],
+ [149.4463, -37.53537],
+ [149.06334, -37.5358],
+ [148.98366, -37.52176],
+ [148.98169, -37.5192],
+ [148.98638, -37.2585],
+ [148.48754, -37.26585],
+ [148.48248, -37.00927],
+ [147.99439, -37.01434],
+ [147.98829, -36.53322],
+ [147.95297, -36.52607],
+ [147.94865, -36.0686],
+ [147.5035, -36.07168],
+ [147.50477, -36.2651],
+ [146.492, -36.26613],
+ [146.49225, -36.2565],
+ [145.99298, -36.25343],
+ [145.99659, -36.01881],
+ [145.98316, -36.01871],
+ [145.96245, -36.0219],
+ [145.94624, -36.01209],
+ [145.94543, -36.00603],
+ [145.50415, -36.00136],
+ [145.50379, -36.01091],
+ [145.0072, -36.00362],
+ [145.00354, -36.15204],
+ [144.48608, -36.14231],
+ [144.48741, -36.01375],
+ [143.98747, -36.00241],
+ [143.99329, -35.57238],
+ [143.49717, -35.58371],
+ [143.4918, -35.40656],
+ [143.46134, -35.36749],
+ [143.45856, -35.35559],
+ [143.48978, -35.33965],
+ [143.48955, -35.33221],
+ [143.4317, -35.25706],
+ [143.25055, -35.26066],
+ [143.24384, -35.01327],
+ [142.99333, -35.01772],
+ [142.99198, -34.79619],
+ [142.49714, -34.80323],
+ [142.49732, -34.80076],
+ [142.42114, -34.80176],
+ [142.42092, -34.78383],
+ [142.23309, -34.78592],
+ [142.23077, -34.78075],
+ [142.227, -34.50613],
+ [141.99753, -34.50837],
+ [141.9946, -34.25267],
+ [141.49823, -34.25569],
+ [141.49817, -34.25228],
+ [140.99454, -34.25284],
+ [140.98687, -28.98878]
+ ]
+ ],
+ "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
+ "terms_text": "© Land and Property Information 2017",
+ "overlay": true
+ },
+ {
+ "id": "NSW_LPI_TopographicMap",
+ "name": "LPI NSW Topographic Map",
+ "type": "tms",
+ "template": "https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Topo_Map/MapServer/tile/{zoom}/{y}/{x}",
+ "scaleExtent": [1, 16],
+ "polygon": [
+ [
+ [140.99884, -28.99924],
+ [148.95024, -28.99937],
+ [148.94988, -28.96653],
+ [148.99983, -28.96653],
+ [149.00009, -28.81658],
+ [149.10007, -28.81658],
+ [149.0997, -28.74885],
+ [148.99985, -28.74974],
+ [148.99982, -28.50003],
+ [151.00005, -28.50052],
+ [151.00059, -28.73258],
+ [151.02395, -28.73274],
+ [151.02413, -28.74188],
+ [151.03293, -28.74188],
+ [151.03383, -28.75054],
+ [151.99998, -28.74953],
+ [151.99998, -28.71645],
+ [152.0334, -28.71661],
+ [152.03322, -28.6832],
+ [152.00007, -28.68335],
+ [151.99988, -28.64163],
+ [151.98299, -28.64139],
+ [151.98317, -28.62491],
+ [151.93313, -28.62475],
+ [151.93341, -28.50007],
+ [151.99989, -28.50023],
+ [151.99986, -28.37496],
+ [152.24997, -28.37507],
+ [152.24994, -28.25001],
+ [152.99972, -28.24986],
+ [152.9999, -28.28324],
+ [153.1165, -28.2834],
+ [153.11659, -28.24986],
+ [153.16663, -28.25001],
+ [153.16672, -28.23316],
+ [153.24999, -28.23324],
+ [153.25003, -28.12497],
+ [153.62496, -28.12508],
+ [153.62484, -28.49991],
+ [153.7498, -28.49999],
+ [153.74959, -28.7498],
+ [153.62481, -28.75011],
+ [153.62497, -28.99993],
+ [153.49977, -29.00006],
+ [153.49984, -29.49951],
+ [153.3748, -29.50005],
+ [153.37541, -29.87503],
+ [153.49991, -29.87514],
+ [153.49991, -30.00009],
+ [153.24989, -29.99976],
+ [153.25002, -30.19177],
+ [153.27482, -30.19162],
+ [153.27482, -30.21685],
+ [153.21661, -30.21661],
+ [153.21661, -30.25006],
+ [153.25002, -30.25006],
+ [153.24975, -30.37519],
+ [153.12436, -30.37497],
+ [153.12465, -30.62504],
+ [153.03317, -30.62505],
+ [153.03339, -30.87508],
+ [153.12492, -30.87503],
+ [153.12493, -31.12505],
+ [153.00824, -31.12497],
+ [153.00829, -31.24998],
+ [153, -31.25],
+ [152.99994, -31.62499],
+ [152.87494, -31.62505],
+ [152.87496, -31.74995],
+ [152.78329, -31.75],
+ [152.7832, -31.87486],
+ [152.74991, -31.87501],
+ [152.75004, -32.00002],
+ [152.6249, -31.99994],
+ [152.62491, -32.5],
+ [152.49998, -32.49996],
+ [152.50003, -32.56664],
+ [152.41667, -32.56634],
+ [152.41676, -32.625],
+ [152.34985, -32.62499],
+ [152.34985, -32.63323],
+ [152.28308, -32.63322],
+ [152.28326, -32.62498],
+ [152.24948, -32.62498],
+ [152.24981, -32.87491],
+ [151.87457, -32.87504],
+ [151.87485, -33.00001],
+ [151.74977, -33.00015],
+ [151.75047, -33.25004],
+ [151.62524, -33.24974],
+ [151.62508, -33.37516],
+ [151.49958, -33.37514],
+ [151.50031, -33.62494],
+ [151.37415, -33.62437],
+ [151.37279, -34.00196],
+ [151.24778, -34.00112],
+ [151.24778, -34.24931],
+ [150.99573, -34.25015],
+ [151.00081, -34.62483],
+ [150.87174, -34.6265],
+ [150.87276, -35.12427],
+ [150.76706, -35.12344],
+ [150.76909, -35.24638],
+ [150.62579, -35.2497],
+ [150.62803, -35.37515],
+ [150.49997, -35.37515],
+ [150.49591, -35.6275],
+ [150.37192, -35.62503],
+ [150.37497, -35.7538],
+ [150.26724, -35.75132],
+ [150.2652, -35.87412],
+ [150.24792, -35.87083],
+ [150.24589, -36.37488],
+ [150.12292, -36.37488],
+ [150.12597, -36.62243],
+ [150.02535, -36.62407],
+ [150.0284, -36.74713],
+ [149.99283, -36.74958],
+ [150.00401, -37.12245],
+ [150.05889, -37.12731],
+ [150.05686, -37.37809],
+ [149.99791, -37.37324],
+ [149.99994, -37.48301],
+ [149.98774, -37.48462],
+ [149.98571, -37.508],
+ [148.06846, -36.80624],
+ [147.99306, -36.138],
+ [147.81483, -36.00556],
+ [147.38939, -36.01137],
+ [147.38221, -36.13103],
+ [146.99725, -36.12755],
+ [146.98863, -36.25283],
+ [146.49564, -36.24471],
+ [146.50426, -36.12639],
+ [145.00118, -36.00795],
+ [145.01541, -36.25421],
+ [144.50725, -36.24765],
+ [144.49912, -36.0211],
+ [143.99654, -35.98105],
+ [143.33826, -35.23318],
+ [142.40976, -34.76694],
+ [142.03614, -34.37588],
+ [140.99652, -34.13858],
+ [140.99884, -28.99924]
+ ]
+ ],
+ "terms_url": "http://spatialservices.finance.nsw.gov.au/mapping_and_imagery/lpi_web_services",
+ "terms_text": "© Land and Property Information 2017"
+ },
+ {
+ "id": "orthophoto_lyon_2012",
+ "name": "Lyon Orthophoto 2012-03 10cm",
+ "type": "wms",
+ "template": "https://download.data.grandlyon.com/wms/grandlyon?language=fre&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=1830_5150_10cm_CC46,1830_5155_10cm_CC46,1830_5160_10cm_CC46,1830_5165_10cm_CC46,1830_5170_10cm_CC46,1830_5175_10cm_CC46,1830_5180_10cm_CC46,1830_5185_10cm_CC46,1830_5190_10cm_CC46,1835_5150_10cm_CC46,1835_5155_10cm_CC46,1835_5160_10cm_CC46,1835_5165_10cm_CC46,1835_5170_10cm_CC46,1835_5175_10cm_CC46,1835_5180_10cm_CC46,1835_5185_10cm_CC46,1835_5190_10cm_CC46,1840_5150_10cm_CC46,1840_5155_10cm_CC46,1840_5160_10cm_CC46,1840_5165_10cm_CC46,1840_5170_10cm_CC46,1840_5175_10cm_CC46,1840_5180_10cm_CC46,1840_5185_10cm_CC46,1840_5190_10cm_CC46,1845_5150_10cm_CC46,1845_5155_10cm_CC46,1845_5160_10cm_CC46,1845_5165_10cm_CC46,1845_5170_10cm_CC46,1845_5175_10cm_CC46,1845_5180_10cm_CC46,1845_5185_10cm_CC46,1845_5190_10cm_CC46,1850_5155_10cm_CC46,1850_5160_10cm_CC46,1850_5165_10cm_CC46,1850_5170_10cm_CC46,1850_5175_10cm_CC46,1850_5180_10cm_CC46,1850_5185_10cm_CC46,1855_5155_10cm_CC46,1855_5165_10cm_CC46,1855_5170_10cm_CC46,1855_5175_10cm_CC46,1855_5180_10cm_CC46,1855_5185_10cm_CC46,1860_5155_10cm_CC46,1860_5160_10cm_CC46,1860_5165_10cm_CC46,1860_5170_10cm_CC46,1860_5175_10cm_CC46,1860_5180_10cm_CC46,1860_5185_10cm_CC46,1865_5155_10cm_CC46,1865_5160_10cm_CC46,1865_5165_10cm_CC46,1865_5170_10cm_CC46&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2012-03-01T00:00:00.000Z",
+ "startDate": "2012-03-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [4.69049, 45.54652],
+ [4.83131, 45.54652],
+ [4.83131, 45.57131],
+ [4.88344, 45.57131],
+ [4.88344, 45.59745],
+ [5.16622, 45.59745],
+ [5.16622, 45.74533],
+ [5.10793, 45.74533],
+ [5.10793, 45.88145],
+ [4.90698, 45.88145],
+ [4.90698, 45.92107],
+ [4.84377, 45.92107],
+ [4.84377, 45.94011],
+ [4.71543, 45.94011],
+ [4.71543, 45.87018],
+ [4.67458, 45.87018],
+ [4.67458, 45.7178],
+ [4.69567, 45.7178],
+ [4.69049, 45.54652]
+ ]
+ ],
+ "terms_url": "https://data.grandlyon.com/imagerie/orthophotographie-2012-du-grand-lyon",
+ "terms_text": "Grand Lyon Smart Data DSIT"
+ },
+ {
+ "id": "orthophoto_lyon_2015_8cm",
+ "name": "Lyon Orthophoto 2015-05 8cm",
+ "type": "wms",
+ "template": "https://download.data.grandlyon.com/wms/grandlyon?language=fre&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=1835_5155_8cm_CC46,1835_5160_8cm_CC46,1835_5165_8cm_CC46,1835_5170_8cm_CC46,1835_5180_8cm_CC46,1835_5175_8cm_CC46,1845_5175_8cm_CC46,1845_5180_8cm_CC46,1845_5185_8cm_CC46,1845_5190_8cm_CC46,1850_5165_8cm_CC46,1850_5160_8cm_CC46,1850_5155_8cm_CC46,1850_5170_8cm_CC46,1850_5175_8cm_CC46,1850_5180_8cm_CC46,1850_5185_8cm_CC46,1855_5155_8cm_CC46,1855_5160_8cm_CC46,1855_5185_8cm_CC46,1855_5180_8cm_CC46,1855_5175_8cm_CC46,1855_5170_8cm_CC46,1855_5165_8cm_CC46,1860_5160_8cm_CC46,1860_5155_8cm_CC46,1860_5165_8cm_CC46,1835_5185_8cm_CC46,1835_5190_8cm_CC46,1835_5195_8cm_CC46,1840_5160_8cm_CC46,1840_5155_8cm_CC46,1840_5150_8cm_CC46,1830_5195_8cm_CC46,1830_5190_8cm_CC46,1830_5175_8cm_CC46,1830_5170_8cm_CC46,1830_5165_8cm_CC46,1830_5160_8cm_CC46,1830_5155_8cm_CC46,1830_5180_8cm_CC46,1830_5185_8cm_CC46,1835_5150_8cm_CC46,1860_5170_8cm_CC46,1860_5175_8cm_CC46,1840_5180_8cm_CC46,1840_5175_8cm_CC46,1840_5185_8cm_CC46,1840_5190_8cm_CC46,1840_5195_8cm_CC46,1845_5150_8cm_CC46,1845_5155_8cm_CC46,1845_5160_8cm_CC46,1845_5170_8cm_CC46,1845_5165_8cm_CC46,1840_5170_8cm_CC46,1840_5165_8cm_CC46,1860_5180_8cm_CC46,1860_5185_8cm_CC46,1865_5155_8cm_CC46,1865_5160_8cm_CC46,1865_5165_8cm_CC46,1865_5170_8cm_CC46,1830_5150_8cm_CC46&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2015-05-01T00:00:00.000Z",
+ "startDate": "2015-05-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [4.66489, 45.54688],
+ [4.88253, 45.54348],
+ [4.88435, 45.59745],
+ [5.16623, 45.59242],
+ [5.17217, 45.74532],
+ [5.10793, 45.74653],
+ [5.11305, 45.88145],
+ [4.90698, 45.88508],
+ [4.90822, 45.92106],
+ [4.84377, 45.92212],
+ [4.84497, 45.9581],
+ [4.67729, 45.96069],
+ [4.66489, 45.54688]
+ ]
+ ],
+ "terms_url": "https://data.grandlyon.com/imagerie/orthophotographie-2015-du-grand-lyon",
+ "terms_text": "Métropole de Lyon DINSI",
+ "best": true
+ },
+ {
+ "id": "MainRoadsWA_Road_Hierarchy",
+ "name": "Main Roads WA Road Hierarchy",
+ "type": "wms",
+ "template": "https://services.slip.wa.gov.au/public/services/SLIP_Public_Services/Transport/MapServer/WMSServer?LAYERS=8&TRANSPARENT=TRUE&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&STYLES=&FORMAT=image%2Fpng&SRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}",
+ "projection": "EPSG:3857",
+ "scaleExtent": [0, 21],
+ "polygon": [
+ [
+ [129.00009, -31.68764],
+ [128.99872, -14.58225],
+ [127.08984, -12.29707],
+ [124.76074, -12.98315],
+ [121.24512, -15.70766],
+ [119.0918, -17.60214],
+ [115.53223, -18.85431],
+ [112.41211, -20.46819],
+ [111.24756, -22.83695],
+ [111.00586, -25.62172],
+ [111.64307, -29.66896],
+ [111.68701, -32.3614],
+ [112.14844, -34.47034],
+ [113.35693, -36.10238],
+ [116.98242, -36.70366],
+ [119.44336, -36.94989],
+ [122.27783, -36.61553],
+ [125.99121, -35.40696],
+ [127.59521, -34.57895],
+ [128.86963, -33.59632],
+ [129.00009, -31.68764]
+ ]
+ ],
+ "terms_url": "https://catalogue.data.wa.gov.au/dataset/clss-road-hierarchy",
+ "terms_text": "Main Roads Western Australia",
+ "overlay": true
+ },
+ {
+ "id": "mainzlatestaerialimagery",
+ "name": "Mainz latest aerial imagery",
+ "type": "wms",
+ "template": "https://gint.mainz.de/gint1-cgi/mapserv?map=/data/mapbender-int/umn-www/client/a62/luftbild.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Luftbild_f_mz_2016&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:4326",
+ "scaleExtent": [17, 22],
+ "polygon": [
+ [
+ [8.10355, 49.865],
+ [8.38356, 49.865],
+ [8.38356, 50.0466],
+ [8.10355, 50.0466],
+ [8.10355, 49.865]
+ ]
+ ],
+ "terms_url": "https://www.mainz.de/vv/oe/100140100000035141.php#tab-infos",
+ "terms_text": "Vermessung und Geoinformation Mainz",
+ "icon": "https://www.mainz.de/configuration.inc.php.media/27432/Logo-72px.png"
+ },
+ {
+ "id": "major_isidoro",
+ "name": "Major Isidoro AL",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Major%20Isidoro&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-36.94048, -9.57588],
+ [-36.94106, -9.48536],
+ [-37.03215, -9.48606],
+ [-37.03164, -9.57639],
+ [-36.94048, -9.57588]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "Mapbox",
+ "name": "Mapbox Satellite",
+ "type": "tms",
+ "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/openstreetmap/cj8gojt0i1eau2rnn7q4mdgu7/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJhNVlHd29ZIn0.ti6wATGDWOmCnCYen-Ip7Q",
+ "scaleExtent": [0, 22],
+ "terms_url": "https://www.mapbox.com/about/maps",
+ "terms_text": "Terms & Feedback",
+ "default": true,
+ "description": "Satellite and aerial imagery.",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAyAAAAC0CAYAAABsb0igAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAJhxJREFUeNrsnf9VG0kSx9u8/X91EawcwcoRMERgEYFFBEAEiAiACCRHgBwB4wgsR4A2ArQRcFOm5m6WRWgkdfdU93w+782T7x4r9VT/qm9XdbdzAAAAAAAAkfiACcLy/Pw8qD5GLf98+eHDhzVWAwAAAAAECLwlLobVx1AFhgiNP/Wz/v8PYaWP8L16RJgs5f+rRMoK6wMAAAAAAiR/sVGoyBg1REdXlCpIfrqXyMmSWgIAAAAABEjagmNcPccqPAbGi7xWUSLRkhJBAgAAAAAIEPuiQwTHZxUcw8RfZ6WC5FslRhbULgAAAAAgQGyJDvkcZPqaEh1ZIEYAAAAAAAHSjeiQ/RtfqmeSsejYJkbuSNMCAAAAAARIWOEhguPctT8WN3eWKkTmmAIAAAAAECB+RIdEOC5UeAyo8jeRqMhd9dxyDwkAAAAAIED2Ex7D6uPK5b23IwTz6rnmrhEAAAAAQIDsJjwmVC9CBAAAAAAQIKGEB6lWYbh2pGYBAAAAAALkH+JjUn3cIDyCIeJDoiG3mAIAAAAAeitAKuFRqPDgVKs4yKlZl5UQKTEFAAAAAPRGgGi6lezzuKAKO2GuQoS0LAAAAADIW4DozeUzR7pV14j4OONmdQAAAADIUoBo1EPSrSZUmykWKkSIhgAAAABAHgKkEh+yx+O+eoZUmUlWKkJKTAEAAAAASQuQSnzIPo8bqioJ5KSsKWYAAAAAgOQEiKZcyV6PMdWUFGX1nJKSBQAAAADJCBBNuRLxwfG6abJSEbLEFAAAsKcfcMgCZElaMAACZJdBp3Av+z045SptOCULAAD28QOG1cejh686QYQA2OTI2KAzqT4eEB9ZIHV4r3UKAADQFl/zRoEpARAg28SHbDSfUSXZMavqlnoFAAAAgF/8ZkR8iIM6oTqyZVLVsfvw4cMZpgAAAADoN51HQBAfvRIhREIAAAAAECCID0CEAAAAAEDmAgTxgQgBAAAAAAQI4gMQIQAAAACQjwBBfAAiBAAAAAABEkt8TBEf8EqE3GAGAAAAAARICPEhwuMKk8MrLrisEAAAAAAB4lt8jByXDMJm5LLCAjMAAAAAIEB8iI9h9fGAqWEL9ypUAQAAAAABsrf4GIhjWT0DTA1bkDYy0zYDAAAAAJnyW+Dvlw3GrGq/z7J61tWzqp6/NvzN7w07Fhnbok7VO6VZAAAAACBAdkI3Fk8w8b/ERlk9P+XfHz58WO5p24E66yJG/tTPXCIH4+r9Lirb3NJcAAAAABAgbR1kcY45XvWFRfV8E+FROdUrH19Yfc9ahUz5yuZfxIGvnmHiNrup3qfcV6ABAAAAgF1C7QGRNJo+5/KL0Lisnv9UTvRp9cx9iY93RIlEVC6r52P1Pz9Vj0QQ1gnbkP0gAAAAAAiQ7ejFcn3d91FWz4mIAEkh0khFdGoxUv1TxMiZCqLUkDbEvTEAAAAACJB3xUdRfVz00I5LFR7ylFYKJQJIoy+pCpEL7gcBAAAAQIC8R98uG5QIx1nl4H+yJDw2iJFaiFy6tFKzSMUCAAAAQID8m8pJnLr0Nz/vgmwul1SreUqF1tOlRIikUm5pU6RiAQAAACBA/iE++uQkSvTgVDeXJ7nJW1OzJCXrxKWRlnXBLekAAAAACJAmfUm9qvd6LHJ4GU0bkxOzUngfjnUGAAAAQID8in7IvRNFD2y1UPGR1d0UGg2Rm8cvjRe10MstAQAAAKDPAsT1Y2V6nnLKVUshIntDJCXL8juyFwQAAACgzwJEV6SHPRAfZ31oDJqSZVmEDPWwAwAAAADomwDRo1Fzj370Rnw0RMjS2d6cfs6xvAAAAADp8tsB/61cOJizI9g78dEUIZWTL5vTHw3W8UDb3pTu6w89yU6e0Tt1XlbP2uo+KD0prX6HtxBRvbJ+Z09kmxX6z+KdP1vps8w5DZU6gx3GmUFL+8t4s8Jqrew6aMw/7516Ke15qb4KY3nKvuYBDcWic+qLUm41Z0D4NdA+GKxnGYA+MrEePNjLARKfdSLdtY5l4P9WPYuuJlgVTc132IVV4x3KPrSlRp0f6wQ/2rPvyeT/Xet+SW8K3saLvtWZptr62PN3Xb3vlD5jciwq1J7H7v2FrzZjeW3fEvvmL0B8DQ4WqY/axbm1LUIOmlgM2nh8SJttezS0rp5+qZ6J5z5zp5PrOoK9JvoOhaevlDKL/b7mtqKmE31trxB36Rxku0b5Bgf8/jxEu9O+ckgbK/e0SS2sQ9VZLb7vDEczOxMg1vtMBmPR8YHzXVv7fuvyygQPY1uTeeyFPh2HJp7qw98YXRXs8TlPntTo1jpt12UYG62rQQaD8lDf5VDG20RO9TxEqJNpqHoR4RFh7HlopLgkLWqrZxa5T0rdXOxS/57a5CyA/QpPNhnu+Jv3kevsh8XjzXUc8cF0R/t30WcmOe9rVP/hvkM/4aYLv87zOz/FvIxZ548nn/OqTycgVwpjHbcIMbl2PCH4ZJLB4HzhyRb3mwSsDsCxB/2x58HwIfI7PFhbjDBsq72FqK8fTNkB1nG+6zp7tDSe9tD+T7md8BhpwWinOTKmjxeojw4ild17vb31O/ucgnWeqVC/NhgOlRD0xIIjpGFsi/ZJnUGo79EVkx/uZdN+7He610n9oPcTgabvEHtxQH7vMRWnQIXmrCNbvVX/V2q/iYNNdTbUlcEHA3Umc8xMHY+iR/a/N2L/X31G7T9O3K4S8ZA9wjNn65oGseuDCpEY5VoE6KMXEepvGqDeyoMFiA5MI5cfpbX9BK/yj6042nJjuqW9McO+TJZ7tJ+JOqNdTgC1Ez/ao/y1Q931Ud9XPoRU6AnfvRwKYs3ZH6hTm2Q0KcIk/2jA8X3LyamdtJzTguqFjbFB+9+naP+GoL53tu+HG+u8NA1s48sA/tJ5yLFUv/s8kC0OEyDuZVNWbkgDsXjcblN0WImCWLRVrhG5Q8XHzEhxZIDfKc9cJ4UHQw51oe8wMlbPA13BvXe2TyQsdm0DGfdNcdJ+OPvR29pJKzKz/0Cd5Bvjfaa2/zgRu1oV1Nt8rB+h2rhuGr8LMJ+GXJQL0S+uNx12cbRLx3X2Vth8cGbtnO7G0YubBEmXIkTCigtD5hqzumpWfDSZtXFAG+LDWqRV2tiDFRHSSK9LJV2jjobMetw3C62zUUJ19qDRghzsP0rMSa5TWW8M27SOeqSaDl2P69NA/pJ8r++T5sYhRJN+p+/5ZPledtEuEZCk8xI3UHZ5TNsWZf6aiSFHO0Ro8aAOifQwLT52ESEWxcdrh2zUcT2P1U4pCu+Jnrw06GHftHiceRtuUheOjZTUFO1/YTElqyGoiwy6aMhU2xBZIyH6403sd99FgOSW6mIy9WrL2ctWoiAr5z+0eAg5pgbuytC4+GiKkPGGtj9z9leH61XJQUfjg4wN1lOutjFSIdcLEaIRhNQjPxPre6G29JnU7T+21GcSF9Sb+CWofC8wafrRte/53mfURsco33Pv9bZ7ho5aFm7o8tt8fmct9aqFyBgbmgBunZ0oyMhafn5HAiQVZq+jeSpKJgnZ+h5H6nAR0oN+KQt3N5m8S5GgcPycW5/p2v7q+OaaSjl0AaLcgVKxvGxI1/bke3F72eZgp7YRkNxSXFYWb9FucfOkNBQT+bi6IZ0oCOzDoOnA6wCY2oRWxDyiNzPx0XSo+tDWc6uze9pYP0WIRqmvetBnQ6TangUop4/FjRAbzy/b/FFbAZKbc3dttFxtOvY5UZBeiOTcGTUceOsn0mzsrzEib/obM5oMGBLftMduRUh0++t4PemJjb2LkECpWAdtSNf/1ned3ra9U++oRQGHma0iyMbzubVCtYh+NDsGUZB/M+Q0rOQ4DzQAxuQmwrjwQFMBY0xyu7k7McYxT8fSCOxVz2xcixBvfkWgVKxDxKjvNrTaRWS1iYDktrKccvSj6bhZWTG2JOaIgiQ4wCf+DkXguxJS33AO+XLFRbCdchHjnhCt475GvEIcOuI7FWuvDemBNp6f6cJ0K35r8TfHGTWmsm1oKCY7RD+anUIaz7TrsstG/qr8CyPOv2w4vGVeat8f3MuKxV/6v/9wL5vwUnEqZKCT1aTvjf/vT32HmFHbK7Wl73HhxnUbfS5fjTkjuowJVvr8zwFx3R1CIc7Zx12cjgyoxx0L9pcDPZahDtRR3+S+53auU95OPflMy8qut85vJossSs/btoNAG89vd/Wv2wiQnFaVrUY/zvdscLdGBv6vRtpJ4aCNUyn1tXiv7ejK2mdnMz1q7l5OsVtuGWDH2rdCO84SBRltO3Jwx4m/cHFTLaXs37R9LDe1DbXrSPvaZ0RJFCdsoSJ7uaXNj7Q+jrXtx4icDXw6Z9h/b/ufhBI4Ll4EtrZzucXOQ7XzZx2HYogSSXm7qMrla4HzWtvI0GM7uNmhH/red7ny7l/LJPicD48WRzeZ0Kvnac93mhp6jycj9ZyUYJY6jNX+90mX0JtuZ0bq9n6ffFwdx34ELtvMc7t4jNQmpofkOGv7uOm6/yfcLzfxcOhYJv+9fk9y464R+0882P8+UnknifYBGZcnh6Q46fgeY4568rkfJJB/XVj93RQHAdMd1ICNnwxdTGTFSU3qzP1IfWx2aDvRQasrJ/PJR/8NbOunhNrEk+b/+l5ImXbVRjKa+x58T+bad0MLkUefc1Fm9h9GsP+TZ/sPLS6ItShzaMH34LnMN7EX2gMsxt2Eco4envPgyRnkwOiHKWGlqxgWSGpTc4SJ9sLzAP8jdt999ngUYuB2OjIyJmyLIg0CtudhF/NGBgLk6Tlw9Fbbfsi2NU3c/heB7T9OyP4PKZTzHcH9mMJito73j7HsK23c8sLD68LmgslVcU+DbLgGYGvFpDNnJGEBMg1Q3sFznPQg7+Ijggi58FC2WUBbTiK264uU+3xkB1hE/TDiOP0jYBsbYP+t42dI537ooYzjgFGPUUQ731tv5w3B5Lt8w0iLWwctmhy9Y5ScNhdaurG7doAkVObjFAJpaI86YHcmRPT0hZUR+xYOFnrmuO96lk2ZstEtxuEHZz43djfeYe7CHEhxfGC7lb4cQiRIXZ3EvP9IN2vGaicpIyfXfAp1itFb47T8ngtzfLqZO6p2GSe1b8Sy/7p6Tly44+t9+BQhFmxlHP8UYjx/x84y/txab+d6ctSt5/JdbahXnz6i+BiLIALE5XO6SRlrcNlBeMyc35Mb6gb3qDmFw65sbaTO+34yjzh9Z6G+PNCNrq+5PXRw2/IO0wDt9dB+F1J8LGM3Qq2/E0TIu+LjrIsf1t8N4QRbuqOqjf1PuzhJMqD9x8+HbeieOP+nSi11DOrCzpeB5kLf7VzmU59+6qS5EPvs/8JfLz7GewLkz0wG+a8ZC49NyvxRUzliC5GfRuo8l7a7L5ehB3td4Q4lONcuzpHZviemQ4XveQA7diI+XonVUwdmxEdgJ7g+/to6Zcb2P8TR9D0GdSY+GnYWG98as/PrMoZYNLzZ8G8vc6ePOu1DBGTR1Q9HFB5vKuAOhMjSSJ0PXX9ZRky1CSUS7mJMWBoZnVuoNF159L1yfNql+GjYuXQBI3Ip9lFZJLCyWBFg3D5PwP4mRLGKkNKC/XWV3Kfft+5afDTsfBnAFzz3XMbS83w00r14vm88X/jKTshdgCxiN37d6HPRofDoUohYESBFj52baPuddMBcef5a6a+3OdprC599i8Ndb6UN3FbmrsPFIEOsVRiujdRLiD1dow7TgNtwZuzmdt/2H+65h/eL7/cyZuczz/PVMMDJdZee28KV83vjuddIzXsCJJU8zvf4Fll4TMXZdy/hLmsDcHAhYmmwSSgP2atzE3OjcSAHPuqigUYIVgbaqs+JbBniAAJPDkDf94NcW9mT2OgDUh7f0cyxYfsvjdk/RPrNTmIiwBh0a2kBJKCdPxsv48CzL+9VvB9taIxFJoN98BW3V8LjKgHhVguRh0D1bGVy7eNG9C5WmH1PMl97YreQztqlxcapE9el6y+l7p2yWDe+93R9MfiaK6PCvD6wwaf9x3v8vS/fJYSg9WVnsfHcstDWtmAxWrzwfTDM0TuqKXlnLORKaoLC4zUiPh4CCBErAmTYQwfnW+wf9LyauO5o1ex7x/XmcxVtYW3l8VV7kcl/6frJdY/KZzENy7r49bnyvWsa1rHPdmQs9SpkOx8EukDUWrQ4yMmamwRIDqvHwZwKddhTFR6bhMh9ZpN9HwVImfjvduWYrgz0wb44ucJdH/umZWGo4rD0PIYUhl5vFfJYb0/2l3Fo0ZH9xx7tPE/Azj7LeBygjEGP0rciKo9wxvYeqE+dnXsvDnW+zvTSnpz4vWcOzsr4qlOniwZb+nNnK/K6SulrEaO0lt++wd5zZydSiuj6Jz5TIC0dh37dw3bSyjH2PAZ9TcTOPttDEKFtKBUrWOroUQIDx77OWNCJWESI3mga8lbTGMLjo/UViz3p2x6Qvjl0tNN0J3/n+nUi1tr66vsrcbg22LZ70d48nyzY1v4+Heh5InYWG/vyEUcBD73pOhUraCQm1z0gZcwBQ8/y/phI58tdeACkxLCnTv3XHtXxoqflLay8T2LRYV/2bzu2/OHp95bWTniLOAYFEdsGUrGCntqXawpW9FQOqSTjQqRvwqOPx/BCevjKHy5TcrIsHH8ckW99La+Rjeh9tn8bETjqqZ1L6wJEx0rfJ6TtMqcEPbXv6EDl3IeGlboQKV0/Ix59PIYX+sv3BMvcl9Owyh6Xd0g729mH8Gn/Ngtxoz62c10EWUe08yHETsWKEnnJUYCsLYQBDQgRGQxOZJ9KZOFB5AGgPUWPnfmfPajf5A6H0PL6mkOHBt4nxb7hbX9CrDnb+ilvge18HLgNS3+MeZBClAtTc0zBsnbLaS1E/qMNKPRk1BQeXQwIRB4AOnB0EyxzSb1kX+4hbcxuu/GYIpdqO09GnAa4LHRjn4l1YWqOAuS70caz1ltYPwYSIl0LDxfwJAgAeH98WWIFHByEUzbEig72XYD8nVh5Y6RiRdv0TgSkWyHi47SLddfCowHRD4D2gn3YcxP0QTT9nWi5/6KNZcEfDmIIpyhjeYRUrOuYWxgQIB0Kkerj0sNX3RnKvUSAABibtIyPgQAIQMYYBEj7cfPWhYk41Yvj0chOgKR0DrWWdX5Ig6meW0Ov9KcDAAAAAO88Pz+PAwmegX43AmRPygTLfEg47c7YKiIREICWJHpqjM+JlPECQtP3RbHvNIF3KTx9T5TMG91nOwv4E7OYe3lzEyCrBJ0QKfN8z//cTPRDGy0OBUB3/S81+nBoRaoO8HEm9k+1jf3OqJYUsRaCbwK36dACJ2sBkurGuX2iIHNj0Y+xA4CuSFH8D3tQL5wMSBsz2589RmGLRO2czCZ9vdV+EsOXi5WKlZsASfLEiz2jINfGXuPYAfQcnSR2wdciAgLEJkXPy13Sxjrtz9EWKRM91c+XnVeBbRs1MuEipWId5eTIu7hX1fvmboe/nRvcbD+mLQDsjK+xNsVUn14sWqS21yW3vTl7LAp0XV5x5H05f0tPfxPTmU9RgITOvrmKLKajCJ6jzJy3ZM/81ovEypZ/bir6UQ2YE2cv1YCL2SAFfC0kFAm+e9GTOi76Wl4jBy0UPW4vbcYXX/7e58SEns9F02XAckp7uOjAROPQ4j2rFKwMzpVvIywsRj8+OwDYB18rZ8OUVq5jH/fI+LgTX4yJ677Z31t5W/oKvk7KKnrcL4O09Q5Sr14TNBXryPjAYUKBRhRQpdseBbEW/Rg6mxvQScGCFCg9fteXhN77S4/quEglP17L6UvIWpmTR6mIc3X2fM2nZeR6GiaW7ubLzmvNYAlB7NSrf9WpliGqAEnxNKlcHM73BIbF6MeVUTv+xLeFBPA5cU0ScnL7dmrepIfltDQGn/fQ/m3HltLjbyaxsOA5bXwZqIwi5i4MmOsilLDMbQ9I8myJgliLfgwSmlgBLPb3tccJbKATK864Pc6t39Wi5fPpqJeGXm+cyF05Pu3fKrXK8xg0SSTa59PO3wL1xZkhewVJxcrpFKycbvx8S2gsDEY/bgzbsHQAaeCzrV5ZftEATm4qyHtfGC/jhfO3Krw2sgE9Gfvr4oFP570M9Lepj0ESfR11ZOdd+qIlITcMUa857QHJhg1RkDtjnVga5ITaAjgYnytokoc9NfyuoW/ytYzZKIiO57lGP/7nGFtdndd24XNBr9zxUJ6vHn97YnwviE87r3zv/9D9ShZFnPdUrKMNDjACpHuuXw0m1gb0mWXjGbQXwHtt1Wfa67nFTbcRb/K1irW0ipDC8JvR98T+b49B4kSvPL+PRaE3dX4jC1971EZ/lc3nIsp7x/CmloaV1b4VdUqWb4gRC51YQpiFYfMhoCE15jk7ugZzmrtibG2fTlUeSffweSiAzMULo/Yv9H2tzae+28Q+44nPLAs5eezGmJ3FZ7kyYOdtAsnn4tG1Z/9x6NOGRxk5cTlePCcDgqnoRyKOBAIEUsP3Spo4AJb66b2zldPcJTMrESoth29HcWH8Tq4bKylCav+ZEfvPPZfjworY1tS7+wB2XnluCz4FkpTtVp+V53r1Mn69J0A4xrRjqsYtA8KZtcnT2c/h/k7rgcT6uiyg+F5omFjYD6JCqKCW/8FD1yJEf/8hwFffJWD/ewP2H6j9Bxbsr6LFtwiZGbHzvRU7b/GtfHItdar1emmxrO8JkNKBBcdkZaUsAUL1oVjSciBBQuQTX3UpQlR8TKjafzHoUoQ0xIdvp6wMeCkb9t/O6sCMiRDp3l3auRZ5owDtvPRYzqnnMpa6gF37kQvPPv3Ix7yS0x4QCNuRC2f72F3aLqS+2CATRogFh6vY6Vgy8VfPPeKjlRNcdDCWh3B+Qzmwoe0/jmz/USCn+GD764LnPICdf8ROx1I7/7Bo5zfK6XtvylsRD9/ZNFeHCsujdxri2pFLD//vIPeJFHfFKW6QMKEcOEnH+hHjGNKGgzWmOls7wdNIY/k0oPgoEzx98Fd6TkT7X6hTHML+q+aq94FjUIg9PJKONYtxFLWKHWnnwwTaue/Fodu3opDqF/meXw4q+9E2QzM/9F58hMpTDQXRD0gWdSBCteFfK4KhTgHSqMfUhVt1zJkrFYijQHUjKRNSLyHvF7jOwP5FIPvL/Twyj4bMIvCS56+Oaqh9PBMdg0La+d6F3at65rG8F57HyvWWfuh7Q/pBqVjbBAibeREfKYkP2izkwGXA7/514VnVtx99pUSo8JDvenTGb0E2Ti0QZ74iVeqQzSKIwkUGdy/9ityJA+vLQW7YX/pGEbDspeb5+1oImQZcCBmqnR8C2Tlk5PXaV4aF9nHvqVfvnYAWaEP63qlYREBgU+cImacaEtosJI06creBf0YmP3F0n+S8/n0mEHEeGpN+CqfjpcIvMacO2mTXlJVaEOqK+6MLvw9HnJqzjOw/Vgf5h9pxuKf97xO3f+g6LRp2vkjAzksVZr7wPWaWbVLwAmxIr99lZ37bUtBVVbkrx/ntfRUfqTkUq0ROYAHYxrU6QqHHXunjkgYgDsBaJyY5gn3l/h2qH+pzrAsTCI7wDlqhQlHGNXn+2uA8yN/9ofUSe9Ho0vi9H/vyvzs6Wtr/d/2Mbf/rEPseZS6t3ltWy28i2PnXfTTqb5Zq56X7916UUaOdFxFt7FXkaeqV7/LvEtk4U9HmrQ4lFWtXgfZbi79Z6AQF/RAf0ilCnJkdg5IahBwQh67qi2cuzD0N74mRsWPzuFVnuHZsLaW5LTxtfMb+e855lf2DRUvlu6tx6DjimCALHBOD9X/pa3EzUOrV7S7l0+DCtedynFffOd9FDB+1+Bty6vsjPiYuzchHzTdqETISISKor7EEGEUcjTPM0BmyKn8a4XekjvucWXDrWWT7Tr3atvF843s5vxvSB27HVKytAkTzxdb09ezFx8z5Pw4uNiU1CZmJkKl7iUIDmHN+M029SoWTGPbX3zjtqR8oK/reNm2HSr3apx0E2pBe7HLK4lHLv2MCzFd4DPV4xknir7JgMoRM6fsKJNjjlP123Y4JMe2vaTUnPRMhIj587vsYOv+pV+Uh0ZlAG9Kv2h4o0FaAkNqSp/ioL0XK4cx+2ihkiQrrE0QIGHJ+S8zQqf3nsX9UBU9fRIhX8aGEOCnQRwTD93u2TsU6atnwUkjDGjpoKzwGenTdjcvnJBuidIAIScyR6kHV5ZbCfJbYpvPb3PpMl/ZviJAV4mMnn0s28Re+27aPKFigG9JbpWId7fCF1h08BEi7jiCNIvRlPV0MGKRfASIER8oaPzNy2FKss7/pM0FEyCeXZ0T2OoD42Hlzdgv23Xj+nlD3PUZtTcXaRYB8xQVIWngUutcjp6hHDelX0DcRkqrzvu6R+MjFYZM6+5RqnTX6TJmw/U8s2V9sWj2fEh6H3rLxqeeLBmuCpF75XHQNtCF9q/A62qGApcs77Jar8BjqCVcp3mrehpWmCAL0RoToKl1qR/SurDlSOGxbWar4WGZgfxEhtwna/8Tqnhsdh1I/Iatu4979CE298p1tUoYYQwNtSH83Fetoxy+7M9yI/sQ1eVN4SLrVJONXJTIHfRUiU5dOes8iB0e2Zw6bpKN8CnHLdof2v0zI/rcqPpbGbfqrb7v09mGuQ7bxQKlXwmVAm4TYl3eltjhYgMwNN6bc0ooQHum3SYDQk3+pk7/VlV2Z2CW1gTsj/umwfTTssNWr7tPM7T833GfE/pep9Blx4KWPq7hLQbDWCyIh23iI1KvbkII00Ib0jULsaMfCrXH4zAqPomfC45f4yGl1DmDPSWOtK7siREojxao3SX4iRXJjnYmzZmmD9K88cF0RLntg/zNna29IvSL/MVX7S1+X8ruXlXSL4qlUcXca0nfQzdfjEO0jgo1CbEgfVzYZHSRAFKt5x0UPRYccpzvRzeUPPRIeNTmkXy2Nfc8+fPc4wHbFytj37DP5LzXPvUunqp4kxYmatljBXSfebg6ts1L3hnR52WSzzqxE0tYxvkftb6rPZCLwZHHwP9quVwaKtFDhcZKwuI4SEQu0Id2r4/vwbJAeCQ9Rk7PnfvOQUX0eWpc/NuVYRhTCPxJ/B+lTTwe+w9RYuxpp23qK0B+l/i52rUNdQDkEebdJANtNPdlluuPvFhHH9h8hbOdxTHmIPaY07B+rz0y6HPci1mdMu9Y8aj8eJjqvN8e4aQfln3isrzdTsD7s25jcy4q7NbLd5KinKXx2L2E99rsYPhlkz/qVQXKfgXJlJQ1NQ6z7tM21lX6rY9s+LC3na6ujeex5/JA6kyOwF4fUnzpge53QF2oM0An/ysNXXe+zqq02qcf8wnOdfdU6WznjdDWmNOwfqs/0Nn244csUzv/9bTIefD90TDIwr5uZGw/og1t9lA8HFOrB2Ut7ysYpbeQQ1gMgNAYZDZsDwH4Tijx/6mebSVLGVRFYP/Xfy5w3lXctQDbUmcy3f1Bn9JmM7DpUe9a2rRcjtjm8K33EOf9LbVti0bT47ZCB1aAAGblELxtqDHDHgVYGcuIaEwDsh66oLbEEdQbYv2O71kKCgyoQIDs1nLJymktjIiSJ1KSG2Biq4Bg50qraUrLSAQAAANBDAaLITvkfht7nvHLuxaGXlYq/3f+jIdFDn41c8vrz2P0/vAj7Q/QDAAAAoK8CRMKSlaM9d3aOfx2ow187/VcNQSAfa/fPMGotVDaxbCEYjhv/JpIRlgXRDwAAAIAeCxBFVqRTOZlp4P6ZMlbQBJLiEhMAAAAApM3RoV+gm4juMCUE5ppbzwEAAAAQILUImTpOiIBwiPC4xQwAAAAACJAmpMdAKM44Px0AAAAAAfIPdHMwq9TgmzkbzwEAAAAQIJuQDekrzAqekKgHkTUAAAAABMjbaJrMGWYFT5ySegUAAACAANkmQkpHKhYczi2pVwAAAAAIkLYiRNJmOBUL9kXaDjeeAwAAACBAduLUveTwA+zCrzQ+Uq8AAAAAECA7oZfGsR8EduWyajtEzwAAAAAQIHuJkIUjlQbaI/s+5pgBAAAAAAFyiAiZVh8LTA1bKHXvEAAAAAAgQA5GUrFIq4FNSNs4xQwAAAAACBAv6IbiE8emdPg30ia47wMAAAAAAYIIgSji40QPLAAAAAAABIh3EbJEhECDE068AgAAAECAxBIh0G/OEB8AAAAACJCYIoQ7QvotPuaYAQAAAAABElOEzFWEkI6F+AAAAAAABEg0EcKekH6wRnwAAAAAwFHXBWBjem/ExwniAwAAAACOLBSiIUJWVEm24oMN5wAAAABgQ4A0RMgnx43pOSF1+RHxAQCJsTb2PQAAWfHBWoGen58H1cdN9UyonqRZuJc9H0zAAJAUOg89VM/ogK8pq+eUMRAAIAEB0pgALlSIQHpcV5PuFDMAQOJCRATIYI//dFWNgSssCACQmADRwb+oPu73nAAgPvVJVwtMAQAAAADJCRAVIQMVIQXVZRrZ53HKqh8AAAAAvMeR9QJK/mz1yAlZ11SXWSTl6hPiAwAAAAC2+vcpFVbzcWfusI2B4A8RHKeccgUAAAAAbTlKqbDi6MpKuyMaYoHb6vmE+AAAAACAnXz6VAuu0RA5JaugGqMiguMM4QEAAAAAvRIgDSEyUSHCSVlhkROuZK/HLaYAAAAAgN4KEBUhIj7k3pArqjQItyo+uFALAAAAABAgDSEyVBEyoWq9MFfhscIUAAAAAIAAQYggPAAAAAAAAYIQQXgAAAAAAPROgDSESL1H5NyxWf01sq/jTsQHwgMAAAAAECD+xcik+vjiOL63rJ6vleiY0w0AAAAAAAESXogM3UtqloiRYU9ee1U9i+q5I9oBAAAAAAiQ7sTISIXIOEMxUouOr1weCAAAAAAIEHtiZKhC5Fg/U6Ssnm8iPIh0AAAAAAACJC1BUriX/SJ/6qe1TeyyiVwiG99FeFSCo6TWAAAAAAABko8gGVYfI31ElNT/OwYiNFbV81P/vSTCAQAAAAAIkH4Kk4EKkUFDkPy+hzgRYfF3498S4VghNAAAAAAgB/4rwAB4xMkVHiVS4wAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "Maps4BW-LGL_BW",
+ "name": "Maps4BW (LGL-BW, www.lgl-bw.de)",
+ "type": "wms",
+ "template": "http://www.webatlasde.de/arcgis/services/Maps4BW/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Halbtonvariante&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [9.06954, 49.57679],
+ [9.10577, 49.57952],
+ [9.16079, 49.58263],
+ [9.24212, 49.58402],
+ [9.27192, 49.63515],
+ [9.30454, 49.65561],
+ [9.36753, 49.65893],
+ [9.38253, 49.64341],
+ [9.41191, 49.66033],
+ [9.39602, 49.67143],
+ [9.41828, 49.69706],
+ [9.40378, 49.71957],
+ [9.37769, 49.70357],
+ [9.35828, 49.70334],
+ [9.29438, 49.73958],
+ [9.31467, 49.76859],
+ [9.42435, 49.79099],
+ [9.50417, 49.78962],
+ [9.51808, 49.78214],
+ [9.65623, 49.79286],
+ [9.65317, 49.73944],
+ [9.63435, 49.70076],
+ [9.67054, 49.69515],
+ [9.67721, 49.71846],
+ [9.71079, 49.72918],
+ [9.8014, 49.73429],
+ [9.83728, 49.70237],
+ [9.87656, 49.61362],
+ [9.83362, 49.55607],
+ [9.84954, 49.54793],
+ [9.87463, 49.5836],
+ [9.91419, 49.58955],
+ [9.93066, 49.56097],
+ [9.92482, 49.48951],
+ [10.01787, 49.48673],
+ [10.03352, 49.52978],
+ [10.06372, 49.55129],
+ [10.09052, 49.54218],
+ [10.12792, 49.51192],
+ [10.11027, 49.49272],
+ [10.16753, 49.38589],
+ [10.12627, 49.3809],
+ [10.14385, 49.32772],
+ [10.16061, 49.27043],
+ [10.13569, 49.26189],
+ [10.14311, 49.20387],
+ [10.25161, 49.15031],
+ [10.26279, 49.12959],
+ [10.26869, 49.05202],
+ [10.36527, 49.02557],
+ [10.45894, 48.93581],
+ [10.46208, 48.83947],
+ [10.42886, 48.74973],
+ [10.46648, 48.73627],
+ [10.49761, 48.68581],
+ [10.45007, 48.66277],
+ [10.3553, 48.65068],
+ [10.32297, 48.68241],
+ [10.26028, 48.67842],
+ [10.32542, 48.60763],
+ [10.31448, 48.52323],
+ [10.17973, 48.45977],
+ [10.12892, 48.45301],
+ [10.10938, 48.47445],
+ [10.06355, 48.45381],
+ [10.03918, 48.45125],
+ [10.04492, 48.43158],
+ [10.0152, 48.40323],
+ [9.98709, 48.38565],
+ [9.97328, 48.37944],
+ [9.97549, 48.36558],
+ [9.99071, 48.3734],
+ [10.00265, 48.3632],
+ [9.99992, 48.35572],
+ [10.06698, 48.28172],
+ [10.08111, 48.2253],
+ [10.11306, 48.12632],
+ [10.13966, 48.11307],
+ [10.14695, 48.07455],
+ [10.13763, 48.01938],
+ [10.11725, 47.9755],
+ [10.11359, 47.93422],
+ [10.10709, 47.86711],
+ [10.14174, 47.80956],
+ [10.0732, 47.78686],
+ [10.11825, 47.76126],
+ [10.14213, 47.70165],
+ [10.13262, 47.67678],
+ [10.07445, 47.63472],
+ [10.06303, 47.66923],
+ [10.00359, 47.67526],
+ [9.95808, 47.64376],
+ [9.84481, 47.67533],
+ [9.83488, 47.66042],
+ [9.74926, 47.60206],
+ [9.70817, 47.60007],
+ [9.65788, 47.60599],
+ [9.64742, 47.58931],
+ [9.61389, 47.57809],
+ [9.56602, 47.53274],
+ [9.51199, 47.53246],
+ [9.25717, 47.65752],
+ [9.18684, 47.65697],
+ [9.17591, 47.65379],
+ [9.17028, 47.65474],
+ [9.15555, 47.666],
+ [9.1494, 47.66713],
+ [9.13947, 47.66367],
+ [9.02005, 47.68616],
+ [8.94127, 47.65569],
+ [8.89825, 47.64821],
+ [8.88263, 47.65327],
+ [8.87474, 47.6545],
+ [8.87235, 47.66971],
+ [8.84949, 47.68089],
+ [8.84993, 47.70233],
+ [8.81816, 47.71242],
+ [8.80108, 47.72811],
+ [8.77231, 47.71606],
+ [8.81295, 47.6959],
+ [8.79373, 47.67216],
+ [8.7533, 47.68997],
+ [8.72575, 47.6917],
+ [8.71002, 47.68829],
+ [8.68937, 47.69318],
+ [8.67046, 47.68235],
+ [8.65783, 47.68883],
+ [8.66161, 47.71454],
+ [8.70596, 47.71584],
+ [8.70932, 47.73275],
+ [8.73033, 47.75527],
+ [8.72003, 47.76273],
+ [8.68871, 47.75314],
+ [8.67898, 47.78306],
+ [8.64981, 47.79435],
+ [8.65592, 47.76948],
+ [8.63132, 47.75749],
+ [8.61918, 47.76216],
+ [8.61351, 47.78451],
+ [8.61686, 47.79705],
+ [8.568, 47.79977],
+ [8.57611, 47.79015],
+ [8.57847, 47.78102],
+ [8.56315, 47.77654],
+ [8.48889, 47.76458],
+ [8.45742, 47.74126],
+ [8.4623, 47.72909],
+ [8.44929, 47.71663],
+ [8.41471, 47.69991],
+ [8.4273, 47.68562],
+ [8.41061, 47.6743],
+ [8.46839, 47.6568],
+ [8.52474, 47.64677],
+ [8.5269, 47.66373],
+ [8.56441, 47.67261],
+ [8.57853, 47.66373],
+ [8.60454, 47.6751],
+ [8.63333, 47.65212],
+ [8.62386, 47.63922],
+ [8.60395, 47.63193],
+ [8.61281, 47.61327],
+ [8.57951, 47.59306],
+ [8.5602, 47.59867],
+ [8.56765, 47.61442],
+ [8.53394, 47.62984],
+ [8.51208, 47.61641],
+ [8.46581, 47.60137],
+ [8.46631, 47.58666],
+ [8.48985, 47.59139],
+ [8.5, 47.58062],
+ [8.43414, 47.5629],
+ [8.39882, 47.57559],
+ [8.38525, 47.56408],
+ [8.32701, 47.56893],
+ [8.29483, 47.59077],
+ [8.2948, 47.60497],
+ [8.26293, 47.60823],
+ [8.22435, 47.60446],
+ [8.18644, 47.60508],
+ [8.16904, 47.59394],
+ [8.13615, 47.58246],
+ [8.10503, 47.56795],
+ [8.09873, 47.55933],
+ [8.08261, 47.55624],
+ [8.07095, 47.56299],
+ [8.0274, 47.54931],
+ [7.94632, 47.54209],
+ [7.90966, 47.54825],
+ [7.90676, 47.5603],
+ [7.88681, 47.58765],
+ [7.83987, 47.58122],
+ [7.79648, 47.55517],
+ [7.69208, 47.53137],
+ [7.66583, 47.53403],
+ [7.63159, 47.56044],
+ [7.63879, 47.56619],
+ [7.68607, 47.57205],
+ [7.65278, 47.59418],
+ [7.62247, 47.57767],
+ [7.60473, 47.57822],
+ [7.58771, 47.59015],
+ [7.52156, 47.65161],
+ [7.50399, 47.70235],
+ [7.52096, 47.77685],
+ [7.55712, 47.84839],
+ [7.54946, 47.8792],
+ [7.57461, 47.93028],
+ [7.61318, 47.96804],
+ [7.6119, 47.9871],
+ [7.56124, 48.03836],
+ [7.57491, 48.1258],
+ [7.59534, 48.15977],
+ [7.63305, 48.19717],
+ [7.66275, 48.22473],
+ [7.68466, 48.30305],
+ [7.76346, 48.49158],
+ [7.80046, 48.5126],
+ [7.79958, 48.5878],
+ [7.83409, 48.64439],
+ [7.91211, 48.68899],
+ [7.96723, 48.75716],
+ [8.02069, 48.78879],
+ [8.04302, 48.7956],
+ [8.08647, 48.81306],
+ [8.13644, 48.89782],
+ [8.19706, 48.96021],
+ [8.28161, 48.9949],
+ [8.29967, 49.02597],
+ [8.31243, 49.05996],
+ [8.38654, 49.23497],
+ [8.46083, 49.28407],
+ [8.48783, 49.29326],
+ [8.47577, 49.3079],
+ [8.44839, 49.31693],
+ [8.45152, 49.33135],
+ [8.46288, 49.3869],
+ [8.49407, 49.40186],
+ [8.49762, 49.41583],
+ [8.50721, 49.43414],
+ [8.49834, 49.44187],
+ [8.47977, 49.44391],
+ [8.46414, 49.44151],
+ [8.44696, 49.44516],
+ [8.43947, 49.45214],
+ [8.44407, 49.46085],
+ [8.45992, 49.46498],
+ [8.46312, 49.47135],
+ [8.4554, 49.48107],
+ [8.44184, 49.49297],
+ [8.41194, 49.55852],
+ [8.42193, 49.5843],
+ [8.44117, 49.59081],
+ [8.45482, 49.59157],
+ [8.47738, 49.5874],
+ [8.56161, 49.52237],
+ [8.61486, 49.54175],
+ [8.59165, 49.59179],
+ [8.58706, 49.61156],
+ [8.65189, 49.6209],
+ [8.69494, 49.62762],
+ [8.70105, 49.59869],
+ [8.68726, 49.57096],
+ [8.72597, 49.53085],
+ [8.78493, 49.51775],
+ [8.81467, 49.53187],
+ [8.88863, 49.51091],
+ [8.90168, 49.50363],
+ [8.90315, 49.486],
+ [8.87995, 49.46561],
+ [8.83117, 49.42147],
+ [8.80845, 49.40981],
+ [8.82075, 49.39647],
+ [8.83009, 49.41316],
+ [8.85107, 49.39663],
+ [8.90247, 49.44632],
+ [8.93863, 49.48179],
+ [8.95154, 49.50562],
+ [8.98498, 49.51153],
+ [9.03553, 49.50079],
+ [9.05731, 49.532],
+ [9.10023, 49.52728],
+ [9.11009, 49.51213],
+ [9.12424, 49.51722],
+ [9.11286, 49.53337],
+ [9.08284, 49.54211],
+ [9.06694, 49.56433],
+ [9.06954, 49.57679]
+ ]
+ ],
+ "terms_url": "https://www.lgl-bw.de/",
+ "terms_text": "Datengrundlage: LGL, www.lgl-bw.de"
+ },
+ {
+ "id": "mar_vermelho_al",
+ "name": "Mar Vermelho AL",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Mar%20Vermelho&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-36.34201, -9.49289],
+ [-36.3422, -9.47533],
+ [-36.34275, -9.4029],
+ [-36.34473, -9.4029],
+ [-36.34537, -9.40279],
+ [-36.34702, -9.40293],
+ [-36.3508, -9.40291],
+ [-36.359, -9.40307],
+ [-36.36109, -9.403],
+ [-36.36289, -9.40307],
+ [-36.3659, -9.40305],
+ [-36.36713, -9.40301],
+ [-36.37571, -9.40307],
+ [-36.38049, -9.40308],
+ [-36.38663, -9.4032],
+ [-36.38852, -9.40312],
+ [-36.39286, -9.40325],
+ [-36.39656, -9.40322],
+ [-36.40309, -9.40327],
+ [-36.41973, -9.40338],
+ [-36.43368, -9.4034],
+ [-36.43355, -9.41685],
+ [-36.43344, -9.42386],
+ [-36.43338, -9.43753],
+ [-36.43329, -9.45012],
+ [-36.433, -9.49359],
+ [-36.40839, -9.4935],
+ [-36.40442, -9.49354],
+ [-36.40008, -9.49351],
+ [-36.39787, -9.49342],
+ [-36.39168, -9.49328],
+ [-36.38757, -9.49331],
+ [-36.38536, -9.49341],
+ [-36.37673, -9.49331],
+ [-36.37427, -9.49319],
+ [-36.36707, -9.49299],
+ [-36.36502, -9.493],
+ [-36.36043, -9.49299],
+ [-36.35955, -9.49295],
+ [-36.35895, -9.49304],
+ [-36.35703, -9.49294],
+ [-36.35665, -9.493],
+ [-36.3526, -9.493],
+ [-36.34767, -9.49297],
+ [-36.34201, -9.49289]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "geodata.md.gov-MD_SixInchImagery",
+ "name": "MD Latest 6 Inch Aerial Imagery",
+ "type": "wms",
+ "template": "https://geodata.md.gov/imap/services/Imagery/MD_SixInchImagery/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=MD_SixInchImagery&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2016-01-01T00:00:00.000Z",
+ "startDate": "2013-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 20],
+ "polygon": [
+ [
+ [-76.23413, 37.92037],
+ [-76.59805, 38.15832],
+ [-76.94, 38.27053],
+ [-77.03819, 38.41379],
+ [-77.23526, 38.33627],
+ [-77.31216, 38.41056],
+ [-77.26273, 38.56642],
+ [-77.043, 38.71338],
+ [-77.04987, 38.7937],
+ [-76.92627, 38.8925],
+ [-77.04094, 38.9845],
+ [-77.12162, 38.92523],
+ [-77.15012, 38.95514],
+ [-77.25243, 38.97543],
+ [-77.25929, 39.02425],
+ [-77.34581, 39.05492],
+ [-77.46185, 39.07038],
+ [-77.53738, 39.13965],
+ [-77.47421, 39.22481],
+ [-77.57275, 39.30428],
+ [-77.72347, 39.32899],
+ [-77.77702, 39.46323],
+ [-77.86148, 39.51622],
+ [-77.84088, 39.60886],
+ [-77.95624, 39.59299],
+ [-78.16635, 39.69556],
+ [-78.27003, 39.62156],
+ [-78.3387, 39.64007],
+ [-78.46641, 39.52364],
+ [-78.6628, 39.54006],
+ [-78.79875, 39.60622],
+ [-78.9814, 39.4468],
+ [-79.06723, 39.47649],
+ [-79.48505, 39.19954],
+ [-79.48557, 39.72158],
+ [-75.78836, 39.72181],
+ [-75.69099, 38.46058],
+ [-75.04924, 38.45816],
+ [-75.04984, 38.40222],
+ [-75.08151, 38.32321],
+ [-75.09773, 38.30907],
+ [-75.187, 38.09755],
+ [-75.23798, 38.0224],
+ [-75.61821, 37.98967],
+ [-75.86369, 37.90953],
+ [-76.23413, 37.92037]
+ ]
+ ],
+ "terms_url": "http://imap.maryland.gov/Pages/imagery-products.aspx",
+ "terms_text": "DoIT, MD iMap, MDP",
+ "description": "Six Inch resolution aerial imagery for the State of Maryland"
+ },
+ {
+ "id": "geodata.md.gov-MD_ThreeInchImagery",
+ "name": "MD Three Inch Aerial Imagery",
+ "type": "wms",
+ "template": "https://geodata.md.gov/imap/services/Imagery/MD_ThreeInchImagery/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=MD_ThreeInchImagery&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "scaleExtent": [0, 20],
+ "polygon": [
+ [
+ [-76.46299, 38.9808],
+ [-76.46326, 38.94779],
+ [-76.49499, 38.9369],
+ [-76.51617, 38.93697],
+ [-76.54763, 38.9591],
+ [-76.54745, 38.98667],
+ [-76.51559, 39.00306],
+ [-76.4839, 39.00292],
+ [-76.46299, 38.9808]
+ ],
+ [
+ [-76.09548, 38.84133],
+ [-76.0428, 38.8409],
+ [-76.04289, 38.8298],
+ [-76.03229, 38.8297],
+ [-76.03277, 38.79667],
+ [-76.02545, 38.79664],
+ [-76.02541, 38.77462],
+ [-76.03308, 38.77472],
+ [-76.03366, 38.73073],
+ [-76.05462, 38.73094],
+ [-76.0548, 38.72005],
+ [-76.10753, 38.72043],
+ [-76.10714, 38.75338],
+ [-76.11754, 38.75346],
+ [-76.11701, 38.79731],
+ [-76.09601, 38.79715],
+ [-76.09548, 38.84133]
+ ],
+ [
+ [-77.23397, 39.16838],
+ [-77.25516, 39.14647],
+ [-77.25496, 39.11343],
+ [-77.18093, 39.05337],
+ [-77.14907, 39.0477],
+ [-77.12798, 39.04779],
+ [-77.10683, 39.05325],
+ [-77.10688, 39.0917],
+ [-77.11775, 39.10827],
+ [-77.16011, 39.12485],
+ [-77.15975, 39.15214],
+ [-77.17048, 39.16302],
+ [-77.21284, 39.17272],
+ [-77.23397, 39.16838]
+ ]
+ ],
+ "terms_url": "http://imap.maryland.gov/Pages/imagery-products.aspx",
+ "terms_text": "DoIT, MD iMap, MDP",
+ "description": "Three Inch Resolution Imagery for the cities of Rockville, Gaithersburg and Annapolis"
+ },
+ {
+ "id": "geodata.md.gov-MD_ColorBasemap",
+ "name": "MD Transportation Basemap",
+ "type": "wms",
+ "template": "https://geodata.md.gov/imap/services/Transportation/MD_ColorBasemap/MapServer/WmsServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=MD_ColorBasemap&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-76.23413, 37.92037],
+ [-76.59805, 38.15832],
+ [-76.94, 38.27053],
+ [-77.03819, 38.41379],
+ [-77.23526, 38.33627],
+ [-77.31216, 38.41056],
+ [-77.26273, 38.56642],
+ [-77.043, 38.71338],
+ [-77.04987, 38.7937],
+ [-76.92627, 38.8925],
+ [-77.04094, 38.9845],
+ [-77.12162, 38.92523],
+ [-77.15012, 38.95514],
+ [-77.25243, 38.97543],
+ [-77.25929, 39.02425],
+ [-77.34581, 39.05492],
+ [-77.46185, 39.07038],
+ [-77.53738, 39.13965],
+ [-77.47421, 39.22481],
+ [-77.57275, 39.30428],
+ [-77.72347, 39.32899],
+ [-77.77702, 39.46323],
+ [-77.86148, 39.51622],
+ [-77.84088, 39.60886],
+ [-77.95624, 39.59299],
+ [-78.16635, 39.69556],
+ [-78.27003, 39.62156],
+ [-78.3387, 39.64007],
+ [-78.46641, 39.52364],
+ [-78.6628, 39.54006],
+ [-78.79875, 39.60622],
+ [-78.9814, 39.4468],
+ [-79.06723, 39.47649],
+ [-79.48505, 39.19954],
+ [-79.48557, 39.72158],
+ [-75.78836, 39.72181],
+ [-75.69099, 38.46058],
+ [-75.04924, 38.45816],
+ [-75.04984, 38.40222],
+ [-75.08151, 38.32321],
+ [-75.09773, 38.30907],
+ [-75.187, 38.09755],
+ [-75.23798, 38.0224],
+ [-75.61821, 37.98967],
+ [-75.86369, 37.90953],
+ [-76.23413, 37.92037]
+ ]
+ ],
+ "terms_url": "http://imap.maryland.gov/Pages/imagery-products.aspx",
+ "terms_text": "DoIT, MD iMap, MDP",
+ "description": "Maryland State Highway Administration road features and additional Maryland focused landmarks"
+ },
+ {
+ "id": "miljodirektoratet-friluftsomrader",
+ "name": "Miljødirektoratet Public Recreation Areas overlay",
+ "type": "wms",
+ "template": "https://arcgisproxy.miljodirektoratet.no/arcgis/services/friluftsliv_statlig_sikra/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=friluftsliv_statlig_sikra&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:4326",
+ "scaleExtent": [0, 22],
+ "polygon": [
+ [
+ [31.90425, 70.43681],
+ [28.47652, 71.32896],
+ [23.6865, 71.25143],
+ [16.80906, 70.07308],
+ [11.16207, 67.52539],
+ [9.97554, 64.81158],
+ [4.21871, 62.145],
+ [4.37254, 59.1872],
+ [6.17431, 57.8915],
+ [7.93212, 57.73936],
+ [10.77758, 58.86491],
+ [11.7224, 58.76251],
+ [12.72216, 60.11415],
+ [13.05175, 61.34935],
+ [12.52439, 63.61699],
+ [14.23826, 63.98561],
+ [15.11717, 65.90166],
+ [18.69871, 68.37491],
+ [20.06101, 68.26126],
+ [21.00584, 68.78415],
+ [25.24656, 68.3506],
+ [26.93845, 69.8472],
+ [28.76219, 69.61121],
+ [28.5864, 68.8556],
+ [31.06931, 69.51915],
+ [31.90425, 70.43681]
+ ]
+ ],
+ "terms_url": "http://www.miljostatus.no/tema/friluftsliv/statlig-sikra-friluftlivsomrader/",
+ "terms_text": "© Miljødirektoratet",
+ "description": "Public recreation areas with State ownership (\"friluftsområder\").",
+ "icon": "http://www.miljodirektoratet.no/Framework/favicon-32.png",
+ "overlay": true
+ },
+ {
+ "id": "minador_do_negrao",
+ "name": "Minador do Negrão",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Minador%20do%20Negrao&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-36.8196, -9.35174],
+ [-36.82017, -9.26142],
+ [-36.82465, -9.26133],
+ [-36.83064, -9.26147],
+ [-36.83673, -9.2615],
+ [-36.84228, -9.26148],
+ [-36.84562, -9.2616],
+ [-36.85564, -9.2616],
+ [-36.86214, -9.26159],
+ [-36.8659, -9.26147],
+ [-36.86724, -9.2615],
+ [-36.86952, -9.26149],
+ [-36.87127, -9.26157],
+ [-36.87476, -9.26153],
+ [-36.87816, -9.26163],
+ [-36.88321, -9.2617],
+ [-36.88565, -9.26167],
+ [-36.88857, -9.26148],
+ [-36.89217, -9.26151],
+ [-36.89383, -9.26163],
+ [-36.8974, -9.26175],
+ [-36.91122, -9.26183],
+ [-36.9111, -9.26651],
+ [-36.91112, -9.28542],
+ [-36.91121, -9.29066],
+ [-36.91118, -9.29368],
+ [-36.91099, -9.29929],
+ [-36.91091, -9.30729],
+ [-36.9109, -9.3123],
+ [-36.91083, -9.31597],
+ [-36.91084, -9.32013],
+ [-36.91098, -9.32395],
+ [-36.91099, -9.32587],
+ [-36.91079, -9.32964],
+ [-36.91079, -9.33523],
+ [-36.91074, -9.33944],
+ [-36.91092, -9.34311],
+ [-36.91084, -9.34471],
+ [-36.91066, -9.35229],
+ [-36.89277, -9.35225],
+ [-36.87735, -9.35212],
+ [-36.86463, -9.35203],
+ [-36.85761, -9.35194],
+ [-36.84344, -9.35191],
+ [-36.83115, -9.3518],
+ [-36.8196, -9.35174]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "mml-tausta",
+ "name": "MML Background Map",
+ "type": "tms",
+ "template": "http://tiles.kartat.kapsi.fi/taustakartta/{zoom}/{x}/{y}.jpg",
+ "scaleExtent": [2, 19],
+ "polygon": [
+ [
+ [27.96569, 70.0988],
+ [27.57431, 70.07728],
+ [27.10876, 69.93548],
+ [26.70913, 69.97549],
+ [26.45507, 69.94207],
+ [25.87142, 69.6671],
+ [25.94833, 69.61024],
+ [25.83023, 69.55323],
+ [25.66955, 69.20794],
+ [25.73822, 69.01797],
+ [25.60089, 68.90309],
+ [25.45806, 68.91199],
+ [25.11749, 68.80699],
+ [25.07354, 68.64355],
+ [24.88128, 68.62003],
+ [23.97491, 68.84568],
+ [23.74969, 68.8308],
+ [23.63433, 68.71645],
+ [23.18939, 68.68053],
+ [22.52197, 68.7553],
+ [21.63894, 69.28191],
+ [21.26953, 69.31783],
+ [20.94131, 69.21622],
+ [21.08963, 69.09307],
+ [21.05941, 69.04352],
+ [20.72296, 69.12491],
+ [20.54443, 69.0558],
+ [20.84655, 68.97416],
+ [20.81634, 68.91742],
+ [21.38754, 68.68461],
+ [22.04734, 68.47066],
+ [22.80212, 68.35464],
+ [23.12072, 68.13169],
+ [23.5437, 67.9633],
+ [23.44757, 67.8393],
+ [23.48602, 67.59352],
+ [23.36517, 67.46545],
+ [23.71124, 67.41592],
+ [23.72772, 67.32186],
+ [23.54644, 67.26885],
+ [23.53128, 67.16724],
+ [23.89251, 66.86863],
+ [23.84582, 66.57775],
+ [23.61843, 66.44562],
+ [23.67171, 66.20303],
+ [23.87191, 66.14551],
+ [24.09988, 65.87247],
+ [24.1658, 65.66959],
+ [24.11636, 65.39143],
+ [21.37939, 63.68037],
+ [20.17639, 63.29787],
+ [19.08325, 60.16064],
+ [20.22033, 59.44786],
+ [22.29125, 59.44507],
+ [25.82336, 59.933],
+ [27.52075, 60.23435],
+ [27.83386, 60.53229],
+ [29.29641, 61.26165],
+ [31.20803, 62.44759],
+ [31.62826, 62.90585],
+ [31.2635, 63.22106],
+ [29.99605, 63.75387],
+ [30.28656, 63.81704],
+ [30.58319, 64.0782],
+ [30.5104, 64.26428],
+ [30.09979, 64.39218],
+ [30.02563, 64.58736],
+ [30.16845, 64.63329],
+ [30.09429, 64.79518],
+ [29.78393, 64.79811],
+ [29.65347, 64.89733],
+ [29.65759, 65.05939],
+ [29.91027, 65.09527],
+ [29.93225, 65.20895],
+ [29.72076, 65.27853],
+ [29.91577, 65.63788],
+ [30.1863, 65.66223],
+ [29.9913, 66.09771],
+ [29.07119, 66.91983],
+ [30.11077, 67.63431],
+ [29.3486, 68.08099],
+ [28.67568, 68.20166],
+ [28.46547, 68.54039],
+ [28.72375, 68.72642],
+ [28.82675, 68.87341],
+ [28.44985, 68.90792],
+ [28.95996, 69.05089],
+ [28.83324, 69.10563],
+ [28.87207, 69.22132],
+ [29.36096, 69.46526],
+ [29.15634, 69.69667],
+ [28.38455, 69.83488],
+ [28.35845, 69.88312],
+ [28.17169, 69.92511],
+ [28.00415, 70.01495],
+ [27.96569, 70.0988]
+ ]
+ ],
+ "terms_url": "https://www.maanmittauslaitos.fi/en/",
+ "terms_text": "© Maanmittauslaitos",
+ "description": "Background map from the National Land Survey of Finland",
+ "icon": "https://www.maanmittauslaitos.fi/apple-touch-icon.png"
+ },
+ {
+ "id": "mml-orto",
+ "name": "MML Orthophoto",
+ "type": "tms",
+ "template": "http://tiles.kartat.kapsi.fi/ortokuva/{zoom}/{x}/{y}.jpg",
+ "scaleExtent": [2, 19],
+ "polygon": [
+ [
+ [27.96569, 70.0988],
+ [27.57431, 70.07728],
+ [27.10876, 69.93548],
+ [26.70913, 69.97549],
+ [26.45507, 69.94207],
+ [25.87142, 69.6671],
+ [25.94833, 69.61024],
+ [25.83023, 69.55323],
+ [25.66955, 69.20794],
+ [25.73822, 69.01797],
+ [25.60089, 68.90309],
+ [25.45806, 68.91199],
+ [25.11749, 68.80699],
+ [25.07354, 68.64355],
+ [24.88128, 68.62003],
+ [23.97491, 68.84568],
+ [23.74969, 68.8308],
+ [23.63433, 68.71645],
+ [23.18939, 68.68053],
+ [22.52197, 68.7553],
+ [21.63894, 69.28191],
+ [21.26953, 69.31783],
+ [20.94131, 69.21622],
+ [21.08963, 69.09307],
+ [21.05941, 69.04352],
+ [20.72296, 69.12491],
+ [20.54443, 69.0558],
+ [20.84655, 68.97416],
+ [20.81634, 68.91742],
+ [21.38754, 68.68461],
+ [22.04734, 68.47066],
+ [22.80212, 68.35464],
+ [23.12072, 68.13169],
+ [23.5437, 67.9633],
+ [23.44757, 67.8393],
+ [23.48602, 67.59352],
+ [23.36517, 67.46545],
+ [23.71124, 67.41592],
+ [23.72772, 67.32186],
+ [23.54644, 67.26885],
+ [23.53128, 67.16724],
+ [23.89251, 66.86863],
+ [23.84582, 66.57775],
+ [23.61843, 66.44562],
+ [23.67171, 66.20303],
+ [23.87191, 66.14551],
+ [24.09988, 65.87247],
+ [24.1658, 65.66959],
+ [24.11636, 65.39143],
+ [21.37939, 63.68037],
+ [20.17639, 63.29787],
+ [19.08325, 60.16064],
+ [20.22033, 59.44786],
+ [22.29125, 59.44507],
+ [25.82336, 59.933],
+ [27.52075, 60.23435],
+ [27.83386, 60.53229],
+ [29.29641, 61.26165],
+ [31.20803, 62.44759],
+ [31.62826, 62.90585],
+ [31.2635, 63.22106],
+ [29.99605, 63.75387],
+ [30.28656, 63.81704],
+ [30.58319, 64.0782],
+ [30.5104, 64.26428],
+ [30.09979, 64.39218],
+ [30.02563, 64.58736],
+ [30.16845, 64.63329],
+ [30.09429, 64.79518],
+ [29.78393, 64.79811],
+ [29.65347, 64.89733],
+ [29.65759, 65.05939],
+ [29.91027, 65.09527],
+ [29.93225, 65.20895],
+ [29.72076, 65.27853],
+ [29.91577, 65.63788],
+ [30.1863, 65.66223],
+ [29.9913, 66.09771],
+ [29.07119, 66.91983],
+ [30.11077, 67.63431],
+ [29.3486, 68.08099],
+ [28.67568, 68.20166],
+ [28.46547, 68.54039],
+ [28.72375, 68.72642],
+ [28.82675, 68.87341],
+ [28.44985, 68.90792],
+ [28.95996, 69.05089],
+ [28.83324, 69.10563],
+ [28.87207, 69.22132],
+ [29.36096, 69.46526],
+ [29.15634, 69.69667],
+ [28.38455, 69.83488],
+ [28.35845, 69.88312],
+ [28.17169, 69.92511],
+ [28.00415, 70.01495],
+ [27.96569, 70.0988]
+ ]
+ ],
+ "terms_url": "https://www.maanmittauslaitos.fi/en/",
+ "terms_text": "© Maanmittauslaitos",
+ "best": true,
+ "description": "Ortophotos from the National Land Survey of Finland",
+ "icon": "https://www.maanmittauslaitos.fi/apple-touch-icon.png"
+ },
+ {
+ "id": "mml-topo",
+ "name": "MML Topographic Map",
+ "type": "tms",
+ "template": "http://tiles.kartat.kapsi.fi/peruskartta/{zoom}/{x}/{y}.jpg",
+ "scaleExtent": [2, 19],
+ "polygon": [
+ [
+ [27.96569, 70.0988],
+ [27.57431, 70.07728],
+ [27.10876, 69.93548],
+ [26.70913, 69.97549],
+ [26.45507, 69.94207],
+ [25.87142, 69.6671],
+ [25.94833, 69.61024],
+ [25.83023, 69.55323],
+ [25.66955, 69.20794],
+ [25.73822, 69.01797],
+ [25.60089, 68.90309],
+ [25.45806, 68.91199],
+ [25.11749, 68.80699],
+ [25.07354, 68.64355],
+ [24.88128, 68.62003],
+ [23.97491, 68.84568],
+ [23.74969, 68.8308],
+ [23.63433, 68.71645],
+ [23.18939, 68.68053],
+ [22.52197, 68.7553],
+ [21.63894, 69.28191],
+ [21.26953, 69.31783],
+ [20.94131, 69.21622],
+ [21.08963, 69.09307],
+ [21.05941, 69.04352],
+ [20.72296, 69.12491],
+ [20.54443, 69.0558],
+ [20.84655, 68.97416],
+ [20.81634, 68.91742],
+ [21.38754, 68.68461],
+ [22.04734, 68.47066],
+ [22.80212, 68.35464],
+ [23.12072, 68.13169],
+ [23.5437, 67.9633],
+ [23.44757, 67.8393],
+ [23.48602, 67.59352],
+ [23.36517, 67.46545],
+ [23.71124, 67.41592],
+ [23.72772, 67.32186],
+ [23.54644, 67.26885],
+ [23.53128, 67.16724],
+ [23.89251, 66.86863],
+ [23.84582, 66.57775],
+ [23.61843, 66.44562],
+ [23.67171, 66.20303],
+ [23.87191, 66.14551],
+ [24.09988, 65.87247],
+ [24.1658, 65.66959],
+ [24.11636, 65.39143],
+ [21.37939, 63.68037],
+ [20.17639, 63.29787],
+ [19.08325, 60.16064],
+ [20.22033, 59.44786],
+ [22.29125, 59.44507],
+ [25.82336, 59.933],
+ [27.52075, 60.23435],
+ [27.83386, 60.53229],
+ [29.29641, 61.26165],
+ [31.20803, 62.44759],
+ [31.62826, 62.90585],
+ [31.2635, 63.22106],
+ [29.99605, 63.75387],
+ [30.28656, 63.81704],
+ [30.58319, 64.0782],
+ [30.5104, 64.26428],
+ [30.09979, 64.39218],
+ [30.02563, 64.58736],
+ [30.16845, 64.63329],
+ [30.09429, 64.79518],
+ [29.78393, 64.79811],
+ [29.65347, 64.89733],
+ [29.65759, 65.05939],
+ [29.91027, 65.09527],
+ [29.93225, 65.20895],
+ [29.72076, 65.27853],
+ [29.91577, 65.63788],
+ [30.1863, 65.66223],
+ [29.9913, 66.09771],
+ [29.07119, 66.91983],
+ [30.11077, 67.63431],
+ [29.3486, 68.08099],
+ [28.67568, 68.20166],
+ [28.46547, 68.54039],
+ [28.72375, 68.72642],
+ [28.82675, 68.87341],
+ [28.44985, 68.90792],
+ [28.95996, 69.05089],
+ [28.83324, 69.10563],
+ [28.87207, 69.22132],
+ [29.36096, 69.46526],
+ [29.15634, 69.69667],
+ [28.38455, 69.83488],
+ [28.35845, 69.88312],
+ [28.17169, 69.92511],
+ [28.00415, 70.01495],
+ [27.96569, 70.0988]
+ ]
+ ],
+ "terms_url": "https://www.maanmittauslaitos.fi/en/",
+ "terms_text": "© Maanmittauslaitos",
+ "description": "Topographic map from the National Land Survey of Finland",
+ "icon": "https://www.maanmittauslaitos.fi/apple-touch-icon.png"
+ },
+ {
+ "id": "MunichLatestAerialImagery",
+ "name": "Munich latest aerial imagery 60cm",
+ "type": "wms",
+ "template": "https://ogc.muenchen.de/wms/opendata_luftbild?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=bgl0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2015-01-01T00:00:00.000Z",
+ "startDate": "2015-01-01T00:00:00.000Z",
+ "scaleExtent": [11, 22],
+ "polygon": [
+ [
+ [11.48878, 48.053],
+ [11.55589, 48.05323],
+ [11.55583, 48.06224],
+ [11.56915, 48.06229],
+ [11.56908, 48.07128],
+ [11.64986, 48.07155],
+ [11.64993, 48.06256],
+ [11.70326, 48.06274],
+ [11.70313, 48.08074],
+ [11.71673, 48.08079],
+ [11.71667, 48.08968],
+ [11.7299, 48.08972],
+ [11.72963, 48.12566],
+ [11.74313, 48.1257],
+ [11.74292, 48.15276],
+ [11.72943, 48.15271],
+ [11.72936, 48.16152],
+ [11.71612, 48.16147],
+ [11.71592, 48.18859],
+ [11.7027, 48.18855],
+ [11.70263, 48.19752],
+ [11.67558, 48.19743],
+ [11.67537, 48.22446],
+ [11.66176, 48.22441],
+ [11.66169, 48.23355],
+ [11.64863, 48.2335],
+ [11.64857, 48.24246],
+ [11.54064, 48.2421],
+ [11.54058, 48.25093],
+ [11.52735, 48.25088],
+ [11.52728, 48.26001],
+ [11.47335, 48.25983],
+ [11.47356, 48.23291],
+ [11.46014, 48.23287],
+ [11.46021, 48.22373],
+ [11.43336, 48.22364],
+ [11.43343, 48.21439],
+ [11.3798, 48.21421],
+ [11.37987, 48.20518],
+ [11.36607, 48.20514],
+ [11.36621, 48.18741],
+ [11.35259, 48.18737],
+ [11.35266, 48.17817],
+ [11.33946, 48.17813],
+ [11.33973, 48.14216],
+ [11.36684, 48.14225],
+ [11.36697, 48.12443],
+ [11.38083, 48.12448],
+ [11.3809, 48.11558],
+ [11.44769, 48.1158],
+ [11.44804, 48.07087],
+ [11.46186, 48.07091],
+ [11.46193, 48.06193],
+ [11.48872, 48.06202],
+ [11.48878, 48.053]
+ ]
+ ],
+ "terms_url": "http://www.geodatenservice-muenchen.de/",
+ "terms_text": "Datenquelle: dl-de/by-2-0: Landeshauptstadt München – Kommunalreferat – GeodatenService – www.geodatenservice-muenchen.de",
+ "icon": "http://www.muenchen.de/media/css/images/favicon_114x114.png"
+ },
+ {
+ "id": "openlabs-geoportal-public-transport",
+ "name": "Municipality of Tirana - Public Transport (Open Labs GeoPortal) (overlay)",
+ "type": "tms",
+ "template": "https://geoportal.openlabs.cc/mapcache/tms/1.0.0/public-transport@GoogleMapsCompatibleExtended/{zoom}/{x}/{-y}.png",
+ "endDate": "2017-01-01T00:00:00.000Z",
+ "startDate": "2017-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 21],
+ "polygon": [
+ [
+ [19.73762, 41.30154],
+ [19.88628, 41.27213],
+ [19.86877, 41.38582],
+ [19.68338, 41.3732],
+ [19.73762, 41.30154]
+ ]
+ ],
+ "terms_url": "https://geoportal.openlabs.cc/",
+ "terms_text": "Data provided by the Muncipality of Tirana hosted by Open Labs",
+ "description": "Bus stops & lines provided by the Muncipality of Tirana hosted by Open Labs",
+ "overlay": true
+ },
+ {
+ "id": "openlabs-geoportal-tirana",
+ "name": "Municipality of Tirana (Open Labs GeoPortal)",
+ "type": "tms",
+ "template": "https://geoportal.openlabs.cc/mapcache/tms/1.0.0/tirana@GoogleMapsCompatibleExtended/{zoom}/{x}/{-y}.png",
+ "endDate": "2017-01-01T00:00:00.000Z",
+ "startDate": "2017-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 21],
+ "polygon": [
+ [
+ [19.70226, 41.1404],
+ [19.77573, 41.11868],
+ [19.86431, 41.12126],
+ [20.24986, 41.3495],
+ [20.03082, 41.41184],
+ [19.92577, 41.5204],
+ [19.88869, 41.50755],
+ [19.88937, 41.42265],
+ [19.81659, 41.46177],
+ [19.7335, 41.43037],
+ [19.74174, 41.37887],
+ [19.65797, 41.37475],
+ [19.57214, 41.24322],
+ [19.61815, 41.22567],
+ [19.67171, 41.22722],
+ [19.70226, 41.1404]
+ ]
+ ],
+ "terms_url": "https://geoportal.openlabs.cc",
+ "terms_text": "Data provided by the Muncipality of Tirana hosted by Open Labs",
+ "description": "Streets & Builings provided by the Muncipality of Tirana hosted by Open Labs"
+ },
+ {
+ "id": "NC-US",
+ "name": "NC Latest Orthoimagery",
+ "type": "wms",
+ "template": "https://services.nconemap.gov/secure/services/Imagery/Orthoimagery_All/ImageServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2013-01-01T00:00:00.000Z",
+ "startDate": "1995-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [-81.6792, 36.5974],
+ [-80.25359, 36.54793],
+ [-75.8409, 36.5671],
+ [-75.4323, 35.6441],
+ [-75.50475, 35.18806],
+ [-75.70525, 35.17684],
+ [-76.14745, 34.94077],
+ [-76.53472, 34.55487],
+ [-76.69676, 34.66789],
+ [-77.27904, 34.53224],
+ [-77.68828, 34.26482],
+ [-77.9435, 33.8269],
+ [-78.21288, 33.89402],
+ [-78.5301, 33.8304],
+ [-79.6693, 34.7916],
+ [-80.8122, 34.8085],
+ [-80.84685, 34.96329],
+ [-80.95122, 35.05552],
+ [-81.06383, 35.01729],
+ [-81.07482, 35.13417],
+ [-82.3632, 35.1805],
+ [-82.9989, 34.9919],
+ [-84.3333, 34.9767],
+ [-84.27184, 35.28229],
+ [-84.09056, 35.27332],
+ [-83.91478, 35.53301],
+ [-83.55498, 35.5911],
+ [-83.2556, 35.73392],
+ [-82.98644, 35.81414],
+ [-82.92327, 35.96767],
+ [-82.67882, 36.0854],
+ [-82.60192, 36.08984],
+ [-82.536, 35.96989],
+ [-82.35472, 36.14752],
+ [-82.04436, 36.14309],
+ [-81.90428, 36.33803],
+ [-81.74224, 36.37342],
+ [-81.6792, 36.5974]
+ ]
+ ],
+ "description": "Most recent true color imagery for the state of North Carolina. The imagery has a pixel resolution of 6 inches and is comprised of imagery flown in 2010, 2012, 2013, and 2014"
+ },
+ {
+ "id": "geodata.state.nj.us-Infrared2015",
+ "name": "NJ 2015 Aerial Imagery (Infrared)",
+ "type": "wms",
+ "template": "https://geodata.state.nj.us/imagerywms/Infrared2015?FORMAT=image/png&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&SRS={proj}&WIDTH={width}&HEIGHT={height}&LAYERS=Infrared2015&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2015-05-03T00:00:00.000Z",
+ "startDate": "2015-03-29T00:00:00.000Z",
+ "scaleExtent": [0, 20],
+ "polygon": [
+ [
+ [-74.86599, 40.08543],
+ [-74.84093, 40.10722],
+ [-74.8229, 40.13033],
+ [-74.78805, 40.12468],
+ [-74.72609, 40.14949],
+ [-74.72918, 40.16392],
+ [-74.76334, 40.19172],
+ [-74.77552, 40.21428],
+ [-74.84402, 40.24796],
+ [-74.86839, 40.29157],
+ [-74.94461, 40.33817],
+ [-74.9671, 40.3952],
+ [-75.00263, 40.40605],
+ [-75.02684, 40.40252],
+ [-75.06134, 40.4165],
+ [-75.07421, 40.45505],
+ [-75.06906, 40.5365],
+ [-75.10237, 40.56702],
+ [-75.13593, 40.57361],
+ [-75.16777, 40.55907],
+ [-75.19764, 40.57367],
+ [-75.20373, 40.61832],
+ [-75.20506, 40.69131],
+ [-75.19833, 40.75389],
+ [-75.1724, 40.78067],
+ [-75.1367, 40.77729],
+ [-75.09018, 40.82238],
+ [-75.10099, 40.83927],
+ [-75.09687, 40.85096],
+ [-75.06846, 40.85037],
+ [-75.05705, 40.86757],
+ [-75.13773, 40.97309],
+ [-75.13515, 40.99441],
+ [-75.03902, 41.03819],
+ [-74.98152, 41.1126],
+ [-74.90547, 41.17038],
+ [-74.84024, 41.27864],
+ [-74.79801, 41.32268],
+ [-74.75716, 41.34769],
+ [-74.6957, 41.36058],
+ [-74.04105, 41.05909],
+ [-74.04105, 41.05909],
+ [-74.04105, 41.05909],
+ [-74.04105, 41.05909],
+ [-74.04105, 41.05909],
+ [-73.89027, 40.99804],
+ [-73.93341, 40.88208],
+ [-73.93341, 40.88208],
+ [-73.93341, 40.88208],
+ [-73.93341, 40.88208],
+ [-74.01146, 40.75558],
+ [-74.02454, 40.70944],
+ [-74.06605, 40.65173],
+ [-74.15222, 40.63897],
+ [-74.18312, 40.64457],
+ [-74.20046, 40.63128],
+ [-74.19926, 40.59844],
+ [-74.21505, 40.55803],
+ [-74.24681, 40.54811],
+ [-74.24715, 40.51954],
+ [-74.26758, 40.48965],
+ [-74.26054, 40.46928],
+ [-74.19926, 40.44564],
+ [-74.18106, 40.4604],
+ [-74.13643, 40.45909],
+ [-73.99756, 40.4135],
+ [-74.02657, 40.47777],
+ [-74.00391, 40.48404],
+ [-73.97781, 40.45204],
+ [-73.96477, 40.33189],
+ [-74.08836, 39.75682],
+ [-74.35684, 39.38341],
+ [-74.60953, 39.21523],
+ [-74.77638, 38.99891],
+ [-74.86359, 38.93164],
+ [-74.93122, 38.92069],
+ [-74.98032, 38.9303],
+ [-74.96075, 39.00798],
+ [-74.90547, 39.10023],
+ [-74.89998, 39.16414],
+ [-75.10117, 39.2014],
+ [-75.1355, 39.17106],
+ [-75.42595, 39.3781],
+ [-75.47504, 39.43195],
+ [-75.54336, 39.4574],
+ [-75.55229, 39.48284],
+ [-75.5389, 39.54191],
+ [-75.51968, 39.56997],
+ [-75.57117, 39.60807],
+ [-75.5777, 39.62552],
+ [-75.53993, 39.65646],
+ [-75.47298, 39.74745],
+ [-75.46625, 39.75076],
+ [-75.46625, 39.75076],
+ [-75.46625, 39.75076],
+ [-75.46625, 39.75076],
+ [-75.46625, 39.75077],
+ [-75.46625, 39.75077],
+ [-75.46625, 39.75077],
+ [-75.46625, 39.75077],
+ [-75.46509, 39.76448],
+ [-75.41504, 39.80179],
+ [-75.32467, 39.85889],
+ [-75.24605, 39.86469],
+ [-75.14374, 39.90026],
+ [-75.14236, 39.95791],
+ [-75.07061, 39.98712],
+ [-75.05653, 40.00868],
+ [-74.93534, 40.07256],
+ [-74.86599, 40.08543]
+ ]
+ ],
+ "terms_url": "https://njgin.state.nj.us/NJ_NJGINExplorer/ShowMetadata.jsp?docId={E30775F2-6370-4525-8E68-C371ED29BBB3}",
+ "terms_text": "NJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS)",
+ "description": "Digital orthophotography of New Jersey, Near Infrared, 1 foot resolution"
+ },
+ {
+ "id": "geodata.state.nj.us-Natural2015",
+ "name": "NJ 2015 Aerial Imagery (Natural Color)",
+ "type": "wms",
+ "template": "https://geodata.state.nj.us/imagerywms/Natural2015?FORMAT=image/png&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&SRS={proj}&WIDTH={width}&HEIGHT={height}&LAYERS=Natural2015&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2015-05-03T00:00:00.000Z",
+ "startDate": "2015-03-29T00:00:00.000Z",
+ "scaleExtent": [0, 20],
+ "polygon": [
+ [
+ [-74.86599, 40.08543],
+ [-74.84093, 40.10722],
+ [-74.8229, 40.13033],
+ [-74.78805, 40.12468],
+ [-74.72609, 40.14949],
+ [-74.72918, 40.16392],
+ [-74.76334, 40.19172],
+ [-74.77552, 40.21428],
+ [-74.84402, 40.24796],
+ [-74.86839, 40.29157],
+ [-74.94461, 40.33817],
+ [-74.9671, 40.3952],
+ [-75.00263, 40.40605],
+ [-75.02684, 40.40252],
+ [-75.06134, 40.4165],
+ [-75.07421, 40.45505],
+ [-75.06906, 40.5365],
+ [-75.10237, 40.56702],
+ [-75.13593, 40.57361],
+ [-75.16777, 40.55907],
+ [-75.19764, 40.57367],
+ [-75.20373, 40.61832],
+ [-75.20506, 40.69131],
+ [-75.19833, 40.75389],
+ [-75.1724, 40.78067],
+ [-75.1367, 40.77729],
+ [-75.09018, 40.82238],
+ [-75.10099, 40.83927],
+ [-75.09687, 40.85096],
+ [-75.06846, 40.85037],
+ [-75.05705, 40.86757],
+ [-75.13773, 40.97309],
+ [-75.13515, 40.99441],
+ [-75.03902, 41.03819],
+ [-74.98152, 41.1126],
+ [-74.90547, 41.17038],
+ [-74.84024, 41.27864],
+ [-74.79801, 41.32268],
+ [-74.75716, 41.34769],
+ [-74.6957, 41.36058],
+ [-74.04105, 41.05909],
+ [-74.04105, 41.05909],
+ [-74.04105, 41.05909],
+ [-74.04105, 41.05909],
+ [-74.04105, 41.05909],
+ [-73.89027, 40.99804],
+ [-73.93341, 40.88208],
+ [-73.93341, 40.88208],
+ [-73.93341, 40.88208],
+ [-73.93341, 40.88208],
+ [-74.01146, 40.75558],
+ [-74.02454, 40.70944],
+ [-74.06605, 40.65173],
+ [-74.15222, 40.63897],
+ [-74.18312, 40.64457],
+ [-74.20046, 40.63128],
+ [-74.19926, 40.59844],
+ [-74.21505, 40.55803],
+ [-74.24681, 40.54811],
+ [-74.24715, 40.51954],
+ [-74.26758, 40.48965],
+ [-74.26054, 40.46928],
+ [-74.19926, 40.44564],
+ [-74.18106, 40.4604],
+ [-74.13643, 40.45909],
+ [-73.99756, 40.4135],
+ [-74.02657, 40.47777],
+ [-74.00391, 40.48404],
+ [-73.97781, 40.45204],
+ [-73.96477, 40.33189],
+ [-74.08836, 39.75682],
+ [-74.35684, 39.38341],
+ [-74.60953, 39.21523],
+ [-74.77638, 38.99891],
+ [-74.86359, 38.93164],
+ [-74.93122, 38.92069],
+ [-74.98032, 38.9303],
+ [-74.96075, 39.00798],
+ [-74.90547, 39.10023],
+ [-74.89998, 39.16414],
+ [-75.10117, 39.2014],
+ [-75.1355, 39.17106],
+ [-75.42595, 39.3781],
+ [-75.47504, 39.43195],
+ [-75.54336, 39.4574],
+ [-75.55229, 39.48284],
+ [-75.5389, 39.54191],
+ [-75.51968, 39.56997],
+ [-75.57117, 39.60807],
+ [-75.5777, 39.62552],
+ [-75.53993, 39.65646],
+ [-75.47298, 39.74745],
+ [-75.46625, 39.75076],
+ [-75.46625, 39.75076],
+ [-75.46625, 39.75076],
+ [-75.46625, 39.75076],
+ [-75.46625, 39.75077],
+ [-75.46625, 39.75077],
+ [-75.46625, 39.75077],
+ [-75.46625, 39.75077],
+ [-75.46509, 39.76448],
+ [-75.41504, 39.80179],
+ [-75.32467, 39.85889],
+ [-75.24605, 39.86469],
+ [-75.14374, 39.90026],
+ [-75.14236, 39.95791],
+ [-75.07061, 39.98712],
+ [-75.05653, 40.00868],
+ [-74.93534, 40.07256],
+ [-74.86599, 40.08543]
+ ]
+ ],
+ "terms_url": "https://njgin.state.nj.us/NJ_NJGINExplorer/ShowMetadata.jsp?docId={CDC67AB8-ADA1-4B4B-9087-67A82CB9151C}",
+ "terms_text": "NJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS)",
+ "description": "Digital orthophotography of New Jersey, Natural Color, 1 foot resolution"
+ },
+ {
+ "id": "NLSC-EMAP5",
+ "name": "NLSC General Map with Contour line",
+ "type": "tms",
+ "template": "https://wmts.nlsc.gov.tw/wmts/EMAP5_OPENDATA/default/EPSG:3857/{zoom}/{y}/{x}",
+ "startDate": "2015-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 15],
+ "polygon": [
+ [
+ [120.45706, 26.39706],
+ [120.44256, 26.3708],
+ [120.44713, 26.35315],
+ [120.4673, 26.34058],
+ [120.49787, 26.33409],
+ [120.5141, 26.34016],
+ [120.53412, 26.36416],
+ [120.5297, 26.38421],
+ [120.49567, 26.40158],
+ [120.45706, 26.39706]
+ ],
+ [
+ [119.90072, 25.98586],
+ [119.89601, 25.96489],
+ [119.91313, 25.94704],
+ [119.95035, 25.92785],
+ [119.99056, 25.92606],
+ [120.01984, 25.93633],
+ [120.02778, 25.95574],
+ [120.02753, 25.98452],
+ [119.99899, 26.00103],
+ [119.94043, 26.00281],
+ [119.90072, 25.98586]
+ ],
+ [
+ [122.089, 24.5485],
+ [121.709, 23.4541],
+ [121.717, 22.698],
+ [121.818, 21.95],
+ [121.803, 21.8735],
+ [121.759, 21.8087],
+ [121.694, 21.7653],
+ [120.861, 21.5631],
+ [120.815, 21.5576],
+ [120.739, 21.5728],
+ [120.661, 21.6296],
+ [120.202, 22.1809],
+ [119.27, 23.0542],
+ [119.153, 23.2049],
+ [119.128, 23.2485],
+ [119.103, 23.4],
+ [119.118, 23.4765],
+ [119.137, 23.512],
+ [119.361, 23.8885],
+ [119.406, 23.9407],
+ [120.968, 25.2284],
+ [121.408, 25.4687],
+ [121.989, 25.8147],
+ [122.065, 25.8299],
+ [122.141, 25.8147],
+ [122.216, 25.7663],
+ [122.26, 25.7015],
+ [122.297, 25.48],
+ [122.196, 24.9696],
+ [122.089, 24.5485]
+ ],
+ [
+ [116.6855, 20.85476],
+ [116.63091, 20.81496],
+ [116.59417, 20.76008],
+ [116.57972, 20.69675],
+ [116.58931, 20.63259],
+ [116.62177, 20.57534],
+ [116.67319, 20.53192],
+ [116.73737, 20.50758],
+ [116.80657, 20.50527],
+ [116.87244, 20.52526],
+ [116.92703, 20.56514],
+ [116.96377, 20.62008],
+ [116.97822, 20.68345],
+ [116.96863, 20.74759],
+ [116.93617, 20.80477],
+ [116.88475, 20.84811],
+ [116.82057, 20.8724],
+ [116.75137, 20.87471],
+ [116.6855, 20.85476]
+ ],
+ [
+ [118.22615, 24.45633],
+ [118.29364, 24.45385],
+ [118.28515, 24.4751],
+ [118.30974, 24.49168],
+ [118.37677, 24.47293],
+ [118.41009, 24.53323],
+ [118.4479, 24.52841],
+ [118.47464, 24.45993],
+ [118.51299, 24.43155],
+ [118.50658, 24.42023],
+ [118.48116, 24.43324],
+ [118.46106, 24.40892],
+ [118.42615, 24.39704],
+ [118.39701, 24.42842],
+ [118.37656, 24.42584],
+ [118.33976, 24.38146],
+ [118.30319, 24.37058],
+ [118.25742, 24.41392],
+ [118.13813, 24.37248],
+ [118.16173, 24.40224],
+ [118.20942, 24.41396],
+ [118.18958, 24.43522],
+ [118.21763, 24.43021],
+ [118.22615, 24.45633]
+ ],
+ [
+ [120.22345, 26.30045],
+ [120.25508, 26.31004],
+ [120.26989, 26.33687],
+ [120.25919, 26.36522],
+ [120.22925, 26.37848],
+ [120.19762, 26.3689],
+ [120.18282, 26.34207],
+ [120.19352, 26.31372],
+ [120.22345, 26.30045]
+ ],
+ [
+ [119.43745, 25.00475],
+ [119.4342, 24.98862],
+ [119.45419, 24.97226],
+ [119.48274, 24.97184],
+ [119.48984, 24.99379],
+ [119.47159, 25.00692],
+ [119.43745, 25.00475]
+ ],
+ [
+ [119.88699, 26.18038],
+ [119.89323, 26.12031],
+ [119.92851, 26.10802],
+ [119.97794, 26.12236],
+ [120.03668, 26.15173],
+ [120.10981, 26.21349],
+ [120.11927, 26.27137],
+ [120.06292, 26.31726],
+ [119.99237, 26.31649],
+ [119.94677, 26.28988],
+ [119.90204, 26.24398],
+ [119.88699, 26.18038]
+ ]
+ ],
+ "terms_url": "https://maps.nlsc.gov.tw",
+ "terms_text": "© National Land Surveying and Mapping Center, Taiwan OGDL 1.0",
+ "description": "The emap from Taiwan National Land Surveying and Mapping Center",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABHNCSVQICAgIfAhkiAAAAxJJREFUOI3tlF9oW2UYxn9f4nKW2ixfjJGYMnuctRUZ5mhEpjdJEEaHtmsZaKHq0qt6ZdtZL3Zhk3ilIKS9Ui806UStE7Edjln8kwzEwaB6IshsmJIqK1ttZ7Qlzel2eryQhqZrsDC8EHyuvu993+/53j+8D/yPfxtip4GqH1X1owLkdHI3RSwbkbFu1yAPdx4t3hpSS6YLAM05i/vCqcmzZwpj9T6pIZYOZNArNADhsQj3RVNjtyS1DcKtiHlPIb96PTn67nJiq8++cRgJicTpQ7Yz0oHc7cQZeakzPbTyqr9iKXUr0lfbqOx7LHJgbXrux5/X9M0+G0C8SySeeWTPQPSLxu4jn1vd4tE7m4euDNclrCEvt6E+25/e6H+VuKen57vEe1b8I29b8cKyo6j6Uece6I/VK387jC70crgjMFBDPDEx8aA5aOPkG+f7FhcX9YhGZLIUBSD7VAtSsZOKNpGKNgFU710tbiJ7G0lFm9DucCL2R7uCXjTpQFZbMV6wMu+EbWnpQOIJVKcvFTuDIR+az4nmc1Zt6h4HuV9XGHjIx1D2EvrCKtLnUgE+Pig+kQ6kDeDFc9YQwJdP2rLuBlfzRjklw7yh7JJh0vfZL6Tb70IqdqRSnT/5JfQTBcZfDom4HaBiUjn5k/Xh0VYRe85ztZ11QX53K4ZQyPxwFcO0yP+2Ste9bi6XrxPbfxuvnV9g6uIfPK/dTskwURbOFfPTM2PSIeTT99Bzw4KMhERi5ICIl667OOHuYNzdQV5p/ccBxi89kUmm5vveDou06kLddvNSibasbvZGXvj9fYJGgbldAaYaI+SVVoq7ApxtCNXEH7ZyhL8+Nho00YJeoT3+6Xp0W2KtBU07NpzNlHulem2ecHmGzpUcmlGg+dp83aynitbkK99ayfwSel2tiLUTo3M4lSn3ys12ub5MsFL4O4GGWZq/fyszfvrPsfwSNZtnpw70i+jMfjPdf//MfXf7UYtrASqWQkUoeNzLtHumS0buzePJD4zjV1a5vPX9jmRT9aNGNCKbZXMn0vnfwl+e9BTflqrxKAAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "IBGE_Salvador_Streets",
+ "name": "Nomes de Ruas IBGE Salvador-BA",
+ "type": "tms",
+ "template": "https://api.mapbox.com/styles/v1/wille/cj8lp78dn62wl2rquim47qo0g/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoid2lsbGUiLCJhIjoicFNVWk5VWSJ9.hluCd0YGvYHNlFi_utWe2g",
+ "scaleExtent": [0, 20],
+ "polygon": [
+ [
+ [-38.48974, -12.81113],
+ [-38.54485, -13.01392],
+ [-38.47755, -13.03466],
+ [-38.33473, -12.94685],
+ [-38.30006, -12.90669],
+ [-38.33954, -12.90435],
+ [-38.35482, -12.83021],
+ [-38.38091, -12.82184],
+ [-38.40717, -12.86754],
+ [-38.46537, -12.81599],
+ [-38.48974, -12.81113]
+ ]
+ ],
+ "description": "Streets geometry and names of Salvador, Bahia. Source: Faces de Logradouro - IBGE.",
+ "overlay": true
+ },
+ {
+ "id": "geovekst-nib",
+ "name": "Norway Orthophoto",
+ "type": "tms",
+ "template": "https://waapi.webatlas.no/maptiles/tiles/webatlas-orto-newup/wa_grid/{zoom}/{x}/{y}.jpeg?api_key=b8e36d51-119a-423b-b156-d744d54123d5",
+ "scaleExtent": [0, 21],
+ "polygon": [
+ [
+ [11.53568, 58.86659],
+ [11.66192, 58.89784],
+ [11.7935, 59.09471],
+ [11.84243, 59.239],
+ [11.82877, 59.34509],
+ [11.71279, 59.60387],
+ [11.86205, 59.63771],
+ [11.95608, 59.69196],
+ [11.93389, 59.86895],
+ [12.17881, 59.8786],
+ [12.46948, 60.03124],
+ [12.55438, 60.18972],
+ [12.51237, 60.31659],
+ [12.61793, 60.40065],
+ [12.61883, 60.51512],
+ [12.25387, 61.01106],
+ [12.69195, 61.04632],
+ [12.90756, 61.34802],
+ [12.57493, 61.57623],
+ [12.42465, 61.57175],
+ [12.15233, 61.72694],
+ [12.31212, 62.26512],
+ [12.07078, 62.61109],
+ [12.14907, 62.7455],
+ [12.08883, 62.89668],
+ [12.23464, 62.99952],
+ [11.99225, 63.26684],
+ [12.23327, 63.47505],
+ [12.17971, 63.57117],
+ [12.69313, 63.96344],
+ [13.21378, 64.0839],
+ [13.99183, 64.00514],
+ [14.17035, 64.18236],
+ [14.13253, 64.47516],
+ [13.67658, 64.58356],
+ [14.02455, 64.88119],
+ [14.33572, 65.11098],
+ [14.51699, 65.30365],
+ [14.54177, 65.67762],
+ [14.63674, 65.81299],
+ [14.53903, 66.12496],
+ [15.03881, 66.14245],
+ [15.50033, 66.27956],
+ [15.39368, 66.4795],
+ [15.63473, 66.59685],
+ [16.04695, 66.90283],
+ [16.39832, 67.03827],
+ [16.41439, 67.21036],
+ [16.10744, 67.43617],
+ [16.16455, 67.5087],
+ [16.42318, 67.52589],
+ [16.5866, 67.64528],
+ [16.7471, 67.90466],
+ [17.34741, 68.09995],
+ [17.90583, 67.95885],
+ [18.16489, 68.19424],
+ [18.13721, 68.52675],
+ [18.40761, 68.57059],
+ [18.62222, 68.49607],
+ [18.98574, 68.50591],
+ [19.92752, 68.34558],
+ [20.24505, 68.49201],
+ [19.99237, 68.55586],
+ [20.21137, 68.65685],
+ [20.34848, 68.79976],
+ [20.31623, 68.93227],
+ [20.10322, 69.0359],
+ [20.55694, 69.04926],
+ [20.7206, 69.10837],
+ [21.06178, 69.02541],
+ [21.12098, 69.10587],
+ [21.01135, 69.21086],
+ [21.2824, 69.30076],
+ [21.62645, 69.26589],
+ [22.33512, 68.81965],
+ [22.37485, 68.70596],
+ [22.5377, 68.73329],
+ [22.80161, 68.67674],
+ [23.04635, 68.67833],
+ [23.16467, 68.61903],
+ [23.68789, 68.70049],
+ [23.79776, 68.81592],
+ [23.96804, 68.82287],
+ [24.17541, 68.7314],
+ [24.76043, 68.63655],
+ [24.8544, 68.55285],
+ [24.90827, 68.54387],
+ [24.93347, 68.6025],
+ [25.12435, 68.62003],
+ [25.1667, 68.79008],
+ [25.43334, 68.87886],
+ [25.62945, 68.88103],
+ [25.79589, 69.01157],
+ [25.73272, 69.19428],
+ [26.02249, 69.66758],
+ [26.56631, 69.94207],
+ [27.10601, 69.89539],
+ [27.63679, 70.05317],
+ [27.93548, 70.07401],
+ [27.96569, 70.00415],
+ [28.40312, 69.80824],
+ [29.1014, 69.69095],
+ [29.328, 69.47585],
+ [28.82859, 69.2316],
+ [28.7931, 69.0943],
+ [29.04485, 68.99986],
+ [29.25292, 69.10601],
+ [29.32641, 69.22982],
+ [29.29229, 69.27632],
+ [29.39117, 69.31298],
+ [29.57038, 69.31201],
+ [29.85191, 69.41631],
+ [29.96795, 69.39916],
+ [30.13069, 69.4667],
+ [30.2008, 69.5658],
+ [30.13137, 69.6609],
+ [30.15678, 69.66496],
+ [30.51589, 69.53787],
+ [30.82077, 69.52371],
+ [30.95329, 69.55563],
+ [30.96221, 69.67832],
+ [30.83578, 69.79192],
+ [31.65161, 70.17579],
+ [31.78344, 70.4662],
+ [30.49255, 70.86989],
+ [28.43261, 71.30079],
+ [25.66406, 71.40266],
+ [23.81835, 71.29374],
+ [18.30322, 70.40734],
+ [14.24926, 69.07641],
+ [11.18408, 67.47913],
+ [11.74438, 66.90852],
+ [9.95361, 64.88393],
+ [4.72961, 62.3649],
+ [4.12948, 61.69247],
+ [4.08142, 61.02637],
+ [4.4577, 59.19421],
+ [5.31188, 58.4276],
+ [6.47094, 57.84475],
+ [7.56408, 57.72468],
+ [8.4375, 57.91776],
+ [10.59792, 58.75006],
+ [10.64905, 58.88203],
+ [11.09035, 58.97673],
+ [11.16173, 59.06743],
+ [11.34175, 59.10293],
+ [11.44922, 58.99078],
+ [11.45194, 58.88136],
+ [11.53568, 58.86659]
+ ]
+ ],
+ "terms_url": "https://www.norgeibilder.no",
+ "terms_text": "© Geovekst",
+ "best": true,
+ "description": "Most recent Norwegian orthophotos, courtesy of Geovekst and Norkart.",
+ "icon": "https://register.geonorge.no/data/organizations/_L_norgeibilder96x96.png"
+ },
+ {
+ "id": "npd-offshore",
+ "name": "NPD Offshore Installations overlay",
+ "type": "wms",
+ "template": "http://npdwms.npd.no/NPD_FactMap.asp?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Surface_labels,Surface,Pipelines,Pipelines_labels,Fields_labels,Fields&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "scaleExtent": [6, 20],
+ "polygon": [
+ [
+ [8.51989, 57.6454],
+ [3.25195, 56.08737],
+ [2.61185, 56.59434],
+ [1.96321, 57.90482],
+ [1.48178, 58.42936],
+ [1.98303, 60.31063],
+ [1.78802, 61.35659],
+ [-0.49061, 63.88725],
+ [1.36226, 67.01603],
+ [14.99771, 74.50082],
+ [36.99371, 74.50155],
+ [36.99989, 73.68633],
+ [32.06909, 70.27429],
+ [23.97215, 70.47356],
+ [16.25974, 68.58447],
+ [12.12888, 64.81157],
+ [5.38328, 61.92862],
+ [5.7678, 58.85355],
+ [8.51989, 57.6454]
+ ]
+ ],
+ "terms_url": "http://www.npd.no/no/Kart/Faktakart/",
+ "terms_text": "© Oljedirektoratet",
+ "description": "Production platforms and oil/natural gas fields on the Norwegian continental shelf",
+ "icon": "https://register.geonorge.no/data/organizations/870917732_od_liten.png",
+ "overlay": true
+ },
+ {
+ "id": "orthos.dhses.ny.gov_latest",
+ "name": "NYS Orthos Online",
+ "type": "wms",
+ "template": "http://www.orthos.dhses.ny.gov/arcgis/services/Latest/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0,1,2,3,4&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2018-01-01T00:00:00.000Z",
+ "startDate": "2013-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 19],
+ "polygon": [
+ [
+ [-74.91231, 45.03606],
+ [-73.47788, 45.02996],
+ [-73.33846, 45.03098],
+ [-73.31978, 45.00558],
+ [-73.32265, 44.98525],
+ [-73.34852, 44.9283],
+ [-73.36721, 44.8397],
+ [-73.34277, 44.81727],
+ [-73.34565, 44.77647],
+ [-73.37296, 44.73463],
+ [-73.37008, 44.67946],
+ [-73.39739, 44.64471],
+ [-73.39308, 44.60276],
+ [-73.39739, 44.54543],
+ [-73.34996, 44.51264],
+ [-73.34565, 44.49521],
+ [-73.37871, 44.4706],
+ [-73.30828, 44.43572],
+ [-73.30397, 44.41827],
+ [-73.33271, 44.33917],
+ [-73.30828, 44.27128],
+ [-73.30828, 44.25172],
+ [-73.38014, 44.14868],
+ [-73.40458, 44.04133],
+ [-73.3399, 43.79596],
+ [-73.28097, 43.64222],
+ [-73.2091, 43.54957],
+ [-73.21342, 43.51206],
+ [-73.24647, 42.67557],
+ [-73.45919, 42.14284],
+ [-73.47069, 42.03938],
+ [-73.48794, 41.73764],
+ [-73.49944, 41.64319],
+ [-73.47788, 41.62708],
+ [-73.43189, 41.57979],
+ [-73.42614, 41.56366],
+ [-73.42685, 41.45926],
+ [-73.43979, 41.40322],
+ [-73.44985, 41.38328],
+ [-73.43835, 41.37033],
+ [-73.42757, 41.35901],
+ [-73.41751, 41.3439],
+ [-73.41895, 41.27642],
+ [-73.43045, 41.24455],
+ [-73.46566, 41.19752],
+ [-73.52962, 41.14505],
+ [-73.55477, 41.13368],
+ [-73.61586, 41.13531],
+ [-73.62664, 41.10878],
+ [-73.62736, 41.05407],
+ [-73.63958, 40.99118],
+ [-73.61873, 40.98195],
+ [-73.59933, 40.96568],
+ [-73.59933, 40.93474],
+ [-73.63455, 40.91682],
+ [-73.68054, 40.89183],
+ [-73.69851, 40.87988],
+ [-73.68629, 40.87064],
+ [-73.66257, 40.87934],
+ [-73.63814, 40.90541],
+ [-73.59789, 40.91193],
+ [-73.57562, 40.9179],
+ [-73.52675, 40.92388],
+ [-73.50159, 40.94288],
+ [-73.4901, 40.95374],
+ [-73.41751, 40.96079],
+ [-73.38374, 40.96133],
+ [-73.33702, 40.95591],
+ [-73.30828, 40.93637],
+ [-73.27091, 40.92659],
+ [-73.2091, 40.91953],
+ [-73.18682, 40.92714],
+ [-73.16814, 40.93148],
+ [-73.16598, 40.95971],
+ [-73.16886, 40.97002],
+ [-73.12933, 40.98195],
+ [-73.10777, 40.98195],
+ [-73.06681, 40.9749],
+ [-72.8584, 40.97436],
+ [-72.71826, 40.98195],
+ [-72.65574, 41.00528],
+ [-72.64424, 41.00473],
+ [-72.62628, 40.99226],
+ [-72.54148, 41.03889],
+ [-72.4768, 41.06328],
+ [-72.45811, 41.08928],
+ [-72.41859, 41.09308],
+ [-72.36612, 41.13856],
+ [-72.36037, 41.1418],
+ [-72.32229, 41.15479],
+ [-72.29067, 41.16399],
+ [-72.21449, 41.18238],
+ [-72.20083, 41.19157],
+ [-72.04848, 41.25914],
+ [-72.02548, 41.2937],
+ [-71.93924, 41.30774],
+ [-71.92343, 41.30666],
+ [-71.90259, 41.2991],
+ [-71.90187, 41.28939],
+ [-71.99458, 41.24509],
+ [-72.10453, 41.19806],
+ [-72.18287, 41.16723],
+ [-72.18934, 41.16237],
+ [-72.25186, 41.12232],
+ [-72.30432, 41.10445],
+ [-72.31582, 41.09524],
+ [-72.27917, 41.08441],
+ [-72.2727, 41.08062],
+ [-72.26839, 41.04973],
+ [-72.21736, 41.04811],
+ [-72.19652, 41.04215],
+ [-72.18646, 41.05298],
+ [-72.17137, 41.0584],
+ [-72.14981, 41.05895],
+ [-72.15628, 41.09633],
+ [-72.15268, 41.1077],
+ [-72.14909, 41.14667],
+ [-72.134, 41.14505],
+ [-72.07076, 41.10553],
+ [-72.07435, 41.05678],
+ [-72.08657, 41.03185],
+ [-72.10957, 41.0069],
+ [-72.08729, 41.01287],
+ [-72.06213, 41.02534],
+ [-72.04561, 41.03239],
+ [-72.01902, 41.03293],
+ [-72.00895, 41.04215],
+ [-72.00177, 41.05136],
+ [-71.96368, 41.07737],
+ [-71.922, 41.08874],
+ [-71.88966, 41.08766],
+ [-71.85588, 41.08062],
+ [-71.84582, 41.07466],
+ [-71.85588, 41.05298],
+ [-71.89038, 41.03727],
+ [-71.91625, 41.03022],
+ [-71.99099, 41.00365],
+ [-72.07938, 40.97273],
+ [-72.31941, 40.88205],
+ [-72.4423, 40.8402],
+ [-72.62771, 40.7869],
+ [-72.76569, 40.75043],
+ [-72.88499, 40.71286],
+ [-72.95973, 40.68671],
+ [-73.03735, 40.66],
+ [-73.08118, 40.64855],
+ [-73.22994, 40.61637],
+ [-73.32193, 40.6131],
+ [-73.35211, 40.61855],
+ [-73.55477, 40.56944],
+ [-73.75959, 40.57708],
+ [-73.88248, 40.54815],
+ [-73.9335, 40.53449],
+ [-73.945, 40.53395],
+ [-73.94572, 40.56289],
+ [-74.08227, 40.56234],
+ [-74.08011, 40.54924],
+ [-74.12251, 40.52084],
+ [-74.15772, 40.51373],
+ [-74.18719, 40.50117],
+ [-74.22887, 40.48696],
+ [-74.26121, 40.48532],
+ [-74.2763, 40.4957],
+ [-74.27918, 40.54378],
+ [-74.26983, 40.56671],
+ [-74.25834, 40.57217],
+ [-74.22528, 40.57217],
+ [-74.226, 40.58309],
+ [-74.25115, 40.59564],
+ [-74.25259, 40.62237],
+ [-74.24324, 40.64091],
+ [-74.2339, 40.64909],
+ [-74.20228, 40.654],
+ [-74.12538, 40.65673],
+ [-74.11532, 40.69107],
+ [-74.09951, 40.68998],
+ [-74.07795, 40.71068],
+ [-74.06286, 40.7183],
+ [-74.05208, 40.7439],
+ [-74.02549, 40.79288],
+ [-73.98094, 40.86901],
+ [-73.96225, 40.92551],
+ [-73.94931, 40.96459],
+ [-73.94644, 40.99877],
+ [-73.98165, 41.01612],
+ [-74.04561, 41.04323],
+ [-74.18072, 41.09524],
+ [-74.30792, 41.14938],
+ [-74.44087, 41.21537],
+ [-74.52783, 41.25914],
+ [-74.61335, 41.30234],
+ [-74.65791, 41.31098],
+ [-74.70246, 41.33581],
+ [-74.76714, 41.38975],
+ [-74.79661, 41.41023],
+ [-74.85338, 41.42263],
+ [-74.90728, 41.43179],
+ [-74.99783, 41.47111],
+ [-75.04167, 41.52708],
+ [-75.08479, 41.59323],
+ [-75.08407, 41.61848],
+ [-75.07329, 41.66467],
+ [-75.08766, 41.70278],
+ [-75.08766, 41.71351],
+ [-75.12144, 41.76177],
+ [-75.11928, 41.79232],
+ [-75.13078, 41.81696],
+ [-75.18755, 41.83838],
+ [-75.25295, 41.84962],
+ [-75.28745, 41.85497],
+ [-75.29823, 41.88227],
+ [-75.30613, 41.9304],
+ [-75.34063, 41.94003],
+ [-75.3665, 41.9566],
+ [-75.37225, 41.97744],
+ [-75.58066, 41.97957],
+ [-75.58137, 41.92399],
+ [-75.78906, 41.92666],
+ [-75.78691, 41.98278],
+ [-79.77687, 41.98118],
+ [-79.7819, 42.20994],
+ [-79.77184, 42.28017],
+ [-79.72153, 42.29824],
+ [-79.57349, 42.36731],
+ [-79.42976, 42.46599],
+ [-79.3737, 42.49991],
+ [-79.25728, 42.54546],
+ [-79.18973, 42.5624],
+ [-79.16529, 42.56981],
+ [-79.12074, 42.62483],
+ [-79.0963, 42.64598],
+ [-79.06899, 42.6967],
+ [-79.03162, 42.71043],
+ [-78.98851, 42.72311],
+ [-78.88358, 42.77693],
+ [-78.88646, 42.8149],
+ [-78.93964, 42.88655],
+ [-78.93964, 42.93603],
+ [-79.04887, 42.96969],
+ [-79.04743, 43.05167],
+ [-79.09343, 43.05272],
+ [-79.09199, 43.09262],
+ [-79.08624, 43.26556],
+ [-79.06468, 43.27602],
+ [-78.84909, 43.33041],
+ [-78.72979, 43.35237],
+ [-78.63924, 43.37013],
+ [-78.54869, 43.37953],
+ [-78.47826, 43.38789],
+ [-77.95508, 43.38476],
+ [-77.73158, 43.34714],
+ [-77.71146, 43.34034],
+ [-77.66259, 43.31159],
+ [-77.61516, 43.28387],
+ [-77.55336, 43.253],
+ [-77.5282, 43.25509],
+ [-77.45634, 43.27864],
+ [-77.42256, 43.28492],
+ [-77.16385, 43.29433],
+ [-77.0503, 43.29381],
+ [-76.94178, 43.29329],
+ [-76.91447, 43.30793],
+ [-76.85051, 43.3163],
+ [-76.80236, 43.32832],
+ [-76.75996, 43.35184],
+ [-76.64785, 43.42809],
+ [-76.54509, 43.48026],
+ [-76.51993, 43.49486],
+ [-76.44304, 43.52717],
+ [-76.4222, 43.53811],
+ [-76.28206, 43.53863],
+ [-76.23822, 43.55686],
+ [-76.24038, 43.74147],
+ [-76.30649, 43.82915],
+ [-76.31152, 43.8675],
+ [-76.34602, 43.8618],
+ [-76.40064, 43.86128],
+ [-76.47178, 43.88408],
+ [-76.46675, 43.90893],
+ [-76.4186, 43.93119],
+ [-76.37189, 43.93223],
+ [-76.36974, 43.90272],
+ [-76.33308, 43.92964],
+ [-76.27847, 43.92964],
+ [-76.27847, 43.90427],
+ [-76.26697, 43.89599],
+ [-76.23607, 43.91204],
+ [-76.19295, 43.93326],
+ [-76.19007, 43.95086],
+ [-76.21523, 43.96017],
+ [-76.25044, 43.94982],
+ [-76.31224, 43.94775],
+ [-76.30578, 43.9762],
+ [-76.33093, 44.00464],
+ [-76.39561, 44.0248],
+ [-76.39848, 44.06251],
+ [-76.37548, 44.06457],
+ [-76.3762, 44.0909],
+ [-76.47107, 44.09297],
+ [-76.46604, 44.10948],
+ [-76.44232, 44.1296],
+ [-76.39848, 44.13218],
+ [-76.39776, 44.20435],
+ [-76.3762, 44.21671],
+ [-76.23966, 44.21929],
+ [-76.23966, 44.22804],
+ [-76.21738, 44.22856],
+ [-76.21523, 44.3479],
+ [-76.11893, 44.37103],
+ [-76.04634, 44.39157],
+ [-75.93423, 44.43418],
+ [-75.83721, 44.50341],
+ [-75.76822, 44.55823],
+ [-75.69923, 44.60379],
+ [-75.63168, 44.64829],
+ [-75.56772, 44.70501],
+ [-75.50448, 44.74586],
+ [-75.45274, 44.78157],
+ [-75.31763, 44.8723],
+ [-75.15378, 44.93745],
+ [-75.09054, 44.97305],
+ [-74.97411, 45.02793],
+ [-74.91985, 45.03682],
+ [-74.91231, 45.03606]
+ ]
+ ],
+ "terms_url": "https://gis.ny.gov/gateway/orthoprogram/index.cfm",
+ "terms_text": "New York State Statewide Digital Orthoimagery Program",
+ "description": "New York State High Resolution Digital Orthoimagery, 1 foot resolution",
+ "icon": "data:image/png:base64,iVBORw0KGgoAAAANSUhEUgAAAG0AAABCCAYAAABdAli1AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QTA1Nzc1NjVGNjM2MTFFMzk5NkFGRERGMEYyODU3RTciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QTA1Nzc1NjZGNjM2MTFFMzk5NkFGRERGMEYyODU3RTciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBMDU3NzU2M0Y2MzYxMUUzOTk2QUZEREYwRjI4NTdFNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBMDU3NzU2NEY2MzYxMUUzOTk2QUZEREYwRjI4NTdFNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PhMlZyIAAA02SURBVHja7F1djNxW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"
+ },
+ {
+ "id": "olho_dagua_do_casado",
+ "name": "Olho d'Agua do Casado AL",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Olho%20Dagua%20do%20Casado&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-37.7822, -9.54444],
+ [-37.7826, -9.45388],
+ [-37.81147, -9.45412],
+ [-37.81735, -9.45451],
+ [-37.82057, -9.45416],
+ [-37.87394, -9.45428],
+ [-37.87358, -9.54475],
+ [-37.7822, -9.54444]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "osmbe",
+ "name": "OpenStreetMap (Belgian Style)",
+ "type": "tms",
+ "template": "https://tile.openstreetmap.be/osmbe/{zoom}/{x}/{y}.png",
+ "polygon": [
+ [
+ [5.47007, 49.49196],
+ [5.44409, 49.51409],
+ [5.46213, 49.53677],
+ [5.43766, 49.54766],
+ [5.42566, 49.59145],
+ [5.40775, 49.60448],
+ [5.35207, 49.62396],
+ [5.34232, 49.61192],
+ [5.30544, 49.60645],
+ [5.3026, 49.63608],
+ [5.32535, 49.6575],
+ [5.27025, 49.68827],
+ [5.24458, 49.67985],
+ [5.16215, 49.6918],
+ [5.16164, 49.71172],
+ [5.12622, 49.70442],
+ [5.09058, 49.75946],
+ [5.06262, 49.75724],
+ [5.01261, 49.77534],
+ [4.9921, 49.79533],
+ [4.95485, 49.79586],
+ [4.94404, 49.78583],
+ [4.90589, 49.78055],
+ [4.84827, 49.78972],
+ [4.86599, 49.81918],
+ [4.84266, 49.86913],
+ [4.85659, 49.86973],
+ [4.87961, 49.91078],
+ [4.84433, 49.94482],
+ [4.78844, 49.95381],
+ [4.78535, 49.97018],
+ [4.79004, 49.98569],
+ [4.81194, 49.99563],
+ [4.81579, 50.02853],
+ [4.83599, 50.04069],
+ [4.82339, 50.04664],
+ [4.81641, 50.06702],
+ [4.83456, 50.06856],
+ [4.83709, 50.09442],
+ [4.84472, 50.10023],
+ [4.85447, 50.1029],
+ [4.866, 50.09623],
+ [4.86587, 50.12038],
+ [4.8776, 50.13223],
+ [4.89443, 50.13779],
+ [4.88043, 50.1403],
+ [4.87725, 50.15205],
+ [4.8529, 50.15168],
+ [4.83169, 50.1526],
+ [4.82334, 50.15923],
+ [4.78067, 50.14092],
+ [4.76486, 50.13634],
+ [4.75217, 50.11158],
+ [4.71293, 50.09598],
+ [4.70278, 50.09336],
+ [4.68851, 50.06595],
+ [4.70309, 50.05587],
+ [4.68731, 50.01802],
+ [4.69495, 49.99662],
+ [4.69461, 49.99504],
+ [4.63074, 49.98584],
+ [4.58965, 49.98336],
+ [4.55981, 49.96757],
+ [4.54315, 49.9679],
+ [4.52365, 49.94973],
+ [4.51156, 49.94579],
+ [4.47953, 49.94584],
+ [4.44588, 49.93656],
+ [4.40593, 49.94785],
+ [4.39149, 49.94697],
+ [4.38072, 49.95088],
+ [4.34921, 49.95202],
+ [4.3137, 49.96541],
+ [4.19616, 49.9536],
+ [4.19304, 49.95746],
+ [4.19582, 49.96629],
+ [4.13704, 49.97691],
+ [4.15996, 49.99544],
+ [4.13683, 50.00786],
+ [4.13272, 50.01973],
+ [4.16174, 50.05032],
+ [4.17458, 50.04772],
+ [4.22857, 50.06873],
+ [4.19529, 50.10571],
+ [4.19766, 50.12037],
+ [4.19566, 50.13394],
+ [4.15448, 50.12716],
+ [4.13656, 50.12909],
+ [4.12568, 50.13511],
+ [4.13677, 50.15213],
+ [4.14989, 50.1647],
+ [4.14686, 50.17314],
+ [4.15567, 50.19785],
+ [4.14799, 50.21344],
+ [4.15979, 50.21579],
+ [4.19179, 50.24106],
+ [4.21836, 50.25492],
+ [4.20676, 50.27068],
+ [4.17487, 50.27492],
+ [4.16567, 50.28779],
+ [4.155, 50.27742],
+ [4.16937, 50.26848],
+ [4.16851, 50.25626],
+ [4.13426, 50.25572],
+ [4.13228, 50.26754],
+ [4.12086, 50.27276],
+ [4.12139, 50.29732],
+ [4.10928, 50.30112],
+ [4.0977, 50.31201],
+ [4.08017, 50.30809],
+ [4.07339, 50.31754],
+ [4.03817, 50.33987],
+ [4.02738, 50.35491],
+ [3.98611, 50.34137],
+ [3.96482, 50.34012],
+ [3.96355, 50.34742],
+ [3.90223, 50.3257],
+ [3.88419, 50.32554],
+ [3.88429, 50.33511],
+ [3.85645, 50.34099],
+ [3.84244, 50.35243],
+ [3.81321, 50.34251],
+ [3.80551, 50.35098],
+ [3.74124, 50.34624],
+ [3.73556, 50.32532],
+ [3.73175, 50.30705],
+ [3.70911, 50.3021],
+ [3.68231, 50.31988],
+ [3.66397, 50.34724],
+ [3.65542, 50.37075],
+ [3.66788, 50.38597],
+ [3.67276, 50.40227],
+ [3.66777, 50.42262],
+ [3.66743, 50.43635],
+ [3.65685, 50.4464],
+ [3.66129, 50.45399],
+ [3.64419, 50.4618],
+ [3.6099, 50.4935],
+ [3.58162, 50.48917],
+ [3.56897, 50.4982],
+ [3.49868, 50.48577],
+ [3.49448, 50.49918],
+ [3.51582, 50.52075],
+ [3.4742, 50.53204],
+ [3.44739, 50.50415],
+ [3.43663, 50.5083],
+ [3.42736, 50.50327],
+ [3.37405, 50.48993],
+ [3.35949, 50.50325],
+ [3.32767, 50.50732],
+ [3.31872, 50.51788],
+ [3.30319, 50.51966],
+ [3.28718, 50.52552],
+ [3.27549, 50.53872],
+ [3.27524, 50.59381],
+ [3.25497, 50.62115],
+ [3.24349, 50.64031],
+ [3.23893, 50.65864],
+ [3.24019, 50.67023],
+ [3.26029, 50.67692],
+ [3.25131, 50.69091],
+ [3.25881, 50.69312],
+ [3.24518, 50.71225],
+ [3.23779, 50.71086],
+ [3.22148, 50.70958],
+ [3.20498, 50.71072],
+ [3.18953, 50.72603],
+ [3.19445, 50.7316],
+ [3.14457, 50.78871],
+ [3.12547, 50.78553],
+ [3.11348, 50.79278],
+ [3.10455, 50.78042],
+ [3.08585, 50.77064],
+ [3.05758, 50.77987],
+ [3.04064, 50.77484],
+ [3.03691, 50.77003],
+ [3.02927, 50.76813],
+ [3.01945, 50.77263],
+ [2.99536, 50.76043],
+ [2.96822, 50.74763],
+ [2.9557, 50.75181],
+ [2.93962, 50.74441],
+ [2.94602, 50.73167],
+ [2.9349, 50.72822],
+ [2.92939, 50.70786],
+ [2.92206, 50.70224],
+ [2.91184, 50.70267],
+ [2.91281, 50.69463],
+ [2.90742, 50.69209],
+ [2.90017, 50.69202],
+ [2.88533, 50.70547],
+ [2.87992, 50.70199],
+ [2.86855, 50.70242],
+ [2.84646, 50.72043],
+ [2.81843, 50.71386],
+ [2.78869, 50.72508],
+ [2.77811, 50.74686],
+ [2.76469, 50.75397],
+ [2.75409, 50.76251],
+ [2.75922, 50.77052],
+ [2.73745, 50.77967],
+ [2.7236, 50.79079],
+ [2.71636, 50.8123],
+ [2.6788, 50.81207],
+ [2.67057, 50.81562],
+ [2.63543, 50.80987],
+ [2.61055, 50.84419],
+ [2.59427, 50.84743],
+ [2.60628, 50.86565],
+ [2.60151, 50.90993],
+ [2.58525, 50.91825],
+ [2.62479, 50.94743],
+ [2.62148, 50.95406],
+ [2.60263, 50.98638],
+ [2.56946, 51.00113],
+ [2.55892, 51.06596],
+ [2.34072, 51.31453],
+ [3.01078, 51.59839],
+ [3.32658, 51.43728],
+ [3.37581, 51.3584],
+ [3.38739, 51.33392],
+ [3.36094, 51.31523],
+ [3.3789, 51.30251],
+ [3.36832, 51.29778],
+ [3.38177, 51.28732],
+ [3.38342, 51.27485],
+ [3.38922, 51.27329],
+ [3.41852, 51.25984],
+ [3.43471, 51.24621],
+ [3.45031, 51.24219],
+ [3.527, 51.24651],
+ [3.51433, 51.28799],
+ [3.54179, 51.29123],
+ [3.56145, 51.29637],
+ [3.57559, 51.29428],
+ [3.58905, 51.30652],
+ [3.63839, 51.29078],
+ [3.6582, 51.29056],
+ [3.69139, 51.28043],
+ [3.71763, 51.27428],
+ [3.77605, 51.26777],
+ [3.79652, 51.25635],
+ [3.79031, 51.24163],
+ [3.78934, 51.22711],
+ [3.79294, 51.21546],
+ [3.85827, 51.21334],
+ [3.88901, 51.22423],
+ [3.89467, 51.21743],
+ [3.88782, 51.20283],
+ [3.91256, 51.20837],
+ [3.91482, 51.21509],
+ [3.9281, 51.22508],
+ [3.93751, 51.2174],
+ [3.95603, 51.22117],
+ [4.01551, 51.24825],
+ [4.0551, 51.24402],
+ [4.1651, 51.2938],
+ [4.23804, 51.35274],
+ [4.21772, 51.36206],
+ [4.21546, 51.37487],
+ [4.33535, 51.37775],
+ [4.34197, 51.36012],
+ [4.38556, 51.35574],
+ [4.39906, 51.35785],
+ [4.42462, 51.3668],
+ [4.42309, 51.37577],
+ [4.38147, 51.41805],
+ [4.39426, 51.44251],
+ [4.37771, 51.44595],
+ [4.38055, 51.45075],
+ [4.4768, 51.47912],
+ [4.53739, 51.48358],
+ [4.54967, 51.47364],
+ [4.53097, 51.44965],
+ [4.53758, 51.42456],
+ [4.57427, 51.43404],
+ [4.6431, 51.42478],
+ [4.64951, 51.42741],
+ [4.66744, 51.42777],
+ [4.66465, 51.44625],
+ [4.69115, 51.45283],
+ [4.70175, 51.46691],
+ [4.72792, 51.48435],
+ [4.74476, 51.48977],
+ [4.74945, 51.49905],
+ [4.75827, 51.50302],
+ [4.7766, 51.50625],
+ [4.81666, 51.49552],
+ [4.82318, 51.48441],
+ [4.84355, 51.48177],
+ [4.83884, 51.46588],
+ [4.84529, 51.45817],
+ [4.82521, 51.44674],
+ [4.83103, 51.42488],
+ [4.88072, 51.4166],
+ [4.91431, 51.45952],
+ [4.95767, 51.4548],
+ [4.94134, 51.42928],
+ [4.93775, 51.40655],
+ [4.96007, 51.42194],
+ [4.99955, 51.44324],
+ [5.00816, 51.47134],
+ [5.01937, 51.48074],
+ [5.03235, 51.48827],
+ [5.04093, 51.4876],
+ [5.04722, 51.47217],
+ [5.08032, 51.47226],
+ [5.10643, 51.43135],
+ [5.0727, 51.39365],
+ [5.11662, 51.36118],
+ [5.13225, 51.3472],
+ [5.13581, 51.31594],
+ [5.15592, 51.31278],
+ [5.20039, 51.32325],
+ [5.24326, 51.3057],
+ [5.22742, 51.26844],
+ [5.238, 51.26255],
+ [5.26216, 51.26778],
+ [5.335, 51.26474],
+ [5.34493, 51.27681],
+ [5.41551, 51.2639],
+ [5.44065, 51.28246],
+ [5.48215, 51.30064],
+ [5.51628, 51.29599],
+ [5.55816, 51.26613],
+ [5.56283, 51.22287],
+ [5.65253, 51.19899],
+ [5.65947, 51.19052],
+ [5.71011, 51.18671],
+ [5.74598, 51.19455],
+ [5.76873, 51.18843],
+ [5.78118, 51.18082],
+ [5.78447, 51.15925],
+ [5.82594, 51.16827],
+ [5.85709, 51.14477],
+ [5.83976, 51.12993],
+ [5.81435, 51.11524],
+ [5.83555, 51.10842],
+ [5.8338, 51.09577],
+ [5.82291, 51.09124],
+ [5.8119, 51.0943],
+ [5.79816, 51.09023],
+ [5.80612, 51.07955],
+ [5.80458, 51.05888],
+ [5.77731, 51.05804],
+ [5.76027, 51.03223],
+ [5.77383, 51.02859],
+ [5.77829, 51.02399],
+ [5.76759, 51.00526],
+ [5.76846, 50.9985],
+ [5.76419, 50.99502],
+ [5.74816, 50.98087],
+ [5.72174, 50.96128],
+ [5.73469, 50.95683],
+ [5.7426, 50.96113],
+ [5.74604, 50.96209],
+ [5.75617, 50.95898],
+ [5.76011, 50.95227],
+ [5.73223, 50.9221],
+ [5.72625, 50.9059],
+ [5.70051, 50.90955],
+ [5.69711, 50.8958],
+ [5.68051, 50.88068],
+ [5.64516, 50.86533],
+ [5.64337, 50.84974],
+ [5.64049, 50.84701],
+ [5.64576, 50.83961],
+ [5.64567, 50.83789],
+ [5.65094, 50.83431],
+ [5.65568, 50.82591],
+ [5.70296, 50.80821],
+ [5.69338, 50.79687],
+ [5.70259, 50.78396],
+ [5.69204, 50.75629],
+ [5.7218, 50.76538],
+ [5.73762, 50.75842],
+ [5.73912, 50.76522],
+ [5.76476, 50.7837],
+ [5.77748, 50.78344],
+ [5.78519, 50.7684],
+ [5.7927, 50.77138],
+ [5.80759, 50.75681],
+ [5.84525, 50.76609],
+ [5.84901, 50.75975],
+ [5.88667, 50.77108],
+ [5.89689, 50.75501],
+ [5.95896, 50.76308],
+ [6.02001, 50.75521],
+ [6.04208, 50.74557],
+ [6.03953, 50.7295],
+ [6.11623, 50.72364],
+ [6.1491, 50.68465],
+ [6.16312, 50.67169],
+ [6.17755, 50.65576],
+ [6.18715, 50.6505],
+ [6.18348, 50.6457],
+ [6.18205, 50.63583],
+ [6.26822, 50.62829],
+ [6.27251, 50.62033],
+ [6.24102, 50.58657],
+ [6.22795, 50.58535],
+ [6.18304, 50.55597],
+ [6.1833, 50.54646],
+ [6.19789, 50.53715],
+ [6.22586, 50.49832],
+ [6.26954, 50.50961],
+ [6.35349, 50.49244],
+ [6.34706, 50.46422],
+ [6.37423, 50.45989],
+ [6.3825, 50.43975],
+ [6.37408, 50.40637],
+ [6.35129, 50.38206],
+ [6.40305, 50.34866],
+ [6.41162, 50.32769],
+ [6.40783, 50.31893],
+ [6.38558, 50.31658],
+ [6.36388, 50.30021],
+ [6.32792, 50.3186],
+ [6.31289, 50.31636],
+ [6.29335, 50.2909],
+ [6.29547, 50.27422],
+ [6.28111, 50.26236],
+ [6.23624, 50.25692],
+ [6.21151, 50.24816],
+ [6.1981, 50.23275],
+ [6.18166, 50.23125],
+ [6.1789, 50.22147],
+ [6.19337, 50.20761],
+ [6.19683, 50.17988],
+ [6.15231, 50.16841],
+ [6.15923, 50.14002],
+ [6.13978, 50.12527],
+ [6.10856, 50.1326],
+ [6.11273, 50.16093],
+ [6.10156, 50.16551],
+ [6.08452, 50.16697],
+ [6.0821, 50.15275],
+ [6.06344, 50.14834],
+ [6.03055, 50.15829],
+ [6.02136, 50.17685],
+ [5.96932, 50.16795],
+ [5.96515, 50.12813],
+ [5.90347, 50.11172],
+ [5.89064, 50.07554],
+ [5.86237, 50.06368],
+ [5.8749, 50.04624],
+ [5.86392, 50.02594],
+ [5.82586, 50.00934],
+ [5.82665, 50.00135],
+ [5.8448, 49.99123],
+ [5.83952, 49.9756],
+ [5.80883, 49.95773],
+ [5.78215, 49.957],
+ [5.76822, 49.91307],
+ [5.74481, 49.89975],
+ [5.78087, 49.88794],
+ [5.78897, 49.87213],
+ [5.77636, 49.86265],
+ [5.75667, 49.8703],
+ [5.76191, 49.85693],
+ [5.75803, 49.84287],
+ [5.74291, 49.83555],
+ [5.75151, 49.81985],
+ [5.75473, 49.79514],
+ [5.7909, 49.79765],
+ [5.8179, 49.75977],
+ [5.83544, 49.74713],
+ [5.82702, 49.72616],
+ [5.86996, 49.72777],
+ [5.88817, 49.70952],
+ [5.86372, 49.68213],
+ [5.91262, 49.66488],
+ [5.90382, 49.65192],
+ [5.90876, 49.63876],
+ [5.89899, 49.63401],
+ [5.89117, 49.63469],
+ [5.87663, 49.60771],
+ [5.84953, 49.59399],
+ [5.87403, 49.58991],
+ [5.8736, 49.57435],
+ [5.84053, 49.55222],
+ [5.82582, 49.54931],
+ [5.81858, 49.5461],
+ [5.79504, 49.55029],
+ [5.77149, 49.55832],
+ [5.76226, 49.554],
+ [5.76126, 49.53952],
+ [5.74792, 49.53452],
+ [5.73009, 49.53954],
+ [5.6987, 49.53744],
+ [5.66008, 49.55039],
+ [5.64371, 49.54565],
+ [5.6228, 49.5283],
+ [5.62589, 49.51698],
+ [5.61175, 49.50102],
+ [5.59116, 49.51734],
+ [5.55638, 49.52373],
+ [5.54257, 49.5105],
+ [5.47007, 49.49196]
+ ]
+ ],
+ "terms_url": "https://openstreetmap.org/",
+ "terms_text": "© OpenStreetMap contributors, CC-BY-SA; Tiles courtesy of GEO-6",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAGb0lEQVR4Xq3MS2xcVx3H8e855z7m3vH1jMdjO43zshIrtpM0SZ3WFEcRVFFKoRWPBYtAHwgWCFUsQN100QeCsqAhCESrirRASdWWIkoUqgKFJm3UZ5o2oW2akrR5uXbi2ON4PPfOfZ17iERW2bCAz1/f3V8/cfDC02UEj4OxKHjdFMUfmUzOlAeXZFZuuVIKN8zi1dPh7Hcn5091G2EOB5b//NplA28/9tAT4bq111jD64ZKHR2VQWPEbULI0aHqZz7NZeLNmSeVMOJu4AfGgNEGLsR/95YuetcRzprcFJvaaVxrpm2mmqfp8FxKSYk8ck+0pt1nykFp0A/k9Tnt/lq3T2dHEOmi2DxSu+EdAAFwcPqp640xe42h26Qa2hqnXsFVHs04pNFuYgvbtOWCmD3aMj2VNaLi1+jwyxgpCKOQRCdMN6ZMd5Bmw1cPfG+5O/7LeX0ECyBppx9Zrn0c6BbNHJNr4qhFYWtsJCWpSFUm3ntxips2bxe+p1BKIJQECpRbkCQ2wu0XzbnIeemvhzYCVNR6JMDm5bdNF9qcwhiKbpvMg2KujZDmUgX1jgqT719gy+iX6QxsPM9F2YqclHbRRpUEXmCRZTGFlZGKxSMbR6+uA0gu863OzLc7cVUZN6jgKI8kicl0ykzjAiW5lGrVAWUwokApSa3UTY/XR2B3UlDgVy1sB8od7tgt2++4AcACOHL+uRW2bW8QQiCxcUoS6XssyBbnF6Y5+8kci8vjlJwqjnQwWpDlgtRYZDpHmxJzWUyk26gOYXxK0g+8G4bXX/snC0DZcmVh9EoQ5DpDSIVJYmIiGvkCurAQpkLU9kkTEEJeCjxbURSCZgTkfVjOApoM6Qtc3109Nj7uWO9M70EbPQT4YMhNjrWQEdHmTPs8SgfUisUgDLoAgcGyEjJtEaeaVlKQ5gVSGYwBhETaEmVJcemQaZ44aRpvyLIEnedGoNHNkNTTeI5DT2kRljeJziVhnKNlE1GaJFfnuRi3SXMDxmA7IUqCI20qdifkxfED+/dlanzb1cYL3BFhsTXPU4Ep0FGKUVALegCb1oLN7FlNpd5HIUNQLYxIsO0EKcByWljuAmXbp7fcIwgVb7xyaNeep3YfUnt272PLjaP1em/lZqmEk4cJQoMKfBxVIcwjlAp47okX6ap3XaoP221CIREyx7La2E6O7/h0eTXK+Bw+8uHrP7znvocXLe6flwCHXj06kab5hJAS6dhQFOgiJ2qXsKLVuHqAgdVD7HrwXibPTKJzFyMMAgECHGXTJTqxE4t3T5xMD7y29+mFRjgpLSUlYJ793T9ORWF0Lk1StCzQNqTTAle30flbzJ/bx6n3Xsa2Fb9/5Eccfu19wnlNFBniWJA3JecbDfa/8y5nJg7bW7ZeuyYKZwyF0QIAkC988Ogzfof6SppapHGZqgNTExPsfngfgaXpqyWk9QF6lwWk7YJlK1fQaTysqk8sE6LwIq4OEMql1DH3/O03PnBHUCk3JMCeA7/q6u1a0ltiNZ1eL719cPrcWR752d+Yn2lx/HSDY40qY2Pb2PapjYxv3YBX1syZ88weP3bp90Omw3PMOxNUe9FTn9gn5uemQqfk5BbAisHBlVo7g7PFx9TdgDMnZvjtzheI51qkWY5xYWxTLxXfJ5IVevIZ6gMDxCYnPjWDXZ0nSiOkEmYqO5l8cGT6FSD6+NhRJMCF1sWV88VkX6f3n/FHd+xl9uwsrTDEOIbPfWEj120eorw0JEzLhGWfop3ixxKrP0CTIQSAEVmhw5/f94uXAANg3b/r+1YrnV1T86ucPDzBrp3PcvHcHGmaUekL+OKtm9m0ailOUEe4FrXyWaKFblM4HmUvElNzF4jTxFiOhRRSJO34JHCOy6RU0i60uepfx07nO+593FycapAkCbX+Kl+/cxvXfXYIU3GjN/Yf2vPPg2/9JVxoNYNqQ+hcilznlKWDcpSwlCWiZrtx/O3Tf+AKClj88I9v/9aD99/aHBkaLlYNDTXuvPubH/3kN3e9vP3bn78HGAP6gSXA6K3fufnOXz+/888vHH3i9O4XH3j1roe+8dDo1pGvAeuAClfa/+aTQH35Yztuenz7l4aPLB9c81O/3H3L5VHFlUACZaAH6AQc/pv1o9cEiwbWbRlev+mrazeOblg3usnj/6nWV2fVyFp71fCa0sDgkOKyq5av4H/xb0Ky8po5hQEuAAAAAElFTkSuQmCC"
+ },
+ {
+ "id": "MAPNIK",
+ "name": "OpenStreetMap (Standard)",
+ "type": "tms",
+ "template": "https://{switch:a,b,c}.tile.openstreetmap.org/{zoom}/{x}/{y}.png",
+ "scaleExtent": [0, 19],
+ "terms_url": "https://www.openstreetmap.org",
+ "terms_text": "© OpenStreetMap contributors, CC-BY-SA",
+ "default": true,
+ "description": "The default OpenStreetMap layer.",
+ "icon": "data:image/png;base64,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"
+ },
+ {
+ "id": "OpenStreetMap-turistautak",
+ "name": "OpenStreetMap (turistautak)",
+ "type": "tms",
+ "template": "http://{switch:h,i,j}.tile.openstreetmap.hu/turistautak/{zoom}/{x}/{y}.png",
+ "scaleExtent": [0, 18],
+ "polygon": [
+ [
+ [16.11391, 46.8691],
+ [16.17897, 46.90662],
+ [16.20004, 46.94151],
+ [16.22175, 46.93554],
+ [16.24628, 46.94639],
+ [16.25532, 46.96421],
+ [16.27647, 46.96261],
+ [16.29058, 47.01398],
+ [16.30162, 46.99923],
+ [16.34146, 46.99652],
+ [16.35052, 47.01063],
+ [16.3734, 46.99859],
+ [16.41277, 47.00475],
+ [16.43327, 46.99274],
+ [16.44781, 47.00389],
+ [16.48, 46.99412],
+ [16.5122, 47.00117],
+ [16.46356, 47.03227],
+ [16.44786, 47.02275],
+ [16.43912, 47.02966],
+ [16.44567, 47.03887],
+ [16.52032, 47.0561],
+ [16.47321, 47.07362],
+ [16.46372, 47.09392],
+ [16.5008, 47.11006],
+ [16.50004, 47.12329],
+ [16.52953, 47.12874],
+ [16.51716, 47.14969],
+ [16.45495, 47.14259],
+ [16.46487, 47.16833],
+ [16.45556, 47.18756],
+ [16.43056, 47.1847],
+ [16.4195, 47.19491],
+ [16.41892, 47.21071],
+ [16.43713, 47.2097],
+ [16.44263, 47.23371],
+ [16.43131, 47.25276],
+ [16.46715, 47.25317],
+ [16.48923, 47.27989],
+ [16.46463, 47.33385],
+ [16.4337, 47.35281],
+ [16.45851, 47.36705],
+ [16.44546, 47.40702],
+ [16.48317, 47.40936],
+ [16.49638, 47.38927],
+ [16.51709, 47.41002],
+ [16.57491, 47.40542],
+ [16.58073, 47.41917],
+ [16.66185, 47.4556],
+ [16.67064, 47.47422],
+ [16.65234, 47.50034],
+ [16.68956, 47.51016],
+ [16.71478, 47.5402],
+ [16.66354, 47.56773],
+ [16.6732, 47.60495],
+ [16.65953, 47.6061],
+ [16.65276, 47.62285],
+ [16.63142, 47.62832],
+ [16.57391, 47.61967],
+ [16.51474, 47.6462],
+ [16.49675, 47.63931],
+ [16.42546, 47.66217],
+ [16.44374, 47.67421],
+ [16.44805, 47.69647],
+ [16.4747, 47.68116],
+ [16.48722, 47.69798],
+ [16.55217, 47.72255],
+ [16.53638, 47.73678],
+ [16.54798, 47.75154],
+ [16.60952, 47.76037],
+ [16.63441, 47.75908],
+ [16.65729, 47.74149],
+ [16.72094, 47.73536],
+ [16.75341, 47.68282],
+ [16.83016, 47.68106],
+ [16.83943, 47.70451],
+ [16.86689, 47.72115],
+ [16.87668, 47.68765],
+ [17.09374, 47.70777],
+ [17.07066, 47.72854],
+ [17.0516, 47.79385],
+ [17.07495, 47.8085],
+ [17.04714, 47.82856],
+ [17.05195, 47.83777],
+ [17.01055, 47.85818],
+ [17.01639, 47.86733],
+ [17.08575, 47.87462],
+ [17.11317, 47.92716],
+ [17.09171, 47.93429],
+ [17.11838, 47.96011],
+ [17.09466, 47.97088],
+ [17.20103, 48.01999],
+ [17.24177, 48.02247],
+ [17.25795, 47.99865],
+ [17.33465, 47.99312],
+ [17.40299, 47.94785],
+ [17.45392, 47.88526],
+ [17.52674, 47.86551],
+ [17.56758, 47.81513],
+ [17.6084, 47.82189],
+ [17.70858, 47.75668],
+ [17.77987, 47.73949],
+ [17.8661, 47.74575],
+ [17.90013, 47.73926],
+ [17.94687, 47.74467],
+ [17.97087, 47.75784],
+ [18.00441, 47.74634],
+ [18.03806, 47.75768],
+ [18.29588, 47.73146],
+ [18.45407, 47.76512],
+ [18.49316, 47.75276],
+ [18.55908, 47.766],
+ [18.64609, 47.75909],
+ [18.72607, 47.78904],
+ [18.74118, 47.81382],
+ [18.792, 47.82309],
+ [18.84854, 47.81672],
+ [18.85588, 47.82608],
+ [18.82801, 47.83429],
+ [18.81357, 47.85555],
+ [18.76353, 47.8716],
+ [18.75686, 47.89684],
+ [18.77675, 47.95509],
+ [18.75525, 47.97635],
+ [18.81574, 47.99344],
+ [18.82, 48.03968],
+ [18.83327, 48.04824],
+ [18.87494, 48.04707],
+ [18.88667, 48.05868],
+ [18.90898, 48.05114],
+ [18.9439, 48.05886],
+ [18.98161, 48.0536],
+ [19.01486, 48.07818],
+ [19.05852, 48.05735],
+ [19.08436, 48.07278],
+ [19.1074, 48.0656],
+ [19.13529, 48.07415],
+ [19.24137, 48.05365],
+ [19.25578, 48.07156],
+ [19.30311, 48.08871],
+ [19.3866, 48.09191],
+ [19.40002, 48.0823],
+ [19.45405, 48.10144],
+ [19.46735, 48.08393],
+ [19.49442, 48.10991],
+ [19.49238, 48.13966],
+ [19.51282, 48.15466],
+ [19.50452, 48.17344],
+ [19.52897, 48.19036],
+ [19.52604, 48.20313],
+ [19.5775, 48.21601],
+ [19.63083, 48.25007],
+ [19.64452, 48.23917],
+ [19.66986, 48.23921],
+ [19.69122, 48.20389],
+ [19.72113, 48.20147],
+ [19.74618, 48.21651],
+ [19.78716, 48.19253],
+ [19.79873, 48.19482],
+ [19.80528, 48.18373],
+ [19.78242, 48.16504],
+ [19.79481, 48.15353],
+ [19.82133, 48.16908],
+ [19.84528, 48.16274],
+ [19.85517, 48.17843],
+ [19.86013, 48.16941],
+ [19.89875, 48.16631],
+ [19.91454, 48.14686],
+ [19.8983, 48.1249],
+ [19.93738, 48.13112],
+ [19.97439, 48.166],
+ [19.98871, 48.16217],
+ [20.02904, 48.17768],
+ [20.04945, 48.1672],
+ [20.07299, 48.17961],
+ [20.07004, 48.1917],
+ [20.13409, 48.22518],
+ [20.13319, 48.25398],
+ [20.20616, 48.25098],
+ [20.20383, 48.26191],
+ [20.22847, 48.26278],
+ [20.23495, 48.27993],
+ [20.28686, 48.26164],
+ [20.32571, 48.27279],
+ [20.33746, 48.30167],
+ [20.36566, 48.31661],
+ [20.38408, 48.35118],
+ [20.40983, 48.36586],
+ [20.40253, 48.38256],
+ [20.42053, 48.40386],
+ [20.41623, 48.41854],
+ [20.50793, 48.48936],
+ [20.50651, 48.53442],
+ [20.53747, 48.52788],
+ [20.54649, 48.54429],
+ [20.58659, 48.53576],
+ [20.65387, 48.56141],
+ [20.83636, 48.58284],
+ [20.8378, 48.57421],
+ [20.85044, 48.58163],
+ [20.84533, 48.5665],
+ [20.86815, 48.55182],
+ [20.92232, 48.55945],
+ [20.93463, 48.53834],
+ [20.95588, 48.53396],
+ [20.9562, 48.52167],
+ [20.98158, 48.51777],
+ [21.01511, 48.53231],
+ [21.06632, 48.52589],
+ [21.11745, 48.49105],
+ [21.16087, 48.5215],
+ [21.17963, 48.51823],
+ [21.22106, 48.5375],
+ [21.30549, 48.52225],
+ [21.31338, 48.55084],
+ [21.32688, 48.55413],
+ [21.31938, 48.5612],
+ [21.41545, 48.55895],
+ [21.42266, 48.57882],
+ [21.44061, 48.5851],
+ [21.51409, 48.55107],
+ [21.54202, 48.5084],
+ [21.61393, 48.50942],
+ [21.62019, 48.46983],
+ [21.66355, 48.41796],
+ [21.66456, 48.39216],
+ [21.70174, 48.3807],
+ [21.71187, 48.35762],
+ [21.81741, 48.33279],
+ [21.8352, 48.33464],
+ [21.83721, 48.36325],
+ [21.8843, 48.35605],
+ [21.88484, 48.36754],
+ [21.89788, 48.36256],
+ [21.8998, 48.37022],
+ [21.92819, 48.3616],
+ [21.92681, 48.3709],
+ [21.9492, 48.37873],
+ [21.99446, 48.37732],
+ [22.02133, 48.39275],
+ [22.0546, 48.37753],
+ [22.07649, 48.38724],
+ [22.08674, 48.37156],
+ [22.13591, 48.38052],
+ [22.13106, 48.39123],
+ [22.15277, 48.39624],
+ [22.15619, 48.40931],
+ [22.21257, 48.42565],
+ [22.23714, 48.41004],
+ [22.26549, 48.40987],
+ [22.23988, 48.38701],
+ [22.26757, 48.36116],
+ [22.31781, 48.35454],
+ [22.31329, 48.32507],
+ [22.33729, 48.30791],
+ [22.33843, 48.27921],
+ [22.38475, 48.23396],
+ [22.40064, 48.2492],
+ [22.43284, 48.25252],
+ [22.45639, 48.24231],
+ [22.4899, 48.25342],
+ [22.49722, 48.23955],
+ [22.51615, 48.23797],
+ [22.53111, 48.20943],
+ [22.57114, 48.19614],
+ [22.56164, 48.18161],
+ [22.59824, 48.14476],
+ [22.59028, 48.10734],
+ [22.67545, 48.092],
+ [22.73472, 48.11985],
+ [22.75762, 48.12006],
+ [22.77039, 48.10902],
+ [22.77232, 48.12187],
+ [22.80277, 48.12211],
+ [22.80253, 48.10708],
+ [22.82543, 48.11751],
+ [22.83644, 48.08025],
+ [22.86113, 48.07503],
+ [22.8678, 48.05243],
+ [22.88204, 48.05481],
+ [22.86597, 48.01132],
+ [22.83556, 47.9906],
+ [22.84076, 47.98136],
+ [22.87257, 47.97527],
+ [22.86973, 47.96596],
+ [22.89157, 47.96724],
+ [22.89744, 47.95406],
+ [22.84733, 47.90776],
+ [22.79281, 47.89086],
+ [22.75869, 47.89414],
+ [22.77775, 47.84225],
+ [22.71363, 47.83609],
+ [22.68019, 47.78775],
+ [22.61112, 47.77175],
+ [22.549, 47.77222],
+ [22.48121, 47.81089],
+ [22.45131, 47.80339],
+ [22.43133, 47.73981],
+ [22.35662, 47.74862],
+ [22.31777, 47.76609],
+ [22.31762, 47.74337],
+ [22.28514, 47.72928],
+ [22.26432, 47.73107],
+ [22.259, 47.69791],
+ [22.23068, 47.6932],
+ [22.17965, 47.59161],
+ [22.12892, 47.5979],
+ [22.09428, 47.55836],
+ [22.07826, 47.56213],
+ [22.05345, 47.54748],
+ [22.07122, 47.53807],
+ [22.06179, 47.5288],
+ [22.04513, 47.53989],
+ [22.03672, 47.53267],
+ [22.00719, 47.48362],
+ [22.03279, 47.45084],
+ [22.02388, 47.39086],
+ [22.01198, 47.3758],
+ [21.96274, 47.38105],
+ [21.93825, 47.37253],
+ [21.87779, 47.28578],
+ [21.88728, 47.27305],
+ [21.85349, 47.23976],
+ [21.85807, 47.18736],
+ [21.81248, 47.16675],
+ [21.79241, 47.10598],
+ [21.72683, 47.09839],
+ [21.6976, 47.05792],
+ [21.65042, 47.04083],
+ [21.68887, 47.002],
+ [21.66787, 46.97123],
+ [21.68149, 46.96521],
+ [21.6382, 46.93305],
+ [21.59845, 46.92747],
+ [21.61429, 46.88673],
+ [21.60167, 46.86682],
+ [21.52033, 46.83737],
+ [21.51861, 46.80007],
+ [21.48318, 46.76502],
+ [21.52634, 46.73932],
+ [21.52937, 46.72097],
+ [21.49233, 46.68597],
+ [21.47284, 46.69591],
+ [21.4299, 46.69394],
+ [21.43096, 46.67814],
+ [21.45467, 46.66086],
+ [21.41624, 46.64262],
+ [21.4098, 46.62181],
+ [21.3657, 46.63795],
+ [21.33005, 46.63182],
+ [21.31397, 46.61767],
+ [21.30124, 46.59087],
+ [21.32079, 46.58286],
+ [21.2743, 46.54074],
+ [21.26003, 46.50216],
+ [21.27442, 46.47673],
+ [21.29645, 46.4763],
+ [21.31743, 46.45073],
+ [21.28952, 46.41548],
+ [21.29633, 46.40696],
+ [21.22501, 46.41369],
+ [21.20642, 46.40338],
+ [21.19926, 46.3479],
+ [21.17623, 46.33577],
+ [21.1805, 46.30445],
+ [21.11554, 46.30185],
+ [21.10305, 46.26246],
+ [21.07088, 46.2539],
+ [21.06608, 46.24294],
+ [21.03662, 46.24804],
+ [21.02467, 46.26653],
+ [20.96082, 46.2623],
+ [20.94658, 46.2793],
+ [20.92507, 46.27662],
+ [20.92181, 46.26181],
+ [20.87327, 46.28776],
+ [20.77565, 46.27596],
+ [20.74905, 46.25085],
+ [20.76186, 46.20456],
+ [20.7274, 46.20775],
+ [20.73411, 46.19394],
+ [20.71405, 46.16605],
+ [20.68436, 46.14478],
+ [20.65492, 46.14977],
+ [20.63945, 46.12676],
+ [20.54505, 46.17909],
+ [20.50148, 46.19033],
+ [20.49494, 46.17099],
+ [20.45923, 46.14288],
+ [20.39751, 46.15747],
+ [20.36853, 46.15286],
+ [20.35571, 46.16963],
+ [20.29681, 46.15215],
+ [20.2549, 46.11585],
+ [20.24848, 46.1301],
+ [20.23301, 46.12417],
+ [20.18174, 46.16011],
+ [20.1365, 46.14495],
+ [20.10097, 46.17728],
+ [20.06362, 46.14373],
+ [20.03461, 46.14589],
+ [20.01581, 46.17684],
+ [19.93541, 46.17642],
+ [19.85335, 46.15],
+ [19.81797, 46.12817],
+ [19.75854, 46.14798],
+ [19.69821, 46.18793],
+ [19.68277, 46.18004],
+ [19.66151, 46.19044],
+ [19.63174, 46.1693],
+ [19.56765, 46.17911],
+ [19.5604, 46.16658],
+ [19.50266, 46.14245],
+ [19.52712, 46.12103],
+ [19.4645, 46.09538],
+ [19.46658, 46.08204],
+ [19.416, 46.04605],
+ [19.3804, 46.03587],
+ [19.36409, 46.0523],
+ [19.2819, 46.0148],
+ [19.29653, 45.98812],
+ [19.28565, 45.9969],
+ [19.14799, 45.99634],
+ [19.13384, 46.0371],
+ [19.10487, 46.04017],
+ [19.06604, 46.0002],
+ [19.07968, 45.96364],
+ [19.00598, 45.95907],
+ [19.00927, 45.92366],
+ [18.90613, 45.93538],
+ [18.87946, 45.91668],
+ [18.86471, 45.92085],
+ [18.86856, 45.91134],
+ [18.82768, 45.90517],
+ [18.822, 45.91459],
+ [18.80751, 45.90361],
+ [18.80925, 45.87962],
+ [18.79562, 45.87845],
+ [18.70489, 45.91819],
+ [18.67002, 45.91084],
+ [18.65966, 45.91689],
+ [18.66513, 45.89928],
+ [18.64128, 45.88904],
+ [18.65502, 45.87424],
+ [18.62777, 45.87338],
+ [18.61484, 45.85314],
+ [18.62367, 45.83985],
+ [18.57324, 45.81376],
+ [18.57498, 45.80043],
+ [18.55972, 45.8038],
+ [18.52235, 45.78269],
+ [18.49067, 45.79472],
+ [18.48219, 45.7655],
+ [18.45628, 45.76952],
+ [18.44508, 45.76052],
+ [18.44685, 45.73713],
+ [18.40763, 45.73971],
+ [18.39189, 45.7617],
+ [18.36423, 45.77294],
+ [18.33942, 45.74716],
+ [18.29682, 45.76122],
+ [18.24405, 45.76123],
+ [18.23073, 45.77903],
+ [18.19087, 45.78788],
+ [18.16819, 45.77627],
+ [18.12465, 45.78963],
+ [18.10681, 45.77083],
+ [18.08189, 45.76452],
+ [17.99588, 45.79573],
+ [17.93021, 45.78633],
+ [17.90668, 45.79257],
+ [17.86531, 45.76701],
+ [17.82627, 45.81],
+ [17.80898, 45.8041],
+ [17.78091, 45.81749],
+ [17.76034, 45.81192],
+ [17.74086, 45.8296],
+ [17.66329, 45.83818],
+ [17.62762, 45.89794],
+ [17.57007, 45.93582],
+ [17.43783, 45.95038],
+ [17.4259, 45.92727],
+ [17.41081, 45.93997],
+ [17.39215, 45.93021],
+ [17.38287, 45.94757],
+ [17.34762, 45.94234],
+ [17.34388, 45.96053],
+ [17.35377, 45.9525],
+ [17.39054, 45.95819],
+ [17.38742, 45.96618],
+ [17.35835, 45.96427],
+ [17.37549, 45.96869],
+ [17.37519, 45.98811],
+ [17.36357, 45.99154],
+ [17.35672, 45.97358],
+ [17.33396, 45.99608],
+ [17.33198, 45.97289],
+ [17.313, 45.96653],
+ [17.32365, 45.98878],
+ [17.29877, 45.98387],
+ [17.3042, 46.00211],
+ [17.25797, 46.01103],
+ [17.29632, 46.02852],
+ [17.25415, 46.03001],
+ [17.27096, 46.05671],
+ [17.23248, 46.0592],
+ [17.25251, 46.06647],
+ [17.23131, 46.07903],
+ [17.20199, 46.07655],
+ [17.23313, 46.09896],
+ [17.2104, 46.10017],
+ [17.21297, 46.11386],
+ [17.17593, 46.10846],
+ [17.17434, 46.12876],
+ [17.18652, 46.13323],
+ [17.1811, 46.15055],
+ [17.15623, 46.15858],
+ [17.15929, 46.16968],
+ [17.1261, 46.16845],
+ [17.12274, 46.17898],
+ [17.07525, 46.18895],
+ [17.06616, 46.2023],
+ [16.97354, 46.2252],
+ [16.97395, 46.24311],
+ [16.95041, 46.24153],
+ [16.88624, 46.28146],
+ [16.87137, 46.32528],
+ [16.88021, 46.3357],
+ [16.86154, 46.34524],
+ [16.86562, 46.35565],
+ [16.8522, 46.35172],
+ [16.84986, 46.36262],
+ [16.83529, 46.36382],
+ [16.83765, 46.3748],
+ [16.82617, 46.3671],
+ [16.79334, 46.38739],
+ [16.75921, 46.37766],
+ [16.72987, 46.40149],
+ [16.71821, 46.38987],
+ [16.67729, 46.44945],
+ [16.66318, 46.4487],
+ [16.66637, 46.4583],
+ [16.61879, 46.46199],
+ [16.60447, 46.47608],
+ [16.5236, 46.50538],
+ [16.53258, 46.5314],
+ [16.51767, 46.53635],
+ [16.50841, 46.56527],
+ [16.483, 46.56604],
+ [16.4834, 46.5786],
+ [16.44557, 46.61095],
+ [16.42486, 46.61316],
+ [16.38594, 46.64425],
+ [16.39154, 46.66373],
+ [16.41985, 46.65848],
+ [16.42863, 46.69397],
+ [16.36892, 46.70401],
+ [16.37983, 46.71539],
+ [16.37109, 46.72229],
+ [16.35706, 46.71424],
+ [16.3186, 46.75414],
+ [16.33054, 46.77521],
+ [16.31216, 46.778],
+ [16.31277, 46.79731],
+ [16.34064, 46.80519],
+ [16.35084, 46.83006],
+ [16.34033, 46.84688],
+ [16.3015, 46.85951],
+ [16.29139, 46.87283],
+ [16.23323, 46.87667],
+ [16.15609, 46.85371],
+ [16.12657, 46.85691],
+ [16.11391, 46.8691]
+ ]
+ ],
+ "terms_url": "https://www.openstreetmap.org",
+ "terms_text": "© OpenStreetMap contributors"
+ },
+ {
+ "id": "osm-gps",
+ "name": "OpenStreetMap GPS traces",
+ "type": "tms",
+ "template": "https://{switch:a,b,c}.gps-tile.openstreetmap.org/lines/{zoom}/{x}/{y}.png",
+ "scaleExtent": [0, 20],
+ "terms_url": "https://www.openstreetmap.org/copyright",
+ "terms_text": "© OpenStreetMap contributors",
+ "terms_html": "GPS Direction: ← ↓ ↑ → © OpenStreetMap contributors.",
+ "description": "Public GPS traces uploaded to OpenStreetMap.",
+ "icon": "data:image/png;base64,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",
+ "overlay": true
+ },
+ {
+ "id": "lu.geoportail.opendata.ortho2010",
+ "name": "Ortho 2010 geoportail.lu",
+ "type": "tms",
+ "template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/ortho_2010/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg",
+ "endDate": "2010-07-02T00:00:00.000Z",
+ "startDate": "2010-06-24T00:00:00.000Z",
+ "scaleExtent": [0, 20],
+ "polygon": [
+ [
+ [5.96175, 50.17631],
+ [6.02627, 50.18496],
+ [6.03318, 50.16395],
+ [6.06069, 50.15536],
+ [6.07668, 50.15913],
+ [6.07824, 50.17255],
+ [6.10176, 50.17199],
+ [6.1225, 50.16437],
+ [6.1201, 50.15594],
+ [6.1277, 50.14993],
+ [6.11323, 50.13739],
+ [6.12369, 50.13719],
+ [6.14093, 50.1305],
+ [6.13555, 50.11899],
+ [6.13808, 50.10263],
+ [6.13108, 50.09964],
+ [6.13547, 50.09119],
+ [6.12194, 50.09059],
+ [6.12634, 50.07817],
+ [6.13186, 50.07348],
+ [6.12117, 50.064],
+ [6.11444, 50.06139],
+ [6.11563, 50.05817],
+ [6.12361, 50.06323],
+ [6.13661, 50.04178],
+ [6.13034, 50.02975],
+ [6.14821, 50.02307],
+ [6.13868, 50.01572],
+ [6.13594, 50.01485],
+ [6.13138, 50.01905],
+ [6.13024, 50.01819],
+ [6.13934, 50.01116],
+ [6.1517, 50.01058],
+ [6.14546, 49.99689],
+ [6.13966, 49.9994],
+ [6.13852, 49.99829],
+ [6.14218, 49.99535],
+ [6.15023, 49.99518],
+ [6.15625, 49.98867],
+ [6.17305, 49.98589],
+ [6.17348, 49.98344],
+ [6.17035, 49.98376],
+ [6.16549, 49.97115],
+ [6.17151, 49.96298],
+ [6.1763, 49.962],
+ [6.17995, 49.95386],
+ [6.18339, 49.9548],
+ [6.17983, 49.96307],
+ [6.18331, 49.9686],
+ [6.19277, 49.97158],
+ [6.19978, 49.95352],
+ [6.20707, 49.95672],
+ [6.21269, 49.9514],
+ [6.22502, 49.95039],
+ [6.22044, 49.94369],
+ [6.22824, 49.93726],
+ [6.22635, 49.92766],
+ [6.21913, 49.92354],
+ [6.22986, 49.92125],
+ [6.23603, 49.91355],
+ [6.23187, 49.91064],
+ [6.22769, 49.91062],
+ [6.23229, 49.9072],
+ [6.23381, 49.90028],
+ [6.24692, 49.89535],
+ [6.25781, 49.88724],
+ [6.26301, 49.88101],
+ [6.27646, 49.87725],
+ [6.28113, 49.87957],
+ [6.29166, 49.87548],
+ [6.2977, 49.86673],
+ [6.30989, 49.87107],
+ [6.31532, 49.8673],
+ [6.31465, 49.86057],
+ [6.32361, 49.85188],
+ [6.32158, 49.8409],
+ [6.32741, 49.83673],
+ [6.33656, 49.83998],
+ [6.33937, 49.8507],
+ [6.36465, 49.85164],
+ [6.4022, 49.82098],
+ [6.42643, 49.81629],
+ [6.42807, 49.81186],
+ [6.43097, 49.81129],
+ [6.44161, 49.81547],
+ [6.44344, 49.81233],
+ [6.45366, 49.81275],
+ [6.46454, 49.81975],
+ [6.47057, 49.82385],
+ [6.49681, 49.81277],
+ [6.50669, 49.80993],
+ [6.51155, 49.80238],
+ [6.51485, 49.80513],
+ [6.5196, 49.81446],
+ [6.52981, 49.81048],
+ [6.53225, 49.80686],
+ [6.53083, 49.80116],
+ [6.50622, 49.78899],
+ [6.51917, 49.78344],
+ [6.51105, 49.77422],
+ [6.52056, 49.76818],
+ [6.52052, 49.76134],
+ [6.50373, 49.75086],
+ [6.50263, 49.73298],
+ [6.50727, 49.72938],
+ [6.51809, 49.7242],
+ [6.51642, 49.72129],
+ [6.51176, 49.72016],
+ [6.50479, 49.725],
+ [6.49891, 49.72639],
+ [6.49558, 49.72443],
+ [6.50712, 49.71655],
+ [6.50788, 49.71215],
+ [6.5046, 49.71227],
+ [6.42714, 49.66237],
+ [6.4399, 49.66025],
+ [6.44251, 49.65591],
+ [6.42178, 49.61809],
+ [6.39898, 49.60094],
+ [6.37941, 49.59526],
+ [6.37551, 49.58809],
+ [6.38443, 49.5801],
+ [6.38119, 49.57509],
+ [6.36909, 49.5783],
+ [6.35791, 49.57166],
+ [6.3849, 49.55817],
+ [6.38009, 49.54856],
+ [6.35855, 49.53296],
+ [6.35932, 49.52481],
+ [6.37076, 49.50545],
+ [6.37056, 49.45732],
+ [6.3334, 49.46493],
+ [6.32189, 49.47244],
+ [6.29503, 49.47928],
+ [6.28789, 49.48379],
+ [6.27191, 49.49995],
+ [6.24133, 49.50693],
+ [6.19669, 49.50331],
+ [6.17337, 49.50577],
+ [6.16086, 49.50085],
+ [6.1671, 49.49006],
+ [6.14018, 49.48525],
+ [6.12937, 49.48803],
+ [6.12725, 49.47081],
+ [6.1014, 49.46726],
+ [6.10483, 49.45076],
+ [6.08167, 49.45417],
+ [6.07722, 49.46139],
+ [6.05917, 49.46306],
+ [6.05222, 49.46028],
+ [6.04421, 49.44553],
+ [6.02529, 49.44703],
+ [6.02154, 49.45127],
+ [6.01574, 49.44885],
+ [5.99412, 49.45301],
+ [5.97657, 49.44885],
+ [5.97773, 49.45955],
+ [5.97232, 49.46087],
+ [5.96891, 49.48202],
+ [5.9616, 49.49026],
+ [5.91578, 49.49835],
+ [5.89033, 49.4948],
+ [5.86332, 49.50006],
+ [5.84897, 49.50826],
+ [5.84828, 49.51397],
+ [5.83641, 49.51817],
+ [5.83187, 49.52639],
+ [5.84308, 49.53081],
+ [5.83562, 49.54114],
+ [5.81625, 49.53325],
+ [5.8052, 49.54272],
+ [5.85943, 49.57158],
+ [5.86866, 49.587],
+ [5.86289, 49.58525],
+ [5.8511, 49.58379],
+ [5.84712, 49.58961],
+ [5.84565, 49.5981],
+ [5.8694, 49.6106],
+ [5.88182, 49.63815],
+ [5.89998, 49.63907],
+ [5.89934, 49.66239],
+ [5.85656, 49.67628],
+ [5.85628, 49.68211],
+ [5.8757, 49.71118],
+ [5.86481, 49.72331],
+ [5.84325, 49.71822],
+ [5.82191, 49.72128],
+ [5.82489, 49.73767],
+ [5.82073, 49.74878],
+ [5.78626, 49.79079],
+ [5.76517, 49.78961],
+ [5.75094, 49.79094],
+ [5.74159, 49.82126],
+ [5.74581, 49.82435],
+ [5.7372, 49.83353],
+ [5.74053, 49.84142],
+ [5.74701, 49.84048],
+ [5.74624, 49.84783],
+ [5.75399, 49.84878],
+ [5.74066, 49.85152],
+ [5.75229, 49.85922],
+ [5.74955, 49.87554],
+ [5.77567, 49.87438],
+ [5.77505, 49.88057],
+ [5.7346, 49.89341],
+ [5.73303, 49.90285],
+ [5.75783, 49.91737],
+ [5.76039, 49.93252],
+ [5.77073, 49.93711],
+ [5.76878, 49.94239],
+ [5.7688, 49.96104],
+ [5.78672, 49.96816],
+ [5.80524, 49.96677],
+ [5.80652, 49.97321],
+ [5.83129, 49.97995],
+ [5.83462, 49.98656],
+ [5.81806, 49.99936],
+ [5.81561, 50.01437],
+ [5.84792, 50.02809],
+ [5.86189, 50.04581],
+ [5.85087, 50.0563],
+ [5.85781, 50.07186],
+ [5.881, 50.08069],
+ [5.89196, 50.12041],
+ [5.95286, 50.13384],
+ [5.96175, 50.17631]
+ ]
+ ],
+ "terms_url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts",
+ "terms_text": "Administration du Cadastre et de la Topographie",
+ "icon": "https://www.geoportail.lu/static/img/lion.png"
+ },
+ {
+ "id": "lu.geoportail.opendata.ortho2013",
+ "name": "Ortho 2013 geoportail.lu",
+ "type": "tms",
+ "template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/ortho_2013/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg",
+ "endDate": "2013-07-20T00:00:00.000Z",
+ "startDate": "2013-07-19T00:00:00.000Z",
+ "scaleExtent": [0, 20],
+ "polygon": [
+ [
+ [5.96175, 50.17631],
+ [6.02627, 50.18496],
+ [6.03318, 50.16395],
+ [6.06069, 50.15536],
+ [6.07668, 50.15913],
+ [6.07824, 50.17255],
+ [6.10176, 50.17199],
+ [6.1225, 50.16437],
+ [6.1201, 50.15594],
+ [6.1277, 50.14993],
+ [6.11323, 50.13739],
+ [6.12369, 50.13719],
+ [6.14093, 50.1305],
+ [6.13555, 50.11899],
+ [6.13808, 50.10263],
+ [6.13108, 50.09964],
+ [6.13547, 50.09119],
+ [6.12194, 50.09059],
+ [6.12634, 50.07817],
+ [6.13186, 50.07348],
+ [6.12117, 50.064],
+ [6.11444, 50.06139],
+ [6.11563, 50.05817],
+ [6.12361, 50.06323],
+ [6.13661, 50.04178],
+ [6.13034, 50.02975],
+ [6.14821, 50.02307],
+ [6.13868, 50.01572],
+ [6.13594, 50.01485],
+ [6.13138, 50.01905],
+ [6.13024, 50.01819],
+ [6.13934, 50.01116],
+ [6.1517, 50.01058],
+ [6.14546, 49.99689],
+ [6.13966, 49.9994],
+ [6.13852, 49.99829],
+ [6.14218, 49.99535],
+ [6.15023, 49.99518],
+ [6.15625, 49.98867],
+ [6.17305, 49.98589],
+ [6.17348, 49.98344],
+ [6.17035, 49.98376],
+ [6.16549, 49.97115],
+ [6.17151, 49.96298],
+ [6.1763, 49.962],
+ [6.17995, 49.95386],
+ [6.18339, 49.9548],
+ [6.17983, 49.96307],
+ [6.18331, 49.9686],
+ [6.19277, 49.97158],
+ [6.19978, 49.95352],
+ [6.20707, 49.95672],
+ [6.21269, 49.9514],
+ [6.22502, 49.95039],
+ [6.22044, 49.94369],
+ [6.22824, 49.93726],
+ [6.22635, 49.92766],
+ [6.21913, 49.92354],
+ [6.22986, 49.92125],
+ [6.23603, 49.91355],
+ [6.23187, 49.91064],
+ [6.22769, 49.91062],
+ [6.23229, 49.9072],
+ [6.23381, 49.90028],
+ [6.24692, 49.89535],
+ [6.25781, 49.88724],
+ [6.26301, 49.88101],
+ [6.27646, 49.87725],
+ [6.28113, 49.87957],
+ [6.29166, 49.87548],
+ [6.2977, 49.86673],
+ [6.30989, 49.87107],
+ [6.31532, 49.8673],
+ [6.31465, 49.86057],
+ [6.32361, 49.85188],
+ [6.32158, 49.8409],
+ [6.32741, 49.83673],
+ [6.33656, 49.83998],
+ [6.33937, 49.8507],
+ [6.36465, 49.85164],
+ [6.4022, 49.82098],
+ [6.42643, 49.81629],
+ [6.42807, 49.81186],
+ [6.43097, 49.81129],
+ [6.44161, 49.81547],
+ [6.44344, 49.81233],
+ [6.45366, 49.81275],
+ [6.46454, 49.81975],
+ [6.47057, 49.82385],
+ [6.49681, 49.81277],
+ [6.50669, 49.80993],
+ [6.51155, 49.80238],
+ [6.51485, 49.80513],
+ [6.5196, 49.81446],
+ [6.52981, 49.81048],
+ [6.53225, 49.80686],
+ [6.53083, 49.80116],
+ [6.50622, 49.78899],
+ [6.51917, 49.78344],
+ [6.51105, 49.77422],
+ [6.52056, 49.76818],
+ [6.52052, 49.76134],
+ [6.50373, 49.75086],
+ [6.50263, 49.73298],
+ [6.50727, 49.72938],
+ [6.51809, 49.7242],
+ [6.51642, 49.72129],
+ [6.51176, 49.72016],
+ [6.50479, 49.725],
+ [6.49891, 49.72639],
+ [6.49558, 49.72443],
+ [6.50712, 49.71655],
+ [6.50788, 49.71215],
+ [6.5046, 49.71227],
+ [6.42714, 49.66237],
+ [6.4399, 49.66025],
+ [6.44251, 49.65591],
+ [6.42178, 49.61809],
+ [6.39898, 49.60094],
+ [6.37941, 49.59526],
+ [6.37551, 49.58809],
+ [6.38443, 49.5801],
+ [6.38119, 49.57509],
+ [6.36909, 49.5783],
+ [6.35791, 49.57166],
+ [6.3849, 49.55817],
+ [6.38009, 49.54856],
+ [6.35855, 49.53296],
+ [6.35932, 49.52481],
+ [6.37076, 49.50545],
+ [6.37056, 49.45732],
+ [6.3334, 49.46493],
+ [6.32189, 49.47244],
+ [6.29503, 49.47928],
+ [6.28789, 49.48379],
+ [6.27191, 49.49995],
+ [6.24133, 49.50693],
+ [6.19669, 49.50331],
+ [6.17337, 49.50577],
+ [6.16086, 49.50085],
+ [6.1671, 49.49006],
+ [6.14018, 49.48525],
+ [6.12937, 49.48803],
+ [6.12725, 49.47081],
+ [6.1014, 49.46726],
+ [6.10483, 49.45076],
+ [6.08167, 49.45417],
+ [6.07722, 49.46139],
+ [6.05917, 49.46306],
+ [6.05222, 49.46028],
+ [6.04421, 49.44553],
+ [6.02529, 49.44703],
+ [6.02154, 49.45127],
+ [6.01574, 49.44885],
+ [5.99412, 49.45301],
+ [5.97657, 49.44885],
+ [5.97773, 49.45955],
+ [5.97232, 49.46087],
+ [5.96891, 49.48202],
+ [5.9616, 49.49026],
+ [5.91578, 49.49835],
+ [5.89033, 49.4948],
+ [5.86332, 49.50006],
+ [5.84897, 49.50826],
+ [5.84828, 49.51397],
+ [5.83641, 49.51817],
+ [5.83187, 49.52639],
+ [5.84308, 49.53081],
+ [5.83562, 49.54114],
+ [5.81625, 49.53325],
+ [5.8052, 49.54272],
+ [5.85943, 49.57158],
+ [5.86866, 49.587],
+ [5.86289, 49.58525],
+ [5.8511, 49.58379],
+ [5.84712, 49.58961],
+ [5.84565, 49.5981],
+ [5.8694, 49.6106],
+ [5.88182, 49.63815],
+ [5.89998, 49.63907],
+ [5.89934, 49.66239],
+ [5.85656, 49.67628],
+ [5.85628, 49.68211],
+ [5.8757, 49.71118],
+ [5.86481, 49.72331],
+ [5.84325, 49.71822],
+ [5.82191, 49.72128],
+ [5.82489, 49.73767],
+ [5.82073, 49.74878],
+ [5.78626, 49.79079],
+ [5.76517, 49.78961],
+ [5.75094, 49.79094],
+ [5.74159, 49.82126],
+ [5.74581, 49.82435],
+ [5.7372, 49.83353],
+ [5.74053, 49.84142],
+ [5.74701, 49.84048],
+ [5.74624, 49.84783],
+ [5.75399, 49.84878],
+ [5.74066, 49.85152],
+ [5.75229, 49.85922],
+ [5.74955, 49.87554],
+ [5.77567, 49.87438],
+ [5.77505, 49.88057],
+ [5.7346, 49.89341],
+ [5.73303, 49.90285],
+ [5.75783, 49.91737],
+ [5.76039, 49.93252],
+ [5.77073, 49.93711],
+ [5.76878, 49.94239],
+ [5.7688, 49.96104],
+ [5.78672, 49.96816],
+ [5.80524, 49.96677],
+ [5.80652, 49.97321],
+ [5.83129, 49.97995],
+ [5.83462, 49.98656],
+ [5.81806, 49.99936],
+ [5.81561, 50.01437],
+ [5.84792, 50.02809],
+ [5.86189, 50.04581],
+ [5.85087, 50.0563],
+ [5.85781, 50.07186],
+ [5.881, 50.08069],
+ [5.89196, 50.12041],
+ [5.95286, 50.13384],
+ [5.96175, 50.17631]
+ ]
+ ],
+ "terms_url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts",
+ "terms_text": "Administration du Cadastre et de la Topographie",
+ "icon": "https://www.geoportail.lu/static/img/lion.png"
+ },
+ {
+ "id": "lu.geoportail.opendata.ortho2016",
+ "name": "Ortho 2016 geoportail.lu",
+ "type": "tms",
+ "template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/ortho_2016/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg",
+ "endDate": "2016-08-16T00:00:00.000Z",
+ "startDate": "2013-08-30T00:00:00.000Z",
+ "scaleExtent": [0, 20],
+ "polygon": [
+ [
+ [5.96175, 50.17631],
+ [6.02627, 50.18496],
+ [6.03318, 50.16395],
+ [6.06069, 50.15536],
+ [6.07668, 50.15913],
+ [6.07824, 50.17255],
+ [6.10176, 50.17199],
+ [6.1225, 50.16437],
+ [6.1201, 50.15594],
+ [6.1277, 50.14993],
+ [6.11323, 50.13739],
+ [6.12369, 50.13719],
+ [6.14093, 50.1305],
+ [6.13555, 50.11899],
+ [6.13808, 50.10263],
+ [6.13108, 50.09964],
+ [6.13547, 50.09119],
+ [6.12194, 50.09059],
+ [6.12634, 50.07817],
+ [6.13186, 50.07348],
+ [6.12117, 50.064],
+ [6.11444, 50.06139],
+ [6.11563, 50.05817],
+ [6.12361, 50.06323],
+ [6.13661, 50.04178],
+ [6.13034, 50.02975],
+ [6.14821, 50.02307],
+ [6.13868, 50.01572],
+ [6.13594, 50.01485],
+ [6.13138, 50.01905],
+ [6.13024, 50.01819],
+ [6.13934, 50.01116],
+ [6.1517, 50.01058],
+ [6.14546, 49.99689],
+ [6.13966, 49.9994],
+ [6.13852, 49.99829],
+ [6.14218, 49.99535],
+ [6.15023, 49.99518],
+ [6.15625, 49.98867],
+ [6.17305, 49.98589],
+ [6.17348, 49.98344],
+ [6.17035, 49.98376],
+ [6.16549, 49.97115],
+ [6.17151, 49.96298],
+ [6.1763, 49.962],
+ [6.17995, 49.95386],
+ [6.18339, 49.9548],
+ [6.17983, 49.96307],
+ [6.18331, 49.9686],
+ [6.19277, 49.97158],
+ [6.19978, 49.95352],
+ [6.20707, 49.95672],
+ [6.21269, 49.9514],
+ [6.22502, 49.95039],
+ [6.22044, 49.94369],
+ [6.22824, 49.93726],
+ [6.22635, 49.92766],
+ [6.21913, 49.92354],
+ [6.22986, 49.92125],
+ [6.23603, 49.91355],
+ [6.23187, 49.91064],
+ [6.22769, 49.91062],
+ [6.23229, 49.9072],
+ [6.23381, 49.90028],
+ [6.24692, 49.89535],
+ [6.25781, 49.88724],
+ [6.26301, 49.88101],
+ [6.27646, 49.87725],
+ [6.28113, 49.87957],
+ [6.29166, 49.87548],
+ [6.2977, 49.86673],
+ [6.30989, 49.87107],
+ [6.31532, 49.8673],
+ [6.31465, 49.86057],
+ [6.32361, 49.85188],
+ [6.32158, 49.8409],
+ [6.32741, 49.83673],
+ [6.33656, 49.83998],
+ [6.33937, 49.8507],
+ [6.36465, 49.85164],
+ [6.4022, 49.82098],
+ [6.42643, 49.81629],
+ [6.42807, 49.81186],
+ [6.43097, 49.81129],
+ [6.44161, 49.81547],
+ [6.44344, 49.81233],
+ [6.45366, 49.81275],
+ [6.46454, 49.81975],
+ [6.47057, 49.82385],
+ [6.49681, 49.81277],
+ [6.50669, 49.80993],
+ [6.51155, 49.80238],
+ [6.51485, 49.80513],
+ [6.5196, 49.81446],
+ [6.52981, 49.81048],
+ [6.53225, 49.80686],
+ [6.53083, 49.80116],
+ [6.50622, 49.78899],
+ [6.51917, 49.78344],
+ [6.51105, 49.77422],
+ [6.52056, 49.76818],
+ [6.52052, 49.76134],
+ [6.50373, 49.75086],
+ [6.50263, 49.73298],
+ [6.50727, 49.72938],
+ [6.51809, 49.7242],
+ [6.51642, 49.72129],
+ [6.51176, 49.72016],
+ [6.50479, 49.725],
+ [6.49891, 49.72639],
+ [6.49558, 49.72443],
+ [6.50712, 49.71655],
+ [6.50788, 49.71215],
+ [6.5046, 49.71227],
+ [6.42714, 49.66237],
+ [6.4399, 49.66025],
+ [6.44251, 49.65591],
+ [6.42178, 49.61809],
+ [6.39898, 49.60094],
+ [6.37941, 49.59526],
+ [6.37551, 49.58809],
+ [6.38443, 49.5801],
+ [6.38119, 49.57509],
+ [6.36909, 49.5783],
+ [6.35791, 49.57166],
+ [6.3849, 49.55817],
+ [6.38009, 49.54856],
+ [6.35855, 49.53296],
+ [6.35932, 49.52481],
+ [6.37076, 49.50545],
+ [6.37056, 49.45732],
+ [6.3334, 49.46493],
+ [6.32189, 49.47244],
+ [6.29503, 49.47928],
+ [6.28789, 49.48379],
+ [6.27191, 49.49995],
+ [6.24133, 49.50693],
+ [6.19669, 49.50331],
+ [6.17337, 49.50577],
+ [6.16086, 49.50085],
+ [6.1671, 49.49006],
+ [6.14018, 49.48525],
+ [6.12937, 49.48803],
+ [6.12725, 49.47081],
+ [6.1014, 49.46726],
+ [6.10483, 49.45076],
+ [6.08167, 49.45417],
+ [6.07722, 49.46139],
+ [6.05917, 49.46306],
+ [6.05222, 49.46028],
+ [6.04421, 49.44553],
+ [6.02529, 49.44703],
+ [6.02154, 49.45127],
+ [6.01574, 49.44885],
+ [5.99412, 49.45301],
+ [5.97657, 49.44885],
+ [5.97773, 49.45955],
+ [5.97232, 49.46087],
+ [5.96891, 49.48202],
+ [5.9616, 49.49026],
+ [5.91578, 49.49835],
+ [5.89033, 49.4948],
+ [5.86332, 49.50006],
+ [5.84897, 49.50826],
+ [5.84828, 49.51397],
+ [5.83641, 49.51817],
+ [5.83187, 49.52639],
+ [5.84308, 49.53081],
+ [5.83562, 49.54114],
+ [5.81625, 49.53325],
+ [5.8052, 49.54272],
+ [5.85943, 49.57158],
+ [5.86866, 49.587],
+ [5.86289, 49.58525],
+ [5.8511, 49.58379],
+ [5.84712, 49.58961],
+ [5.84565, 49.5981],
+ [5.8694, 49.6106],
+ [5.88182, 49.63815],
+ [5.89998, 49.63907],
+ [5.89934, 49.66239],
+ [5.85656, 49.67628],
+ [5.85628, 49.68211],
+ [5.8757, 49.71118],
+ [5.86481, 49.72331],
+ [5.84325, 49.71822],
+ [5.82191, 49.72128],
+ [5.82489, 49.73767],
+ [5.82073, 49.74878],
+ [5.78626, 49.79079],
+ [5.76517, 49.78961],
+ [5.75094, 49.79094],
+ [5.74159, 49.82126],
+ [5.74581, 49.82435],
+ [5.7372, 49.83353],
+ [5.74053, 49.84142],
+ [5.74701, 49.84048],
+ [5.74624, 49.84783],
+ [5.75399, 49.84878],
+ [5.74066, 49.85152],
+ [5.75229, 49.85922],
+ [5.74955, 49.87554],
+ [5.77567, 49.87438],
+ [5.77505, 49.88057],
+ [5.7346, 49.89341],
+ [5.73303, 49.90285],
+ [5.75783, 49.91737],
+ [5.76039, 49.93252],
+ [5.77073, 49.93711],
+ [5.76878, 49.94239],
+ [5.7688, 49.96104],
+ [5.78672, 49.96816],
+ [5.80524, 49.96677],
+ [5.80652, 49.97321],
+ [5.83129, 49.97995],
+ [5.83462, 49.98656],
+ [5.81806, 49.99936],
+ [5.81561, 50.01437],
+ [5.84792, 50.02809],
+ [5.86189, 50.04581],
+ [5.85087, 50.0563],
+ [5.85781, 50.07186],
+ [5.881, 50.08069],
+ [5.89196, 50.12041],
+ [5.95286, 50.13384],
+ [5.96175, 50.17631]
+ ]
+ ],
+ "terms_url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts",
+ "terms_text": "Administration du Cadastre et de la Topographie",
+ "icon": "https://www.geoportail.lu/static/img/lion.png"
+ },
+ {
+ "id": "lu.geoportail.opendata.ortho2017",
+ "name": "Ortho 2017 geoportail.lu",
+ "type": "tms",
+ "template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/ortho_2017/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg",
+ "endDate": "2017-06-22T00:00:00.000Z",
+ "startDate": "2017-06-14T00:00:00.000Z",
+ "scaleExtent": [0, 20],
+ "polygon": [
+ [
+ [5.96175, 50.17631],
+ [6.02627, 50.18496],
+ [6.03318, 50.16395],
+ [6.06069, 50.15536],
+ [6.07668, 50.15913],
+ [6.07824, 50.17255],
+ [6.10176, 50.17199],
+ [6.1225, 50.16437],
+ [6.1201, 50.15594],
+ [6.1277, 50.14993],
+ [6.11323, 50.13739],
+ [6.12369, 50.13719],
+ [6.14093, 50.1305],
+ [6.13555, 50.11899],
+ [6.13808, 50.10263],
+ [6.13108, 50.09964],
+ [6.13547, 50.09119],
+ [6.12194, 50.09059],
+ [6.12634, 50.07817],
+ [6.13186, 50.07348],
+ [6.12117, 50.064],
+ [6.11444, 50.06139],
+ [6.11563, 50.05817],
+ [6.12361, 50.06323],
+ [6.13661, 50.04178],
+ [6.13034, 50.02975],
+ [6.14821, 50.02307],
+ [6.13868, 50.01572],
+ [6.13594, 50.01485],
+ [6.13138, 50.01905],
+ [6.13024, 50.01819],
+ [6.13934, 50.01116],
+ [6.1517, 50.01058],
+ [6.14546, 49.99689],
+ [6.13966, 49.9994],
+ [6.13852, 49.99829],
+ [6.14218, 49.99535],
+ [6.15023, 49.99518],
+ [6.15625, 49.98867],
+ [6.17305, 49.98589],
+ [6.17348, 49.98344],
+ [6.17035, 49.98376],
+ [6.16549, 49.97115],
+ [6.17151, 49.96298],
+ [6.1763, 49.962],
+ [6.17995, 49.95386],
+ [6.18339, 49.9548],
+ [6.17983, 49.96307],
+ [6.18331, 49.9686],
+ [6.19277, 49.97158],
+ [6.19978, 49.95352],
+ [6.20707, 49.95672],
+ [6.21269, 49.9514],
+ [6.22502, 49.95039],
+ [6.22044, 49.94369],
+ [6.22824, 49.93726],
+ [6.22635, 49.92766],
+ [6.21913, 49.92354],
+ [6.22986, 49.92125],
+ [6.23603, 49.91355],
+ [6.23187, 49.91064],
+ [6.22769, 49.91062],
+ [6.23229, 49.9072],
+ [6.23381, 49.90028],
+ [6.24692, 49.89535],
+ [6.25781, 49.88724],
+ [6.26301, 49.88101],
+ [6.27646, 49.87725],
+ [6.28113, 49.87957],
+ [6.29166, 49.87548],
+ [6.2977, 49.86673],
+ [6.30989, 49.87107],
+ [6.31532, 49.8673],
+ [6.31465, 49.86057],
+ [6.32361, 49.85188],
+ [6.32158, 49.8409],
+ [6.32741, 49.83673],
+ [6.33656, 49.83998],
+ [6.33937, 49.8507],
+ [6.36465, 49.85164],
+ [6.4022, 49.82098],
+ [6.42643, 49.81629],
+ [6.42807, 49.81186],
+ [6.43097, 49.81129],
+ [6.44161, 49.81547],
+ [6.44344, 49.81233],
+ [6.45366, 49.81275],
+ [6.46454, 49.81975],
+ [6.47057, 49.82385],
+ [6.49681, 49.81277],
+ [6.50669, 49.80993],
+ [6.51155, 49.80238],
+ [6.51485, 49.80513],
+ [6.5196, 49.81446],
+ [6.52981, 49.81048],
+ [6.53225, 49.80686],
+ [6.53083, 49.80116],
+ [6.50622, 49.78899],
+ [6.51917, 49.78344],
+ [6.51105, 49.77422],
+ [6.52056, 49.76818],
+ [6.52052, 49.76134],
+ [6.50373, 49.75086],
+ [6.50263, 49.73298],
+ [6.50727, 49.72938],
+ [6.51809, 49.7242],
+ [6.51642, 49.72129],
+ [6.51176, 49.72016],
+ [6.50479, 49.725],
+ [6.49891, 49.72639],
+ [6.49558, 49.72443],
+ [6.50712, 49.71655],
+ [6.50788, 49.71215],
+ [6.5046, 49.71227],
+ [6.42714, 49.66237],
+ [6.4399, 49.66025],
+ [6.44251, 49.65591],
+ [6.42178, 49.61809],
+ [6.39898, 49.60094],
+ [6.37941, 49.59526],
+ [6.37551, 49.58809],
+ [6.38443, 49.5801],
+ [6.38119, 49.57509],
+ [6.36909, 49.5783],
+ [6.35791, 49.57166],
+ [6.3849, 49.55817],
+ [6.38009, 49.54856],
+ [6.35855, 49.53296],
+ [6.35932, 49.52481],
+ [6.37076, 49.50545],
+ [6.37056, 49.45732],
+ [6.3334, 49.46493],
+ [6.32189, 49.47244],
+ [6.29503, 49.47928],
+ [6.28789, 49.48379],
+ [6.27191, 49.49995],
+ [6.24133, 49.50693],
+ [6.19669, 49.50331],
+ [6.17337, 49.50577],
+ [6.16086, 49.50085],
+ [6.1671, 49.49006],
+ [6.14018, 49.48525],
+ [6.12937, 49.48803],
+ [6.12725, 49.47081],
+ [6.1014, 49.46726],
+ [6.10483, 49.45076],
+ [6.08167, 49.45417],
+ [6.07722, 49.46139],
+ [6.05917, 49.46306],
+ [6.05222, 49.46028],
+ [6.04421, 49.44553],
+ [6.02529, 49.44703],
+ [6.02154, 49.45127],
+ [6.01574, 49.44885],
+ [5.99412, 49.45301],
+ [5.97657, 49.44885],
+ [5.97773, 49.45955],
+ [5.97232, 49.46087],
+ [5.96891, 49.48202],
+ [5.9616, 49.49026],
+ [5.91578, 49.49835],
+ [5.89033, 49.4948],
+ [5.86332, 49.50006],
+ [5.84897, 49.50826],
+ [5.84828, 49.51397],
+ [5.83641, 49.51817],
+ [5.83187, 49.52639],
+ [5.84308, 49.53081],
+ [5.83562, 49.54114],
+ [5.81625, 49.53325],
+ [5.8052, 49.54272],
+ [5.85943, 49.57158],
+ [5.86866, 49.587],
+ [5.86289, 49.58525],
+ [5.8511, 49.58379],
+ [5.84712, 49.58961],
+ [5.84565, 49.5981],
+ [5.8694, 49.6106],
+ [5.88182, 49.63815],
+ [5.89998, 49.63907],
+ [5.89934, 49.66239],
+ [5.85656, 49.67628],
+ [5.85628, 49.68211],
+ [5.8757, 49.71118],
+ [5.86481, 49.72331],
+ [5.84325, 49.71822],
+ [5.82191, 49.72128],
+ [5.82489, 49.73767],
+ [5.82073, 49.74878],
+ [5.78626, 49.79079],
+ [5.76517, 49.78961],
+ [5.75094, 49.79094],
+ [5.74159, 49.82126],
+ [5.74581, 49.82435],
+ [5.7372, 49.83353],
+ [5.74053, 49.84142],
+ [5.74701, 49.84048],
+ [5.74624, 49.84783],
+ [5.75399, 49.84878],
+ [5.74066, 49.85152],
+ [5.75229, 49.85922],
+ [5.74955, 49.87554],
+ [5.77567, 49.87438],
+ [5.77505, 49.88057],
+ [5.7346, 49.89341],
+ [5.73303, 49.90285],
+ [5.75783, 49.91737],
+ [5.76039, 49.93252],
+ [5.77073, 49.93711],
+ [5.76878, 49.94239],
+ [5.7688, 49.96104],
+ [5.78672, 49.96816],
+ [5.80524, 49.96677],
+ [5.80652, 49.97321],
+ [5.83129, 49.97995],
+ [5.83462, 49.98656],
+ [5.81806, 49.99936],
+ [5.81561, 50.01437],
+ [5.84792, 50.02809],
+ [5.86189, 50.04581],
+ [5.85087, 50.0563],
+ [5.85781, 50.07186],
+ [5.881, 50.08069],
+ [5.89196, 50.12041],
+ [5.95286, 50.13384],
+ [5.96175, 50.17631]
+ ]
+ ],
+ "terms_url": "https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts",
+ "terms_text": "Administration du Cadastre et de la Topographie",
+ "icon": "https://www.geoportail.lu/static/img/lion.png"
+ },
+ {
+ "id": "OS-historic-25k-OSM_Limited",
+ "name": "OS 1:25k historic (OSM)",
+ "type": "tms",
+ "template": "https://ooc.openstreetmap.org/os1/{zoom}/{x}/{y}.jpg",
+ "scaleExtent": [6, 17],
+ "polygon": [
+ [
+ [-6.45854, 49.90441],
+ [-6.3872, 49.98411],
+ [-6.22968, 49.98962],
+ [-6.21713, 49.86801],
+ [-6.45512, 49.85918],
+ [-6.45854, 49.90441]
+ ],
+ [
+ [-1.44951, 60.86341],
+ [-0.71671, 60.85451],
+ [-0.73497, 60.43598],
+ [-0.69388, 60.41682],
+ [-0.72584, 60.39427],
+ [-0.73954, 60.04847],
+ [-0.92674, 60.04619],
+ [-0.93815, 59.82662],
+ [-1.45865, 59.8312],
+ [-1.44552, 60.0536],
+ [-1.46321, 60.0536],
+ [-1.46435, 60.063],
+ [-1.57165, 60.06385],
+ [-1.56936, 60.179],
+ [-1.64356, 60.1807],
+ [-1.64356, 60.18922],
+ [-1.82162, 60.1895],
+ [-1.82048, 60.36155],
+ [-1.8416, 60.36973],
+ [-1.82162, 60.38328],
+ [-1.81799, 60.59343],
+ [-1.45317, 60.59343],
+ [-1.44951, 60.86341]
+ ],
+ [
+ [-4.90892, 54.42421],
+ [-4.2826, 54.44299],
+ [-4.25354, 54.02977],
+ [-4.87664, 54.02218],
+ [-4.90892, 54.42421]
+ ],
+ [
+ [-5.86674, 59.14446],
+ [-5.776, 59.14709],
+ [-5.772, 59.10141],
+ [-5.86218, 59.09906],
+ [-5.86674, 59.14446]
+ ],
+ [
+ [-1.70659, 59.57036],
+ [-1.55792, 59.56935],
+ [-1.55649, 59.49657],
+ [-1.70545, 59.49758],
+ [-1.70659, 59.57036]
+ ],
+ [
+ [-7.68658, 58.2941],
+ [-7.53306, 58.3007],
+ [-7.52564, 58.26469],
+ [-7.67973, 58.25779],
+ [-7.68658, 58.2941]
+ ],
+ [
+ [-4.53383, 59.03599],
+ [-4.48132, 59.03716],
+ [-4.47961, 59.01866],
+ [-4.53326, 59.01807],
+ [-4.53383, 59.03599]
+ ],
+ [
+ [-8.67107, 57.87699],
+ [-8.46732, 57.88973],
+ [-8.44678, 57.7907],
+ [-8.65109, 57.77792],
+ [-8.67107, 57.87699]
+ ],
+ [
+ [-5.23955, 50.35306],
+ [-5.79201, 50.33849],
+ [-5.76005, 49.9317],
+ [-4.65514, 49.95815],
+ [-4.67797, 50.28601],
+ [-4.24422, 50.28017],
+ [-4.24878, 50.20425],
+ [-3.38129, 50.20425],
+ [-3.42238, 50.51882],
+ [-3.11648, 50.52463],
+ [-3.12105, 50.65796],
+ [-2.67364, 50.66195],
+ [-2.59535, 50.63943],
+ [-2.5905, 50.57284],
+ [-2.47912, 50.57335],
+ [-2.47589, 50.50667],
+ [-2.39679, 50.50564],
+ [-2.40164, 50.57233],
+ [-1.04003, 50.57182],
+ [-1.03357, 50.70593],
+ [-0.5493, 50.70388],
+ [-0.54607, 50.78866],
+ [-0.09247, 50.7856],
+ [-0.08763, 50.71819],
+ [0.47897, 50.71206],
+ [0.48704, 50.81825],
+ [0.97615, 50.80499],
+ [0.99229, 51.01263],
+ [1.44912, 51.00044],
+ [1.47818, 51.40904],
+ [1.02296, 51.42716],
+ [1.03588, 51.76409],
+ [1.61054, 51.7501],
+ [1.64606, 52.156],
+ [1.72677, 52.15402],
+ [1.74937, 52.44818],
+ [1.78707, 52.48116],
+ [1.7591, 52.52251],
+ [1.79335, 52.96027],
+ [0.37981, 52.99585],
+ [0.38952, 53.25112],
+ [0.34786, 53.25112],
+ [0.32389, 53.28219],
+ [0.34615, 53.65385],
+ [0.12849, 53.65755],
+ [0.11658, 53.66747],
+ [0.13506, 54.06557],
+ [-0.06098, 54.06591],
+ [-0.04142, 54.47094],
+ [-0.56627, 54.47718],
+ [-0.55921, 54.65651],
+ [-1.16656, 54.66235],
+ [-1.16374, 54.84261],
+ [-1.33162, 54.84391],
+ [-1.32571, 55.24708],
+ [-1.52945, 55.24871],
+ [-1.52418, 55.65401],
+ [-1.76388, 55.65401],
+ [-1.77337, 55.97191],
+ [-2.16079, 55.9683],
+ [-2.15433, 56.06214],
+ [-2.45781, 56.05853],
+ [-2.41906, 56.64172],
+ [-2.09622, 56.64172],
+ [-2.0833, 57.00213],
+ [-1.92834, 57.01268],
+ [-1.9181, 57.35909],
+ [-1.75022, 57.36257],
+ [-1.76959, 57.76086],
+ [-3.69376, 57.75742],
+ [-3.70667, 57.98064],
+ [-3.5969, 57.97721],
+ [-3.60336, 58.12073],
+ [-3.02223, 58.13096],
+ [-3.02869, 58.54108],
+ [-2.8479, 58.53097],
+ [-2.86081, 58.84305],
+ [-2.67962, 58.8415],
+ [-2.68419, 58.88517],
+ [-2.63397, 58.90522],
+ [-2.67962, 58.93351],
+ [-2.68876, 59.02292],
+ [-2.36687, 59.02292],
+ [-2.37029, 59.26529],
+ [-2.3429, 59.2822],
+ [-2.37144, 59.29969],
+ [-2.37372, 59.37071],
+ [-2.3429, 59.38582],
+ [-2.37258, 59.40035],
+ [-2.37144, 59.42591],
+ [-3.07342, 59.42301],
+ [-3.07114, 59.34336],
+ [-3.1031, 59.33114],
+ [-3.07456, 59.31367],
+ [-3.07228, 59.2326],
+ [-3.38503, 59.14842],
+ [-3.37476, 58.93528],
+ [-3.56538, 58.93233],
+ [-3.55483, 58.69759],
+ [-5.28086, 58.66677],
+ [-5.25342, 58.35141],
+ [-5.50685, 58.34379],
+ [-5.47618, 58.03236],
+ [-5.8975, 58.02124],
+ [-5.8523, 57.61718],
+ [-6.13963, 57.61372],
+ [-6.15416, 57.74232],
+ [-6.29137, 57.73801],
+ [-6.33657, 58.13988],
+ [-6.11219, 58.14669],
+ [-6.14738, 58.51063],
+ [-6.29348, 58.54162],
+ [-6.84137, 58.29773],
+ [-7.00574, 58.29293],
+ [-7.10162, 58.20644],
+ [-7.25731, 58.17931],
+ [-7.25311, 58.10049],
+ [-7.40707, 58.09056],
+ [-7.39135, 57.79114],
+ [-7.79099, 57.77332],
+ [-7.76242, 57.54442],
+ [-7.6985, 57.14532],
+ [-7.79438, 57.13045],
+ [-7.71676, 56.73686],
+ [-7.01221, 56.76544],
+ [-6.97992, 56.54539],
+ [-7.06386, 56.54539],
+ [-7.04449, 56.35626],
+ [-6.50068, 56.38129],
+ [-6.44914, 55.97936],
+ [-6.56329, 55.96915],
+ [-6.53937, 55.70301],
+ [-6.55955, 55.69073],
+ [-6.53453, 55.67617],
+ [-6.52162, 55.57044],
+ [-5.89126, 55.59234],
+ [-5.85601, 55.23207],
+ [-5.22936, 55.2516],
+ [-5.18371, 54.62541],
+ [-3.6656, 54.65184],
+ [-3.64962, 54.432],
+ [-3.54004, 54.43067],
+ [-3.53091, 54.02902],
+ [-3.06977, 54.03036],
+ [-3.06757, 53.82214],
+ [-3.08049, 53.77399],
+ [-3.06192, 53.74775],
+ [-3.06112, 53.6737],
+ [-3.21447, 53.67084],
+ [-3.20577, 53.42262],
+ [-3.27996, 53.35522],
+ [-3.28967, 53.36084],
+ [-3.33275, 53.36493],
+ [-3.37613, 53.35403],
+ [-4.0889, 53.34331],
+ [-4.09455, 53.4612],
+ [-4.69741, 53.44486],
+ [-4.68828, 53.33186],
+ [-4.72024, 53.28958],
+ [-4.68371, 53.24862],
+ [-4.67687, 53.15426],
+ [-4.84808, 53.14468],
+ [-4.81783, 52.74403],
+ [-4.25458, 52.75589],
+ [-4.22888, 52.25488],
+ [-4.26076, 52.25364],
+ [-4.27246, 52.24326],
+ [-4.81363, 52.23009],
+ [-4.80792, 52.11389],
+ [-5.38891, 52.09917],
+ [-5.37179, 51.91297],
+ [-5.42087, 51.91015],
+ [-5.41402, 51.84532],
+ [-5.36836, 51.84744],
+ [-5.34668, 51.55953],
+ [-4.77368, 51.57585],
+ [-4.76569, 51.48851],
+ [-4.19154, 51.49704],
+ [-4.18698, 51.43447],
+ [-3.61512, 51.44443],
+ [-3.61055, 51.37465],
+ [-3.14941, 51.37893],
+ [-3.14941, 51.29193],
+ [-4.30387, 51.27459],
+ [-4.28612, 51.05087],
+ [-4.85433, 51.03666],
+ [-4.83722, 50.72128],
+ [-5.26183, 50.70827],
+ [-5.23955, 50.35306]
+ ],
+ [
+ [-2.15027, 60.17132],
+ [-2.00302, 60.16961],
+ [-2.00131, 60.0997],
+ [-2.14855, 60.10112],
+ [-2.15027, 60.17132]
+ ],
+ [
+ [-6.2086, 59.11635],
+ [-6.12299, 59.11664],
+ [-6.12185, 59.0715],
+ [-6.20974, 59.0715],
+ [-6.2086, 59.11635]
+ ],
+ [
+ [-4.41596, 59.0889],
+ [-4.4212, 59.07708],
+ [-4.39719, 59.07791],
+ [-4.39134, 59.08973],
+ [-4.41596, 59.0889]
+ ]
+ ]
+ },
+ {
+ "id": "OS-New_Popular_Edition-historic",
+ "name": "OS New Popular Edition historic",
+ "type": "tms",
+ "template": "https://ooc.openstreetmap.org/npe/{zoom}/{x}/{y}.png",
+ "scaleExtent": [6, 22],
+ "polygon": [
+ [
+ [-3.68466, 55.23744],
+ [-3.65106, 54.42892],
+ [-3.54463, 54.43072],
+ [-3.52815, 54.02593],
+ [-3.07016, 54.03137],
+ [-3.06123, 53.6717],
+ [-3.21298, 53.67048],
+ [-3.20371, 53.35568],
+ [-4.10424, 53.34297],
+ [-4.11042, 53.46005],
+ [-4.71124, 53.44799],
+ [-4.69339, 53.15171],
+ [-4.84307, 53.1476],
+ [-4.81595, 52.74378],
+ [-4.25342, 52.75541],
+ [-4.22733, 52.24378],
+ [-4.81303, 52.23117],
+ [-4.80754, 52.11452],
+ [-5.38913, 52.09892],
+ [-5.3493, 51.56085],
+ [-4.77252, 51.57622],
+ [-4.76772, 51.48652],
+ [-4.19299, 51.49806],
+ [-4.18956, 51.43518],
+ [-3.61278, 51.44502],
+ [-3.61072, 51.37307],
+ [-3.15067, 51.37864],
+ [-3.14723, 51.28984],
+ [-4.29462, 51.2718],
+ [-4.28363, 51.04744],
+ [-4.85423, 51.03406],
+ [-4.83707, 50.76556],
+ [-5.2621, 50.75427],
+ [-5.23395, 50.34984],
+ [-5.79562, 50.33319],
+ [-5.76228, 49.92913],
+ [-4.64717, 49.96094],
+ [-4.66914, 50.2753],
+ [-4.25166, 50.2832],
+ [-4.24617, 50.19361],
+ [-3.40159, 50.20679],
+ [-3.41395, 50.52041],
+ [-3.13105, 50.52391],
+ [-3.1338, 50.66078],
+ [-2.66963, 50.66252],
+ [-2.66688, 50.5719],
+ [-1.04228, 50.56929],
+ [-1.04502, 50.70429],
+ [-0.54652, 50.69994],
+ [-0.54103, 50.79031],
+ [-0.08784, 50.78424],
+ [-0.08887, 50.72211],
+ [0.47693, 50.70907],
+ [0.48242, 50.81939],
+ [0.98024, 50.8068],
+ [0.99328, 51.01333],
+ [1.44784, 51.00036],
+ [1.47805, 51.40478],
+ [1.018, 51.41634],
+ [1.04272, 51.76742],
+ [1.6195, 51.75084],
+ [1.65246, 52.15456],
+ [1.72662, 52.15245],
+ [1.79529, 52.9594],
+ [0.60396, 52.99123],
+ [0.60327, 52.97222],
+ [0.38148, 52.97883],
+ [0.39625, 53.24796],
+ [0.31934, 53.24961],
+ [0.34269, 53.65319],
+ [0.11609, 53.65726],
+ [0.13738, 54.06181],
+ [-0.06243, 54.06584],
+ [-0.04183, 54.46924],
+ [-0.56781, 54.47722],
+ [-0.56163, 54.65715],
+ [-1.18098, 54.66271],
+ [-1.17755, 54.84183],
+ [-1.33342, 54.84381],
+ [-1.32655, 55.24743],
+ [-1.53117, 55.24821],
+ [-1.52636, 55.6528],
+ [-1.76394, 55.6528],
+ [-1.76257, 55.96765],
+ [-2.40321, 55.96727],
+ [-2.39772, 55.56243],
+ [-2.16151, 55.56282],
+ [-2.15808, 55.2486],
+ [-2.92158, 55.24571],
+ [-3.68466, 55.23744]
+ ]
+ ]
+ },
+ {
+ "id": "OS-OpenData_Locator",
+ "name": "OS OpenData Locator",
+ "type": "tms",
+ "template": "http://tiles.itoworld.com/os_locator/{zoom}/{x}/{y}.png",
+ "polygon": [
+ [
+ [-0.88639, 61.11666],
+ [-9.24009, 57.92465],
+ [-6.61235, 55.46835],
+ [-6.1039, 55.40191],
+ [-5.61358, 55.06607],
+ [-5.40088, 54.90562],
+ [-5.29371, 54.77201],
+ [-5.11832, 54.5911],
+ [-4.92368, 54.38599],
+ [-4.94067, 53.59884],
+ [-5.44172, 52.27725],
+ [-6.03376, 51.6012],
+ [-7.54473, 49.33762],
+ [-2.59721, 50.2588],
+ [0.65674, 50.64047],
+ [1.32419, 50.83256],
+ [1.87586, 51.19234],
+ [2.05883, 52.88863],
+ [-1.61452, 56.47933],
+ [-1.21085, 57.64972],
+ [-1.69525, 59.08903],
+ [0.21543, 60.43058],
+ [-0.88639, 61.11666]
+ ]
+ ],
+ "overlay": true
+ },
+ {
+ "id": "OS-OpenData_StreetView",
+ "name": "OS OpenData StreetView",
+ "type": "tms",
+ "template": "https://{switch:a,b,c}.os.openstreetmap.org/sv/{zoom}/{x}/{y}.png",
+ "scaleExtent": [1, 18],
+ "polygon": [
+ [
+ [-5.82929, 50.02297],
+ [-5.82929, 50.25482],
+ [-5.37336, 50.25482],
+ [-5.37336, 50.35306],
+ [-5.1756, 50.35306],
+ [-5.1756, 50.59254],
+ [-4.99707, 50.59254],
+ [-4.99707, 50.69356],
+ [-4.79657, 50.69356],
+ [-4.79657, 50.78221],
+ [-4.69495, 50.78221],
+ [-4.69495, 50.96074],
+ [-4.60431, 50.96074],
+ [-4.60431, 51.06921],
+ [-4.37922, 51.06921],
+ [-4.37922, 51.25218],
+ [-3.90393, 51.25218],
+ [-3.90393, 51.2917],
+ [-3.71717, 51.2917],
+ [-3.71717, 51.2453],
+ [-3.14862, 51.2453],
+ [-3.14862, 51.36207],
+ [-3.74463, 51.36207],
+ [-3.74463, 51.43404],
+ [-3.82978, 51.43404],
+ [-3.82978, 51.52982],
+ [-4.08521, 51.52982],
+ [-4.08521, 51.49393],
+ [-4.37922, 51.49393],
+ [-4.37922, 51.54272],
+ [-5.14442, 51.54272],
+ [-5.14442, 51.6296],
+ [-5.73871, 51.6296],
+ [-5.73871, 51.77404],
+ [-5.50954, 51.77404],
+ [-5.50954, 51.98026],
+ [-5.1988, 51.98026],
+ [-5.1988, 52.09734],
+ [-4.88806, 52.09734],
+ [-4.88806, 52.18316],
+ [-4.49575, 52.18316],
+ [-4.49575, 52.29257],
+ [-4.30154, 52.29257],
+ [-4.30154, 52.36853],
+ [-4.18112, 52.36853],
+ [-4.18112, 52.79337],
+ [-4.44137, 52.79337],
+ [-4.44137, 52.73696],
+ [-4.85698, 52.73696],
+ [-4.85698, 52.93173],
+ [-4.7288, 52.93173],
+ [-4.7288, 53.50386],
+ [-4.15782, 53.50386],
+ [-4.15782, 53.41135],
+ [-3.31105, 53.41135],
+ [-3.31105, 53.50386],
+ [-3.23337, 53.50386],
+ [-3.23337, 54.01592],
+ [-3.39262, 54.01592],
+ [-3.39262, 54.1981],
+ [-3.55964, 54.1981],
+ [-3.55964, 54.43373],
+ [-3.7189, 54.43373],
+ [-3.7189, 54.7219],
+ [-4.30154, 54.7219],
+ [-4.30154, 54.61407],
+ [-5.04731, 54.61407],
+ [-5.04731, 54.75329],
+ [-5.22987, 54.75329],
+ [-5.22987, 55.21908],
+ [-5.65326, 55.21908],
+ [-5.65326, 55.25009],
+ [-5.89796, 55.25009],
+ [-5.89796, 55.48225],
+ [-6.59332, 55.48225],
+ [-6.59332, 56.30134],
+ [-7.17277, 56.30134],
+ [-7.17277, 56.56018],
+ [-6.81717, 56.56018],
+ [-6.81717, 56.69917],
+ [-6.53153, 56.69917],
+ [-6.53153, 56.9067],
+ [-6.81168, 56.9067],
+ [-6.81168, 57.37166],
+ [-6.8721, 57.37166],
+ [-6.8721, 57.55189],
+ [-7.09732, 57.55189],
+ [-7.09732, 57.24111],
+ [-7.17423, 57.24111],
+ [-7.17423, 56.9067],
+ [-7.37198, 56.9067],
+ [-7.37198, 56.80759],
+ [-7.5203, 56.80759],
+ [-7.5203, 56.71425],
+ [-7.83068, 56.71425],
+ [-7.83068, 56.89946],
+ [-7.64941, 56.89946],
+ [-7.64941, 57.47396],
+ [-7.83068, 57.47396],
+ [-7.83068, 57.79156],
+ [-7.47362, 57.79156],
+ [-7.47362, 58.08606],
+ [-7.18798, 58.08606],
+ [-7.18798, 58.3672],
+ [-6.80346, 58.3672],
+ [-6.80346, 58.41558],
+ [-6.63866, 58.41558],
+ [-6.63866, 58.46733],
+ [-6.51781, 58.46733],
+ [-6.51781, 58.56256],
+ [-6.05362, 58.56256],
+ [-6.05362, 58.15688],
+ [-6.14701, 58.15688],
+ [-6.14701, 58.11059],
+ [-6.27998, 58.11059],
+ [-6.27998, 57.71227],
+ [-6.15913, 57.71227],
+ [-6.15913, 57.66676],
+ [-5.93391, 57.66676],
+ [-5.93391, 57.88925],
+ [-5.80643, 57.88925],
+ [-5.80643, 57.96218],
+ [-5.61417, 57.96218],
+ [-5.61417, 58.09112],
+ [-5.49082, 58.09112],
+ [-5.49082, 58.37333],
+ [-5.31991, 58.37333],
+ [-5.31991, 58.75015],
+ [-3.572, 58.75015],
+ [-3.572, 59.20918],
+ [-3.19445, 59.20918],
+ [-3.19445, 59.47592],
+ [-2.24358, 59.47592],
+ [-2.24358, 59.13887],
+ [-2.4611, 59.13887],
+ [-2.4611, 58.81859],
+ [-2.74077, 58.81859],
+ [-2.74077, 58.58047],
+ [-2.91167, 58.58047],
+ [-2.91167, 58.11575],
+ [-3.48654, 58.11575],
+ [-3.48654, 57.74039],
+ [-1.71532, 57.74039],
+ [-1.71532, 57.22256],
+ [-1.97945, 57.22256],
+ [-1.97945, 56.87607],
+ [-2.1659, 56.87607],
+ [-2.1659, 56.63332],
+ [-2.36011, 56.63332],
+ [-2.36011, 56.04775],
+ [-1.97945, 56.04775],
+ [-1.97945, 55.86509],
+ [-1.4745, 55.86509],
+ [-1.4745, 55.24999],
+ [-1.3222, 55.24999],
+ [-1.3222, 54.82217],
+ [-1.055, 54.82217],
+ [-1.055, 54.67466],
+ [-0.66188, 54.67466],
+ [-0.66188, 54.55275],
+ [-0.32476, 54.55275],
+ [-0.32476, 54.28652],
+ [0.00928, 54.28652],
+ [0.00928, 53.79385],
+ [0.2082, 53.79385],
+ [0.2082, 53.52177],
+ [0.41635, 53.52177],
+ [0.41635, 53.02989],
+ [1.42734, 53.02989],
+ [1.42734, 52.92021],
+ [1.83339, 52.92021],
+ [1.83339, 52.04249],
+ [1.52355, 52.04249],
+ [1.52355, 51.82613],
+ [1.2697, 51.82613],
+ [1.2697, 51.69675],
+ [1.11665, 51.69675],
+ [1.11665, 51.44035],
+ [1.52355, 51.44035],
+ [1.52355, 51.33318],
+ [1.45076, 51.33318],
+ [1.45076, 51.02076],
+ [1.06999, 51.02076],
+ [1.06999, 50.90084],
+ [0.77881, 50.90084],
+ [0.77881, 50.72984],
+ [-0.7256, 50.72984],
+ [-0.7256, 50.70384],
+ [-1.00744, 50.70384],
+ [-1.00744, 50.57363],
+ [-2.36253, 50.57363],
+ [-2.36253, 50.48464],
+ [-2.49878, 50.48464],
+ [-2.49878, 50.57363],
+ [-3.40964, 50.57363],
+ [-3.40964, 50.20578],
+ [-3.69224, 50.20578],
+ [-3.69224, 50.13477],
+ [-5.00547, 50.13477],
+ [-5.00547, 49.94745],
+ [-5.28395, 49.94745],
+ [-5.28395, 50.02297],
+ [-5.82929, 50.02297]
+ ],
+ [
+ [-6.45807, 49.86736],
+ [-6.45807, 49.94999],
+ [-6.39788, 49.94999],
+ [-6.39788, 50.00538],
+ [-6.17996, 50.00538],
+ [-6.17996, 49.91686],
+ [-6.25402, 49.91686],
+ [-6.25402, 49.86736],
+ [-6.45807, 49.86736]
+ ],
+ [
+ [-5.83432, 49.93216],
+ [-5.83432, 49.97546],
+ [-5.76833, 49.97546],
+ [-5.76833, 49.93216],
+ [-5.83432, 49.93216]
+ ],
+ [
+ [-1.94838, 60.68857],
+ [-1.94838, 60.30588],
+ [-1.75431, 60.30588],
+ [-1.75431, 60.12844],
+ [-1.57549, 60.12844],
+ [-1.57549, 59.79792],
+ [-1.0317, 59.79792],
+ [-1.0317, 60.03545],
+ [-0.66269, 60.03545],
+ [-0.66269, 60.91039],
+ [-1.10344, 60.91039],
+ [-1.10344, 60.804],
+ [-1.35063, 60.804],
+ [-1.35063, 60.68857],
+ [-1.94838, 60.68857]
+ ],
+ [
+ [-2.20338, 60.19686],
+ [-2.20338, 60.09294],
+ [-1.9864, 60.09294],
+ [-1.9864, 60.19686],
+ [-2.20338, 60.19686]
+ ],
+ [
+ [-1.75431, 59.56983],
+ [-1.75431, 59.46394],
+ [-1.53733, 59.46394],
+ [-1.53733, 59.56983],
+ [-1.75431, 59.56983]
+ ],
+ [
+ [-4.5586, 59.13705],
+ [-4.5586, 58.95691],
+ [-4.2867, 58.95691],
+ [-4.2867, 59.13705],
+ [-4.5586, 59.13705]
+ ],
+ [
+ [-6.27877, 59.20257],
+ [-6.27877, 59.02278],
+ [-5.66506, 59.02278],
+ [-5.66506, 59.20257],
+ [-6.27877, 59.20257]
+ ],
+ [
+ [-8.71635, 57.94406],
+ [-8.71635, 57.73059],
+ [-8.35929, 57.73059],
+ [-8.35929, 57.94406],
+ [-8.71635, 57.94406]
+ ],
+ [
+ [-7.6077, 50.4021],
+ [-7.6077, 50.26887],
+ [-7.39072, 50.26887],
+ [-7.39072, 50.4021],
+ [-7.6077, 50.4021]
+ ],
+ [
+ [-7.73043, 58.35799],
+ [-7.73043, 58.24831],
+ [-7.51345, 58.24831],
+ [-7.51345, 58.35799],
+ [-7.73043, 58.35799]
+ ]
+ ]
+ },
+ {
+ "id": "OS-Scottish_Popular-historic",
+ "name": "OS Scottish Popular historic",
+ "type": "tms",
+ "template": "https://ooc.openstreetmap.org/npescotland/{zoom}/{x}/{y}.jpg",
+ "scaleExtent": [6, 15],
+ "polygon": [
+ [
+ [-6.37546, 57.1045],
+ [-6.12998, 57.11183],
+ [-6.12586, 56.94143],
+ [-6.26045, 56.93892],
+ [-6.26045, 56.83765],
+ [-6.24259, 56.65806],
+ [-6.3552, 56.65655],
+ [-6.37649, 56.79029],
+ [-7.02812, 56.76396],
+ [-6.99636, 56.54246],
+ [-7.04391, 56.53937],
+ [-7.03206, 56.44201],
+ [-6.98331, 56.44353],
+ [-6.97593, 56.36063],
+ [-6.45271, 56.37964],
+ [-6.44035, 56.2013],
+ [-6.19315, 56.21199],
+ [-6.18354, 56.12483],
+ [-6.36379, 56.11641],
+ [-6.36173, 55.98258],
+ [-6.48944, 55.97912],
+ [-6.47777, 55.84134],
+ [-6.55467, 55.8371],
+ [-6.53545, 55.66049],
+ [-6.45442, 55.66087],
+ [-6.44412, 55.57285],
+ [-6.19985, 55.57266],
+ [-5.96845, 55.58857],
+ [-5.98562, 55.7686],
+ [-5.90665, 55.77169],
+ [-5.88949, 55.59284],
+ [-5.80983, 55.594],
+ [-5.79335, 55.41395],
+ [-5.827, 55.41395],
+ [-5.80915, 55.24247],
+ [-5.61826, 55.24873],
+ [-5.62101, 55.26713],
+ [-5.46239, 55.27026],
+ [-5.48642, 55.514],
+ [-5.43836, 55.51516],
+ [-5.42943, 55.42681],
+ [-5.24129, 55.43071],
+ [-5.19464, 54.80351],
+ [-5.07105, 54.80668],
+ [-5.05221, 54.62471],
+ [-4.3223, 54.65173],
+ [-4.33123, 54.7319],
+ [-4.06786, 54.73697],
+ [-4.06786, 54.76471],
+ [-3.55699, 54.77342],
+ [-3.55837, 54.83754],
+ [-2.42098, 54.84671],
+ [-2.42647, 55.25265],
+ [-2.03097, 55.25265],
+ [-2.01449, 55.56606],
+ [-1.76455, 55.56606],
+ [-1.76455, 55.9724],
+ [-2.35026, 55.96548],
+ [-2.5796, 56.06527],
+ [-2.58234, 56.37071],
+ [-2.65032, 56.36919],
+ [-2.65581, 56.50585],
+ [-2.48965, 56.50509],
+ [-2.42785, 56.55356],
+ [-2.42373, 56.73026],
+ [-2.1628, 56.73177],
+ [-2.17104, 56.99301],
+ [-2.00075, 56.99301],
+ [-1.98479, 57.3159],
+ [-1.83476, 57.31553],
+ [-1.83441, 57.36074],
+ [-1.75167, 57.36111],
+ [-1.74893, 57.63046],
+ [-1.83613, 57.63009],
+ [-1.83544, 57.70171],
+ [-2.00436, 57.70207],
+ [-2.00367, 57.71968],
+ [-3.22281, 57.71418],
+ [-3.22629, 57.76157],
+ [-3.51331, 57.77622],
+ [-3.50914, 57.71051],
+ [-3.84766, 57.70611],
+ [-3.85182, 57.76853],
+ [-3.79925, 57.76989],
+ [-3.80474, 57.88578],
+ [-3.85556, 57.88651],
+ [-3.85937, 57.97558],
+ [-3.79513, 57.97656],
+ [-3.79483, 58.03052],
+ [-3.69733, 58.03161],
+ [-3.69458, 58.06722],
+ [-3.52391, 58.07437],
+ [-3.52978, 58.16007],
+ [-3.35774, 58.16286],
+ [-3.3483, 58.28742],
+ [-3.07638, 58.29121],
+ [-3.03004, 58.43744],
+ [-3.01768, 58.65814],
+ [-2.85837, 58.66028],
+ [-2.86524, 58.7943],
+ [-2.75812, 58.79715],
+ [-2.76636, 58.87461],
+ [-2.6208, 58.88668],
+ [-2.62766, 58.97527],
+ [-2.54114, 58.97668],
+ [-2.54217, 59.0841],
+ [-2.52363, 59.08375],
+ [-2.52913, 59.1574],
+ [-2.43849, 59.15705],
+ [-2.4378, 59.246],
+ [-2.36914, 59.24705],
+ [-2.3688, 59.40748],
+ [-2.52947, 59.40748],
+ [-2.52741, 59.33436],
+ [-2.70319, 59.33576],
+ [-2.70525, 59.40608],
+ [-3.12891, 59.40433],
+ [-3.12411, 59.15951],
+ [-3.40288, 59.1574],
+ [-3.39464, 58.9689],
+ [-3.4276, 58.96961],
+ [-3.42572, 58.88526],
+ [-3.45215, 58.87071],
+ [-3.51017, 58.86911],
+ [-3.50708, 58.78826],
+ [-3.38555, 58.79004],
+ [-3.3828, 58.6999],
+ [-3.4494, 58.69847],
+ [-3.45078, 58.65385],
+ [-3.50159, 58.65421],
+ [-3.5009, 58.62705],
+ [-3.72612, 58.62383],
+ [-3.72475, 58.60595],
+ [-4.6476, 58.5895],
+ [-4.65996, 58.67171],
+ [-5.10697, 58.66135],
+ [-5.09804, 58.58091],
+ [-5.23743, 58.57769],
+ [-5.22455, 58.26305],
+ [-5.4127, 58.25818],
+ [-5.39965, 58.12245],
+ [-5.53286, 58.11991],
+ [-5.52393, 57.99494],
+ [-5.55346, 57.99422],
+ [-5.54728, 57.93995],
+ [-5.85696, 57.93157],
+ [-5.83181, 57.73361],
+ [-5.86374, 57.73224],
+ [-5.85773, 57.66096],
+ [-6.19624, 57.64975],
+ [-6.20242, 57.72353],
+ [-6.41666, 57.7162],
+ [-6.42421, 57.75945],
+ [-6.4764, 57.75725],
+ [-6.46884, 57.71326],
+ [-6.53339, 57.71216],
+ [-6.52721, 57.6391],
+ [-6.692, 57.63395],
+ [-6.68102, 57.54341],
+ [-6.78195, 57.53826],
+ [-6.75311, 57.31608],
+ [-6.50592, 57.32498],
+ [-6.49768, 57.28084],
+ [-6.4812, 57.27824],
+ [-6.47159, 57.19203],
+ [-6.38644, 57.19352],
+ [-6.37546, 57.1045]
+ ],
+ [
+ [-7.65043, 56.77461],
+ [-7.40667, 56.79304],
+ [-7.41972, 56.88281],
+ [-7.38676, 56.90268],
+ [-7.25836, 56.91056],
+ [-7.24806, 57.07141],
+ [-7.11485, 57.077],
+ [-7.16772, 57.43466],
+ [-7.0352, 57.44094],
+ [-7.05236, 57.69026],
+ [-6.86834, 57.6976],
+ [-6.87315, 57.71631],
+ [-6.70286, 57.72217],
+ [-6.71591, 57.81117],
+ [-6.53188, 57.81958],
+ [-6.53875, 57.88133],
+ [-6.22015, 57.89265],
+ [-6.24143, 58.09935],
+ [-6.12676, 58.10152],
+ [-6.17758, 58.53105],
+ [-6.46734, 58.52029],
+ [-6.4591, 58.45102],
+ [-6.63145, 58.44455],
+ [-6.6239, 58.39169],
+ [-6.79212, 58.38485],
+ [-6.78869, 58.34956],
+ [-6.90885, 58.34415],
+ [-6.89718, 58.25503],
+ [-7.20136, 58.24166],
+ [-7.14094, 57.83201],
+ [-7.37509, 57.82104],
+ [-7.36822, 57.69503],
+ [-7.6573, 57.68292],
+ [-7.67652, 57.80715],
+ [-7.79257, 57.80202],
+ [-7.77327, 57.67734],
+ [-7.70756, 57.68024],
+ [-7.69376, 57.59088],
+ [-7.75947, 57.58797],
+ [-7.74587, 57.49965],
+ [-7.51241, 57.5085],
+ [-7.47911, 57.29468],
+ [-7.52855, 57.2932],
+ [-7.51276, 57.05871],
+ [-7.61163, 57.05386],
+ [-7.59859, 56.87493],
+ [-7.66725, 56.87268],
+ [-7.65043, 56.77461]
+ ],
+ [
+ [-1.46238, 59.82831],
+ [-1.21519, 59.83107],
+ [-1.21519, 59.96194],
+ [-1.10533, 59.96056],
+ [-1.0986, 60.09498],
+ [-0.97632, 60.09346],
+ [-0.96352, 60.3476],
+ [-0.74028, 60.34484],
+ [-0.7147, 60.84722],
+ [-1.08215, 60.85901],
+ [-1.08455, 60.76944],
+ [-1.21296, 60.77011],
+ [-1.21579, 60.68079],
+ [-1.23364, 60.68113],
+ [-1.23467, 60.5909],
+ [-1.27132, 60.59191],
+ [-1.27338, 60.64581],
+ [-1.45466, 60.64648],
+ [-1.45397, 60.59224],
+ [-1.6373, 60.59292],
+ [-1.63954, 60.3507],
+ [-1.73172, 60.35095],
+ [-1.73172, 60.18067],
+ [-1.64177, 60.17931],
+ [-1.64177, 60.1448],
+ [-1.46393, 60.14344],
+ [-1.46238, 59.82831]
+ ],
+ [
+ [-6.21496, 56.97437],
+ [-6.22525, 57.06445],
+ [-6.29117, 57.06184],
+ [-6.29237, 57.08062],
+ [-6.62162, 57.06943],
+ [-6.61338, 57.00629],
+ [-6.46163, 57.01302],
+ [-6.4582, 56.96776],
+ [-6.21496, 56.97437]
+ ],
+ [
+ [-2.12774, 60.10855],
+ [-2.12803, 60.16207],
+ [-2.00203, 60.16224],
+ [-2.00174, 60.10872],
+ [-2.12774, 60.10855]
+ ],
+ [
+ [-6.68977, 56.95804],
+ [-6.69228, 56.9759],
+ [-6.65984, 56.97726],
+ [-6.65733, 56.9594],
+ [-6.68977, 56.95804]
+ ],
+ [
+ [-7.66365, 58.25846],
+ [-7.66844, 58.28502],
+ [-7.54896, 58.29098],
+ [-7.54417, 58.26442],
+ [-7.66365, 58.25846]
+ ],
+ [
+ [-8.65104, 57.78885],
+ [-8.66674, 57.875],
+ [-8.48272, 57.88449],
+ [-8.46702, 57.79836],
+ [-8.65104, 57.78885]
+ ]
+ ]
+ },
+ {
+ "id": "al_palestina",
+ "name": "Palestina AL",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Palestina&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-37.28907, -9.71916],
+ [-37.28904, -9.71114],
+ [-37.28911, -9.7022],
+ [-37.28915, -9.69175],
+ [-37.28919, -9.68886],
+ [-37.28927, -9.68069],
+ [-37.28926, -9.67732],
+ [-37.28936, -9.66999],
+ [-37.28936, -9.66599],
+ [-37.28931, -9.66133],
+ [-37.28941, -9.65526],
+ [-37.28946, -9.64556],
+ [-37.2895, -9.63489],
+ [-37.28954, -9.62926],
+ [-37.2964, -9.62885],
+ [-37.31188, -9.62897],
+ [-37.32762, -9.62914],
+ [-37.33181, -9.62919],
+ [-37.34338, -9.62917],
+ [-37.35876, -9.62923],
+ [-37.37175, -9.6293],
+ [-37.37839, -9.62913],
+ [-37.38051, -9.62922],
+ [-37.38061, -9.63143],
+ [-37.38054, -9.63785],
+ [-37.38043, -9.63895],
+ [-37.38053, -9.64147],
+ [-37.38051, -9.64876],
+ [-37.3805, -9.6543],
+ [-37.38043, -9.656],
+ [-37.38024, -9.66028],
+ [-37.38022, -9.66551],
+ [-37.38019, -9.67054],
+ [-37.38016, -9.67896],
+ [-37.38013, -9.68781],
+ [-37.38009, -9.70116],
+ [-37.38003, -9.71053],
+ [-37.3801, -9.71743],
+ [-37.38005, -9.71959],
+ [-37.37932, -9.71954],
+ [-37.37392, -9.71956],
+ [-37.36582, -9.71945],
+ [-37.35849, -9.71946],
+ [-37.35334, -9.71938],
+ [-37.34414, -9.71937],
+ [-37.33423, -9.71923],
+ [-37.32933, -9.71927],
+ [-37.3218, -9.71924],
+ [-37.31983, -9.71927],
+ [-37.31094, -9.7192],
+ [-37.29589, -9.71921],
+ [-37.28907, -9.71916]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "palmeira_dos_indios",
+ "name": "Palmeira dos Indios AL",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Palmeira%20dos%20Indios&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-36.58664, -9.46124],
+ [-36.58665, -9.45851],
+ [-36.58619, -9.41968],
+ [-36.58604, -9.41452],
+ [-36.58596, -9.40593],
+ [-36.58585, -9.39509],
+ [-36.58579, -9.39163],
+ [-36.58565, -9.38983],
+ [-36.58549, -9.38249],
+ [-36.58529, -9.37965],
+ [-36.58511, -9.37744],
+ [-36.58503, -9.37059],
+ [-36.5889, -9.37058],
+ [-36.59064, -9.37065],
+ [-36.59389, -9.3706],
+ [-36.60037, -9.37073],
+ [-36.61046, -9.37049],
+ [-36.62288, -9.37021],
+ [-36.63377, -9.37002],
+ [-36.63835, -9.36986],
+ [-36.64743, -9.36997],
+ [-36.65141, -9.36994],
+ [-36.65534, -9.36972],
+ [-36.65647, -9.36974],
+ [-36.66111, -9.37024],
+ [-36.66276, -9.37026],
+ [-36.66704, -9.36973],
+ [-36.67052, -9.36966],
+ [-36.67325, -9.36966],
+ [-36.67602, -9.36987],
+ [-36.67593, -9.3726],
+ [-36.67597, -9.37679],
+ [-36.67639, -9.38138],
+ [-36.67654, -9.38464],
+ [-36.67663, -9.39265],
+ [-36.67675, -9.39829],
+ [-36.67689, -9.40875],
+ [-36.67707, -9.41887],
+ [-36.67717, -9.43179],
+ [-36.67724, -9.43395],
+ [-36.67718, -9.43753],
+ [-36.67728, -9.44311],
+ [-36.6773, -9.44933],
+ [-36.67741, -9.45528],
+ [-36.6774, -9.45938],
+ [-36.67735, -9.46017],
+ [-36.67568, -9.46021],
+ [-36.66625, -9.4603],
+ [-36.66224, -9.4603],
+ [-36.65736, -9.46042],
+ [-36.6504, -9.46047],
+ [-36.63543, -9.46065],
+ [-36.61979, -9.46083],
+ [-36.61433, -9.46083],
+ [-36.61029, -9.46097],
+ [-36.60647, -9.46097],
+ [-36.60186, -9.46099],
+ [-36.59426, -9.46112],
+ [-36.58664, -9.46124]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "Pangasinan_Bulacan_HiRes",
+ "name": "Pangasinán/Bulacan (Philippines HiRes)",
+ "type": "tms",
+ "template": "https://gravitystorm.dev.openstreetmap.org/imagery/philippines/{zoom}/{x}/{y}.png",
+ "scaleExtent": [12, 19],
+ "polygon": [
+ [
+ [120.33659, 15.98577],
+ [120.44599, 15.984],
+ [120.44613, 15.97446],
+ [120.47646, 15.97459],
+ [120.59425, 15.94683],
+ [120.59806, 16.09079],
+ [120.59654, 16.198],
+ [120.36854, 16.21853],
+ [120.34758, 16.04231],
+ [120.33659, 15.98577]
+ ],
+ [
+ [120.8268, 15.3658],
+ [121.2684, 15.2602],
+ [121.2699, 14.7025],
+ [120.695, 14.8423],
+ [120.8268, 15.3658]
+ ]
+ ]
+ },
+ {
+ "id": "pao_de_acucar",
+ "name": "Pão de Açucar AL",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Pao%20de%20Acucar&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-37.39003, -9.78589],
+ [-37.39019, -9.7762],
+ [-37.38993, -9.76575],
+ [-37.38991, -9.75256],
+ [-37.39015, -9.74102],
+ [-37.39003, -9.73201],
+ [-37.39012, -9.72254],
+ [-37.39015, -9.71289],
+ [-37.39019, -9.70341],
+ [-37.3902, -9.69548],
+ [-37.40377, -9.6955],
+ [-37.41728, -9.6956],
+ [-37.43224, -9.69569],
+ [-37.44319, -9.69573],
+ [-37.44723, -9.69582],
+ [-37.45682, -9.69585],
+ [-37.47062, -9.69591],
+ [-37.47373, -9.69591],
+ [-37.47586, -9.69604],
+ [-37.48128, -9.69605],
+ [-37.48131, -9.6989],
+ [-37.48122, -9.70087],
+ [-37.48121, -9.70239],
+ [-37.48135, -9.70545],
+ [-37.48138, -9.71046],
+ [-37.48134, -9.71617],
+ [-37.4812, -9.71875],
+ [-37.48125, -9.72035],
+ [-37.48136, -9.72134],
+ [-37.48134, -9.7241],
+ [-37.4813, -9.72506],
+ [-37.48103, -9.72732],
+ [-37.48102, -9.73088],
+ [-37.48127, -9.73462],
+ [-37.48131, -9.73638],
+ [-37.48131, -9.73893],
+ [-37.48131, -9.74388],
+ [-37.4813, -9.74989],
+ [-37.48122, -9.75315],
+ [-37.48102, -9.75855],
+ [-37.48084, -9.7642],
+ [-37.48085, -9.76526],
+ [-37.48094, -9.76675],
+ [-37.48093, -9.76881],
+ [-37.48084, -9.7721],
+ [-37.48087, -9.77486],
+ [-37.48076, -9.77993],
+ [-37.48081, -9.7863],
+ [-37.46382, -9.78623],
+ [-37.45353, -9.7862],
+ [-37.43979, -9.78611],
+ [-37.42998, -9.78607],
+ [-37.4208, -9.786],
+ [-37.40853, -9.78596],
+ [-37.39545, -9.78593],
+ [-37.39003, -9.78589]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "PCN-Italy-2006",
+ "name": "PCN 2006 - Italy",
+ "type": "wms",
+ "template": "http://wms.pcn.minambiente.it/ogc?map=/ms_ogc/WMS_v1.3/raster/ortofoto_colore_06.map&FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=OI.ORTOIMMAGINI.2006.33,OI.ORTOIMMAGINI.2006.32&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2006-01-01T00:00:00.000Z",
+ "startDate": "2006-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [7.54795, 43.73118],
+ [8.10697, 43.86701],
+ [8.73593, 44.38944],
+ [10.18338, 43.85116],
+ [9.55016, 43.13605],
+ [10.27725, 42.27515],
+ [11.69748, 42.08118],
+ [12.90059, 40.84897],
+ [14.97466, 40.20869],
+ [16.04773, 38.8953],
+ [13.1086, 38.74113],
+ [11.77717, 37.93605],
+ [14.40624, 36.74299],
+ [15.13467, 36.59364],
+ [15.42867, 37.027],
+ [15.21993, 37.43376],
+ [15.4836, 37.92936],
+ [16.01644, 37.8036],
+ [17.21669, 38.87425],
+ [17.21669, 39.40468],
+ [16.55477, 39.78775],
+ [17.05464, 40.45144],
+ [18.32906, 39.70539],
+ [18.68773, 40.0587],
+ [18.04964, 40.67064],
+ [16.00545, 41.52122],
+ [16.38448, 41.85964],
+ [15.51837, 42.1537],
+ [14.57997, 42.2461],
+ [13.56099, 43.65128],
+ [12.57889, 44.0867],
+ [12.28795, 44.62204],
+ [12.56398, 44.97092],
+ [12.34151, 45.17458],
+ [12.41696, 45.40557],
+ [13.09252, 45.62826],
+ [13.69549, 45.70806],
+ [13.78445, 45.5825],
+ [13.9191, 45.6322],
+ [13.8235, 45.7176],
+ [13.59784, 45.8072],
+ [13.64307, 45.98326],
+ [13.52963, 45.96588],
+ [13.47474, 46.00546],
+ [13.66472, 46.17392],
+ [13.47587, 46.22725],
+ [13.42218, 46.20758],
+ [13.37671, 46.29668],
+ [13.59777, 46.44137],
+ [13.68684, 46.43881],
+ [13.7148, 46.5222],
+ [12.9151, 46.60953],
+ [12.38708, 46.71529],
+ [12.27591, 46.88651],
+ [12.17486, 46.90895],
+ [12.11675, 47.01241],
+ [12.21781, 47.03996],
+ [12.19254, 47.09331],
+ [11.74789, 46.98484],
+ [11.33355, 46.99862],
+ [11.10618, 46.92966],
+ [11.00764, 46.76896],
+ [10.72974, 46.78972],
+ [10.75753, 46.82258],
+ [10.66405, 46.87614],
+ [10.47197, 46.85698],
+ [10.38659, 46.67847],
+ [10.49375, 46.62049],
+ [10.46136, 46.53164],
+ [10.25309, 46.57432],
+ [10.23674, 46.63484],
+ [10.10307, 46.61003],
+ [10.03715, 46.44479],
+ [10.165, 46.41051],
+ [10.10506, 46.3372],
+ [10.17862, 46.25626],
+ [10.07055, 46.21668],
+ [9.95249, 46.38045],
+ [9.73086, 46.35071],
+ [9.71273, 46.29266],
+ [9.57015, 46.2958],
+ [9.46117, 46.37481],
+ [9.45936, 46.50873],
+ [9.40487, 46.46621],
+ [9.36128, 46.5081],
+ [9.28136, 46.49685],
+ [9.24503, 46.23616],
+ [8.95601, 45.96503],
+ [9.09065, 45.89906],
+ [9.0298, 45.82127],
+ [8.90992, 45.8333],
+ [8.9408, 45.86682],
+ [8.88904, 45.95465],
+ [8.78551, 45.99063],
+ [8.85617, 46.0748],
+ [8.62242, 46.12112],
+ [8.45032, 46.26869],
+ [8.42464, 46.46367],
+ [8.08814, 46.26692],
+ [8.15493, 46.1834],
+ [8.11383, 46.11577],
+ [8.02906, 46.10331],
+ [7.98881, 45.99867],
+ [7.9049, 45.99945],
+ [7.85949, 45.91485],
+ [7.56343, 45.97421],
+ [7.10685, 45.85653],
+ [7.04151, 45.92435],
+ [6.95315, 45.85163],
+ [6.80785, 45.83265],
+ [6.80785, 45.71864],
+ [6.98948, 45.63869],
+ [7.00037, 45.509],
+ [7.18019, 45.40071],
+ [7.10572, 45.32924],
+ [7.13115, 45.25386],
+ [6.85144, 45.13226],
+ [6.7697, 45.16044],
+ [6.62803, 45.11175],
+ [6.66981, 45.02324],
+ [6.74791, 45.01939],
+ [6.75518, 44.89915],
+ [7.02217, 44.82519],
+ [7.07484, 44.68073],
+ [6.95133, 44.66264],
+ [6.85507, 44.53072],
+ [6.94504, 44.43112],
+ [6.88784, 44.42043],
+ [6.89171, 44.36637],
+ [7.00764, 44.23736],
+ [7.36364, 44.11882],
+ [7.68694, 44.17487],
+ [7.72508, 44.07578],
+ [7.49355, 43.86551],
+ [7.54795, 43.73118]
+ ],
+ [
+ [8.17134, 39.14848],
+ [8.62453, 38.75119],
+ [9.09831, 39.03764],
+ [9.03102, 39.13144],
+ [9.26585, 39.18575],
+ [9.64076, 39.0227],
+ [9.89894, 40.67991],
+ [9.50068, 41.39257],
+ [8.30317, 40.91071],
+ [8.41304, 41.16139],
+ [8.21254, 41.13864],
+ [8.07521, 40.59862],
+ [8.36154, 40.35],
+ [8.27914, 39.98585],
+ [8.38283, 39.6536],
+ [8.17134, 39.14848]
+ ],
+ [
+ [12.51489, 35.53423],
+ [12.64054, 35.5306],
+ [12.63861, 35.48641],
+ [12.51296, 35.49005],
+ [12.51489, 35.53423]
+ ],
+ [
+ [11.91218, 36.85688],
+ [12.08179, 36.85523],
+ [12.07958, 36.70974],
+ [11.90998, 36.71139],
+ [11.91218, 36.85688]
+ ],
+ [
+ [12.84019, 35.88131],
+ [12.89186, 35.88145],
+ [12.89198, 35.85003],
+ [12.84031, 35.84989],
+ [12.84019, 35.88131]
+ ]
+ ]
+ },
+ {
+ "id": "PCN-Lazio_Umbria-2008",
+ "name": "PCN 2008 - IT Lazio+Umbria",
+ "type": "wms",
+ "template": "http://wms.pcn.minambiente.it/ogc?map=/ms_ogc/WMS_v1.3/raster/ortofoto_colore_08.map&FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=OI.ORTOIMMAGINI.2008.33&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2008-01-01T00:00:00.000Z",
+ "startDate": "2008-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [12.33149, 41.64637],
+ [12.41178, 41.64791],
+ [12.41499, 41.54635],
+ [12.49574, 41.54789],
+ [12.4985, 41.49619],
+ [12.57948, 41.49843],
+ [12.58062, 41.42932],
+ [12.60632, 41.4288],
+ [12.60746, 41.39663],
+ [12.8293, 41.39818],
+ [12.83159, 41.34688],
+ [12.9128, 41.34843],
+ [12.9151, 41.29726],
+ [12.99585, 41.2983],
+ [12.99791, 41.19636],
+ [13.1679, 41.19808],
+ [13.16721, 41.24692],
+ [13.41337, 41.24829],
+ [13.4152, 41.19705],
+ [13.8341, 41.19808],
+ [13.83341, 41.2476],
+ [13.91737, 41.24847],
+ [13.91668, 41.39749],
+ [14.0011, 41.39784],
+ [13.99996, 41.49774],
+ [14.08415, 41.49826],
+ [14.08346, 41.65014],
+ [14.00087, 41.6498],
+ [13.99973, 41.75051],
+ [13.83433, 41.74965],
+ [13.83364, 41.80047],
+ [13.75151, 41.79978],
+ [13.7499, 41.84987],
+ [13.41841, 41.8497],
+ [13.41681, 41.95027],
+ [13.33445, 41.94959],
+ [13.3333, 42.00041],
+ [13.25141, 41.99973],
+ [13.25003, 42.05051],
+ [13.08509, 42.04966],
+ [13.08394, 42.097],
+ [13.33399, 42.09819],
+ [13.33376, 42.1472],
+ [13.41772, 42.14822],
+ [13.41635, 42.25052],
+ [13.33399, 42.24984],
+ [13.33353, 42.30094],
+ [13.25141, 42.29992],
+ [13.25003, 42.54699],
+ [13.41795, 42.54817],
+ [13.41589, 42.75065],
+ [13.33468, 42.74947],
+ [13.33307, 42.90056],
+ [13.16836, 42.89938],
+ [13.16721, 42.95079],
+ [12.96419, 42.95012],
+ [12.96258, 43.0003],
+ [12.91877, 42.9998],
+ [12.91601, 43.25078],
+ [12.83526, 43.24994],
+ [12.83228, 43.50107],
+ [12.66321, 43.4994],
+ [12.66482, 43.45112],
+ [12.58567, 43.44996],
+ [12.58246, 43.5508],
+ [12.50171, 43.5498],
+ [12.49987, 43.65131],
+ [12.16242, 43.64915],
+ [12.16494, 43.60132],
+ [12.07891, 43.5995],
+ [12.0819, 43.45196],
+ [11.99541, 43.44913],
+ [11.99862, 43.34661],
+ [12.07891, 43.34795],
+ [12.08075, 43.30189],
+ [11.9961, 43.29955],
+ [11.99862, 43.20214],
+ [11.91237, 43.19929],
+ [11.91466, 43.15212],
+ [11.83207, 43.14944],
+ [11.8323, 43.09653],
+ [11.91099, 43.09837],
+ [11.91466, 42.90191],
+ [11.82909, 42.89922],
+ [11.83139, 42.85231],
+ [11.74582, 42.84945],
+ [11.74811, 42.65236],
+ [11.6731, 42.64966],
+ [11.67493, 42.6105],
+ [11.49485, 42.59936],
+ [11.49852, 42.49593],
+ [11.57812, 42.49796],
+ [11.58156, 42.45244],
+ [11.41226, 42.44872],
+ [11.41524, 42.34656],
+ [11.49599, 42.34792],
+ [11.49921, 42.29636],
+ [11.57835, 42.29822],
+ [11.58225, 42.24628],
+ [11.66185, 42.24832],
+ [11.66621, 42.09649],
+ [11.74536, 42.09819],
+ [11.74903, 41.99666],
+ [11.91443, 41.99922],
+ [11.91535, 41.98626],
+ [11.99403, 41.98745],
+ [11.99862, 41.89685],
+ [12.07868, 41.89907],
+ [12.08144, 41.84594],
+ [12.16311, 41.84799],
+ [12.16563, 41.6964],
+ [12.3292, 41.69863],
+ [12.33149, 41.64637]
+ ]
+ ]
+ },
+ {
+ "id": "Actueel_ortho25_WMS",
+ "name": "PDOK aerial imagery Beeldmateriaal.nl 25cm latest",
+ "type": "tms",
+ "template": "https://geodata.nationaalgeoregister.nl/luchtfoto/rgb/wmts?FORMAT=image/jpeg&SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=Actueel_ortho25&STYLE=&FORMAT=image/jpeg&tileMatrixSet=OGC:1.0:GoogleMapsCompatible&tileMatrix={zoom}&tileRow={y}&tileCol={x}",
+ "scaleExtent": [0, 19],
+ "polygon": [
+ [
+ [3.14377, 51.35984],
+ [3.1575, 51.24113],
+ [3.33878, 51.11544],
+ [3.91281, 51.05851],
+ [4.65714, 51.28067],
+ [4.89334, 51.26348],
+ [5.17899, 51.12579],
+ [5.38498, 51.13096],
+ [5.54428, 51.05678],
+ [5.42069, 50.85956],
+ [5.46738, 50.70326],
+ [5.65689, 50.61926],
+ [6.14853, 50.62143],
+ [6.30234, 50.85782],
+ [6.29959, 50.95438],
+ [6.26389, 51.01835],
+ [6.37238, 51.09259],
+ [6.40122, 51.20114],
+ [6.37375, 51.25102],
+ [6.44516, 51.31587],
+ [6.42044, 51.5496],
+ [6.34354, 51.67922],
+ [6.79672, 51.76429],
+ [7.04666, 51.91024],
+ [7.07138, 52.04559],
+ [7.27188, 52.17041],
+ [7.30759, 52.38551],
+ [7.20596, 52.53195],
+ [7.28287, 52.61458],
+ [7.29935, 52.77853],
+ [7.44217, 52.97827],
+ [7.43393, 53.28314],
+ [7.04392, 53.55159],
+ [6.78299, 53.63635],
+ [6.23917, 53.54016],
+ [5.6871, 53.51241],
+ [5.17349, 53.43885],
+ [4.81644, 53.23384],
+ [4.65164, 53.06583],
+ [4.54178, 52.48598],
+ [4.32205, 52.19568],
+ [4.08104, 52.01369],
+ [4.02199, 52.01623],
+ [3.93684, 51.96379],
+ [3.95195, 51.88079],
+ [3.84483, 51.84942],
+ [3.62373, 51.70752],
+ [3.65532, 51.66069],
+ [3.63335, 51.62746],
+ [3.54683, 51.62234],
+ [3.39577, 51.56091],
+ [3.38203, 51.51735],
+ [3.49876, 51.43267],
+ [3.32985, 51.38556],
+ [3.14377, 51.35984]
+ ]
+ ],
+ "terms_url": "https://www.nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/search?facet.q=license%2FCC-BY&isChild=%27false%27&resultType=details&any_OR_title_OR_keyword=luchtfoto&fast=index&_content_type=json&from=1&to=20&sortBy=relevance",
+ "terms_text": "Kadaster / Beeldmateriaal.nl, CC BY 4.0",
+ "best": true,
+ "description": "Nationwide data set 25cm resolution color aerial imagery of the most recent year.",
+ "icon": "data:image/png;base64,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"
+ },
+ {
+ "id": "al_piranhas",
+ "name": "Piranhas AL",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Piranhas&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-37.71918, -9.65236],
+ [-37.71918, -9.63874],
+ [-37.71914, -9.6321],
+ [-37.71924, -9.62114],
+ [-37.71929, -9.61023],
+ [-37.71934, -9.59988],
+ [-37.7194, -9.58891],
+ [-37.71945, -9.57802],
+ [-37.71944, -9.57173],
+ [-37.71952, -9.56684],
+ [-37.71956, -9.56225],
+ [-37.71998, -9.56218],
+ [-37.72258, -9.56195],
+ [-37.72818, -9.56203],
+ [-37.73254, -9.562],
+ [-37.74107, -9.56206],
+ [-37.74845, -9.56202],
+ [-37.75926, -9.56216],
+ [-37.76972, -9.56227],
+ [-37.78036, -9.56244],
+ [-37.78537, -9.56236],
+ [-37.78907, -9.56233],
+ [-37.79562, -9.56245],
+ [-37.79771, -9.56237],
+ [-37.81006, -9.56243],
+ [-37.81061, -9.56241],
+ [-37.81053, -9.56531],
+ [-37.81049, -9.57629],
+ [-37.81046, -9.58742],
+ [-37.81038, -9.59757],
+ [-37.81031, -9.61798],
+ [-37.81018, -9.65197],
+ [-37.81018, -9.6523],
+ [-37.81024, -9.65259],
+ [-37.80664, -9.65245],
+ [-37.80206, -9.65253],
+ [-37.79597, -9.65237],
+ [-37.79179, -9.65252],
+ [-37.78815, -9.65246],
+ [-37.78723, -9.65242],
+ [-37.78035, -9.65241],
+ [-37.77865, -9.65223],
+ [-37.77625, -9.6523],
+ [-37.77475, -9.65219],
+ [-37.77234, -9.65223],
+ [-37.7696, -9.65245],
+ [-37.76623, -9.65251],
+ [-37.76345, -9.65246],
+ [-37.7604, -9.6525],
+ [-37.75102, -9.65237],
+ [-37.75012, -9.65249],
+ [-37.74155, -9.65248],
+ [-37.7403, -9.65239],
+ [-37.73785, -9.65246],
+ [-37.73443, -9.65238],
+ [-37.73106, -9.65243],
+ [-37.72651, -9.65237],
+ [-37.72195, -9.65225],
+ [-37.71992, -9.65228],
+ [-37.71918, -9.65236]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "PNOA-Spain-TMS",
+ "name": "PNOA Spain",
+ "type": "tms",
+ "template": "https://www.ign.es/wmts/pnoa-ma?request=GetTile&service=WMTS&VERSION=1.0.0&Layer=OI.OrthoimageCoverage&Style=default&Format=image/png&TileMatrixSet=GoogleMapsCompatible&TileMatrix={zoom}&TileRow={y}&TileCol={x}",
+ "polygon": [
+ [
+ [-17.88463, 28.44606],
+ [-17.89395, 28.52255],
+ [-18.02125, 28.74819],
+ [-18.02241, 28.80384],
+ [-17.9424, 28.87261],
+ [-17.89118, 28.87371],
+ [-17.89033, 28.85151],
+ [-17.76759, 28.85378],
+ [-17.76698, 28.83122],
+ [-17.74127, 28.832],
+ [-17.73949, 28.76422],
+ [-17.71398, 28.76497],
+ [-17.71293, 28.73037],
+ [-17.75744, 28.69318],
+ [-17.75708, 28.67413],
+ [-17.74579, 28.67435],
+ [-17.74573, 28.61656],
+ [-17.75197, 28.58337],
+ [-17.76225, 28.5592],
+ [-17.78331, 28.54167],
+ [-17.78316, 28.49366],
+ [-17.80861, 28.4925],
+ [-17.80601, 28.4469],
+ [-17.88463, 28.44606]
+ ],
+ [
+ [-18.1661, 27.78516],
+ [-18.16349, 27.69492],
+ [-18.08898, 27.69634],
+ [-18.08734, 27.67387],
+ [-18.03641, 27.67537],
+ [-18.03501, 27.63026],
+ [-17.959, 27.6324],
+ [-17.86033, 27.7926],
+ [-17.86303, 27.83688],
+ [-17.8884, 27.83649],
+ [-17.88913, 27.85905],
+ [-17.99065, 27.85675],
+ [-18.03868, 27.76558],
+ [-18.11464, 27.76379],
+ [-18.11546, 27.78636],
+ [-18.1661, 27.78516]
+ ],
+ [
+ [-17.36038, 28.06398],
+ [-17.36297, 28.17572],
+ [-17.33756, 28.17637],
+ [-17.33846, 28.2213],
+ [-17.18579, 28.22388],
+ [-17.08208, 28.13518],
+ [-17.08084, 28.068],
+ [-17.13154, 28.06681],
+ [-17.15633, 28.02146],
+ [-17.23211, 28.02037],
+ [-17.23199, 27.99804],
+ [-17.25768, 27.99784],
+ [-17.25785, 28.01997],
+ [-17.30867, 28.01923],
+ [-17.36038, 28.06398]
+ ],
+ [
+ [-16.92782, 28.32758],
+ [-16.92866, 28.37219],
+ [-16.87767, 28.37293],
+ [-16.87807, 28.39542],
+ [-16.52143, 28.42261],
+ [-16.44571, 28.49113],
+ [-16.44625, 28.53597],
+ [-16.42059, 28.53627],
+ [-16.42092, 28.55884],
+ [-16.34433, 28.55976],
+ [-16.3446, 28.58221],
+ [-16.19125, 28.58372],
+ [-16.19162, 28.60684],
+ [-16.12793, 28.60782],
+ [-16.1278, 28.59218],
+ [-16.09951, 28.5925],
+ [-16.09934, 28.51638],
+ [-16.16481, 28.51612],
+ [-16.16475, 28.49386],
+ [-16.23858, 28.44847],
+ [-16.26535, 28.44761],
+ [-16.26586, 28.403],
+ [-16.31675, 28.40176],
+ [-16.31631, 28.38019],
+ [-16.34208, 28.37951],
+ [-16.34083, 28.2893],
+ [-16.41584, 28.19761],
+ [-16.4151, 28.13113],
+ [-16.51533, 28.01648],
+ [-16.61684, 28.01532],
+ [-16.61681, 27.99305],
+ [-16.71842, 27.99192],
+ [-16.7191, 28.03714],
+ [-16.7447, 28.03679],
+ [-16.74534, 28.08181],
+ [-16.7707, 28.08161],
+ [-16.8224, 28.1259],
+ [-16.82317, 28.17087],
+ [-16.8487, 28.17075],
+ [-16.85028, 28.26079],
+ [-16.87565, 28.26055],
+ [-16.87608, 28.28322],
+ [-16.90151, 28.28277],
+ [-16.90239, 28.32793],
+ [-16.92782, 28.32758]
+ ],
+ [
+ [-15.85374, 27.90089],
+ [-15.8542, 27.99018],
+ [-15.82895, 27.99066],
+ [-15.82911, 28.03558],
+ [-15.7783, 28.03632],
+ [-15.75328, 28.08143],
+ [-15.72788, 28.08157],
+ [-15.72826, 28.17186],
+ [-15.49897, 28.1728],
+ [-15.49874, 28.15041],
+ [-15.44978, 28.15075],
+ [-15.45016, 28.19614],
+ [-15.39728, 28.19614],
+ [-15.39644, 28.03836],
+ [-15.37103, 28.03802],
+ [-15.37065, 28.01532],
+ [-15.34578, 28.01532],
+ [-15.34548, 27.92544],
+ [-15.3708, 27.92524],
+ [-15.37057, 27.83521],
+ [-15.39598, 27.83474],
+ [-15.421, 27.78797],
+ [-15.47181, 27.78939],
+ [-15.47188, 27.76665],
+ [-15.52277, 27.76678],
+ [-15.54771, 27.72161],
+ [-15.62361, 27.72134],
+ [-15.62415, 27.74199],
+ [-15.70075, 27.74335],
+ [-15.80167, 27.81105],
+ [-15.85374, 27.90089]
+ ],
+ [
+ [-14.52156, 28.04678],
+ [-14.52244, 28.11841],
+ [-14.41575, 28.11561],
+ [-14.21688, 28.22788],
+ [-14.21537, 28.33903],
+ [-14.16417, 28.45283],
+ [-14.11151, 28.4748],
+ [-14.03358, 28.72267],
+ [-13.95652, 28.74494],
+ [-13.95617, 28.76659],
+ [-13.82902, 28.76643],
+ [-13.82896, 28.78798],
+ [-13.80007, 28.78793],
+ [-13.8013, 28.71899],
+ [-13.82757, 28.71935],
+ [-13.82786, 28.6518],
+ [-13.80258, 28.6519],
+ [-13.80339, 28.53842],
+ [-13.82885, 28.53847],
+ [-13.83151, 28.39702],
+ [-13.91582, 28.22414],
+ [-13.98564, 28.22357],
+ [-14.03696, 28.17958],
+ [-14.13871, 28.17999],
+ [-14.13866, 28.15791],
+ [-14.21537, 28.15781],
+ [-14.21472, 28.11189],
+ [-14.29132, 28.04524],
+ [-14.33197, 28.03687],
+ [-14.44578, 28.04698],
+ [-14.44666, 28.0658],
+ [-14.49628, 28.06826],
+ [-14.49593, 28.04585],
+ [-14.52156, 28.04678]
+ ],
+ [
+ [-13.80066, 28.84566],
+ [-13.80093, 28.82311],
+ [-13.77569, 28.82305],
+ [-13.69729, 28.88982],
+ [-13.69729, 28.91277],
+ [-13.60725, 28.9118],
+ [-13.43886, 29.00024],
+ [-13.43746, 29.13513],
+ [-13.4117, 29.13499],
+ [-13.41056, 29.22298],
+ [-13.45928, 29.25559],
+ [-13.45974, 29.2942],
+ [-13.50913, 29.29456],
+ [-13.51006, 29.31635],
+ [-13.56354, 29.31729],
+ [-13.56406, 29.27138],
+ [-13.53892, 29.2712],
+ [-13.53897, 29.25004],
+ [-13.56613, 29.25013],
+ [-13.5666, 29.203],
+ [-13.51565, 29.20223],
+ [-13.51565, 29.18206],
+ [-13.5398, 29.18278],
+ [-13.54089, 29.13753],
+ [-13.65782, 29.13685],
+ [-13.71322, 29.09351],
+ [-13.76634, 29.09345],
+ [-13.85025, 29.01659],
+ [-13.85182, 28.98343],
+ [-13.85244, 28.91486],
+ [-13.90131, 28.89245],
+ [-13.9024, 28.84698],
+ [-13.80066, 28.84566]
+ ],
+ [
+ [1.64799, 38.99907],
+ [1.73217, 38.99936],
+ [1.73147, 39.04417],
+ [1.64895, 39.04319],
+ [1.64816, 39.12764],
+ [1.39486, 39.12657],
+ [1.39544, 39.08642],
+ [1.22811, 39.08526],
+ [1.22911, 39.0029],
+ [1.14487, 39.0018],
+ [1.14528, 38.832],
+ [1.31136, 38.83316],
+ [1.31219, 38.79065],
+ [1.39469, 38.79162],
+ [1.39519, 38.75296],
+ [1.31128, 38.75193],
+ [1.31259, 38.62388],
+ [1.6489, 38.62511],
+ [1.64807, 38.71115],
+ [1.58456, 38.71012],
+ [1.58116, 38.70054],
+ [1.54915, 38.70028],
+ [1.51972, 38.70921],
+ [1.50355, 38.72532],
+ [1.48133, 38.91551],
+ [1.55189, 38.92544],
+ [1.56673, 38.95666],
+ [1.64874, 38.95833],
+ [1.64799, 38.99907]
+ ],
+ [
+ [2.54507, 39.41667],
+ [2.43933, 39.41611],
+ [2.43871, 39.48469],
+ [2.43902, 39.49934],
+ [2.31223, 39.49934],
+ [2.31192, 39.54179],
+ [2.22907, 39.541],
+ [2.22835, 39.62606],
+ [2.34601, 39.62709],
+ [2.92704, 39.96016],
+ [3.14566, 39.96005],
+ [3.14608, 40.00198],
+ [3.23139, 40.00198],
+ [3.23129, 39.83292],
+ [3.14823, 39.83316],
+ [3.14844, 39.79357],
+ [3.48148, 39.79318],
+ [3.48035, 39.5959],
+ [3.31506, 39.47846],
+ [3.31462, 39.37855],
+ [3.08302, 39.24994],
+ [2.97986, 39.25015],
+ [2.97904, 39.3335],
+ [2.72874, 39.33342],
+ [2.72885, 39.45814],
+ [2.64569, 39.45774],
+ [2.64538, 39.49966],
+ [2.54528, 39.49942],
+ [2.54507, 39.41667]
+ ],
+ [
+ [3.81204, 40.04344],
+ [3.72908, 40.0438],
+ [3.72862, 39.95842],
+ [3.81266, 39.9576],
+ [3.81228, 39.91644],
+ [3.9609, 39.91598],
+ [4.19381, 39.79131],
+ [4.31503, 39.79058],
+ [4.31599, 39.83293],
+ [4.39874, 39.83204],
+ [4.39737, 39.91858],
+ [4.3158, 39.91933],
+ [4.31619, 40.0434],
+ [4.2319, 40.04436],
+ [4.23248, 40.08478],
+ [4.14915, 40.08611],
+ [4.14906, 40.12552],
+ [4.0628, 40.12722],
+ [4.06242, 40.08499],
+ [3.81287, 40.08529],
+ [3.81204, 40.04344]
+ ],
+ [
+ [-8.89106, 41.82289],
+ [-9.1092, 42.57511],
+ [-9.03655, 42.73066],
+ [-9.08834, 42.72696],
+ [-9.14661, 42.77503],
+ [-9.21855, 42.90163],
+ [-9.2761, 42.86051],
+ [-9.30991, 42.93113],
+ [-9.27898, 42.9822],
+ [-9.30991, 43.06004],
+ [-9.25236, 43.10417],
+ [-9.2315, 43.17032],
+ [-9.14733, 43.21018],
+ [-9.06748, 43.19916],
+ [-9.03367, 43.24267],
+ [-8.99842, 43.24477],
+ [-8.99986, 43.29558],
+ [-8.93727, 43.30553],
+ [-8.92936, 43.32699],
+ [-8.8639, 43.32908],
+ [-8.87613, 43.37407],
+ [-8.82217, 43.37354],
+ [-8.78548, 43.31914],
+ [-8.70635, 43.305],
+ [-8.60996, 43.3296],
+ [-8.55097, 43.32332],
+ [-8.52435, 43.3364],
+ [-8.52507, 43.36465],
+ [-8.45745, 43.39184],
+ [-8.36105, 43.41118],
+ [-8.36033, 43.46342],
+ [-8.33444, 43.57974],
+ [-8.27761, 43.57088],
+ [-8.06467, 43.72392],
+ [-7.99921, 43.7234],
+ [-7.9172, 43.78264],
+ [-7.85605, 43.79146],
+ [-7.83591, 43.73743],
+ [-7.66284, 43.80982],
+ [-7.31889, 43.67827],
+ [-7.19975, 43.58308],
+ [-6.24882, 43.6075],
+ [-6.12293, 43.57901],
+ [-5.85204, 43.6799],
+ [-5.60363, 43.57087],
+ [-5.28553, 43.56191],
+ [-5.17875, 43.49916],
+ [-4.90899, 43.48367],
+ [-4.61562, 43.4192],
+ [-4.18399, 43.42492],
+ [-3.80295, 43.51954],
+ [-3.74, 43.48693],
+ [-3.56128, 43.54236],
+ [-3.1083, 43.38163],
+ [-2.93857, 43.46246],
+ [-2.74524, 43.47551],
+ [-2.30462, 43.31706],
+ [-1.9854, 43.3563],
+ [-1.85528, 43.39725],
+ [-1.7698, 43.39644],
+ [-1.77005, 43.37605],
+ [-1.71005, 43.37569],
+ [-1.71135, 43.33125],
+ [-1.72259, 43.31318],
+ [-1.68904, 43.31291],
+ [-1.68811, 43.33413],
+ [-1.64467, 43.33372],
+ [-1.64498, 43.31332],
+ [-1.60299, 43.31295],
+ [-1.60344, 43.29266],
+ [-1.56359, 43.29212],
+ [-1.56305, 43.31338],
+ [-1.47799, 43.31284],
+ [-1.36677, 43.27614],
+ [-1.35688, 43.23815],
+ [-1.37037, 43.1713],
+ [-1.44231, 43.08336],
+ [-1.41983, 43.06036],
+ [-1.37307, 43.05117],
+ [-1.36407, 43.11159],
+ [-1.30203, 43.13522],
+ [-1.23549, 43.13325],
+ [-1.27955, 43.07744],
+ [-1.19232, 43.06496],
+ [-1.00619, 43.00778],
+ [-0.94234, 42.9749],
+ [-0.7562, 42.98213],
+ [-0.71484, 42.96108],
+ [-0.69685, 42.90314],
+ [-0.55118, 42.82207],
+ [-0.50442, 42.84845],
+ [-0.42889, 42.82009],
+ [-0.31648, 42.86558],
+ [-0.14563, 42.81086],
+ [-0.03143, 42.71249],
+ [0.18618, 42.7541],
+ [0.30218, 42.71777],
+ [0.36422, 42.74287],
+ [0.44875, 42.71447],
+ [0.62769, 42.7224],
+ [0.64118, 42.85767],
+ [0.71492, 42.88272],
+ [0.9676, 42.81811],
+ [1.10878, 42.79898],
+ [1.17532, 42.73429],
+ [1.36326, 42.74155],
+ [1.41137, 42.70939],
+ [1.48061, 42.71034],
+ [1.4813, 42.50107],
+ [1.64436, 42.50203],
+ [1.64328, 42.54245],
+ [1.73041, 42.54342],
+ [1.73164, 42.50118],
+ [2.06386, 42.50164],
+ [2.06456, 42.45902],
+ [2.39693, 42.45994],
+ [2.39768, 42.41784],
+ [2.48048, 42.41797],
+ [2.48098, 42.37594],
+ [2.64479, 42.37626],
+ [2.64448, 42.45924],
+ [2.81133, 42.45961],
+ [2.81126, 42.50104],
+ [3.06388, 42.50085],
+ [3.06388, 42.45915],
+ [3.23078, 42.45934],
+ [3.23049, 42.37644],
+ [3.31415, 42.37604],
+ [3.31412, 42.33399],
+ [3.39785, 42.33404],
+ [3.39739, 42.29009],
+ [3.31389, 42.29084],
+ [3.31397, 42.20702],
+ [3.14759, 42.2073],
+ [3.14759, 42.12606],
+ [3.23055, 42.126],
+ [3.24668, 41.95294],
+ [3.19452, 41.85589],
+ [3.06054, 41.76474],
+ [2.78358, 41.63718],
+ [2.26293, 41.42716],
+ [2.16492, 41.29893],
+ [1.86008, 41.22322],
+ [1.3763, 41.11627],
+ [1.17937, 41.04646],
+ [1.08585, 41.04849],
+ [0.75854, 40.81956],
+ [0.9114, 40.73376],
+ [0.87813, 40.67514],
+ [0.66502, 40.53587],
+ [0.55801, 40.55022],
+ [0.43392, 40.37576],
+ [0.26756, 40.19192],
+ [0.16415, 40.06472],
+ [0.07513, 40.01447],
+ [0.01039, 39.89522],
+ [-0.09392, 39.81169],
+ [-0.18474, 39.63117],
+ [-0.29085, 39.50363],
+ [-0.28636, 39.33343],
+ [-0.18564, 39.17746],
+ [-0.21352, 39.15585],
+ [-0.11101, 38.97222],
+ [0.00949, 38.88268],
+ [0.12189, 38.87218],
+ [0.23429, 38.79864],
+ [0.25587, 38.72642],
+ [0.09581, 38.61338],
+ [-0.0022, 38.60706],
+ [-0.05705, 38.52691],
+ [-0.27197, 38.47624],
+ [-0.37987, 38.39312],
+ [-0.38347, 38.33813],
+ [-0.45091, 38.33108],
+ [-0.50487, 38.28309],
+ [-0.48238, 38.19481],
+ [-0.42933, 38.16583],
+ [-0.45451, 38.14886],
+ [-0.584, 38.17219],
+ [-0.61367, 38.11986],
+ [-0.63705, 37.96122],
+ [-0.68111, 37.94562],
+ [-0.73237, 37.88107],
+ [-0.72158, 37.78306],
+ [-0.68831, 37.734],
+ [-0.66415, 37.62315],
+ [-0.71939, 37.58784],
+ [-0.91963, 37.53758],
+ [-1.11071, 37.51641],
+ [-1.33832, 37.52867],
+ [-1.44089, 37.39037],
+ [-1.6767, 37.27652],
+ [-1.85408, 36.91229],
+ [-2.06835, 36.69291],
+ [-2.21588, 36.66192],
+ [-2.37219, 36.78018],
+ [-2.68129, 36.65911],
+ [-2.92015, 36.66756],
+ [-3.09402, 36.71263],
+ [-3.46108, 36.65488],
+ [-3.72804, 36.69291],
+ [-4.37435, 36.66333],
+ [-4.65712, 36.44042],
+ [-4.9188, 36.45313],
+ [-5.16995, 36.35135],
+ [-5.28411, 36.19702],
+ [-5.26809, 36.12418],
+ [-5.35248, 36.12247],
+ [-5.35161, 36.04014],
+ [-5.43658, 36.03889],
+ [-5.43532, 36.00344],
+ [-5.68886, 36.00365],
+ [-5.68996, 36.04053],
+ [-5.85506, 36.03856],
+ [-5.85668, 36.12421],
+ [-5.93848, 36.12215],
+ [-5.94003, 36.16556],
+ [-5.99834, 36.1645],
+ [-6.03573, 36.1781],
+ [-6.07752, 36.22241],
+ [-6.15061, 36.28646],
+ [-6.23154, 36.37701],
+ [-6.33585, 36.53106],
+ [-6.32146, 36.58163],
+ [-6.40419, 36.6235],
+ [-6.47433, 36.74897],
+ [-6.41588, 36.79939],
+ [-6.49052, 36.91738],
+ [-6.62989, 37.0194],
+ [-6.87448, 37.10838],
+ [-7.04264, 37.18507],
+ [-7.26474, 37.18435],
+ [-7.37535, 37.15354],
+ [-7.40832, 37.16822],
+ [-7.42029, 37.21183],
+ [-7.42492, 37.23505],
+ [-7.43805, 37.2452],
+ [-7.44597, 37.33261],
+ [-7.4481, 37.39094],
+ [-7.46963, 37.40758],
+ [-7.4647, 37.45305],
+ [-7.50197, 37.51641],
+ [-7.51916, 37.52292],
+ [-7.52196, 37.57237],
+ [-7.45013, 37.66958],
+ [-7.4249, 37.75992],
+ [-7.31666, 37.83997],
+ [-7.26833, 37.98895],
+ [-7.15368, 38.01552],
+ [-7.11771, 38.05536],
+ [-7.0143, 38.02438],
+ [-6.99632, 38.10756],
+ [-6.96147, 38.20125],
+ [-7.08062, 38.15708],
+ [-7.34027, 38.44024],
+ [-7.26383, 38.73807],
+ [-7.04352, 38.87297],
+ [-7.06151, 38.90796],
+ [-6.96934, 39.01983],
+ [-7.00081, 39.08879],
+ [-7.15368, 39.09577],
+ [-7.15255, 39.16029],
+ [-7.24472, 39.19689],
+ [-7.25596, 39.28133],
+ [-7.33689, 39.35351],
+ [-7.3279, 39.45599],
+ [-7.51449, 39.58865],
+ [-7.55271, 39.67954],
+ [-7.05027, 39.67522],
+ [-6.99519, 39.81954],
+ [-6.92213, 39.87909],
+ [-6.88616, 40.02299],
+ [-7.04128, 40.13479],
+ [-7.01767, 40.26615],
+ [-6.8086, 40.34501],
+ [-6.86818, 40.44516],
+ [-6.85356, 40.60664],
+ [-6.83783, 40.87576],
+ [-6.9536, 41.03704],
+ [-6.80186, 41.03959],
+ [-6.76814, 41.13871],
+ [-6.64112, 41.26556],
+ [-6.56244, 41.26303],
+ [-6.21737, 41.5791],
+ [-6.31628, 41.64465],
+ [-6.51523, 41.64129],
+ [-6.58717, 41.68832],
+ [-6.54783, 41.85597],
+ [-6.62988, 41.91121],
+ [-7.13345, 41.94048],
+ [-7.16829, 41.87188],
+ [-7.42569, 41.78477],
+ [-7.95398, 41.84593],
+ [-8.13045, 41.78058],
+ [-8.25185, 41.90786],
+ [-8.12933, 42.03488],
+ [-8.24848, 42.1008],
+ [-8.36762, 42.05575],
+ [-8.60704, 42.03405],
+ [-8.89106, 41.82289]
+ ]
+ ],
+ "terms_text": "PNOA",
+ "best": true
+ },
+ {
+ "id": "poco_das_trincheiras",
+ "name": "Poço das Trincheiras AL",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Poco%20das%20Trincheiras&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-37.23942, -9.35157],
+ [-37.23947, -9.34387],
+ [-37.23942, -9.33792],
+ [-37.23954, -9.33022],
+ [-37.23973, -9.32791],
+ [-37.23974, -9.3228],
+ [-37.23964, -9.32085],
+ [-37.23971, -9.31864],
+ [-37.2398, -9.31706],
+ [-37.23982, -9.31561],
+ [-37.24053, -9.30933],
+ [-37.24051, -9.30004],
+ [-37.24008, -9.29687],
+ [-37.23998, -9.29546],
+ [-37.23992, -9.29319],
+ [-37.23989, -9.28978],
+ [-37.23995, -9.28818],
+ [-37.24008, -9.28641],
+ [-37.24036, -9.28212],
+ [-37.24038, -9.27897],
+ [-37.24051, -9.27557],
+ [-37.24004, -9.26979],
+ [-37.24018, -9.26721],
+ [-37.24018, -9.26612],
+ [-37.23995, -9.26455],
+ [-37.23983, -9.26151],
+ [-37.24333, -9.26136],
+ [-37.24936, -9.26146],
+ [-37.26445, -9.26161],
+ [-37.28016, -9.26172],
+ [-37.28294, -9.26171],
+ [-37.29581, -9.26178],
+ [-37.30685, -9.26178],
+ [-37.31419, -9.26189],
+ [-37.32437, -9.26192],
+ [-37.33078, -9.26175],
+ [-37.33057, -9.27275],
+ [-37.33048, -9.28007],
+ [-37.33054, -9.28117],
+ [-37.33069, -9.28427],
+ [-37.3307, -9.28535],
+ [-37.33064, -9.28617],
+ [-37.33071, -9.28717],
+ [-37.33064, -9.28769],
+ [-37.33062, -9.29027],
+ [-37.33043, -9.29308],
+ [-37.33038, -9.29655],
+ [-37.33034, -9.30591],
+ [-37.3304, -9.31203],
+ [-37.33038, -9.32194],
+ [-37.33041, -9.3342],
+ [-37.33035, -9.34185],
+ [-37.3303, -9.34783],
+ [-37.33035, -9.35202],
+ [-37.31509, -9.35194],
+ [-37.30011, -9.3519],
+ [-37.29531, -9.35183],
+ [-37.28899, -9.35171],
+ [-37.28497, -9.35182],
+ [-37.27851, -9.35173],
+ [-37.27431, -9.35181],
+ [-37.27115, -9.3517],
+ [-37.26351, -9.35168],
+ [-37.26046, -9.35164],
+ [-37.25402, -9.35177],
+ [-37.24705, -9.35163],
+ [-37.23942, -9.35157]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "rio2013",
+ "name": "Rio Mosaic 2013",
+ "type": "wms",
+ "template": "http://geo.rio.rj.gov.br/ArcGIS/services/Imagens/Mosaico_2013/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=1&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2013-01-01T00:00:00.000Z",
+ "startDate": "2013-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [-43.17709, -22.96971],
+ [-43.14586, -22.96959],
+ [-43.14605, -22.92719],
+ [-43.15625, -22.92731],
+ [-43.15647, -22.87557],
+ [-43.17739, -22.87494],
+ [-43.17742, -22.88553],
+ [-43.19804, -22.88571],
+ [-43.19804, -22.85429],
+ [-43.21875, -22.85444],
+ [-43.21901, -22.83365],
+ [-43.22937, -22.83365],
+ [-43.22934, -22.82371],
+ [-43.19869, -22.82353],
+ [-43.19856, -22.83413],
+ [-43.18826, -22.83398],
+ [-43.18804, -22.84448],
+ [-43.16667, -22.84442],
+ [-43.16683, -22.83404],
+ [-43.15638, -22.83407],
+ [-43.15654, -22.81336],
+ [-43.10436, -22.81306],
+ [-43.10446, -22.80288],
+ [-43.09387, -22.80276],
+ [-43.0941, -22.73998],
+ [-43.13599, -22.73992],
+ [-43.13569, -22.75067],
+ [-43.12573, -22.75055],
+ [-43.12556, -22.77118],
+ [-43.14595, -22.77109],
+ [-43.14612, -22.76055],
+ [-43.17771, -22.76088],
+ [-43.17758, -22.77115],
+ [-43.18807, -22.7713],
+ [-43.18807, -22.78166],
+ [-43.25067, -22.78163],
+ [-43.25057, -22.79198],
+ [-43.28054, -22.79282],
+ [-43.30343, -22.79312],
+ [-43.33353, -22.79297],
+ [-43.33347, -22.80258],
+ [-43.38574, -22.8024],
+ [-43.38542, -22.81255],
+ [-43.41691, -22.81285],
+ [-43.41675, -22.82341],
+ [-43.42717, -22.82335],
+ [-43.4274, -22.83374],
+ [-43.45844, -22.83362],
+ [-43.45864, -22.81276],
+ [-43.48984, -22.813],
+ [-43.48994, -22.7965],
+ [-43.50208, -22.79746],
+ [-43.51543, -22.79737],
+ [-43.52078, -22.79591],
+ [-43.54169, -22.79603],
+ [-43.54179, -22.80234],
+ [-43.54653, -22.80246],
+ [-43.54666, -22.81189],
+ [-43.55251, -22.81279],
+ [-43.56991, -22.81294],
+ [-43.56998, -22.8197],
+ [-43.57361, -22.82326],
+ [-43.58348, -22.82329],
+ [-43.58352, -22.83347],
+ [-43.59391, -22.83374],
+ [-43.59394, -22.85468],
+ [-43.66099, -22.85459],
+ [-43.66099, -22.85983],
+ [-43.70852, -22.86019],
+ [-43.70836, -22.86503],
+ [-43.72206, -22.86488],
+ [-43.72213, -22.86847],
+ [-43.75015, -22.86859],
+ [-43.75009, -22.8753],
+ [-43.76038, -22.87527],
+ [-43.75992, -22.8785],
+ [-43.75976, -22.88457],
+ [-43.76132, -22.88586],
+ [-43.78129, -22.8858],
+ [-43.78126, -22.89591],
+ [-43.80213, -22.89621],
+ [-43.80135, -22.91137],
+ [-43.80119, -22.92758],
+ [-43.79213, -22.92776],
+ [-43.7922, -22.93822],
+ [-43.78191, -22.93799],
+ [-43.78184, -22.94869],
+ [-43.75067, -22.94845],
+ [-43.7506, -22.95909],
+ [-43.72986, -22.95886],
+ [-43.72966, -22.97984],
+ [-43.70904, -22.97966],
+ [-43.70891, -22.99033],
+ [-43.69846, -22.99006],
+ [-43.69836, -23.00065],
+ [-43.66735, -23.00044],
+ [-43.66726, -23.01117],
+ [-43.63125, -23.00937],
+ [-43.63131, -23.02079],
+ [-43.63586, -23.02091],
+ [-43.63602, -23.03164],
+ [-43.67771, -23.03164],
+ [-43.67765, -23.04233],
+ [-43.67086, -23.0423],
+ [-43.67109, -23.0631],
+ [-43.64599, -23.06304],
+ [-43.64605, -23.05276],
+ [-43.60475, -23.05255],
+ [-43.60452, -23.06307],
+ [-43.58381, -23.06289],
+ [-43.58368, -23.08404],
+ [-43.54186, -23.08383],
+ [-43.54195, -23.06319],
+ [-43.52147, -23.06301],
+ [-43.5213, -23.07352],
+ [-43.50043, -23.07337],
+ [-43.50043, -23.04218],
+ [-43.45877, -23.04221],
+ [-43.4587, -23.03194],
+ [-43.43782, -23.03182],
+ [-43.43776, -23.02154],
+ [-43.3235, -23.02121],
+ [-43.3233, -23.04212],
+ [-43.31291, -23.04195],
+ [-43.31275, -23.05267],
+ [-43.30239, -23.05258],
+ [-43.30236, -23.04227],
+ [-43.29194, -23.04215],
+ [-43.29197, -23.03194],
+ [-43.27109, -23.03182],
+ [-43.27119, -23.01093],
+ [-43.26061, -23.01087],
+ [-43.26067, -23.00059],
+ [-43.25057, -23.00047],
+ [-43.25054, -23.01126],
+ [-43.23989, -23.01102],
+ [-43.23986, -23.00062],
+ [-43.21908, -23.0005],
+ [-43.21904, -22.99021],
+ [-43.20901, -22.99009],
+ [-43.20862, -23.08389],
+ [-43.18768, -23.08377],
+ [-43.18761, -23.07334],
+ [-43.13582, -23.07337],
+ [-43.13589, -23.05249],
+ [-43.17732, -23.05255],
+ [-43.17709, -22.96971]
+ ]
+ ],
+ "terms_url": "https://pgeo3.rio.rj.gov.br/arcgis/rest/services/Imagens/Mosaico_2013_UTM/MapServer",
+ "terms_text": "Instituto Pereira Passos - Prefeitura da Cidade do Rio de Janeiro."
+ },
+ {
+ "id": "rio2015",
+ "name": "Rio Mosaic 2015",
+ "type": "wms",
+ "template": "https://pgeo3.rio.rj.gov.br/arcgis/services/Imagens/Mosaico_2015_UTM/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2015-01-01T00:00:00.000Z",
+ "startDate": "2015-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 13],
+ "polygon": [
+ [
+ [-42.30363, -22.43698],
+ [-44.10842, -22.06579],
+ [-44.5313, -23.7863],
+ [-42.70469, -24.16178],
+ [-42.30363, -22.43698]
+ ]
+ ],
+ "terms_url": "https://pgeo3.rio.rj.gov.br/arcgis/rest/services/Imagens/Mosaico_2015_UTM/MapServer",
+ "terms_text": "Instituto Pereira Passos - Prefeitura da Cidade do Rio de Janeiro."
+ },
+ {
+ "id": "route500",
+ "name": "Route 500",
+ "type": "tms",
+ "template": "https://{switch:a,b,c}.tile.openstreetmap.fr/route500/{zoom}/{x}/{y}.png",
+ "scaleExtent": [12, 20],
+ "polygon": [
+ [
+ [-2.7, 43.9],
+ [-6.3, 48.98],
+ [-2.25, 50.09],
+ [1.31, 50.88],
+ [2.35816, 51.32937],
+ [2.5488, 51.09759],
+ [2.57048, 51.07409],
+ [2.58741, 51.01763],
+ [2.59845, 51.0051],
+ [2.61558, 50.99749],
+ [2.63986, 50.95766],
+ [2.64225, 50.94578],
+ [2.62452, 50.9256],
+ [2.61962, 50.91067],
+ [2.62396, 50.86071],
+ [2.62781, 50.85054],
+ [2.63786, 50.83696],
+ [2.6511, 50.82906],
+ [2.73267, 50.81738],
+ [2.79995, 50.73795],
+ [2.81655, 50.73092],
+ [2.85265, 50.73335],
+ [2.89072, 50.7162],
+ [2.90492, 50.71536],
+ [2.9161, 50.72418],
+ [2.93508, 50.75592],
+ [3.00718, 50.78377],
+ [3.08218, 50.78749],
+ [3.09244, 50.79092],
+ [3.11412, 50.80566],
+ [3.14877, 50.80195],
+ [3.2154, 50.73111],
+ [3.22149, 50.7267],
+ [3.27051, 50.70375],
+ [3.27545, 50.67757],
+ [3.26576, 50.6604],
+ [3.26588, 50.64054],
+ [3.28922, 50.60028],
+ [3.29219, 50.55037],
+ [3.3056, 50.53267],
+ [3.37551, 50.50839],
+ [3.3898, 50.50884],
+ [3.4748, 50.54445],
+ [3.52173, 50.53459],
+ [3.53266, 50.51873],
+ [3.54779, 50.51012],
+ [3.61523, 50.50558],
+ [3.67378, 50.45642],
+ [3.68415, 50.35277],
+ [3.6901, 50.34044],
+ [3.70258, 50.33482],
+ [3.71576, 50.33854],
+ [3.74935, 50.36279],
+ [3.84109, 50.36558],
+ [3.90189, 50.3436],
+ [3.91317, 50.34291],
+ [4.02672, 50.36904],
+ [4.13761, 50.29984],
+ [4.14388, 50.29727],
+ [4.21444, 50.28167],
+ [4.22904, 50.26664],
+ [4.23078, 50.25233],
+ [4.17084, 50.18579],
+ [4.16601, 50.16888],
+ [4.1764, 50.1547],
+ [4.21195, 50.13602],
+ [4.24074, 50.07102],
+ [4.23193, 50.05551],
+ [4.18164, 50.03436],
+ [4.17177, 50.02537],
+ [4.16976, 50.01217],
+ [4.1765, 50.00065],
+ [4.20633, 49.97546],
+ [4.22164, 49.97089],
+ [4.30877, 49.98145],
+ [4.44542, 49.9523],
+ [4.45469, 49.95251],
+ [4.6581, 50.00609],
+ [4.66936, 50.01392],
+ [4.67293, 50.02716],
+ [4.66924, 50.06972],
+ [4.69517, 50.10472],
+ [4.83123, 50.17941],
+ [4.8815, 50.16436],
+ [4.90479, 50.14451],
+ [4.90426, 50.12639],
+ [4.88076, 50.0815],
+ [4.86277, 50.0745],
+ [4.85104, 50.06216],
+ [4.84331, 50.03884],
+ [4.84331, 50.03883],
+ [4.8433, 50.03881],
+ [4.82678, 49.989],
+ [4.82662, 49.97692],
+ [4.83343, 49.96696],
+ [4.89654, 49.91753],
+ [4.89755, 49.89424],
+ [4.87913, 49.86942],
+ [4.87625, 49.85111],
+ [4.88924, 49.81266],
+ [4.89769, 49.80204],
+ [4.91098, 49.79926],
+ [4.99534, 49.81116],
+ [5.01867, 49.79272],
+ [5.02686, 49.78886],
+ [5.09944, 49.77323],
+ [5.13458, 49.73462],
+ [5.1412, 49.72984],
+ [5.18761, 49.70906],
+ [5.19602, 49.70732],
+ [5.28157, 49.70836],
+ [5.33363, 49.67308],
+ [5.344, 49.65049],
+ [5.3544, 49.64041],
+ [5.43141, 49.60791],
+ [5.48205, 49.52815],
+ [5.49294, 49.51979],
+ [5.50666, 49.52042],
+ [5.55401, 49.54025],
+ [5.59311, 49.53424],
+ [5.6076, 49.53761],
+ [5.641, 49.56095],
+ [5.70676, 49.55267],
+ [5.71578, 49.55361],
+ [5.77526, 49.57414],
+ [5.8399, 49.55321],
+ [5.86126, 49.52038],
+ [5.876, 49.5114],
+ [5.97516, 49.50129],
+ [5.99801, 49.47317],
+ [6.01627, 49.46597],
+ [6.08635, 49.47562],
+ [6.09319, 49.47787],
+ [6.17397, 49.52187],
+ [6.24643, 49.52511],
+ [6.334, 49.48235],
+ [6.34423, 49.48037],
+ [6.43515, 49.487],
+ [6.5451, 49.44384],
+ [6.60639, 49.37868],
+ [6.60497, 49.33739],
+ [6.61627, 49.31869],
+ [6.67013, 49.29269],
+ [6.72996, 49.22917],
+ [6.74328, 49.19086],
+ [6.76026, 49.17752],
+ [6.80904, 49.17284],
+ [6.82473, 49.17826],
+ [6.83093, 49.19366],
+ [6.82982, 49.21802],
+ [6.85119, 49.23136],
+ [6.88453, 49.2239],
+ [6.89322, 49.22389],
+ [6.93753, 49.23369],
+ [7.04055, 49.19794],
+ [7.0463, 49.17503],
+ [7.05478, 49.16313],
+ [7.06908, 49.16018],
+ [7.10494, 49.16634],
+ [7.14315, 49.14159],
+ [7.1535, 49.13839],
+ [7.28683, 49.13488],
+ [7.29893, 49.13856],
+ [7.36095, 49.18259],
+ [7.45012, 49.19517],
+ [7.50113, 49.17672],
+ [7.54379, 49.10572],
+ [7.5579, 49.09626],
+ [7.6296, 49.08527],
+ [7.64722, 49.06722],
+ [7.6612, 49.06119],
+ [7.75401, 49.05963],
+ [7.76073, 49.06067],
+ [7.80291, 49.07489],
+ [7.85525, 49.05329],
+ [7.8673, 49.05227],
+ [7.93826, 49.06832],
+ [8.08069, 49.00688],
+ [8.2225, 48.98787],
+ [8.23704, 48.97683],
+ [8.23589, 48.95817],
+ [8.20888, 48.94863],
+ [8.20089, 48.94339],
+ [8.15824, 48.89753],
+ [8.10087, 48.7993],
+ [7.99071, 48.74478],
+ [7.98534, 48.7409],
+ [7.90422, 48.65865],
+ [7.85605, 48.63606],
+ [7.8484, 48.62977],
+ [7.81842, 48.58883],
+ [7.81456, 48.57704],
+ [7.81449, 48.50968],
+ [7.78547, 48.48337],
+ [7.78055, 48.47652],
+ [7.74506, 48.39484],
+ [7.74357, 48.38427],
+ [7.75159, 48.32322],
+ [7.71085, 48.29841],
+ [7.70241, 48.28803],
+ [7.67661, 48.21555],
+ [7.59605, 48.11698],
+ [7.59165, 48.10648],
+ [7.58522, 48.04694],
+ [7.59127, 48.03035],
+ [7.62437, 47.99865],
+ [7.63205, 47.97081],
+ [7.57554, 47.87436],
+ [7.5728, 47.86435],
+ [7.57267, 47.83631],
+ [7.54581, 47.78793],
+ [7.54418, 47.77232],
+ [7.55758, 47.72899],
+ [7.53526, 47.6989],
+ [7.53136, 47.68564],
+ [7.537, 47.67302],
+ [7.60016, 47.60822],
+ [7.58967, 47.56755],
+ [7.55424, 47.55128],
+ [7.54511, 47.54283],
+ [7.51256, 47.48439],
+ [7.38747, 47.42111],
+ [7.32653, 47.4273],
+ [7.24435, 47.40939],
+ [7.16708, 47.4335],
+ [7.15212, 47.47612],
+ [7.14279, 47.48707],
+ [7.12853, 47.48893],
+ [7.0801, 47.47718],
+ [7.03557, 47.48695],
+ [7.02102, 47.48458],
+ [7.01205, 47.47287],
+ [7.003, 47.44095],
+ [6.9551, 47.40808],
+ [6.94716, 47.39698],
+ [6.94818, 47.38337],
+ [6.95769, 47.37359],
+ [6.97126, 47.37218],
+ [7.018, 47.38386],
+ [7.05623, 47.37035],
+ [7.07007, 47.35005],
+ [7.05958, 47.32257],
+ [6.97424, 47.27856],
+ [6.96347, 47.26233],
+ [6.96134, 47.23479],
+ [6.89443, 47.19393],
+ [6.88913, 47.18922],
+ [6.85545, 47.14636],
+ [6.76907, 47.10751],
+ [6.76011, 47.09953],
+ [6.72561, 47.0418],
+ [6.62355, 46.9811],
+ [6.4812, 46.9445],
+ [6.46892, 46.93522],
+ [6.46686, 46.91997],
+ [6.47548, 46.88771],
+ [6.4535, 46.8239],
+ [6.45644, 46.80534],
+ [6.46722, 46.79104],
+ [6.46098, 46.76887],
+ [6.15817, 46.59343],
+ [6.14872, 46.58069],
+ [6.15152, 46.56508],
+ [6.16549, 46.54399],
+ [6.15811, 46.52456],
+ [6.10174, 46.46979],
+ [6.09572, 46.45418],
+ [6.09704, 46.43317],
+ [6.10829, 46.41643],
+ [6.16622, 46.38839],
+ [6.17817, 46.36922],
+ [6.13748, 46.31297],
+ [6.13371, 46.30227],
+ [6.13038, 46.23737],
+ [6.1103, 46.22344],
+ [6.08865, 46.23081],
+ [6.07717, 46.23123],
+ [6.01857, 46.21601],
+ [6.00681, 46.20752],
+ [6.00388, 46.19332],
+ [6.00787, 46.16977],
+ [6.01783, 46.15564],
+ [6.03509, 46.15456],
+ [6.05564, 46.16288],
+ [6.12468, 46.15415],
+ [6.13778, 46.15702],
+ [6.24026, 46.22094],
+ [6.24906, 46.23299],
+ [6.24707, 46.24777],
+ [6.21148, 46.31057],
+ [6.21219, 46.32485],
+ [6.23946, 46.36705],
+ [6.31648, 46.41557],
+ [6.41083, 46.42495],
+ [6.41748, 46.42682],
+ [6.50498, 46.46871],
+ [6.63047, 46.47435],
+ [6.74665, 46.45695],
+ [6.82244, 46.42925],
+ [6.81832, 46.38181],
+ [6.80484, 46.36179],
+ [6.80189, 46.34639],
+ [6.81095, 46.33359],
+ [6.86491, 46.30038],
+ [6.87504, 46.28007],
+ [6.86092, 46.2439],
+ [6.82698, 46.21188],
+ [6.82075, 46.19862],
+ [6.81863, 46.16592],
+ [6.82259, 46.15261],
+ [6.83427, 46.14509],
+ [6.90382, 46.12971],
+ [6.90491, 46.09595],
+ [6.90932, 46.08406],
+ [6.92001, 46.07721],
+ [6.94898, 46.0699],
+ [7.01556, 46.00883],
+ [7.05191, 45.93066],
+ [7.04533, 45.92217],
+ [7.04497, 45.92064],
+ [7.04394, 45.92036],
+ [6.99582, 45.85822],
+ [6.94097, 45.83551],
+ [6.84376, 45.82387],
+ [6.83102, 45.81711],
+ [6.82614, 45.80353],
+ [6.82787, 45.73217],
+ [6.83174, 45.72082],
+ [6.8414, 45.71373],
+ [6.90729, 45.69124],
+ [6.92419, 45.66935],
+ [6.94247, 45.66172],
+ [6.97131, 45.66528],
+ [7.00597, 45.64945],
+ [7.01151, 45.63652],
+ [6.9978, 45.60877],
+ [6.99643, 45.59465],
+ [7.0158, 45.52354],
+ [7.02774, 45.5102],
+ [7.1072, 45.47877],
+ [7.1228, 45.44924],
+ [7.13304, 45.44001],
+ [7.1856, 45.41894],
+ [7.19515, 45.40409],
+ [7.17075, 45.35069],
+ [7.14232, 45.32298],
+ [7.13649, 45.30576],
+ [7.14458, 45.25048],
+ [7.08417, 45.20279],
+ [6.99279, 45.19823],
+ [6.98106, 45.19368],
+ [6.90009, 45.12689],
+ [6.85843, 45.11699],
+ [6.78283, 45.14228],
+ [6.77056, 45.14242],
+ [6.67751, 45.11356],
+ [6.6653, 45.10289],
+ [6.66501, 45.08667],
+ [6.68237, 45.04558],
+ [6.69602, 45.03395],
+ [6.75744, 45.01884],
+ [6.78375, 44.9146],
+ [6.7942, 44.90161],
+ [6.86698, 44.86519],
+ [6.8798, 44.86346],
+ [6.93633, 44.87461],
+ [7.01795, 44.84402],
+ [7.03453, 44.82282],
+ [7.03711, 44.75009],
+ [7.0496, 44.73226],
+ [7.07224, 44.72311],
+ [7.08651, 44.6968],
+ [7.08666, 44.68085],
+ [7.07671, 44.67134],
+ [6.99007, 44.67203],
+ [6.97413, 44.66431],
+ [6.97056, 44.64696],
+ [6.97819, 44.61784],
+ [6.94659, 44.57124],
+ [6.88235, 44.53479],
+ [6.87233, 44.5195],
+ [6.87892, 44.50245],
+ [6.95894, 44.43129],
+ [6.95872, 44.42908],
+ [6.92167, 44.41436],
+ [6.91223, 44.40659],
+ [6.90907, 44.39477],
+ [6.90972, 44.38195],
+ [6.91637, 44.36804],
+ [6.99909, 44.29414],
+ [7.01181, 44.256],
+ [7.01983, 44.24558],
+ [7.03259, 44.2424],
+ [7.07312, 44.2461],
+ [7.1651, 44.22112],
+ [7.24533, 44.18544],
+ [7.26053, 44.16682],
+ [7.27537, 44.15947],
+ [7.33878, 44.1574],
+ [7.36278, 44.13834],
+ [7.37776, 44.13416],
+ [7.56283, 44.15792],
+ [7.5642, 44.15836],
+ [7.56478, 44.15817],
+ [7.60548, 44.1634],
+ [7.6162, 44.16827],
+ [7.63989, 44.18928],
+ [7.68608, 44.1861],
+ [7.69422, 44.17795],
+ [7.68937, 44.13869],
+ [7.69445, 44.12276],
+ [7.72786, 44.08615],
+ [7.72403, 44.05704],
+ [7.68603, 44.02371],
+ [7.68077, 44.0164],
+ [7.66016, 43.9672],
+ [7.59624, 43.94466],
+ [7.58419, 43.93287],
+ [7.56858, 43.89159],
+ [7.5271, 43.87434],
+ [7.51649, 43.86397],
+ [7.51594, 43.84915],
+ [7.53622, 43.79234],
+ [9.8, 43.1],
+ [9.63227, 41.43244],
+ [9.36968, 41.35052],
+ [9.27311, 41.29196],
+ [8.94186, 41.27688],
+ [5.8, 41.64],
+ [3.17358, 42.41768],
+ [3.16081, 42.42757],
+ [3.0944, 42.41457],
+ [3.03402, 42.45331],
+ [3.02214, 42.45645],
+ [2.87822, 42.4487],
+ [2.87019, 42.44653],
+ [2.78424, 42.40256],
+ [2.7413, 42.41128],
+ [2.72928, 42.40998],
+ [2.69331, 42.39417],
+ [2.68378, 42.3854],
+ [2.68162, 42.37263],
+ [2.68585, 42.34679],
+ [2.66719, 42.33008],
+ [2.58106, 42.34418],
+ [2.56777, 42.34173],
+ [2.5338, 42.32197],
+ [2.47795, 42.32986],
+ [2.41933, 42.37658],
+ [2.41222, 42.38021],
+ [2.26719, 42.42055],
+ [2.25973, 42.42117],
+ [2.20694, 42.41558],
+ [2.20653, 42.41526],
+ [2.20526, 42.41541],
+ [2.16028, 42.41065],
+ [2.14881, 42.40545],
+ [2.09393, 42.35474],
+ [2.00861, 42.33818],
+ [1.965, 42.36473],
+ [1.93076, 42.42442],
+ [1.92089, 42.43302],
+ [1.88467, 42.44761],
+ [1.88459, 42.44762],
+ [1.88444, 42.4477],
+ [1.82774, 42.47056],
+ [1.72567, 42.48452],
+ [1.71561, 42.50125],
+ [1.7272, 42.56103],
+ [1.72479, 42.57499],
+ [1.71011, 42.59992],
+ [1.69377, 42.60975],
+ [1.60283, 42.61382],
+ [1.56069, 42.6392],
+ [1.54636, 42.64166],
+ [1.50444, 42.6331],
+ [1.4921, 42.62502],
+ [1.47238, 42.59703],
+ [1.43792, 42.59264],
+ [1.41936, 42.60643],
+ [1.38032, 42.67415],
+ [1.37335, 42.68127],
+ [1.33313, 42.70563],
+ [1.32364, 42.7085],
+ [1.23221, 42.71248],
+ [1.16554, 42.69928],
+ [1.08546, 42.76635],
+ [1.07564, 42.77079],
+ [0.95937, 42.78852],
+ [0.95073, 42.78794],
+ [0.92265, 42.7797],
+ [0.84606, 42.8157],
+ [0.71511, 42.8464],
+ [0.70017, 42.84402],
+ [0.69117, 42.83186],
+ [0.67409, 42.76479],
+ [0.67474, 42.75286],
+ [0.69192, 42.70684],
+ [0.669, 42.67901],
+ [0.43024, 42.67863],
+ [0.3715, 42.70308],
+ [0.35954, 42.70415],
+ [0.34912, 42.69817],
+ [0.32567, 42.67274],
+ [0.29571, 42.66388],
+ [0.24594, 42.70175],
+ [0.23972, 42.70494],
+ [0.18967, 42.72039],
+ [0.17919, 42.72075],
+ [-0.01993, 42.67389],
+ [-0.06726, 42.6848],
+ [-0.16949, 42.77157],
+ [-0.29987, 42.82697],
+ [-0.31683, 42.82635],
+ [-0.39208, 42.78766],
+ [-0.44354, 42.78453],
+ [-0.48842, 42.80255],
+ [-0.50868, 42.79935],
+ [-0.54499, 42.76906],
+ [-0.56721, 42.76937],
+ [-0.67446, 42.86392],
+ [-0.68094, 42.86775],
+ [-0.73372, 42.88666],
+ [-0.7476, 42.93879],
+ [-0.75711, 42.95107],
+ [-0.77253, 42.95284],
+ [-0.82114, 42.93865],
+ [-0.94508, 42.94192],
+ [-1.02313, 42.98206],
+ [-1.10852, 43.00409],
+ [-1.1156, 43.00461],
+ [-1.14775, 43.00124],
+ [-1.15845, 43.01452],
+ [-1.16736, 43.02083],
+ [-1.21622, 43.0381],
+ [-1.22612, 43.03898],
+ [-1.26236, 43.03303],
+ [-1.30643, 43.05531],
+ [-1.31992, 43.05696],
+ [-1.33135, 43.0496],
+ [-1.3542, 43.0197],
+ [-1.43868, 43.03371],
+ [-1.4775, 43.06889],
+ [-1.48311, 43.08561],
+ [-1.47641, 43.10248],
+ [-1.43479, 43.13087],
+ [-1.42732, 43.1404],
+ [-1.39411, 43.22935],
+ [-1.39531, 43.24596],
+ [-1.40868, 43.25591],
+ [-1.52629, 43.28099],
+ [-1.54626, 43.2737],
+ [-1.57149, 43.2412],
+ [-1.61053, 43.24223],
+ [-1.65, 43.29323],
+ [-1.66953, 43.30065],
+ [-1.73359, 43.28856],
+ [-1.75606, 43.31966],
+ [-1.76297, 43.32565],
+ [-1.79156, 43.34067],
+ [-1.80099, 43.37017],
+ [-1.78509, 43.39037],
+ [-1.7835, 43.39686],
+ [-2.7, 43.9]
+ ]
+ ],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/FR:Servers/tile.openstreetmap.fr#Route500.E2.84.A2.C2.A9.C2.AE",
+ "terms_text": "Tiles © cquest@Openstreetmap France, data © IGN, LO/OL",
+ "description": "Routes du réseau classé (autoroutes, nationales, départementales)",
+ "overlay": true
+ },
+ {
+ "id": "santana_do_ipanema",
+ "name": "Santana do Ipanema AL",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Santana%20do%20Ipanema&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-37.20224, -9.41356],
+ [-37.20188, -9.37768],
+ [-37.20208, -9.37455],
+ [-37.20192, -9.36733],
+ [-37.20169, -9.36045],
+ [-37.20172, -9.35501],
+ [-37.20195, -9.35101],
+ [-37.20191, -9.34773],
+ [-37.20175, -9.33835],
+ [-37.2017, -9.33505],
+ [-37.20171, -9.33301],
+ [-37.20142, -9.32833],
+ [-37.20121, -9.32469],
+ [-37.20117, -9.32351],
+ [-37.21425, -9.32346],
+ [-37.21537, -9.3234],
+ [-37.22078, -9.32328],
+ [-37.23727, -9.32313],
+ [-37.25181, -9.32293],
+ [-37.2656, -9.32276],
+ [-37.2803, -9.32259],
+ [-37.29191, -9.32245],
+ [-37.29205, -9.33522],
+ [-37.29304, -9.4122],
+ [-37.28357, -9.41235],
+ [-37.27789, -9.4125],
+ [-37.2716, -9.41249],
+ [-37.26506, -9.41262],
+ [-37.26165, -9.41274],
+ [-37.25499, -9.41276],
+ [-37.24991, -9.41296],
+ [-37.24616, -9.41297],
+ [-37.24108, -9.41303],
+ [-37.23461, -9.41321],
+ [-37.2284, -9.41325],
+ [-37.22165, -9.41335],
+ [-37.21686, -9.41346],
+ [-37.21292, -9.41343],
+ [-37.20224, -9.41356]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "Sao_miguel_dos_campos",
+ "name": "São Miguel dos Campos AL",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Sao_miguel_dos_campos&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-36.1415, -9.83171],
+ [-36.05047, -9.83246],
+ [-36.04959, -9.74246],
+ [-36.14059, -9.74166],
+ [-36.1415, -9.83171]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "GEOSN-DOP-RGB",
+ "name": "Saxony latest aerial imagery",
+ "type": "wms",
+ "template": "https://geodienste.sachsen.de/wms_geosn_dop-rgb/guest?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=sn_dop_020&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [13.54901, 50.69792],
+ [13.84251, 50.71126],
+ [13.93239, 50.74504],
+ [14.04614, 50.79389],
+ [14.25257, 50.85953],
+ [14.40002, 50.88966],
+ [14.42671, 50.9357],
+ [14.35649, 50.97197],
+ [14.32559, 50.99319],
+ [14.27504, 50.99054],
+ [14.31577, 51.04266],
+ [14.41547, 51.01263],
+ [14.51939, 51.0038],
+ [14.5882, 50.9817],
+ [14.54467, 50.91977],
+ [14.57977, 50.90649],
+ [14.64718, 50.92243],
+ [14.64437, 50.90915],
+ [14.60505, 50.85687],
+ [14.7202, 50.81785],
+ [14.81008, 50.81341],
+ [14.85642, 50.89055],
+ [14.91259, 50.94721],
+ [14.99685, 51.08679],
+ [15.05303, 51.24793],
+ [15.05583, 51.29274],
+ [14.99264, 51.34452],
+ [14.98843, 51.398],
+ [14.97719, 51.45754],
+ [14.90979, 51.49603],
+ [14.73986, 51.5371],
+ [14.73986, 51.59122],
+ [14.70054, 51.60605],
+ [14.67948, 51.5982],
+ [14.68369, 51.57813],
+ [14.67386, 51.55806],
+ [14.61769, 51.55718],
+ [14.58399, 51.59035],
+ [14.51939, 51.56941],
+ [14.43513, 51.5598],
+ [14.327, 51.52574],
+ [14.13461, 51.55544],
+ [14.0672, 51.49952],
+ [14.02788, 51.47854],
+ [14.04333, 51.45229],
+ [13.99558, 51.39274],
+ [13.95767, 51.40588],
+ [13.88886, 51.38836],
+ [13.72455, 51.37434],
+ [13.55463, 51.39274],
+ [13.40437, 51.45929],
+ [13.35241, 51.43916],
+ [13.3159, 51.44354],
+ [13.28641, 51.41815],
+ [13.22602, 51.40063],
+ [13.21339, 51.46104],
+ [13.219, 51.52661],
+ [13.17406, 51.5982],
+ [13.00274, 51.67751],
+ [12.90584, 51.65312],
+ [12.90303, 51.66619],
+ [12.85388, 51.69318],
+ [12.76401, 51.65922],
+ [12.68817, 51.67054],
+ [12.64324, 51.62959],
+ [12.57723, 51.63046],
+ [12.42557, 51.61041],
+ [12.23037, 51.57028],
+ [12.17701, 51.53011],
+ [12.13909, 51.46017],
+ [12.16718, 51.41727],
+ [12.1742, 51.33487],
+ [12.13207, 51.3182],
+ [12.18684, 51.21364],
+ [12.15875, 51.18812],
+ [12.22054, 51.09296],
+ [12.49017, 51.05414],
+ [12.52106, 50.99319],
+ [12.60532, 50.97286],
+ [12.62639, 50.91889],
+ [12.50281, 50.91092],
+ [12.23739, 50.81874],
+ [12.21352, 50.72993],
+ [12.28654, 50.665],
+ [12.21773, 50.6463],
+ [12.13347, 50.6276],
+ [12.05343, 50.56342],
+ [12.01972, 50.64719],
+ [11.85963, 50.54825],
+ [11.87649, 50.50808],
+ [11.92704, 50.5054],
+ [11.93687, 50.48664],
+ [11.87087, 50.44194],
+ [11.93406, 50.39989],
+ [11.96917, 50.33987],
+ [12.12083, 50.29773],
+ [12.17279, 50.3067],
+ [12.18543, 50.26094],
+ [12.21212, 50.25375],
+ [12.25705, 50.21603],
+ [12.28233, 50.15668],
+ [12.35535, 50.15848],
+ [12.35535, 50.22142],
+ [12.41433, 50.28158],
+ [12.51123, 50.34705],
+ [12.53791, 50.38735],
+ [12.67835, 50.40257],
+ [12.71205, 50.38646],
+ [12.7289, 50.39631],
+ [12.75699, 50.42584],
+ [12.78648, 50.43389],
+ [12.81737, 50.41779],
+ [12.84686, 50.43657],
+ [12.94797, 50.38735],
+ [13.00976, 50.41421],
+ [13.04627, 50.44999],
+ [13.0561, 50.48753],
+ [13.21479, 50.49289],
+ [13.27517, 50.56609],
+ [13.34118, 50.56877],
+ [13.39173, 50.61334],
+ [13.47739, 50.58571],
+ [13.54761, 50.63473],
+ [13.56867, 50.67212],
+ [13.54901, 50.69792]
+ ]
+ ],
+ "terms_url": "https://geoportal.sachsen.de/cps/metadaten_portal.html?id=cd01c334-7e32-482f-bd43-af286707178a",
+ "terms_text": "Staatsbetrieb Geobasisinformation und Vermessung Sachsen",
+ "best": true,
+ "icon": "data:image/png;base64,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"
+ },
+ {
+ "id": "Geodatastyrelsen_Denmark",
+ "name": "SDFE aerial imagery",
+ "type": "tms",
+ "template": "https://osmtools.septima.dk/mapproxy/tiles/1.0.0/kortforsyningen_ortoforaar/EPSG3857/{zoom}/{x}/{y}.jpeg",
+ "scaleExtent": [0, 21],
+ "polygon": [
+ [
+ [8.37439, 54.95517],
+ [8.36838, 55.40421],
+ [8.2104, 55.40398],
+ [8.20873, 55.49373],
+ [8.05027, 55.49247],
+ [8.01851, 56.75014],
+ [8.18192, 56.75099],
+ [8.17633, 57.02089],
+ [8.34133, 57.02199],
+ [8.33925, 57.11196],
+ [8.50544, 57.11232],
+ [8.50339, 57.20205],
+ [9.33163, 57.20276],
+ [9.33191, 57.29248],
+ [9.49789, 57.29196],
+ [9.49886, 57.38206],
+ [9.66497, 57.38116],
+ [9.66873, 57.56056],
+ [9.8352, 57.55963],
+ [9.83749, 57.64933],
+ [10.17257, 57.64628],
+ [10.17542, 57.73678],
+ [10.51183, 57.73303],
+ [10.51521, 57.82289],
+ [10.68349, 57.82077],
+ [10.67516, 57.6412],
+ [10.5077, 57.64331],
+ [10.504, 57.55351],
+ [10.67104, 57.55141],
+ [10.65078, 57.10245],
+ [10.48577, 57.10451],
+ [10.47862, 56.92491],
+ [10.3144, 56.92676],
+ [10.31123, 56.83693],
+ [10.47503, 56.83509],
+ [10.4649, 56.56567],
+ [10.95242, 56.55898],
+ [10.94792, 56.46922],
+ [11.10993, 56.46647],
+ [11.10526, 56.37683],
+ [10.94299, 56.37953],
+ [10.93412, 56.19948],
+ [10.77197, 56.20202],
+ [10.76948, 56.11201],
+ [10.60797, 56.11503],
+ [10.44667, 56.11672],
+ [10.28659, 56.11868],
+ [10.28315, 56.02819],
+ [10.44393, 56.02704],
+ [10.44177, 55.75792],
+ [10.4335, 55.66935],
+ [10.74381, 55.66469],
+ [10.74381, 55.57123],
+ [10.8969, 55.57123],
+ [10.90518, 55.39539],
+ [11.06137, 55.38128],
+ [11.0593, 55.11241],
+ [11.04586, 55.03186],
+ [11.20308, 55.02475],
+ [11.20308, 55.11714],
+ [11.0593, 55.11241],
+ [11.06137, 55.38128],
+ [11.07896, 55.57123],
+ [10.8969, 55.57123],
+ [10.92587, 55.66702],
+ [10.74381, 55.66469],
+ [10.75623, 55.75792],
+ [10.44177, 55.75792],
+ [10.44393, 56.02704],
+ [10.44667, 56.11672],
+ [10.60797, 56.11503],
+ [10.60521, 56.02475],
+ [10.92587, 56.02012],
+ [10.91971, 55.93094],
+ [11.08028, 55.92792],
+ [11.08581, 56.01783],
+ [11.7265, 56.00506],
+ [11.732, 56.09521],
+ [12.05403, 56.08713],
+ [12.06085, 56.17626],
+ [12.70235, 56.15944],
+ [12.66111, 55.71143],
+ [12.97923, 55.7014],
+ [12.96129, 55.52173],
+ [12.32687, 55.54121],
+ [12.32061, 55.45137],
+ [12.47782, 55.44707],
+ [12.47024, 55.35705],
+ [12.62697, 55.35238],
+ [12.62009, 55.26326],
+ [12.46273, 55.26722],
+ [12.45529, 55.17782],
+ [12.2987, 55.18223],
+ [12.28973, 55.09236],
+ [12.60486, 55.08329],
+ [12.5872, 54.90363],
+ [12.27666, 54.9119],
+ [12.26102, 54.73316],
+ [12.10707, 54.73782],
+ [12.08586, 54.46817],
+ [11.7795, 54.47536],
+ [11.78374, 54.56548],
+ [11.16585, 54.57822],
+ [11.17064, 54.66865],
+ [10.86172, 54.6734],
+ [10.86512, 54.76347],
+ [10.77136, 54.76439],
+ [10.77073, 54.73728],
+ [10.75514, 54.73758],
+ [10.7544, 54.71957],
+ [10.73891, 54.71976],
+ [10.73844, 54.71085],
+ [10.70745, 54.7113],
+ [10.70411, 54.67567],
+ [10.5511, 54.67817],
+ [10.55472, 54.76702],
+ [10.2424, 54.77059],
+ [10.24598, 54.86047],
+ [10.09023, 54.86221],
+ [10.08737, 54.77239],
+ [9.15558, 54.77696],
+ [9.15628, 54.86754],
+ [8.5322, 54.86638],
+ [8.53143, 54.95516],
+ [8.37439, 54.95517]
+ ],
+ [
+ [11.45777, 56.81955],
+ [11.78492, 56.81274],
+ [11.77167, 56.63328],
+ [11.44596, 56.64011],
+ [11.45777, 56.81955]
+ ],
+ [
+ [11.32747, 57.3613],
+ [11.31618, 57.1818],
+ [11.15087, 57.18473],
+ [11.14566, 57.09496],
+ [10.81577, 57.10017],
+ [10.82906, 57.36953],
+ [11.32747, 57.3613]
+ ],
+ [
+ [11.58433, 56.27779],
+ [11.57829, 56.18804],
+ [11.73923, 56.18458],
+ [11.74564, 56.27432],
+ [11.58433, 56.27779]
+ ],
+ [
+ [14.68259, 55.36394],
+ [14.83952, 55.35652],
+ [14.82638, 55.26713],
+ [15.13934, 55.25174],
+ [15.1532, 55.34108],
+ [15.30992, 55.33306],
+ [15.29572, 55.24374],
+ [15.13934, 55.25174],
+ [15.12556, 55.16238],
+ [15.28158, 55.15442],
+ [15.25356, 54.97576],
+ [14.63175, 55.00625],
+ [14.68259, 55.36394]
+ ]
+ ],
+ "terms_url": "https://download.kortforsyningen.dk/content/vilkaar-og-betingelser",
+ "terms_text": "Geodatastyrelsen og Danske Kommuner",
+ "best": true,
+ "icon": "data:image/png;base64,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"
+ },
+ {
+ "id": "Sicily-ATA2007",
+ "name": "Sicily - Italy",
+ "type": "wms",
+ "template": "http://map.sitr.regione.sicilia.it/ArcGIS/services/WGS84_F33/Ortofoto_ATA20072008_f33/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=0&STYLES=default&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [15.71165, 38.25894],
+ [15.23718, 38.81938],
+ [14.27124, 38.55246],
+ [13.15063, 38.75408],
+ [11.96411, 37.97451],
+ [12.52441, 37.54022],
+ [11.87897, 36.79609],
+ [12.49695, 35.47409],
+ [12.68921, 35.46962],
+ [14.57336, 36.66401],
+ [15.29709, 36.62875],
+ [15.39854, 37.42171],
+ [15.71165, 38.25894]
+ ]
+ ]
+ },
+ {
+ "id": "sc2012",
+ "name": "SIG Santa Catarina OrtoRGB 2012",
+ "type": "wms",
+ "template": "http://sigsc.sc.gov.br:80/sigserver/SIGSC/wms?SERVICE=WMS&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OrtoRGB-Landsat-2012&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2012-01-01T00:00:00.000Z",
+ "startDate": "2012-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [-48.62488, -26.91624],
+ [-48.62416, -26.83409],
+ [-48.56163, -26.83412],
+ [-48.56165, -26.74919],
+ [-48.62675, -26.74918],
+ [-48.62715, -26.73276],
+ [-48.64126, -26.733],
+ [-48.64174, -26.70912],
+ [-48.62414, -26.70913],
+ [-48.62418, -26.50079],
+ [-48.57099, -26.50077],
+ [-48.57155, -26.47415],
+ [-48.55418, -26.47381],
+ [-48.5545, -26.45736],
+ [-48.56155, -26.45747],
+ [-48.56161, -26.41746],
+ [-48.4991, -26.41747],
+ [-48.49909, -26.25081],
+ [-48.43664, -26.25079],
+ [-48.43661, -26.20752],
+ [-48.4601, -26.20751],
+ [-48.46195, -26.1242],
+ [-48.56161, -26.12419],
+ [-48.56163, -25.95753],
+ [-48.62411, -25.95753],
+ [-48.62411, -25.94507],
+ [-48.68838, -25.94607],
+ [-48.6884, -25.95752],
+ [-49.25089, -25.95752],
+ [-49.2509, -25.9992],
+ [-49.31339, -25.9992],
+ [-49.31338, -26.0825],
+ [-49.37591, -26.0825],
+ [-49.37591, -26.12419],
+ [-49.50093, -26.12418],
+ [-49.50092, -26.16586],
+ [-49.68661, -26.16585],
+ [-49.68661, -26.12417],
+ [-49.74907, -26.08246],
+ [-49.74908, -26.04084],
+ [-49.8116, -26.04085],
+ [-49.81159, -25.99918],
+ [-49.93657, -25.99915],
+ [-49.93661, -25.98244],
+ [-50.00091, -25.98288],
+ [-50.00094, -25.99915],
+ [-50.31338, -25.99916],
+ [-50.31342, -26.04083],
+ [-50.37411, -26.04084],
+ [-50.3741, -25.9992],
+ [-50.49914, -25.99918],
+ [-50.49911, -25.98414],
+ [-50.62593, -25.98452],
+ [-50.62595, -26.04084],
+ [-50.6884, -26.04161],
+ [-50.68845, -26.12416],
+ [-50.75094, -26.12414],
+ [-50.75095, -26.20752],
+ [-51.12595, -26.20747],
+ [-51.12595, -26.24913],
+ [-51.18848, -26.24918],
+ [-51.31344, -26.33245],
+ [-51.31347, -26.62414],
+ [-51.4366, -26.62415],
+ [-51.43659, -26.56476],
+ [-51.62409, -26.5641],
+ [-51.62411, -26.5408],
+ [-51.99907, -26.5408],
+ [-52.06158, -26.49911],
+ [-52.06158, -26.45747],
+ [-52.12408, -26.45749],
+ [-52.12406, -26.41579],
+ [-52.37407, -26.4158],
+ [-52.37409, -26.39133],
+ [-52.56156, -26.3894],
+ [-52.56158, -26.37415],
+ [-52.62408, -26.37417],
+ [-52.62409, -26.33247],
+ [-53.12408, -26.33247],
+ [-53.1241, -26.31707],
+ [-53.1618, -26.3165],
+ [-53.16136, -26.29082],
+ [-53.18656, -26.29083],
+ [-53.24907, -26.24911],
+ [-53.24906, -26.23919],
+ [-53.31159, -26.23824],
+ [-53.3741, -26.22882],
+ [-53.43845, -26.22777],
+ [-53.43843, -26.24914],
+ [-53.5616, -26.24916],
+ [-53.56159, -26.23983],
+ [-53.65501, -26.23814],
+ [-53.65623, -26.29263],
+ [-53.67011, -26.31684],
+ [-53.68846, -26.33242],
+ [-53.70322, -26.3741],
+ [-53.70929, -26.38449],
+ [-53.7098, -26.39568],
+ [-53.70619, -26.40722],
+ [-53.70721, -26.45927],
+ [-53.71438, -26.46168],
+ [-53.71476, -26.48118],
+ [-53.73047, -26.49913],
+ [-53.73146, -26.54081],
+ [-53.75096, -26.5408],
+ [-53.75095, -26.62417],
+ [-53.7602, -26.62414],
+ [-53.76125, -26.6675],
+ [-53.75098, -26.66751],
+ [-53.75096, -26.74298],
+ [-53.72737, -26.7434],
+ [-53.72133, -26.74905],
+ [-53.72141, -26.75093],
+ [-53.74571, -26.75943],
+ [-53.74612, -26.77704],
+ [-53.71948, -26.77755],
+ [-53.72084, -26.83416],
+ [-53.70047, -26.83414],
+ [-53.70277, -26.93108],
+ [-53.71168, -26.93091],
+ [-53.71224, -26.95557],
+ [-53.751, -26.95479],
+ [-53.75092, -26.99915],
+ [-53.76467, -26.99915],
+ [-53.8037, -27.03751],
+ [-53.80454, -27.07258],
+ [-53.80809, -27.07249],
+ [-53.80862, -27.09613],
+ [-53.8269, -27.09577],
+ [-53.82762, -27.12414],
+ [-53.84644, -27.12413],
+ [-53.84765, -27.17014],
+ [-53.83506, -27.18932],
+ [-53.83536, -27.20054],
+ [-53.68847, -27.20284],
+ [-53.68849, -27.22789],
+ [-53.43654, -27.23246],
+ [-53.43655, -27.16751],
+ [-53.37598, -27.16751],
+ [-53.37601, -27.23352],
+ [-53.24905, -27.23564],
+ [-53.24905, -27.20922],
+ [-53.06344, -27.20918],
+ [-53.06345, -27.2334],
+ [-52.81348, -27.23685],
+ [-52.81346, -27.27653],
+ [-52.75096, -27.27732],
+ [-52.75096, -27.29249],
+ [-52.4385, -27.29252],
+ [-52.43848, -27.32689],
+ [-52.37603, -27.32753],
+ [-52.37599, -27.3342],
+ [-52.25098, -27.33418],
+ [-52.25099, -27.34669],
+ [-52.18655, -27.34728],
+ [-52.18657, -27.33419],
+ [-52.12598, -27.3342],
+ [-52.12599, -27.36413],
+ [-52.02979, -27.36489],
+ [-52.03036, -27.42442],
+ [-51.97534, -27.42479],
+ [-51.97603, -27.50088],
+ [-51.93845, -27.50085],
+ [-51.93845, -27.54252],
+ [-51.68846, -27.54247],
+ [-51.68847, -27.55742],
+ [-51.59903, -27.5579],
+ [-51.59923, -27.59481],
+ [-51.56351, -27.59498],
+ [-51.56348, -27.62586],
+ [-51.50088, -27.62586],
+ [-51.50095, -27.66754],
+ [-51.43937, -27.6675],
+ [-51.43954, -27.70932],
+ [-51.37597, -27.7095],
+ [-51.37601, -27.75089],
+ [-51.31349, -27.7509],
+ [-51.31346, -27.79253],
+ [-51.18847, -27.79251],
+ [-51.18848, -27.87586],
+ [-51.12598, -27.87586],
+ [-51.12597, -27.91752],
+ [-51.06348, -27.9175],
+ [-51.06347, -27.95919],
+ [-51.00095, -28.00086],
+ [-50.9385, -28.00086],
+ [-50.93849, -28.16755],
+ [-50.81346, -28.16752],
+ [-50.81345, -28.29253],
+ [-50.75096, -28.29251],
+ [-50.68845, -28.33418],
+ [-50.68849, -28.41754],
+ [-50.626, -28.41752],
+ [-50.56352, -28.44094],
+ [-50.43848, -28.44051],
+ [-50.43847, -28.45917],
+ [-50.37597, -28.45921],
+ [-50.37598, -28.47554],
+ [-50.18844, -28.47454],
+ [-50.18849, -28.51143],
+ [-50.12398, -28.51104],
+ [-50.12402, -28.50086],
+ [-49.87597, -28.50085],
+ [-49.87601, -28.5142],
+ [-49.81347, -28.51369],
+ [-49.81347, -28.58255],
+ [-49.83003, -28.58251],
+ [-49.82951, -28.62597],
+ [-49.8759, -28.66572],
+ [-50.001, -28.74915],
+ [-50.001, -29.04083],
+ [-50.03319, -29.04081],
+ [-50.03219, -29.14711],
+ [-50.12602, -29.14774],
+ [-50.12598, -29.16579],
+ [-50.13613, -29.16581],
+ [-50.1885, -29.19623],
+ [-50.1885, -29.31905],
+ [-50.1422, -29.31873],
+ [-50.14208, -29.33422],
+ [-50.126, -29.33418],
+ [-50.12599, -29.36238],
+ [-49.99906, -29.36153],
+ [-49.99904, -29.24031],
+ [-49.93848, -29.23986],
+ [-49.93851, -29.25087],
+ [-49.87601, -29.25087],
+ [-49.876, -29.30098],
+ [-49.82262, -29.30052],
+ [-49.82227, -29.33419],
+ [-49.81347, -29.33422],
+ [-49.81354, -29.3411],
+ [-49.68654, -29.33991],
+ [-49.68651, -29.29255],
+ [-49.62399, -29.29252],
+ [-49.62398, -29.25085],
+ [-49.56149, -29.25083],
+ [-49.56145, -29.16749],
+ [-49.49901, -29.16746],
+ [-49.49902, -29.08419],
+ [-49.4365, -29.08418],
+ [-49.43651, -29.04251],
+ [-49.37405, -29.04248],
+ [-49.37402, -28.9592],
+ [-49.31153, -28.95917],
+ [-49.31152, -28.91749],
+ [-49.24898, -28.9175],
+ [-49.24897, -28.87582],
+ [-49.18655, -28.87585],
+ [-49.18653, -28.83414],
+ [-49.12402, -28.83418],
+ [-49.12401, -28.7925],
+ [-49.06149, -28.79247],
+ [-49.06146, -28.75084],
+ [-48.99903, -28.75085],
+ [-48.99903, -28.70919],
+ [-48.93658, -28.70918],
+ [-48.93658, -28.66752],
+ [-48.87405, -28.66751],
+ [-48.87404, -28.62585],
+ [-48.74912, -28.62585],
+ [-48.74912, -28.54254],
+ [-48.68656, -28.54253],
+ [-48.68658, -28.33417],
+ [-48.62408, -28.33416],
+ [-48.62406, -28.08418],
+ [-48.5616, -28.08418],
+ [-48.56159, -27.95919],
+ [-48.49905, -27.95916],
+ [-48.49904, -27.91581],
+ [-48.56157, -27.9158],
+ [-48.5616, -27.87584],
+ [-48.49902, -27.87586],
+ [-48.49902, -27.83422],
+ [-48.43657, -27.83418],
+ [-48.43661, -27.62583],
+ [-48.37406, -27.62585],
+ [-48.37405, -27.50086],
+ [-48.31157, -27.50086],
+ [-48.31153, -27.24913],
+ [-48.43657, -27.24913],
+ [-48.43654, -27.20916],
+ [-48.37402, -27.2092],
+ [-48.37405, -27.1658],
+ [-48.43656, -27.1658],
+ [-48.43656, -27.12415],
+ [-48.49906, -27.12413],
+ [-48.49907, -27.08667],
+ [-48.50022, -27.08666],
+ [-48.50031, -27.08247],
+ [-48.5616, -27.08248],
+ [-48.56159, -27.04252],
+ [-48.49906, -27.04252],
+ [-48.49906, -26.99913],
+ [-48.56156, -26.99913],
+ [-48.56157, -26.91579],
+ [-48.62488, -26.91624]
+ ]
+ ],
+ "terms_url": "http://sigsc.sds.sc.gov.br/download/termo_sigsc.pdf",
+ "terms_text": "Sistema de Informações Geográficas - Governo de Santa Catarina"
+ },
+ {
+ "id": "SIGIP-2012",
+ "name": "SIGIP - Orthophoto 2012",
+ "type": "tms",
+ "template": "http://osmdata.asitvd.ch/tiles/sigip2012/{zoom}/{x}/{y}.png",
+ "endDate": "2012-01-01T00:00:00.000Z",
+ "startDate": "2012-01-01T00:00:00.000Z",
+ "scaleExtent": [14, 20],
+ "polygon": [
+ [
+ [6.71057, 46.54396],
+ [6.72968, 46.54408],
+ [6.72995, 46.52605],
+ [6.71085, 46.52596],
+ [6.71113, 46.50796],
+ [6.6922, 46.50788],
+ [6.6923, 46.49883],
+ [6.63531, 46.49847],
+ [6.63488, 46.52547],
+ [6.65381, 46.52558],
+ [6.65361, 46.54358],
+ [6.69163, 46.54384],
+ [6.69155, 46.55284],
+ [6.71047, 46.55293],
+ [6.71057, 46.54396]
+ ]
+ ],
+ "terms_url": "https://www.sigip.ch/",
+ "terms_text": "SIGIP"
+ },
+ {
+ "id": "Slovakia-Historic-Maps",
+ "name": "Slovakia Historic Maps",
+ "type": "tms",
+ "template": "http://tms.freemap.sk/historicke/{zoom}/{x}/{y}.png",
+ "scaleExtent": [0, 12],
+ "polygon": [
+ [
+ [16.81969, 47.49272],
+ [16.81969, 49.50303],
+ [22.83883, 49.50303],
+ [22.83883, 47.49272],
+ [16.81969, 47.49272]
+ ]
+ ],
+ "icon": "https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"
+ },
+ {
+ "id": "Soskut_Pusztazamor_Tarnok_Diosd_orto_2017",
+ "name": "Sóskút, Pusztazámor, Tárnok, Diósd ortophoto 2017",
+ "type": "tms",
+ "template": "http://adam.openstreetmap.hu/mapproxy/tiles/1.0.0/Soskut-Tarnok-Pusztazamor-Diosd/mercator/{zoom}/{x}/{y}.png",
+ "endDate": "2017-03-01T00:00:00.000Z",
+ "startDate": "2017-03-01T00:00:00.000Z",
+ "scaleExtent": [11, 20],
+ "polygon": [
+ [
+ [18.79273, 47.37079],
+ [18.79194, 47.37048],
+ [18.79139, 47.37063],
+ [18.79011, 47.37176],
+ [18.78916, 47.37345],
+ [18.78722, 47.37566],
+ [18.78603, 47.37765],
+ [18.78498, 47.37905],
+ [18.7837, 47.38032],
+ [18.78267, 47.38195],
+ [18.7814, 47.38368],
+ [18.77934, 47.38713],
+ [18.77666, 47.3894],
+ [18.76472, 47.3967],
+ [18.7617, 47.39966],
+ [18.75631, 47.40328],
+ [18.75837, 47.40653],
+ [18.7588, 47.40776],
+ [18.762, 47.41217],
+ [18.76304, 47.41315],
+ [18.76593, 47.41471],
+ [18.77041, 47.41766],
+ [18.77247, 47.41809],
+ [18.77248, 47.4203],
+ [18.8086, 47.44041],
+ [18.81742, 47.43539],
+ [18.82092, 47.43572],
+ [18.82804, 47.43755],
+ [18.83021, 47.43526],
+ [18.83585, 47.43754],
+ [18.84049, 47.43346],
+ [18.84765, 47.43572],
+ [18.851, 47.43281],
+ [18.869, 47.43961],
+ [18.87361, 47.43597],
+ [18.87499, 47.43342],
+ [18.87386, 47.43248],
+ [18.87604, 47.42797],
+ [18.8605, 47.423],
+ [18.86621, 47.41798],
+ [18.87243, 47.41086],
+ [18.8663, 47.40773],
+ [18.86964, 47.40471],
+ [18.86777, 47.40207],
+ [18.86509, 47.40052],
+ [18.87081, 47.39838],
+ [18.86772, 47.39699],
+ [18.86992, 47.39655],
+ [18.87649, 47.39478],
+ [18.87749, 47.39495],
+ [18.87867, 47.39462],
+ [18.88358, 47.38996],
+ [18.88291, 47.38967],
+ [18.88539, 47.3853],
+ [18.87748, 47.38339],
+ [18.88181, 47.37605],
+ [18.87914, 47.37393],
+ [18.88638, 47.36923],
+ [18.88206, 47.36773],
+ [18.87973, 47.36641],
+ [18.8747, 47.36252],
+ [18.87282, 47.36137],
+ [18.87028, 47.36063],
+ [18.86688, 47.35853],
+ [18.86234, 47.35637],
+ [18.85567, 47.35199],
+ [18.84874, 47.34728],
+ [18.83192, 47.33841],
+ [18.82497, 47.34258],
+ [18.8162, 47.34925],
+ [18.81079, 47.35357],
+ [18.80823, 47.356],
+ [18.80645, 47.35854],
+ [18.80708, 47.35902],
+ [18.80635, 47.36021],
+ [18.80465, 47.36175],
+ [18.80381, 47.36335],
+ [18.80055, 47.36545],
+ [18.79988, 47.36617],
+ [18.79416, 47.36975],
+ [18.79273, 47.37079]
+ ],
+ [
+ [18.91871, 47.40938],
+ [18.91826, 47.40998],
+ [18.92067, 47.41156],
+ [18.9251, 47.41372],
+ [18.93473, 47.41917],
+ [18.94063, 47.42241],
+ [18.94982, 47.41938],
+ [18.95155, 47.4175],
+ [18.9569, 47.41923],
+ [18.9577, 47.41878],
+ [18.95755, 47.41435],
+ [18.96211, 47.40507],
+ [18.96266, 47.40118],
+ [18.96316, 47.39903],
+ [18.95446, 47.39673],
+ [18.95276, 47.39526],
+ [18.95202, 47.39362],
+ [18.95119, 47.39356],
+ [18.94692, 47.39799],
+ [18.94411, 47.39845],
+ [18.94161, 47.39869],
+ [18.93735, 47.39633],
+ [18.93617, 47.39683],
+ [18.93122, 47.4],
+ [18.9312, 47.40023],
+ [18.92924, 47.40205],
+ [18.92561, 47.40605],
+ [18.92466, 47.40635],
+ [18.92293, 47.40926],
+ [18.91871, 47.40938]
+ ]
+ ],
+ "terms_url": "http://fototerkep.hu",
+ "terms_text": "Fototerkep.hu",
+ "best": true,
+ "description": "5 cm resolution bald image of 4 settlement"
+ },
+ {
+ "id": "South_Africa-CD_NGI-Aerial",
+ "name": "South Africa CD:NGI Aerial",
+ "type": "tms",
+ "template": "http://{switch:a,b,c}.aerial.openstreetmap.org.za/ngi-aerial/{zoom}/{x}/{y}.jpg",
+ "scaleExtent": [1, 22],
+ "polygon": [
+ [
+ [17.83968, -32.79834],
+ [17.88935, -32.69728],
+ [18.00364, -32.69822],
+ [18.09917, -32.74853],
+ [18.28987, -32.55266],
+ [18.29302, -32.04871],
+ [18.10545, -31.6455],
+ [17.85293, -31.3444],
+ [17.548, -30.90217],
+ [17.40445, -30.63747],
+ [17.24937, -30.39917],
+ [16.9937, -29.65436],
+ [16.7988, -29.19437],
+ [16.54941, -28.84159],
+ [16.44987, -28.69188],
+ [16.4491, -28.55158],
+ [16.60026, -28.48257],
+ [16.75141, -28.4487],
+ [16.74622, -28.2459],
+ [16.88551, -28.04729],
+ [16.99295, -28.0244],
+ [17.05297, -28.02571],
+ [17.10076, -28.03388],
+ [17.20115, -28.09305],
+ [17.20263, -28.23284],
+ [17.24746, -28.23382],
+ [17.2508, -28.19889],
+ [17.35119, -28.19759],
+ [17.35156, -28.24427],
+ [17.40158, -28.24524],
+ [17.41491, -28.34898],
+ [17.40083, -28.548],
+ [17.4527, -28.54897],
+ [17.45121, -28.64951],
+ [17.49836, -28.68721],
+ [17.60282, -28.683],
+ [17.64997, -28.69679],
+ [17.65259, -28.73815],
+ [17.80139, -28.73815],
+ [17.99943, -28.75606],
+ [18.00027, -28.79562],
+ [18.15745, -28.87181],
+ [18.50638, -28.87181],
+ [18.61536, -28.82959],
+ [18.90875, -28.82775],
+ [19.1047, -28.94885],
+ [19.19691, -28.93785],
+ [19.24301, -28.85162],
+ [19.23149, -28.80296],
+ [19.25873, -28.70099],
+ [19.44315, -28.69732],
+ [19.55003, -28.49583],
+ [19.69673, -28.49399],
+ [19.69882, -28.44794],
+ [19.85076, -28.44333],
+ [19.84971, -28.40278],
+ [19.99536, -28.39909],
+ [19.98937, -24.74979],
+ [20.29167, -24.91923],
+ [20.47246, -25.15017],
+ [20.65324, -25.45294],
+ [20.73326, -25.6802],
+ [20.8281, -25.89635],
+ [20.84292, -26.21585],
+ [20.65028, -26.48409],
+ [20.65324, -26.82049],
+ [21.08891, -26.84693],
+ [21.67277, -26.839],
+ [21.7765, -26.66963],
+ [21.97211, -26.64314],
+ [22.28034, -26.32747],
+ [22.57078, -26.1334],
+ [22.77528, -25.67752],
+ [23.00052, -25.27619],
+ [23.46583, -25.27351],
+ [23.88372, -25.59737],
+ [24.2364, -25.6134],
+ [24.60391, -25.78966],
+ [25.1107, -25.73894],
+ [25.50784, -25.68554],
+ [25.64418, -25.48238],
+ [25.84193, -24.78054],
+ [25.84664, -24.75385],
+ [26.39285, -24.63329],
+ [26.47391, -24.56533],
+ [26.509, -24.48424],
+ [26.58619, -24.40758],
+ [26.73006, -24.30145],
+ [26.85674, -24.24995],
+ [26.85744, -24.10269],
+ [26.92155, -23.8991],
+ [26.93183, -23.84619],
+ [26.97148, -23.69943],
+ [27.00061, -23.63676],
+ [27.0578, -23.60526],
+ [27.13605, -23.52034],
+ [27.33396, -23.39738],
+ [27.51441, -23.35939],
+ [27.59581, -23.20855],
+ [27.80986, -23.0995],
+ [27.88285, -23.06205],
+ [27.93829, -22.94965],
+ [28.04076, -22.82551],
+ [28.20568, -22.65529],
+ [28.33972, -22.56394],
+ [28.49061, -22.5607],
+ [28.61088, -22.54002],
+ [28.82818, -22.45502],
+ [28.92853, -22.42323],
+ [28.95941, -22.30901],
+ [29.01626, -22.20834],
+ [29.23241, -22.16935],
+ [29.35312, -22.18429],
+ [29.6549, -22.11864],
+ [29.77771, -22.1362],
+ [29.9293, -22.18494],
+ [30.11668, -22.28303],
+ [30.25634, -22.29148],
+ [30.30336, -22.33952],
+ [30.50618, -22.30576],
+ [30.83743, -22.28498],
+ [31.00586, -22.30771],
+ [31.18342, -22.32329],
+ [31.29306, -22.36746],
+ [31.56806, -23.19034],
+ [31.55683, -23.44308],
+ [31.69311, -23.61752],
+ [31.71197, -23.74114],
+ [31.77747, -23.88006],
+ [31.88863, -23.94811],
+ [31.91444, -24.17467],
+ [31.99483, -24.30409],
+ [32.01667, -24.4406],
+ [32.00773, -24.65366],
+ [32.01964, -24.91407],
+ [32.03552, -25.08498],
+ [32.01964, -25.38214],
+ [31.99285, -25.44938],
+ [31.99979, -25.51657],
+ [32.00575, -25.6079],
+ [32.00575, -25.66248],
+ [31.93627, -25.84037],
+ [31.98094, -25.95465],
+ [31.86878, -26.00373],
+ [31.41621, -25.72777],
+ [31.32291, -25.74386],
+ [31.25046, -25.82965],
+ [31.1393, -25.91627],
+ [31.11647, -25.99124],
+ [30.96561, -26.26658],
+ [30.89217, -26.32797],
+ [30.85346, -26.40356],
+ [30.82269, -26.44888],
+ [30.80226, -26.52407],
+ [30.80384, -26.80821],
+ [30.90209, -26.78075],
+ [30.91003, -26.84895],
+ [30.98249, -26.90826],
+ [30.97653, -27.00292],
+ [31.00344, -27.04416],
+ [31.15433, -27.19804],
+ [31.50156, -27.31112],
+ [31.97002, -27.31112],
+ [31.97002, -27.12047],
+ [31.97697, -27.05066],
+ [32.00025, -26.79839],
+ [32.10698, -26.79846],
+ [32.31145, -26.84795],
+ [32.89999, -26.85161],
+ [32.88609, -26.9817],
+ [32.70943, -27.47854],
+ [32.62407, -27.77751],
+ [32.5814, -28.07479],
+ [32.53872, -28.2288],
+ [32.42756, -28.50216],
+ [32.36404, -28.59457],
+ [32.07026, -28.84698],
+ [31.98788, -28.90695],
+ [31.77648, -28.96949],
+ [31.46385, -29.28593],
+ [31.35963, -29.38543],
+ [31.16808, -29.63074],
+ [31.06486, -29.78935],
+ [31.05345, -29.84705],
+ [31.06699, -29.86403],
+ [31.04555, -29.9502],
+ [30.95186, -30.00339],
+ [30.86518, -30.10241],
+ [30.72447, -30.3925],
+ [30.35563, -30.93089],
+ [30.09724, -31.24583],
+ [29.86731, -31.43043],
+ [29.74094, -31.50147],
+ [29.48131, -31.69787],
+ [28.89432, -32.28989],
+ [28.54971, -32.58946],
+ [28.14365, -32.83207],
+ [28.07487, -32.94169],
+ [27.84509, -33.08287],
+ [27.3758, -33.38607],
+ [26.88054, -33.6459],
+ [26.59169, -33.74808],
+ [26.45273, -33.79358],
+ [26.20675, -33.75489],
+ [26.00779, -33.7224],
+ [25.80555, -33.75243],
+ [25.75111, -33.80065],
+ [25.65291, -33.85436],
+ [25.65291, -33.94698],
+ [25.71958, -34.00401],
+ [25.72028, -34.05112],
+ [25.55089, -34.06315],
+ [25.35046, -34.05026],
+ [25.28106, -34.00203],
+ [25.04763, -33.99946],
+ [24.95472, -34.00436],
+ [24.94966, -34.10104],
+ [24.87704, -34.15065],
+ [24.87629, -34.20053],
+ [24.85326, -34.21896],
+ [24.76453, -34.20179],
+ [24.50014, -34.20033],
+ [24.34867, -34.11638],
+ [24.19888, -34.1019],
+ [23.99634, -34.05144],
+ [23.80175, -34.05243],
+ [23.74936, -34.01119],
+ [23.49735, -34.00901],
+ [23.41552, -34.04346],
+ [23.41543, -34.11404],
+ [22.90009, -34.0993],
+ [22.84124, -34.05479],
+ [22.64703, -34.05026],
+ [22.64598, -34.00728],
+ [22.57002, -34.00641],
+ [22.50505, -34.06459],
+ [22.252, -34.06459],
+ [22.22213, -34.10147],
+ [22.16212, -34.1057],
+ [22.17124, -34.15218],
+ [22.15769, -34.21809],
+ [22.00156, -34.21722],
+ [21.9497, -34.322],
+ [21.86115, -34.40071],
+ [21.56147, -34.40201],
+ [21.5468, -34.36612],
+ [21.50174, -34.36699],
+ [21.5007, -34.40201],
+ [21.41949, -34.44652],
+ [21.19787, -34.44782],
+ [21.09882, -34.39913],
+ [21.00337, -34.37539],
+ [20.89319, -34.39971],
+ [20.89766, -34.4854],
+ [20.74468, -34.48281],
+ [20.5042, -34.48626],
+ [20.25272, -34.70148],
+ [20.08035, -34.83619],
+ [19.99233, -34.83791],
+ [19.89907, -34.82758],
+ [19.89383, -34.7936],
+ [19.5973, -34.79618],
+ [19.39297, -34.64202],
+ [19.28771, -34.64048],
+ [19.28614, -34.59866],
+ [19.34744, -34.52445],
+ [19.32853, -34.45344],
+ [19.098, -34.44998],
+ [19.07256, -34.38024],
+ [19.00235, -34.35256],
+ [18.95206, -34.39494],
+ [18.7975, -34.39364],
+ [18.79842, -34.10164],
+ [18.50175, -34.10153],
+ [18.49995, -34.36169],
+ [18.44773, -34.362],
+ [18.44799, -34.35227],
+ [18.39744, -34.3514],
+ [18.39717, -34.3023],
+ [18.35657, -34.30056],
+ [18.34793, -34.20204],
+ [18.29721, -34.19503],
+ [18.29511, -33.99371],
+ [18.33745, -33.99141],
+ [18.34766, -33.84924],
+ [18.34793, -33.78155],
+ [18.41247, -33.74488],
+ [18.36155, -33.65016],
+ [18.2992, -33.58559],
+ [18.21668, -33.44887],
+ [18.13899, -33.39741],
+ [17.94735, -33.16026],
+ [17.88552, -33.05757],
+ [17.84859, -32.96685],
+ [17.83968, -32.85073],
+ [17.83968, -32.79834]
+ ]
+ ],
+ "best": true
+ },
+ {
+ "id": "South-Tyrol-Orthofoto2011",
+ "name": "South Tyrol Orthofoto 2011",
+ "type": "tms",
+ "template": "https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_OF_2011_EPSG3857&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg",
+ "endDate": "2011-01-01T00:00:00.000Z",
+ "startDate": "2011-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 18],
+ "polygon": [
+ [
+ [10.38615, 46.68821],
+ [10.39201, 46.69016],
+ [10.40215, 46.70624],
+ [10.41274, 46.70821],
+ [10.41622, 46.71479],
+ [10.4168, 46.71847],
+ [10.39934, 46.73435],
+ [10.43464, 46.75356],
+ [10.44107, 46.75413],
+ [10.44011, 46.77149],
+ [10.42123, 46.78861],
+ [10.42845, 46.79755],
+ [10.43851, 46.79869],
+ [10.44925, 46.80462],
+ [10.45602, 46.81635],
+ [10.45438, 46.82221],
+ [10.4583, 46.82478],
+ [10.45513, 46.83059],
+ [10.45906, 46.83548],
+ [10.46483, 46.83624],
+ [10.46229, 46.8413],
+ [10.46987, 46.84933],
+ [10.46819, 46.8553],
+ [10.47838, 46.86013],
+ [10.48372, 46.85543],
+ [10.49628, 46.85305],
+ [10.49931, 46.84857],
+ [10.52124, 46.84653],
+ [10.5527, 46.8511],
+ [10.55795, 46.84695],
+ [10.55264, 46.8408],
+ [10.55536, 46.84087],
+ [10.58883, 46.85125],
+ [10.59502, 46.85829],
+ [10.60936, 46.8597],
+ [10.62441, 46.86558],
+ [10.64858, 46.86655],
+ [10.66787, 46.87651],
+ [10.67297, 46.87138],
+ [10.69112, 46.86861],
+ [10.69786, 46.86339],
+ [10.69508, 46.85308],
+ [10.70594, 46.84786],
+ [10.71763, 46.84795],
+ [10.72333, 46.83892],
+ [10.75621, 46.83383],
+ [10.76481, 46.82409],
+ [10.76387, 46.81971],
+ [10.75239, 46.81387],
+ [10.74506, 46.80223],
+ [10.7276, 46.79709],
+ [10.73122, 46.78925],
+ [10.75722, 46.78624],
+ [10.77744, 46.79149],
+ [10.78678, 46.79735],
+ [10.81439, 46.77662],
+ [10.82479, 46.77472],
+ [10.83129, 46.78138],
+ [10.84112, 46.78282],
+ [10.85354, 46.77506],
+ [10.86845, 46.77313],
+ [10.86993, 46.7669],
+ [10.88294, 46.76393],
+ [10.88962, 46.76529],
+ [10.8951, 46.77092],
+ [10.90527, 46.76911],
+ [10.92299, 46.7764],
+ [10.92821, 46.77408],
+ [10.94388, 46.77648],
+ [10.97522, 46.77361],
+ [10.97932, 46.77014],
+ [10.99475, 46.76804],
+ [11.01397, 46.77317],
+ [11.02328, 46.76715],
+ [11.0346, 46.79428],
+ [11.04234, 46.801],
+ [11.03792, 46.80562],
+ [11.05633, 46.80928],
+ [11.07279, 46.82092],
+ [11.08171, 46.82252],
+ [11.0762, 46.83384],
+ [11.06887, 46.83793],
+ [11.07303, 46.84345],
+ [11.06988, 46.85348],
+ [11.08742, 46.87927],
+ [11.09961, 46.88922],
+ [11.09538, 46.89178],
+ [11.09795, 46.89844],
+ [11.0946, 46.91247],
+ [11.10792, 46.91706],
+ [11.10804, 46.92632],
+ [11.11418, 46.93234],
+ [11.13851, 46.92865],
+ [11.16322, 46.94091],
+ [11.16642, 46.94479],
+ [11.16114, 46.94979],
+ [11.1637, 46.96677],
+ [11.17598, 46.96367],
+ [11.18658, 46.97062],
+ [11.19527, 46.97152],
+ [11.20418, 46.96877],
+ [11.20688, 46.96403],
+ [11.22047, 46.97025],
+ [11.24139, 46.9708],
+ [11.24865, 46.97517],
+ [11.25582, 46.97535],
+ [11.26272, 46.98169],
+ [11.27662, 46.98168],
+ [11.28762, 46.98699],
+ [11.30709, 46.98525],
+ [11.3205, 46.99345],
+ [11.33765, 46.98606],
+ [11.34516, 46.99169],
+ [11.35932, 46.99154],
+ [11.37697, 46.98025],
+ [11.38324, 46.97168],
+ [11.40465, 46.96609],
+ [11.43929, 46.97601],
+ [11.45134, 46.99294],
+ [11.46803, 46.99582],
+ [11.46859, 47.003],
+ [11.47831, 47.01201],
+ [11.50238, 47.01073],
+ [11.50313, 47.00808],
+ [11.51366, 47.00595],
+ [11.51679, 47.00091],
+ [11.53381, 46.99233],
+ [11.53846, 46.98519],
+ [11.55297, 46.99149],
+ [11.57663, 46.99657],
+ [11.58, 47.00277],
+ [11.58879, 47.00641],
+ [11.59901, 47.00657],
+ [11.60944, 47.01207],
+ [11.62697, 47.01437],
+ [11.63629, 47.00383],
+ [11.66542, 46.99304],
+ [11.6885, 46.99658],
+ [11.71226, 46.99416],
+ [11.72897, 46.97322],
+ [11.74698, 46.97013],
+ [11.76411, 46.97412],
+ [11.78106, 46.99342],
+ [11.81526, 46.991],
+ [11.83564, 46.99417],
+ [11.84396, 47.0025],
+ [11.85192, 47.0014],
+ [11.86722, 47.01252],
+ [11.87393, 47.01136],
+ [11.8794, 47.01714],
+ [11.89137, 47.01728],
+ [11.91627, 47.03422],
+ [11.9329, 47.03864],
+ [11.94688, 47.03464],
+ [11.95457, 47.04374],
+ [11.96773, 47.04158],
+ [11.97912, 47.0511],
+ [11.98587, 47.04815],
+ [11.99534, 47.05064],
+ [12.02037, 47.04821],
+ [12.02968, 47.05127],
+ [12.03353, 47.0583],
+ [12.04276, 47.06228],
+ [12.07543, 47.0605],
+ [12.08035, 47.06951],
+ [12.09308, 47.07791],
+ [12.10329, 47.07931],
+ [12.11867, 47.07445],
+ [12.13561, 47.08171],
+ [12.15125, 47.08049],
+ [12.15997, 47.08267],
+ [12.18589, 47.09322],
+ [12.2278, 47.08302],
+ [12.24228, 47.06892],
+ [12.23786, 47.0644],
+ [12.21821, 47.05795],
+ [12.2182, 47.04483],
+ [12.20552, 47.02595],
+ [12.18048, 47.02414],
+ [12.16423, 47.01782],
+ [12.14786, 47.02357],
+ [12.12723, 47.01218],
+ [12.12285, 47.00662],
+ [12.1322, 46.99339],
+ [12.12974, 46.98593],
+ [12.13977, 46.982],
+ [12.13808, 46.96514],
+ [12.13328, 46.96292],
+ [12.13882, 46.95764],
+ [12.15927, 46.95133],
+ [12.1702, 46.93758],
+ [12.15414, 46.91654],
+ [12.14675, 46.91413],
+ [12.16205, 46.908],
+ [12.16959, 46.91121],
+ [12.19154, 46.90682],
+ [12.20106, 46.8965],
+ [12.2022, 46.88806],
+ [12.21663, 46.87517],
+ [12.22147, 46.88084],
+ [12.23125, 46.88146],
+ [12.2345, 46.88919],
+ [12.24162, 46.89192],
+ [12.27486, 46.88512],
+ [12.27979, 46.87921],
+ [12.27736, 46.87319],
+ [12.29326, 46.86566],
+ [12.2912, 46.85704],
+ [12.29733, 46.84455],
+ [12.30833, 46.84137],
+ [12.30726, 46.83271],
+ [12.285, 46.81503],
+ [12.29383, 46.8027],
+ [12.28905, 46.79948],
+ [12.28889, 46.79427],
+ [12.28232, 46.79153],
+ [12.28539, 46.7839],
+ [12.30943, 46.78603],
+ [12.35837, 46.77583],
+ [12.37036, 46.74163],
+ [12.38475, 46.71745],
+ [12.40283, 46.70811],
+ [12.41103, 46.70701],
+ [12.41522, 46.70163],
+ [12.42862, 46.6997],
+ [12.42943, 46.69567],
+ [12.44268, 46.68979],
+ [12.47501, 46.68756],
+ [12.4795, 46.67969],
+ [12.43473, 46.66714],
+ [12.40648, 46.64167],
+ [12.38115, 46.64183],
+ [12.37944, 46.63733],
+ [12.3915, 46.62765],
+ [12.38577, 46.62154],
+ [12.35939, 46.61829],
+ [12.34465, 46.62376],
+ [12.34034, 46.63022],
+ [12.33578, 46.62732],
+ [12.3172, 46.62876],
+ [12.31785, 46.62355],
+ [12.30802, 46.61811],
+ [12.28413, 46.61623],
+ [12.26982, 46.62003],
+ [12.25931, 46.62809],
+ [12.24502, 46.62326],
+ [12.24198, 46.61586],
+ [12.21241, 46.60918],
+ [12.20444, 46.59836],
+ [12.19228, 46.59321],
+ [12.19261, 46.62059],
+ [12.1818, 46.6192],
+ [12.17117, 46.63275],
+ [12.16062, 46.63574],
+ [12.1511, 46.63215],
+ [12.1436, 46.6327],
+ [12.13739, 46.64122],
+ [12.12342, 46.64475],
+ [12.10949, 46.65204],
+ [12.10609, 46.65783],
+ [12.09345, 46.66123],
+ [12.08826, 46.66638],
+ [12.07985, 46.66686],
+ [12.07038, 46.67386],
+ [12.07173, 46.66064],
+ [12.06686, 46.65364],
+ [12.07479, 46.64329],
+ [12.06837, 46.63997],
+ [12.06495, 46.62121],
+ [12.05448, 46.61778],
+ [12.05318, 46.60989],
+ [12.04613, 46.60716],
+ [12.05043, 46.60016],
+ [12.04763, 46.58357],
+ [12.03665, 46.57668],
+ [12.0266, 46.55871],
+ [12.02189, 46.55791],
+ [11.99941, 46.53208],
+ [11.99411, 46.53345],
+ [11.98704, 46.54417],
+ [11.96633, 46.54363],
+ [11.95094, 46.53869],
+ [11.94719, 46.52879],
+ [11.94147, 46.52689],
+ [11.93294, 46.52631],
+ [11.9121, 46.532],
+ [11.8904, 46.52175],
+ [11.85192, 46.51682],
+ [11.82849, 46.50783],
+ [11.82334, 46.51315],
+ [11.82391, 46.52141],
+ [11.81086, 46.53146],
+ [11.79385, 46.52023],
+ [11.79189, 46.51322],
+ [11.76157, 46.50503],
+ [11.74317, 46.50391],
+ [11.73202, 46.50877],
+ [11.71935, 46.50916],
+ [11.71524, 46.51245],
+ [11.69889, 46.50218],
+ [11.6672, 46.49647],
+ [11.64515, 46.49743],
+ [11.63849, 46.50051],
+ [11.63495, 46.49486],
+ [11.64297, 46.49346],
+ [11.65174, 46.48271],
+ [11.64536, 46.47189],
+ [11.64179, 46.47439],
+ [11.62679, 46.4708],
+ [11.62987, 46.46377],
+ [11.61882, 46.44325],
+ [11.62143, 46.42539],
+ [11.60161, 46.39731],
+ [11.60307, 46.38924],
+ [11.5932, 46.38265],
+ [11.56489, 46.38018],
+ [11.55878, 46.35076],
+ [11.55249, 46.34418],
+ [11.54423, 46.34483],
+ [11.53837, 46.35015],
+ [11.52445, 46.35502],
+ [11.47969, 46.36277],
+ [11.48052, 46.3551],
+ [11.46322, 46.34922],
+ [11.45556, 46.33396],
+ [11.42105, 46.32441],
+ [11.40517, 46.32387],
+ [11.39865, 46.31426],
+ [11.39994, 46.30709],
+ [11.39569, 46.3083],
+ [11.38188, 46.30052],
+ [11.36088, 46.29906],
+ [11.36078, 46.29682],
+ [11.38256, 46.29177],
+ [11.3871, 46.28143],
+ [11.39609, 46.27423],
+ [11.39862, 46.264],
+ [11.38756, 46.26029],
+ [11.37347, 46.2629],
+ [11.36836, 46.26135],
+ [11.35783, 46.26481],
+ [11.35495, 46.27564],
+ [11.33912, 46.28306],
+ [11.33379, 46.29049],
+ [11.33471, 46.2962],
+ [11.3129, 46.28256],
+ [11.31737, 46.27303],
+ [11.30645, 46.25786],
+ [11.29124, 46.2604],
+ [11.24743, 46.22933],
+ [11.20622, 46.2187],
+ [11.18267, 46.22496],
+ [11.17077, 46.23806],
+ [11.17994, 46.24434],
+ [11.18351, 46.25269],
+ [11.18935, 46.25354],
+ [11.19448, 46.2461],
+ [11.20029, 46.25566],
+ [11.16604, 46.26129],
+ [11.14885, 46.27904],
+ [11.13725, 46.28336],
+ [11.14293, 46.28934],
+ [11.15847, 46.29059],
+ [11.16439, 46.2986],
+ [11.1761, 46.30346],
+ [11.1847, 46.32104],
+ [11.18894, 46.32151],
+ [11.18696, 46.32673],
+ [11.1942, 46.33016],
+ [11.20204, 46.34212],
+ [11.19001, 46.35984],
+ [11.19263, 46.36578],
+ [11.20393, 46.36765],
+ [11.19792, 46.37232],
+ [11.21275, 46.39804],
+ [11.21345, 46.40675],
+ [11.20565, 46.4166],
+ [11.21026, 46.4206],
+ [11.20347, 46.42682],
+ [11.21416, 46.43556],
+ [11.21634, 46.44255],
+ [11.20903, 46.45293],
+ [11.21419, 46.45807],
+ [11.21736, 46.45731],
+ [11.21886, 46.46199],
+ [11.21626, 46.47277],
+ [11.20939, 46.481],
+ [11.20876, 46.49346],
+ [11.19608, 46.50241],
+ [11.1924, 46.501],
+ [11.18686, 46.50734],
+ [11.18002, 46.49823],
+ [11.17014, 46.49635],
+ [11.16095, 46.4878],
+ [11.12934, 46.48058],
+ [11.1103, 46.49643],
+ [11.10449, 46.4948],
+ [11.08812, 46.50128],
+ [11.08173, 46.53021],
+ [11.05915, 46.51508],
+ [11.03795, 46.51357],
+ [11.05006, 46.50784],
+ [11.05773, 46.49235],
+ [11.06278, 46.4894],
+ [11.06894, 46.46619],
+ [11.07625, 46.45487],
+ [11.0778, 46.44569],
+ [11.07301, 46.44042],
+ [11.05394, 46.44849],
+ [11.0414, 46.44569],
+ [11.02817, 46.46116],
+ [11.00952, 46.46917],
+ [11.00462, 46.47607],
+ [10.98695, 46.48289],
+ [10.96543, 46.48103],
+ [10.95791, 46.46983],
+ [10.93819, 46.46578],
+ [10.9325, 46.45831],
+ [10.93332, 46.4528],
+ [10.91305, 46.44284],
+ [10.89161, 46.44366],
+ [10.88324, 46.44995],
+ [10.88093, 46.44579],
+ [10.87162, 46.4438],
+ [10.86174, 46.43509],
+ [10.85113, 46.43817],
+ [10.80034, 46.44185],
+ [10.78906, 46.45164],
+ [10.77835, 46.47112],
+ [10.76934, 46.47609],
+ [10.76463, 46.4848],
+ [10.75906, 46.48547],
+ [10.74422, 46.48333],
+ [10.71753, 46.46022],
+ [10.69667, 46.4573],
+ [10.68293, 46.44846],
+ [10.66821, 46.45122],
+ [10.63303, 46.44309],
+ [10.61439, 46.45098],
+ [10.60128, 46.46139],
+ [10.59995, 46.46766],
+ [10.57672, 46.47237],
+ [10.55875, 46.48187],
+ [10.54986, 46.49123],
+ [10.53685, 46.49062],
+ [10.52657, 46.49425],
+ [10.49366, 46.49719],
+ [10.48141, 46.49337],
+ [10.45714, 46.5096],
+ [10.45124, 46.53083],
+ [10.45814, 46.54215],
+ [10.47056, 46.54377],
+ [10.46954, 46.54856],
+ [10.47617, 46.55749],
+ [10.47321, 46.56701],
+ [10.48305, 46.5777],
+ [10.48575, 46.58921],
+ [10.48221, 46.59199],
+ [10.48576, 46.59805],
+ [10.48291, 46.60512],
+ [10.49055, 46.61394],
+ [10.44632, 46.63989],
+ [10.40935, 46.63389],
+ [10.40011, 46.63648],
+ [10.39873, 46.6455],
+ [10.38946, 46.65862],
+ [10.39057, 46.67089],
+ [10.3803, 46.68399],
+ [10.38615, 46.68821]
+ ]
+ ],
+ "terms_url": "https://geoservices.buergernetz.bz.it/geokatalog",
+ "terms_text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 3.0"
+ },
+ {
+ "id": "South-Tyrol-Orthofoto2011-20cm",
+ "name": "South Tyrol Orthofoto 2011 (highres)",
+ "type": "wms",
+ "template": "https://geoservices.buergernetz.bz.it/geoserver/ows?SERVICE=WMS&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=P_BZ_OF_2011_EPSG3857,P_BZ_OF_2011_20cm_EPSG3857&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2011-01-01T00:00:00.000Z",
+ "startDate": "2011-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [10.38615, 46.68821],
+ [10.39201, 46.69016],
+ [10.40215, 46.70624],
+ [10.41274, 46.70821],
+ [10.41622, 46.71479],
+ [10.4168, 46.71847],
+ [10.39934, 46.73435],
+ [10.43464, 46.75356],
+ [10.44107, 46.75413],
+ [10.44011, 46.77149],
+ [10.42123, 46.78861],
+ [10.42845, 46.79755],
+ [10.43851, 46.79869],
+ [10.44925, 46.80462],
+ [10.45602, 46.81635],
+ [10.45438, 46.82221],
+ [10.4583, 46.82478],
+ [10.45513, 46.83059],
+ [10.45906, 46.83548],
+ [10.46483, 46.83624],
+ [10.46229, 46.8413],
+ [10.46987, 46.84933],
+ [10.46819, 46.8553],
+ [10.47838, 46.86013],
+ [10.48372, 46.85543],
+ [10.49628, 46.85305],
+ [10.49931, 46.84857],
+ [10.52124, 46.84653],
+ [10.5527, 46.8511],
+ [10.55795, 46.84695],
+ [10.55264, 46.8408],
+ [10.55536, 46.84087],
+ [10.58883, 46.85125],
+ [10.59502, 46.85829],
+ [10.60936, 46.8597],
+ [10.62441, 46.86558],
+ [10.64858, 46.86655],
+ [10.66787, 46.87651],
+ [10.67297, 46.87138],
+ [10.69112, 46.86861],
+ [10.69786, 46.86339],
+ [10.69508, 46.85308],
+ [10.70594, 46.84786],
+ [10.71763, 46.84795],
+ [10.72333, 46.83892],
+ [10.75621, 46.83383],
+ [10.76481, 46.82409],
+ [10.76387, 46.81971],
+ [10.75239, 46.81387],
+ [10.74506, 46.80223],
+ [10.7276, 46.79709],
+ [10.73122, 46.78925],
+ [10.75722, 46.78624],
+ [10.77744, 46.79149],
+ [10.78678, 46.79735],
+ [10.81439, 46.77662],
+ [10.82479, 46.77472],
+ [10.83129, 46.78138],
+ [10.84112, 46.78282],
+ [10.85354, 46.77506],
+ [10.86845, 46.77313],
+ [10.86993, 46.7669],
+ [10.88294, 46.76393],
+ [10.88962, 46.76529],
+ [10.8951, 46.77092],
+ [10.90527, 46.76911],
+ [10.92299, 46.7764],
+ [10.92821, 46.77408],
+ [10.94388, 46.77648],
+ [10.97522, 46.77361],
+ [10.97932, 46.77014],
+ [10.99475, 46.76804],
+ [11.01397, 46.77317],
+ [11.02328, 46.76715],
+ [11.0346, 46.79428],
+ [11.04234, 46.801],
+ [11.03792, 46.80562],
+ [11.05633, 46.80928],
+ [11.07279, 46.82092],
+ [11.08171, 46.82252],
+ [11.0762, 46.83384],
+ [11.06887, 46.83793],
+ [11.07303, 46.84345],
+ [11.06988, 46.85348],
+ [11.08742, 46.87927],
+ [11.09961, 46.88922],
+ [11.09538, 46.89178],
+ [11.09795, 46.89844],
+ [11.0946, 46.91247],
+ [11.10792, 46.91706],
+ [11.10804, 46.92632],
+ [11.11418, 46.93234],
+ [11.13851, 46.92865],
+ [11.16322, 46.94091],
+ [11.16642, 46.94479],
+ [11.16114, 46.94979],
+ [11.1637, 46.96677],
+ [11.17598, 46.96367],
+ [11.18658, 46.97062],
+ [11.19527, 46.97152],
+ [11.20418, 46.96877],
+ [11.20688, 46.96403],
+ [11.22047, 46.97025],
+ [11.24139, 46.9708],
+ [11.24865, 46.97517],
+ [11.25582, 46.97535],
+ [11.26272, 46.98169],
+ [11.27662, 46.98168],
+ [11.28762, 46.98699],
+ [11.30709, 46.98525],
+ [11.3205, 46.99345],
+ [11.33765, 46.98606],
+ [11.34516, 46.99169],
+ [11.35932, 46.99154],
+ [11.37697, 46.98025],
+ [11.38324, 46.97168],
+ [11.40465, 46.96609],
+ [11.43929, 46.97601],
+ [11.45134, 46.99294],
+ [11.46803, 46.99582],
+ [11.46859, 47.003],
+ [11.47831, 47.01201],
+ [11.50238, 47.01073],
+ [11.50313, 47.00808],
+ [11.51366, 47.00595],
+ [11.51679, 47.00091],
+ [11.53381, 46.99233],
+ [11.53846, 46.98519],
+ [11.55297, 46.99149],
+ [11.57663, 46.99657],
+ [11.58, 47.00277],
+ [11.58879, 47.00641],
+ [11.59901, 47.00657],
+ [11.60944, 47.01207],
+ [11.62697, 47.01437],
+ [11.63629, 47.00383],
+ [11.66542, 46.99304],
+ [11.6885, 46.99658],
+ [11.71226, 46.99416],
+ [11.72897, 46.97322],
+ [11.74698, 46.97013],
+ [11.76411, 46.97412],
+ [11.78106, 46.99342],
+ [11.81526, 46.991],
+ [11.83564, 46.99417],
+ [11.84396, 47.0025],
+ [11.85192, 47.0014],
+ [11.86722, 47.01252],
+ [11.87393, 47.01136],
+ [11.8794, 47.01714],
+ [11.89137, 47.01728],
+ [11.91627, 47.03422],
+ [11.9329, 47.03864],
+ [11.94688, 47.03464],
+ [11.95457, 47.04374],
+ [11.96773, 47.04158],
+ [11.97912, 47.0511],
+ [11.98587, 47.04815],
+ [11.99534, 47.05064],
+ [12.02037, 47.04821],
+ [12.02968, 47.05127],
+ [12.03353, 47.0583],
+ [12.04276, 47.06228],
+ [12.07543, 47.0605],
+ [12.08035, 47.06951],
+ [12.09308, 47.07791],
+ [12.10329, 47.07931],
+ [12.11867, 47.07445],
+ [12.13561, 47.08171],
+ [12.15125, 47.08049],
+ [12.15997, 47.08267],
+ [12.18589, 47.09322],
+ [12.2278, 47.08302],
+ [12.24228, 47.06892],
+ [12.23786, 47.0644],
+ [12.21821, 47.05795],
+ [12.2182, 47.04483],
+ [12.20552, 47.02595],
+ [12.18048, 47.02414],
+ [12.16423, 47.01782],
+ [12.14786, 47.02357],
+ [12.12723, 47.01218],
+ [12.12285, 47.00662],
+ [12.1322, 46.99339],
+ [12.12974, 46.98593],
+ [12.13977, 46.982],
+ [12.13808, 46.96514],
+ [12.13328, 46.96292],
+ [12.13882, 46.95764],
+ [12.15927, 46.95133],
+ [12.1702, 46.93758],
+ [12.15414, 46.91654],
+ [12.14675, 46.91413],
+ [12.16205, 46.908],
+ [12.16959, 46.91121],
+ [12.19154, 46.90682],
+ [12.20106, 46.8965],
+ [12.2022, 46.88806],
+ [12.21663, 46.87517],
+ [12.22147, 46.88084],
+ [12.23125, 46.88146],
+ [12.2345, 46.88919],
+ [12.24162, 46.89192],
+ [12.27486, 46.88512],
+ [12.27979, 46.87921],
+ [12.27736, 46.87319],
+ [12.29326, 46.86566],
+ [12.2912, 46.85704],
+ [12.29733, 46.84455],
+ [12.30833, 46.84137],
+ [12.30726, 46.83271],
+ [12.285, 46.81503],
+ [12.29383, 46.8027],
+ [12.28905, 46.79948],
+ [12.28889, 46.79427],
+ [12.28232, 46.79153],
+ [12.28539, 46.7839],
+ [12.30943, 46.78603],
+ [12.35837, 46.77583],
+ [12.37036, 46.74163],
+ [12.38475, 46.71745],
+ [12.40283, 46.70811],
+ [12.41103, 46.70701],
+ [12.41522, 46.70163],
+ [12.42862, 46.6997],
+ [12.42943, 46.69567],
+ [12.44268, 46.68979],
+ [12.47501, 46.68756],
+ [12.4795, 46.67969],
+ [12.43473, 46.66714],
+ [12.40648, 46.64167],
+ [12.38115, 46.64183],
+ [12.37944, 46.63733],
+ [12.3915, 46.62765],
+ [12.38577, 46.62154],
+ [12.35939, 46.61829],
+ [12.34465, 46.62376],
+ [12.34034, 46.63022],
+ [12.33578, 46.62732],
+ [12.3172, 46.62876],
+ [12.31785, 46.62355],
+ [12.30802, 46.61811],
+ [12.28413, 46.61623],
+ [12.26982, 46.62003],
+ [12.25931, 46.62809],
+ [12.24502, 46.62326],
+ [12.24198, 46.61586],
+ [12.21241, 46.60918],
+ [12.20444, 46.59836],
+ [12.19228, 46.59321],
+ [12.19261, 46.62059],
+ [12.1818, 46.6192],
+ [12.17117, 46.63275],
+ [12.16062, 46.63574],
+ [12.1511, 46.63215],
+ [12.1436, 46.6327],
+ [12.13739, 46.64122],
+ [12.12342, 46.64475],
+ [12.10949, 46.65204],
+ [12.10609, 46.65783],
+ [12.09345, 46.66123],
+ [12.08826, 46.66638],
+ [12.07985, 46.66686],
+ [12.07038, 46.67386],
+ [12.07173, 46.66064],
+ [12.06686, 46.65364],
+ [12.07479, 46.64329],
+ [12.06837, 46.63997],
+ [12.06495, 46.62121],
+ [12.05448, 46.61778],
+ [12.05318, 46.60989],
+ [12.04613, 46.60716],
+ [12.05043, 46.60016],
+ [12.04763, 46.58357],
+ [12.03665, 46.57668],
+ [12.0266, 46.55871],
+ [12.02189, 46.55791],
+ [11.99941, 46.53208],
+ [11.99411, 46.53345],
+ [11.98704, 46.54417],
+ [11.96633, 46.54363],
+ [11.95094, 46.53869],
+ [11.94719, 46.52879],
+ [11.94147, 46.52689],
+ [11.93294, 46.52631],
+ [11.9121, 46.532],
+ [11.8904, 46.52175],
+ [11.85192, 46.51682],
+ [11.82849, 46.50783],
+ [11.82334, 46.51315],
+ [11.82391, 46.52141],
+ [11.81086, 46.53146],
+ [11.79385, 46.52023],
+ [11.79189, 46.51322],
+ [11.76157, 46.50503],
+ [11.74317, 46.50391],
+ [11.73202, 46.50877],
+ [11.71935, 46.50916],
+ [11.71524, 46.51245],
+ [11.69889, 46.50218],
+ [11.6672, 46.49647],
+ [11.64515, 46.49743],
+ [11.63849, 46.50051],
+ [11.63495, 46.49486],
+ [11.64297, 46.49346],
+ [11.65174, 46.48271],
+ [11.64536, 46.47189],
+ [11.64179, 46.47439],
+ [11.62679, 46.4708],
+ [11.62987, 46.46377],
+ [11.61882, 46.44325],
+ [11.62143, 46.42539],
+ [11.60161, 46.39731],
+ [11.60307, 46.38924],
+ [11.5932, 46.38265],
+ [11.56489, 46.38018],
+ [11.55878, 46.35076],
+ [11.55249, 46.34418],
+ [11.54423, 46.34483],
+ [11.53837, 46.35015],
+ [11.52445, 46.35502],
+ [11.47969, 46.36277],
+ [11.48052, 46.3551],
+ [11.46322, 46.34922],
+ [11.45556, 46.33396],
+ [11.42105, 46.32441],
+ [11.40517, 46.32387],
+ [11.39865, 46.31426],
+ [11.39994, 46.30709],
+ [11.39569, 46.3083],
+ [11.38188, 46.30052],
+ [11.36088, 46.29906],
+ [11.36078, 46.29682],
+ [11.38256, 46.29177],
+ [11.3871, 46.28143],
+ [11.39609, 46.27423],
+ [11.39862, 46.264],
+ [11.38756, 46.26029],
+ [11.37347, 46.2629],
+ [11.36836, 46.26135],
+ [11.35783, 46.26481],
+ [11.35495, 46.27564],
+ [11.33912, 46.28306],
+ [11.33379, 46.29049],
+ [11.33471, 46.2962],
+ [11.3129, 46.28256],
+ [11.31737, 46.27303],
+ [11.30645, 46.25786],
+ [11.29124, 46.2604],
+ [11.24743, 46.22933],
+ [11.20622, 46.2187],
+ [11.18267, 46.22496],
+ [11.17077, 46.23806],
+ [11.17994, 46.24434],
+ [11.18351, 46.25269],
+ [11.18935, 46.25354],
+ [11.19448, 46.2461],
+ [11.20029, 46.25566],
+ [11.16604, 46.26129],
+ [11.14885, 46.27904],
+ [11.13725, 46.28336],
+ [11.14293, 46.28934],
+ [11.15847, 46.29059],
+ [11.16439, 46.2986],
+ [11.1761, 46.30346],
+ [11.1847, 46.32104],
+ [11.18894, 46.32151],
+ [11.18696, 46.32673],
+ [11.1942, 46.33016],
+ [11.20204, 46.34212],
+ [11.19001, 46.35984],
+ [11.19263, 46.36578],
+ [11.20393, 46.36765],
+ [11.19792, 46.37232],
+ [11.21275, 46.39804],
+ [11.21345, 46.40675],
+ [11.20565, 46.4166],
+ [11.21026, 46.4206],
+ [11.20347, 46.42682],
+ [11.21416, 46.43556],
+ [11.21634, 46.44255],
+ [11.20903, 46.45293],
+ [11.21419, 46.45807],
+ [11.21736, 46.45731],
+ [11.21886, 46.46199],
+ [11.21626, 46.47277],
+ [11.20939, 46.481],
+ [11.20876, 46.49346],
+ [11.19608, 46.50241],
+ [11.1924, 46.501],
+ [11.18686, 46.50734],
+ [11.18002, 46.49823],
+ [11.17014, 46.49635],
+ [11.16095, 46.4878],
+ [11.12934, 46.48058],
+ [11.1103, 46.49643],
+ [11.10449, 46.4948],
+ [11.08812, 46.50128],
+ [11.08173, 46.53021],
+ [11.05915, 46.51508],
+ [11.03795, 46.51357],
+ [11.05006, 46.50784],
+ [11.05773, 46.49235],
+ [11.06278, 46.4894],
+ [11.06894, 46.46619],
+ [11.07625, 46.45487],
+ [11.0778, 46.44569],
+ [11.07301, 46.44042],
+ [11.05394, 46.44849],
+ [11.0414, 46.44569],
+ [11.02817, 46.46116],
+ [11.00952, 46.46917],
+ [11.00462, 46.47607],
+ [10.98695, 46.48289],
+ [10.96543, 46.48103],
+ [10.95791, 46.46983],
+ [10.93819, 46.46578],
+ [10.9325, 46.45831],
+ [10.93332, 46.4528],
+ [10.91305, 46.44284],
+ [10.89161, 46.44366],
+ [10.88324, 46.44995],
+ [10.88093, 46.44579],
+ [10.87162, 46.4438],
+ [10.86174, 46.43509],
+ [10.85113, 46.43817],
+ [10.80034, 46.44185],
+ [10.78906, 46.45164],
+ [10.77835, 46.47112],
+ [10.76934, 46.47609],
+ [10.76463, 46.4848],
+ [10.75906, 46.48547],
+ [10.74422, 46.48333],
+ [10.71753, 46.46022],
+ [10.69667, 46.4573],
+ [10.68293, 46.44846],
+ [10.66821, 46.45122],
+ [10.63303, 46.44309],
+ [10.61439, 46.45098],
+ [10.60128, 46.46139],
+ [10.59995, 46.46766],
+ [10.57672, 46.47237],
+ [10.55875, 46.48187],
+ [10.54986, 46.49123],
+ [10.53685, 46.49062],
+ [10.52657, 46.49425],
+ [10.49366, 46.49719],
+ [10.48141, 46.49337],
+ [10.45714, 46.5096],
+ [10.45124, 46.53083],
+ [10.45814, 46.54215],
+ [10.47056, 46.54377],
+ [10.46954, 46.54856],
+ [10.47617, 46.55749],
+ [10.47321, 46.56701],
+ [10.48305, 46.5777],
+ [10.48575, 46.58921],
+ [10.48221, 46.59199],
+ [10.48576, 46.59805],
+ [10.48291, 46.60512],
+ [10.49055, 46.61394],
+ [10.44632, 46.63989],
+ [10.40935, 46.63389],
+ [10.40011, 46.63648],
+ [10.39873, 46.6455],
+ [10.38946, 46.65862],
+ [10.39057, 46.67089],
+ [10.3803, 46.68399],
+ [10.38615, 46.68821]
+ ]
+ ],
+ "terms_url": "https://geoservices.buergernetz.bz.it/geokatalog",
+ "terms_text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 3.0",
+ "description": "Orthophoto of South Tyrol from 2011 with up to 20cm resolution (larger valleys)"
+ },
+ {
+ "id": "South-Tyrol-Orthofoto-2014-2015",
+ "name": "South Tyrol Orthofoto 2014/2015",
+ "type": "tms",
+ "template": "https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_OF_2014_2015_EPSG3857&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg",
+ "endDate": "2015-11-01T00:00:00.000Z",
+ "startDate": "2014-07-01T00:00:00.000Z",
+ "scaleExtent": [0, 18],
+ "polygon": [
+ [
+ [10.38615, 46.68821],
+ [10.39201, 46.69016],
+ [10.40215, 46.70624],
+ [10.41274, 46.70821],
+ [10.41622, 46.71479],
+ [10.4168, 46.71847],
+ [10.39934, 46.73435],
+ [10.43464, 46.75356],
+ [10.44107, 46.75413],
+ [10.44011, 46.77149],
+ [10.42123, 46.78861],
+ [10.42845, 46.79755],
+ [10.43851, 46.79869],
+ [10.44925, 46.80462],
+ [10.45602, 46.81635],
+ [10.45438, 46.82221],
+ [10.4583, 46.82478],
+ [10.45513, 46.83059],
+ [10.45906, 46.83548],
+ [10.46483, 46.83624],
+ [10.46229, 46.8413],
+ [10.46987, 46.84933],
+ [10.46819, 46.8553],
+ [10.47838, 46.86013],
+ [10.48372, 46.85543],
+ [10.49628, 46.85305],
+ [10.49931, 46.84857],
+ [10.52124, 46.84653],
+ [10.5527, 46.8511],
+ [10.55795, 46.84695],
+ [10.55264, 46.8408],
+ [10.55536, 46.84087],
+ [10.58883, 46.85125],
+ [10.59502, 46.85829],
+ [10.60936, 46.8597],
+ [10.62441, 46.86558],
+ [10.64858, 46.86655],
+ [10.66787, 46.87651],
+ [10.67297, 46.87138],
+ [10.69112, 46.86861],
+ [10.69786, 46.86339],
+ [10.69508, 46.85308],
+ [10.70594, 46.84786],
+ [10.71763, 46.84795],
+ [10.72333, 46.83892],
+ [10.75621, 46.83383],
+ [10.76481, 46.82409],
+ [10.76387, 46.81971],
+ [10.75239, 46.81387],
+ [10.74506, 46.80223],
+ [10.7276, 46.79709],
+ [10.73122, 46.78925],
+ [10.75722, 46.78624],
+ [10.77744, 46.79149],
+ [10.78678, 46.79735],
+ [10.81439, 46.77662],
+ [10.82479, 46.77472],
+ [10.83129, 46.78138],
+ [10.84112, 46.78282],
+ [10.85354, 46.77506],
+ [10.86845, 46.77313],
+ [10.86993, 46.7669],
+ [10.88294, 46.76393],
+ [10.88962, 46.76529],
+ [10.8951, 46.77092],
+ [10.90527, 46.76911],
+ [10.92299, 46.7764],
+ [10.92821, 46.77408],
+ [10.94388, 46.77648],
+ [10.97522, 46.77361],
+ [10.97932, 46.77014],
+ [10.99475, 46.76804],
+ [11.01397, 46.77317],
+ [11.02328, 46.76715],
+ [11.0346, 46.79428],
+ [11.04234, 46.801],
+ [11.03792, 46.80562],
+ [11.05633, 46.80928],
+ [11.07279, 46.82092],
+ [11.08171, 46.82252],
+ [11.0762, 46.83384],
+ [11.06887, 46.83793],
+ [11.07303, 46.84345],
+ [11.06988, 46.85348],
+ [11.08742, 46.87927],
+ [11.09961, 46.88922],
+ [11.09538, 46.89178],
+ [11.09795, 46.89844],
+ [11.0946, 46.91247],
+ [11.10792, 46.91706],
+ [11.10804, 46.92632],
+ [11.11418, 46.93234],
+ [11.13851, 46.92865],
+ [11.16322, 46.94091],
+ [11.16642, 46.94479],
+ [11.16114, 46.94979],
+ [11.1637, 46.96677],
+ [11.17598, 46.96367],
+ [11.18658, 46.97062],
+ [11.19527, 46.97152],
+ [11.20418, 46.96877],
+ [11.20688, 46.96403],
+ [11.22047, 46.97025],
+ [11.24139, 46.9708],
+ [11.24865, 46.97517],
+ [11.25582, 46.97535],
+ [11.26272, 46.98169],
+ [11.27662, 46.98168],
+ [11.28762, 46.98699],
+ [11.30709, 46.98525],
+ [11.3205, 46.99345],
+ [11.33765, 46.98606],
+ [11.34516, 46.99169],
+ [11.35932, 46.99154],
+ [11.37697, 46.98025],
+ [11.38324, 46.97168],
+ [11.40465, 46.96609],
+ [11.43929, 46.97601],
+ [11.45134, 46.99294],
+ [11.46803, 46.99582],
+ [11.46859, 47.003],
+ [11.47831, 47.01201],
+ [11.50238, 47.01073],
+ [11.50313, 47.00808],
+ [11.51366, 47.00595],
+ [11.51679, 47.00091],
+ [11.53381, 46.99233],
+ [11.53846, 46.98519],
+ [11.55297, 46.99149],
+ [11.57663, 46.99657],
+ [11.58, 47.00277],
+ [11.58879, 47.00641],
+ [11.59901, 47.00657],
+ [11.60944, 47.01207],
+ [11.62697, 47.01437],
+ [11.63629, 47.00383],
+ [11.66542, 46.99304],
+ [11.6885, 46.99658],
+ [11.71226, 46.99416],
+ [11.72897, 46.97322],
+ [11.74698, 46.97013],
+ [11.76411, 46.97412],
+ [11.78106, 46.99342],
+ [11.81526, 46.991],
+ [11.83564, 46.99417],
+ [11.84396, 47.0025],
+ [11.85192, 47.0014],
+ [11.86722, 47.01252],
+ [11.87393, 47.01136],
+ [11.8794, 47.01714],
+ [11.89137, 47.01728],
+ [11.91627, 47.03422],
+ [11.9329, 47.03864],
+ [11.94688, 47.03464],
+ [11.95457, 47.04374],
+ [11.96773, 47.04158],
+ [11.97912, 47.0511],
+ [11.98587, 47.04815],
+ [11.99534, 47.05064],
+ [12.02037, 47.04821],
+ [12.02968, 47.05127],
+ [12.03353, 47.0583],
+ [12.04276, 47.06228],
+ [12.07543, 47.0605],
+ [12.08035, 47.06951],
+ [12.09308, 47.07791],
+ [12.10329, 47.07931],
+ [12.11867, 47.07445],
+ [12.13561, 47.08171],
+ [12.15125, 47.08049],
+ [12.15997, 47.08267],
+ [12.18589, 47.09322],
+ [12.2278, 47.08302],
+ [12.24228, 47.06892],
+ [12.23786, 47.0644],
+ [12.21821, 47.05795],
+ [12.2182, 47.04483],
+ [12.20552, 47.02595],
+ [12.18048, 47.02414],
+ [12.16423, 47.01782],
+ [12.14786, 47.02357],
+ [12.12723, 47.01218],
+ [12.12285, 47.00662],
+ [12.1322, 46.99339],
+ [12.12974, 46.98593],
+ [12.13977, 46.982],
+ [12.13808, 46.96514],
+ [12.13328, 46.96292],
+ [12.13882, 46.95764],
+ [12.15927, 46.95133],
+ [12.1702, 46.93758],
+ [12.15414, 46.91654],
+ [12.14675, 46.91413],
+ [12.16205, 46.908],
+ [12.16959, 46.91121],
+ [12.19154, 46.90682],
+ [12.20106, 46.8965],
+ [12.2022, 46.88806],
+ [12.21663, 46.87517],
+ [12.22147, 46.88084],
+ [12.23125, 46.88146],
+ [12.2345, 46.88919],
+ [12.24162, 46.89192],
+ [12.27486, 46.88512],
+ [12.27979, 46.87921],
+ [12.27736, 46.87319],
+ [12.29326, 46.86566],
+ [12.2912, 46.85704],
+ [12.29733, 46.84455],
+ [12.30833, 46.84137],
+ [12.30726, 46.83271],
+ [12.285, 46.81503],
+ [12.29383, 46.8027],
+ [12.28905, 46.79948],
+ [12.28889, 46.79427],
+ [12.28232, 46.79153],
+ [12.28539, 46.7839],
+ [12.30943, 46.78603],
+ [12.35837, 46.77583],
+ [12.37036, 46.74163],
+ [12.38475, 46.71745],
+ [12.40283, 46.70811],
+ [12.41103, 46.70701],
+ [12.41522, 46.70163],
+ [12.42862, 46.6997],
+ [12.42943, 46.69567],
+ [12.44268, 46.68979],
+ [12.47501, 46.68756],
+ [12.4795, 46.67969],
+ [12.43473, 46.66714],
+ [12.40648, 46.64167],
+ [12.38115, 46.64183],
+ [12.37944, 46.63733],
+ [12.3915, 46.62765],
+ [12.38577, 46.62154],
+ [12.35939, 46.61829],
+ [12.34465, 46.62376],
+ [12.34034, 46.63022],
+ [12.33578, 46.62732],
+ [12.3172, 46.62876],
+ [12.31785, 46.62355],
+ [12.30802, 46.61811],
+ [12.28413, 46.61623],
+ [12.26982, 46.62003],
+ [12.25931, 46.62809],
+ [12.24502, 46.62326],
+ [12.24198, 46.61586],
+ [12.21241, 46.60918],
+ [12.20444, 46.59836],
+ [12.19228, 46.59321],
+ [12.19261, 46.62059],
+ [12.1818, 46.6192],
+ [12.17117, 46.63275],
+ [12.16062, 46.63574],
+ [12.1511, 46.63215],
+ [12.1436, 46.6327],
+ [12.13739, 46.64122],
+ [12.12342, 46.64475],
+ [12.10949, 46.65204],
+ [12.10609, 46.65783],
+ [12.09345, 46.66123],
+ [12.08826, 46.66638],
+ [12.07985, 46.66686],
+ [12.07038, 46.67386],
+ [12.07173, 46.66064],
+ [12.06686, 46.65364],
+ [12.07479, 46.64329],
+ [12.06837, 46.63997],
+ [12.06495, 46.62121],
+ [12.05448, 46.61778],
+ [12.05318, 46.60989],
+ [12.04613, 46.60716],
+ [12.05043, 46.60016],
+ [12.04763, 46.58357],
+ [12.03665, 46.57668],
+ [12.0266, 46.55871],
+ [12.02189, 46.55791],
+ [11.99941, 46.53208],
+ [11.99411, 46.53345],
+ [11.98704, 46.54417],
+ [11.96633, 46.54363],
+ [11.95094, 46.53869],
+ [11.94719, 46.52879],
+ [11.94147, 46.52689],
+ [11.93294, 46.52631],
+ [11.9121, 46.532],
+ [11.8904, 46.52175],
+ [11.85192, 46.51682],
+ [11.82849, 46.50783],
+ [11.82334, 46.51315],
+ [11.82391, 46.52141],
+ [11.81086, 46.53146],
+ [11.79385, 46.52023],
+ [11.79189, 46.51322],
+ [11.76157, 46.50503],
+ [11.74317, 46.50391],
+ [11.73202, 46.50877],
+ [11.71935, 46.50916],
+ [11.71524, 46.51245],
+ [11.69889, 46.50218],
+ [11.6672, 46.49647],
+ [11.64515, 46.49743],
+ [11.63849, 46.50051],
+ [11.63495, 46.49486],
+ [11.64297, 46.49346],
+ [11.65174, 46.48271],
+ [11.64536, 46.47189],
+ [11.64179, 46.47439],
+ [11.62679, 46.4708],
+ [11.62987, 46.46377],
+ [11.61882, 46.44325],
+ [11.62143, 46.42539],
+ [11.60161, 46.39731],
+ [11.60307, 46.38924],
+ [11.5932, 46.38265],
+ [11.56489, 46.38018],
+ [11.55878, 46.35076],
+ [11.55249, 46.34418],
+ [11.54423, 46.34483],
+ [11.53837, 46.35015],
+ [11.52445, 46.35502],
+ [11.47969, 46.36277],
+ [11.48052, 46.3551],
+ [11.46322, 46.34922],
+ [11.45556, 46.33396],
+ [11.42105, 46.32441],
+ [11.40517, 46.32387],
+ [11.39865, 46.31426],
+ [11.39994, 46.30709],
+ [11.39569, 46.3083],
+ [11.38188, 46.30052],
+ [11.36088, 46.29906],
+ [11.36078, 46.29682],
+ [11.38256, 46.29177],
+ [11.3871, 46.28143],
+ [11.39609, 46.27423],
+ [11.39862, 46.264],
+ [11.38756, 46.26029],
+ [11.37347, 46.2629],
+ [11.36836, 46.26135],
+ [11.35783, 46.26481],
+ [11.35495, 46.27564],
+ [11.33912, 46.28306],
+ [11.33379, 46.29049],
+ [11.33471, 46.2962],
+ [11.3129, 46.28256],
+ [11.31737, 46.27303],
+ [11.30645, 46.25786],
+ [11.29124, 46.2604],
+ [11.24743, 46.22933],
+ [11.20622, 46.2187],
+ [11.18267, 46.22496],
+ [11.17077, 46.23806],
+ [11.17994, 46.24434],
+ [11.18351, 46.25269],
+ [11.18935, 46.25354],
+ [11.19448, 46.2461],
+ [11.20029, 46.25566],
+ [11.16604, 46.26129],
+ [11.14885, 46.27904],
+ [11.13725, 46.28336],
+ [11.14293, 46.28934],
+ [11.15847, 46.29059],
+ [11.16439, 46.2986],
+ [11.1761, 46.30346],
+ [11.1847, 46.32104],
+ [11.18894, 46.32151],
+ [11.18696, 46.32673],
+ [11.1942, 46.33016],
+ [11.20204, 46.34212],
+ [11.19001, 46.35984],
+ [11.19263, 46.36578],
+ [11.20393, 46.36765],
+ [11.19792, 46.37232],
+ [11.21275, 46.39804],
+ [11.21345, 46.40675],
+ [11.20565, 46.4166],
+ [11.21026, 46.4206],
+ [11.20347, 46.42682],
+ [11.21416, 46.43556],
+ [11.21634, 46.44255],
+ [11.20903, 46.45293],
+ [11.21419, 46.45807],
+ [11.21736, 46.45731],
+ [11.21886, 46.46199],
+ [11.21626, 46.47277],
+ [11.20939, 46.481],
+ [11.20876, 46.49346],
+ [11.19608, 46.50241],
+ [11.1924, 46.501],
+ [11.18686, 46.50734],
+ [11.18002, 46.49823],
+ [11.17014, 46.49635],
+ [11.16095, 46.4878],
+ [11.12934, 46.48058],
+ [11.1103, 46.49643],
+ [11.10449, 46.4948],
+ [11.08812, 46.50128],
+ [11.08173, 46.53021],
+ [11.05915, 46.51508],
+ [11.03795, 46.51357],
+ [11.05006, 46.50784],
+ [11.05773, 46.49235],
+ [11.06278, 46.4894],
+ [11.06894, 46.46619],
+ [11.07625, 46.45487],
+ [11.0778, 46.44569],
+ [11.07301, 46.44042],
+ [11.05394, 46.44849],
+ [11.0414, 46.44569],
+ [11.02817, 46.46116],
+ [11.00952, 46.46917],
+ [11.00462, 46.47607],
+ [10.98695, 46.48289],
+ [10.96543, 46.48103],
+ [10.95791, 46.46983],
+ [10.93819, 46.46578],
+ [10.9325, 46.45831],
+ [10.93332, 46.4528],
+ [10.91305, 46.44284],
+ [10.89161, 46.44366],
+ [10.88324, 46.44995],
+ [10.88093, 46.44579],
+ [10.87162, 46.4438],
+ [10.86174, 46.43509],
+ [10.85113, 46.43817],
+ [10.80034, 46.44185],
+ [10.78906, 46.45164],
+ [10.77835, 46.47112],
+ [10.76934, 46.47609],
+ [10.76463, 46.4848],
+ [10.75906, 46.48547],
+ [10.74422, 46.48333],
+ [10.71753, 46.46022],
+ [10.69667, 46.4573],
+ [10.68293, 46.44846],
+ [10.66821, 46.45122],
+ [10.63303, 46.44309],
+ [10.61439, 46.45098],
+ [10.60128, 46.46139],
+ [10.59995, 46.46766],
+ [10.57672, 46.47237],
+ [10.55875, 46.48187],
+ [10.54986, 46.49123],
+ [10.53685, 46.49062],
+ [10.52657, 46.49425],
+ [10.49366, 46.49719],
+ [10.48141, 46.49337],
+ [10.45714, 46.5096],
+ [10.45124, 46.53083],
+ [10.45814, 46.54215],
+ [10.47056, 46.54377],
+ [10.46954, 46.54856],
+ [10.47617, 46.55749],
+ [10.47321, 46.56701],
+ [10.48305, 46.5777],
+ [10.48575, 46.58921],
+ [10.48221, 46.59199],
+ [10.48576, 46.59805],
+ [10.48291, 46.60512],
+ [10.49055, 46.61394],
+ [10.44632, 46.63989],
+ [10.40935, 46.63389],
+ [10.40011, 46.63648],
+ [10.39873, 46.6455],
+ [10.38946, 46.65862],
+ [10.39057, 46.67089],
+ [10.3803, 46.68399],
+ [10.38615, 46.68821]
+ ]
+ ],
+ "terms_url": "https://geoservices.buergernetz.bz.it/geokatalog",
+ "terms_text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 4.0",
+ "best": true
+ },
+ {
+ "id": "South-Tyrol-Topomap",
+ "name": "South Tyrol Topomap",
+ "type": "tms",
+ "template": "https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_BASEMAP_TOPO&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg",
+ "scaleExtent": [0, 20],
+ "polygon": [
+ [
+ [10.38615, 46.68821],
+ [10.39201, 46.69016],
+ [10.40215, 46.70624],
+ [10.41274, 46.70821],
+ [10.41622, 46.71479],
+ [10.4168, 46.71847],
+ [10.39934, 46.73435],
+ [10.43464, 46.75356],
+ [10.44107, 46.75413],
+ [10.44011, 46.77149],
+ [10.42123, 46.78861],
+ [10.42845, 46.79755],
+ [10.43851, 46.79869],
+ [10.44925, 46.80462],
+ [10.45602, 46.81635],
+ [10.45438, 46.82221],
+ [10.4583, 46.82478],
+ [10.45513, 46.83059],
+ [10.45906, 46.83548],
+ [10.46483, 46.83624],
+ [10.46229, 46.8413],
+ [10.46987, 46.84933],
+ [10.46819, 46.8553],
+ [10.47838, 46.86013],
+ [10.48372, 46.85543],
+ [10.49628, 46.85305],
+ [10.49931, 46.84857],
+ [10.52124, 46.84653],
+ [10.5527, 46.8511],
+ [10.55795, 46.84695],
+ [10.55264, 46.8408],
+ [10.55536, 46.84087],
+ [10.58883, 46.85125],
+ [10.59502, 46.85829],
+ [10.60936, 46.8597],
+ [10.62441, 46.86558],
+ [10.64858, 46.86655],
+ [10.66787, 46.87651],
+ [10.67297, 46.87138],
+ [10.69112, 46.86861],
+ [10.69786, 46.86339],
+ [10.69508, 46.85308],
+ [10.70594, 46.84786],
+ [10.71763, 46.84795],
+ [10.72333, 46.83892],
+ [10.75621, 46.83383],
+ [10.76481, 46.82409],
+ [10.76387, 46.81971],
+ [10.75239, 46.81387],
+ [10.74506, 46.80223],
+ [10.7276, 46.79709],
+ [10.73122, 46.78925],
+ [10.75722, 46.78624],
+ [10.77744, 46.79149],
+ [10.78678, 46.79735],
+ [10.81439, 46.77662],
+ [10.82479, 46.77472],
+ [10.83129, 46.78138],
+ [10.84112, 46.78282],
+ [10.85354, 46.77506],
+ [10.86845, 46.77313],
+ [10.86993, 46.7669],
+ [10.88294, 46.76393],
+ [10.88962, 46.76529],
+ [10.8951, 46.77092],
+ [10.90527, 46.76911],
+ [10.92299, 46.7764],
+ [10.92821, 46.77408],
+ [10.94388, 46.77648],
+ [10.97522, 46.77361],
+ [10.97932, 46.77014],
+ [10.99475, 46.76804],
+ [11.01397, 46.77317],
+ [11.02328, 46.76715],
+ [11.0346, 46.79428],
+ [11.04234, 46.801],
+ [11.03792, 46.80562],
+ [11.05633, 46.80928],
+ [11.07279, 46.82092],
+ [11.08171, 46.82252],
+ [11.0762, 46.83384],
+ [11.06887, 46.83793],
+ [11.07303, 46.84345],
+ [11.06988, 46.85348],
+ [11.08742, 46.87927],
+ [11.09961, 46.88922],
+ [11.09538, 46.89178],
+ [11.09795, 46.89844],
+ [11.0946, 46.91247],
+ [11.10792, 46.91706],
+ [11.10804, 46.92632],
+ [11.11418, 46.93234],
+ [11.13851, 46.92865],
+ [11.16322, 46.94091],
+ [11.16642, 46.94479],
+ [11.16114, 46.94979],
+ [11.1637, 46.96677],
+ [11.17598, 46.96367],
+ [11.18658, 46.97062],
+ [11.19527, 46.97152],
+ [11.20418, 46.96877],
+ [11.20688, 46.96403],
+ [11.22047, 46.97025],
+ [11.24139, 46.9708],
+ [11.24865, 46.97517],
+ [11.25582, 46.97535],
+ [11.26272, 46.98169],
+ [11.27662, 46.98168],
+ [11.28762, 46.98699],
+ [11.30709, 46.98525],
+ [11.3205, 46.99345],
+ [11.33765, 46.98606],
+ [11.34516, 46.99169],
+ [11.35932, 46.99154],
+ [11.37697, 46.98025],
+ [11.38324, 46.97168],
+ [11.40465, 46.96609],
+ [11.43929, 46.97601],
+ [11.45134, 46.99294],
+ [11.46803, 46.99582],
+ [11.46859, 47.003],
+ [11.47831, 47.01201],
+ [11.50238, 47.01073],
+ [11.50313, 47.00808],
+ [11.51366, 47.00595],
+ [11.51679, 47.00091],
+ [11.53381, 46.99233],
+ [11.53846, 46.98519],
+ [11.55297, 46.99149],
+ [11.57663, 46.99657],
+ [11.58, 47.00277],
+ [11.58879, 47.00641],
+ [11.59901, 47.00657],
+ [11.60944, 47.01207],
+ [11.62697, 47.01437],
+ [11.63629, 47.00383],
+ [11.66542, 46.99304],
+ [11.6885, 46.99658],
+ [11.71226, 46.99416],
+ [11.72897, 46.97322],
+ [11.74698, 46.97013],
+ [11.76411, 46.97412],
+ [11.78106, 46.99342],
+ [11.81526, 46.991],
+ [11.83564, 46.99417],
+ [11.84396, 47.0025],
+ [11.85192, 47.0014],
+ [11.86722, 47.01252],
+ [11.87393, 47.01136],
+ [11.8794, 47.01714],
+ [11.89137, 47.01728],
+ [11.91627, 47.03422],
+ [11.9329, 47.03864],
+ [11.94688, 47.03464],
+ [11.95457, 47.04374],
+ [11.96773, 47.04158],
+ [11.97912, 47.0511],
+ [11.98587, 47.04815],
+ [11.99534, 47.05064],
+ [12.02037, 47.04821],
+ [12.02968, 47.05127],
+ [12.03353, 47.0583],
+ [12.04276, 47.06228],
+ [12.07543, 47.0605],
+ [12.08035, 47.06951],
+ [12.09308, 47.07791],
+ [12.10329, 47.07931],
+ [12.11867, 47.07445],
+ [12.13561, 47.08171],
+ [12.15125, 47.08049],
+ [12.15997, 47.08267],
+ [12.18589, 47.09322],
+ [12.2278, 47.08302],
+ [12.24228, 47.06892],
+ [12.23786, 47.0644],
+ [12.21821, 47.05795],
+ [12.2182, 47.04483],
+ [12.20552, 47.02595],
+ [12.18048, 47.02414],
+ [12.16423, 47.01782],
+ [12.14786, 47.02357],
+ [12.12723, 47.01218],
+ [12.12285, 47.00662],
+ [12.1322, 46.99339],
+ [12.12974, 46.98593],
+ [12.13977, 46.982],
+ [12.13808, 46.96514],
+ [12.13328, 46.96292],
+ [12.13882, 46.95764],
+ [12.15927, 46.95133],
+ [12.1702, 46.93758],
+ [12.15414, 46.91654],
+ [12.14675, 46.91413],
+ [12.16205, 46.908],
+ [12.16959, 46.91121],
+ [12.19154, 46.90682],
+ [12.20106, 46.8965],
+ [12.2022, 46.88806],
+ [12.21663, 46.87517],
+ [12.22147, 46.88084],
+ [12.23125, 46.88146],
+ [12.2345, 46.88919],
+ [12.24162, 46.89192],
+ [12.27486, 46.88512],
+ [12.27979, 46.87921],
+ [12.27736, 46.87319],
+ [12.29326, 46.86566],
+ [12.2912, 46.85704],
+ [12.29733, 46.84455],
+ [12.30833, 46.84137],
+ [12.30726, 46.83271],
+ [12.285, 46.81503],
+ [12.29383, 46.8027],
+ [12.28905, 46.79948],
+ [12.28889, 46.79427],
+ [12.28232, 46.79153],
+ [12.28539, 46.7839],
+ [12.30943, 46.78603],
+ [12.35837, 46.77583],
+ [12.37036, 46.74163],
+ [12.38475, 46.71745],
+ [12.40283, 46.70811],
+ [12.41103, 46.70701],
+ [12.41522, 46.70163],
+ [12.42862, 46.6997],
+ [12.42943, 46.69567],
+ [12.44268, 46.68979],
+ [12.47501, 46.68756],
+ [12.4795, 46.67969],
+ [12.43473, 46.66714],
+ [12.40648, 46.64167],
+ [12.38115, 46.64183],
+ [12.37944, 46.63733],
+ [12.3915, 46.62765],
+ [12.38577, 46.62154],
+ [12.35939, 46.61829],
+ [12.34465, 46.62376],
+ [12.34034, 46.63022],
+ [12.33578, 46.62732],
+ [12.3172, 46.62876],
+ [12.31785, 46.62355],
+ [12.30802, 46.61811],
+ [12.28413, 46.61623],
+ [12.26982, 46.62003],
+ [12.25931, 46.62809],
+ [12.24502, 46.62326],
+ [12.24198, 46.61586],
+ [12.21241, 46.60918],
+ [12.20444, 46.59836],
+ [12.19228, 46.59321],
+ [12.19261, 46.62059],
+ [12.1818, 46.6192],
+ [12.17117, 46.63275],
+ [12.16062, 46.63574],
+ [12.1511, 46.63215],
+ [12.1436, 46.6327],
+ [12.13739, 46.64122],
+ [12.12342, 46.64475],
+ [12.10949, 46.65204],
+ [12.10609, 46.65783],
+ [12.09345, 46.66123],
+ [12.08826, 46.66638],
+ [12.07985, 46.66686],
+ [12.07038, 46.67386],
+ [12.07173, 46.66064],
+ [12.06686, 46.65364],
+ [12.07479, 46.64329],
+ [12.06837, 46.63997],
+ [12.06495, 46.62121],
+ [12.05448, 46.61778],
+ [12.05318, 46.60989],
+ [12.04613, 46.60716],
+ [12.05043, 46.60016],
+ [12.04763, 46.58357],
+ [12.03665, 46.57668],
+ [12.0266, 46.55871],
+ [12.02189, 46.55791],
+ [11.99941, 46.53208],
+ [11.99411, 46.53345],
+ [11.98704, 46.54417],
+ [11.96633, 46.54363],
+ [11.95094, 46.53869],
+ [11.94719, 46.52879],
+ [11.94147, 46.52689],
+ [11.93294, 46.52631],
+ [11.9121, 46.532],
+ [11.8904, 46.52175],
+ [11.85192, 46.51682],
+ [11.82849, 46.50783],
+ [11.82334, 46.51315],
+ [11.82391, 46.52141],
+ [11.81086, 46.53146],
+ [11.79385, 46.52023],
+ [11.79189, 46.51322],
+ [11.76157, 46.50503],
+ [11.74317, 46.50391],
+ [11.73202, 46.50877],
+ [11.71935, 46.50916],
+ [11.71524, 46.51245],
+ [11.69889, 46.50218],
+ [11.6672, 46.49647],
+ [11.64515, 46.49743],
+ [11.63849, 46.50051],
+ [11.63495, 46.49486],
+ [11.64297, 46.49346],
+ [11.65174, 46.48271],
+ [11.64536, 46.47189],
+ [11.64179, 46.47439],
+ [11.62679, 46.4708],
+ [11.62987, 46.46377],
+ [11.61882, 46.44325],
+ [11.62143, 46.42539],
+ [11.60161, 46.39731],
+ [11.60307, 46.38924],
+ [11.5932, 46.38265],
+ [11.56489, 46.38018],
+ [11.55878, 46.35076],
+ [11.55249, 46.34418],
+ [11.54423, 46.34483],
+ [11.53837, 46.35015],
+ [11.52445, 46.35502],
+ [11.47969, 46.36277],
+ [11.48052, 46.3551],
+ [11.46322, 46.34922],
+ [11.45556, 46.33396],
+ [11.42105, 46.32441],
+ [11.40517, 46.32387],
+ [11.39865, 46.31426],
+ [11.39994, 46.30709],
+ [11.39569, 46.3083],
+ [11.38188, 46.30052],
+ [11.36088, 46.29906],
+ [11.36078, 46.29682],
+ [11.38256, 46.29177],
+ [11.3871, 46.28143],
+ [11.39609, 46.27423],
+ [11.39862, 46.264],
+ [11.38756, 46.26029],
+ [11.37347, 46.2629],
+ [11.36836, 46.26135],
+ [11.35783, 46.26481],
+ [11.35495, 46.27564],
+ [11.33912, 46.28306],
+ [11.33379, 46.29049],
+ [11.33471, 46.2962],
+ [11.3129, 46.28256],
+ [11.31737, 46.27303],
+ [11.30645, 46.25786],
+ [11.29124, 46.2604],
+ [11.24743, 46.22933],
+ [11.20622, 46.2187],
+ [11.18267, 46.22496],
+ [11.17077, 46.23806],
+ [11.17994, 46.24434],
+ [11.18351, 46.25269],
+ [11.18935, 46.25354],
+ [11.19448, 46.2461],
+ [11.20029, 46.25566],
+ [11.16604, 46.26129],
+ [11.14885, 46.27904],
+ [11.13725, 46.28336],
+ [11.14293, 46.28934],
+ [11.15847, 46.29059],
+ [11.16439, 46.2986],
+ [11.1761, 46.30346],
+ [11.1847, 46.32104],
+ [11.18894, 46.32151],
+ [11.18696, 46.32673],
+ [11.1942, 46.33016],
+ [11.20204, 46.34212],
+ [11.19001, 46.35984],
+ [11.19263, 46.36578],
+ [11.20393, 46.36765],
+ [11.19792, 46.37232],
+ [11.21275, 46.39804],
+ [11.21345, 46.40675],
+ [11.20565, 46.4166],
+ [11.21026, 46.4206],
+ [11.20347, 46.42682],
+ [11.21416, 46.43556],
+ [11.21634, 46.44255],
+ [11.20903, 46.45293],
+ [11.21419, 46.45807],
+ [11.21736, 46.45731],
+ [11.21886, 46.46199],
+ [11.21626, 46.47277],
+ [11.20939, 46.481],
+ [11.20876, 46.49346],
+ [11.19608, 46.50241],
+ [11.1924, 46.501],
+ [11.18686, 46.50734],
+ [11.18002, 46.49823],
+ [11.17014, 46.49635],
+ [11.16095, 46.4878],
+ [11.12934, 46.48058],
+ [11.1103, 46.49643],
+ [11.10449, 46.4948],
+ [11.08812, 46.50128],
+ [11.08173, 46.53021],
+ [11.05915, 46.51508],
+ [11.03795, 46.51357],
+ [11.05006, 46.50784],
+ [11.05773, 46.49235],
+ [11.06278, 46.4894],
+ [11.06894, 46.46619],
+ [11.07625, 46.45487],
+ [11.0778, 46.44569],
+ [11.07301, 46.44042],
+ [11.05394, 46.44849],
+ [11.0414, 46.44569],
+ [11.02817, 46.46116],
+ [11.00952, 46.46917],
+ [11.00462, 46.47607],
+ [10.98695, 46.48289],
+ [10.96543, 46.48103],
+ [10.95791, 46.46983],
+ [10.93819, 46.46578],
+ [10.9325, 46.45831],
+ [10.93332, 46.4528],
+ [10.91305, 46.44284],
+ [10.89161, 46.44366],
+ [10.88324, 46.44995],
+ [10.88093, 46.44579],
+ [10.87162, 46.4438],
+ [10.86174, 46.43509],
+ [10.85113, 46.43817],
+ [10.80034, 46.44185],
+ [10.78906, 46.45164],
+ [10.77835, 46.47112],
+ [10.76934, 46.47609],
+ [10.76463, 46.4848],
+ [10.75906, 46.48547],
+ [10.74422, 46.48333],
+ [10.71753, 46.46022],
+ [10.69667, 46.4573],
+ [10.68293, 46.44846],
+ [10.66821, 46.45122],
+ [10.63303, 46.44309],
+ [10.61439, 46.45098],
+ [10.60128, 46.46139],
+ [10.59995, 46.46766],
+ [10.57672, 46.47237],
+ [10.55875, 46.48187],
+ [10.54986, 46.49123],
+ [10.53685, 46.49062],
+ [10.52657, 46.49425],
+ [10.49366, 46.49719],
+ [10.48141, 46.49337],
+ [10.45714, 46.5096],
+ [10.45124, 46.53083],
+ [10.45814, 46.54215],
+ [10.47056, 46.54377],
+ [10.46954, 46.54856],
+ [10.47617, 46.55749],
+ [10.47321, 46.56701],
+ [10.48305, 46.5777],
+ [10.48575, 46.58921],
+ [10.48221, 46.59199],
+ [10.48576, 46.59805],
+ [10.48291, 46.60512],
+ [10.49055, 46.61394],
+ [10.44632, 46.63989],
+ [10.40935, 46.63389],
+ [10.40011, 46.63648],
+ [10.39873, 46.6455],
+ [10.38946, 46.65862],
+ [10.39057, 46.67089],
+ [10.3803, 46.68399],
+ [10.38615, 46.68821]
+ ]
+ ],
+ "terms_url": "https://geoservices.buergernetz.bz.it/geokatalog",
+ "terms_text": "© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano",
+ "description": "Topographical basemap of South Tyrol"
+ },
+ {
+ "id": "SPW_ORTHO_LAST",
+ "name": "SPW(allonie) most recent aerial imagery",
+ "type": "wms",
+ "template": "https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_LAST/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [5.78257, 49.87573],
+ [5.73919, 49.83362],
+ [5.75516, 49.79146],
+ [5.78839, 49.79665],
+ [5.91064, 49.66249],
+ [5.84857, 49.59723],
+ [5.87102, 49.57599],
+ [5.81857, 49.54638],
+ [5.66079, 49.55362],
+ [5.61108, 49.50603],
+ [5.55603, 49.52928],
+ [5.47051, 49.49737],
+ [5.45708, 49.56703],
+ [5.37522, 49.62333],
+ [5.31486, 49.61137],
+ [5.33243, 49.65263],
+ [5.26851, 49.69657],
+ [5.16628, 49.69303],
+ [4.99753, 49.80006],
+ [4.85164, 49.79345],
+ [4.84754, 49.86806],
+ [4.89013, 49.90893],
+ [4.79117, 49.958],
+ [4.87762, 50.15374],
+ [4.82418, 50.16932],
+ [4.70207, 50.09556],
+ [4.69441, 49.99625],
+ [4.44551, 49.93722],
+ [4.30589, 49.96829],
+ [4.19746, 49.9546],
+ [4.1352, 50.01508],
+ [4.22825, 50.07842],
+ [4.19682, 50.13519],
+ [4.12714, 50.1355],
+ [4.2052, 50.27347],
+ [4.16262, 50.28896],
+ [4.13538, 50.25784],
+ [4.02795, 50.3584],
+ [3.88574, 50.32701],
+ [3.84578, 50.35323],
+ [3.74546, 50.35005],
+ [3.70994, 50.30316],
+ [3.65756, 50.37076],
+ [3.65552, 50.4617],
+ [3.60586, 50.49632],
+ [3.4993, 50.48921],
+ [3.51992, 50.52362],
+ [3.47439, 50.53368],
+ [3.37698, 50.49109],
+ [3.28634, 50.52793],
+ [3.26104, 50.70131],
+ [3.20602, 50.71139],
+ [3.17839, 50.75609],
+ [3.30562, 50.75466],
+ [3.36077, 50.70962],
+ [3.45439, 50.77072],
+ [3.64047, 50.72242],
+ [3.67752, 50.77062],
+ [3.75857, 50.78045],
+ [3.77568, 50.74789],
+ [3.8798, 50.75146],
+ [3.9097, 50.69245],
+ [4.05868, 50.69439],
+ [4.14853, 50.72834],
+ [4.2467, 50.6894],
+ [4.46355, 50.75511],
+ [4.52399, 50.72724],
+ [4.59727, 50.76359],
+ [4.63445, 50.74272],
+ [4.64309, 50.79755],
+ [4.76014, 50.80544],
+ [4.92545, 50.74275],
+ [5.00339, 50.76594],
+ [5.07039, 50.70649],
+ [5.16508, 50.6957],
+ [5.16984, 50.72257],
+ [5.30912, 50.71802],
+ [5.35029, 50.74629],
+ [5.47863, 50.72352],
+ [5.68786, 50.81193],
+ [5.68225, 50.75651],
+ [5.7707, 50.75132],
+ [5.81963, 50.71396],
+ [5.88333, 50.70992],
+ [5.89217, 50.75518],
+ [5.96561, 50.76107],
+ [6.04045, 50.74546],
+ [6.03959, 50.71833],
+ [6.11066, 50.72299],
+ [6.18169, 50.62383],
+ [6.26953, 50.62519],
+ [6.17812, 50.54153],
+ [6.22658, 50.49432],
+ [6.35036, 50.48854],
+ [6.34298, 50.38033],
+ [6.40542, 50.32331],
+ [6.30647, 50.32019],
+ [6.27889, 50.26734],
+ [6.17377, 50.23165],
+ [6.19232, 50.18203],
+ [6.147, 50.17775],
+ [6.13779, 50.12985],
+ [6.10245, 50.17055],
+ [5.96368, 50.17263],
+ [5.96133, 50.13136],
+ [5.89532, 50.11216],
+ [5.81968, 50.01329],
+ [5.83578, 49.97892],
+ [5.77502, 49.9608],
+ [5.73577, 49.89684],
+ [5.78257, 49.87573]
+ ]
+ ],
+ "best": true,
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsSAAALEgHS3X78AAACX0lEQVQ4y32TS09TURSFv3Pu7e2Dl7wqISCiAUNIlBjUhIkzhvqnTJw4cuZPcGSiDERRQkTEhIgSwISqaNNQW8pT6H2f7aAKLYmu4c7Od9beZ20lIvc5KyMgAkqBVvxLxWLxuxIRqS9KEBLmNol+FHBGh7EH+urABuP66HQStGZlZWVen6VGm3kO7j2k+vgZcalyCvZ9gvUc/rslzHH1pN4AkCjG7B+CViRGh0mMDEFsiLd38F4vcPjgEdGXPNR5tuvtxVslvMUP4AXEhZ+I5xMWilSfvsB/u4Rua0XCgHh7B92UaXQgro87NYP7ZBqJY6y+HsR1qU7N4E7PIcaQuD6Kle0i/JxDgqARYKou7qt5CAJUOgXG4C8uE2+V0C3NqEwas72L7u7AynaB1o0jKK3Qba2Y8g7RZh5TrqCz66fDhhHheo54q0T6ziTO1ZFGB6q5iczdSVRTGjl2kTDCHBwRb5UQz8fs7mF294m+5XGfzyJVt86BCOIHODeukfp6G292Ad3Zjk4liQtF7CuXwAjh+gbYNqZcQaLoFODNLWJ+HWEOj7CynSjA7O1DOg2OQ2JoEN3Zjqm6qKQDYYiyrFOAfbEflMIcH6MzaXRrC3G5QrD0CX2uDd3bQ/B+GeUkIIpr+Ug6dYALvbXcGwEFVk+WuLyD1XseqyeLPdiPti3MUZXg4xrJiXFUKlW3gz9fglU7HJVKYlwP3ZTBGR1GOQ7OzbFaS3cHicsDKNs6k8S/edg/xH35hnBtA+fW2J+rBKuzvfbWxDgqkTjpVyKydxYivo94Abqthf9pdXV18TfYtyESB1ygiAAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "SPW_PICC",
+ "name": "SPW(allonie) PICC numerical imagery",
+ "type": "wms",
+ "template": "https://geoservices.wallonie.be/arcgis/services/TOPOGRAPHIE/PICC_VDIFF/MapServer/WmsServer?SERVICE=WMS&VERSION=1.1.1&FORMAT=image/png8&TRANSPARENT=FALSE&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&LAYERS=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [5.78257, 49.87573],
+ [5.73919, 49.83362],
+ [5.75516, 49.79146],
+ [5.78839, 49.79665],
+ [5.91064, 49.66249],
+ [5.84857, 49.59723],
+ [5.87102, 49.57599],
+ [5.81857, 49.54638],
+ [5.66079, 49.55362],
+ [5.61108, 49.50603],
+ [5.55603, 49.52928],
+ [5.47051, 49.49737],
+ [5.45708, 49.56703],
+ [5.37522, 49.62333],
+ [5.31486, 49.61137],
+ [5.33243, 49.65263],
+ [5.26851, 49.69657],
+ [5.16628, 49.69303],
+ [4.99753, 49.80006],
+ [4.85164, 49.79345],
+ [4.84754, 49.86806],
+ [4.89013, 49.90893],
+ [4.79117, 49.958],
+ [4.87762, 50.15374],
+ [4.82418, 50.16932],
+ [4.70207, 50.09556],
+ [4.69441, 49.99625],
+ [4.44551, 49.93722],
+ [4.30589, 49.96829],
+ [4.19746, 49.9546],
+ [4.1352, 50.01508],
+ [4.22825, 50.07842],
+ [4.19682, 50.13519],
+ [4.12714, 50.1355],
+ [4.2052, 50.27347],
+ [4.16262, 50.28896],
+ [4.13538, 50.25784],
+ [4.02795, 50.3584],
+ [3.88574, 50.32701],
+ [3.84578, 50.35323],
+ [3.74546, 50.35005],
+ [3.70994, 50.30316],
+ [3.65756, 50.37076],
+ [3.65552, 50.4617],
+ [3.60586, 50.49632],
+ [3.4993, 50.48921],
+ [3.51992, 50.52362],
+ [3.47439, 50.53368],
+ [3.37698, 50.49109],
+ [3.28634, 50.52793],
+ [3.26104, 50.70131],
+ [3.20602, 50.71139],
+ [3.17839, 50.75609],
+ [3.30562, 50.75466],
+ [3.36077, 50.70962],
+ [3.45439, 50.77072],
+ [3.64047, 50.72242],
+ [3.67752, 50.77062],
+ [3.75857, 50.78045],
+ [3.77568, 50.74789],
+ [3.8798, 50.75146],
+ [3.9097, 50.69245],
+ [4.05868, 50.69439],
+ [4.14853, 50.72834],
+ [4.2467, 50.6894],
+ [4.46355, 50.75511],
+ [4.52399, 50.72724],
+ [4.59727, 50.76359],
+ [4.63445, 50.74272],
+ [4.64309, 50.79755],
+ [4.76014, 50.80544],
+ [4.92545, 50.74275],
+ [5.00339, 50.76594],
+ [5.07039, 50.70649],
+ [5.16508, 50.6957],
+ [5.16984, 50.72257],
+ [5.30912, 50.71802],
+ [5.35029, 50.74629],
+ [5.47863, 50.72352],
+ [5.68786, 50.81193],
+ [5.68225, 50.75651],
+ [5.7707, 50.75132],
+ [5.81963, 50.71396],
+ [5.88333, 50.70992],
+ [5.89217, 50.75518],
+ [5.96561, 50.76107],
+ [6.04045, 50.74546],
+ [6.03959, 50.71833],
+ [6.11066, 50.72299],
+ [6.18169, 50.62383],
+ [6.26953, 50.62519],
+ [6.17812, 50.54153],
+ [6.22658, 50.49432],
+ [6.35036, 50.48854],
+ [6.34298, 50.38033],
+ [6.40542, 50.32331],
+ [6.30647, 50.32019],
+ [6.27889, 50.26734],
+ [6.17377, 50.23165],
+ [6.19232, 50.18203],
+ [6.147, 50.17775],
+ [6.13779, 50.12985],
+ [6.10245, 50.17055],
+ [5.96368, 50.17263],
+ [5.96133, 50.13136],
+ [5.89532, 50.11216],
+ [5.81968, 50.01329],
+ [5.83578, 49.97892],
+ [5.77502, 49.9608],
+ [5.73577, 49.89684],
+ [5.78257, 49.87573]
+ ]
+ ],
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsSAAALEgHS3X78AAACX0lEQVQ4y32TS09TURSFv3Pu7e2Dl7wqISCiAUNIlBjUhIkzhvqnTJw4cuZPcGSiDERRQkTEhIgSwISqaNNQW8pT6H2f7aAKLYmu4c7Od9beZ20lIvc5KyMgAkqBVvxLxWLxuxIRqS9KEBLmNol+FHBGh7EH+urABuP66HQStGZlZWVen6VGm3kO7j2k+vgZcalyCvZ9gvUc/rslzHH1pN4AkCjG7B+CViRGh0mMDEFsiLd38F4vcPjgEdGXPNR5tuvtxVslvMUP4AXEhZ+I5xMWilSfvsB/u4Rua0XCgHh7B92UaXQgro87NYP7ZBqJY6y+HsR1qU7N4E7PIcaQuD6Kle0i/JxDgqARYKou7qt5CAJUOgXG4C8uE2+V0C3NqEwas72L7u7AynaB1o0jKK3Qba2Y8g7RZh5TrqCz66fDhhHheo54q0T6ziTO1ZFGB6q5iczdSVRTGjl2kTDCHBwRb5UQz8fs7mF294m+5XGfzyJVt86BCOIHODeukfp6G292Ad3Zjk4liQtF7CuXwAjh+gbYNqZcQaLoFODNLWJ+HWEOj7CynSjA7O1DOg2OQ2JoEN3Zjqm6qKQDYYiyrFOAfbEflMIcH6MzaXRrC3G5QrD0CX2uDd3bQ/B+GeUkIIpr+Ug6dYALvbXcGwEFVk+WuLyD1XseqyeLPdiPti3MUZXg4xrJiXFUKlW3gz9fglU7HJVKYlwP3ZTBGR1GOQ7OzbFaS3cHicsDKNs6k8S/edg/xH35hnBtA+fW2J+rBKuzvfbWxDgqkTjpVyKydxYivo94Abqthf9pdXV18TfYtyESB1ygiAAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "Bern-bern2016-tms",
+ "name": "Stadt Bern 10cm (2016)",
+ "type": "tms",
+ "template": "https://mapproxy.osm.ch/tiles/bern2016/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
+ "endDate": "2016-01-01T00:00:00.000Z",
+ "startDate": "2016-01-01T00:00:00.000Z",
+ "scaleExtent": [8, 21],
+ "polygon": [
+ [
+ [7.29431, 46.92376],
+ [7.29827, 46.92747],
+ [7.30616, 46.93095],
+ [7.30433, 46.93623],
+ [7.30686, 46.94037],
+ [7.32464, 46.94328],
+ [7.32845, 46.94641],
+ [7.34141, 46.94608],
+ [7.34385, 46.94737],
+ [7.34346, 46.94879],
+ [7.35136, 46.94855],
+ [7.35056, 46.95021],
+ [7.35309, 46.95193],
+ [7.3582, 46.95118],
+ [7.3685, 46.95662],
+ [7.37151, 46.96073],
+ [7.37503, 46.95983],
+ [7.37851, 46.96147],
+ [7.38062, 46.96547],
+ [7.38321, 46.9663],
+ [7.3938, 46.96693],
+ [7.40005, 46.96918],
+ [7.40829, 46.96869],
+ [7.42817, 46.9738],
+ [7.43271, 46.97269],
+ [7.43536, 46.96843],
+ [7.43785, 46.96843],
+ [7.44125, 46.97679],
+ [7.44569, 46.97479],
+ [7.44838, 46.97564],
+ [7.4477, 46.97901],
+ [7.44405, 46.97807],
+ [7.44127, 46.97982],
+ [7.45067, 46.99015],
+ [7.45221, 46.98968],
+ [7.45465, 46.97782],
+ [7.46804, 46.97583],
+ [7.47079, 46.97],
+ [7.47019, 46.96741],
+ [7.47816, 46.97118],
+ [7.48452, 46.97016],
+ [7.48613, 46.9679],
+ [7.48579, 46.96468],
+ [7.47847, 46.9629],
+ [7.48029, 46.96068],
+ [7.47893, 46.95878],
+ [7.47978, 46.9566],
+ [7.47701, 46.95446],
+ [7.48405, 46.94999],
+ [7.48339, 46.9452],
+ [7.49556, 46.93962],
+ [7.49351, 46.93766],
+ [7.4908, 46.93876],
+ [7.4895, 46.93687],
+ [7.47667, 46.93695],
+ [7.47811, 46.93625],
+ [7.4747, 46.93392],
+ [7.47535, 46.93299],
+ [7.4691, 46.92924],
+ [7.47077, 46.9255],
+ [7.45857, 46.93484],
+ [7.44764, 46.93043],
+ [7.43542, 46.93497],
+ [7.4338, 46.93312],
+ [7.43764, 46.93074],
+ [7.41469, 46.93682],
+ [7.41384, 46.93157],
+ [7.40708, 46.93038],
+ [7.40806, 46.92563],
+ [7.40213, 46.9242],
+ [7.40148, 46.92119],
+ [7.38757, 46.93045],
+ [7.38231, 46.92728],
+ [7.38002, 46.92989],
+ [7.38087, 46.93241],
+ [7.37487, 46.93143],
+ [7.37489, 46.93271],
+ [7.36807, 46.93239],
+ [7.36831, 46.93043],
+ [7.36041, 46.92859],
+ [7.36056, 46.9272],
+ [7.33878, 46.92454],
+ [7.33937, 46.91967],
+ [7.32746, 46.91903],
+ [7.32692, 46.9236],
+ [7.32437, 46.92519],
+ [7.30823, 46.92229],
+ [7.29431, 46.92376]
+ ]
+ ],
+ "terms_text": "Orthophoto 2016, Vermessungsamt Stadt Bern",
+ "best": true
+ },
+ {
+ "id": "Bern-2012",
+ "name": "Stadt Bern 10cm/25cm (2012)",
+ "type": "tms",
+ "template": "https://mapproxy.osm.ch/tiles/bern2012/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
+ "endDate": "2012-01-01T00:00:00.000Z",
+ "startDate": "2012-01-01T00:00:00.000Z",
+ "scaleExtent": [14, 19],
+ "polygon": [
+ [
+ [7.3807, 47.00952],
+ [7.38073, 47.02301],
+ [7.43853, 47.02303],
+ [7.43865, 47.01408],
+ [7.45174, 47.014],
+ [7.45172, 47.00503],
+ [7.54111, 47.005],
+ [7.54111, 46.99873],
+ [7.54378, 46.99871],
+ [7.54375, 46.98696],
+ [7.55682, 46.987],
+ [7.55685, 46.96003],
+ [7.51744, 46.96001],
+ [7.51744, 46.95108],
+ [7.53051, 46.95106],
+ [7.53051, 46.92407],
+ [7.51741, 46.92405],
+ [7.51738, 46.91505],
+ [7.53042, 46.91507],
+ [7.53048, 46.9061],
+ [7.54358, 46.90602],
+ [7.54358, 46.87905],
+ [7.55659, 46.87903],
+ [7.55662, 46.8611],
+ [7.54349, 46.86104],
+ [7.5434, 46.85212],
+ [7.49095, 46.85212],
+ [7.49107, 46.87907],
+ [7.47794, 46.87909],
+ [7.47797, 46.89707],
+ [7.45168, 46.89713],
+ [7.45171, 46.88808],
+ [7.43855, 46.88814],
+ [7.43858, 46.87015],
+ [7.41233, 46.87015],
+ [7.41236, 46.87907],
+ [7.39917, 46.87911],
+ [7.3992, 46.86108],
+ [7.38613, 46.86114],
+ [7.3861, 46.85218],
+ [7.373, 46.85216],
+ [7.37303, 46.86112],
+ [7.34677, 46.8611],
+ [7.3468, 46.88808],
+ [7.25488, 46.88796],
+ [7.25485, 46.90596],
+ [7.24172, 46.90592],
+ [7.24169, 46.91497],
+ [7.22856, 46.91493],
+ [7.22833, 46.96887],
+ [7.24146, 46.96891],
+ [7.24149, 46.98688],
+ [7.26769, 46.98694],
+ [7.26777, 46.99593],
+ [7.28078, 46.99595],
+ [7.2809, 47.0094],
+ [7.3807, 47.00952]
+ ]
+ ],
+ "terms_text": "Orthophoto 2012, Vermessungsamt Stadt Bern"
+ },
+ {
+ "id": "Uster-2008",
+ "name": "Stadt Uster Orthophoto 2008 10cm",
+ "type": "tms",
+ "template": "https://mapproxy.osm.ch/tiles/uster/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
+ "endDate": "2008-01-01T00:00:00.000Z",
+ "startDate": "2008-01-01T00:00:00.000Z",
+ "polygon": [
+ [[8.6, 47.31], [8.6, 47.39], [8.77, 47.39], [8.77, 47.31], [8.6, 47.31]]
+ ],
+ "terms_text": "Stadt Uster Vermessung Orthophoto 2008"
+ },
+ {
+ "id": "Zuerich-zh_luftbild2011-tms",
+ "name": "Stadt Zürich Luftbild 2011",
+ "type": "tms",
+ "template": "https://mapproxy.osm.ch/tiles/zh_luftbild2011/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
+ "endDate": "2011-01-01T00:00:00.000Z",
+ "startDate": "2011-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [8.4441, 47.3141],
+ [8.4441, 47.4411],
+ [8.6284, 47.4411],
+ [8.6284, 47.3141],
+ [8.4441, 47.3141]
+ ]
+ ],
+ "terms_text": "Stadt Zürich Luftbild 2011"
+ },
+ {
+ "id": "Zuerich-city_map",
+ "name": "Stadtplan Zürich",
+ "type": "tms",
+ "template": "https://mapproxy.osm.ch/tiles/zh_stadtplan/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
+ "polygon": [
+ [
+ [8.56681, 47.34713],
+ [8.56665, 47.34706],
+ [8.56563, 47.34684],
+ [8.56575, 47.34666],
+ [8.56509, 47.34645],
+ [8.54207, 47.33502],
+ [8.54073, 47.33376],
+ [8.5403, 47.33396],
+ [8.54019, 47.33372],
+ [8.54042, 47.33358],
+ [8.5388, 47.33208],
+ [8.53642, 47.33076],
+ [8.53622, 47.33018],
+ [8.53345, 47.32992],
+ [8.5318, 47.3295],
+ [8.53145, 47.32846],
+ [8.53102, 47.32789],
+ [8.52974, 47.32777],
+ [8.52969, 47.32687],
+ [8.52899, 47.32698],
+ [8.52813, 47.32685],
+ [8.52802, 47.32635],
+ [8.52755, 47.32639],
+ [8.52762, 47.32616],
+ [8.52579, 47.32619],
+ [8.52563, 47.32575],
+ [8.52426, 47.32608],
+ [8.5242, 47.32486],
+ [8.52372, 47.32416],
+ [8.52304, 47.32433],
+ [8.52193, 47.32436],
+ [8.52194, 47.32394],
+ [8.51932, 47.32401],
+ [8.51868, 47.32386],
+ [8.51768, 47.3232],
+ [8.51642, 47.32308],
+ [8.5156, 47.32315],
+ [8.51472, 47.32272],
+ [8.51295, 47.3229],
+ [8.51162, 47.32222],
+ [8.50957, 47.32202],
+ [8.5095, 47.32165],
+ [8.50788, 47.32203],
+ [8.50735, 47.32173],
+ [8.50529, 47.32144],
+ [8.50476, 47.32121],
+ [8.5043, 47.32074],
+ [8.50317, 47.32022],
+ [8.50241, 47.32053],
+ [8.50227, 47.32082],
+ [8.50152, 47.32129],
+ [8.50102, 47.32198],
+ [8.50095, 47.32259],
+ [8.5006, 47.32278],
+ [8.50078, 47.3237],
+ [8.50066, 47.32451],
+ [8.50098, 47.32595],
+ [8.5015, 47.3265],
+ [8.50159, 47.32732],
+ [8.50188, 47.32765],
+ [8.50132, 47.32883],
+ [8.5014, 47.32903],
+ [8.50069, 47.32979],
+ [8.50087, 47.33053],
+ [8.50063, 47.3311],
+ [8.50112, 47.33183],
+ [8.50075, 47.33202],
+ [8.50078, 47.33224],
+ [8.50106, 47.3326],
+ [8.50191, 47.33303],
+ [8.5022, 47.33364],
+ [8.50177, 47.33412],
+ [8.50152, 47.33504],
+ [8.50199, 47.33666],
+ [8.50161, 47.33728],
+ [8.49877, 47.33968],
+ [8.49808, 47.34169],
+ [8.49702, 47.34247],
+ [8.49709, 47.34326],
+ [8.49798, 47.34365],
+ [8.4981, 47.34387],
+ [8.49817, 47.34453],
+ [8.49773, 47.34521],
+ [8.49636, 47.34648],
+ [8.4951, 47.34691],
+ [8.49467, 47.3476],
+ [8.49285, 47.34828],
+ [8.49206, 47.3495],
+ [8.49145, 47.34964],
+ [8.49128, 47.34983],
+ [8.49089, 47.35067],
+ [8.49, 47.35056],
+ [8.48813, 47.352],
+ [8.48691, 47.35203],
+ [8.4868, 47.3522],
+ [8.48728, 47.35311],
+ [8.4871, 47.3534],
+ [8.48501, 47.35469],
+ [8.48463, 47.35536],
+ [8.48463, 47.3567],
+ [8.48426, 47.35737],
+ [8.48321, 47.35814],
+ [8.48272, 47.35907],
+ [8.48205, 47.35954],
+ [8.47879, 47.36078],
+ [8.47698, 47.36029],
+ [8.47365, 47.36081],
+ [8.47275, 47.36079],
+ [8.47169, 47.36132],
+ [8.47053, 47.36166],
+ [8.46951, 47.36438],
+ [8.4664, 47.36574],
+ [8.46583, 47.3661],
+ [8.46545, 47.36664],
+ [8.46485, 47.36681],
+ [8.46427, 47.36728],
+ [8.46418, 47.36838],
+ [8.4649, 47.36897],
+ [8.46482, 47.36911],
+ [8.46938, 47.37136],
+ [8.47042, 47.3726],
+ [8.47022, 47.37395],
+ [8.46868, 47.37382],
+ [8.46761, 47.37357],
+ [8.46544, 47.37444],
+ [8.46288, 47.37603],
+ [8.45995, 47.3775],
+ [8.45638, 47.37801],
+ [8.45116, 47.37817],
+ [8.45047, 47.37836],
+ [8.44847, 47.37967],
+ [8.44801, 47.38025],
+ [8.45174, 47.38062],
+ [8.45371, 47.38027],
+ [8.45614, 47.38072],
+ [8.45669, 47.38094],
+ [8.45673, 47.38244],
+ [8.45745, 47.38222],
+ [8.45843, 47.38231],
+ [8.45841, 47.38263],
+ [8.45745, 47.38325],
+ [8.45767, 47.3834],
+ [8.45756, 47.38371],
+ [8.45807, 47.38388],
+ [8.46004, 47.38594],
+ [8.46088, 47.38704],
+ [8.46121, 47.38795],
+ [8.46104, 47.38803],
+ [8.46381, 47.39053],
+ [8.46518, 47.39132],
+ [8.46556, 47.39113],
+ [8.46618, 47.39113],
+ [8.46727, 47.39065],
+ [8.46697, 47.39131],
+ [8.46739, 47.3929],
+ [8.4671, 47.39334],
+ [8.46607, 47.39378],
+ [8.4651, 47.39453],
+ [8.46484, 47.39481],
+ [8.46488, 47.39508],
+ [8.46535, 47.39492],
+ [8.46854, 47.39461],
+ [8.47018, 47.39401],
+ [8.47066, 47.39439],
+ [8.47191, 47.39388],
+ [8.47208, 47.39408],
+ [8.47152, 47.3943],
+ [8.47151, 47.3949],
+ [8.4721, 47.39517],
+ [8.47301, 47.39506],
+ [8.47349, 47.396],
+ [8.46516, 47.39829],
+ [8.46568, 47.39922],
+ [8.46759, 47.39873],
+ [8.46806, 47.39957],
+ [8.46615, 47.40006],
+ [8.4677, 47.403],
+ [8.4699, 47.40298],
+ [8.47551, 47.40381],
+ [8.47815, 47.40387],
+ [8.47819, 47.40508],
+ [8.47738, 47.40517],
+ [8.47705, 47.40619],
+ [8.47729, 47.40914],
+ [8.47703, 47.40935],
+ [8.47543, 47.40971],
+ [8.47583, 47.41077],
+ [8.47605, 47.41072],
+ [8.47628, 47.41102],
+ [8.47665, 47.41097],
+ [8.47725, 47.41194],
+ [8.47488, 47.41241],
+ [8.47394, 47.41222],
+ [8.47303, 47.41146],
+ [8.47268, 47.41058],
+ [8.47101, 47.41094],
+ [8.47113, 47.41137],
+ [8.47085, 47.41167],
+ [8.47044, 47.41159],
+ [8.47031, 47.41253],
+ [8.46876, 47.41225],
+ [8.46801, 47.41334],
+ [8.46863, 47.41363],
+ [8.46857, 47.41408],
+ [8.46955, 47.41484],
+ [8.47007, 47.41557],
+ [8.46913, 47.41649],
+ [8.46913, 47.41693],
+ [8.46962, 47.41752],
+ [8.47158, 47.41763],
+ [8.4772, 47.41974],
+ [8.47688, 47.42016],
+ [8.47783, 47.42212],
+ [8.47895, 47.42172],
+ [8.47937, 47.42113],
+ [8.47972, 47.42141],
+ [8.48131, 47.42134],
+ [8.48171, 47.423],
+ [8.48294, 47.42266],
+ [8.48292, 47.42222],
+ [8.48609, 47.42155],
+ [8.48658, 47.42164],
+ [8.48683, 47.42186],
+ [8.48796, 47.42201],
+ [8.48851, 47.42271],
+ [8.49019, 47.42234],
+ [8.491, 47.4239],
+ [8.49006, 47.42435],
+ [8.49007, 47.42532],
+ [8.49027, 47.42536],
+ [8.49017, 47.42578],
+ [8.48552, 47.42712],
+ [8.48481, 47.42784],
+ [8.48466, 47.42873],
+ [8.48437, 47.42896],
+ [8.48445, 47.42979],
+ [8.48579, 47.43103],
+ [8.49562, 47.43281],
+ [8.50027, 47.43442],
+ [8.50207, 47.43467],
+ [8.50364, 47.43402],
+ [8.50997, 47.43213],
+ [8.51155, 47.43116],
+ [8.51274, 47.43085],
+ [8.516, 47.43174],
+ [8.51628, 47.43175],
+ [8.51681, 47.43133],
+ [8.51872, 47.4319],
+ [8.51979, 47.43167],
+ [8.52463, 47.43126],
+ [8.52549, 47.43316],
+ [8.5303, 47.43207],
+ [8.53063, 47.43266],
+ [8.533, 47.43228],
+ [8.53374, 47.43251],
+ [8.53467, 47.432],
+ [8.53521, 47.43188],
+ [8.53606, 47.43187],
+ [8.5374, 47.4314],
+ [8.53964, 47.43126],
+ [8.5401, 47.4311],
+ [8.54033, 47.43186],
+ [8.54363, 47.43143],
+ [8.54284, 47.43289],
+ [8.54311, 47.43288],
+ [8.54451, 47.4325],
+ [8.54459, 47.43262],
+ [8.54607, 47.43207],
+ [8.54858, 47.43142],
+ [8.55009, 47.43128],
+ [8.55098, 47.43102],
+ [8.55199, 47.43104],
+ [8.55535, 47.43066],
+ [8.5561, 47.42803],
+ [8.55684, 47.42624],
+ [8.55783, 47.42554],
+ [8.55697, 47.4249],
+ [8.55736, 47.42472],
+ [8.5569, 47.42424],
+ [8.55723, 47.4241],
+ [8.55419, 47.4208],
+ [8.56082, 47.41817],
+ [8.56129, 47.41829],
+ [8.56235, 47.41632],
+ [8.56282, 47.41643],
+ [8.56323, 47.41565],
+ [8.56622, 47.41632],
+ [8.56692, 47.41629],
+ [8.56735, 47.41649],
+ [8.5678, 47.41684],
+ [8.56875, 47.41855],
+ [8.56903, 47.41871],
+ [8.5696, 47.41868],
+ [8.56944, 47.41926],
+ [8.57223, 47.41893],
+ [8.57367, 47.42004],
+ [8.57378, 47.4178],
+ [8.57342, 47.41711],
+ [8.57386, 47.41438],
+ [8.57384, 47.41324],
+ [8.57331, 47.41257],
+ [8.5726, 47.41207],
+ [8.573, 47.41144],
+ [8.58806, 47.40797],
+ [8.58894, 47.40756],
+ [8.59312, 47.40704],
+ [8.59728, 47.40631],
+ [8.59722, 47.406],
+ [8.59608, 47.40612],
+ [8.59378, 47.40222],
+ [8.59622, 47.40154],
+ [8.5948, 47.39918],
+ [8.59725, 47.39851],
+ [8.59644, 47.39715],
+ [8.59637, 47.39663],
+ [8.59623, 47.39646],
+ [8.59453, 47.39712],
+ [8.59392, 47.39647],
+ [8.59335, 47.39614],
+ [8.59208, 47.39691],
+ [8.59172, 47.39681],
+ [8.59148, 47.397],
+ [8.58828, 47.3958],
+ [8.58905, 47.39501],
+ [8.58995, 47.39478],
+ [8.58818, 47.39351],
+ [8.58752, 47.39321],
+ [8.58747, 47.39297],
+ [8.58619, 47.3928],
+ [8.58442, 47.39195],
+ [8.58369, 47.39008],
+ [8.58305, 47.38905],
+ [8.58316, 47.38831],
+ [8.58437, 47.38834],
+ [8.58432, 47.38894],
+ [8.58492, 47.39011],
+ [8.58528, 47.3904],
+ [8.58696, 47.39017],
+ [8.5869, 47.38977],
+ [8.58765, 47.38905],
+ [8.58698, 47.38793],
+ [8.59181, 47.38638],
+ [8.59307, 47.38565],
+ [8.59299, 47.38523],
+ [8.59354, 47.38522],
+ [8.59274, 47.38417],
+ [8.59082, 47.38476],
+ [8.59013, 47.38381],
+ [8.58966, 47.384],
+ [8.58956, 47.38373],
+ [8.59217, 47.38311],
+ [8.59151, 47.38244],
+ [8.59384, 47.38081],
+ [8.59407, 47.38061],
+ [8.59406, 47.38029],
+ [8.59556, 47.3796],
+ [8.59574, 47.37927],
+ [8.59721, 47.37849],
+ [8.59674, 47.37782],
+ [8.59702, 47.37716],
+ [8.5976, 47.37661],
+ [8.59705, 47.37589],
+ [8.59778, 47.37557],
+ [8.59828, 47.3751],
+ [8.59855, 47.37473],
+ [8.59813, 47.37447],
+ [8.6002, 47.37331],
+ [8.60053, 47.3734],
+ [8.60096, 47.37312],
+ [8.60194, 47.37198],
+ [8.60192, 47.37171],
+ [8.60324, 47.37131],
+ [8.60607, 47.36871],
+ [8.60745, 47.36816],
+ [8.60812, 47.36761],
+ [8.61067, 47.3673],
+ [8.612, 47.36684],
+ [8.61308, 47.36776],
+ [8.61344, 47.36779],
+ [8.61366, 47.36802],
+ [8.61549, 47.3677],
+ [8.61645, 47.36841],
+ [8.61665, 47.36828],
+ [8.61764, 47.36681],
+ [8.61709, 47.36626],
+ [8.61682, 47.36535],
+ [8.61565, 47.36466],
+ [8.61495, 47.36458],
+ [8.61557, 47.36342],
+ [8.61566, 47.36273],
+ [8.61482, 47.36263],
+ [8.6147, 47.36151],
+ [8.61929, 47.36121],
+ [8.61996, 47.36104],
+ [8.62174, 47.36007],
+ [8.62257, 47.35983],
+ [8.62187, 47.35946],
+ [8.62133, 47.35746],
+ [8.62351, 47.35592],
+ [8.62352, 47.35561],
+ [8.62544, 47.35466],
+ [8.62416, 47.35397],
+ [8.62245, 47.35364],
+ [8.62209, 47.35334],
+ [8.61989, 47.35367],
+ [8.61976, 47.35385],
+ [8.61844, 47.35382],
+ [8.61839, 47.35425],
+ [8.61708, 47.35414],
+ [8.61569, 47.35442],
+ [8.6152, 47.3541],
+ [8.61386, 47.35402],
+ [8.61255, 47.35437],
+ [8.61156, 47.35394],
+ [8.61107, 47.35352],
+ [8.61042, 47.35337],
+ [8.60946, 47.35352],
+ [8.60776, 47.35333],
+ [8.60607, 47.35363],
+ [8.60506, 47.35359],
+ [8.6038, 47.353],
+ [8.60305, 47.35219],
+ [8.6032, 47.35207],
+ [8.60294, 47.35175],
+ [8.603, 47.35076],
+ [8.60262, 47.35073],
+ [8.6016, 47.35073],
+ [8.60104, 47.35105],
+ [8.60026, 47.35112],
+ [8.5996, 47.35145],
+ [8.59859, 47.35145],
+ [8.59824, 47.35165],
+ [8.59689, 47.3514],
+ [8.59666, 47.35161],
+ [8.59596, 47.35169],
+ [8.59564, 47.3519],
+ [8.59494, 47.35161],
+ [8.59454, 47.35175],
+ [8.5939, 47.35161],
+ [8.5935, 47.35211],
+ [8.59229, 47.3523],
+ [8.59189, 47.35278],
+ [8.59118, 47.35321],
+ [8.59047, 47.35271],
+ [8.59014, 47.35286],
+ [8.58846, 47.35289],
+ [8.58797, 47.35307],
+ [8.58748, 47.35267],
+ [8.5863, 47.35288],
+ [8.58591, 47.35231],
+ [8.5853, 47.35201],
+ [8.58462, 47.35141],
+ [8.58417, 47.35129],
+ [8.58438, 47.35116],
+ [8.58398, 47.35085],
+ [8.58348, 47.35104],
+ [8.58335, 47.35087],
+ [8.58221, 47.35101],
+ [8.58246, 47.35062],
+ [8.57851, 47.34873],
+ [8.57827, 47.34888],
+ [8.57786, 47.34865],
+ [8.57686, 47.34878],
+ [8.57688, 47.34859],
+ [8.57625, 47.34839],
+ [8.57308, 47.34751],
+ [8.573, 47.34765],
+ [8.57214, 47.34744],
+ [8.57163, 47.34728],
+ [8.5717, 47.34712],
+ [8.57029, 47.34672],
+ [8.56968, 47.3476],
+ [8.56741, 47.34674],
+ [8.56681, 47.34713]
+ ]
+ ],
+ "terms_text": "Stadt Zürich Open Government Data"
+ },
+ {
+ "id": "stamen-terrain-background",
+ "name": "Stamen Terrain",
+ "type": "tms",
+ "template": "https://stamen-tiles-{switch:a,b,c,d}.a.ssl.fastly.net/terrain-background/{zoom}/{x}/{y}.jpg",
+ "scaleExtent": [4, 18],
+ "terms_url": "http://maps.stamen.com/#terrain",
+ "terms_text": "Map tiles by Stamen Design, under CC BY 3.0. Data by OpenStreetMap, under ODbL",
+ "icon": "https://stamen.com/wp-content/uploads/2016/07/stamen_compass_rose_small-01.png"
+ },
+ {
+ "id": "Surrey-Air_Survey",
+ "name": "Surrey Air Survey",
+ "type": "tms",
+ "template": "https://{switch:a,b,c}.surrey.aerial.openstreetmap.org.uk/layer/gb_surrey_aerial/{zoom}/{x}/{y}.png",
+ "endDate": "2009-01-01T00:00:00.000Z",
+ "startDate": "2007-01-01T00:00:00.000Z",
+ "scaleExtent": [8, 21],
+ "polygon": [
+ [
+ [-0.75248, 51.08219],
+ [-0.75952, 51.08563],
+ [-0.80143, 51.14579],
+ [-0.83989, 51.14407],
+ [-0.83577, 51.18024],
+ [-0.85295, 51.20113],
+ [-0.85227, 51.20962],
+ [-0.84952, 51.2179],
+ [-0.82669, 51.24037],
+ [-0.8121, 51.24692],
+ [-0.77365, 51.24596],
+ [-0.75442, 51.23811],
+ [-0.75408, 51.23392],
+ [-0.74464, 51.23338],
+ [-0.74307, 51.28472],
+ [-0.7515, 51.30695],
+ [-0.76644, 51.3121],
+ [-0.78206, 51.32702],
+ [-0.78154, 51.33881],
+ [-0.73743, 51.37205],
+ [-0.71923, 51.37697],
+ [-0.67958, 51.3848],
+ [-0.68078, 51.39015],
+ [-0.65314, 51.39176],
+ [-0.63014, 51.39058],
+ [-0.62911, 51.39701],
+ [-0.62344, 51.39776],
+ [-0.61314, 51.42956],
+ [-0.60025, 51.44591],
+ [-0.58671, 51.44454],
+ [-0.57624, 51.4532],
+ [-0.56268, 51.45235],
+ [-0.54774, 51.447],
+ [-0.53727, 51.44486],
+ [-0.5371, 51.45267],
+ [-0.54396, 51.45459],
+ [-0.54053, 51.46989],
+ [-0.53092, 51.47609],
+ [-0.50912, 51.47448],
+ [-0.5086, 51.46957],
+ [-0.49006, 51.46828],
+ [-0.45264, 51.46069],
+ [-0.44869, 51.44293],
+ [-0.44148, 51.44186],
+ [-0.44183, 51.43694],
+ [-0.41127, 51.43801],
+ [-0.40149, 51.42795],
+ [-0.38071, 51.42624],
+ [-0.38054, 51.41617],
+ [-0.34913, 51.41382],
+ [-0.3275, 51.40375],
+ [-0.30398, 51.39904],
+ [-0.30192, 51.37547],
+ [-0.30948, 51.36969],
+ [-0.31119, 51.35297],
+ [-0.29557, 51.35415],
+ [-0.29231, 51.36733],
+ [-0.2851, 51.36808],
+ [-0.27875, 51.37719],
+ [-0.26553, 51.38372],
+ [-0.24115, 51.3848],
+ [-0.21231, 51.36283],
+ [-0.21077, 51.34986],
+ [-0.19086, 51.35029],
+ [-0.15429, 51.33388],
+ [-0.14966, 51.30577],
+ [-0.10743, 51.29665],
+ [-0.08872, 51.30996],
+ [-0.08786, 51.32208],
+ [-0.0652, 51.32154],
+ [-0.06417, 51.32648],
+ [-0.05198, 51.32637],
+ [-0.05284, 51.33463],
+ [-0.03308, 51.34309],
+ [0.00192, 51.33763],
+ [0.01188, 51.3282],
+ [0.01393, 51.29944],
+ [0.02029, 51.29944],
+ [0.02406, 51.30727],
+ [0.03316, 51.30867],
+ [0.04552, 51.30545],
+ [0.05239, 51.28774],
+ [0.06166, 51.25778],
+ [0.06406, 51.24155],
+ [0.04621, 51.21263],
+ [0.04071, 51.21091],
+ [0.04483, 51.19898],
+ [0.04947, 51.19973],
+ [0.05582, 51.19446],
+ [0.06114, 51.17907],
+ [0.06234, 51.15421],
+ [0.05771, 51.14171],
+ [0.02046, 51.13654],
+ [-0.0446, 51.13364],
+ [-0.1567, 51.13525],
+ [-0.15721, 51.129],
+ [-0.22879, 51.11834],
+ [-0.24733, 51.11834],
+ [-0.25008, 51.12114],
+ [-0.29935, 51.1137],
+ [-0.32218, 51.11198],
+ [-0.32235, 51.10584],
+ [-0.3596, 51.10196],
+ [-0.35891, 51.11133],
+ [-0.38638, 51.11176],
+ [-0.3869, 51.10625],
+ [-0.4281, 51.09472],
+ [-0.48568, 51.09516],
+ [-0.48713, 51.08723],
+ [-0.52974, 51.08654],
+ [-0.53023, 51.07899],
+ [-0.61046, 51.07655],
+ [-0.60997, 51.08067],
+ [-0.6578, 51.07922],
+ [-0.65828, 51.07434],
+ [-0.68365, 51.07075],
+ [-0.6998, 51.07083],
+ [-0.72966, 51.07449],
+ [-0.75248, 51.08219]
+ ]
+ ]
+ },
+ {
+ "id": "Szeged_2011",
+ "name": "Szeged orthophoto 2011",
+ "type": "tms",
+ "template": "http://e.tile.openstreetmap.hu/szeged-2011-10cm/{zoom}/{x}/{y}.png",
+ "endDate": "2011-01-01T00:00:00.000Z",
+ "startDate": "2011-01-01T00:00:00.000Z",
+ "scaleExtent": [10, 22],
+ "polygon": [
+ [
+ [20.14599, 46.22811],
+ [20.13323, 46.22904],
+ [20.12584, 46.22987],
+ [20.12233, 46.23099],
+ [20.12085, 46.23175],
+ [20.11897, 46.23351],
+ [20.11312, 46.24136],
+ [20.11203, 46.2433],
+ [20.11157, 46.245],
+ [20.11119, 46.24709],
+ [20.11129, 46.24877],
+ [20.11159, 46.25097],
+ [20.11222, 46.2528],
+ [20.11299, 46.25427],
+ [20.11354, 46.25535],
+ [20.11477, 46.2568],
+ [20.13523, 46.27685],
+ [20.13664, 46.27751],
+ [20.13789, 46.27803],
+ [20.13939, 46.27835],
+ [20.14088, 46.27846],
+ [20.16115, 46.27816],
+ [20.16211, 46.27816],
+ [20.16359, 46.2777],
+ [20.16618, 46.27615],
+ [20.16878, 46.27386],
+ [20.16961, 46.27144],
+ [20.16959, 46.27045],
+ [20.17009, 46.27044],
+ [20.17399, 46.26433],
+ [20.17662, 46.25829],
+ [20.1948, 46.25492],
+ [20.18587, 46.24481],
+ [20.18466, 46.24531],
+ [20.17804, 46.23831],
+ [20.17818, 46.23771],
+ [20.17953, 46.2371],
+ [20.17257, 46.23002],
+ [20.16983, 46.23504],
+ [20.16877, 46.23629],
+ [20.16703, 46.23785],
+ [20.16594, 46.23873],
+ [20.16544, 46.239],
+ [20.16548, 46.239],
+ [20.16352, 46.24014],
+ [20.16021, 46.2412],
+ [20.15927, 46.24153],
+ [20.15927, 46.24158],
+ [20.15835, 46.24185],
+ [20.15495, 46.24229],
+ [20.15108, 46.23515],
+ [20.14938, 46.23246],
+ [20.14599, 46.22811]
+ ]
+ ],
+ "terms_url": "http://www.geo.u-szeged.hu",
+ "terms_text": "SZTE TFGT - University of Szeged",
+ "best": true,
+ "description": "Inner part of Szeged"
+ },
+ {
+ "id": "teotonio_vilela",
+ "name": "Teotonio Vilela AL",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Teotonio%20Vilela&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-36.31164, -9.95468],
+ [-36.31158, -9.94382],
+ [-36.31145, -9.93197],
+ [-36.31127, -9.92436],
+ [-36.31123, -9.91848],
+ [-36.31119, -9.91637],
+ [-36.31141, -9.91324],
+ [-36.3111, -9.90922],
+ [-36.31108, -9.90318],
+ [-36.31099, -9.89379],
+ [-36.31089, -9.8842],
+ [-36.31078, -9.87412],
+ [-36.31068, -9.86457],
+ [-36.3318, -9.86432],
+ [-36.34001, -9.86437],
+ [-36.3478, -9.86425],
+ [-36.35917, -9.8642],
+ [-36.37047, -9.86404],
+ [-36.38448, -9.86386],
+ [-36.40164, -9.86364],
+ [-36.40221, -9.9225],
+ [-36.40249, -9.93177],
+ [-36.40259, -9.94183],
+ [-36.40248, -9.94804],
+ [-36.40266, -9.9537],
+ [-36.3855, -9.95384],
+ [-36.38283, -9.95392],
+ [-36.37096, -9.95399],
+ [-36.36232, -9.95423],
+ [-36.34747, -9.95422],
+ [-36.33287, -9.95446],
+ [-36.3291, -9.95456],
+ [-36.32089, -9.95459],
+ [-36.31164, -9.95468]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "tnris.org",
+ "name": "Texas Orthophoto",
+ "type": "tms",
+ "template": "https://txgi.tnris.org/login/path/ecology-fiona-poem-romeo/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=texas&STYLE=&FORMAT=image/png&tileMatrixSet=0to20&tileMatrix=0to20:{zoom}&tileRow={y}&tileCol={x}",
+ "startDate": "2012-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 20],
+ "polygon": [
+ [
+ [-99.99854, 34.56018],
+ [-95.55655, 33.99257],
+ [-93.89679, 33.61039],
+ [-93.98468, 32.04103],
+ [-93.41614, 31.02505],
+ [-93.74531, 29.57268],
+ [-96.50492, 28.23159],
+ [-97.36942, 26.95467],
+ [-97.04867, 25.8053],
+ [-99.07342, 26.32559],
+ [-100.76599, 29.02532],
+ [-102.33154, 29.84339],
+ [-103.13355, 28.88112],
+ [-104.28879, 29.28831],
+ [-104.72698, 29.94816],
+ [-104.72697, 30.23535],
+ [-106.5345, 31.78457],
+ [-106.75767, 31.78457],
+ [-106.75766, 32.04386],
+ [-106.61848, 32.04385],
+ [-103.11949, 32.04376],
+ [-103.09544, 36.50046],
+ [-103.05798, 36.54269],
+ [-100.00042, 36.54222],
+ [-99.99854, 34.56018]
+ ]
+ ],
+ "terms_url": "https://tnris.org/maps-and-data/online-mapping-services",
+ "terms_text": "Texas Natural Resources Information System"
+ },
+ {
+ "id": "tf-landscape",
+ "name": "Thunderforest Landscape",
+ "type": "tms",
+ "template": "https://{switch:a,b,c}.tile.thunderforest.com/landscape/{zoom}/{x}/{y}.png",
+ "scaleExtent": [0, 22],
+ "terms_url": "https://www.thunderforest.com/terms",
+ "terms_text": "Maps © Thunderforest, Data © OpenStreetMap contributors"
+ },
+ {
+ "id": "US-TIGER-Roads-2017",
+ "name": "TIGER Roads 2017",
+ "type": "tms",
+ "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/openstreetmapus/cj8dftc3q1ecn2tnx9qhwyj0c/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcHVzIiwiYSI6ImNpcnF4Ym43dDBoOXZmYW04bWhlNWdrY2EifQ.4SFexuTUuKkZeerO3dgtmw",
+ "endDate": "2017-01-01T00:00:00.000Z",
+ "startDate": "2017-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 22],
+ "polygon": [
+ [
+ [-124.76179, 48.41301],
+ [-124.60595, 45.90245],
+ [-124.99343, 40.05576],
+ [-122.53697, 36.85661],
+ [-119.97759, 33.00641],
+ [-117.67593, 32.46302],
+ [-114.86123, 32.47999],
+ [-111.00893, 31.33601],
+ [-108.19927, 31.326],
+ [-108.18711, 31.77551],
+ [-106.53072, 31.78209],
+ [-106.48421, 31.74645],
+ [-106.42932, 31.75206],
+ [-106.28689, 31.56133],
+ [-106.20525, 31.4467],
+ [-105.02053, 30.5361],
+ [-104.58819, 29.69979],
+ [-103.25189, 28.89087],
+ [-102.71736, 29.39206],
+ [-102.1514, 29.74757],
+ [-101.25529, 29.48105],
+ [-100.00624, 28.00822],
+ [-99.23511, 26.4476],
+ [-98.01091, 25.9928],
+ [-97.43502, 25.8266],
+ [-96.95553, 25.98216],
+ [-96.80617, 27.79782],
+ [-95.55633, 28.58761],
+ [-93.74053, 29.47421],
+ [-90.90285, 28.85645],
+ [-88.01567, 28.99443],
+ [-88.01625, 30.00389],
+ [-86.02775, 30.00475],
+ [-84.01879, 28.99618],
+ [-81.9972, 25.98268],
+ [-81.99666, 25.01349],
+ [-84.01656, 25.01258],
+ [-84.01601, 24.00527],
+ [-80.02, 24.0071],
+ [-79.89011, 26.85507],
+ [-80.02453, 32.01613],
+ [-75.41474, 35.05319],
+ [-74.02112, 39.57279],
+ [-72.00202, 40.99125],
+ [-69.87974, 40.99205],
+ [-69.84893, 43.26199],
+ [-66.94528, 44.71049],
+ [-67.75966, 47.099],
+ [-69.25051, 47.51223],
+ [-70.46149, 46.21766],
+ [-71.41227, 45.25488],
+ [-72.02225, 45.00598],
+ [-75.07988, 44.98029],
+ [-76.90231, 43.80246],
+ [-78.76239, 43.62496],
+ [-79.15798, 43.44626],
+ [-79.00601, 42.80053],
+ [-82.66248, 41.68895],
+ [-82.17616, 43.58854],
+ [-83.2814, 46.13885],
+ [-87.50645, 48.01427],
+ [-88.34922, 48.29633],
+ [-89.43531, 47.98378],
+ [-93.99811, 49.00671],
+ [-95.11054, 49.412],
+ [-96.01312, 49.00605],
+ [-123.32289, 49.00429],
+ [-123.22752, 48.18499],
+ [-124.76179, 48.41301]
+ ],
+ [
+ [-160.57876, 22.50629],
+ [-160.57822, 21.49846],
+ [-158.74706, 21.24398],
+ [-157.50832, 20.9958],
+ [-155.99619, 18.77902],
+ [-154.62178, 18.7587],
+ [-154.68902, 19.88057],
+ [-156.29276, 21.22259],
+ [-157.50474, 21.9985],
+ [-159.00937, 22.50702],
+ [-160.57876, 22.50629]
+ ],
+ [
+ [-167.1572, 68.722],
+ [-164.8554, 67.0255],
+ [-168.0022, 66.0018],
+ [-169.0087, 66.0015],
+ [-169.0075, 64.9988],
+ [-172.5143, 63.8767],
+ [-173.8197, 59.7401],
+ [-178.0001, 52.2446],
+ [-177.9993, 51.2554],
+ [-171.4689, 51.8215],
+ [-162.4025, 53.9567],
+ [-159.0076, 55.0025],
+ [-158.0191, 55.0028],
+ [-151.9963, 55.9992],
+ [-151.5003, 57.9988],
+ [-151.5013, 58.992],
+ [-138.516, 58.9953],
+ [-138.515, 57.9986],
+ [-133.9948, 54.0032],
+ [-130.0044, 54.0043],
+ [-130.0071, 57.0001],
+ [-131.9759, 56.9995],
+ [-135.123, 59.7566],
+ [-138.0072, 59.9918],
+ [-139.1716, 60.4127],
+ [-140.9874, 61.0119],
+ [-140.9684, 69.9535],
+ [-156.1769, 71.5633],
+ [-160.4136, 70.7398],
+ [-163.0218, 69.9707],
+ [-164.9717, 68.9947],
+ [-167.1572, 68.722]
+ ],
+ [
+ [-68.2, 17.8],
+ [-64.32, 17.38],
+ [-64.64, 18.36],
+ [-65.33, 18.57],
+ [-67.9, 18.67],
+ [-68.2, 17.8]
+ ],
+ [
+ [146.2, 15.4],
+ [145.7, 15.6],
+ [144.2, 13.2],
+ [144.8, 12.9],
+ [146.2, 15.4]
+ ],
+ [[179.99, 52.2], [172, 53.5], [172, 52.5], [179.99, 51], [179.99, 52.2]]
+ ],
+ "description": "Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap",
+ "icon": "data:image/png;base64,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",
+ "overlay": true
+ },
+ {
+ "id": "tirol.gv.at-contourlines",
+ "name": "Tiris: contour lines",
+ "type": "wms",
+ "template": "https://gis.tirol.gv.at/arcgis/services/Service_Public/terrain/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Hoehenschichtlinien 20m&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "scaleExtent": [15, 22],
+ "polygon": [
+ [
+ [10.43998, 47.59768],
+ [10.47886, 47.59925],
+ [10.50277, 47.58656],
+ [10.4838, 47.55979],
+ [10.51312, 47.5435],
+ [10.57177, 47.54582],
+ [10.57004, 47.56212],
+ [10.60109, 47.58074],
+ [10.63904, 47.5691],
+ [10.70804, 47.57027],
+ [10.71149, 47.54932],
+ [10.76841, 47.55048],
+ [10.78566, 47.52603],
+ [10.89605, 47.55048],
+ [10.93572, 47.5237],
+ [10.934, 47.50506],
+ [10.89088, 47.49573],
+ [10.95125, 47.49107],
+ [10.9547, 47.46776],
+ [11.003, 47.43276],
+ [10.99092, 47.40825],
+ [11.10304, 47.40475],
+ [11.11511, 47.41993],
+ [11.20998, 47.4456],
+ [11.26863, 47.44093],
+ [11.26691, 47.41059],
+ [11.29451, 47.4421],
+ [11.33073, 47.46076],
+ [11.38248, 47.45843],
+ [11.3704, 47.47592],
+ [11.4394, 47.53069],
+ [11.467, 47.51787],
+ [11.57394, 47.5237],
+ [11.57567, 47.55863],
+ [11.59809, 47.59121],
+ [11.63431, 47.60633],
+ [11.66881, 47.5947],
+ [11.793, 47.60284],
+ [11.83958, 47.59238],
+ [11.84993, 47.61098],
+ [12.00689, 47.63656],
+ [12.03622, 47.62494],
+ [12.07761, 47.62726],
+ [12.10866, 47.61912],
+ [12.19491, 47.62261],
+ [12.15351, 47.68768],
+ [12.15868, 47.7167],
+ [12.18111, 47.71206],
+ [12.21906, 47.72482],
+ [12.24148, 47.75382],
+ [12.27253, 47.7515],
+ [12.2846, 47.73178],
+ [12.26563, 47.69581],
+ [12.33635, 47.7109],
+ [12.37602, 47.69581],
+ [12.44329, 47.70277],
+ [12.45364, 47.69232],
+ [12.45364, 47.6749],
+ [12.51057, 47.63191],
+ [12.53126, 47.64586],
+ [12.58991, 47.63424],
+ [12.57956, 47.61098],
+ [12.66581, 47.5947],
+ [12.67961, 47.57492],
+ [12.64511, 47.55048],
+ [12.66753, 47.53185],
+ [12.68478, 47.50389],
+ [12.71238, 47.48175],
+ [12.66753, 47.45609],
+ [12.64166, 47.45959],
+ [12.65028, 47.44326],
+ [12.62096, 47.40709],
+ [12.57439, 47.38607],
+ [12.55024, 47.39658],
+ [12.49159, 47.37205],
+ [12.50884, 47.35102],
+ [12.48814, 47.32063],
+ [12.43467, 47.32297],
+ [12.41397, 47.30426],
+ [12.36395, 47.30894],
+ [12.3122, 47.32764],
+ [12.2708, 47.29841],
+ [12.17766, 47.29373],
+ [12.14833, 47.28437],
+ [12.11729, 47.29958],
+ [12.09831, 47.27501],
+ [12.12591, 47.25042],
+ [12.09659, 47.19771],
+ [12.11039, 47.14846],
+ [12.14143, 47.10974],
+ [12.13799, 47.08977],
+ [12.15006, 47.07568],
+ [12.00517, 47.04395],
+ [11.92065, 47.02985],
+ [11.83095, 46.99103],
+ [11.78783, 46.98633],
+ [11.77403, 46.9675],
+ [11.73091, 46.96514],
+ [11.70676, 46.98986],
+ [11.64294, 46.99456],
+ [11.61189, 47.00515],
+ [11.53254, 46.97809],
+ [11.49287, 47.00868],
+ [11.44457, 46.9675],
+ [11.4049, 46.96161],
+ [11.34453, 46.98633],
+ [11.20309, 46.9569],
+ [11.17549, 46.96161],
+ [11.17721, 46.94395],
+ [11.14616, 46.92275],
+ [11.12546, 46.92275],
+ [11.10822, 46.90389],
+ [11.11511, 46.88857],
+ [11.08234, 46.85319],
+ [11.09614, 46.8237],
+ [11.05129, 46.80245],
+ [11.02369, 46.76229],
+ [10.91848, 46.77056],
+ [10.88398, 46.75756],
+ [10.84085, 46.77292],
+ [10.82361, 46.76938],
+ [10.79083, 46.78946],
+ [10.75633, 46.77883],
+ [10.72529, 46.79064],
+ [10.74771, 46.82724],
+ [10.69424, 46.84494],
+ [10.67354, 46.86971],
+ [10.60799, 46.85319],
+ [10.55452, 46.82724],
+ [10.52002, 46.83904],
+ [10.46827, 46.83668],
+ [10.45103, 46.8815],
+ [10.47517, 46.93217],
+ [10.41308, 46.95572],
+ [10.3941, 46.98868],
+ [10.3665, 46.98044],
+ [10.33891, 46.94748],
+ [10.32856, 46.91803],
+ [10.29751, 46.91332],
+ [10.25956, 46.9251],
+ [10.23886, 46.86263],
+ [10.16642, 46.83904],
+ [10.13537, 46.8473],
+ [10.13192, 46.87207],
+ [10.10604, 46.88621],
+ [10.09224, 46.92746],
+ [10.12502, 46.95219],
+ [10.14572, 47.00044],
+ [10.11294, 47.02514],
+ [10.15262, 47.04983],
+ [10.13019, 47.06276],
+ [10.13364, 47.09095],
+ [10.15952, 47.12617],
+ [10.20091, 47.1426],
+ [10.19229, 47.20005],
+ [10.20954, 47.21294],
+ [10.18711, 47.23989],
+ [10.20091, 47.25628],
+ [10.16814, 47.2633],
+ [10.16814, 47.28086],
+ [10.20264, 47.29139],
+ [10.24404, 47.28905],
+ [10.33373, 47.32063],
+ [10.38893, 47.39074],
+ [10.4148, 47.39424],
+ [10.4562, 47.43626],
+ [10.44758, 47.48175],
+ [10.41998, 47.50506],
+ [10.4424, 47.55514],
+ [10.41308, 47.57143],
+ [10.43998, 47.59768]
+ ],
+ [
+ [12.4019, 47.16019],
+ [12.35705, 47.13908],
+ [12.35015, 47.11208],
+ [12.31048, 47.10739],
+ [12.25528, 47.07215],
+ [12.21388, 47.05923],
+ [12.20008, 47.02632],
+ [12.14488, 47.03102],
+ [12.11556, 47.0075],
+ [12.13626, 46.95926],
+ [12.16731, 46.9357],
+ [12.14316, 46.91096],
+ [12.18973, 46.90036],
+ [12.21733, 46.86617],
+ [12.25528, 46.88386],
+ [12.27425, 46.88268],
+ [12.2984, 46.83432],
+ [12.27598, 46.82016],
+ [12.27943, 46.77765],
+ [12.35015, 46.77174],
+ [12.3812, 46.715],
+ [12.44329, 46.68425],
+ [12.51402, 46.67004],
+ [12.56576, 46.64873],
+ [12.62958, 46.65347],
+ [12.70203, 46.65347],
+ [12.70375, 46.69844],
+ [12.72963, 46.70081],
+ [12.72273, 46.73747],
+ [12.80207, 46.74929],
+ [12.85382, 46.74456],
+ [12.90384, 46.77174],
+ [12.92799, 46.75992],
+ [12.95732, 46.77647],
+ [12.97974, 46.79772],
+ [12.89522, 46.83314],
+ [12.89522, 46.84848],
+ [12.8452, 46.86381],
+ [12.84692, 46.91568],
+ [12.7969, 46.93099],
+ [12.78828, 46.94748],
+ [12.7486, 46.96867],
+ [12.73653, 46.99691],
+ [12.78138, 47.0416],
+ [12.7624, 47.051],
+ [12.7141, 47.04513],
+ [12.71065, 47.07803],
+ [12.62268, 47.12617],
+ [12.56921, 47.14142],
+ [12.55196, 47.13321],
+ [12.52609, 47.15433],
+ [12.48297, 47.16488],
+ [12.46054, 47.14846],
+ [12.43467, 47.15785],
+ [12.41915, 47.14377],
+ [12.4019, 47.16019]
+ ]
+ ],
+ "terms_url": "https://tiris.tirol.gv.at",
+ "terms_text": "tiris.tirol.gv.at",
+ "icon": "https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif",
+ "overlay": true
+ },
+ {
+ "id": "tirol.gv.at-DGM",
+ "name": "Tiris: DGM (Terrain model)",
+ "type": "wms",
+ "template": "https://gis.tirol.gv.at/arcgis/services/Service_Public/terrain/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Image Schummerung_Gelaendemodell&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [10.43998, 47.59768],
+ [10.47886, 47.59925],
+ [10.50277, 47.58656],
+ [10.4838, 47.55979],
+ [10.51312, 47.5435],
+ [10.57177, 47.54582],
+ [10.57004, 47.56212],
+ [10.60109, 47.58074],
+ [10.63904, 47.5691],
+ [10.70804, 47.57027],
+ [10.71149, 47.54932],
+ [10.76841, 47.55048],
+ [10.78566, 47.52603],
+ [10.89605, 47.55048],
+ [10.93572, 47.5237],
+ [10.934, 47.50506],
+ [10.89088, 47.49573],
+ [10.95125, 47.49107],
+ [10.9547, 47.46776],
+ [11.003, 47.43276],
+ [10.99092, 47.40825],
+ [11.10304, 47.40475],
+ [11.11511, 47.41993],
+ [11.20998, 47.4456],
+ [11.26863, 47.44093],
+ [11.26691, 47.41059],
+ [11.29451, 47.4421],
+ [11.33073, 47.46076],
+ [11.38248, 47.45843],
+ [11.3704, 47.47592],
+ [11.4394, 47.53069],
+ [11.467, 47.51787],
+ [11.57394, 47.5237],
+ [11.57567, 47.55863],
+ [11.59809, 47.59121],
+ [11.63431, 47.60633],
+ [11.66881, 47.5947],
+ [11.793, 47.60284],
+ [11.83958, 47.59238],
+ [11.84993, 47.61098],
+ [12.00689, 47.63656],
+ [12.03622, 47.62494],
+ [12.07761, 47.62726],
+ [12.10866, 47.61912],
+ [12.19491, 47.62261],
+ [12.15351, 47.68768],
+ [12.15868, 47.7167],
+ [12.18111, 47.71206],
+ [12.21906, 47.72482],
+ [12.24148, 47.75382],
+ [12.27253, 47.7515],
+ [12.2846, 47.73178],
+ [12.26563, 47.69581],
+ [12.33635, 47.7109],
+ [12.37602, 47.69581],
+ [12.44329, 47.70277],
+ [12.45364, 47.69232],
+ [12.45364, 47.6749],
+ [12.51057, 47.63191],
+ [12.53126, 47.64586],
+ [12.58991, 47.63424],
+ [12.57956, 47.61098],
+ [12.66581, 47.5947],
+ [12.67961, 47.57492],
+ [12.64511, 47.55048],
+ [12.66753, 47.53185],
+ [12.68478, 47.50389],
+ [12.71238, 47.48175],
+ [12.66753, 47.45609],
+ [12.64166, 47.45959],
+ [12.65028, 47.44326],
+ [12.62096, 47.40709],
+ [12.57439, 47.38607],
+ [12.55024, 47.39658],
+ [12.49159, 47.37205],
+ [12.50884, 47.35102],
+ [12.48814, 47.32063],
+ [12.43467, 47.32297],
+ [12.41397, 47.30426],
+ [12.36395, 47.30894],
+ [12.3122, 47.32764],
+ [12.2708, 47.29841],
+ [12.17766, 47.29373],
+ [12.14833, 47.28437],
+ [12.11729, 47.29958],
+ [12.09831, 47.27501],
+ [12.12591, 47.25042],
+ [12.09659, 47.19771],
+ [12.11039, 47.14846],
+ [12.14143, 47.10974],
+ [12.13799, 47.08977],
+ [12.15006, 47.07568],
+ [12.00517, 47.04395],
+ [11.92065, 47.02985],
+ [11.83095, 46.99103],
+ [11.78783, 46.98633],
+ [11.77403, 46.9675],
+ [11.73091, 46.96514],
+ [11.70676, 46.98986],
+ [11.64294, 46.99456],
+ [11.61189, 47.00515],
+ [11.53254, 46.97809],
+ [11.49287, 47.00868],
+ [11.44457, 46.9675],
+ [11.4049, 46.96161],
+ [11.34453, 46.98633],
+ [11.20309, 46.9569],
+ [11.17549, 46.96161],
+ [11.17721, 46.94395],
+ [11.14616, 46.92275],
+ [11.12546, 46.92275],
+ [11.10822, 46.90389],
+ [11.11511, 46.88857],
+ [11.08234, 46.85319],
+ [11.09614, 46.8237],
+ [11.05129, 46.80245],
+ [11.02369, 46.76229],
+ [10.91848, 46.77056],
+ [10.88398, 46.75756],
+ [10.84085, 46.77292],
+ [10.82361, 46.76938],
+ [10.79083, 46.78946],
+ [10.75633, 46.77883],
+ [10.72529, 46.79064],
+ [10.74771, 46.82724],
+ [10.69424, 46.84494],
+ [10.67354, 46.86971],
+ [10.60799, 46.85319],
+ [10.55452, 46.82724],
+ [10.52002, 46.83904],
+ [10.46827, 46.83668],
+ [10.45103, 46.8815],
+ [10.47517, 46.93217],
+ [10.41308, 46.95572],
+ [10.3941, 46.98868],
+ [10.3665, 46.98044],
+ [10.33891, 46.94748],
+ [10.32856, 46.91803],
+ [10.29751, 46.91332],
+ [10.25956, 46.9251],
+ [10.23886, 46.86263],
+ [10.16642, 46.83904],
+ [10.13537, 46.8473],
+ [10.13192, 46.87207],
+ [10.10604, 46.88621],
+ [10.09224, 46.92746],
+ [10.12502, 46.95219],
+ [10.14572, 47.00044],
+ [10.11294, 47.02514],
+ [10.15262, 47.04983],
+ [10.13019, 47.06276],
+ [10.13364, 47.09095],
+ [10.15952, 47.12617],
+ [10.20091, 47.1426],
+ [10.19229, 47.20005],
+ [10.20954, 47.21294],
+ [10.18711, 47.23989],
+ [10.20091, 47.25628],
+ [10.16814, 47.2633],
+ [10.16814, 47.28086],
+ [10.20264, 47.29139],
+ [10.24404, 47.28905],
+ [10.33373, 47.32063],
+ [10.38893, 47.39074],
+ [10.4148, 47.39424],
+ [10.4562, 47.43626],
+ [10.44758, 47.48175],
+ [10.41998, 47.50506],
+ [10.4424, 47.55514],
+ [10.41308, 47.57143],
+ [10.43998, 47.59768]
+ ],
+ [
+ [12.4019, 47.16019],
+ [12.35705, 47.13908],
+ [12.35015, 47.11208],
+ [12.31048, 47.10739],
+ [12.25528, 47.07215],
+ [12.21388, 47.05923],
+ [12.20008, 47.02632],
+ [12.14488, 47.03102],
+ [12.11556, 47.0075],
+ [12.13626, 46.95926],
+ [12.16731, 46.9357],
+ [12.14316, 46.91096],
+ [12.18973, 46.90036],
+ [12.21733, 46.86617],
+ [12.25528, 46.88386],
+ [12.27425, 46.88268],
+ [12.2984, 46.83432],
+ [12.27598, 46.82016],
+ [12.27943, 46.77765],
+ [12.35015, 46.77174],
+ [12.3812, 46.715],
+ [12.44329, 46.68425],
+ [12.51402, 46.67004],
+ [12.56576, 46.64873],
+ [12.62958, 46.65347],
+ [12.70203, 46.65347],
+ [12.70375, 46.69844],
+ [12.72963, 46.70081],
+ [12.72273, 46.73747],
+ [12.80207, 46.74929],
+ [12.85382, 46.74456],
+ [12.90384, 46.77174],
+ [12.92799, 46.75992],
+ [12.95732, 46.77647],
+ [12.97974, 46.79772],
+ [12.89522, 46.83314],
+ [12.89522, 46.84848],
+ [12.8452, 46.86381],
+ [12.84692, 46.91568],
+ [12.7969, 46.93099],
+ [12.78828, 46.94748],
+ [12.7486, 46.96867],
+ [12.73653, 46.99691],
+ [12.78138, 47.0416],
+ [12.7624, 47.051],
+ [12.7141, 47.04513],
+ [12.71065, 47.07803],
+ [12.62268, 47.12617],
+ [12.56921, 47.14142],
+ [12.55196, 47.13321],
+ [12.52609, 47.15433],
+ [12.48297, 47.16488],
+ [12.46054, 47.14846],
+ [12.43467, 47.15785],
+ [12.41915, 47.14377],
+ [12.4019, 47.16019]
+ ]
+ ],
+ "terms_url": "https://tiris.tirol.gv.at",
+ "terms_text": "tiris.tirol.gv.at",
+ "icon": "https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif"
+ },
+ {
+ "id": "tirol.gv.at-DOM",
+ "name": "Tiris: DOM (Surface model)",
+ "type": "wms",
+ "template": "https://gis.tirol.gv.at/arcgis/services/Service_Public/terrain/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Image Schummerung_Oberflaechenmodell&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [10.43998, 47.59768],
+ [10.47886, 47.59925],
+ [10.50277, 47.58656],
+ [10.4838, 47.55979],
+ [10.51312, 47.5435],
+ [10.57177, 47.54582],
+ [10.57004, 47.56212],
+ [10.60109, 47.58074],
+ [10.63904, 47.5691],
+ [10.70804, 47.57027],
+ [10.71149, 47.54932],
+ [10.76841, 47.55048],
+ [10.78566, 47.52603],
+ [10.89605, 47.55048],
+ [10.93572, 47.5237],
+ [10.934, 47.50506],
+ [10.89088, 47.49573],
+ [10.95125, 47.49107],
+ [10.9547, 47.46776],
+ [11.003, 47.43276],
+ [10.99092, 47.40825],
+ [11.10304, 47.40475],
+ [11.11511, 47.41993],
+ [11.20998, 47.4456],
+ [11.26863, 47.44093],
+ [11.26691, 47.41059],
+ [11.29451, 47.4421],
+ [11.33073, 47.46076],
+ [11.38248, 47.45843],
+ [11.3704, 47.47592],
+ [11.4394, 47.53069],
+ [11.467, 47.51787],
+ [11.57394, 47.5237],
+ [11.57567, 47.55863],
+ [11.59809, 47.59121],
+ [11.63431, 47.60633],
+ [11.66881, 47.5947],
+ [11.793, 47.60284],
+ [11.83958, 47.59238],
+ [11.84993, 47.61098],
+ [12.00689, 47.63656],
+ [12.03622, 47.62494],
+ [12.07761, 47.62726],
+ [12.10866, 47.61912],
+ [12.19491, 47.62261],
+ [12.15351, 47.68768],
+ [12.15868, 47.7167],
+ [12.18111, 47.71206],
+ [12.21906, 47.72482],
+ [12.24148, 47.75382],
+ [12.27253, 47.7515],
+ [12.2846, 47.73178],
+ [12.26563, 47.69581],
+ [12.33635, 47.7109],
+ [12.37602, 47.69581],
+ [12.44329, 47.70277],
+ [12.45364, 47.69232],
+ [12.45364, 47.6749],
+ [12.51057, 47.63191],
+ [12.53126, 47.64586],
+ [12.58991, 47.63424],
+ [12.57956, 47.61098],
+ [12.66581, 47.5947],
+ [12.67961, 47.57492],
+ [12.64511, 47.55048],
+ [12.66753, 47.53185],
+ [12.68478, 47.50389],
+ [12.71238, 47.48175],
+ [12.66753, 47.45609],
+ [12.64166, 47.45959],
+ [12.65028, 47.44326],
+ [12.62096, 47.40709],
+ [12.57439, 47.38607],
+ [12.55024, 47.39658],
+ [12.49159, 47.37205],
+ [12.50884, 47.35102],
+ [12.48814, 47.32063],
+ [12.43467, 47.32297],
+ [12.41397, 47.30426],
+ [12.36395, 47.30894],
+ [12.3122, 47.32764],
+ [12.2708, 47.29841],
+ [12.17766, 47.29373],
+ [12.14833, 47.28437],
+ [12.11729, 47.29958],
+ [12.09831, 47.27501],
+ [12.12591, 47.25042],
+ [12.09659, 47.19771],
+ [12.11039, 47.14846],
+ [12.14143, 47.10974],
+ [12.13799, 47.08977],
+ [12.15006, 47.07568],
+ [12.00517, 47.04395],
+ [11.92065, 47.02985],
+ [11.83095, 46.99103],
+ [11.78783, 46.98633],
+ [11.77403, 46.9675],
+ [11.73091, 46.96514],
+ [11.70676, 46.98986],
+ [11.64294, 46.99456],
+ [11.61189, 47.00515],
+ [11.53254, 46.97809],
+ [11.49287, 47.00868],
+ [11.44457, 46.9675],
+ [11.4049, 46.96161],
+ [11.34453, 46.98633],
+ [11.20309, 46.9569],
+ [11.17549, 46.96161],
+ [11.17721, 46.94395],
+ [11.14616, 46.92275],
+ [11.12546, 46.92275],
+ [11.10822, 46.90389],
+ [11.11511, 46.88857],
+ [11.08234, 46.85319],
+ [11.09614, 46.8237],
+ [11.05129, 46.80245],
+ [11.02369, 46.76229],
+ [10.91848, 46.77056],
+ [10.88398, 46.75756],
+ [10.84085, 46.77292],
+ [10.82361, 46.76938],
+ [10.79083, 46.78946],
+ [10.75633, 46.77883],
+ [10.72529, 46.79064],
+ [10.74771, 46.82724],
+ [10.69424, 46.84494],
+ [10.67354, 46.86971],
+ [10.60799, 46.85319],
+ [10.55452, 46.82724],
+ [10.52002, 46.83904],
+ [10.46827, 46.83668],
+ [10.45103, 46.8815],
+ [10.47517, 46.93217],
+ [10.41308, 46.95572],
+ [10.3941, 46.98868],
+ [10.3665, 46.98044],
+ [10.33891, 46.94748],
+ [10.32856, 46.91803],
+ [10.29751, 46.91332],
+ [10.25956, 46.9251],
+ [10.23886, 46.86263],
+ [10.16642, 46.83904],
+ [10.13537, 46.8473],
+ [10.13192, 46.87207],
+ [10.10604, 46.88621],
+ [10.09224, 46.92746],
+ [10.12502, 46.95219],
+ [10.14572, 47.00044],
+ [10.11294, 47.02514],
+ [10.15262, 47.04983],
+ [10.13019, 47.06276],
+ [10.13364, 47.09095],
+ [10.15952, 47.12617],
+ [10.20091, 47.1426],
+ [10.19229, 47.20005],
+ [10.20954, 47.21294],
+ [10.18711, 47.23989],
+ [10.20091, 47.25628],
+ [10.16814, 47.2633],
+ [10.16814, 47.28086],
+ [10.20264, 47.29139],
+ [10.24404, 47.28905],
+ [10.33373, 47.32063],
+ [10.38893, 47.39074],
+ [10.4148, 47.39424],
+ [10.4562, 47.43626],
+ [10.44758, 47.48175],
+ [10.41998, 47.50506],
+ [10.4424, 47.55514],
+ [10.41308, 47.57143],
+ [10.43998, 47.59768]
+ ],
+ [
+ [12.4019, 47.16019],
+ [12.35705, 47.13908],
+ [12.35015, 47.11208],
+ [12.31048, 47.10739],
+ [12.25528, 47.07215],
+ [12.21388, 47.05923],
+ [12.20008, 47.02632],
+ [12.14488, 47.03102],
+ [12.11556, 47.0075],
+ [12.13626, 46.95926],
+ [12.16731, 46.9357],
+ [12.14316, 46.91096],
+ [12.18973, 46.90036],
+ [12.21733, 46.86617],
+ [12.25528, 46.88386],
+ [12.27425, 46.88268],
+ [12.2984, 46.83432],
+ [12.27598, 46.82016],
+ [12.27943, 46.77765],
+ [12.35015, 46.77174],
+ [12.3812, 46.715],
+ [12.44329, 46.68425],
+ [12.51402, 46.67004],
+ [12.56576, 46.64873],
+ [12.62958, 46.65347],
+ [12.70203, 46.65347],
+ [12.70375, 46.69844],
+ [12.72963, 46.70081],
+ [12.72273, 46.73747],
+ [12.80207, 46.74929],
+ [12.85382, 46.74456],
+ [12.90384, 46.77174],
+ [12.92799, 46.75992],
+ [12.95732, 46.77647],
+ [12.97974, 46.79772],
+ [12.89522, 46.83314],
+ [12.89522, 46.84848],
+ [12.8452, 46.86381],
+ [12.84692, 46.91568],
+ [12.7969, 46.93099],
+ [12.78828, 46.94748],
+ [12.7486, 46.96867],
+ [12.73653, 46.99691],
+ [12.78138, 47.0416],
+ [12.7624, 47.051],
+ [12.7141, 47.04513],
+ [12.71065, 47.07803],
+ [12.62268, 47.12617],
+ [12.56921, 47.14142],
+ [12.55196, 47.13321],
+ [12.52609, 47.15433],
+ [12.48297, 47.16488],
+ [12.46054, 47.14846],
+ [12.43467, 47.15785],
+ [12.41915, 47.14377],
+ [12.4019, 47.16019]
+ ]
+ ],
+ "terms_url": "https://tiris.tirol.gv.at",
+ "terms_text": "tiris.tirol.gv.at",
+ "icon": "https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif"
+ },
+ {
+ "id": "tirol.gv.at-orthofoto",
+ "name": "Tiris: orthophoto",
+ "type": "wms",
+ "template": "https://gis.tirol.gv.at/arcgis/services/Service_Public/orthofoto/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Image_Aktuell_RGB&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [10.43998, 47.59768],
+ [10.47886, 47.59925],
+ [10.50277, 47.58656],
+ [10.4838, 47.55979],
+ [10.51312, 47.5435],
+ [10.57177, 47.54582],
+ [10.57004, 47.56212],
+ [10.60109, 47.58074],
+ [10.63904, 47.5691],
+ [10.70804, 47.57027],
+ [10.71149, 47.54932],
+ [10.76841, 47.55048],
+ [10.78566, 47.52603],
+ [10.89605, 47.55048],
+ [10.93572, 47.5237],
+ [10.934, 47.50506],
+ [10.89088, 47.49573],
+ [10.95125, 47.49107],
+ [10.9547, 47.46776],
+ [11.003, 47.43276],
+ [10.99092, 47.40825],
+ [11.10304, 47.40475],
+ [11.11511, 47.41993],
+ [11.20998, 47.4456],
+ [11.26863, 47.44093],
+ [11.26691, 47.41059],
+ [11.29451, 47.4421],
+ [11.33073, 47.46076],
+ [11.38248, 47.45843],
+ [11.3704, 47.47592],
+ [11.4394, 47.53069],
+ [11.467, 47.51787],
+ [11.57394, 47.5237],
+ [11.57567, 47.55863],
+ [11.59809, 47.59121],
+ [11.63431, 47.60633],
+ [11.66881, 47.5947],
+ [11.793, 47.60284],
+ [11.83958, 47.59238],
+ [11.84993, 47.61098],
+ [12.00689, 47.63656],
+ [12.03622, 47.62494],
+ [12.07761, 47.62726],
+ [12.10866, 47.61912],
+ [12.19491, 47.62261],
+ [12.15351, 47.68768],
+ [12.15868, 47.7167],
+ [12.18111, 47.71206],
+ [12.21906, 47.72482],
+ [12.24148, 47.75382],
+ [12.27253, 47.7515],
+ [12.2846, 47.73178],
+ [12.26563, 47.69581],
+ [12.33635, 47.7109],
+ [12.37602, 47.69581],
+ [12.44329, 47.70277],
+ [12.45364, 47.69232],
+ [12.45364, 47.6749],
+ [12.51057, 47.63191],
+ [12.53126, 47.64586],
+ [12.58991, 47.63424],
+ [12.57956, 47.61098],
+ [12.66581, 47.5947],
+ [12.67961, 47.57492],
+ [12.64511, 47.55048],
+ [12.66753, 47.53185],
+ [12.68478, 47.50389],
+ [12.71238, 47.48175],
+ [12.66753, 47.45609],
+ [12.64166, 47.45959],
+ [12.65028, 47.44326],
+ [12.62096, 47.40709],
+ [12.57439, 47.38607],
+ [12.55024, 47.39658],
+ [12.49159, 47.37205],
+ [12.50884, 47.35102],
+ [12.48814, 47.32063],
+ [12.43467, 47.32297],
+ [12.41397, 47.30426],
+ [12.36395, 47.30894],
+ [12.3122, 47.32764],
+ [12.2708, 47.29841],
+ [12.17766, 47.29373],
+ [12.14833, 47.28437],
+ [12.11729, 47.29958],
+ [12.09831, 47.27501],
+ [12.12591, 47.25042],
+ [12.09659, 47.19771],
+ [12.11039, 47.14846],
+ [12.14143, 47.10974],
+ [12.13799, 47.08977],
+ [12.15006, 47.07568],
+ [12.00517, 47.04395],
+ [11.92065, 47.02985],
+ [11.83095, 46.99103],
+ [11.78783, 46.98633],
+ [11.77403, 46.9675],
+ [11.73091, 46.96514],
+ [11.70676, 46.98986],
+ [11.64294, 46.99456],
+ [11.61189, 47.00515],
+ [11.53254, 46.97809],
+ [11.49287, 47.00868],
+ [11.44457, 46.9675],
+ [11.4049, 46.96161],
+ [11.34453, 46.98633],
+ [11.20309, 46.9569],
+ [11.17549, 46.96161],
+ [11.17721, 46.94395],
+ [11.14616, 46.92275],
+ [11.12546, 46.92275],
+ [11.10822, 46.90389],
+ [11.11511, 46.88857],
+ [11.08234, 46.85319],
+ [11.09614, 46.8237],
+ [11.05129, 46.80245],
+ [11.02369, 46.76229],
+ [10.91848, 46.77056],
+ [10.88398, 46.75756],
+ [10.84085, 46.77292],
+ [10.82361, 46.76938],
+ [10.79083, 46.78946],
+ [10.75633, 46.77883],
+ [10.72529, 46.79064],
+ [10.74771, 46.82724],
+ [10.69424, 46.84494],
+ [10.67354, 46.86971],
+ [10.60799, 46.85319],
+ [10.55452, 46.82724],
+ [10.52002, 46.83904],
+ [10.46827, 46.83668],
+ [10.45103, 46.8815],
+ [10.47517, 46.93217],
+ [10.41308, 46.95572],
+ [10.3941, 46.98868],
+ [10.3665, 46.98044],
+ [10.33891, 46.94748],
+ [10.32856, 46.91803],
+ [10.29751, 46.91332],
+ [10.25956, 46.9251],
+ [10.23886, 46.86263],
+ [10.16642, 46.83904],
+ [10.13537, 46.8473],
+ [10.13192, 46.87207],
+ [10.10604, 46.88621],
+ [10.09224, 46.92746],
+ [10.12502, 46.95219],
+ [10.14572, 47.00044],
+ [10.11294, 47.02514],
+ [10.15262, 47.04983],
+ [10.13019, 47.06276],
+ [10.13364, 47.09095],
+ [10.15952, 47.12617],
+ [10.20091, 47.1426],
+ [10.19229, 47.20005],
+ [10.20954, 47.21294],
+ [10.18711, 47.23989],
+ [10.20091, 47.25628],
+ [10.16814, 47.2633],
+ [10.16814, 47.28086],
+ [10.20264, 47.29139],
+ [10.24404, 47.28905],
+ [10.33373, 47.32063],
+ [10.38893, 47.39074],
+ [10.4148, 47.39424],
+ [10.4562, 47.43626],
+ [10.44758, 47.48175],
+ [10.41998, 47.50506],
+ [10.4424, 47.55514],
+ [10.41308, 47.57143],
+ [10.43998, 47.59768]
+ ],
+ [
+ [12.4019, 47.16019],
+ [12.35705, 47.13908],
+ [12.35015, 47.11208],
+ [12.31048, 47.10739],
+ [12.25528, 47.07215],
+ [12.21388, 47.05923],
+ [12.20008, 47.02632],
+ [12.14488, 47.03102],
+ [12.11556, 47.0075],
+ [12.13626, 46.95926],
+ [12.16731, 46.9357],
+ [12.14316, 46.91096],
+ [12.18973, 46.90036],
+ [12.21733, 46.86617],
+ [12.25528, 46.88386],
+ [12.27425, 46.88268],
+ [12.2984, 46.83432],
+ [12.27598, 46.82016],
+ [12.27943, 46.77765],
+ [12.35015, 46.77174],
+ [12.3812, 46.715],
+ [12.44329, 46.68425],
+ [12.51402, 46.67004],
+ [12.56576, 46.64873],
+ [12.62958, 46.65347],
+ [12.70203, 46.65347],
+ [12.70375, 46.69844],
+ [12.72963, 46.70081],
+ [12.72273, 46.73747],
+ [12.80207, 46.74929],
+ [12.85382, 46.74456],
+ [12.90384, 46.77174],
+ [12.92799, 46.75992],
+ [12.95732, 46.77647],
+ [12.97974, 46.79772],
+ [12.89522, 46.83314],
+ [12.89522, 46.84848],
+ [12.8452, 46.86381],
+ [12.84692, 46.91568],
+ [12.7969, 46.93099],
+ [12.78828, 46.94748],
+ [12.7486, 46.96867],
+ [12.73653, 46.99691],
+ [12.78138, 47.0416],
+ [12.7624, 47.051],
+ [12.7141, 47.04513],
+ [12.71065, 47.07803],
+ [12.62268, 47.12617],
+ [12.56921, 47.14142],
+ [12.55196, 47.13321],
+ [12.52609, 47.15433],
+ [12.48297, 47.16488],
+ [12.46054, 47.14846],
+ [12.43467, 47.15785],
+ [12.41915, 47.14377],
+ [12.4019, 47.16019]
+ ]
+ ],
+ "terms_url": "https://tiris.tirol.gv.at",
+ "terms_text": "tiris.tirol.gv.at",
+ "icon": "https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif"
+ },
+ {
+ "id": "tirol.gv.at-orthofoto-cir",
+ "name": "Tiris: orthophoto infrared",
+ "type": "wms",
+ "template": "https://gis.tirol.gv.at/arcgis/services/Service_Public/orthofoto/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Image_Aktuell_CIR&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [10.43998, 47.59768],
+ [10.47886, 47.59925],
+ [10.50277, 47.58656],
+ [10.4838, 47.55979],
+ [10.51312, 47.5435],
+ [10.57177, 47.54582],
+ [10.57004, 47.56212],
+ [10.60109, 47.58074],
+ [10.63904, 47.5691],
+ [10.70804, 47.57027],
+ [10.71149, 47.54932],
+ [10.76841, 47.55048],
+ [10.78566, 47.52603],
+ [10.89605, 47.55048],
+ [10.93572, 47.5237],
+ [10.934, 47.50506],
+ [10.89088, 47.49573],
+ [10.95125, 47.49107],
+ [10.9547, 47.46776],
+ [11.003, 47.43276],
+ [10.99092, 47.40825],
+ [11.10304, 47.40475],
+ [11.11511, 47.41993],
+ [11.20998, 47.4456],
+ [11.26863, 47.44093],
+ [11.26691, 47.41059],
+ [11.29451, 47.4421],
+ [11.33073, 47.46076],
+ [11.38248, 47.45843],
+ [11.3704, 47.47592],
+ [11.4394, 47.53069],
+ [11.467, 47.51787],
+ [11.57394, 47.5237],
+ [11.57567, 47.55863],
+ [11.59809, 47.59121],
+ [11.63431, 47.60633],
+ [11.66881, 47.5947],
+ [11.793, 47.60284],
+ [11.83958, 47.59238],
+ [11.84993, 47.61098],
+ [12.00689, 47.63656],
+ [12.03622, 47.62494],
+ [12.07761, 47.62726],
+ [12.10866, 47.61912],
+ [12.19491, 47.62261],
+ [12.15351, 47.68768],
+ [12.15868, 47.7167],
+ [12.18111, 47.71206],
+ [12.21906, 47.72482],
+ [12.24148, 47.75382],
+ [12.27253, 47.7515],
+ [12.2846, 47.73178],
+ [12.26563, 47.69581],
+ [12.33635, 47.7109],
+ [12.37602, 47.69581],
+ [12.44329, 47.70277],
+ [12.45364, 47.69232],
+ [12.45364, 47.6749],
+ [12.51057, 47.63191],
+ [12.53126, 47.64586],
+ [12.58991, 47.63424],
+ [12.57956, 47.61098],
+ [12.66581, 47.5947],
+ [12.67961, 47.57492],
+ [12.64511, 47.55048],
+ [12.66753, 47.53185],
+ [12.68478, 47.50389],
+ [12.71238, 47.48175],
+ [12.66753, 47.45609],
+ [12.64166, 47.45959],
+ [12.65028, 47.44326],
+ [12.62096, 47.40709],
+ [12.57439, 47.38607],
+ [12.55024, 47.39658],
+ [12.49159, 47.37205],
+ [12.50884, 47.35102],
+ [12.48814, 47.32063],
+ [12.43467, 47.32297],
+ [12.41397, 47.30426],
+ [12.36395, 47.30894],
+ [12.3122, 47.32764],
+ [12.2708, 47.29841],
+ [12.17766, 47.29373],
+ [12.14833, 47.28437],
+ [12.11729, 47.29958],
+ [12.09831, 47.27501],
+ [12.12591, 47.25042],
+ [12.09659, 47.19771],
+ [12.11039, 47.14846],
+ [12.14143, 47.10974],
+ [12.13799, 47.08977],
+ [12.15006, 47.07568],
+ [12.00517, 47.04395],
+ [11.92065, 47.02985],
+ [11.83095, 46.99103],
+ [11.78783, 46.98633],
+ [11.77403, 46.9675],
+ [11.73091, 46.96514],
+ [11.70676, 46.98986],
+ [11.64294, 46.99456],
+ [11.61189, 47.00515],
+ [11.53254, 46.97809],
+ [11.49287, 47.00868],
+ [11.44457, 46.9675],
+ [11.4049, 46.96161],
+ [11.34453, 46.98633],
+ [11.20309, 46.9569],
+ [11.17549, 46.96161],
+ [11.17721, 46.94395],
+ [11.14616, 46.92275],
+ [11.12546, 46.92275],
+ [11.10822, 46.90389],
+ [11.11511, 46.88857],
+ [11.08234, 46.85319],
+ [11.09614, 46.8237],
+ [11.05129, 46.80245],
+ [11.02369, 46.76229],
+ [10.91848, 46.77056],
+ [10.88398, 46.75756],
+ [10.84085, 46.77292],
+ [10.82361, 46.76938],
+ [10.79083, 46.78946],
+ [10.75633, 46.77883],
+ [10.72529, 46.79064],
+ [10.74771, 46.82724],
+ [10.69424, 46.84494],
+ [10.67354, 46.86971],
+ [10.60799, 46.85319],
+ [10.55452, 46.82724],
+ [10.52002, 46.83904],
+ [10.46827, 46.83668],
+ [10.45103, 46.8815],
+ [10.47517, 46.93217],
+ [10.41308, 46.95572],
+ [10.3941, 46.98868],
+ [10.3665, 46.98044],
+ [10.33891, 46.94748],
+ [10.32856, 46.91803],
+ [10.29751, 46.91332],
+ [10.25956, 46.9251],
+ [10.23886, 46.86263],
+ [10.16642, 46.83904],
+ [10.13537, 46.8473],
+ [10.13192, 46.87207],
+ [10.10604, 46.88621],
+ [10.09224, 46.92746],
+ [10.12502, 46.95219],
+ [10.14572, 47.00044],
+ [10.11294, 47.02514],
+ [10.15262, 47.04983],
+ [10.13019, 47.06276],
+ [10.13364, 47.09095],
+ [10.15952, 47.12617],
+ [10.20091, 47.1426],
+ [10.19229, 47.20005],
+ [10.20954, 47.21294],
+ [10.18711, 47.23989],
+ [10.20091, 47.25628],
+ [10.16814, 47.2633],
+ [10.16814, 47.28086],
+ [10.20264, 47.29139],
+ [10.24404, 47.28905],
+ [10.33373, 47.32063],
+ [10.38893, 47.39074],
+ [10.4148, 47.39424],
+ [10.4562, 47.43626],
+ [10.44758, 47.48175],
+ [10.41998, 47.50506],
+ [10.4424, 47.55514],
+ [10.41308, 47.57143],
+ [10.43998, 47.59768]
+ ],
+ [
+ [12.4019, 47.16019],
+ [12.35705, 47.13908],
+ [12.35015, 47.11208],
+ [12.31048, 47.10739],
+ [12.25528, 47.07215],
+ [12.21388, 47.05923],
+ [12.20008, 47.02632],
+ [12.14488, 47.03102],
+ [12.11556, 47.0075],
+ [12.13626, 46.95926],
+ [12.16731, 46.9357],
+ [12.14316, 46.91096],
+ [12.18973, 46.90036],
+ [12.21733, 46.86617],
+ [12.25528, 46.88386],
+ [12.27425, 46.88268],
+ [12.2984, 46.83432],
+ [12.27598, 46.82016],
+ [12.27943, 46.77765],
+ [12.35015, 46.77174],
+ [12.3812, 46.715],
+ [12.44329, 46.68425],
+ [12.51402, 46.67004],
+ [12.56576, 46.64873],
+ [12.62958, 46.65347],
+ [12.70203, 46.65347],
+ [12.70375, 46.69844],
+ [12.72963, 46.70081],
+ [12.72273, 46.73747],
+ [12.80207, 46.74929],
+ [12.85382, 46.74456],
+ [12.90384, 46.77174],
+ [12.92799, 46.75992],
+ [12.95732, 46.77647],
+ [12.97974, 46.79772],
+ [12.89522, 46.83314],
+ [12.89522, 46.84848],
+ [12.8452, 46.86381],
+ [12.84692, 46.91568],
+ [12.7969, 46.93099],
+ [12.78828, 46.94748],
+ [12.7486, 46.96867],
+ [12.73653, 46.99691],
+ [12.78138, 47.0416],
+ [12.7624, 47.051],
+ [12.7141, 47.04513],
+ [12.71065, 47.07803],
+ [12.62268, 47.12617],
+ [12.56921, 47.14142],
+ [12.55196, 47.13321],
+ [12.52609, 47.15433],
+ [12.48297, 47.16488],
+ [12.46054, 47.14846],
+ [12.43467, 47.15785],
+ [12.41915, 47.14377],
+ [12.4019, 47.16019]
+ ]
+ ],
+ "terms_url": "https://tiris.tirol.gv.at",
+ "terms_text": "tiris.tirol.gv.at",
+ "icon": "https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif"
+ },
+ {
+ "id": "lu.geoportail.opendata.topo",
+ "name": "Topographical Map geoportail.lu",
+ "type": "tms",
+ "template": "https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/topo/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png",
+ "endDate": "2010-07-20T00:00:00.000Z",
+ "startDate": "2013-07-19T00:00:00.000Z",
+ "scaleExtent": [0, 20],
+ "polygon": [
+ [
+ [5.96175, 50.17631],
+ [6.02627, 50.18496],
+ [6.03318, 50.16395],
+ [6.06069, 50.15536],
+ [6.07668, 50.15913],
+ [6.07824, 50.17255],
+ [6.10176, 50.17199],
+ [6.1225, 50.16437],
+ [6.1201, 50.15594],
+ [6.1277, 50.14993],
+ [6.11323, 50.13739],
+ [6.12369, 50.13719],
+ [6.14093, 50.1305],
+ [6.13555, 50.11899],
+ [6.13808, 50.10263],
+ [6.13108, 50.09964],
+ [6.13547, 50.09119],
+ [6.12194, 50.09059],
+ [6.12634, 50.07817],
+ [6.13186, 50.07348],
+ [6.12117, 50.064],
+ [6.11444, 50.06139],
+ [6.11563, 50.05817],
+ [6.12361, 50.06323],
+ [6.13661, 50.04178],
+ [6.13034, 50.02975],
+ [6.14821, 50.02307],
+ [6.13868, 50.01572],
+ [6.13594, 50.01485],
+ [6.13138, 50.01905],
+ [6.13024, 50.01819],
+ [6.13934, 50.01116],
+ [6.1517, 50.01058],
+ [6.14546, 49.99689],
+ [6.13966, 49.9994],
+ [6.13852, 49.99829],
+ [6.14218, 49.99535],
+ [6.15023, 49.99518],
+ [6.15625, 49.98867],
+ [6.17305, 49.98589],
+ [6.17348, 49.98344],
+ [6.17035, 49.98376],
+ [6.16549, 49.97115],
+ [6.17151, 49.96298],
+ [6.1763, 49.962],
+ [6.17995, 49.95386],
+ [6.18339, 49.9548],
+ [6.17983, 49.96307],
+ [6.18331, 49.9686],
+ [6.19277, 49.97158],
+ [6.19978, 49.95352],
+ [6.20707, 49.95672],
+ [6.21269, 49.9514],
+ [6.22502, 49.95039],
+ [6.22044, 49.94369],
+ [6.22824, 49.93726],
+ [6.22635, 49.92766],
+ [6.21913, 49.92354],
+ [6.22986, 49.92125],
+ [6.23603, 49.91355],
+ [6.23187, 49.91064],
+ [6.22769, 49.91062],
+ [6.23229, 49.9072],
+ [6.23381, 49.90028],
+ [6.24692, 49.89535],
+ [6.25781, 49.88724],
+ [6.26301, 49.88101],
+ [6.27646, 49.87725],
+ [6.28113, 49.87957],
+ [6.29166, 49.87548],
+ [6.2977, 49.86673],
+ [6.30989, 49.87107],
+ [6.31532, 49.8673],
+ [6.31465, 49.86057],
+ [6.32361, 49.85188],
+ [6.32158, 49.8409],
+ [6.32741, 49.83673],
+ [6.33656, 49.83998],
+ [6.33937, 49.8507],
+ [6.36465, 49.85164],
+ [6.4022, 49.82098],
+ [6.42643, 49.81629],
+ [6.42807, 49.81186],
+ [6.43097, 49.81129],
+ [6.44161, 49.81547],
+ [6.44344, 49.81233],
+ [6.45366, 49.81275],
+ [6.46454, 49.81975],
+ [6.47057, 49.82385],
+ [6.49681, 49.81277],
+ [6.50669, 49.80993],
+ [6.51155, 49.80238],
+ [6.51485, 49.80513],
+ [6.5196, 49.81446],
+ [6.52981, 49.81048],
+ [6.53225, 49.80686],
+ [6.53083, 49.80116],
+ [6.50622, 49.78899],
+ [6.51917, 49.78344],
+ [6.51105, 49.77422],
+ [6.52056, 49.76818],
+ [6.52052, 49.76134],
+ [6.50373, 49.75086],
+ [6.50263, 49.73298],
+ [6.50727, 49.72938],
+ [6.51809, 49.7242],
+ [6.51642, 49.72129],
+ [6.51176, 49.72016],
+ [6.50479, 49.725],
+ [6.49891, 49.72639],
+ [6.49558, 49.72443],
+ [6.50712, 49.71655],
+ [6.50788, 49.71215],
+ [6.5046, 49.71227],
+ [6.42714, 49.66237],
+ [6.4399, 49.66025],
+ [6.44251, 49.65591],
+ [6.42178, 49.61809],
+ [6.39898, 49.60094],
+ [6.37941, 49.59526],
+ [6.37551, 49.58809],
+ [6.38443, 49.5801],
+ [6.38119, 49.57509],
+ [6.36909, 49.5783],
+ [6.35791, 49.57166],
+ [6.3849, 49.55817],
+ [6.38009, 49.54856],
+ [6.35855, 49.53296],
+ [6.35932, 49.52481],
+ [6.37076, 49.50545],
+ [6.37056, 49.45732],
+ [6.3334, 49.46493],
+ [6.32189, 49.47244],
+ [6.29503, 49.47928],
+ [6.28789, 49.48379],
+ [6.27191, 49.49995],
+ [6.24133, 49.50693],
+ [6.19669, 49.50331],
+ [6.17337, 49.50577],
+ [6.16086, 49.50085],
+ [6.1671, 49.49006],
+ [6.14018, 49.48525],
+ [6.12937, 49.48803],
+ [6.12725, 49.47081],
+ [6.1014, 49.46726],
+ [6.10483, 49.45076],
+ [6.08167, 49.45417],
+ [6.07722, 49.46139],
+ [6.05917, 49.46306],
+ [6.05222, 49.46028],
+ [6.04421, 49.44553],
+ [6.02529, 49.44703],
+ [6.02154, 49.45127],
+ [6.01574, 49.44885],
+ [5.99412, 49.45301],
+ [5.97657, 49.44885],
+ [5.97773, 49.45955],
+ [5.97232, 49.46087],
+ [5.96891, 49.48202],
+ [5.9616, 49.49026],
+ [5.91578, 49.49835],
+ [5.89033, 49.4948],
+ [5.86332, 49.50006],
+ [5.84897, 49.50826],
+ [5.84828, 49.51397],
+ [5.83641, 49.51817],
+ [5.83187, 49.52639],
+ [5.84308, 49.53081],
+ [5.83562, 49.54114],
+ [5.81625, 49.53325],
+ [5.8052, 49.54272],
+ [5.85943, 49.57158],
+ [5.86866, 49.587],
+ [5.86289, 49.58525],
+ [5.8511, 49.58379],
+ [5.84712, 49.58961],
+ [5.84565, 49.5981],
+ [5.8694, 49.6106],
+ [5.88182, 49.63815],
+ [5.89998, 49.63907],
+ [5.89934, 49.66239],
+ [5.85656, 49.67628],
+ [5.85628, 49.68211],
+ [5.8757, 49.71118],
+ [5.86481, 49.72331],
+ [5.84325, 49.71822],
+ [5.82191, 49.72128],
+ [5.82489, 49.73767],
+ [5.82073, 49.74878],
+ [5.78626, 49.79079],
+ [5.76517, 49.78961],
+ [5.75094, 49.79094],
+ [5.74159, 49.82126],
+ [5.74581, 49.82435],
+ [5.7372, 49.83353],
+ [5.74053, 49.84142],
+ [5.74701, 49.84048],
+ [5.74624, 49.84783],
+ [5.75399, 49.84878],
+ [5.74066, 49.85152],
+ [5.75229, 49.85922],
+ [5.74955, 49.87554],
+ [5.77567, 49.87438],
+ [5.77505, 49.88057],
+ [5.7346, 49.89341],
+ [5.73303, 49.90285],
+ [5.75783, 49.91737],
+ [5.76039, 49.93252],
+ [5.77073, 49.93711],
+ [5.76878, 49.94239],
+ [5.7688, 49.96104],
+ [5.78672, 49.96816],
+ [5.80524, 49.96677],
+ [5.80652, 49.97321],
+ [5.83129, 49.97995],
+ [5.83462, 49.98656],
+ [5.81806, 49.99936],
+ [5.81561, 50.01437],
+ [5.84792, 50.02809],
+ [5.86189, 50.04581],
+ [5.85087, 50.0563],
+ [5.85781, 50.07186],
+ [5.881, 50.08069],
+ [5.89196, 50.12041],
+ [5.95286, 50.13384],
+ [5.96175, 50.17631]
+ ]
+ ],
+ "terms_url": "https://data.public.lu/en/datasets/cartes-topographiques-services-wms-et-wmts",
+ "terms_text": "Administration du Cadastre et de la Topographie",
+ "icon": "https://www.geoportail.lu/static/img/lion.png"
+ },
+ {
+ "id": "Torokbalint-orthophoto-2013",
+ "name": "Törökbálint orthophoto 2013",
+ "type": "wms",
+ "template": "https://terkep.torokbalint.hu/mapproxy/service?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ORTO_2013_5CM_2013SZEPT_TAKARASSAL_512_512&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&TRANSPARENT=true",
+ "projection": "EPSG:3857",
+ "endDate": "2013-09-01T00:00:00.000Z",
+ "startDate": "2013-09-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [18.91731, 47.40854],
+ [18.91691, 47.40849],
+ [18.91606, 47.40885],
+ [18.91565, 47.40905],
+ [18.91458, 47.40938],
+ [18.91385, 47.4097],
+ [18.91376, 47.40976],
+ [18.91314, 47.41038],
+ [18.9122, 47.41098],
+ [18.91041, 47.41175],
+ [18.90932, 47.41258],
+ [18.90841, 47.41317],
+ [18.90676, 47.41443],
+ [18.90481, 47.41568],
+ [18.90362, 47.41597],
+ [18.90317, 47.41616],
+ [18.90062, 47.41742],
+ [18.90042, 47.41755],
+ [18.89968, 47.41797],
+ [18.89888, 47.41818],
+ [18.89814, 47.41835],
+ [18.89752, 47.41855],
+ [18.89666, 47.41901],
+ [18.8958, 47.41954],
+ [18.89421, 47.4205],
+ [18.89055, 47.42209],
+ [18.88743, 47.42332],
+ [18.88554, 47.42424],
+ [18.88436, 47.42476],
+ [18.88189, 47.42553],
+ [18.88085, 47.42598],
+ [18.8801, 47.42629],
+ [18.87956, 47.42649],
+ [18.87741, 47.42738],
+ [18.87602, 47.42789],
+ [18.87508, 47.42836],
+ [18.87281, 47.42934],
+ [18.87164, 47.42968],
+ [18.8714, 47.43001],
+ [18.87259, 47.4323],
+ [18.87273, 47.43278],
+ [18.87274, 47.43324],
+ [18.87244, 47.43482],
+ [18.87206, 47.43526],
+ [18.86891, 47.43712],
+ [18.86561, 47.4375],
+ [18.86466, 47.43774],
+ [18.86404, 47.43809],
+ [18.86378, 47.43791],
+ [18.8634, 47.43784],
+ [18.863, 47.43798],
+ [18.85195, 47.44715],
+ [18.85217, 47.44847],
+ [18.8593, 47.45387],
+ [18.85839, 47.45512],
+ [18.85777, 47.45568],
+ [18.85718, 47.456],
+ [18.8572, 47.45636],
+ [18.86015, 47.45839],
+ [18.86194, 47.4595],
+ [18.86099, 47.46071],
+ [18.85979, 47.46201],
+ [18.85929, 47.46236],
+ [18.85859, 47.46272],
+ [18.85713, 47.46333],
+ [18.85634, 47.4636],
+ [18.85628, 47.46403],
+ [18.85719, 47.46528],
+ [18.85663, 47.46551],
+ [18.85653, 47.4658],
+ [18.85693, 47.46656],
+ [18.85836, 47.46953],
+ [18.85826, 47.4698],
+ [18.85827, 47.46991],
+ [18.85838, 47.47019],
+ [18.85844, 47.47027],
+ [18.85852, 47.47033],
+ [18.85862, 47.47036],
+ [18.85873, 47.47038],
+ [18.8589, 47.47036],
+ [18.86146, 47.46973],
+ [18.86277, 47.46929],
+ [18.86617, 47.46785],
+ [18.86794, 47.46656],
+ [18.86997, 47.46524],
+ [18.8708, 47.46457],
+ [18.87268, 47.46333],
+ [18.87536, 47.46113],
+ [18.87687, 47.45927],
+ [18.88943, 47.45987],
+ [18.89024, 47.45988],
+ [18.90371, 47.45534],
+ [18.90427, 47.4552],
+ [18.90493, 47.45506],
+ [18.90542, 47.4551],
+ [18.90567, 47.45505],
+ [18.90629, 47.45477],
+ [18.90648, 47.45453],
+ [18.9066, 47.45447],
+ [18.90678, 47.45439],
+ [18.90811, 47.45399],
+ [18.90837, 47.45395],
+ [18.9089, 47.45384],
+ [18.90954, 47.4537],
+ [18.91326, 47.45317],
+ [18.91353, 47.4532],
+ [18.91372, 47.45317],
+ [18.91386, 47.45307],
+ [18.91431, 47.45294],
+ [18.91598, 47.453],
+ [18.91807, 47.45317],
+ [18.91846, 47.453],
+ [18.91903, 47.45161],
+ [18.92173, 47.4508],
+ [18.92246, 47.45069],
+ [18.92418, 47.45025],
+ [18.92756, 47.44989],
+ [18.92972, 47.44951],
+ [18.93221, 47.44922],
+ [18.93347, 47.44932],
+ [18.93921, 47.44935],
+ [18.94229, 47.44903],
+ [18.94549, 47.4489],
+ [18.94826, 47.4487],
+ [18.95003, 47.44824],
+ [18.9547, 47.44722],
+ [18.95749, 47.44692],
+ [18.95802, 47.44715],
+ [18.95844, 47.44708],
+ [18.95877, 47.44666],
+ [18.96145, 47.4393],
+ [18.96368, 47.4358],
+ [18.96598, 47.43288],
+ [18.96899, 47.4297],
+ [18.9701, 47.42704],
+ [18.97009, 47.42679],
+ [18.96695, 47.4246],
+ [18.95735, 47.41842],
+ [18.95676, 47.4184],
+ [18.95606, 47.41813],
+ [18.95385, 47.41739],
+ [18.95144, 47.41665],
+ [18.95131, 47.41664],
+ [18.9327, 47.41703],
+ [18.93257, 47.41696],
+ [18.93201, 47.41674],
+ [18.93149, 47.4164],
+ [18.93114, 47.41612],
+ [18.92123, 47.41091],
+ [18.91957, 47.40987],
+ [18.91927, 47.40961],
+ [18.91731, 47.40854]
+ ]
+ ],
+ "terms_url": "http://www.torokbalint.hu",
+ "terms_text": "Törökbálint",
+ "description": "5 cm resolution bald image"
+ },
+ {
+ "id": "Torokbalint-orthophoto-2015",
+ "name": "Törökbálint orthophoto 2015",
+ "type": "wms",
+ "template": "https://terkep.torokbalint.hu/mapproxy/service?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=TBORTO_2015_20160218&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&TRANSPARENT=true",
+ "projection": "EPSG:3857",
+ "endDate": "2015-01-01T00:00:00.000Z",
+ "startDate": "2015-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [18.91731, 47.40854],
+ [18.91691, 47.40849],
+ [18.91606, 47.40885],
+ [18.91565, 47.40905],
+ [18.91458, 47.40938],
+ [18.91385, 47.4097],
+ [18.91376, 47.40976],
+ [18.91314, 47.41038],
+ [18.9122, 47.41098],
+ [18.91041, 47.41175],
+ [18.90932, 47.41258],
+ [18.90841, 47.41317],
+ [18.90676, 47.41443],
+ [18.90481, 47.41568],
+ [18.90362, 47.41597],
+ [18.90317, 47.41616],
+ [18.90062, 47.41742],
+ [18.90042, 47.41755],
+ [18.89968, 47.41797],
+ [18.89888, 47.41818],
+ [18.89814, 47.41835],
+ [18.89752, 47.41855],
+ [18.89666, 47.41901],
+ [18.8958, 47.41954],
+ [18.89421, 47.4205],
+ [18.89055, 47.42209],
+ [18.88743, 47.42332],
+ [18.88554, 47.42424],
+ [18.88436, 47.42476],
+ [18.88189, 47.42553],
+ [18.88085, 47.42598],
+ [18.8801, 47.42629],
+ [18.87956, 47.42649],
+ [18.87741, 47.42738],
+ [18.87602, 47.42789],
+ [18.87508, 47.42836],
+ [18.87281, 47.42934],
+ [18.87164, 47.42968],
+ [18.8714, 47.43001],
+ [18.87259, 47.4323],
+ [18.87273, 47.43278],
+ [18.87274, 47.43324],
+ [18.87244, 47.43482],
+ [18.87206, 47.43526],
+ [18.86891, 47.43712],
+ [18.86561, 47.4375],
+ [18.86466, 47.43774],
+ [18.86404, 47.43809],
+ [18.86378, 47.43791],
+ [18.8634, 47.43784],
+ [18.863, 47.43798],
+ [18.85195, 47.44715],
+ [18.85217, 47.44847],
+ [18.8593, 47.45387],
+ [18.85839, 47.45512],
+ [18.85777, 47.45568],
+ [18.85718, 47.456],
+ [18.8572, 47.45636],
+ [18.86015, 47.45839],
+ [18.86194, 47.4595],
+ [18.86099, 47.46071],
+ [18.85979, 47.46201],
+ [18.85929, 47.46236],
+ [18.85859, 47.46272],
+ [18.85713, 47.46333],
+ [18.85634, 47.4636],
+ [18.85628, 47.46403],
+ [18.85719, 47.46528],
+ [18.85663, 47.46551],
+ [18.85653, 47.4658],
+ [18.85693, 47.46656],
+ [18.85836, 47.46953],
+ [18.85826, 47.4698],
+ [18.85827, 47.46991],
+ [18.85838, 47.47019],
+ [18.85844, 47.47027],
+ [18.85852, 47.47033],
+ [18.85862, 47.47036],
+ [18.85873, 47.47038],
+ [18.8589, 47.47036],
+ [18.86146, 47.46973],
+ [18.86277, 47.46929],
+ [18.86617, 47.46785],
+ [18.86794, 47.46656],
+ [18.86997, 47.46524],
+ [18.8708, 47.46457],
+ [18.87268, 47.46333],
+ [18.87536, 47.46113],
+ [18.87687, 47.45927],
+ [18.88943, 47.45987],
+ [18.89024, 47.45988],
+ [18.90371, 47.45534],
+ [18.90427, 47.4552],
+ [18.90493, 47.45506],
+ [18.90542, 47.4551],
+ [18.90567, 47.45505],
+ [18.90629, 47.45477],
+ [18.90648, 47.45453],
+ [18.9066, 47.45447],
+ [18.90678, 47.45439],
+ [18.90811, 47.45399],
+ [18.90837, 47.45395],
+ [18.9089, 47.45384],
+ [18.90954, 47.4537],
+ [18.91326, 47.45317],
+ [18.91353, 47.4532],
+ [18.91372, 47.45317],
+ [18.91386, 47.45307],
+ [18.91431, 47.45294],
+ [18.91598, 47.453],
+ [18.91807, 47.45317],
+ [18.91846, 47.453],
+ [18.91903, 47.45161],
+ [18.92173, 47.4508],
+ [18.92246, 47.45069],
+ [18.92418, 47.45025],
+ [18.92756, 47.44989],
+ [18.92972, 47.44951],
+ [18.93221, 47.44922],
+ [18.93347, 47.44932],
+ [18.93921, 47.44935],
+ [18.94229, 47.44903],
+ [18.94549, 47.4489],
+ [18.94826, 47.4487],
+ [18.95003, 47.44824],
+ [18.9547, 47.44722],
+ [18.95749, 47.44692],
+ [18.95802, 47.44715],
+ [18.95844, 47.44708],
+ [18.95877, 47.44666],
+ [18.96145, 47.4393],
+ [18.96368, 47.4358],
+ [18.96598, 47.43288],
+ [18.96899, 47.4297],
+ [18.9701, 47.42704],
+ [18.97009, 47.42679],
+ [18.96695, 47.4246],
+ [18.95735, 47.41842],
+ [18.95676, 47.4184],
+ [18.95606, 47.41813],
+ [18.95385, 47.41739],
+ [18.95144, 47.41665],
+ [18.95131, 47.41664],
+ [18.9327, 47.41703],
+ [18.93257, 47.41696],
+ [18.93201, 47.41674],
+ [18.93149, 47.4164],
+ [18.93114, 47.41612],
+ [18.92123, 47.41091],
+ [18.91957, 47.40987],
+ [18.91927, 47.40961],
+ [18.91731, 47.40854]
+ ]
+ ],
+ "terms_url": "http://fototerkep.hu",
+ "terms_text": "Fototerkep.hu",
+ "best": true,
+ "description": "5 cm resolution bald image"
+ },
+ {
+ "id": "Toulouse-Orthophotoplan-2007",
+ "name": "Toulouse - Orthophotoplan 2007",
+ "type": "wms",
+ "template": "https://wms.plan.toulouse.fr/geocache/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortho2007&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2007-01-01T00:00:00.000Z",
+ "startDate": "2007-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 22],
+ "polygon": [
+ [
+ [1.192, 43.63288],
+ [1.20154, 43.63297],
+ [1.20111, 43.65549],
+ [1.2228, 43.6557],
+ [1.22262, 43.66534],
+ [1.22753, 43.66538],
+ [1.22754, 43.66564],
+ [1.23376, 43.66569],
+ [1.23376, 43.66502],
+ [1.23512, 43.66503],
+ [1.23509, 43.66707],
+ [1.24436, 43.66716],
+ [1.24416, 43.67439],
+ [1.2494, 43.67443],
+ [1.2494, 43.67466],
+ [1.25557, 43.67472],
+ [1.25557, 43.67445],
+ [1.25695, 43.67447],
+ [1.25688, 43.67853],
+ [1.28749, 43.67883],
+ [1.28708, 43.70132],
+ [1.30882, 43.70146],
+ [1.30865, 43.71277],
+ [1.33033, 43.71295],
+ [1.33002, 43.73052],
+ [1.33671, 43.73058],
+ [1.33673, 43.73122],
+ [1.37343, 43.73105],
+ [1.37358, 43.72458],
+ [1.46045, 43.72529],
+ [1.46078, 43.7028],
+ [1.48249, 43.70295],
+ [1.48298, 43.66921],
+ [1.50468, 43.66936],
+ [1.50484, 43.65812],
+ [1.52655, 43.65827],
+ [1.52669, 43.64703],
+ [1.54837, 43.64716],
+ [1.54854, 43.63594],
+ [1.57022, 43.63608],
+ [1.57051, 43.61358],
+ [1.54882, 43.61343],
+ [1.5491, 43.59095],
+ [1.57077, 43.59107],
+ [1.57094, 43.57983],
+ [1.57937, 43.57989],
+ [1.57948, 43.57377],
+ [1.58091, 43.57378],
+ [1.58109, 43.55738],
+ [1.57123, 43.55731],
+ [1.57165, 43.52355],
+ [1.39848, 43.52226],
+ [1.39865, 43.51101],
+ [1.3121, 43.51025],
+ [1.3119, 43.52152],
+ [1.29026, 43.52131],
+ [1.28986, 43.54382],
+ [1.31152, 43.54401],
+ [1.31133, 43.55526],
+ [1.30369, 43.55519],
+ [1.30361, 43.55951],
+ [1.29554, 43.55943],
+ [1.29554, 43.55955],
+ [1.28956, 43.55945],
+ [1.28929, 43.57754],
+ [1.26757, 43.57736],
+ [1.2674, 43.58861],
+ [1.25355, 43.5885],
+ [1.25338, 43.59563],
+ [1.2518, 43.59563],
+ [1.2518, 43.59494],
+ [1.23504, 43.59478],
+ [1.23504, 43.5946],
+ [1.22396, 43.5946],
+ [1.22394, 43.59947],
+ [1.21397, 43.5993],
+ [1.21388, 43.60464],
+ [1.20206, 43.60448],
+ [1.20195, 43.61048],
+ [1.19243, 43.61037],
+ [1.192, 43.63288]
+ ]
+ ],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData",
+ "terms_text": "ToulouseMetropole"
+ },
+ {
+ "id": "Toulouse-Orthophotoplan-2011",
+ "name": "Toulouse - Orthophotoplan 2011",
+ "type": "wms",
+ "template": "https://wms.plan.toulouse.fr/geocache/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortho2011&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2011-01-01T00:00:00.000Z",
+ "startDate": "2011-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 22],
+ "polygon": [
+ [
+ [1.11351, 43.68676],
+ [1.13518, 43.68708],
+ [1.13489, 43.69835],
+ [1.17829, 43.69903],
+ [1.17799, 43.71028],
+ [1.19966, 43.71061],
+ [1.19934, 43.72187],
+ [1.24274, 43.72253],
+ [1.24243, 43.73375],
+ [1.26415, 43.73409],
+ [1.26383, 43.74536],
+ [1.28553, 43.74565],
+ [1.28525, 43.75693],
+ [1.30692, 43.75723],
+ [1.30664, 43.76848],
+ [1.32834, 43.76879],
+ [1.32808, 43.78003],
+ [1.43673, 43.78158],
+ [1.43731, 43.7591],
+ [1.45901, 43.75937],
+ [1.45933, 43.74815],
+ [1.48103, 43.7484],
+ [1.48133, 43.73718],
+ [1.50303, 43.73741],
+ [1.50359, 43.71497],
+ [1.52531, 43.71518],
+ [1.52561, 43.70401],
+ [1.54727, 43.70426],
+ [1.54757, 43.69304],
+ [1.5692, 43.69329],
+ [1.56957, 43.68203],
+ [1.5912, 43.68227],
+ [1.59174, 43.6598],
+ [1.61342, 43.66003],
+ [1.61372, 43.64883],
+ [1.63538, 43.64908],
+ [1.63841, 43.51407],
+ [1.29216, 43.50947],
+ [1.29186, 43.5207],
+ [1.27021, 43.5204],
+ [1.26988, 43.53164],
+ [1.24823, 43.53133],
+ [1.2476, 43.55378],
+ [1.22596, 43.55349],
+ [1.22568, 43.56472],
+ [1.20398, 43.56442],
+ [1.20331, 43.5869],
+ [1.18162, 43.58656],
+ [1.18102, 43.60904],
+ [1.15928, 43.60869],
+ [1.15896, 43.61995],
+ [1.13726, 43.61962],
+ [1.13659, 43.64209],
+ [1.11491, 43.64176],
+ [1.11351, 43.68676]
+ ]
+ ],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData",
+ "terms_text": "ToulouseMetropole"
+ },
+ {
+ "id": "Toulouse-Orthophotoplan-2013",
+ "name": "Toulouse - Orthophotoplan 2013",
+ "type": "wms",
+ "template": "https://wms.plan.toulouse.fr/geocache/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortho2013&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2013-01-01T00:00:00.000Z",
+ "startDate": "2013-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 22],
+ "polygon": [
+ [
+ [1.11351, 43.68676],
+ [1.13518, 43.68708],
+ [1.13489, 43.69835],
+ [1.17829, 43.69903],
+ [1.17799, 43.71028],
+ [1.19966, 43.71061],
+ [1.19934, 43.72187],
+ [1.24274, 43.72253],
+ [1.24243, 43.73375],
+ [1.26415, 43.73409],
+ [1.26383, 43.74536],
+ [1.28553, 43.74565],
+ [1.28525, 43.75693],
+ [1.30692, 43.75723],
+ [1.30664, 43.76848],
+ [1.32834, 43.76879],
+ [1.32808, 43.78003],
+ [1.43673, 43.78158],
+ [1.43731, 43.7591],
+ [1.45901, 43.75937],
+ [1.45933, 43.74815],
+ [1.48103, 43.7484],
+ [1.48133, 43.73718],
+ [1.50303, 43.73741],
+ [1.50359, 43.71497],
+ [1.52531, 43.71518],
+ [1.52561, 43.70401],
+ [1.54727, 43.70426],
+ [1.54757, 43.69304],
+ [1.5692, 43.69329],
+ [1.56957, 43.68203],
+ [1.5912, 43.68227],
+ [1.59174, 43.6598],
+ [1.61342, 43.66003],
+ [1.61372, 43.64883],
+ [1.63538, 43.64908],
+ [1.63841, 43.51407],
+ [1.29216, 43.50947],
+ [1.29186, 43.5207],
+ [1.27021, 43.5204],
+ [1.26988, 43.53164],
+ [1.24823, 43.53133],
+ [1.2476, 43.55378],
+ [1.22596, 43.55349],
+ [1.22568, 43.56472],
+ [1.20398, 43.56442],
+ [1.20331, 43.5869],
+ [1.18162, 43.58656],
+ [1.18102, 43.60904],
+ [1.15928, 43.60869],
+ [1.15896, 43.61995],
+ [1.13726, 43.61962],
+ [1.13659, 43.64209],
+ [1.11491, 43.64176],
+ [1.11351, 43.68676]
+ ]
+ ],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData",
+ "terms_text": "ToulouseMetropole"
+ },
+ {
+ "id": "Toulouse-Orthophotoplan-2015",
+ "name": "Toulouse - Orthophotoplan 2015",
+ "type": "wms",
+ "template": "https://wms.plan.toulouse.fr/geocache/wms?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortho2015&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2015-01-01T00:00:00.000Z",
+ "startDate": "2015-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 22],
+ "polygon": [
+ [
+ [1.11351, 43.68676],
+ [1.13518, 43.68708],
+ [1.13489, 43.69835],
+ [1.17829, 43.69903],
+ [1.17799, 43.71028],
+ [1.19966, 43.71061],
+ [1.19934, 43.72187],
+ [1.24274, 43.72253],
+ [1.24243, 43.73375],
+ [1.26415, 43.73409],
+ [1.26383, 43.74536],
+ [1.28553, 43.74565],
+ [1.28525, 43.75693],
+ [1.30692, 43.75723],
+ [1.30664, 43.76848],
+ [1.32834, 43.76879],
+ [1.32808, 43.78003],
+ [1.43673, 43.78158],
+ [1.43731, 43.7591],
+ [1.45901, 43.75937],
+ [1.45933, 43.74815],
+ [1.48103, 43.7484],
+ [1.48133, 43.73718],
+ [1.50303, 43.73741],
+ [1.50359, 43.71497],
+ [1.52531, 43.71518],
+ [1.52561, 43.70401],
+ [1.54727, 43.70426],
+ [1.54757, 43.69304],
+ [1.5692, 43.69329],
+ [1.56957, 43.68203],
+ [1.5912, 43.68227],
+ [1.59174, 43.6598],
+ [1.61342, 43.66003],
+ [1.61372, 43.64883],
+ [1.63538, 43.64908],
+ [1.63841, 43.51407],
+ [1.29216, 43.50947],
+ [1.29186, 43.5207],
+ [1.27021, 43.5204],
+ [1.26988, 43.53164],
+ [1.24823, 43.53133],
+ [1.2476, 43.55378],
+ [1.22596, 43.55349],
+ [1.22568, 43.56472],
+ [1.20398, 43.56442],
+ [1.20331, 43.5869],
+ [1.18162, 43.58656],
+ [1.18102, 43.60904],
+ [1.15928, 43.60869],
+ [1.15896, 43.61995],
+ [1.13726, 43.61962],
+ [1.13659, 43.64209],
+ [1.11491, 43.64176],
+ [1.11351, 43.68676]
+ ]
+ ],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData",
+ "terms_text": "ToulouseMetropole"
+ },
+ {
+ "id": "Tours-Orthophoto-2008_2010",
+ "name": "Tours - Orthophotos 2008-2010",
+ "type": "tms",
+ "template": "http://wms.openstreetmap.fr/tms/1.0.0/tours/{zoom}/{x}/{y}",
+ "endDate": "2011-01-01T00:00:00.000Z",
+ "startDate": "2008-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 20],
+ "polygon": [
+ [
+ [0.54575, 47.46526],
+ [0.54585, 47.46082],
+ [0.53922, 47.4607],
+ [0.53935, 47.45624],
+ [0.5328, 47.4561],
+ [0.5329, 47.45157],
+ [0.52619, 47.4514],
+ [0.52659, 47.44249],
+ [0.50009, 47.44207],
+ [0.50024, 47.43758],
+ [0.4936, 47.43743],
+ [0.4937, 47.43293],
+ [0.46061, 47.43246],
+ [0.46072, 47.42798],
+ [0.4541, 47.42781],
+ [0.45493, 47.40539],
+ [0.46154, 47.40545],
+ [0.46191, 47.39649],
+ [0.46843, 47.3966],
+ [0.46913, 47.37864],
+ [0.47571, 47.37876],
+ [0.47621, 47.3652],
+ [0.48283, 47.36535],
+ [0.48296, 47.36083],
+ [0.47635, 47.36074],
+ [0.47665, 47.35173],
+ [0.47005, 47.35162],
+ [0.4702, 47.34713],
+ [0.46375, 47.34701],
+ [0.45714, 47.34241],
+ [0.45729, 47.33791],
+ [0.45067, 47.33781],
+ [0.45084, 47.33331],
+ [0.44422, 47.3332],
+ [0.44438, 47.32871],
+ [0.43114, 47.3285],
+ [0.43163, 47.315],
+ [0.43824, 47.31511],
+ [0.43838, 47.31062],
+ [0.47145, 47.31114],
+ [0.47131, 47.31566],
+ [0.47789, 47.31575],
+ [0.47807, 47.31128],
+ [0.48468, 47.31136],
+ [0.48486, 47.30687],
+ [0.49144, 47.30698],
+ [0.49174, 47.29797],
+ [0.48516, 47.29787],
+ [0.48543, 47.28887],
+ [0.47885, 47.28877],
+ [0.47916, 47.27978],
+ [0.48578, 47.2799],
+ [0.48591, 47.27539],
+ [0.49254, 47.2755],
+ [0.49267, 47.27101],
+ [0.4993, 47.27111],
+ [0.49943, 47.26661],
+ [0.51927, 47.26692],
+ [0.51942, 47.26242],
+ [0.52602, 47.26252],
+ [0.52587, 47.26702],
+ [0.5457, 47.26734],
+ [0.54555, 47.27183],
+ [0.55877, 47.27204],
+ [0.55863, 47.27652],
+ [0.56523, 47.27663],
+ [0.56508, 47.28112],
+ [0.57168, 47.28123],
+ [0.57152, 47.28572],
+ [0.57814, 47.28583],
+ [0.57799, 47.29033],
+ [0.5846, 47.29043],
+ [0.58431, 47.29942],
+ [0.5975, 47.29961],
+ [0.59766, 47.29514],
+ [0.65716, 47.296],
+ [0.6573, 47.29151],
+ [0.6705, 47.29172],
+ [0.67035, 47.29621],
+ [0.68362, 47.29637],
+ [0.68343, 47.30089],
+ [0.69006, 47.30096],
+ [0.68992, 47.30547],
+ [0.7362, 47.30612],
+ [0.73608, 47.31061],
+ [0.7559, 47.31089],
+ [0.75577, 47.31539],
+ [0.76238, 47.31547],
+ [0.76223, 47.31999],
+ [0.77549, 47.32015],
+ [0.77497, 47.33882],
+ [0.77458, 47.35163],
+ [0.76804, 47.35159],
+ [0.76759, 47.36053],
+ [0.77424, 47.36062],
+ [0.77335, 47.39213],
+ [0.76674, 47.39202],
+ [0.76644, 47.40108],
+ [0.77306, 47.40111],
+ [0.77289, 47.41013],
+ [0.76618, 47.41002],
+ [0.76603, 47.4145],
+ [0.75276, 47.4143],
+ [0.75298, 47.40981],
+ [0.74624, 47.4097],
+ [0.74594, 47.42322],
+ [0.73923, 47.42315],
+ [0.73887, 47.43661],
+ [0.73233, 47.43652],
+ [0.73219, 47.44106],
+ [0.7255, 47.44098],
+ [0.72542, 47.44535],
+ [0.73188, 47.44548],
+ [0.73185, 47.45011],
+ [0.73845, 47.45023],
+ [0.73831, 47.45463],
+ [0.74494, 47.45474],
+ [0.74432, 47.4772],
+ [0.73107, 47.47697],
+ [0.7309, 47.48154],
+ [0.71762, 47.48126],
+ [0.71779, 47.47684],
+ [0.69777, 47.4765],
+ [0.69805, 47.47198],
+ [0.69145, 47.47189],
+ [0.69173, 47.46302],
+ [0.6851, 47.46293],
+ [0.68494, 47.46735],
+ [0.67826, 47.46733],
+ [0.67798, 47.47622],
+ [0.67141, 47.47616],
+ [0.67104, 47.4882],
+ [0.65773, 47.48797],
+ [0.65782, 47.48504],
+ [0.65119, 47.48483],
+ [0.65147, 47.47586],
+ [0.64482, 47.47572],
+ [0.64493, 47.47126],
+ [0.6118, 47.47075],
+ [0.61188, 47.46631],
+ [0.60528, 47.46612],
+ [0.60542, 47.46166],
+ [0.59888, 47.46155],
+ [0.59902, 47.45709],
+ [0.57249, 47.45669],
+ [0.57218, 47.46565],
+ [0.54575, 47.46526]
+ ]
+ ],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/Tours/Orthophoto",
+ "terms_text": "Orthophoto Tour(s) Plus 2008"
+ },
+ {
+ "id": "Tours-Orthophoto-2013",
+ "name": "Tours - Orthophotos 2013",
+ "type": "tms",
+ "template": "http://wms.openstreetmap.fr/tms/1.0.0/tours_2013/{zoom}/{x}/{y}",
+ "endDate": "2013-01-01T00:00:00.000Z",
+ "startDate": "2013-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 22],
+ "polygon": [
+ [
+ [0.77512, 47.32983],
+ [0.77427, 47.35617],
+ [0.77053, 47.35611],
+ [0.77024, 47.36512],
+ [0.77398, 47.36517],
+ [0.7728, 47.40148],
+ [0.7904, 47.40147],
+ [0.78988, 47.4103],
+ [0.79117, 47.41047],
+ [0.79108, 47.41942],
+ [0.79392, 47.41942],
+ [0.79319, 47.43733],
+ [0.79834, 47.43742],
+ [0.79808, 47.45544],
+ [0.80044, 47.45541],
+ [0.80138, 47.46426],
+ [0.80074, 47.46899],
+ [0.79396, 47.47331],
+ [0.78405, 47.47323],
+ [0.78387, 47.47871],
+ [0.77606, 47.47859],
+ [0.77585, 47.48204],
+ [0.77066, 47.48219],
+ [0.77044, 47.4859],
+ [0.76096, 47.49092],
+ [0.75718, 47.49092],
+ [0.73753, 47.50336],
+ [0.7259, 47.50588],
+ [0.71113, 47.50576],
+ [0.70418, 47.50408],
+ [0.69109, 47.50038],
+ [0.69045, 47.49718],
+ [0.67757, 47.49683],
+ [0.67757, 47.49353],
+ [0.66427, 47.49301],
+ [0.6635, 47.48953],
+ [0.65088, 47.48958],
+ [0.65133, 47.48032],
+ [0.64734, 47.4803],
+ [0.64747, 47.47852],
+ [0.64474, 47.47846],
+ [0.64479, 47.47575],
+ [0.64238, 47.47578],
+ [0.64225, 47.47302],
+ [0.63835, 47.47294],
+ [0.63792, 47.47131],
+ [0.60513, 47.47079],
+ [0.60513, 47.46632],
+ [0.59852, 47.46603],
+ [0.59878, 47.46156],
+ [0.592, 47.46156],
+ [0.59226, 47.45976],
+ [0.58084, 47.45971],
+ [0.58007, 47.46145],
+ [0.57234, 47.46139],
+ [0.57222, 47.46512],
+ [0.55874, 47.46489],
+ [0.5466, 47.46052],
+ [0.53269, 47.45355],
+ [0.52677, 47.45315],
+ [0.52677, 47.45152],
+ [0.52231, 47.45123],
+ [0.52256, 47.44804],
+ [0.51977, 47.44776],
+ [0.52007, 47.44247],
+ [0.4975, 47.4416],
+ [0.49716, 47.44049],
+ [0.49355, 47.44015],
+ [0.49355, 47.43573],
+ [0.47943, 47.43575],
+ [0.46171, 47.42819],
+ [0.45643, 47.42088],
+ [0.45489, 47.41229],
+ [0.45506, 47.40218],
+ [0.46149, 47.40193],
+ [0.46167, 47.39641],
+ [0.46879, 47.39602],
+ [0.47016, 47.35173],
+ [0.45677, 47.3515],
+ [0.45729, 47.34254],
+ [0.43085, 47.34196],
+ [0.43196, 47.30602],
+ [0.47154, 47.3067],
+ [0.47257, 47.28004],
+ [0.48527, 47.28004],
+ [0.48578, 47.27084],
+ [0.49935, 47.27107],
+ [0.49917, 47.26245],
+ [0.55273, 47.26304],
+ [0.55222, 47.27201],
+ [0.56561, 47.27224],
+ [0.56526, 47.28156],
+ [0.59118, 47.28156],
+ [0.59067, 47.29099],
+ [0.66912, 47.29169],
+ [0.6832, 47.29564],
+ [0.6832, 47.30077],
+ [0.69658, 47.30123],
+ [0.69641, 47.3024],
+ [0.71006, 47.30245],
+ [0.72293, 47.30589],
+ [0.72285, 47.31043],
+ [0.74165, 47.31084],
+ [0.75426, 47.31392],
+ [0.7625, 47.31815],
+ [0.76207, 47.32013],
+ [0.76619, 47.32009],
+ [0.76956, 47.32207],
+ [0.77233, 47.32508],
+ [0.77336, 47.3267],
+ [0.77512, 47.32983]
+ ]
+ ],
+ "terms_url": "https://wiki.openstreetmap.org/wiki/Tours/Orthophoto",
+ "terms_text": "Orthophoto Tour(s)plus 2013"
+ },
+ {
+ "id": "trafikverket-baninfo",
+ "name": "Trafikverket Railway Network",
+ "type": "wms",
+ "template": "http://geo-baninfo.trafikverket.se/mapservice/wms.axd/BanInfo?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Spar_Huvud_och_sidospar&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "scaleExtent": [7, 20],
+ "polygon": [
+ [
+ [12.80182, 55.19612],
+ [14.22729, 55.27286],
+ [18.44604, 56.69244],
+ [19.74242, 57.98481],
+ [20.0061, 59.5371],
+ [19.08394, 60.19308],
+ [20.49499, 63.2497],
+ [24.25231, 65.57437],
+ [23.81835, 67.92514],
+ [23.23607, 68.34655],
+ [20.43456, 69.17038],
+ [18.08349, 68.5644],
+ [16.50145, 67.88382],
+ [14.43602, 66.14275],
+ [11.82128, 63.30775],
+ [12.20031, 60.31063],
+ [10.62377, 58.5482],
+ [12.64251, 56.03062],
+ [12.80182, 55.19612]
+ ]
+ ],
+ "terms_url": "https://www.trafikverket.se",
+ "terms_text": "© Trafikverket, CC0",
+ "description": "Swedish railway network, including sidings",
+ "icon": "https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png",
+ "overlay": true
+ },
+ {
+ "id": "trafikverket-vagnat",
+ "name": "Trafikverket Road Network",
+ "type": "wms",
+ "template": "https://geo-netinfo.trafikverket.se/mapservice/wms.axd/NetInfo?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Vagtrafiknat,Funkvagklass,Farjeled&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "scaleExtent": [13, 20],
+ "polygon": [
+ [
+ [12.80182, 55.19612],
+ [14.22729, 55.27286],
+ [18.44604, 56.69244],
+ [19.74242, 57.98481],
+ [20.0061, 59.5371],
+ [19.08394, 60.19308],
+ [20.49499, 63.2497],
+ [24.25231, 65.57437],
+ [23.81835, 67.92514],
+ [23.23607, 68.34655],
+ [20.43456, 69.17038],
+ [18.08349, 68.5644],
+ [16.50145, 67.88382],
+ [14.43602, 66.14275],
+ [11.82128, 63.30775],
+ [12.20031, 60.31063],
+ [10.62377, 58.5482],
+ [12.64251, 56.03062],
+ [12.80182, 55.19612]
+ ]
+ ],
+ "terms_url": "https://www.trafikverket.se",
+ "terms_text": "© Trafikverket, CC0",
+ "description": "Swedish NVDB road network",
+ "icon": "https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png",
+ "overlay": true
+ },
+ {
+ "id": "trafikverket-vagnat-extra",
+ "name": "Trafikverket Road Network extra",
+ "type": "wms",
+ "template": "https://geo-netinfo.trafikverket.se/mapservice/wms.axd/NetInfo?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=VagnummerText,Vaghinder,Rastplats,Rastficka,Hallplats,Farthinder,BroTunnel,ATK_Matplats&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "scaleExtent": [3, 20],
+ "polygon": [
+ [
+ [12.80182, 55.19612],
+ [14.22729, 55.27286],
+ [18.44604, 56.69244],
+ [19.74242, 57.98481],
+ [20.0061, 59.5371],
+ [19.08394, 60.19308],
+ [20.49499, 63.2497],
+ [24.25231, 65.57437],
+ [23.81835, 67.92514],
+ [23.23607, 68.34655],
+ [20.43456, 69.17038],
+ [18.08349, 68.5644],
+ [16.50145, 67.88382],
+ [14.43602, 66.14275],
+ [11.82128, 63.30775],
+ [12.20031, 60.31063],
+ [10.62377, 58.5482],
+ [12.64251, 56.03062],
+ [12.80182, 55.19612]
+ ]
+ ],
+ "terms_url": "https://www.trafikverket.se",
+ "terms_text": "© Trafikverket, CC0",
+ "description": "Swedish NVDB extra details: Highway reference, traffic calming, rest area, bus stop, bridge, tunnel, speed camera",
+ "icon": "https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png",
+ "overlay": true
+ },
+ {
+ "id": "trafikverket-vagnat-navn",
+ "name": "Trafikverket Street Names",
+ "type": "tms",
+ "template": "https://mapproxy.openstreetmap.se/tiles/1.0.0/nvdb_names/EPSG3857/{zoom}/{x}/{y}.png",
+ "scaleExtent": [15, 19],
+ "polygon": [
+ [
+ [12.80182, 55.19612],
+ [14.22729, 55.27286],
+ [18.44604, 56.69244],
+ [19.74242, 57.98481],
+ [20.0061, 59.5371],
+ [19.08394, 60.19308],
+ [20.49499, 63.2497],
+ [24.25231, 65.57437],
+ [23.81835, 67.92514],
+ [23.23607, 68.34655],
+ [20.43456, 69.17038],
+ [18.08349, 68.5644],
+ [16.50145, 67.88382],
+ [14.43602, 66.14275],
+ [11.82128, 63.30775],
+ [12.20031, 60.31063],
+ [10.62377, 58.5482],
+ [12.64251, 56.03062],
+ [12.80182, 55.19612]
+ ]
+ ],
+ "terms_url": "https://www.trafikverket.se",
+ "terms_text": "© Trafikverket, CC0",
+ "description": "Swedish NVDB street names",
+ "icon": "https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png",
+ "overlay": true
+ },
+ {
+ "id": "US_Forest_Service_roads_overlay",
+ "name": "U.S. Forest Roads Overlay",
+ "type": "tms",
+ "template": "https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/glassman/cjf4qjmps0tgv2qpahj977mvz/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1IjoiZ2xhc3NtYW4iLCJhIjoiRjk3dWdwYyJ9.Tg_fMJWxygeKBgVTrZHmGA",
+ "scaleExtent": [0, 20],
+ "polygon": [
+ [
+ [-124.76179, 48.41301],
+ [-124.60595, 45.90245],
+ [-124.99343, 40.05576],
+ [-122.53697, 36.85661],
+ [-119.97759, 33.00641],
+ [-117.67593, 32.46302],
+ [-114.86123, 32.47999],
+ [-111.00893, 31.33601],
+ [-108.19927, 31.326],
+ [-108.18711, 31.77551],
+ [-106.53072, 31.78209],
+ [-106.48421, 31.74645],
+ [-106.42932, 31.75206],
+ [-106.28689, 31.56133],
+ [-106.20525, 31.4467],
+ [-105.02053, 30.5361],
+ [-104.58819, 29.69979],
+ [-103.25189, 28.89087],
+ [-102.71736, 29.39206],
+ [-102.1514, 29.74757],
+ [-101.25529, 29.48105],
+ [-100.00624, 28.00822],
+ [-99.23511, 26.4476],
+ [-98.01091, 25.9928],
+ [-97.43502, 25.8266],
+ [-96.95553, 25.98216],
+ [-96.80617, 27.79782],
+ [-95.55633, 28.58761],
+ [-93.74053, 29.47421],
+ [-90.90285, 28.85645],
+ [-88.01567, 28.99443],
+ [-88.01625, 30.00389],
+ [-86.02775, 30.00475],
+ [-84.01879, 28.99618],
+ [-81.9972, 25.98268],
+ [-81.99666, 25.01349],
+ [-84.01656, 25.01258],
+ [-84.01601, 24.00527],
+ [-80.02, 24.0071],
+ [-79.89011, 26.85507],
+ [-80.02453, 32.01613],
+ [-75.41474, 35.05319],
+ [-74.02112, 39.57279],
+ [-72.00202, 40.99125],
+ [-69.87974, 40.99205],
+ [-69.84893, 43.26199],
+ [-66.94528, 44.71049],
+ [-67.75966, 47.099],
+ [-69.25051, 47.51223],
+ [-70.46149, 46.21766],
+ [-71.41227, 45.25488],
+ [-72.02225, 45.00598],
+ [-75.07988, 44.98029],
+ [-76.90231, 43.80246],
+ [-78.76239, 43.62496],
+ [-79.15798, 43.44626],
+ [-79.00601, 42.80053],
+ [-82.66248, 41.68895],
+ [-82.17616, 43.58854],
+ [-83.2814, 46.13885],
+ [-87.50645, 48.01427],
+ [-88.34922, 48.29633],
+ [-89.43531, 47.98378],
+ [-93.99811, 49.00671],
+ [-95.11054, 49.412],
+ [-96.01312, 49.00605],
+ [-123.32289, 49.00429],
+ [-123.22752, 48.18499],
+ [-124.76179, 48.41301]
+ ],
+ [
+ [-160.57876, 22.50629],
+ [-160.57822, 21.49846],
+ [-158.74706, 21.24398],
+ [-157.50832, 20.9958],
+ [-155.99619, 18.77902],
+ [-154.62178, 18.7587],
+ [-154.68902, 19.88057],
+ [-156.29276, 21.22259],
+ [-157.50474, 21.9985],
+ [-159.00937, 22.50702],
+ [-160.57876, 22.50629]
+ ],
+ [
+ [-167.15715, 68.72197],
+ [-164.8554, 67.02551],
+ [-168.0022, 66.00175],
+ [-169.00874, 66.00155],
+ [-169.00754, 64.99877],
+ [-172.51433, 63.87673],
+ [-173.8197, 59.74014],
+ [-162.50181, 58.00058],
+ [-160.0159, 58.00124],
+ [-160.01497, 57.00003],
+ [-160.50548, 56.9999],
+ [-165.80926, 54.82485],
+ [-178.0001, 52.24465],
+ [-177.9993, 51.25543],
+ [-171.46891, 51.82153],
+ [-162.40251, 53.95666],
+ [-159.00757, 55.0025],
+ [-158.01907, 55.00278],
+ [-151.99632, 55.99919],
+ [-151.50034, 57.99879],
+ [-151.50129, 58.99198],
+ [-138.516, 58.99532],
+ [-138.51505, 57.99864],
+ [-133.99482, 54.00317],
+ [-130.00444, 54.00434],
+ [-130.00708, 57.00005],
+ [-131.97588, 56.99952],
+ [-135.12299, 59.7566],
+ [-138.00718, 59.9918],
+ [-139.17159, 60.41272],
+ [-140.9874, 61.01186],
+ [-140.9684, 69.95351],
+ [-156.17689, 71.56333],
+ [-160.41363, 70.73977],
+ [-163.02183, 69.97074],
+ [-164.9717, 68.99469],
+ [-167.15715, 68.72197]
+ ]
+ ],
+ "description": "Highway: Green casing = unclassified. Brown casing = track. Surface: gravel = light brown fill, Asphalt = black, paved = gray, ground =white, concrete = blue, grass = green. Seasonal = white bars",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKwAAADBCAMAAABlhatuAAAAUVBMVEX7ywBGfQDyyQC2rgD+zgASZgCBlgADYABHcEz/0wDpxAAscgCcogBbhgBxjwDMtwDbvgD7ygD8ywD/zAD6ywD6ywD6yQD/ygD6ygAAXAH6xwAIstySAAAAGXRSTlP+/f39/f79/gD9/f39/f39/X5OD/GnyCvhIgiqzgAAGvdJREFUeNrNXdly67iuBcEBgUgNtmUny///ofeBlEQNTmwnu89VdXXVtmNpCQQxA6SPh9fn9fLx/+uix19d7+P1/D+A9Hm6vAz2eif6H8A938b76VWw5zsREd3vt9Pnf4b0cr7diWg8vwb2cqPpuo/X03/CvefrV6HQ7TWw1/wzXvB+/mtOvd3vM4FOr4A9L0hnvLd/RuDL6XobZ+rwQ0Y4Bnv5ooPrfh9v19P5XwC9bx91ex7s9T6/5PzfDHi8XU+ny++JfLmcVkB5tZanZ8Gej+i6ACa638ev0+l8Pl/eAX25fJ7Pp9PXnqDVY74+nwP7+TX/Rt0WZwWYiMbx63Q6nc8Z92Pol8vlcvk8n8+n0+k6jmP5eU1Srh7ERPfrc2Cv031ck/oa75Yr7hl0/vNxHDP0g+s6juM4Vn99f7R0zn0jEeghEzCRCxBjG6fuW6aon34/vB5A2+wHcsq2d9Mn98+fwS5MoL1AIL61A2l+ZV4D5ZniL168+7dzyn2I8MP8oNvlJ7CX28wEbCAiAkBMso1T52q4vCUT1zy3frVDycLL2qtrbIgCCNp5GXc2wg7saRbOGiDTBYhvk21YnXNuQyLer+5GDh3RNX/hnFPiPrVekB+HTudN9vk92EV1OSurC4CICbZvWFdMQQ9B7daB63Un51S5txnoTBhIP1Pj9i3Yyzgze+Mh2wuAiPddaJjIqc5U5iM68wNGdc45VSJuUuelBpofYpY9dv4O7GneuK7dY50Rw3tjuhAabojIqaq6fBE5IsqvXLFL/lJV1RFxw7YLxsR56TeX1end1qphDfZznNhN0yOsM2AA3ntjTBtCCD03TdM8kgvcNE3TpBBCa0z0vtzgwc0jz+95fQh2MWId+2/BrjEX3N77aI6v6L2fIT5EOd+22mPnR2CfYYJngD+6nr+Z1SMbgQ4kAa+k1v/iesAItFFdma7W4xWC1oStv8oCWvYb/ue7dvMeqxihAnudsVLEExgLDUJoBSJdyFe/MFBrrU0GIt57v/ndM4xQrq/zHux5NrjdT0wAeO9DhIgkUtU+wnORS/OP0aljp70IOmK21kaIN/6RvDpmBK69hhns5yIJhgdMMK2y70JPrAECo00IvQZIFzqrtqKhDK4VYxsPBLU9ERugU3a2ywuHpyQCEdF5C3Y2YkmPJQG8N8YIBJ51yAuMoAGIwUAAdGqXVYanBEC8wDfsxXsvgqCDHbQXEelCYbYHlPG920oEqqVWZoJ0+GMfelbVJCJiXYQAIgia5m0FT7Z+GDcekl9umFbFagvfq4GI1QLWPyBtNhaZFq+BKtWVmaBfveoMxQ86hDBogiCpyR/DKHezueR5Zfv0ao1ABJFs+XPPmSsCRGzWO2jJ4JCNK2OxMAJVqov3DIvYhdB6iCBpAiKzBzrtUJgzqfYTD67BwgyqNkJg3BBCCF4QXQC8JT+DRet6D2m7I9omncyfr8sC9pHqgmElmh7ZiyA4D3iygYk9BBJ6VQo4oCx8apRawLihJ8ceCJqMSdnusOwhiMQGiDocCLbJa5gZgWr7hTb2Czxz631SNhBYNRDLHvCDNtamCBGBGOu0wwFYwFvtBa2GshDWOXWc/AQWcXCZf1uIQCpZkhlhrRpobb9MTFD+b9QCgGGKQFDb2kIVNZCimwQwrvFlI1U70otALHkEbQvn99xZTZl8lj0ySrTal7ee3mTh+9kOv2Swk9RiouJ1SbQ2m8G2yDzr4RtiR0EgCLN4M1EEwpzB1raabTwKWPITU/eI1GTqWfZI2k0yApKUUuh1zfeLarh+fNDkevPCBPBWlQwyZUVEYLUFgprImiDoNBTDkIaasiuw2kGS9uKb8jE6DcirIiKWxWgmifYCscoRELsyopBm8+t+/qBqdxUm8Klx3HkRgW+cQSZxL2g1wbAGwJP13ofgYdWGRJlA0ldgYUiHQaktOsTamPmhLWgsx4HjzFRJrYeUnQE/MaKfHbL77YMKy2Z/zkAEcdDkMdEik1Z6FxF58DCsSaTXhki1g7dOiQsxolktYQghGIh0ocksZtUAhZx+4N6ZLKt7oNMMHG0QQRyGtiAwi/9+otr7zsgQibOGAjwX0gZtgaQtMtpETQitiYBEExeTam+NT3aP915M5yW/ssCzm0isBpEnSw8QxMGp2rJ/7EJaWkdjM7LWDRE+2BZodfBZrwagVQuBCa1472tD9ikvYnoZY/JmyzsEMRN2kZmIgwZj1Vm/jnmcaXIRuOhayXTsU6PUQRB0MChEjbadJDfedyXKT9vgZ8L6ZjGhEQdNAt+x9ZWBwPdr0WC3rcWVVDlrUQR1KVgtmvwPXRcUud8DnvvK2lKbDYlZ406CltZxmIm00muYiGesZiX/T67YmQy2gBerjpPPhIFZgiPn2erakhZxWEx+iSbKv/IgJ9MxeZ8GA7GajFVuJyFUGwdUp+h4sRBhtAjvd/y9VxkGZlBmHSKSJkFMTdnpc+BpPFfG9+woTNsSQYffLL1/0fcO1gafsQqQN8hifucwOK2zn0SO4xx67N/Hmvi1N80SJqkzVTyx2l07Hywripm0Esy7lEVSfSH2MF9tr5ymt8yE5Z2n8PHxcZ41w0yTt2UpPLvJXniR0dtBqXgNCIWwvPHBakb4fewIkd1xgPeJ90zD9PxZFHxdtmAvt0mNvfWUvav3RnCvXk5E3mYbaZtS4ooP3uYC636/Qsv2uh3EuuYQ/Xsk2QVTfrdC8I1bc+w65Hm6F6/xlySZ45XmN2DjrGnPD+OzxL9lWtji7m/zPe8szypAS9uMwkp4vbe7dG0ev3lNRneVuqPDvNIvHlKnsX5BWnh2Wy44yCkwvSXP9zHrX90oG4dEROPlGOz592oh764pw6RPcP/aLcI2YXO/fnwP9jc7bAmvEzlrfrbOcvwZSxhn0bW8yTbTNmfHUxbs2+zQo5TRvIdz0ucHLgBaO3DTcJ9y8B6dKz7tJGVrlt0k7cZJthlkt397dXVMYPPhvC2WJO33YgWmJ3VOVZ1j23kAqVj8WdcSEY2fj9Kh10UcIOjBNQWCwsGHKybIguVbOxEdK5EO1lqnzmkTTDtMlJ2dr6/LI7BTJMm1QNtvyk2cOpt8kaXzl07VLl5B2qTIv0kBo3WOdEgGIl1SR07JuSk02LqDAgnaVRvwLA66NNSJ7SHV4ekuNW736cRqvGwxfIfVDdkxgIRhpaJnW/YHsIvswhRoyp6kX4el0XKO5WElytclHu6RHwfpXc3TMGVHFbA5esir/XUIlmuvcfbRdzsbSffL3PXrogjXf2MA1vecYvLZrV2EwedDsJdxbX8XsHyogtG6nTWJbtlf/E0tQLHMarKXZ23AjpfvwK60wqL0Dowb+GarPRBpW+1zrA0RdKt7Sii2Bss/g+UtWH6g1BC26nROBvEkvI65NoPZvAfMAtb8XMnxmLL8FNj8uC1p+0dmyo7ovavB8q6060ewjh+aC3uw1tVStlRHHeSCsxjdgkXQLWV/BLtjg/qT78BOsqOuinODMf6BZb0D6xu3AsuvUvYbQ2wDtpI3FRs4u4/RFRNib5tbfZWyb4OdU63jbBwc2wfltXZiDUFf5lmebzP9iJ8HW5N1XAXP9m7AVhwu+ZZnpMFkG0wL9CIb9I72RbEHemG67b60oS9g41S6+I2c3fo1L4Hdkfahxp1XeSsoJnu2MDW9DvZpNmjdvhD4WzYgN6yVOIJubYPHhszk3rruDcqiWN5jYdflavHIdVUb11+UwpksBflbsHOw3rwBdkmz1t4CE6ndmzET2Z0LKxsTm9jsY7CXbUjmJaXQu31h75iZ1uNIzpZi1XSQLEFbSo8eG98r73a1E34GW4VQaFuIfKiqKhdkHwBaVNj146e4QS9viC7LxxXJTG7LtYudnGnTbYlbebeXb0tSqyLPWXo/tcHMvPLjhraO1n4GWrfuT9jq5Ep2PXLFr/dNNPkFNhDE3u0r66efazgm3CRwd6wwKZhHQY7LuHVhXmMDXVepj+s2lDWa5NbmmQ7t2to8Egd0xLKzfnxBGhzYXIv8atitfTiYutshv006MjcfxrrOu7Dq85SFT7uGmZlwrglbqzar5rHejtpH7DXyg8rkklOo42lP8yzMoN/00eQKgkcx54VxI3ay60F8dqk+MZDXpAE6chtbdkW0o6jDHMgd5z/UpWjzUBzUNd/3ndf9JBtMtWILPK5bVfgwnggz7Ghb24x2b8rQvpi+8jaeZAMEdduOpSqWeEzaEjFad7gsNuNsyhwnQKYQYnXfJ6UBDDf8qJVp4ocDH7di9HGuzdhWzx6CPWDZp6UBpKUV9+3/5TgIDtGu9Ii2OxG/RGhpw7Lr1O3zYOu9PW5s8EmJpYNYolW36m+beXDxbI4yjHMg2e79jx+lQRU24m1H1fTQquimQtvxWpfM1umsZBY+oJVhwJut8LRSsNuNPW53mw4hHMVqq6rTjV0SSoHnQaL5ML34NNhemTf7vzK/RyIO5kFhCGJmhclxDztVv0/hz1zAHvKqNPANh6Y2s3hr1boORxUQecFDJXFdM+nlfYyWtu3hzh75zD/xbGubQxtmYeO6BwbRHMkw3qiknVqYwd6OKiOelgbBuZqw40H0oApzz4XVVUbM7ZpS511735adbOOHL9kGaKeA97jlg7GK0PlKO20DR3GWfVp1Em3qTugbwfUjG6TsZFcdRgf9oDP7LhG60gOy9mMmtAvYXVhmW963aVT4jg3gm1IR3dQ8wCvZtdJO3WOwi1tWfdVvSg6oZtldhUCF4zABksF2R8GNlSbLW23pgghqH5ZuVGC3xRy0CcyuI361r2KOwCaUv+GNmi07261IXMn7wR+XRnFtTc8O+7pi7rwu9n0ObOs0rKqy903Xq/yCm/wWBHXmQbSu4rfFBy62DH3HsuV1s3GwM/FKnBpBlblKKLHbtblPPDbMYbcDPijh8H1Eat5hq8rkfTnDQraD5JvVxovAh2D2MbnDuQcFIoLu90BZxdVzrFtJWvqOZVfiwD7YXyIovQR8MEJgpFUAdO562K/UlGhoDwL/xZZZF6jvgtSLODjKVkxUSO6AihvxNRITlT4KBD16FLuNswYz3bcu9n3Esqu8+HZL2NJhItP7jzPC7RyM8kFjeabs7n5ZYa0RbFK4c58CP/CYzdSjuRUUrcuf1MHWb7yF2vTKaeb+SHRtuGNty1DFsnyYb5+YfGPixMFlfykHD3mtwur5BuPiaXMdhN/2TfeOyPX+sCz1vhSon7+pZFhKC+v8NmC1OPnhYDZEnieyqkSqA/YZ7LojveSe14Rdyu+WHsa5rO+w/CYtj4pTK1IMhUxo1T0wCznso8uZzwpl69wjvFUitY/CtLfLBPb2OBKxSm85l6L33sfknHP1cxeHm9wwYTMpDxpZbN3pDcuPXBOnnl0kPahNgB/Klhk/p4bL8dtxEZA01Uw5x03TNORowjrXD2f5RqpDOxcSSbKDKg+DWxd2ICjl+R2NyZNOfNJlcM3DwlTKeY+sUR8V30igKRhRpoRoWYTKuyci15gu+NmwMQCitUayvevUFaZEULa2UUeOOBljEjkiPcC6BJGm3ppjw3stwKzTOfzrnLNzosxNb6CqrgWwGD/T3wAtOeeG1LvSbRo0QHxoptkuzrmqm+JQ3d8K2OvPlaiACQ2Xaj62s1sNw6ra2IH70rAoO7AignZgDTCqU4+ZhwC+65nyPZtjV31dhkRlf/FPBcmA93k6hPF10CqG0Hkpk0zWhl0dgBAfDKQLU9ZzvmcbQgid94/aTWzlLdCqIuLHqtz91JKpPXEjMHn77qtmwqrZ56dJKPUOo3Uq4eUZKo8LoB3/RXPe7C2UjuZaJfjSdPoXYH/d9bJmqtvHB1X7q4NpuGFy1Pe9tW/2gUzu+x+BrXcYzUFkxx5GkylFx/27Vep/SllgMaTOH/RxGWdfEWZqWMeRa/9s7b/7JVjMe9C3sTa8qFYJMEs45H2wpQ7+XbCIqZ0mqAQ1i/Fx/aDiJTCVkRsmiwQzuIjf7N/3wRoNyGRDyG3kWdDePqjeXwLDOtgUkuW3Gyv+DiwQ1NTVqTTpr2xywaSeiZjt+82Wxfb4FVhpNYiXoAazWhg/adZfg596R+Bj9PKutJ12xC/A9g3nQZdOO1Q7jKa+KmdFELOmtsTE9F4TzywY39VgiNZaa1OWoAZVqpHmUq4EQVCm3jbO2mDfYlogtjzXCMY3FXc00c+Kv7ISaU6CBgg6bUUQXHxPzgK+Tms5Tm80xMNbpzq0gI9dalH5YXRbCYNZYLwBFhI7Xgo0mMgp2ZfhotU+hIG6wHnmylIuM/lPuVGpgHUG6NxLPAt4Y908iHKJHTgbX9toeWJRZCWbjOx90mnvwuQpRl4Ab8xLrNr1zh2GaR317SvURXCtiXk8A/AYbIYJwLeBn29ABHzgegYwr+Iw5HR44cXFEqkjN4RgvK/0d5WNzm4CID4ky07tMDy5fIhpUPfN4FQiR8OzSga+sW3XhYZJmRuPA8oWJyTZgVUpmIjkngUbNq1YB0V+7untCm+pSUZEfDSm8ys2uN5r19Y2wRjrIjANUXreGKihlVF+Vcz7adkCiYGVk5kdrCVUfbqv0k8eQFDrfWKKz7LBdnJnG0IeMVpP88RLkiWwDsGvS6q/6CjCkZRZrXla/+AP53j6PMcIvrW5Km2pdb3RXO3fVwthjDECk/x/PdITYvvWZ68dreuwSuHSYVQOANA6Nf852KDOsW09IEATsAoo04N4J7ydwvD4T7FabwJrk8zsZE0xmfuJ5qqIVSQZcXCJEtC+qi1/dXWkLYAYeqdDyPPDKl+cDmP0aN0QWzUQq9rk4Zf/AdakQ8N5pGNMtrcGdcnD7UJz3yLN6VRI56z3nKcEJm2iDcb/W7yAwA99NFN3zTTDqk7cTRGZetpNtKpWggaIHQSW0qCOUxv/Cdwy0DOKwHjA8CZW388suxqIV/wQMzRtUG4aj1YTYMnDDEradO1EhL+BjTxGVUQSc8yTFmGaGu2qrL4KeU6ktUME2kYTkJxHUCtAb33b5SmobZAYveDdUWOYl9mEED0nQOzSJoJIdQ5r7t4rw8UmeVCMGV/mjLaIpH3SPgLRtSgzTqNj3zuyIcYcxt5oKHxHyBxAFvjQ5iZjjrYXQRjsUjLZLiXKuXRmGutKq4lS/VLCPVhB4uSalK20CBjHHkgawL1lZxJFiC9DvOc4sRdINQp2kdTeBONhQkPWe2aJZMVo1zUi6Jq4DAKt0FZG0rnOg62a5hG0RXRJKMyDN9Eqe0TWLjoD78VqAAwncsxNyGMfJbD1Oc7bBlkF5XtVDQjKrAmBJKgB2tiyBwxLqIaZdbqbf3RbZRjXGZZAEcFFoZRtiexIaodO2QeNAMSqFZjGhMBuyvsmZW0MOiKa5x70aiBoNRmrMbD3tkFwMc90hSEDRNdhqEwp46tcLE+jOaga885V3sxHia6Hp5Bzni1ErOXgmRtJ5HMKafDoBgECeW/yzZNv1SLoPFECkedJvj74lj1alqCmTMvNA3QplMY1VMOfqwG0c4ax4toFLRAbg+iyLeEi4Ck1qetTL9bZ1InngVqEvpTrFUnigcQSaFYiMOSsTK8NQwaGxdAE1lOCIFn4oRfAd74ywdYnK1A9By1nNOfwvMdkSwxWBIaM7TlZKz2xsnSuowRry5RZmR9sXNtRVcvXB/Lw3GawGsQOMK5N5W+sFUHoBUFbSU3VJRGWnpZzXdd1q1yoWYYIfB8g8NRCEBw6ZcMB3Ek0COTtkAlmS2o+ujz8u6vAymCNBvhslYhnItciuq6bMngsgpY9/NAM0+xIEWSs+xqZpW+N16XkED+1QcL2CJqi6yIZALCMTlsOEOkDlmglPHWd5onpIvAuCFt4CujYJc9Dch08dbEUV7TOAG0eqcydn+fIJ5pLb8qg72XG3Fj5e/3KDEBsvYj0FiZ4wxI0QiB9gnF9E4/BMpV6GMMRqRFPASb07K31lr3n3g9WgJCi630cehHx7Qy1agvgXS1iNX20hNR2Q376BABhEMvei8gQyjiGsnnWbBBLfBeds3bQFnYQIDgJPaImWJKgHTxbBHWaeW+G6lM11WEu+qZ9Hyvns3lSu3ESchQkWM9KbJPnFgjai8BzN81QzxssdjSrNKs2BNfnSeaBEMgjaeycl0H7hgykDdVUQwA+9FXb4P12Oehauq6OGVK1bdzbV95Ll+ygwbMBWrUi8M30rKEXIPFSegzvAgDrvNEEBDUm59uCMzC277OMWJK68CY0q5jD1/m4LXBd0+Ic2bYK69ZmkxdjIxAz2Fk4t9qKUVuBNc7kwC+SpsDaxcZAus7EMmZyZS9GE5pyFNVcNPn5qP36vu2UdNSEYEyZ5FsZJ4VHgoEg9vMq9srKJhcUZJZtvAgiBfjErjdlAPjKTsvBwGhCPx/yNVHt/vVw9tHH+eu+rXtyqkQNNyEEY+IEemWcLlNGEZO1BpPtIgLTTtwj4ldW8Bz+8D6aNkxJj1Us8n77/Ob4os/r/X5QWJjLSoiY+9AZs4W89qWwLijYpDilxmhCCKlpmHbHem2aPx4cuZXPbTzsjMigHREX3nitOGE+4SYaEzrLDROVw4SOCm7p/nX++eS18+34DLcacz4rKXT5DKIfT82ZUbYhNBnk5jis3cFj9/H64/lg5azJ8X54UNoWsiNmWwZ+f+NzFZTMq9Ok6JAiuVD0/nVw6CM9PG+U6L5tmzyic2YMTuY4zgRI7OxDlIdEoDvdXjg08uPj4+PzfB3LmX5MD44sq8wJ6sOOvIDE0PMOJR9yVyEp0e30eXn1vNuPj8/z6UrVKYTjlgqrJJKyXaVlAJ8GVvcTIRdS3InG6/nz8sbhvBPg8+n0NY4LaN5kOZbGZdUliwT4VKlNPpgkUJeG3onGr9P5fHnzJOH1mY+f5/PpdN0c97hPemlfBrFtoR6cuDmdyjiO4/V0/oair4FdUBdCU83NK0iOk6+oyo+PxxzH8framZ4vgp0IvYK8YWUd2nY4UEg8kbKA/Hz53NG3wFZUvo5FZNTHFRJvTpjMu3xC+faJrr8AO0M+ncYHEm7a5Zkpz789d/bXYMsJu7fNtlvk6H28Xc9/cwTx34CdNfRO1t+//vCw7z8D+/Fxvu4K6g81/P8LsB8f59tYc8EfQ/1jsMXTKFww/vlh2X8M9uNzcpHXDsn/T7BTaGc8/YPzx/8e7Mfn7U63f3K++z8A+3G5/guyfnx8/B+w6b8IeP0KuQAAAABJRU5ErkJggg==",
+ "overlay": true
+ },
+ {
+ "id": "US_Forest_Service_roads",
+ "name": "U.S. Forest Service roads",
+ "type": "tms",
+ "template": "https://osm.cycle.travel/forest/{zoom}/{x}/{y}.png",
+ "scaleExtent": [0, 19],
+ "polygon": [
+ [
+ [-124.76179, 48.41301],
+ [-124.60595, 45.90245],
+ [-124.99343, 40.05576],
+ [-122.53697, 36.85661],
+ [-119.97759, 33.00641],
+ [-117.67593, 32.46302],
+ [-114.86123, 32.47999],
+ [-111.00893, 31.33601],
+ [-108.19927, 31.326],
+ [-108.18711, 31.77551],
+ [-106.53072, 31.78209],
+ [-106.48421, 31.74645],
+ [-106.42932, 31.75206],
+ [-106.28689, 31.56133],
+ [-106.20525, 31.4467],
+ [-105.02053, 30.5361],
+ [-104.58819, 29.69979],
+ [-103.25189, 28.89087],
+ [-102.71736, 29.39206],
+ [-102.1514, 29.74757],
+ [-101.25529, 29.48105],
+ [-100.00624, 28.00822],
+ [-99.23511, 26.4476],
+ [-98.01091, 25.9928],
+ [-97.43502, 25.8266],
+ [-96.95553, 25.98216],
+ [-96.80617, 27.79782],
+ [-95.55633, 28.58761],
+ [-93.74053, 29.47421],
+ [-90.90285, 28.85645],
+ [-88.01567, 28.99443],
+ [-88.01625, 30.00389],
+ [-86.02775, 30.00475],
+ [-84.01879, 28.99618],
+ [-81.9972, 25.98268],
+ [-81.99666, 25.01349],
+ [-84.01656, 25.01258],
+ [-84.01601, 24.00527],
+ [-80.02, 24.0071],
+ [-79.89011, 26.85507],
+ [-80.02453, 32.01613],
+ [-75.41474, 35.05319],
+ [-74.02112, 39.57279],
+ [-72.00202, 40.99125],
+ [-69.87974, 40.99205],
+ [-69.84893, 43.26199],
+ [-66.94528, 44.71049],
+ [-67.75966, 47.099],
+ [-69.25051, 47.51223],
+ [-70.46149, 46.21766],
+ [-71.41227, 45.25488],
+ [-72.02225, 45.00598],
+ [-75.07988, 44.98029],
+ [-76.90231, 43.80246],
+ [-78.76239, 43.62496],
+ [-79.15798, 43.44626],
+ [-79.00601, 42.80053],
+ [-82.66248, 41.68895],
+ [-82.17616, 43.58854],
+ [-83.2814, 46.13885],
+ [-87.50645, 48.01427],
+ [-88.34922, 48.29633],
+ [-89.43531, 47.98378],
+ [-93.99811, 49.00671],
+ [-95.11054, 49.412],
+ [-96.01312, 49.00605],
+ [-123.32289, 49.00429],
+ [-123.22752, 48.18499],
+ [-124.76179, 48.41301]
+ ],
+ [
+ [-160.57876, 22.50629],
+ [-160.57822, 21.49846],
+ [-158.74706, 21.24398],
+ [-157.50832, 20.9958],
+ [-155.99619, 18.77902],
+ [-154.62178, 18.7587],
+ [-154.68902, 19.88057],
+ [-156.29276, 21.22259],
+ [-157.50474, 21.9985],
+ [-159.00937, 22.50702],
+ [-160.57876, 22.50629]
+ ],
+ [
+ [-167.15715, 68.72197],
+ [-164.8554, 67.02551],
+ [-168.0022, 66.00175],
+ [-169.00874, 66.00155],
+ [-169.00754, 64.99877],
+ [-172.51433, 63.87673],
+ [-173.8197, 59.74014],
+ [-162.50181, 58.00058],
+ [-160.0159, 58.00124],
+ [-160.01497, 57.00003],
+ [-160.50548, 56.9999],
+ [-165.80926, 54.82485],
+ [-178.0001, 52.24465],
+ [-177.9993, 51.25543],
+ [-171.46891, 51.82153],
+ [-162.40251, 53.95666],
+ [-159.00757, 55.0025],
+ [-158.01907, 55.00278],
+ [-151.99632, 55.99919],
+ [-151.50034, 57.99879],
+ [-151.50129, 58.99198],
+ [-138.516, 58.99532],
+ [-138.51505, 57.99864],
+ [-133.99482, 54.00317],
+ [-130.00444, 54.00434],
+ [-130.00708, 57.00005],
+ [-131.97588, 56.99952],
+ [-135.12299, 59.7566],
+ [-138.00718, 59.9918],
+ [-139.17159, 60.41272],
+ [-140.9874, 61.01186],
+ [-140.9684, 69.95351],
+ [-156.17689, 71.56333],
+ [-160.41363, 70.73977],
+ [-163.02183, 69.97074],
+ [-164.9717, 68.99469],
+ [-167.15715, 68.72197]
+ ]
+ ]
+ },
+ {
+ "id": "Zuerich-zh_uebersichtsplan-tms",
+ "name": "Übersichtsplan Zürich",
+ "type": "tms",
+ "template": "https://mapproxy.osm.ch/tiles/zh_uebersichtsplan/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
+ "scaleExtent": [0, 21],
+ "polygon": [
+ [
+ [8.45788, 47.44582],
+ [8.57392, 47.44477],
+ [8.57362, 47.43124],
+ [8.60266, 47.43096],
+ [8.60231, 47.41746],
+ [8.6318, 47.41716],
+ [8.6295, 47.33628],
+ [8.57162, 47.33679],
+ [8.57152, 47.32292],
+ [8.54236, 47.3236],
+ [8.54212, 47.31013],
+ [8.48418, 47.31062],
+ [8.48478, 47.33762],
+ [8.45582, 47.33787],
+ [8.45609, 47.35135],
+ [8.42713, 47.35161],
+ [8.42864, 47.43259],
+ [8.45745, 47.43231],
+ [8.45788, 47.44582]
+ ]
+ ],
+ "terms_text": "Stadt Zürich Open Government Data"
+ },
+ {
+ "id": "uniao_dos_palmares",
+ "name": "União dos Palmares AL",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Uniao%20dos%20Palmares&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-35.97725, -9.20752],
+ [-35.9772, -9.19398],
+ [-35.97694, -9.19053],
+ [-35.97678, -9.18607],
+ [-35.97702, -9.18208],
+ [-35.97704, -9.17968],
+ [-35.97682, -9.17734],
+ [-35.97664, -9.17517],
+ [-35.97701, -9.17518],
+ [-35.97696, -9.1707],
+ [-35.97674, -9.17066],
+ [-35.97661, -9.16645],
+ [-35.97618, -9.16222],
+ [-35.9761, -9.16026],
+ [-35.97661, -9.16026],
+ [-35.97672, -9.14608],
+ [-35.97654, -9.14122],
+ [-35.97666, -9.1332],
+ [-35.97653, -9.12184],
+ [-35.97648, -9.11748],
+ [-35.98618, -9.11755],
+ [-35.98947, -9.11733],
+ [-36.00561, -9.11733],
+ [-36.01859, -9.11736],
+ [-36.04601, -9.11722],
+ [-36.06734, -9.11698],
+ [-36.06756, -9.16134],
+ [-36.06771, -9.16405],
+ [-36.06745, -9.16408],
+ [-36.06756, -9.16657],
+ [-36.06777, -9.16654],
+ [-36.06798, -9.20701],
+ [-36.0498, -9.20711],
+ [-36.04671, -9.20698],
+ [-36.02941, -9.20709],
+ [-36.01355, -9.20718],
+ [-35.99318, -9.20733],
+ [-35.97725, -9.20752]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "UrbISOrtho2016",
+ "name": "UrbIS-Ortho 2016",
+ "type": "wms",
+ "template": "https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2016&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2016-01-01T00:00:00.000Z",
+ "startDate": "2016-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [4.37973, 50.76382],
+ [4.38917, 50.76377],
+ [4.43028, 50.77517],
+ [4.435, 50.775],
+ [4.46427, 50.78645],
+ [4.4817, 50.79134],
+ [4.48238, 50.79617],
+ [4.45921, 50.80626],
+ [4.45947, 50.81661],
+ [4.47972, 50.82036],
+ [4.46959, 50.83537],
+ [4.46899, 50.84573],
+ [4.46238, 50.85396],
+ [4.44968, 50.85591],
+ [4.44599, 50.85992],
+ [4.4253, 50.86615],
+ [4.43183, 50.87628],
+ [4.44007, 50.87845],
+ [4.43106, 50.89014],
+ [4.43595, 50.89502],
+ [4.4296, 50.90103],
+ [4.41655, 50.90757],
+ [4.41543, 50.91342],
+ [4.39578, 50.91407],
+ [4.38462, 50.91093],
+ [4.38119, 50.90319],
+ [4.3726, 50.90032],
+ [4.36213, 50.9033],
+ [4.34857, 50.90341],
+ [4.34025, 50.90411],
+ [4.32892, 50.90249],
+ [4.31647, 50.89605],
+ [4.30634, 50.89274],
+ [4.29004, 50.88982],
+ [4.29149, 50.88495],
+ [4.29553, 50.88262],
+ [4.29561, 50.88094],
+ [4.28274, 50.87227],
+ [4.27699, 50.86713],
+ [4.27802, 50.85911],
+ [4.28042, 50.85721],
+ [4.28094, 50.84215],
+ [4.27193, 50.84036],
+ [4.25467, 50.83695],
+ [4.25107, 50.83288],
+ [4.25227, 50.82697],
+ [4.24343, 50.82182],
+ [4.24403, 50.81548],
+ [4.25519, 50.8151],
+ [4.25802, 50.80935],
+ [4.27218, 50.81011],
+ [4.27579, 50.80696],
+ [4.2854, 50.80506],
+ [4.28901, 50.80691],
+ [4.29802, 50.80593],
+ [4.30282, 50.79709],
+ [4.31458, 50.79454],
+ [4.31621, 50.78624],
+ [4.32952, 50.77381],
+ [4.34205, 50.77164],
+ [4.34522, 50.77337],
+ [4.37853, 50.76811],
+ [4.37973, 50.76382]
+ ]
+ ],
+ "terms_text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAACXBIWXMAAAsSAAALEgHS3X78AAACnUlEQVQoz11SXUiTYRh93ndz06YMNWcpRmWRSpgO+0EUDYwQ6sZ+oAyti8y6yCyKxOimILqQsLKbukmHSpFFLYlMqSkUmi3/pjZ/Zmv+Tec2bU237z1dfFHSc/HcPOc5HM45DAAREREgGOM217BpzDjs7PEHfNGa2PT47KxN+RFqrYDgjBMRE0JijBMRAKOlzmgxhChDN0cla1ThM0uTE65vsRFxRRkXk3TpMiMBkEQQQFPvw0LDnoYvVStBNwAhBIApj+X6m5OlT/dbnX0AJCHxkbl+zhTWub6XA4ZDqcd3JJTl1to7HV7G2E3TxOU2zaWcKm1YZKO5RlaliNknBma6Bqe7V6SVc5mVrmVFxSvLu1G3bSlwy2jVaXE6IzE0JLzV+jxJlxYTvp5X5j3Qx2ePzPcn6VJVysiUaHXX+d2zy8HqlrE8/bq3xXoiStalr1Fpxl1DRMQ547s27NWGRikVKtmuju9e34pEYcrhWV/f7E8iUinDQrjaH/AREQfAmSJGEzc6P0Qkvbd5ymt7DqfEmEr0Tre/4PFXInK4R7z+hXjtRiIi2aKPtpbi+qxue6vHj5ou+8KvAIBPP7yG3mkAd9sry18ULPrdAAgQAIJS4EZLacXrwqVlDwBJiKAkJCEB+Gz/UNyQ1TxY/8dWIiYgFFx5JPXM7JLjWe8jIgKBM3DGXT5no7lmy9rteVsLiIjJGXPGBcQ2XdqBlKJWa1PHeLOCcRAEhKH7zuKy+4T+QohCDQhGjLBqJBGsNl0teZI3OGMG0GiuKarPNI0aZTEyhq0qHxhjXv/C7bYyASkjIddoqctPOnY07ezf5hHRvwcikg+TXtv9jmsOjy0n8eCpnVeIESMiecnE/6kC0D/Vea+90h/wARAQqwG/AaEjsUbwLtXdAAAAAElFTkSuQmCC"
+ },
+ {
+ "id": "UrbISOrtho2017",
+ "name": "UrbIS-Ortho 2017",
+ "type": "wms",
+ "template": "https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2017&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2017-01-01T00:00:00.000Z",
+ "startDate": "2017-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [4.37973, 50.76382],
+ [4.38917, 50.76377],
+ [4.43028, 50.77517],
+ [4.435, 50.775],
+ [4.46427, 50.78645],
+ [4.4817, 50.79134],
+ [4.48238, 50.79617],
+ [4.45921, 50.80626],
+ [4.45947, 50.81661],
+ [4.47972, 50.82036],
+ [4.46959, 50.83537],
+ [4.46899, 50.84573],
+ [4.46238, 50.85396],
+ [4.44968, 50.85591],
+ [4.44599, 50.85992],
+ [4.4253, 50.86615],
+ [4.43183, 50.87628],
+ [4.44007, 50.87845],
+ [4.43106, 50.89014],
+ [4.43595, 50.89502],
+ [4.4296, 50.90103],
+ [4.41655, 50.90757],
+ [4.41543, 50.91342],
+ [4.39578, 50.91407],
+ [4.38462, 50.91093],
+ [4.38119, 50.90319],
+ [4.3726, 50.90032],
+ [4.36213, 50.9033],
+ [4.34857, 50.90341],
+ [4.34025, 50.90411],
+ [4.32892, 50.90249],
+ [4.31647, 50.89605],
+ [4.30634, 50.89274],
+ [4.29004, 50.88982],
+ [4.29149, 50.88495],
+ [4.29553, 50.88262],
+ [4.29561, 50.88094],
+ [4.28274, 50.87227],
+ [4.27699, 50.86713],
+ [4.27802, 50.85911],
+ [4.28042, 50.85721],
+ [4.28094, 50.84215],
+ [4.27193, 50.84036],
+ [4.25467, 50.83695],
+ [4.25107, 50.83288],
+ [4.25227, 50.82697],
+ [4.24343, 50.82182],
+ [4.24403, 50.81548],
+ [4.25519, 50.8151],
+ [4.25802, 50.80935],
+ [4.27218, 50.81011],
+ [4.27579, 50.80696],
+ [4.2854, 50.80506],
+ [4.28901, 50.80691],
+ [4.29802, 50.80593],
+ [4.30282, 50.79709],
+ [4.31458, 50.79454],
+ [4.31621, 50.78624],
+ [4.32952, 50.77381],
+ [4.34205, 50.77164],
+ [4.34522, 50.77337],
+ [4.37853, 50.76811],
+ [4.37973, 50.76382]
+ ]
+ ],
+ "terms_text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB",
+ "best": true,
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAACXBIWXMAAAsSAAALEgHS3X78AAACnUlEQVQoz11SXUiTYRh93ndz06YMNWcpRmWRSpgO+0EUDYwQ6sZ+oAyti8y6yCyKxOimILqQsLKbukmHSpFFLYlMqSkUmi3/pjZ/Zmv+Tec2bU237z1dfFHSc/HcPOc5HM45DAAREREgGOM217BpzDjs7PEHfNGa2PT47KxN+RFqrYDgjBMRE0JijBMRAKOlzmgxhChDN0cla1ThM0uTE65vsRFxRRkXk3TpMiMBkEQQQFPvw0LDnoYvVStBNwAhBIApj+X6m5OlT/dbnX0AJCHxkbl+zhTWub6XA4ZDqcd3JJTl1to7HV7G2E3TxOU2zaWcKm1YZKO5RlaliNknBma6Bqe7V6SVc5mVrmVFxSvLu1G3bSlwy2jVaXE6IzE0JLzV+jxJlxYTvp5X5j3Qx2ePzPcn6VJVysiUaHXX+d2zy8HqlrE8/bq3xXoiStalr1Fpxl1DRMQ547s27NWGRikVKtmuju9e34pEYcrhWV/f7E8iUinDQrjaH/AREQfAmSJGEzc6P0Qkvbd5ymt7DqfEmEr0Tre/4PFXInK4R7z+hXjtRiIi2aKPtpbi+qxue6vHj5ou+8KvAIBPP7yG3mkAd9sry18ULPrdAAgQAIJS4EZLacXrwqVlDwBJiKAkJCEB+Gz/UNyQ1TxY/8dWIiYgFFx5JPXM7JLjWe8jIgKBM3DGXT5no7lmy9rteVsLiIjJGXPGBcQ2XdqBlKJWa1PHeLOCcRAEhKH7zuKy+4T+QohCDQhGjLBqJBGsNl0teZI3OGMG0GiuKarPNI0aZTEyhq0qHxhjXv/C7bYyASkjIddoqctPOnY07ezf5hHRvwcikg+TXtv9jmsOjy0n8eCpnVeIESMiecnE/6kC0D/Vea+90h/wARAQqwG/AaEjsUbwLtXdAAAAAElFTkSuQmCC"
+ },
+ {
+ "id": "UrbisAdmFR",
+ "name": "UrbisAdm FR",
+ "type": "wms",
+ "template": "https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=urbisFR&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [4.37973, 50.76382],
+ [4.38917, 50.76377],
+ [4.43028, 50.77517],
+ [4.435, 50.775],
+ [4.46427, 50.78645],
+ [4.4817, 50.79134],
+ [4.48238, 50.79617],
+ [4.45921, 50.80626],
+ [4.45947, 50.81661],
+ [4.47972, 50.82036],
+ [4.46959, 50.83537],
+ [4.46899, 50.84573],
+ [4.46238, 50.85396],
+ [4.44968, 50.85591],
+ [4.44599, 50.85992],
+ [4.4253, 50.86615],
+ [4.43183, 50.87628],
+ [4.44007, 50.87845],
+ [4.43106, 50.89014],
+ [4.43595, 50.89502],
+ [4.4296, 50.90103],
+ [4.41655, 50.90757],
+ [4.41543, 50.91342],
+ [4.39578, 50.91407],
+ [4.38462, 50.91093],
+ [4.38119, 50.90319],
+ [4.3726, 50.90032],
+ [4.36213, 50.9033],
+ [4.34857, 50.90341],
+ [4.34025, 50.90411],
+ [4.32892, 50.90249],
+ [4.31647, 50.89605],
+ [4.30634, 50.89274],
+ [4.29004, 50.88982],
+ [4.29149, 50.88495],
+ [4.29553, 50.88262],
+ [4.29561, 50.88094],
+ [4.28274, 50.87227],
+ [4.27699, 50.86713],
+ [4.27802, 50.85911],
+ [4.28042, 50.85721],
+ [4.28094, 50.84215],
+ [4.27193, 50.84036],
+ [4.25467, 50.83695],
+ [4.25107, 50.83288],
+ [4.25227, 50.82697],
+ [4.24343, 50.82182],
+ [4.24403, 50.81548],
+ [4.25519, 50.8151],
+ [4.25802, 50.80935],
+ [4.27218, 50.81011],
+ [4.27579, 50.80696],
+ [4.2854, 50.80506],
+ [4.28901, 50.80691],
+ [4.29802, 50.80593],
+ [4.30282, 50.79709],
+ [4.31458, 50.79454],
+ [4.31621, 50.78624],
+ [4.32952, 50.77381],
+ [4.34205, 50.77164],
+ [4.34522, 50.77337],
+ [4.37853, 50.76811],
+ [4.37973, 50.76382]
+ ]
+ ],
+ "terms_text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAACXBIWXMAAAsSAAALEgHS3X78AAACnUlEQVQoz11SXUiTYRh93ndz06YMNWcpRmWRSpgO+0EUDYwQ6sZ+oAyti8y6yCyKxOimILqQsLKbukmHSpFFLYlMqSkUmi3/pjZ/Zmv+Tec2bU237z1dfFHSc/HcPOc5HM45DAAREREgGOM217BpzDjs7PEHfNGa2PT47KxN+RFqrYDgjBMRE0JijBMRAKOlzmgxhChDN0cla1ThM0uTE65vsRFxRRkXk3TpMiMBkEQQQFPvw0LDnoYvVStBNwAhBIApj+X6m5OlT/dbnX0AJCHxkbl+zhTWub6XA4ZDqcd3JJTl1to7HV7G2E3TxOU2zaWcKm1YZKO5RlaliNknBma6Bqe7V6SVc5mVrmVFxSvLu1G3bSlwy2jVaXE6IzE0JLzV+jxJlxYTvp5X5j3Qx2ePzPcn6VJVysiUaHXX+d2zy8HqlrE8/bq3xXoiStalr1Fpxl1DRMQ547s27NWGRikVKtmuju9e34pEYcrhWV/f7E8iUinDQrjaH/AREQfAmSJGEzc6P0Qkvbd5ymt7DqfEmEr0Tre/4PFXInK4R7z+hXjtRiIi2aKPtpbi+qxue6vHj5ou+8KvAIBPP7yG3mkAd9sry18ULPrdAAgQAIJS4EZLacXrwqVlDwBJiKAkJCEB+Gz/UNyQ1TxY/8dWIiYgFFx5JPXM7JLjWe8jIgKBM3DGXT5no7lmy9rteVsLiIjJGXPGBcQ2XdqBlKJWa1PHeLOCcRAEhKH7zuKy+4T+QohCDQhGjLBqJBGsNl0teZI3OGMG0GiuKarPNI0aZTEyhq0qHxhjXv/C7bYyASkjIddoqctPOnY07ezf5hHRvwcikg+TXtv9jmsOjy0n8eCpnVeIESMiecnE/6kC0D/Vea+90h/wARAQqwG/AaEjsUbwLtXdAAAAAElFTkSuQmCC"
+ },
+ {
+ "id": "UrbisAdmNL",
+ "name": "UrbisAdm NL",
+ "type": "wms",
+ "template": "https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=urbisNL&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [4.37973, 50.76382],
+ [4.38917, 50.76377],
+ [4.43028, 50.77517],
+ [4.435, 50.775],
+ [4.46427, 50.78645],
+ [4.4817, 50.79134],
+ [4.48238, 50.79617],
+ [4.45921, 50.80626],
+ [4.45947, 50.81661],
+ [4.47972, 50.82036],
+ [4.46959, 50.83537],
+ [4.46899, 50.84573],
+ [4.46238, 50.85396],
+ [4.44968, 50.85591],
+ [4.44599, 50.85992],
+ [4.4253, 50.86615],
+ [4.43183, 50.87628],
+ [4.44007, 50.87845],
+ [4.43106, 50.89014],
+ [4.43595, 50.89502],
+ [4.4296, 50.90103],
+ [4.41655, 50.90757],
+ [4.41543, 50.91342],
+ [4.39578, 50.91407],
+ [4.38462, 50.91093],
+ [4.38119, 50.90319],
+ [4.3726, 50.90032],
+ [4.36213, 50.9033],
+ [4.34857, 50.90341],
+ [4.34025, 50.90411],
+ [4.32892, 50.90249],
+ [4.31647, 50.89605],
+ [4.30634, 50.89274],
+ [4.29004, 50.88982],
+ [4.29149, 50.88495],
+ [4.29553, 50.88262],
+ [4.29561, 50.88094],
+ [4.28274, 50.87227],
+ [4.27699, 50.86713],
+ [4.27802, 50.85911],
+ [4.28042, 50.85721],
+ [4.28094, 50.84215],
+ [4.27193, 50.84036],
+ [4.25467, 50.83695],
+ [4.25107, 50.83288],
+ [4.25227, 50.82697],
+ [4.24343, 50.82182],
+ [4.24403, 50.81548],
+ [4.25519, 50.8151],
+ [4.25802, 50.80935],
+ [4.27218, 50.81011],
+ [4.27579, 50.80696],
+ [4.2854, 50.80506],
+ [4.28901, 50.80691],
+ [4.29802, 50.80593],
+ [4.30282, 50.79709],
+ [4.31458, 50.79454],
+ [4.31621, 50.78624],
+ [4.32952, 50.77381],
+ [4.34205, 50.77164],
+ [4.34522, 50.77337],
+ [4.37853, 50.76811],
+ [4.37973, 50.76382]
+ ]
+ ],
+ "terms_text": "Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB",
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAACXBIWXMAAAsSAAALEgHS3X78AAACnUlEQVQoz11SXUiTYRh93ndz06YMNWcpRmWRSpgO+0EUDYwQ6sZ+oAyti8y6yCyKxOimILqQsLKbukmHSpFFLYlMqSkUmi3/pjZ/Zmv+Tec2bU237z1dfFHSc/HcPOc5HM45DAAREREgGOM217BpzDjs7PEHfNGa2PT47KxN+RFqrYDgjBMRE0JijBMRAKOlzmgxhChDN0cla1ThM0uTE65vsRFxRRkXk3TpMiMBkEQQQFPvw0LDnoYvVStBNwAhBIApj+X6m5OlT/dbnX0AJCHxkbl+zhTWub6XA4ZDqcd3JJTl1to7HV7G2E3TxOU2zaWcKm1YZKO5RlaliNknBma6Bqe7V6SVc5mVrmVFxSvLu1G3bSlwy2jVaXE6IzE0JLzV+jxJlxYTvp5X5j3Qx2ePzPcn6VJVysiUaHXX+d2zy8HqlrE8/bq3xXoiStalr1Fpxl1DRMQ547s27NWGRikVKtmuju9e34pEYcrhWV/f7E8iUinDQrjaH/AREQfAmSJGEzc6P0Qkvbd5ymt7DqfEmEr0Tre/4PFXInK4R7z+hXjtRiIi2aKPtpbi+qxue6vHj5ou+8KvAIBPP7yG3mkAd9sry18ULPrdAAgQAIJS4EZLacXrwqVlDwBJiKAkJCEB+Gz/UNyQ1TxY/8dWIiYgFFx5JPXM7JLjWe8jIgKBM3DGXT5no7lmy9rteVsLiIjJGXPGBcQ2XdqBlKJWa1PHeLOCcRAEhKH7zuKy+4T+QohCDQhGjLBqJBGsNl0teZI3OGMG0GiuKarPNI0aZTEyhq0qHxhjXv/C7bYyASkjIddoqctPOnY07ezf5hHRvwcikg+TXtv9jmsOjy0n8eCpnVeIESMiecnE/6kC0D/Vea+90h/wARAQqwG/AaEjsUbwLtXdAAAAAElFTkSuQmCC"
+ },
+ {
+ "id": "USGS-Large_Scale",
+ "name": "USGS Large Scale Imagery",
+ "type": "tms",
+ "template": "http://{switch:a,b,c}.tile.openstreetmap.us/usgs_large_scale/{zoom}/{x}/{y}.jpg",
+ "scaleExtent": [12, 20],
+ "polygon": [
+ [
+ [-123.25493, 48.7529],
+ [-123.25493, 48.55923],
+ [-123.19222, 48.55923],
+ [-123.19222, 48.43484],
+ [-122.94196, 48.43484],
+ [-122.94196, 48.37208],
+ [-122.88062, 48.37208],
+ [-122.88062, 48.30948],
+ [-122.81676, 48.30948],
+ [-122.81676, 48.19046],
+ [-123.00411, 48.19046],
+ [-123.00411, 48.12759],
+ [-123.05842, 48.12759],
+ [-123.05842, 48.19051],
+ [-123.25411, 48.19051],
+ [-123.25411, 48.1275],
+ [-123.37066, 48.1275],
+ [-123.37066, 48.19084],
+ [-124.05826, 48.19084],
+ [-124.05826, 48.25344],
+ [-124.18152, 48.25344],
+ [-124.18152, 48.31647],
+ [-124.43191, 48.31647],
+ [-124.43191, 48.37826],
+ [-124.55646, 48.37826],
+ [-124.55646, 48.44083],
+ [-124.75551, 48.44083],
+ [-124.75551, 48.1915],
+ [-124.81853, 48.1915],
+ [-124.81853, 48.12284],
+ [-124.7553, 48.12284],
+ [-124.7553, 47.55353],
+ [-124.38121, 47.55353],
+ [-124.38121, 47.12187],
+ [-124.19289, 47.12187],
+ [-124.19289, 43.75694],
+ [-124.44434, 43.75694],
+ [-124.44434, 43.14256],
+ [-124.63989, 43.14256],
+ [-124.63989, 42.61945],
+ [-124.44385, 42.61945],
+ [-124.44385, 39.80807],
+ [-123.88157, 39.80807],
+ [-123.88157, 39.11028],
+ [-123.75805, 39.11028],
+ [-123.75805, 38.49688],
+ [-123.27028, 38.49688],
+ [-123.27028, 37.93319],
+ [-122.81481, 37.93319],
+ [-122.81481, 37.80196],
+ [-122.56643, 37.80196],
+ [-122.56643, 36.93196],
+ [-121.8784, 36.93196],
+ [-121.8784, 36.68976],
+ [-122.00347, 36.68976],
+ [-122.00347, 36.43411],
+ [-121.94142, 36.43411],
+ [-121.94142, 35.92976],
+ [-121.5041, 35.92976],
+ [-121.5041, 35.81003],
+ [-121.37903, 35.81003],
+ [-121.37903, 35.42392],
+ [-120.94265, 35.42392],
+ [-120.94265, 35.18497],
+ [-120.8172, 35.18497],
+ [-120.8172, 35.12199],
+ [-120.69184, 35.12199],
+ [-120.69184, 34.49668],
+ [-120.50459, 34.49668],
+ [-120.50459, 34.43397],
+ [-120.00788, 34.43397],
+ [-120.00788, 34.36826],
+ [-119.52835, 34.36826],
+ [-119.52835, 34.05764],
+ [-119.0061, 34.05764],
+ [-119.0061, 33.99753],
+ [-118.50463, 33.99753],
+ [-118.50463, 33.86946],
+ [-118.44132, 33.86946],
+ [-118.44132, 33.68653],
+ [-118.06691, 33.68653],
+ [-118.06691, 33.30638],
+ [-117.503, 33.30638],
+ [-117.503, 33.05003],
+ [-117.31882, 33.05003],
+ [-117.31882, 32.62059],
+ [-117.1917, 32.62059],
+ [-117.1917, 32.49746],
+ [-116.7465, 32.49746],
+ [-116.7465, 32.56092],
+ [-115.99701, 32.56092],
+ [-115.99701, 32.62649],
+ [-114.88081, 32.62649],
+ [-114.88081, 32.43408],
+ [-114.62945, 32.43408],
+ [-114.62945, 32.37316],
+ [-114.44474, 32.37316],
+ [-114.44474, 32.30754],
+ [-114.25576, 32.30754],
+ [-114.25576, 32.24446],
+ [-114.06803, 32.24446],
+ [-114.06803, 32.18291],
+ [-113.81665, 32.18291],
+ [-113.81665, 32.12076],
+ [-113.63074, 32.12076],
+ [-113.63074, 32.05651],
+ [-113.44175, 32.05651],
+ [-113.44175, 31.99844],
+ [-113.2546, 31.99844],
+ [-113.2546, 31.93254],
+ [-113.06807, 31.93254],
+ [-113.06807, 31.87181],
+ [-112.81611, 31.87181],
+ [-112.81611, 31.81042],
+ [-112.63088, 31.81042],
+ [-112.63088, 31.74647],
+ [-112.44189, 31.74647],
+ [-112.44189, 31.6856],
+ [-112.25719, 31.6856],
+ [-112.25719, 31.62104],
+ [-112.00338, 31.62104],
+ [-112.00338, 31.55958],
+ [-111.81562, 31.55958],
+ [-111.81562, 31.49702],
+ [-111.62786, 31.49702],
+ [-111.62786, 31.43399],
+ [-111.4419, 31.43399],
+ [-111.4419, 31.37339],
+ [-111.25597, 31.37339],
+ [-111.25597, 31.31132],
+ [-108.18458, 31.31132],
+ [-108.18458, 31.74595],
+ [-106.50651, 31.74595],
+ [-106.50651, 31.68423],
+ [-106.37973, 31.68423],
+ [-106.37973, 31.62175],
+ [-106.31743, 31.62175],
+ [-106.31743, 31.49682],
+ [-106.25518, 31.49682],
+ [-106.25518, 31.43449],
+ [-106.19247, 31.43449],
+ [-106.19247, 31.37213],
+ [-106.00392, 31.37213],
+ [-106.00392, 31.30933],
+ [-105.94166, 31.30933],
+ [-105.94166, 31.24575],
+ [-105.87982, 31.24575],
+ [-105.87982, 31.18362],
+ [-105.81623, 31.18362],
+ [-105.81623, 31.12072],
+ [-105.69212, 31.12072],
+ [-105.69212, 31.05848],
+ [-105.63029, 31.05848],
+ [-105.63029, 30.93283],
+ [-105.50444, 30.93283],
+ [-105.50444, 30.87159],
+ [-105.4413, 30.87159],
+ [-105.4413, 30.80846],
+ [-105.37815, 30.80846],
+ [-105.37815, 30.74718],
+ [-105.19047, 30.74718],
+ [-105.19047, 30.68432],
+ [-105.12862, 30.68432],
+ [-105.12862, 30.61997],
+ [-105.00365, 30.61997],
+ [-105.00365, 30.55891],
+ [-104.9418, 30.55891],
+ [-104.9418, 30.49632],
+ [-104.8782, 30.49632],
+ [-104.8782, 30.30983],
+ [-104.81553, 30.30983],
+ [-104.81553, 30.24783],
+ [-104.75361, 30.24783],
+ [-104.75361, 29.93539],
+ [-104.69095, 29.93539],
+ [-104.69095, 29.80902],
+ [-104.62913, 29.80902],
+ [-104.62913, 29.68436],
+ [-104.56599, 29.68436],
+ [-104.56599, 29.62235],
+ [-104.50372, 29.62235],
+ [-104.50372, 29.55954],
+ [-104.44101, 29.55954],
+ [-104.44101, 29.49748],
+ [-104.25376, 29.49748],
+ [-104.25376, 29.37167],
+ [-104.1292, 29.37167],
+ [-104.1292, 29.30916],
+ [-104.06887, 29.30916],
+ [-104.06887, 29.24673],
+ [-103.81873, 29.24673],
+ [-103.81873, 29.18431],
+ [-103.75574, 29.18431],
+ [-103.75574, 29.12232],
+ [-103.56675, 29.12232],
+ [-103.56675, 29.05981],
+ [-103.50498, 29.05981],
+ [-103.50498, 28.99675],
+ [-103.31658, 28.99675],
+ [-103.31658, 28.93469],
+ [-103.05976, 28.93469],
+ [-103.05976, 29.0593],
+ [-102.99797, 29.0593],
+ [-102.99797, 29.12129],
+ [-102.93314, 29.12129],
+ [-102.93314, 29.18486],
+ [-102.8096, 29.18486],
+ [-102.8096, 29.25262],
+ [-102.87013, 29.25262],
+ [-102.87013, 29.3081],
+ [-102.80967, 29.3081],
+ [-102.80967, 29.37155],
+ [-102.74757, 29.37155],
+ [-102.74757, 29.55819],
+ [-102.68455, 29.55819],
+ [-102.68455, 29.68477],
+ [-102.49678, 29.68477],
+ [-102.49678, 29.74577],
+ [-102.30866, 29.74577],
+ [-102.30866, 29.80866],
+ [-102.19093, 29.80866],
+ [-102.19093, 29.74601],
+ [-101.50499, 29.74601],
+ [-101.50499, 29.68468],
+ [-101.38058, 29.68468],
+ [-101.38058, 29.55945],
+ [-101.31751, 29.55945],
+ [-101.31751, 29.49589],
+ [-101.19101, 29.49589],
+ [-101.19101, 29.43261],
+ [-101.0675, 29.43261],
+ [-101.0675, 29.30881],
+ [-100.94189, 29.30881],
+ [-100.94189, 29.24562],
+ [-100.81673, 29.24562],
+ [-100.81673, 29.11904],
+ [-100.75227, 29.11904],
+ [-100.75227, 29.05782],
+ [-100.69254, 29.05782],
+ [-100.69254, 28.87204],
+ [-100.62902, 28.87204],
+ [-100.62902, 28.80954],
+ [-100.56799, 28.80954],
+ [-100.56799, 28.62255],
+ [-100.50404, 28.62255],
+ [-100.50404, 28.55838],
+ [-100.44218, 28.55838],
+ [-100.44218, 28.49683],
+ [-100.37943, 28.49683],
+ [-100.37943, 28.30929],
+ [-100.31719, 28.30929],
+ [-100.31719, 28.18357],
+ [-100.25448, 28.18357],
+ [-100.25448, 28.12139],
+ [-100.12823, 28.12139],
+ [-100.12823, 28.05921],
+ [-100.06595, 28.05921],
+ [-100.06595, 27.99661],
+ [-100.00239, 27.99661],
+ [-100.00239, 27.93322],
+ [-99.94265, 27.93322],
+ [-99.94265, 27.74547],
+ [-99.81685, 27.74547],
+ [-99.81685, 27.68343],
+ [-99.75413, 27.68343],
+ [-99.75413, 27.62215],
+ [-99.62916, 27.62215],
+ [-99.62916, 27.5589],
+ [-99.56728, 27.5589],
+ [-99.56728, 27.43538],
+ [-99.50418, 27.43538],
+ [-99.50418, 27.3774],
+ [-99.56718, 27.3774],
+ [-99.56718, 27.24637],
+ [-99.50498, 27.24637],
+ [-99.50498, 26.99656],
+ [-99.44274, 26.99656],
+ [-99.44274, 26.8728],
+ [-99.38006, 26.8728],
+ [-99.38006, 26.80682],
+ [-99.31907, 26.80682],
+ [-99.31907, 26.74736],
+ [-99.25375, 26.74736],
+ [-99.25375, 26.62101],
+ [-99.19106, 26.62101],
+ [-99.19106, 26.49567],
+ [-99.13006, 26.49567],
+ [-99.13006, 26.37138],
+ [-99.00295, 26.37138],
+ [-99.00295, 26.30938],
+ [-98.81657, 26.30938],
+ [-98.81657, 26.24578],
+ [-98.69201, 26.24578],
+ [-98.69201, 26.18371],
+ [-98.44409, 26.18371],
+ [-98.44409, 26.12172],
+ [-98.38232, 26.12172],
+ [-98.38232, 26.05965],
+ [-98.25327, 26.05965],
+ [-98.25327, 25.99869],
+ [-98.01091, 25.99869],
+ [-98.01091, 25.99323],
+ [-97.69323, 25.99323],
+ [-97.69323, 25.93341],
+ [-97.63139, 25.93341],
+ [-97.63139, 25.86959],
+ [-97.50468, 25.86959],
+ [-97.50468, 25.80735],
+ [-97.30834, 25.80735],
+ [-97.30834, 25.87312],
+ [-97.24563, 25.87312],
+ [-97.24563, 25.93537],
+ [-97.11389, 25.93537],
+ [-97.11389, 27.68092],
+ [-97.0571, 27.68092],
+ [-97.0571, 27.81082],
+ [-95.58108, 27.81082],
+ [-95.58108, 28.74688],
+ [-94.27104, 28.74688],
+ [-94.27104, 29.55941],
+ [-92.50299, 29.55941],
+ [-92.50299, 29.49748],
+ [-91.87762, 29.49748],
+ [-91.87762, 29.3727],
+ [-91.37842, 29.3727],
+ [-91.37842, 29.24683],
+ [-91.3154, 29.24683],
+ [-91.3154, 29.18443],
+ [-91.12947, 29.18443],
+ [-91.12947, 29.12326],
+ [-91.00526, 29.12326],
+ [-91.00526, 28.99684],
+ [-89.45002, 28.99684],
+ [-89.45002, 28.86774],
+ [-88.81043, 28.86774],
+ [-88.81043, 30.18419],
+ [-85.87915, 30.18419],
+ [-85.87915, 29.5455],
+ [-84.83681, 29.5455],
+ [-84.83681, 29.62252],
+ [-84.74828, 29.62252],
+ [-84.74828, 29.68362],
+ [-84.68589, 29.68362],
+ [-84.68589, 29.74684],
+ [-83.6297, 29.74684],
+ [-83.6297, 29.43244],
+ [-83.31749, 29.43244],
+ [-83.31749, 29.05794],
+ [-82.87966, 29.05794],
+ [-82.87966, 27.74535],
+ [-82.81828, 27.74535],
+ [-82.81828, 26.92909],
+ [-82.37968, 26.92909],
+ [-82.37968, 26.36942],
+ [-81.87771, 26.36942],
+ [-81.87771, 25.80597],
+ [-81.50369, 25.80597],
+ [-81.50369, 25.74748],
+ [-81.44055, 25.74748],
+ [-81.44055, 25.68515],
+ [-81.31559, 25.68515],
+ [-81.31559, 25.5601],
+ [-81.25385, 25.5601],
+ [-81.25385, 25.43424],
+ [-81.1902, 25.43424],
+ [-81.1902, 25.12343],
+ [-81.12881, 25.12343],
+ [-81.12881, 25.06194],
+ [-81.06492, 25.06194],
+ [-81.06492, 24.81578],
+ [-81.62895, 24.81578],
+ [-81.62895, 24.75384],
+ [-81.69072, 24.75384],
+ [-81.69072, 24.68994],
+ [-81.81732, 24.68994],
+ [-81.81732, 24.62792],
+ [-82.191, 24.62792],
+ [-82.191, 24.49629],
+ [-81.62166, 24.49629],
+ [-81.62166, 24.55948],
+ [-81.37201, 24.55948],
+ [-81.37201, 24.62207],
+ [-81.05933, 24.62207],
+ [-81.05933, 24.68483],
+ [-80.93471, 24.68483],
+ [-80.93471, 24.74748],
+ [-80.74711, 24.74748],
+ [-80.74711, 24.81006],
+ [-80.36299, 24.81006],
+ [-80.36299, 25.11759],
+ [-80.12234, 25.11759],
+ [-80.12234, 25.74724],
+ [-80.05885, 25.74724],
+ [-80.05885, 26.37083],
+ [-79.99584, 26.37083],
+ [-79.99584, 26.9398],
+ [-80.05873, 26.9398],
+ [-80.05873, 27.12775],
+ [-80.12263, 27.12775],
+ [-80.12263, 27.25343],
+ [-80.1847, 27.25343],
+ [-80.1847, 27.37812],
+ [-80.24617, 27.37812],
+ [-80.24617, 27.56587],
+ [-80.30948, 27.56587],
+ [-80.30948, 27.75303],
+ [-80.37215, 27.75303],
+ [-80.37215, 27.87745],
+ [-80.43515, 27.87745],
+ [-80.43515, 28.00334],
+ [-80.49661, 28.00334],
+ [-80.49661, 28.12773],
+ [-80.55872, 28.12773],
+ [-80.55872, 28.37235],
+ [-80.49663, 28.37235],
+ [-80.49663, 29.51603],
+ [-81.12136, 29.51603],
+ [-81.12136, 31.6847],
+ [-80.60187, 31.6847],
+ [-80.60187, 32.24753],
+ [-79.4921, 32.24753],
+ [-79.4921, 32.99703],
+ [-79.11165, 32.99703],
+ [-79.11165, 33.37295],
+ [-78.61536, 33.37295],
+ [-78.61536, 33.80976],
+ [-77.9317, 33.80976],
+ [-77.9317, 33.87182],
+ [-77.86923, 33.87182],
+ [-77.86923, 34.05525],
+ [-77.68264, 34.05525],
+ [-77.68264, 34.29746],
+ [-77.24535, 34.29746],
+ [-77.24535, 34.55986],
+ [-76.49733, 34.55986],
+ [-76.49733, 34.6228],
+ [-76.43376, 34.6228],
+ [-76.43376, 34.68493],
+ [-76.37321, 34.68493],
+ [-76.37321, 34.74677],
+ [-76.30594, 34.74677],
+ [-76.30594, 34.80855],
+ [-76.2468, 34.80855],
+ [-76.2468, 34.87284],
+ [-76.18259, 34.87284],
+ [-76.18259, 34.93353],
+ [-76.12081, 34.93353],
+ [-76.12081, 34.99524],
+ [-75.9979, 34.99524],
+ [-75.9979, 35.05782],
+ [-75.87034, 35.05782],
+ [-75.87034, 35.12191],
+ [-75.74622, 35.12191],
+ [-75.74622, 35.18189],
+ [-75.49297, 35.18189],
+ [-75.49297, 35.3083],
+ [-75.43257, 35.3083],
+ [-75.43257, 35.75425],
+ [-75.49699, 35.75425],
+ [-75.49699, 37.81056],
+ [-75.3083, 37.81056],
+ [-75.3083, 37.87201],
+ [-75.2456, 37.87201],
+ [-75.2456, 37.99548],
+ [-75.18288, 37.99548],
+ [-75.18288, 38.05851],
+ [-75.11848, 38.05851],
+ [-75.11848, 38.24691],
+ [-75.05921, 38.24691],
+ [-75.05921, 38.37043],
+ [-74.99481, 38.37043],
+ [-74.99481, 38.87184],
+ [-74.48783, 38.87184],
+ [-74.48783, 39.30894],
+ [-74.17663, 39.30894],
+ [-74.17663, 39.62247],
+ [-74.0567, 39.62247],
+ [-74.0567, 39.93318],
+ [-73.9959, 39.93318],
+ [-73.9959, 40.18549],
+ [-73.93416, 40.18549],
+ [-73.93416, 40.49595],
+ [-73.8723, 40.49595],
+ [-73.8723, 40.55271],
+ [-71.80745, 40.55271],
+ [-71.80745, 41.3088],
+ [-70.88251, 41.3088],
+ [-70.88251, 41.18498],
+ [-70.74619, 41.18498],
+ [-70.74619, 41.30919],
+ [-70.43376, 41.30919],
+ [-70.43376, 41.49639],
+ [-69.93343, 41.49639],
+ [-69.93343, 41.62308],
+ [-69.86986, 41.62308],
+ [-69.86986, 41.87769],
+ [-69.93579, 41.87769],
+ [-69.93579, 42.00323],
+ [-69.99758, 42.00323],
+ [-69.99758, 42.06502],
+ [-70.06061, 42.06502],
+ [-70.06061, 42.12943],
+ [-70.55729, 42.12943],
+ [-70.55729, 43.24871],
+ [-70.49741, 43.24871],
+ [-70.49741, 43.30922],
+ [-70.37042, 43.30922],
+ [-70.37042, 43.37196],
+ [-70.30857, 43.37196],
+ [-70.30857, 43.49699],
+ [-70.18392, 43.49699],
+ [-70.18392, 43.62235],
+ [-70.05758, 43.62235],
+ [-70.05758, 43.68502],
+ [-69.74552, 43.68502],
+ [-69.74552, 43.74766],
+ [-69.24728, 43.74766],
+ [-69.24728, 43.8107],
+ [-69.05607, 43.8107],
+ [-69.05607, 43.87172],
+ [-68.99505, 43.87172],
+ [-68.99505, 43.9982],
+ [-68.49637, 43.9982],
+ [-68.49637, 44.05974],
+ [-68.3081, 44.05974],
+ [-68.3081, 44.12214],
+ [-68.18518, 44.12214],
+ [-68.18518, 44.30814],
+ [-67.9956, 44.30814],
+ [-67.9956, 44.37275],
+ [-67.8103, 44.37275],
+ [-67.8103, 44.43518],
+ [-67.49653, 44.43518],
+ [-67.49653, 44.49688],
+ [-67.37102, 44.49688],
+ [-67.37102, 44.56006],
+ [-67.18488, 44.56006],
+ [-67.18488, 44.62133],
+ [-67.12212, 44.62133],
+ [-67.12212, 44.68679],
+ [-67.05936, 44.68679],
+ [-67.05936, 44.74737],
+ [-66.93111, 44.74737],
+ [-66.93111, 44.94066],
+ [-66.99468, 44.94066],
+ [-66.99468, 45.00245],
+ [-67.05958, 45.00245],
+ [-67.05958, 45.12734],
+ [-67.1202, 45.12734],
+ [-67.1202, 45.19101],
+ [-67.24698, 45.19101],
+ [-67.24698, 45.25344],
+ [-67.31775, 45.25344],
+ [-67.31775, 45.18984],
+ [-67.37075, 45.18984],
+ [-67.37075, 45.2534],
+ [-67.43269, 45.2534],
+ [-67.43269, 45.30834],
+ [-67.37086, 45.30834],
+ [-67.37086, 45.4397],
+ [-67.43056, 45.4397],
+ [-67.43056, 45.49501],
+ [-67.37099, 45.49501],
+ [-67.37099, 45.62645],
+ [-67.6215, 45.62645],
+ [-67.6215, 45.68961],
+ [-67.68383, 45.68961],
+ [-67.68383, 45.75326],
+ [-67.74621, 45.75326],
+ [-67.74621, 47.12682],
+ [-67.87001, 47.12682],
+ [-67.87001, 47.19003],
+ [-67.93238, 47.19003],
+ [-67.93238, 47.25397],
+ [-67.99594, 47.25397],
+ [-67.99594, 47.31497],
+ [-68.12067, 47.31497],
+ [-68.12067, 47.37808],
+ [-68.44232, 47.37808],
+ [-68.44232, 47.31661],
+ [-68.63143, 47.31661],
+ [-68.63143, 47.25447],
+ [-68.9978, 47.25447],
+ [-68.9978, 47.43989],
+ [-69.06072, 47.43989],
+ [-69.06072, 47.50476],
+ [-69.25381, 47.50476],
+ [-69.25381, 47.43981],
+ [-69.31793, 47.43981],
+ [-69.31793, 47.3786],
+ [-69.44385, 47.3786],
+ [-69.44385, 47.31563],
+ [-69.50382, 47.31563],
+ [-69.50382, 47.25258],
+ [-69.56678, 47.25258],
+ [-69.56678, 47.19109],
+ [-69.63035, 47.19109],
+ [-69.63035, 47.1287],
+ [-69.69331, 47.1287],
+ [-69.69331, 47.06543],
+ [-69.75571, 47.06543],
+ [-69.75571, 47.00428],
+ [-69.81804, 47.00428],
+ [-69.81804, 46.94153],
+ [-69.8804, 46.94153],
+ [-69.8804, 46.87925],
+ [-69.94217, 46.87925],
+ [-69.94217, 46.81774],
+ [-70.00631, 46.81774],
+ [-70.00631, 46.69203],
+ [-70.07043, 46.69203],
+ [-70.07043, 46.44259],
+ [-70.19459, 46.44259],
+ [-70.19459, 46.37859],
+ [-70.2562, 46.37859],
+ [-70.2562, 46.31526],
+ [-70.32037, 46.31526],
+ [-70.32037, 46.06512],
+ [-70.3815, 46.06512],
+ [-70.3815, 45.93552],
+ [-70.32016, 45.93552],
+ [-70.32016, 45.87948],
+ [-70.44931, 45.87948],
+ [-70.44931, 45.75387],
+ [-70.507, 45.75387],
+ [-70.507, 45.69169],
+ [-70.63166, 45.69169],
+ [-70.63166, 45.62916],
+ [-70.75755, 45.62916],
+ [-70.75755, 45.44147],
+ [-70.88099, 45.44147],
+ [-70.88099, 45.37806],
+ [-71.13328, 45.37806],
+ [-71.13328, 45.31515],
+ [-71.38303, 45.31515],
+ [-71.38303, 45.25342],
+ [-71.50764, 45.25342],
+ [-71.50764, 45.06557],
+ [-73.94189, 45.06557],
+ [-73.94189, 45.00312],
+ [-74.74697, 45.00312],
+ [-74.74697, 45.0649],
+ [-74.8801, 45.0649],
+ [-74.8801, 45.0029],
+ [-75.06625, 45.0029],
+ [-75.06625, 44.94152],
+ [-75.25394, 44.94152],
+ [-75.25394, 44.8776],
+ [-75.37896, 44.8776],
+ [-75.37896, 44.81535],
+ [-75.44313, 44.81535],
+ [-75.44313, 44.75361],
+ [-75.56666, 44.75361],
+ [-75.56666, 44.69099],
+ [-75.62902, 44.69099],
+ [-75.62902, 44.6285],
+ [-75.75405, 44.6285],
+ [-75.75405, 44.56638],
+ [-75.81731, 44.56638],
+ [-75.81731, 44.50289],
+ [-75.87995, 44.50289],
+ [-75.87995, 44.37849],
+ [-76.13003, 44.37849],
+ [-76.13003, 44.31592],
+ [-76.1927, 44.31592],
+ [-76.1927, 44.25344],
+ [-76.31826, 44.25344],
+ [-76.31826, 44.19167],
+ [-76.3793, 44.19167],
+ [-76.3793, 44.06537],
+ [-76.44276, 44.06537],
+ [-76.44276, 43.99638],
+ [-76.31703, 43.99638],
+ [-76.31703, 43.94146],
+ [-76.50766, 43.94146],
+ [-76.50766, 43.87233],
+ [-76.383, 43.87233],
+ [-76.383, 43.80919],
+ [-76.25341, 43.80919],
+ [-76.25341, 43.56652],
+ [-76.50648, 43.56652],
+ [-76.50648, 43.50339],
+ [-76.63312, 43.50339],
+ [-76.63312, 43.44323],
+ [-76.69511, 43.44323],
+ [-76.69511, 43.37869],
+ [-76.81778, 43.37869],
+ [-76.81778, 43.31807],
+ [-77.682, 43.31807],
+ [-77.682, 43.37894],
+ [-78.05659, 43.37894],
+ [-78.05659, 43.43969],
+ [-78.43897, 43.43969],
+ [-78.43897, 43.37944],
+ [-78.88034, 43.37944],
+ [-78.88034, 43.31497],
+ [-79.12989, 43.31497],
+ [-79.12989, 43.24293],
+ [-79.06696, 43.24293],
+ [-79.06696, 43.12999],
+ [-79.12989, 43.12999],
+ [-79.12989, 43.05773],
+ [-79.07126, 43.05773],
+ [-79.07126, 42.92949],
+ [-78.94326, 42.92949],
+ [-78.94326, 42.75422],
+ [-79.06944, 42.75422],
+ [-79.06944, 42.69416],
+ [-79.13344, 42.69416],
+ [-79.13344, 42.6297],
+ [-79.19475, 42.6297],
+ [-79.19475, 42.56635],
+ [-79.37868, 42.56635],
+ [-79.37868, 42.50334],
+ [-79.4443, 42.50334],
+ [-79.4443, 42.44106],
+ [-79.56799, 42.44106],
+ [-79.56799, 42.37753],
+ [-79.69062, 42.37753],
+ [-79.69062, 42.31711],
+ [-79.81646, 42.31711],
+ [-79.81646, 42.25345],
+ [-80.00524, 42.25345],
+ [-80.00524, 42.19092],
+ [-80.19168, 42.19092],
+ [-80.19168, 42.12726],
+ [-80.3168, 42.12726],
+ [-80.3168, 42.06699],
+ [-80.50632, 42.06699],
+ [-80.50632, 42.00343],
+ [-80.69305, 42.00343],
+ [-80.69305, 41.94151],
+ [-80.94404, 41.94151],
+ [-80.94404, 41.87812],
+ [-81.19427, 41.87812],
+ [-81.19427, 41.81665],
+ [-81.31901, 41.81665],
+ [-81.31901, 41.75455],
+ [-81.44184, 41.75455],
+ [-81.44184, 41.69096],
+ [-81.50535, 41.69096],
+ [-81.50535, 41.63016],
+ [-82.74701, 41.63016],
+ [-82.74701, 41.75369],
+ [-82.88391, 41.75369],
+ [-82.88391, 41.56561],
+ [-82.99572, 41.56561],
+ [-82.99572, 41.62704],
+ [-83.12578, 41.62704],
+ [-83.12578, 41.68784],
+ [-83.24747, 41.68784],
+ [-83.24747, 41.75369],
+ [-83.37373, 41.75369],
+ [-83.37373, 41.80928],
+ [-83.3106, 41.80928],
+ [-83.3106, 41.87161],
+ [-83.24747, 41.87161],
+ [-83.24747, 41.93614],
+ [-83.18434, 41.93614],
+ [-83.18434, 41.99609],
+ [-83.12077, 41.99609],
+ [-83.12077, 42.24648],
+ [-83.05892, 42.24648],
+ [-83.05892, 42.30896],
+ [-82.86853, 42.30896],
+ [-82.86853, 42.37177],
+ [-82.80722, 42.37177],
+ [-82.80722, 42.55855],
+ [-82.75537, 42.55855],
+ [-82.75537, 42.49549],
+ [-82.5599, 42.49549],
+ [-82.5599, 42.55855],
+ [-82.49678, 42.55855],
+ [-82.49678, 42.68336],
+ [-82.43289, 42.68336],
+ [-82.43289, 42.93422],
+ [-82.37006, 42.93422],
+ [-82.37006, 43.06481],
+ [-82.43289, 43.06481],
+ [-82.43289, 43.19176],
+ [-82.49475, 43.19176],
+ [-82.49475, 43.50346],
+ [-82.55713, 43.50346],
+ [-82.55713, 43.81609],
+ [-82.61979, 43.81609],
+ [-82.61979, 43.94221],
+ [-82.68395, 43.94221],
+ [-82.68395, 44.00226],
+ [-82.74653, 44.00226],
+ [-82.74653, 44.06705],
+ [-82.87087, 44.06705],
+ [-82.87087, 44.12919],
+ [-83.00852, 44.12919],
+ [-83.00852, 44.06648],
+ [-83.13361, 44.06648],
+ [-83.13361, 44.00539],
+ [-83.24145, 44.00539],
+ [-83.24145, 44.9962],
+ [-83.18061, 44.9962],
+ [-83.18061, 45.0673],
+ [-83.24552, 45.0673],
+ [-83.24552, 45.12874],
+ [-83.30659, 45.12874],
+ [-83.30659, 45.25515],
+ [-83.37061, 45.25515],
+ [-83.37061, 45.31659],
+ [-83.43256, 45.31659],
+ [-83.43256, 45.37921],
+ [-83.61784, 45.37921],
+ [-83.61784, 45.44197],
+ [-83.80843, 45.44197],
+ [-83.80843, 45.50362],
+ [-84.05507, 45.50362],
+ [-84.05507, 45.56479],
+ [-84.12352, 45.56479],
+ [-84.12352, 45.62878],
+ [-84.18075, 45.62878],
+ [-84.18075, 45.69147],
+ [-84.31116, 45.69147],
+ [-84.31116, 45.93371],
+ [-83.821, 45.93371],
+ [-83.821, 45.87251],
+ [-83.49681, 45.87251],
+ [-83.49681, 45.93371],
+ [-83.43381, 45.93371],
+ [-83.43381, 46.00169],
+ [-83.49627, 46.00169],
+ [-83.49627, 46.06682],
+ [-83.56, 46.06682],
+ [-83.56, 46.12616],
+ [-83.99546, 46.12616],
+ [-83.99546, 46.19317],
+ [-84.05918, 46.19317],
+ [-84.05918, 46.3815],
+ [-84.11526, 46.3815],
+ [-84.11526, 46.49536],
+ [-84.05918, 46.49536],
+ [-84.05918, 46.56827],
+ [-84.25795, 46.56827],
+ [-84.25795, 46.50512],
+ [-84.30719, 46.50512],
+ [-84.30719, 46.56827],
+ [-84.44154, 46.56827],
+ [-84.44154, 46.50453],
+ [-84.99657, 46.50453],
+ [-84.99657, 46.68429],
+ [-84.92982, 46.68429],
+ [-84.92982, 46.81808],
+ [-85.31659, 46.81808],
+ [-85.31659, 46.75358],
+ [-87.55626, 46.75358],
+ [-87.55626, 47.44074],
+ [-87.68254, 47.44074],
+ [-87.68254, 47.50356],
+ [-88.25607, 47.50356],
+ [-88.25607, 47.44337],
+ [-88.44174, 47.44337],
+ [-88.44174, 47.37899],
+ [-88.50683, 47.37899],
+ [-88.50683, 47.31539],
+ [-88.63128, 47.31539],
+ [-88.63128, 47.25398],
+ [-88.75696, 47.25398],
+ [-88.75696, 47.19347],
+ [-88.88383, 47.19347],
+ [-88.88383, 47.12847],
+ [-88.94342, 47.12847],
+ [-88.94342, 47.06621],
+ [-89.07087, 47.06621],
+ [-89.07087, 47.00268],
+ [-89.25656, 47.00268],
+ [-89.25656, 46.94108],
+ [-90.36777, 46.94108],
+ [-90.36777, 47.68448],
+ [-90.307, 47.68448],
+ [-90.307, 47.74602],
+ [-89.99486, 47.74602],
+ [-89.99486, 47.80827],
+ [-89.80486, 47.80827],
+ [-89.80486, 47.87006],
+ [-89.67977, 47.87006],
+ [-89.67977, 47.93396],
+ [-89.49338, 47.93396],
+ [-89.49338, 47.9958],
+ [-89.42847, 47.9958],
+ [-89.42847, 48.06564],
+ [-89.99327, 48.06564],
+ [-89.99327, 48.1283],
+ [-90.74559, 48.1283],
+ [-90.74559, 48.18931],
+ [-90.80873, 48.18931],
+ [-90.80873, 48.25221],
+ [-91.06776, 48.25221],
+ [-91.06776, 48.19167],
+ [-91.19462, 48.19167],
+ [-91.19462, 48.1279],
+ [-91.68142, 48.1279],
+ [-91.68142, 48.2526],
+ [-91.93219, 48.2526],
+ [-91.93219, 48.31425],
+ [-91.99297, 48.31425],
+ [-91.99297, 48.37808],
+ [-92.31894, 48.37808],
+ [-92.31894, 48.25291],
+ [-92.37322, 48.25291],
+ [-92.37322, 48.31534],
+ [-92.43223, 48.31534],
+ [-92.43223, 48.44114],
+ [-92.49772, 48.44114],
+ [-92.49772, 48.50178],
+ [-92.56794, 48.50178],
+ [-92.56794, 48.43958],
+ [-92.62105, 48.43958],
+ [-92.62105, 48.56508],
+ [-92.80868, 48.56508],
+ [-92.80868, 48.62869],
+ [-92.80868, 48.62674],
+ [-92.93318, 48.62674],
+ [-92.93318, 48.69221],
+ [-93.00517, 48.69221],
+ [-93.00517, 48.6283],
+ [-93.12259, 48.6283],
+ [-93.12259, 48.69221],
+ [-93.31908, 48.69221],
+ [-93.31908, 48.62674],
+ [-93.50495, 48.62674],
+ [-93.50495, 48.56352],
+ [-93.74746, 48.56352],
+ [-93.74746, 48.62674],
+ [-93.81355, 48.62674],
+ [-93.81355, 48.68988],
+ [-94.24531, 48.68988],
+ [-94.24531, 48.75543],
+ [-94.61832, 48.75543],
+ [-94.61832, 48.94104],
+ [-94.6809, 48.94104],
+ [-94.6809, 49.00297],
+ [-94.74415, 49.00297],
+ [-94.74415, 49.25361],
+ [-94.80841, 49.25361],
+ [-94.80841, 49.37841],
+ [-95.11924, 49.37841],
+ [-95.11924, 49.44253],
+ [-95.19343, 49.44253],
+ [-95.19343, 49.00353],
+ [-96.87069, 49.00353],
+ [-96.87069, 49.06561],
+ [-99.00493, 49.06561],
+ [-99.00493, 49.00507],
+ [-109.36993, 49.00507],
+ [-109.36993, 49.06682],
+ [-109.50587, 49.06682],
+ [-109.50587, 49.00507],
+ [-114.183, 49.00507],
+ [-114.183, 49.06873],
+ [-114.75787, 49.06873],
+ [-114.75787, 49.00507],
+ [-115.43373, 49.00507],
+ [-115.43373, 49.06714],
+ [-116.50627, 49.06714],
+ [-116.50627, 49.00507],
+ [-117.30895, 49.00507],
+ [-117.30895, 49.06598],
+ [-119.88295, 49.06598],
+ [-119.88295, 49.00507],
+ [-120.12086, 49.00507],
+ [-120.12086, 49.06784],
+ [-121.44516, 49.06784],
+ [-121.44516, 49.00507],
+ [-121.93118, 49.00507],
+ [-121.93118, 49.06561],
+ [-122.81748, 49.06561],
+ [-122.81748, 49.00291],
+ [-122.87952, 49.00291],
+ [-122.87952, 48.9347],
+ [-122.81746, 48.9347],
+ [-122.81746, 48.8102],
+ [-122.75389, 48.8102],
+ [-122.75389, 48.75338],
+ [-122.87129, 48.75338],
+ [-122.87129, 48.81539],
+ [-123.00554, 48.81539],
+ [-123.00554, 48.75295],
+ [-123.12969, 48.75295],
+ [-123.12969, 48.69022],
+ [-123.18382, 48.69022],
+ [-123.18382, 48.7529],
+ [-123.25493, 48.7529]
+ ],
+ [
+ [-122.93417, 37.75215],
+ [-122.93475, 37.6842],
+ [-123.0679, 37.6849],
+ [-123.06737, 37.74753],
+ [-123.12926, 37.74785],
+ [-123.12869, 37.81569],
+ [-123.05907, 37.81532],
+ [-123.05959, 37.75281],
+ [-122.93417, 37.75215]
+ ],
+ [
+ [-71.62995, 41.25409],
+ [-71.49665, 41.25414],
+ [-71.49656, 41.12297],
+ [-71.62986, 41.12291],
+ [-71.62995, 41.25409]
+ ],
+ [
+ [-70.31843, 41.37752],
+ [-70.31834, 41.24482],
+ [-70.19066, 41.24487],
+ [-70.19062, 41.1886],
+ [-69.9336, 41.1887],
+ [-69.93373, 41.37919],
+ [-69.99507, 41.37917],
+ [-69.99511, 41.44316],
+ [-70.07078, 41.44313],
+ [-70.0707, 41.31449],
+ [-70.24617, 41.31443],
+ [-70.24621, 41.37755],
+ [-70.31843, 41.37752]
+ ],
+ [
+ [-68.94034, 43.94041],
+ [-68.68569, 43.9405],
+ [-68.68565, 43.87218],
+ [-68.74654, 43.87216],
+ [-68.7465, 43.81025],
+ [-68.80908, 43.81023],
+ [-68.80903, 43.74673],
+ [-68.87731, 43.7467],
+ [-68.87735, 43.81178],
+ [-68.94025, 43.81176],
+ [-68.94034, 43.94041]
+ ],
+ [
+ [-123.12915, 49.06451],
+ [-122.99542, 49.06451],
+ [-122.99542, 48.93432],
+ [-123.12915, 48.93432],
+ [-123.12915, 49.06451]
+ ],
+ [
+ [-82.94071, 24.75359],
+ [-82.87194, 24.75359],
+ [-82.87194, 24.69057],
+ [-82.74462, 24.69057],
+ [-82.74462, 24.62146],
+ [-82.8088, 24.62146],
+ [-82.8088, 24.55949],
+ [-82.94071, 24.55949],
+ [-82.94071, 24.75359]
+ ]
+ ],
+ "icon": "data:image/png;base64,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"
+ },
+ {
+ "id": "USGS-Scanned_Topographic",
+ "name": "USGS Topographic Maps",
+ "type": "tms",
+ "template": "https://caltopo.s3.amazonaws.com/topo/{zoom}/{x}/{y}.png",
+ "scaleExtent": [0, 16],
+ "polygon": [
+ [
+ [-55.99594, 52.00107],
+ [-112.02896, 52.00107],
+ [-112.03995, 56.01308],
+ [-120.00494, 56.00592],
+ [-120.01712, 60.01202],
+ [-132.00197, 60.00239],
+ [-132.01208, 63.00193],
+ [-133.96883, 63.0005],
+ [-133.9724, 63.99225],
+ [-141.04429, 63.98726],
+ [-141.06879, 69.92046],
+ [-156.24893, 71.51583],
+ [-160.44571, 70.83527],
+ [-167.08145, 68.42906],
+ [-164.08218, 67.03914],
+ [-169.01504, 65.68269],
+ [-166.57608, 64.50778],
+ [-161.82999, 64.05006],
+ [-165.08194, 63.2603],
+ [-168.02628, 59.78623],
+ [-162.53311, 59.73089],
+ [-162.35733, 58.55905],
+ [-157.83096, 58.31753],
+ [-158.00674, 57.52404],
+ [-168.22403, 53.51022],
+ [-166.55411, 53.14277],
+ [-158.77579, 54.88541],
+ [-158.6824, 55.74964],
+ [-156.55106, 56.00848],
+ [-156.15555, 56.77466],
+ [-154.70535, 56.14337],
+ [-152.07413, 57.37035],
+ [-151.62918, 58.22653],
+ [-152.00821, 58.98056],
+ [-145.9877, 60.24741],
+ [-140.38467, 59.48634],
+ [-136.53946, 57.8061],
+ [-133.79288, 54.83483],
+ [-133.33145, 53.14277],
+ [-131.46378, 51.69838],
+ [-128.52493, 51.74602],
+ [-129.79385, 50.90159],
+ [-124.56436, 47.49786],
+ [-124.03702, 45.48627],
+ [-124.6962, 42.90428],
+ [-124.49844, 40.34146],
+ [-122.80655, 37.53929],
+ [-119.99405, 33.37085],
+ [-117.24747, 32.5412],
+ [-111.13907, 31.1977],
+ [-106.70059, 31.23529],
+ [-103.20694, 28.64618],
+ [-101.84463, 29.8158],
+ [-99.20792, 26.28744],
+ [-96.79092, 25.75432],
+ [-96.92276, 27.96911],
+ [-93.47305, 29.68226],
+ [-88.94669, 28.87732],
+ [-88.6171, 30.17736],
+ [-86.2001, 30.36713],
+ [-84.96963, 29.43379],
+ [-84.09073, 30.06333],
+ [-82.97012, 28.95426],
+ [-82.97012, 27.26824],
+ [-81.25626, 25.07956],
+ [-82.09122, 24.56105],
+ [-80.06973, 24.76073],
+ [-79.85001, 27.11188],
+ [-81.27823, 30.70777],
+ [-78.99307, 33.20554],
+ [-75.03799, 35.5983],
+ [-75.85098, 37.24252],
+ [-73.74161, 40.4586],
+ [-69.89639, 41.60224],
+ [-70.68741, 43.17629],
+ [-66.93008, 44.69516],
+ [-66.53458, 43.08007],
+ [-64.20547, 43.35229],
+ [-59.50333, 45.73221],
+ [-59.51431, 46.24762],
+ [-60.0032, 46.25901],
+ [-59.99222, 47.24506],
+ [-59.00894, 47.2376],
+ [-58.99796, 47.50267],
+ [-56.51504, 47.50267],
+ [-56.52603, 46.7477],
+ [-53.99918, 46.7477],
+ [-53.9772, 46.48358],
+ [-52.49405, 46.46354],
+ [-52.50504, 48.75361],
+ [-52.99667, 48.75451],
+ [-53.01315, 49.99551],
+ [-55.00168, 50.0061],
+ [-55.03738, 53.74721],
+ [-56.00418, 53.73421],
+ [-55.99594, 52.00107]
+ ],
+ [
+ [-59.50127, 43.74954],
+ [-60.5024, 43.74954],
+ [-60.5024, 44],
+ [-59.9984, 44],
+ [-59.9984, 44.2494],
+ [-59.50127, 44.2494],
+ [-59.50127, 43.74954]
+ ],
+ [
+ [-155.95024, 20.49523],
+ [-157.32675, 20.49153],
+ [-157.32903, 21.23181],
+ [-155.95251, 21.23549],
+ [-155.95024, 20.49523]
+ ],
+ [
+ [-157.64488, 21.24845],
+ [-158.28534, 21.24674],
+ [-158.2869, 21.74996],
+ [-157.64643, 21.75167],
+ [-157.64488, 21.24845]
+ ],
+ [
+ [-156.12602, 20.3247],
+ [-154.74617, 20.32841],
+ [-154.74174, 18.87578],
+ [-156.1216, 18.87203],
+ [-156.12602, 20.3247]
+ ],
+ [
+ [-159.29077, 22.24504],
+ [-159.2893, 21.76857],
+ [-160.28917, 21.76591],
+ [-160.29064, 22.24239],
+ [-159.29077, 22.24504]
+ ]
+ ],
+ "terms_url": "https://caltopo.com",
+ "terms_text": "© Caltopo",
+ "icon": "data:image/png;base64,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"
+ },
+ {
+ "id": "USSR-Latvia",
+ "name": "USSR - Latvia",
+ "type": "wms",
+ "template": "http://www.gisnet.lv/cgi-bin/topo?FORMAT=image/jpeg&VERSION=1.1.1&service=WMS&REQUEST=GetMap&LAYERS=DTO,DTC,DIVDPTC,PD,VS,DS,PS,M&SRS={proj}&WIDTH={width}&height={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [26.63086, 57.56889],
+ [25.16968, 58.04882],
+ [22.54395, 57.76866],
+ [21.54419, 57.53352],
+ [21.01685, 56.81892],
+ [21.01685, 56.03523],
+ [22.03857, 56.38958],
+ [24.71924, 56.33481],
+ [26.75171, 55.66519],
+ [28.19092, 56.13943],
+ [27.78442, 57.40946],
+ [26.63086, 57.56889]
+ ]
+ ]
+ },
+ {
+ "id": "sjcgis.org-General_Basemap_WM",
+ "name": "Vector Streetmap for San Juan County WA",
+ "type": "tms",
+ "template": "https://sjcgis.org/arcgis/rest/services/Basemaps/General_Basemap_WM/MapServer/tile/{zoom}/{y}/{x}",
+ "scaleExtent": [0, 19],
+ "polygon": [
+ [
+ [-123.27402, 48.69297],
+ [-123.00773, 48.76726],
+ [-123.00762, 48.83158],
+ [-122.7835, 48.75842],
+ [-122.6934, 48.65852],
+ [-122.76745, 48.60361],
+ [-122.74484, 48.38708],
+ [-123.24822, 48.28353],
+ [-123.11452, 48.42261],
+ [-123.21904, 48.54857],
+ [-123.27402, 48.69297]
+ ]
+ ],
+ "best": true,
+ "description": "Public domain street and address data from the San Juan County, WA. Updated at least quarterly."
+ },
+ {
+ "id": "Vercors-Orthophotos-1999",
+ "name": "Vercors (Réserve naturelle des Hauts-Plateaux du Vercors) - Orthophoto - 1999 - 1 m",
+ "type": "tms",
+ "template": "http://wms.openstreetmap.fr/tms/1.0.0/PNRVercors-RHP-1999/{zoom}/{x}/{y}",
+ "endDate": "1999-01-01T00:00:00.000Z",
+ "startDate": "1999-01-01T00:00:00.000Z",
+ "scaleExtent": [0, 19],
+ "polygon": [
+ [
+ [5.43565, 44.99918],
+ [5.43193, 44.9229],
+ [5.43624, 44.92284],
+ [5.43472, 44.89001],
+ [5.43303, 44.88995],
+ [5.43065, 44.85026],
+ [5.43387, 44.85014],
+ [5.43285, 44.82638],
+ [5.43548, 44.82626],
+ [5.43497, 44.8139],
+ [5.44106, 44.81372],
+ [5.43717, 44.74098],
+ [5.4546, 44.74044],
+ [5.45282, 44.70425],
+ [5.5211, 44.70245],
+ [5.5233, 44.73858],
+ [5.58904, 44.73684],
+ [5.59298, 44.81263],
+ [5.5879, 44.81299],
+ [5.58977, 44.84947],
+ [5.58823, 44.84938],
+ [5.58972, 44.87351],
+ [5.53863, 44.87503],
+ [5.53947, 44.88686],
+ [5.52834, 44.88733],
+ [5.53002, 44.92012],
+ [5.53319, 44.92012],
+ [5.53761, 44.99624],
+ [5.43565, 44.99918]
+ ]
+ ],
+ "terms_text": "Parc Naturel du Vercors"
+ },
+ {
+ "id": "vicosa_al",
+ "name": "Viçosa AL",
+ "type": "wms",
+ "template": "http://geo.seplande.al.gov.br/teogc/terraogcwms.cgi?LAYERS=Vicosa&SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.0&SERVICE=WMS&REQUEST=GetMap&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [-36.198, -9.42067],
+ [-36.19777, -9.41789],
+ [-36.1978, -9.41528],
+ [-36.19801, -9.41074],
+ [-36.19789, -9.40857],
+ [-36.19793, -9.40637],
+ [-36.19797, -9.40561],
+ [-36.19793, -9.40405],
+ [-36.19799, -9.40312],
+ [-36.19827, -9.40028],
+ [-36.19829, -9.39496],
+ [-36.19789, -9.39169],
+ [-36.19844, -9.38932],
+ [-36.19837, -9.3862],
+ [-36.19794, -9.38167],
+ [-36.19801, -9.37972],
+ [-36.19834, -9.37867],
+ [-36.19832, -9.37698],
+ [-36.19817, -9.37586],
+ [-36.19852, -9.37139],
+ [-36.19822, -9.36239],
+ [-36.19862, -9.35319],
+ [-36.19849, -9.35097],
+ [-36.19857, -9.34852],
+ [-36.1988, -9.34668],
+ [-36.1986, -9.34349],
+ [-36.19877, -9.34084],
+ [-36.19895, -9.33301],
+ [-36.19877, -9.33039],
+ [-36.28958, -9.33114],
+ [-36.28938, -9.33319],
+ [-36.2895, -9.33538],
+ [-36.28925, -9.34124],
+ [-36.28945, -9.34291],
+ [-36.28928, -9.34521],
+ [-36.28897, -9.37311],
+ [-36.28915, -9.37481],
+ [-36.28892, -9.37708],
+ [-36.2889, -9.38541],
+ [-36.28872, -9.38633],
+ [-36.28872, -9.39343],
+ [-36.28887, -9.39558],
+ [-36.28877, -9.40129],
+ [-36.28862, -9.40652],
+ [-36.28872, -9.40715],
+ [-36.28877, -9.42133],
+ [-36.198, -9.42067]
+ ]
+ ],
+ "terms_url": "http://www.seplande.al.gov.br",
+ "terms_text": "Secretaria de Estado do Planejamento e Desenvolvimento Econômico"
+ },
+ {
+ "id": "wien.gv.at-labels",
+ "name": "Vienna: Beschriftungen (annotations)",
+ "type": "tms",
+ "template": "https://maps.wien.gv.at/wmts/beschriftung/normal/google3857/{zoom}/{y}/{x}.png",
+ "scaleExtent": [12, 19],
+ "polygon": [
+ [
+ [16.54475, 48.17286],
+ [16.54103, 48.17657],
+ [16.54978, 48.17675],
+ [16.54665, 48.17162],
+ [16.55629, 48.16171],
+ [16.55567, 48.16446],
+ [16.56161, 48.16037],
+ [16.57306, 48.16319],
+ [16.57603, 48.13522],
+ [16.54301, 48.14333],
+ [16.51377, 48.15893],
+ [16.4777, 48.15744],
+ [16.45536, 48.13951],
+ [16.43313, 48.13788],
+ [16.43701, 48.11994],
+ [16.42291, 48.12306],
+ [16.4083, 48.11791],
+ [16.40511, 48.12198],
+ [16.3246, 48.13779],
+ [16.31181, 48.11945],
+ [16.29806, 48.12896],
+ [16.2711, 48.13385],
+ [16.23607, 48.13001],
+ [16.2189, 48.12377],
+ [16.2181, 48.12807],
+ [16.23861, 48.13205],
+ [16.23843, 48.13716],
+ [16.22081, 48.13555],
+ [16.20986, 48.14762],
+ [16.22321, 48.15318],
+ [16.19798, 48.15454],
+ [16.19619, 48.16396],
+ [16.18183, 48.17112],
+ [16.19981, 48.18616],
+ [16.20739, 48.20235],
+ [16.20194, 48.20479],
+ [16.20962, 48.20963],
+ [16.1976, 48.21479],
+ [16.19778, 48.22288],
+ [16.18517, 48.2232],
+ [16.19911, 48.22858],
+ [16.19251, 48.23671],
+ [16.20677, 48.26483],
+ [16.24105, 48.24837],
+ [16.24154, 48.23832],
+ [16.25662, 48.23988],
+ [16.27043, 48.25193],
+ [16.26406, 48.25492],
+ [16.28556, 48.25832],
+ [16.29412, 48.26395],
+ [16.28617, 48.2667],
+ [16.28901, 48.27051],
+ [16.32741, 48.27721],
+ [16.34813, 48.29048],
+ [16.35351, 48.28369],
+ [16.3706, 48.2817],
+ [16.36714, 48.28685],
+ [16.37787, 48.28832],
+ [16.37557, 48.29592],
+ [16.37982, 48.30201],
+ [16.38536, 48.30146],
+ [16.38043, 48.31507],
+ [16.39518, 48.32257],
+ [16.39412, 48.31926],
+ [16.40287, 48.31676],
+ [16.41682, 48.32253],
+ [16.43803, 48.31628],
+ [16.44041, 48.29192],
+ [16.47547, 48.27501],
+ [16.48123, 48.27343],
+ [16.4835, 48.27971],
+ [16.48132, 48.29351],
+ [16.49645, 48.29249],
+ [16.51491, 48.28554],
+ [16.5067, 48.2736],
+ [16.51285, 48.26784],
+ [16.53263, 48.2621],
+ [16.54697, 48.263],
+ [16.53941, 48.24284],
+ [16.55274, 48.239],
+ [16.53627, 48.20044],
+ [16.54184, 48.18206],
+ [16.53631, 48.17755],
+ [16.54475, 48.17286]
+ ]
+ ],
+ "terms_url": "https://data.wien.gv.at",
+ "terms_text": "Stadt Wien",
+ "icon": "https://www.wien.gv.at/layout-a/logo/wappen-klein.gif",
+ "overlay": true
+ },
+ {
+ "id": "wien.gv.at-gp",
+ "name": "Vienna: Mehrzweckkarte (general purpose)",
+ "type": "tms",
+ "template": "https://maps.wien.gv.at/wmts/fmzk/pastell/google3857/{zoom}/{y}/{x}.jpeg",
+ "scaleExtent": [10, 19],
+ "polygon": [
+ [
+ [16.54475, 48.17286],
+ [16.54103, 48.17657],
+ [16.54978, 48.17675],
+ [16.54665, 48.17162],
+ [16.55629, 48.16171],
+ [16.55567, 48.16446],
+ [16.56161, 48.16037],
+ [16.57306, 48.16319],
+ [16.57603, 48.13522],
+ [16.54301, 48.14333],
+ [16.51377, 48.15893],
+ [16.4777, 48.15744],
+ [16.45536, 48.13951],
+ [16.43313, 48.13788],
+ [16.43701, 48.11994],
+ [16.42291, 48.12306],
+ [16.4083, 48.11791],
+ [16.40511, 48.12198],
+ [16.3246, 48.13779],
+ [16.31181, 48.11945],
+ [16.29806, 48.12896],
+ [16.2711, 48.13385],
+ [16.23607, 48.13001],
+ [16.2189, 48.12377],
+ [16.2181, 48.12807],
+ [16.23861, 48.13205],
+ [16.23843, 48.13716],
+ [16.22081, 48.13555],
+ [16.20986, 48.14762],
+ [16.22321, 48.15318],
+ [16.19798, 48.15454],
+ [16.19619, 48.16396],
+ [16.18183, 48.17112],
+ [16.19981, 48.18616],
+ [16.20739, 48.20235],
+ [16.20194, 48.20479],
+ [16.20962, 48.20963],
+ [16.1976, 48.21479],
+ [16.19778, 48.22288],
+ [16.18517, 48.2232],
+ [16.19911, 48.22858],
+ [16.19251, 48.23671],
+ [16.20677, 48.26483],
+ [16.24105, 48.24837],
+ [16.24154, 48.23832],
+ [16.25662, 48.23988],
+ [16.27043, 48.25193],
+ [16.26406, 48.25492],
+ [16.28556, 48.25832],
+ [16.29412, 48.26395],
+ [16.28617, 48.2667],
+ [16.28901, 48.27051],
+ [16.32741, 48.27721],
+ [16.34813, 48.29048],
+ [16.35351, 48.28369],
+ [16.3706, 48.2817],
+ [16.36714, 48.28685],
+ [16.37787, 48.28832],
+ [16.37557, 48.29592],
+ [16.37982, 48.30201],
+ [16.38536, 48.30146],
+ [16.38043, 48.31507],
+ [16.39518, 48.32257],
+ [16.39412, 48.31926],
+ [16.40287, 48.31676],
+ [16.41682, 48.32253],
+ [16.43803, 48.31628],
+ [16.44041, 48.29192],
+ [16.47547, 48.27501],
+ [16.48123, 48.27343],
+ [16.4835, 48.27971],
+ [16.48132, 48.29351],
+ [16.49645, 48.29249],
+ [16.51491, 48.28554],
+ [16.5067, 48.2736],
+ [16.51285, 48.26784],
+ [16.53263, 48.2621],
+ [16.54697, 48.263],
+ [16.53941, 48.24284],
+ [16.55274, 48.239],
+ [16.53627, 48.20044],
+ [16.54184, 48.18206],
+ [16.53631, 48.17755],
+ [16.54475, 48.17286]
+ ]
+ ],
+ "terms_url": "https://data.wien.gv.at",
+ "terms_text": "Stadt Wien",
+ "icon": "https://www.wien.gv.at/layout-a/logo/wappen-klein.gif"
+ },
+ {
+ "id": "wien.gv.at-aerial_image",
+ "name": "Vienna: Orthofoto (aerial image)",
+ "type": "tms",
+ "template": "https://maps.wien.gv.at/wmts/lb/farbe/google3857/{zoom}/{y}/{x}.jpeg",
+ "scaleExtent": [10, 19],
+ "polygon": [
+ [
+ [16.14995, 48.10832],
+ [16.14989, 48.33315],
+ [16.61873, 48.33296],
+ [16.61749, 48.10813],
+ [16.46644, 48.10819],
+ [16.46644, 48.10744],
+ [16.18104, 48.10756],
+ [16.18104, 48.10831],
+ [16.14995, 48.10832]
+ ]
+ ],
+ "terms_url": "https://data.wien.gv.at",
+ "terms_text": "Stadt Wien",
+ "icon": "https://www.wien.gv.at/layout-a/logo/wappen-klein.gif"
+ },
+ {
+ "id": "Ville_de_Nyon-HD-2010",
+ "name": "Ville de Nyon - Orthophoto 2010 HD 5cm/pi",
+ "type": "tms",
+ "template": "http://osmdata.asitvd.ch/tiles/nyon2010/{zoom}/{x}/{y}.png",
+ "endDate": "2010-01-01T00:00:00.000Z",
+ "startDate": "2010-01-01T00:00:00.000Z",
+ "scaleExtent": [14, 20],
+ "polygon": [
+ [
+ [6.24859, 46.38252],
+ [6.24848, 46.38715],
+ [6.24378, 46.38944],
+ [6.24182, 46.39109],
+ [6.2414, 46.39159],
+ [6.23919, 46.39222],
+ [6.23973, 46.39373],
+ [6.2379, 46.3946],
+ [6.23713, 46.39698],
+ [6.23071, 46.40107],
+ [6.22789, 46.39903],
+ [6.22326, 46.40219],
+ [6.22066, 46.40189],
+ [6.21582, 46.40462],
+ [6.21393, 46.40698],
+ [6.20989, 46.40563],
+ [6.20928, 46.40528],
+ [6.20985, 46.40434],
+ [6.20501, 46.40332],
+ [6.20527, 46.40104],
+ [6.20906, 46.40131],
+ [6.20951, 46.4013],
+ [6.2149, 46.4008],
+ [6.21154, 46.39808],
+ [6.21057, 46.3968],
+ [6.20954, 46.39449],
+ [6.21229, 46.39243],
+ [6.21374, 46.39168],
+ [6.21639, 46.39079],
+ [6.21296, 46.38736],
+ [6.21532, 46.38514],
+ [6.21403, 46.38424],
+ [6.2126, 46.38232],
+ [6.21211, 46.38102],
+ [6.21212, 46.37992],
+ [6.21231, 46.37901],
+ [6.21318, 46.37697],
+ [6.21454, 46.37494],
+ [6.21359, 46.37463],
+ [6.21365, 46.37276],
+ [6.22133, 46.3699],
+ [6.22752, 46.36555],
+ [6.22752, 46.36541],
+ [6.23738, 46.37356],
+ [6.24404, 46.37842],
+ [6.24859, 46.38252]
+ ]
+ ],
+ "terms_url": "http://www.nyon.ch/fr/officiel/services-offices/informatique-et-population-776-3911",
+ "terms_text": "Ville de Nyon"
+ },
+ {
+ "id": "vogis.cnv.at-DGM",
+ "name": "VoGIS: DGM (Terrain model)",
+ "type": "wms",
+ "template": "http://vogis.cnv.at/mapserver/mapserv?map=i_hoehen_und_gelaende_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=schummerung_50cm_terrain&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [9.96805, 47.54631],
+ [9.96809, 47.54627],
+ [9.97125, 47.54425],
+ [9.96484, 47.53803],
+ [9.9684, 47.52802],
+ [9.96526, 47.52089],
+ [9.99569, 47.50278],
+ [9.98736, 47.49847],
+ [10.00076, 47.48211],
+ [10.02301, 47.48411],
+ [10.03743, 47.48918],
+ [10.04477, 47.48762],
+ [10.05413, 47.47589],
+ [10.05347, 47.46686],
+ [10.06468, 47.46364],
+ [10.06999, 47.45595],
+ [10.08057, 47.45536],
+ [10.08857, 47.46029],
+ [10.09164, 47.45893],
+ [10.09385, 47.44046],
+ [10.10559, 47.42872],
+ [10.09374, 47.41688],
+ [10.07418, 47.41472],
+ [10.06914, 47.41018],
+ [10.08624, 47.39952],
+ [10.08284, 47.39381],
+ [10.09984, 47.35476],
+ [10.11934, 47.37561],
+ [10.14169, 47.36718],
+ [10.16587, 47.36887],
+ [10.16958, 47.3713],
+ [10.1694, 47.38583],
+ [10.1813, 47.38725],
+ [10.18185, 47.39243],
+ [10.19508, 47.38935],
+ [10.19988, 47.38334],
+ [10.21259, 47.38039],
+ [10.22705, 47.38889],
+ [10.23619, 47.38192],
+ [10.23168, 47.37897],
+ [10.23716, 47.37357],
+ [10.21699, 47.35436],
+ [10.2171, 47.34988],
+ [10.20424, 47.33675],
+ [10.20742, 47.33232],
+ [10.19951, 47.32646],
+ [10.21113, 47.31898],
+ [10.21597, 47.31106],
+ [10.21236, 47.31122],
+ [10.19913, 47.29754],
+ [10.18964, 47.29394],
+ [10.17961, 47.29603],
+ [10.17208, 47.27908],
+ [10.17404, 47.27025],
+ [10.17834, 47.27011],
+ [10.17449, 47.2637],
+ [10.21884, 47.25533],
+ [10.22343, 47.24983],
+ [10.21087, 47.2478],
+ [10.19776, 47.23666],
+ [10.20791, 47.2328],
+ [10.21428, 47.21684],
+ [10.21269, 47.20432],
+ [10.19963, 47.19539],
+ [10.19951, 47.18525],
+ [10.21151, 47.17124],
+ [10.2092, 47.16537],
+ [10.20851, 47.15948],
+ [10.21321, 47.1577],
+ [10.2222, 47.15323],
+ [10.22166, 47.14925],
+ [10.21481, 47.14352],
+ [10.20333, 47.14215],
+ [10.20887, 47.13164],
+ [10.18629, 47.12886],
+ [10.18652, 47.11946],
+ [10.17288, 47.12033],
+ [10.16299, 47.11361],
+ [10.15766, 47.11426],
+ [10.15442, 47.10578],
+ [10.13243, 47.08122],
+ [10.13459, 47.06392],
+ [10.15085, 47.06184],
+ [10.15693, 47.04883],
+ [10.14418, 47.03355],
+ [10.12326, 47.02209],
+ [10.13284, 47.01204],
+ [10.15447, 47.00545],
+ [10.15961, 46.99882],
+ [10.15442, 46.99299],
+ [10.16001, 46.984],
+ [10.14463, 46.98301],
+ [10.13492, 46.96584],
+ [10.13501, 46.95483],
+ [10.12684, 46.9435],
+ [10.09772, 46.92676],
+ [10.09954, 46.91712],
+ [10.10921, 46.90834],
+ [10.10908, 46.89431],
+ [10.12497, 46.88014],
+ [10.14147, 46.87468],
+ [10.13967, 46.86217],
+ [10.14506, 46.8511],
+ [10.13941, 46.84738],
+ [10.12309, 46.84848],
+ [10.11912, 46.84417],
+ [10.10518, 46.8409],
+ [10.09195, 46.85143],
+ [10.09265, 46.85818],
+ [10.08712, 46.86128],
+ [10.05488, 46.8617],
+ [10.0509, 46.86442],
+ [10.05192, 46.87405],
+ [10.03891, 46.88611],
+ [10.03221, 46.88802],
+ [10.01782, 46.90161],
+ [10.00494, 46.89889],
+ [9.98243, 46.9062],
+ [9.97793, 46.91603],
+ [9.96657, 46.91222],
+ [9.95907, 46.91602],
+ [9.94612, 46.91235],
+ [9.93758, 46.91324],
+ [9.92153, 46.91882],
+ [9.91231, 46.92606],
+ [9.90632, 46.9253],
+ [9.89449, 46.93164],
+ [9.87613, 46.93463],
+ [9.88071, 46.94011],
+ [9.87657, 46.94071],
+ [9.87488, 46.95039],
+ [9.87872, 46.95707],
+ [9.87073, 46.96321],
+ [9.88482, 46.98546],
+ [9.8923, 46.99036],
+ [9.88878, 47.00072],
+ [9.8707, 47.00965],
+ [9.87115, 47.01306],
+ [9.88035, 47.01722],
+ [9.87779, 47.02055],
+ [9.85974, 47.02321],
+ [9.85273, 47.01641],
+ [9.83612, 47.01253],
+ [9.82353, 47.01986],
+ [9.80756, 47.02356],
+ [9.78491, 47.03849],
+ [9.74808, 47.03692],
+ [9.74185, 47.04268],
+ [9.71821, 47.04337],
+ [9.70701, 47.04805],
+ [9.7076, 47.05381],
+ [9.69756, 47.05239],
+ [9.68392, 47.05765],
+ [9.68184, 47.0621],
+ [9.67743, 47.06141],
+ [9.65821, 47.05818],
+ [9.64506, 47.05978],
+ [9.64158, 47.05598],
+ [9.63654, 47.0517],
+ [9.62633, 47.05133],
+ [9.60705, 47.06077],
+ [9.6134, 47.0695],
+ [9.61153, 47.0794],
+ [9.61869, 47.07817],
+ [9.62339, 47.08258],
+ [9.63346, 47.08344],
+ [9.63564, 47.09553],
+ [9.62858, 47.10756],
+ [9.62083, 47.11032],
+ [9.63503, 47.12813],
+ [9.62467, 47.13265],
+ [9.62258, 47.14135],
+ [9.62587, 47.1459],
+ [9.62059, 47.15164],
+ [9.6089, 47.14775],
+ [9.59679, 47.16294],
+ [9.57946, 47.17116],
+ [9.56456, 47.17029],
+ [9.57302, 47.1756],
+ [9.57259, 47.19079],
+ [9.58032, 47.19578],
+ [9.58477, 47.20532],
+ [9.5687, 47.21968],
+ [9.55851, 47.22416],
+ [9.55176, 47.22377],
+ [9.56679, 47.24288],
+ [9.53073, 47.27058],
+ [9.54619, 47.28005],
+ [9.55634, 47.29829],
+ [9.58805, 47.3173],
+ [9.59966, 47.3455],
+ [9.61073, 47.35571],
+ [9.62446, 47.36615],
+ [9.65876, 47.36946],
+ [9.67255, 47.38021],
+ [9.67311, 47.39194],
+ [9.65162, 47.40463],
+ [9.64551, 47.4312],
+ [9.64512, 47.4378],
+ [9.65799, 47.44779],
+ [9.65898, 47.4522],
+ [9.62234, 47.45747],
+ [9.60904, 47.47054],
+ [9.60292, 47.46198],
+ [9.59514, 47.46331],
+ [9.58217, 47.48276],
+ [9.5622, 47.49592],
+ [9.55057, 47.53718],
+ [9.5827, 47.53592],
+ [9.60465, 47.52952],
+ [9.73478, 47.53396],
+ [9.73517, 47.54661],
+ [9.74164, 47.55499],
+ [9.7471, 47.55569],
+ [9.74337, 47.55867],
+ [9.75207, 47.56747],
+ [9.74806, 47.57052],
+ [9.75632, 47.57262],
+ [9.75633, 47.57963],
+ [9.76197, 47.58096],
+ [9.76553, 47.58912],
+ [9.76933, 47.58739],
+ [9.77697, 47.59544],
+ [9.79151, 47.59352],
+ [9.79999, 47.59611],
+ [9.81414, 47.58807],
+ [9.82381, 47.5871],
+ [9.82728, 47.57997],
+ [9.82079, 47.57076],
+ [9.82562, 47.55922],
+ [9.8171, 47.55333],
+ [9.81579, 47.54767],
+ [9.85023, 47.54164],
+ [9.85839, 47.53388],
+ [9.87451, 47.52854],
+ [9.87804, 47.53876],
+ [9.87515, 47.54343],
+ [9.88125, 47.54814],
+ [9.8891, 47.54399],
+ [9.89935, 47.54475],
+ [9.90666, 47.54217],
+ [9.91358, 47.53255],
+ [9.92189, 47.52964],
+ [9.93352, 47.53265],
+ [9.94108, 47.53822],
+ [9.9637, 47.53472],
+ [9.95883, 47.54313],
+ [9.96318, 47.54229],
+ [9.96805, 47.54631]
+ ]
+ ],
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAAD1BMVEUAAACEAgT8AgQEAgSEgoTQjzHEAAAAAXRSTlMAQObYZgAAAHJJREFUeF6ljVEKgzAQRCftBUQv0KwXML7cwPvfqQwJtIVqi76fHR7DrKSUJY1DD84xKEVuwcT40C1HC18bqQDTBKWosUZn+VvQ4UTjkoCYWd/Eco9ZLwEWggsNC9CPL3C0UauFz44wFh941Bw0tm1PPAGCUydahBcw6wAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "vogis.cnv.at-DOM",
+ "name": "VoGIS: DOM (Surface model)",
+ "type": "wms",
+ "template": "http://vogis.cnv.at/mapserver/mapserv?map=i_hoehen_und_gelaende_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=schummerung_50cm_surface&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "polygon": [
+ [
+ [9.96805, 47.54631],
+ [9.96809, 47.54627],
+ [9.97125, 47.54425],
+ [9.96484, 47.53803],
+ [9.9684, 47.52802],
+ [9.96526, 47.52089],
+ [9.99569, 47.50278],
+ [9.98736, 47.49847],
+ [10.00076, 47.48211],
+ [10.02301, 47.48411],
+ [10.03743, 47.48918],
+ [10.04477, 47.48762],
+ [10.05413, 47.47589],
+ [10.05347, 47.46686],
+ [10.06468, 47.46364],
+ [10.06999, 47.45595],
+ [10.08057, 47.45536],
+ [10.08857, 47.46029],
+ [10.09164, 47.45893],
+ [10.09385, 47.44046],
+ [10.10559, 47.42872],
+ [10.09374, 47.41688],
+ [10.07418, 47.41472],
+ [10.06914, 47.41018],
+ [10.08624, 47.39952],
+ [10.08284, 47.39381],
+ [10.09984, 47.35476],
+ [10.11934, 47.37561],
+ [10.14169, 47.36718],
+ [10.16587, 47.36887],
+ [10.16958, 47.3713],
+ [10.1694, 47.38583],
+ [10.1813, 47.38725],
+ [10.18185, 47.39243],
+ [10.19508, 47.38935],
+ [10.19988, 47.38334],
+ [10.21259, 47.38039],
+ [10.22705, 47.38889],
+ [10.23619, 47.38192],
+ [10.23168, 47.37897],
+ [10.23716, 47.37357],
+ [10.21699, 47.35436],
+ [10.2171, 47.34988],
+ [10.20424, 47.33675],
+ [10.20742, 47.33232],
+ [10.19951, 47.32646],
+ [10.21113, 47.31898],
+ [10.21597, 47.31106],
+ [10.21236, 47.31122],
+ [10.19913, 47.29754],
+ [10.18964, 47.29394],
+ [10.17961, 47.29603],
+ [10.17208, 47.27908],
+ [10.17404, 47.27025],
+ [10.17834, 47.27011],
+ [10.17449, 47.2637],
+ [10.21884, 47.25533],
+ [10.22343, 47.24983],
+ [10.21087, 47.2478],
+ [10.19776, 47.23666],
+ [10.20791, 47.2328],
+ [10.21428, 47.21684],
+ [10.21269, 47.20432],
+ [10.19963, 47.19539],
+ [10.19951, 47.18525],
+ [10.21151, 47.17124],
+ [10.2092, 47.16537],
+ [10.20851, 47.15948],
+ [10.21321, 47.1577],
+ [10.2222, 47.15323],
+ [10.22166, 47.14925],
+ [10.21481, 47.14352],
+ [10.20333, 47.14215],
+ [10.20887, 47.13164],
+ [10.18629, 47.12886],
+ [10.18652, 47.11946],
+ [10.17288, 47.12033],
+ [10.16299, 47.11361],
+ [10.15766, 47.11426],
+ [10.15442, 47.10578],
+ [10.13243, 47.08122],
+ [10.13459, 47.06392],
+ [10.15085, 47.06184],
+ [10.15693, 47.04883],
+ [10.14418, 47.03355],
+ [10.12326, 47.02209],
+ [10.13284, 47.01204],
+ [10.15447, 47.00545],
+ [10.15961, 46.99882],
+ [10.15442, 46.99299],
+ [10.16001, 46.984],
+ [10.14463, 46.98301],
+ [10.13492, 46.96584],
+ [10.13501, 46.95483],
+ [10.12684, 46.9435],
+ [10.09772, 46.92676],
+ [10.09954, 46.91712],
+ [10.10921, 46.90834],
+ [10.10908, 46.89431],
+ [10.12497, 46.88014],
+ [10.14147, 46.87468],
+ [10.13967, 46.86217],
+ [10.14506, 46.8511],
+ [10.13941, 46.84738],
+ [10.12309, 46.84848],
+ [10.11912, 46.84417],
+ [10.10518, 46.8409],
+ [10.09195, 46.85143],
+ [10.09265, 46.85818],
+ [10.08712, 46.86128],
+ [10.05488, 46.8617],
+ [10.0509, 46.86442],
+ [10.05192, 46.87405],
+ [10.03891, 46.88611],
+ [10.03221, 46.88802],
+ [10.01782, 46.90161],
+ [10.00494, 46.89889],
+ [9.98243, 46.9062],
+ [9.97793, 46.91603],
+ [9.96657, 46.91222],
+ [9.95907, 46.91602],
+ [9.94612, 46.91235],
+ [9.93758, 46.91324],
+ [9.92153, 46.91882],
+ [9.91231, 46.92606],
+ [9.90632, 46.9253],
+ [9.89449, 46.93164],
+ [9.87613, 46.93463],
+ [9.88071, 46.94011],
+ [9.87657, 46.94071],
+ [9.87488, 46.95039],
+ [9.87872, 46.95707],
+ [9.87073, 46.96321],
+ [9.88482, 46.98546],
+ [9.8923, 46.99036],
+ [9.88878, 47.00072],
+ [9.8707, 47.00965],
+ [9.87115, 47.01306],
+ [9.88035, 47.01722],
+ [9.87779, 47.02055],
+ [9.85974, 47.02321],
+ [9.85273, 47.01641],
+ [9.83612, 47.01253],
+ [9.82353, 47.01986],
+ [9.80756, 47.02356],
+ [9.78491, 47.03849],
+ [9.74808, 47.03692],
+ [9.74185, 47.04268],
+ [9.71821, 47.04337],
+ [9.70701, 47.04805],
+ [9.7076, 47.05381],
+ [9.69756, 47.05239],
+ [9.68392, 47.05765],
+ [9.68184, 47.0621],
+ [9.67743, 47.06141],
+ [9.65821, 47.05818],
+ [9.64506, 47.05978],
+ [9.64158, 47.05598],
+ [9.63654, 47.0517],
+ [9.62633, 47.05133],
+ [9.60705, 47.06077],
+ [9.6134, 47.0695],
+ [9.61153, 47.0794],
+ [9.61869, 47.07817],
+ [9.62339, 47.08258],
+ [9.63346, 47.08344],
+ [9.63564, 47.09553],
+ [9.62858, 47.10756],
+ [9.62083, 47.11032],
+ [9.63503, 47.12813],
+ [9.62467, 47.13265],
+ [9.62258, 47.14135],
+ [9.62587, 47.1459],
+ [9.62059, 47.15164],
+ [9.6089, 47.14775],
+ [9.59679, 47.16294],
+ [9.57946, 47.17116],
+ [9.56456, 47.17029],
+ [9.57302, 47.1756],
+ [9.57259, 47.19079],
+ [9.58032, 47.19578],
+ [9.58477, 47.20532],
+ [9.5687, 47.21968],
+ [9.55851, 47.22416],
+ [9.55176, 47.22377],
+ [9.56679, 47.24288],
+ [9.53073, 47.27058],
+ [9.54619, 47.28005],
+ [9.55634, 47.29829],
+ [9.58805, 47.3173],
+ [9.59966, 47.3455],
+ [9.61073, 47.35571],
+ [9.62446, 47.36615],
+ [9.65876, 47.36946],
+ [9.67255, 47.38021],
+ [9.67311, 47.39194],
+ [9.65162, 47.40463],
+ [9.64551, 47.4312],
+ [9.64512, 47.4378],
+ [9.65799, 47.44779],
+ [9.65898, 47.4522],
+ [9.62234, 47.45747],
+ [9.60904, 47.47054],
+ [9.60292, 47.46198],
+ [9.59514, 47.46331],
+ [9.58217, 47.48276],
+ [9.5622, 47.49592],
+ [9.55057, 47.53718],
+ [9.5827, 47.53592],
+ [9.60465, 47.52952],
+ [9.73478, 47.53396],
+ [9.73517, 47.54661],
+ [9.74164, 47.55499],
+ [9.7471, 47.55569],
+ [9.74337, 47.55867],
+ [9.75207, 47.56747],
+ [9.74806, 47.57052],
+ [9.75632, 47.57262],
+ [9.75633, 47.57963],
+ [9.76197, 47.58096],
+ [9.76553, 47.58912],
+ [9.76933, 47.58739],
+ [9.77697, 47.59544],
+ [9.79151, 47.59352],
+ [9.79999, 47.59611],
+ [9.81414, 47.58807],
+ [9.82381, 47.5871],
+ [9.82728, 47.57997],
+ [9.82079, 47.57076],
+ [9.82562, 47.55922],
+ [9.8171, 47.55333],
+ [9.81579, 47.54767],
+ [9.85023, 47.54164],
+ [9.85839, 47.53388],
+ [9.87451, 47.52854],
+ [9.87804, 47.53876],
+ [9.87515, 47.54343],
+ [9.88125, 47.54814],
+ [9.8891, 47.54399],
+ [9.89935, 47.54475],
+ [9.90666, 47.54217],
+ [9.91358, 47.53255],
+ [9.92189, 47.52964],
+ [9.93352, 47.53265],
+ [9.94108, 47.53822],
+ [9.9637, 47.53472],
+ [9.95883, 47.54313],
+ [9.96318, 47.54229],
+ [9.96805, 47.54631]
+ ]
+ ],
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAAD1BMVEUAAACEAgT8AgQEAgSEgoTQjzHEAAAAAXRSTlMAQObYZgAAAHJJREFUeF6ljVEKgzAQRCftBUQv0KwXML7cwPvfqQwJtIVqi76fHR7DrKSUJY1DD84xKEVuwcT40C1HC18bqQDTBKWosUZn+VvQ4UTjkoCYWd/Eco9ZLwEWggsNC9CPL3C0UauFz44wFh941Bw0tm1PPAGCUydahBcw6wAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "vogis.cnv.at-ef2012_12cm",
+ "name": "VoGIS: Echtfarbenbild 2012 (12cm)",
+ "type": "wms",
+ "template": "http://vogis.cnv.at/mapserver/mapserv?map=i_luftbilder_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ef2012_12cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2012-01-01T00:00:00.000Z",
+ "startDate": "2012-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [9.54367, 47.48479],
+ [9.61451, 47.45058],
+ [9.61359, 47.38272],
+ [9.44246, 47.24798],
+ [9.44614, 47.096],
+ [9.42866, 47.08911],
+ [9.42498, 47.01513],
+ [9.85281, 47.00196],
+ [9.85741, 46.89896],
+ [9.9669, 46.88952],
+ [10.04511, 46.8499],
+ [10.15828, 46.83353],
+ [10.1592, 46.89204],
+ [10.14718, 46.89248],
+ [10.15115, 46.94331],
+ [10.16317, 46.94287],
+ [10.1647, 46.96238],
+ [10.17852, 46.96681],
+ [10.17576, 47.10351],
+ [10.22912, 47.10226],
+ [10.22084, 47.24361],
+ [10.26133, 47.41261],
+ [10.12423, 47.40576],
+ [10.09387, 47.47795],
+ [10.00462, 47.50717],
+ [9.98622, 47.56121],
+ [9.84361, 47.56245],
+ [9.84085, 47.60714],
+ [9.53999, 47.60652],
+ [9.54367, 47.48479]
+ ]
+ ],
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAAD1BMVEUAAACEAgT8AgQEAgSEgoTQjzHEAAAAAXRSTlMAQObYZgAAAHJJREFUeF6ljVEKgzAQRCftBUQv0KwXML7cwPvfqQwJtIVqi76fHR7DrKSUJY1DD84xKEVuwcT40C1HC18bqQDTBKWosUZn+VvQ4UTjkoCYWd/Eco9ZLwEWggsNC9CPL3C0UauFz44wFh941Bw0tm1PPAGCUydahBcw6wAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "vogis.cnv.at-ef2015_10cm",
+ "name": "VoGIS: Echtfarbenbild 2015 (10cm)",
+ "type": "wms",
+ "template": "http://vogis.cnv.at/mapserver/mapserv?map=i_luftbilder_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ef2015_10cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2015-01-01T00:00:00.000Z",
+ "startDate": "2015-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [9.54367, 47.48479],
+ [9.61451, 47.45058],
+ [9.61359, 47.38272],
+ [9.44246, 47.24798],
+ [9.44614, 47.096],
+ [9.42866, 47.08911],
+ [9.42498, 47.01513],
+ [9.85281, 47.00196],
+ [9.85741, 46.89896],
+ [9.9669, 46.88952],
+ [10.04511, 46.8499],
+ [10.15828, 46.83353],
+ [10.1592, 46.89204],
+ [10.14718, 46.89248],
+ [10.15115, 46.94331],
+ [10.16317, 46.94287],
+ [10.1647, 46.96238],
+ [10.17852, 46.96681],
+ [10.17576, 47.10351],
+ [10.22912, 47.10226],
+ [10.22084, 47.24361],
+ [10.26133, 47.41261],
+ [10.12423, 47.40576],
+ [10.09387, 47.47795],
+ [10.00462, 47.50717],
+ [9.98622, 47.56121],
+ [9.84361, 47.56245],
+ [9.84085, 47.60714],
+ [9.53999, 47.60652],
+ [9.54367, 47.48479]
+ ]
+ ],
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAAD1BMVEUAAACEAgT8AgQEAgSEgoTQjzHEAAAAAXRSTlMAQObYZgAAAHJJREFUeF6ljVEKgzAQRCftBUQv0KwXML7cwPvfqQwJtIVqi76fHR7DrKSUJY1DD84xKEVuwcT40C1HC18bqQDTBKWosUZn+VvQ4UTjkoCYWd/Eco9ZLwEWggsNC9CPL3C0UauFz44wFh941Bw0tm1PPAGCUydahBcw6wAAAABJRU5ErkJggg=="
+ },
+ {
+ "id": "vogis.cnv.at-wi2015_20cm",
+ "name": "VoGIS: Echtfarbenbild Winter 2015 (20cm)",
+ "type": "wms",
+ "template": "http://vogis.cnv.at/mapserver/mapserv?map=i_luftbilder_r_wms.map&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=wi2015_20cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}",
+ "projection": "EPSG:3857",
+ "endDate": "2015-01-01T00:00:00.000Z",
+ "startDate": "2015-01-01T00:00:00.000Z",
+ "polygon": [
+ [
+ [10.17039, 46.82979],
+ [10.17108, 46.93644],
+ [10.18413, 46.94113],
+ [10.1855, 47.10157],
+ [10.23906, 47.10437],
+ [10.24283, 47.15611],
+ [10.25691, 47.18704],
+ [10.24558, 47.27597],
+ [10.25313, 47.32347],
+ [10.26893, 47.32626],
+ [10.26446, 47.41102],
+ [10.13194, 47.4087],
+ [10.13434, 47.46107],
+ [10.11752, 47.46153],
+ [10.11889, 47.47337],
+ [10.08731, 47.47429],
+ [10.08491, 47.50724],
+ [10.06843, 47.507],
+ [10.0674, 47.5215],
+ [10.02345, 47.52428],
+ [10.00079, 47.57943],
+ [9.84904, 47.57757],
+ [9.85042, 47.61462],
+ [9.72751, 47.61277],
+ [9.7203, 47.59089],
+ [9.70347, 47.58915],
+ [9.70313, 47.54491],
+ [9.68219, 47.54491],
+ [9.68047, 47.55348],
+ [9.56391, 47.54931],
+ [9.56202, 47.53958],
+ [9.55172, 47.53958],
+ [9.55172, 47.53402],
+ [9.52168, 47.53471],
+ [9.52701, 47.30497],
+ [9.50503, 47.30264],
+ [9.50091, 47.23368],
+ [9.52357, 47.23228],
+ [9.52426, 47.16557],
+ [9.54486, 47.16405],
+ [9.54383, 47.15448],
+ [9.57232, 47.15401],
+ [9.57026, 47.12809],
+ [9.59018, 47.12867],
+ [9.59189, 47.10029],
+ [9.57232, 47.10017],
+ [9.57713, 47.02861],
+ [9.72407, 47.03048],
+ [9.72304, 47.01749],
+ [9.77454, 47.01562],
+ [9.77626, 47.00555],
+ [9.79274, 47.00391],
+ [9.7948, 46.99127],
+ [9.83874, 46.99314],
+ [9.84012, 46.90349],
+ [9.89024, 46.90725],
+ [9.88543, 46.88707],
+ [9.95925, 46.89141],
+ [9.962, 46.87675],
+ [10.0001, 46.87862],
+ [9.99667, 46.85715],
+ [10.01864, 46.85656],
+ [10.02345, 46.83073],
+ [10.17039, 46.82979]
+ ]
+ ],
+ "icon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAAD1BMVEUAAACEAgT8AgQEAgSEgoTQjzHEAAAAAXRSTlMAQObYZgAAAHJJREFUeF6ljVEKgzAQRCftBUQv0KwXML7cwPvfqQwJtIVqi76fHR7DrKSUJY1DD84xKEVuwcT40C1HC18bqQDTBKWosUZn+VvQ4UTjkoCYWd/Eco9ZLwEWggsNC9CPL3C0UauFz44wFh941Bw0tm1PPAGCUydahBcw6wAAAABJRU5ErkJggg=="
+ }
+ ]
}
\ No newline at end of file
diff --git a/data/imperial.json b/data/imperial.json
index c39cbb93e..734023dfa 100644
--- a/data/imperial.json
+++ b/data/imperial.json
@@ -8,994 +8,310 @@
"type": "Polygon",
"coordinates": [
[
- [
- 1.97754,
- 51.13111
- ],
- [
- 1.8457,
- 63.45051
- ],
- [
- -10.45898,
- 57.01681
- ],
- [
- -6.82251,
- 55.26503
- ],
- [
- -7.25583,
- 55.06525
- ],
- [
- -7.26546,
- 55.0665
- ],
- [
- -7.26992,
- 55.06419
- ],
- [
- -7.2725,
- 55.06346
- ],
- [
- -7.27818,
- 55.05362
- ],
- [
- -7.2893,
- 55.04735
- ],
- [
- -7.29939,
- 55.0561
- ],
- [
- -7.31835,
- 55.04475
- ],
- [
- -7.3447,
- 55.05079
- ],
- [
- -7.38831,
- 55.02389
- ],
- [
- -7.40547,
- 55.00292
- ],
- [
- -7.39157,
- 54.99507
- ],
- [
- -7.40075,
- 54.98892
- ],
- [
- -7.40706,
- 54.98291
- ],
- [
- -7.40363,
- 54.97963
- ],
- [
- -7.40633,
- 54.97813
- ],
- [
- -7.39835,
- 54.97013
- ],
- [
- -7.40745,
- 54.96357
- ],
- [
- -7.40178,
- 54.95961
- ],
- [
- -7.40727,
- 54.95515
- ],
- [
- -7.3944,
- 54.94376
- ],
- [
- -7.44444,
- 54.93858
- ],
- [
- -7.45216,
- 54.89793
- ],
- [
- -7.44204,
- 54.87532
- ],
- [
- -7.4713,
- 54.83431
- ],
- [
- -7.48092,
- 54.83093
- ],
- [
- -7.49216,
- 54.82185
- ],
- [
- -7.55121,
- 54.79054
- ],
- [
- -7.5443,
- 54.78609
- ],
- [
- -7.54958,
- 54.75653
- ],
- [
- -7.5349,
- 54.74917
- ],
- [
- -7.54881,
- 54.74068
- ],
- [
- -7.55941,
- 54.74556
- ],
- [
- -7.57894,
- 54.74221
- ],
- [
- -7.57507,
- 54.7494
- ],
- [
- -7.58606,
- 54.75039
- ],
- [
- -7.58872,
- 54.74377
- ],
- [
- -7.60031,
- 54.74603
- ],
- [
- -7.60632,
- 54.74405
- ],
- [
- -7.61662,
- 54.74459
- ],
- [
- -7.63593,
- 54.75108
- ],
- [
- -7.68854,
- 54.72968
- ],
- [
- -7.72064,
- 54.72155
- ],
- [
- -7.75094,
- 54.70469
- ],
- [
- -7.79094,
- 54.71942
- ],
- [
- -7.8051,
- 54.71932
- ],
- [
- -7.83497,
- 54.73632
- ],
- [
- -7.85419,
- 54.72745
- ],
- [
- -7.91496,
- 54.67582
- ],
- [
- -7.90174,
- 54.66182
- ],
- [
- -7.83832,
- 54.63401
- ],
- [
- -7.7433,
- 54.6188
- ],
- [
- -7.70863,
- 54.63485
- ],
- [
- -7.70682,
- 54.6189
- ],
- [
- -7.69386,
- 54.6188
- ],
- [
- -7.69631,
- 54.61125
- ],
- [
- -7.75845,
- 54.59509
- ],
- [
- -7.78708,
- 54.58
- ],
- [
- -7.79446,
- 54.58141
- ],
- [
- -7.79969,
- 54.57704
- ],
- [
- -7.79673,
- 54.56915
- ],
- [
- -7.8184,
- 54.56315
- ],
- [
- -7.83334,
- 54.55227
- ],
- [
- -7.82737,
- 54.54299
- ],
- [
- -7.85007,
- 54.53363
- ],
- [
- -7.90741,
- 54.53722
- ],
- [
- -7.93213,
- 54.53388
- ],
- [
- -8.00487,
- 54.54568
- ],
- [
- -8.03727,
- 54.51162
- ],
- [
- -8.04285,
- 54.48759
- ],
- [
- -8.08027,
- 54.48829
- ],
- [
- -8.09988,
- 54.48395
- ],
- [
- -8.09126,
- 54.4765
- ],
- [
- -8.111,
- 54.47807
- ],
- [
- -8.11512,
- 54.46904
- ],
- [
- -8.16542,
- 54.46914
- ],
- [
- -8.1776,
- 54.46485
- ],
- [
- -8.14293,
- 54.45003
- ],
- [
- -8.16284,
- 54.4413
- ],
- [
- -8.08731,
- 54.4002
- ],
- [
- -8.06062,
- 54.37051
- ],
- [
- -8.03289,
- 54.35711
- ],
- [
- -8.00054,
- 54.34835
- ],
- [
- -7.93333,
- 54.30561
- ],
- [
- -7.85849,
- 54.29151
- ],
- [
- -7.87067,
- 54.28794
- ],
- [
- -7.87265,
- 54.26648
- ],
- [
- -7.86123,
- 54.25931
- ],
- [
- -7.85917,
- 54.21256
- ],
- [
- -7.71043,
- 54.20307
- ],
- [
- -7.70193,
- 54.20776
- ],
- [
- -7.68828,
- 54.202
- ],
- [
- -7.67644,
- 54.18906
- ],
- [
- -7.66082,
- 54.1871
- ],
- [
- -7.62554,
- 54.16545
- ],
- [
- -7.62541,
- 54.15319
- ],
- [
- -7.61026,
- 54.14353
- ],
- [
- -7.57421,
- 54.14142
- ],
- [
- -7.57181,
- 54.13287
- ],
- [
- -7.56228,
- 54.12704
- ],
- [
- -7.51379,
- 54.12998
- ],
- [
- -7.47944,
- 54.122
- ],
- [
- -7.47169,
- 54.12665
- ],
- [
- -7.47075,
- 54.13318
- ],
- [
- -7.44684,
- 54.15168
- ],
- [
- -7.40792,
- 54.156
- ],
- [
- -7.42579,
- 54.14092
- ],
- [
- -7.41903,
- 54.13629
- ],
- [
- -7.3744,
- 54.14172
- ],
- [
- -7.37234,
- 54.13881
- ],
- [
- -7.39509,
- 54.12624
- ],
- [
- -7.39182,
- 54.12017
- ],
- [
- -7.36341,
- 54.13157
- ],
- [
- -7.34518,
- 54.11577
- ],
- [
- -7.32471,
- 54.12123
- ],
- [
- -7.32003,
- 54.11379
- ],
- [
- -7.3078,
- 54.11718
- ],
- [
- -7.30548,
- 54.12347
- ],
- [
- -7.31591,
- 54.12697
- ],
- [
- -7.31213,
- 54.13162
- ],
- [
- -7.3187,
- 54.13411
- ],
- [
- -7.31857,
- 54.13745
- ],
- [
- -7.32222,
- 54.13836
- ],
- [
- -7.32737,
- 54.13544
- ],
- [
- -7.3399,
- 54.14585
- ],
- [
- -7.30827,
- 54.16716
- ],
- [
- -7.30024,
- 54.16625
- ],
- [
- -7.29029,
- 54.1715
- ],
- [
- -7.28158,
- 54.16839
- ],
- [
- -7.2863,
- 54.14919
- ],
- [
- -7.29874,
- 54.14904
- ],
- [
- -7.30162,
- 54.14411
- ],
- [
- -7.28411,
- 54.13971
- ],
- [
- -7.29192,
- 54.13071
- ],
- [
- -7.29737,
- 54.133
- ],
- [
- -7.30883,
- 54.13242
- ],
- [
- -7.30333,
- 54.12251
- ],
- [
- -7.29218,
- 54.11929
- ],
- [
- -7.27844,
- 54.12282
- ],
- [
- -7.27707,
- 54.12986
- ],
- [
- -7.26613,
- 54.13624
- ],
- [
- -7.2566,
- 54.16354
- ],
- [
- -7.24015,
- 54.17125
- ],
- [
- -7.2575,
- 54.17678
- ],
- [
- -7.2581,
- 54.19257
- ],
- [
- -7.25179,
- 54.19403
- ],
- [
- -7.23608,
- 54.1935
- ],
- [
- -7.23338,
- 54.19792
- ],
- [
- -7.24317,
- 54.20076
- ],
- [
- -7.24892,
- 54.1977
- ],
- [
- -7.25183,
- 54.20201
- ],
- [
- -7.24119,
- 54.20623
- ],
- [
- -7.23094,
- 54.20578
- ],
- [
- -7.23269,
- 54.20912
- ],
- [
- -7.22188,
- 54.21607
- ],
- [
- -7.20643,
- 54.2117
- ],
- [
- -7.18506,
- 54.22485
- ],
- [
- -7.17055,
- 54.21742
- ],
- [
- -7.14721,
- 54.22488
- ],
- [
- -7.14633,
- 54.23008
- ],
- [
- -7.15051,
- 54.23165
- ],
- [
- -7.14613,
- 54.23983
- ],
- [
- -7.15802,
- 54.24434
- ],
- [
- -7.13985,
- 54.25298
- ],
- [
- -7.15255,
- 54.26235
- ],
- [
- -7.16064,
- 54.27405
- ],
- [
- -7.17991,
- 54.27144
- ],
- [
- -7.17201,
- 54.28627
- ],
- [
- -7.21252,
- 54.2985
- ],
- [
- -7.19888,
- 54.31117
- ],
- [
- -7.17918,
- 54.30946
- ],
- [
- -7.1812,
- 54.3397
- ],
- [
- -7.15339,
- 54.33514
- ],
- [
- -7.10253,
- 54.35811
- ],
- [
- -7.10811,
- 54.36677
- ],
- [
- -7.06927,
- 54.3899
- ],
- [
- -7.05593,
- 54.41056
- ],
- [
- -7.02898,
- 54.42135
- ],
- [
- -7.00198,
- 54.40832
- ],
- [
- -6.98683,
- 54.40829
- ],
- [
- -6.97562,
- 54.40014
- ],
- [
- -6.96774,
- 54.40145
- ],
- [
- -6.90682,
- 54.36966
- ],
- [
- -6.89772,
- 54.35075
- ],
- [
- -6.87527,
- 54.33853
- ],
- [
- -6.86512,
- 54.32568
- ],
- [
- -6.85163,
- 54.29137
- ],
- [
- -6.87452,
- 54.28677
- ],
- [
- -6.87791,
- 54.27918
- ],
- [
- -6.86673,
- 54.27522
- ],
- [
- -6.85177,
- 54.26489
- ],
- [
- -6.83693,
- 54.26658
- ],
- [
- -6.82165,
- 54.24346
- ],
- [
- -6.81633,
- 54.22299
- ],
- [
- -6.80045,
- 54.22108
- ],
- [
- -6.80122,
- 54.21338
- ],
- [
- -6.77599,
- 54.19965
- ],
- [
- -6.75573,
- 54.1987
- ],
- [
- -6.74316,
- 54.18258
- ],
- [
- -6.73406,
- 54.18566
- ],
- [
- -6.72445,
- 54.18127
- ],
- [
- -6.70295,
- 54.20036
- ],
- [
- -6.69166,
- 54.20018
- ],
- [
- -6.68673,
- 54.19398
- ],
- [
- -6.669,
- 54.19584
- ],
- [
- -6.65248,
- 54.18102
- ],
- [
- -6.6433,
- 54.17801
- ],
- [
- -6.63467,
- 54.16449
- ],
- [
- -6.63179,
- 54.14766
- ],
- [
- -6.64081,
- 54.14238
- ],
- [
- -6.63935,
- 54.13599
- ],
- [
- -6.66149,
- 54.1205
- ],
- [
- -6.6481,
- 54.10153
- ],
- [
- -6.66119,
- 54.0934
- ],
- [
- -6.66458,
- 54.06629
- ],
- [
- -6.64681,
- 54.05873
- ],
- [
- -6.62501,
- 54.03737
- ],
- [
- -6.59291,
- 54.04755
- ],
- [
- -6.58905,
- 54.05808
- ],
- [
- -6.5597,
- 54.0481
- ],
- [
- -6.52897,
- 54.05888
- ],
- [
- -6.50442,
- 54.05566
- ],
- [
- -6.47824,
- 54.07004
- ],
- [
- -6.47919,
- 54.07762
- ],
- [
- -6.43601,
- 54.05959
- ],
- [
- -6.36314,
- 54.07057
- ],
- [
- -6.36589,
- 54.09338
- ],
- [
- -6.36293,
- 54.09758
- ],
- [
- -6.37104,
- 54.11497
- ],
- [
- -6.3522,
- 54.11084
- ],
- [
- -6.34242,
- 54.1114
- ],
- [
- -6.33589,
- 54.10833
- ],
- [
- -6.33636,
- 54.09469
- ],
- [
- -6.31808,
- 54.09096
- ],
- [
- -6.30903,
- 54.10463
- ],
- [
- -6.29165,
- 54.11235
- ],
- [
- -6.28246,
- 54.11145
- ],
- [
- -6.26272,
- 54.09786
- ],
- [
- -5.35583,
- 53.72597
- ],
- [
- -7.0752,
- 49.23912
- ],
- [
- -1.83472,
- 49.02346
- ],
- [
- -2.12036,
- 49.94415
- ],
- [
- 1.97754,
- 51.13111
- ]
+ [1.97754, 51.13111],
+ [1.8457, 63.45051],
+ [-10.45898, 57.01681],
+ [-6.82251, 55.26503],
+ [-7.25583, 55.06525],
+ [-7.26546, 55.0665],
+ [-7.26992, 55.06419],
+ [-7.2725, 55.06346],
+ [-7.27818, 55.05362],
+ [-7.2893, 55.04735],
+ [-7.29939, 55.0561],
+ [-7.31835, 55.04475],
+ [-7.3447, 55.05079],
+ [-7.38831, 55.02389],
+ [-7.40547, 55.00292],
+ [-7.39157, 54.99507],
+ [-7.40075, 54.98892],
+ [-7.40706, 54.98291],
+ [-7.40363, 54.97963],
+ [-7.40633, 54.97813],
+ [-7.39835, 54.97013],
+ [-7.40745, 54.96357],
+ [-7.40178, 54.95961],
+ [-7.40727, 54.95515],
+ [-7.3944, 54.94376],
+ [-7.44444, 54.93858],
+ [-7.45216, 54.89793],
+ [-7.44204, 54.87532],
+ [-7.4713, 54.83431],
+ [-7.48092, 54.83093],
+ [-7.49216, 54.82185],
+ [-7.55121, 54.79054],
+ [-7.5443, 54.78609],
+ [-7.54958, 54.75653],
+ [-7.5349, 54.74917],
+ [-7.54881, 54.74068],
+ [-7.55941, 54.74556],
+ [-7.57894, 54.74221],
+ [-7.57507, 54.7494],
+ [-7.58606, 54.75039],
+ [-7.58872, 54.74377],
+ [-7.60031, 54.74603],
+ [-7.60632, 54.74405],
+ [-7.61662, 54.74459],
+ [-7.63593, 54.75108],
+ [-7.68854, 54.72968],
+ [-7.72064, 54.72155],
+ [-7.75094, 54.70469],
+ [-7.79094, 54.71942],
+ [-7.8051, 54.71932],
+ [-7.83497, 54.73632],
+ [-7.85419, 54.72745],
+ [-7.91496, 54.67582],
+ [-7.90174, 54.66182],
+ [-7.83832, 54.63401],
+ [-7.7433, 54.6188],
+ [-7.70863, 54.63485],
+ [-7.70682, 54.6189],
+ [-7.69386, 54.6188],
+ [-7.69631, 54.61125],
+ [-7.75845, 54.59509],
+ [-7.78708, 54.58],
+ [-7.79446, 54.58141],
+ [-7.79969, 54.57704],
+ [-7.79673, 54.56915],
+ [-7.8184, 54.56315],
+ [-7.83334, 54.55227],
+ [-7.82737, 54.54299],
+ [-7.85007, 54.53363],
+ [-7.90741, 54.53722],
+ [-7.93213, 54.53388],
+ [-8.00487, 54.54568],
+ [-8.03727, 54.51162],
+ [-8.04285, 54.48759],
+ [-8.08027, 54.48829],
+ [-8.09988, 54.48395],
+ [-8.09126, 54.4765],
+ [-8.111, 54.47807],
+ [-8.11512, 54.46904],
+ [-8.16542, 54.46914],
+ [-8.1776, 54.46485],
+ [-8.14293, 54.45003],
+ [-8.16284, 54.4413],
+ [-8.08731, 54.4002],
+ [-8.06062, 54.37051],
+ [-8.03289, 54.35711],
+ [-8.00054, 54.34835],
+ [-7.93333, 54.30561],
+ [-7.85849, 54.29151],
+ [-7.87067, 54.28794],
+ [-7.87265, 54.26648],
+ [-7.86123, 54.25931],
+ [-7.85917, 54.21256],
+ [-7.71043, 54.20307],
+ [-7.70193, 54.20776],
+ [-7.68828, 54.202],
+ [-7.67644, 54.18906],
+ [-7.66082, 54.1871],
+ [-7.62554, 54.16545],
+ [-7.62541, 54.15319],
+ [-7.61026, 54.14353],
+ [-7.57421, 54.14142],
+ [-7.57181, 54.13287],
+ [-7.56228, 54.12704],
+ [-7.51379, 54.12998],
+ [-7.47944, 54.122],
+ [-7.47169, 54.12665],
+ [-7.47075, 54.13318],
+ [-7.44684, 54.15168],
+ [-7.40792, 54.156],
+ [-7.42579, 54.14092],
+ [-7.41903, 54.13629],
+ [-7.3744, 54.14172],
+ [-7.37234, 54.13881],
+ [-7.39509, 54.12624],
+ [-7.39182, 54.12017],
+ [-7.36341, 54.13157],
+ [-7.34518, 54.11577],
+ [-7.32471, 54.12123],
+ [-7.32003, 54.11379],
+ [-7.3078, 54.11718],
+ [-7.30548, 54.12347],
+ [-7.31591, 54.12697],
+ [-7.31213, 54.13162],
+ [-7.3187, 54.13411],
+ [-7.31857, 54.13745],
+ [-7.32222, 54.13836],
+ [-7.32737, 54.13544],
+ [-7.3399, 54.14585],
+ [-7.30827, 54.16716],
+ [-7.30024, 54.16625],
+ [-7.29029, 54.1715],
+ [-7.28158, 54.16839],
+ [-7.2863, 54.14919],
+ [-7.29874, 54.14904],
+ [-7.30162, 54.14411],
+ [-7.28411, 54.13971],
+ [-7.29192, 54.13071],
+ [-7.29737, 54.133],
+ [-7.30883, 54.13242],
+ [-7.30333, 54.12251],
+ [-7.29218, 54.11929],
+ [-7.27844, 54.12282],
+ [-7.27707, 54.12986],
+ [-7.26613, 54.13624],
+ [-7.2566, 54.16354],
+ [-7.24015, 54.17125],
+ [-7.2575, 54.17678],
+ [-7.2581, 54.19257],
+ [-7.25179, 54.19403],
+ [-7.23608, 54.1935],
+ [-7.23338, 54.19792],
+ [-7.24317, 54.20076],
+ [-7.24892, 54.1977],
+ [-7.25183, 54.20201],
+ [-7.24119, 54.20623],
+ [-7.23094, 54.20578],
+ [-7.23269, 54.20912],
+ [-7.22188, 54.21607],
+ [-7.20643, 54.2117],
+ [-7.18506, 54.22485],
+ [-7.17055, 54.21742],
+ [-7.14721, 54.22488],
+ [-7.14633, 54.23008],
+ [-7.15051, 54.23165],
+ [-7.14613, 54.23983],
+ [-7.15802, 54.24434],
+ [-7.13985, 54.25298],
+ [-7.15255, 54.26235],
+ [-7.16064, 54.27405],
+ [-7.17991, 54.27144],
+ [-7.17201, 54.28627],
+ [-7.21252, 54.2985],
+ [-7.19888, 54.31117],
+ [-7.17918, 54.30946],
+ [-7.1812, 54.3397],
+ [-7.15339, 54.33514],
+ [-7.10253, 54.35811],
+ [-7.10811, 54.36677],
+ [-7.06927, 54.3899],
+ [-7.05593, 54.41056],
+ [-7.02898, 54.42135],
+ [-7.00198, 54.40832],
+ [-6.98683, 54.40829],
+ [-6.97562, 54.40014],
+ [-6.96774, 54.40145],
+ [-6.90682, 54.36966],
+ [-6.89772, 54.35075],
+ [-6.87527, 54.33853],
+ [-6.86512, 54.32568],
+ [-6.85163, 54.29137],
+ [-6.87452, 54.28677],
+ [-6.87791, 54.27918],
+ [-6.86673, 54.27522],
+ [-6.85177, 54.26489],
+ [-6.83693, 54.26658],
+ [-6.82165, 54.24346],
+ [-6.81633, 54.22299],
+ [-6.80045, 54.22108],
+ [-6.80122, 54.21338],
+ [-6.77599, 54.19965],
+ [-6.75573, 54.1987],
+ [-6.74316, 54.18258],
+ [-6.73406, 54.18566],
+ [-6.72445, 54.18127],
+ [-6.70295, 54.20036],
+ [-6.69166, 54.20018],
+ [-6.68673, 54.19398],
+ [-6.669, 54.19584],
+ [-6.65248, 54.18102],
+ [-6.6433, 54.17801],
+ [-6.63467, 54.16449],
+ [-6.63179, 54.14766],
+ [-6.64081, 54.14238],
+ [-6.63935, 54.13599],
+ [-6.66149, 54.1205],
+ [-6.6481, 54.10153],
+ [-6.66119, 54.0934],
+ [-6.66458, 54.06629],
+ [-6.64681, 54.05873],
+ [-6.62501, 54.03737],
+ [-6.59291, 54.04755],
+ [-6.58905, 54.05808],
+ [-6.5597, 54.0481],
+ [-6.52897, 54.05888],
+ [-6.50442, 54.05566],
+ [-6.47824, 54.07004],
+ [-6.47919, 54.07762],
+ [-6.43601, 54.05959],
+ [-6.36314, 54.07057],
+ [-6.36589, 54.09338],
+ [-6.36293, 54.09758],
+ [-6.37104, 54.11497],
+ [-6.3522, 54.11084],
+ [-6.34242, 54.1114],
+ [-6.33589, 54.10833],
+ [-6.33636, 54.09469],
+ [-6.31808, 54.09096],
+ [-6.30903, 54.10463],
+ [-6.29165, 54.11235],
+ [-6.28246, 54.11145],
+ [-6.26272, 54.09786],
+ [-5.35583, 53.72597],
+ [-7.0752, 49.23912],
+ [-1.83472, 49.02346],
+ [-2.12036, 49.94415],
+ [1.97754, 51.13111]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [[-65.2, 18.7], [-65, 16.3], [-63.7, 19.2], [-65.2, 18.7]]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[-63, -50.5], [-55, -51], [-60, -54], [-63, -50.5]]]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-139.19952, 60.08402],
+ [-141, 60.30621],
+ [-141, 76],
+ [-169, 68.63655],
+ [-169, 65.20147],
+ [-180, 61],
+ [-180, -4],
+ [-154, 9],
+ [-133.76404, 54.54021],
+ [-130.73868, 54.71986],
+ [-129.96277, 55.29163],
+ [-130.15228, 55.7758],
+ [-130.01787, 55.90688],
+ [-130.00362, 56.00798],
+ [-130.10284, 56.12336],
+ [-130.24498, 56.09656],
+ [-130.42625, 56.14249],
+ [-131.87439, 56.79787],
+ [-135.02884, 59.56285],
+ [-135.11759, 59.62306],
+ [-135.15827, 59.6261],
+ [-135.47928, 59.79822],
+ [-136.28677, 59.57955],
+ [-136.30531, 59.46462],
+ [-136.36836, 59.44898],
+ [-136.47697, 59.46558],
+ [-137.19727, 59.01935],
+ [-139.19952, 60.08402]
]
]
}
@@ -1007,22 +323,367 @@
"type": "Polygon",
"coordinates": [
[
- [
- -65.2,
- 18.7
- ],
- [
- -65,
- 16.3
- ],
- [
- -63.7,
- 19.2
- ],
- [
- -65.2,
- 18.7
- ]
+ [-111.96064, 48.99841],
+ [-121.22623, 49.00049],
+ [-122.26513, 49.00246],
+ [-122.7565, 49.00208],
+ [-123.32218, 49.00218],
+ [-122.97821, 48.76524],
+ [-123.2666, 48.69821],
+ [-123.21991, 48.21186],
+ [-125.80444, 48.60749],
+ [-124.32129, 31.54109],
+ [-117.125, 32.53429],
+ [-116.82417, 32.55996],
+ [-115.88036, 32.63735],
+ [-115.49738, 32.66486],
+ [-114.71984, 32.71877],
+ [-114.7649, 32.64602],
+ [-114.80885, 32.60959],
+ [-114.81481, 32.49451],
+ [-112.81743, 31.88004],
+ [-111.07481, 31.33224],
+ [-109.56051, 31.33402],
+ [-108.20847, 31.33384],
+ [-108.20838, 31.78363],
+ [-106.52847, 31.78391],
+ [-106.52781, 31.78086],
+ [-106.52249, 31.77501],
+ [-106.51249, 31.76933],
+ [-106.50988, 31.7612],
+ [-106.50709, 31.76123],
+ [-106.48896, 31.74806],
+ [-106.48473, 31.74769],
+ [-106.4719, 31.75101],
+ [-106.46816, 31.75897],
+ [-106.45434, 31.76466],
+ [-106.45035, 31.76426],
+ [-106.43516, 31.75492],
+ [-106.41484, 31.75101],
+ [-106.37864, 31.73021],
+ [-106.37225, 31.71174],
+ [-106.34924, 31.69633],
+ [-106.33289, 31.66178],
+ [-106.3068, 31.62459],
+ [-106.28079, 31.56179],
+ [-106.24775, 31.54226],
+ [-106.2329, 31.49982],
+ [-106.2105, 31.46857],
+ [-106.08201, 31.39863],
+ [-106.00554, 31.39233],
+ [-105.76401, 31.17051],
+ [-105.58548, 31.06117],
+ [-105.56419, 30.98526],
+ [-104.99153, 30.6639],
+ [-104.97162, 30.60896],
+ [-104.90639, 30.57822],
+ [-104.83772, 30.38117],
+ [-104.70177, 30.20567],
+ [-104.68048, 29.92399],
+ [-104.57611, 29.77838],
+ [-104.51157, 29.63674],
+ [-104.39758, 29.57047],
+ [-104.39278, 29.55293],
+ [-104.05769, 29.32173],
+ [-103.79883, 29.2581],
+ [-103.78196, 29.26555],
+ [-103.76759, 29.22799],
+ [-103.14102, 28.93666],
+ [-102.86087, 29.2217],
+ [-102.65076, 29.79418],
+ [-101.41068, 29.73457],
+ [-101.26511, 29.51372],
+ [-101.05997, 29.452],
+ [-101.04083, 29.38038],
+ [-100.96303, 29.34735],
+ [-100.94406, 29.34369],
+ [-100.94071, 29.33351],
+ [-100.92775, 29.32663],
+ [-100.89814, 29.30957],
+ [-100.87818, 29.28086],
+ [-100.80076, 29.2238],
+ [-100.76437, 29.15981],
+ [-100.67047, 29.08663],
+ [-100.6412, 28.91299],
+ [-100.63236, 28.90255],
+ [-100.61296, 28.89939],
+ [-100.534, 28.75622],
+ [-100.51495, 28.74531],
+ [-100.50705, 28.7143],
+ [-100.51203, 28.70666],
+ [-100.51014, 28.69127],
+ [-100.50048, 28.66186],
+ [-100.45547, 28.6381],
+ [-100.44697, 28.60743],
+ [-100.35599, 28.45239],
+ [-100.34946, 28.39653],
+ [-100.29488, 28.31315],
+ [-100.29591, 28.27324],
+ [-100.17197, 28.17493],
+ [-99.93645, 27.9568],
+ [-99.87722, 27.80173],
+ [-99.79671, 27.73338],
+ [-99.772, 27.72532],
+ [-99.74556, 27.69979],
+ [-99.71947, 27.65981],
+ [-99.5957, 27.59974],
+ [-99.54094, 27.60537],
+ [-99.53055, 27.57973],
+ [-99.52034, 27.55782],
+ [-99.52802, 27.49773],
+ [-99.50141, 27.49986],
+ [-99.48755, 27.49518],
+ [-99.47897, 27.48421],
+ [-99.48661, 27.46453],
+ [-99.49534, 27.44861],
+ [-99.48927, 27.40941],
+ [-99.53957, 27.31565],
+ [-99.43588, 27.19678],
+ [-99.46404, 27.01968],
+ [-99.16698, 26.56039],
+ [-99.17474, 26.53939],
+ [-99.12698, 26.51958],
+ [-99.1135, 26.42954],
+ [-99.08355, 26.39625],
+ [-99.06007, 26.39737],
+ [-99.03634, 26.41255],
+ [-99.02042, 26.40598],
+ [-99.01291, 26.39364],
+ [-98.95686, 26.38641],
+ [-98.9566, 26.37365],
+ [-98.94523, 26.36949],
+ [-98.90013, 26.36419],
+ [-98.89905, 26.35454],
+ [-98.80305, 26.36626],
+ [-98.78254, 26.30511],
+ [-98.66667, 26.23457],
+ [-98.58496, 26.24647],
+ [-98.57951, 26.23434],
+ [-98.56519, 26.23987],
+ [-98.56294, 26.22464],
+ [-98.50599, 26.20858],
+ [-98.44806, 26.21236],
+ [-98.38617, 26.15721],
+ [-98.34176, 26.15278],
+ [-98.33579, 26.1388],
+ [-98.30626, 26.10003],
+ [-98.28841, 26.10512],
+ [-98.26524, 26.0914],
+ [-98.19898, 26.06411],
+ [-98.09577, 26.05698],
+ [-98.07568, 26.06667],
+ [-98.08302, 26.03396],
+ [-97.9771, 26.04136],
+ [-97.9532, 26.06179],
+ [-97.81643, 26.04475],
+ [-97.77017, 26.02439],
+ [-97.73884, 26.02902],
+ [-97.5289, 25.90648],
+ [-97.52151, 25.88625],
+ [-97.50615, 25.89031],
+ [-97.49851, 25.89903],
+ [-97.49637, 25.89641],
+ [-97.49748, 25.88008],
+ [-97.49422, 25.87981],
+ [-97.48847, 25.88564],
+ [-97.46409, 25.88174],
+ [-97.42607, 25.842],
+ [-97.36856, 25.8396],
+ [-97.26231, 25.94724],
+ [-80.81543, 24.00633],
+ [-66.87378, 44.77794],
+ [-67.16148, 45.16715],
+ [-67.2286, 45.16739],
+ [-67.26246, 45.18797],
+ [-67.28311, 45.19175],
+ [-67.28959, 45.18784],
+ [-67.29332, 45.17568],
+ [-67.29049, 45.17317],
+ [-67.3001, 45.16776],
+ [-67.3025, 45.16122],
+ [-67.29761, 45.14766],
+ [-67.33975, 45.1255],
+ [-67.40524, 45.16122],
+ [-67.40387, 45.17139],
+ [-67.4818, 45.27682],
+ [-67.42172, 45.38543],
+ [-67.45262, 45.41008],
+ [-67.50498, 45.4889],
+ [-67.41623, 45.50105],
+ [-67.42219, 45.55661],
+ [-67.42902, 45.56833],
+ [-67.42331, 45.57154],
+ [-67.42498, 45.57836],
+ [-67.45193, 45.60323],
+ [-67.77981, 45.6738],
+ [-67.79019, 47.06776],
+ [-67.88006, 47.1067],
+ [-67.91319, 47.14793],
+ [-67.92598, 47.15418],
+ [-67.95181, 47.1875],
+ [-68.02374, 47.23915],
+ [-68.13017, 47.29309],
+ [-68.17669, 47.32893],
+ [-68.24046, 47.35354],
+ [-68.32809, 47.36005],
+ [-68.36363, 47.35476],
+ [-68.38054, 47.34167],
+ [-68.38509, 47.30321],
+ [-68.37367, 47.28796],
+ [-68.4377, 47.28232],
+ [-68.47916, 47.29623],
+ [-68.51074, 47.29885],
+ [-68.54593, 47.28441],
+ [-68.58408, 47.28482],
+ [-68.59777, 47.27134],
+ [-68.59271, 47.25762],
+ [-68.61889, 47.24148],
+ [-68.68936, 47.24125],
+ [-68.71768, 47.23676],
+ [-68.80128, 47.21423],
+ [-68.89629, 47.17676],
+ [-69.05354, 47.24847],
+ [-69.04924, 47.41798],
+ [-69.22425, 47.45961],
+ [-69.99729, 46.69558],
+ [-70.0569, 46.4149],
+ [-70.25551, 46.10871],
+ [-70.29001, 46.09431],
+ [-70.39919, 45.80667],
+ [-70.83229, 45.40062],
+ [-70.80794, 45.37878],
+ [-70.82663, 45.2367],
+ [-70.87538, 45.23453],
+ [-70.92138, 45.28099],
+ [-70.90645, 45.30918],
+ [-71.0109, 45.34798],
+ [-71.08429, 45.30556],
+ [-71.1454, 45.24226],
+ [-71.20525, 45.25278],
+ [-71.28925, 45.30097],
+ [-71.41405, 45.23513],
+ [-71.43044, 45.12381],
+ [-71.49692, 45.06991],
+ [-71.50623, 45.04878],
+ [-71.49284, 45.03629],
+ [-71.50027, 45.01372],
+ [-71.79359, 45.01075],
+ [-72.08774, 45.00581],
+ [-72.14155, 45.00568],
+ [-72.15282, 45.00609],
+ [-72.17142, 45.00584],
+ [-72.25847, 45.00436],
+ [-72.38795, 45.00626],
+ [-72.4496, 45.00863],
+ [-72.5356, 45.00936],
+ [-72.66257, 45.01523],
+ [-72.82537, 45.01642],
+ [-73.08466, 45.01561],
+ [-73.45219, 45.00875],
+ [-74.14699, 44.99145],
+ [-74.33753, 44.9923],
+ [-74.50786, 44.99798],
+ [-74.66158, 44.99949],
+ [-74.71244, 44.99734],
+ [-74.75887, 44.98708],
+ [-74.76368, 45.00632],
+ [-74.78977, 45.00365],
+ [-74.82376, 45.01773],
+ [-74.94186, 44.98229],
+ [-75.30098, 44.83883],
+ [-75.30304, 44.82836],
+ [-75.59418, 44.6457],
+ [-75.97269, 44.33502],
+ [-75.97295, 44.34595],
+ [-76.00059, 44.34797],
+ [-76.17645, 44.2865],
+ [-76.18744, 44.22158],
+ [-76.88782, 43.82759],
+ [-79.16851, 43.32168],
+ [-79.05487, 43.25371],
+ [-79.05092, 43.169],
+ [-79.04603, 43.16093],
+ [-79.04208, 43.13942],
+ [-79.07002, 43.12038],
+ [-79.06015, 43.114],
+ [-79.0568, 43.10474],
+ [-79.0774, 43.07861],
+ [-78.9996, 43.05484],
+ [-79.02311, 43.02071],
+ [-79.02552, 42.99473],
+ [-78.96235, 42.9573],
+ [-78.91188, 42.9426],
+ [-78.90398, 42.89181],
+ [-82.42767, 41.47978],
+ [-83.14316, 42.03807],
+ [-83.12805, 42.23843],
+ [-83.09715, 42.29052],
+ [-83.07252, 42.31515],
+ [-82.94575, 42.34332],
+ [-82.59676, 42.5479],
+ [-82.51368, 42.61785],
+ [-82.5108, 42.66464],
+ [-82.4675, 42.76415],
+ [-82.48055, 42.80573],
+ [-82.45497, 42.9284],
+ [-82.41334, 42.97099],
+ [-82.42596, 42.99536],
+ [-82.15851, 43.39507],
+ [-83.53729, 46.098],
+ [-83.96301, 46.05036],
+ [-84.11021, 46.23851],
+ [-84.09794, 46.25656],
+ [-84.11613, 46.26878],
+ [-84.11905, 46.31516],
+ [-84.10721, 46.3218],
+ [-84.14394, 46.41076],
+ [-84.11682, 46.51576],
+ [-84.13536, 46.53218],
+ [-84.16162, 46.5284],
+ [-84.21621, 46.53891],
+ [-84.26994, 46.49189],
+ [-84.36092, 46.50997],
+ [-84.55284, 46.4407],
+ [-84.95178, 46.77185],
+ [-89.59179, 48.00307],
+ [-89.67547, 48.00371],
+ [-90.87204, 48.25943],
+ [-91.41312, 48.06753],
+ [-92.99377, 48.62474],
+ [-93.34877, 48.62604],
+ [-93.35529, 48.61124],
+ [-93.37074, 48.60584],
+ [-93.39812, 48.60369],
+ [-93.40542, 48.61089],
+ [-93.43846, 48.59478],
+ [-93.46859, 48.59205],
+ [-93.45735, 48.56667],
+ [-93.46533, 48.54593],
+ [-93.64763, 48.51751],
+ [-93.80625, 48.51888],
+ [-93.80642, 48.58047],
+ [-93.83328, 48.62582],
+ [-93.84865, 48.63064],
+ [-93.93388, 48.6326],
+ [-94.01327, 48.64471],
+ [-94.16176, 48.64697],
+ [-94.25025, 48.65463],
+ [-94.24931, 48.67827],
+ [-94.26046, 48.69816],
+ [-94.30578, 48.71073],
+ [-94.32758, 48.70433],
+ [-94.36123, 48.70478],
+ [-94.38406, 48.71135],
+ [-94.41629, 48.71067],
+ [-94.44294, 48.69266],
+ [-94.53615, 48.7024],
+ [-94.55031, 48.71419],
+ [-94.58894, 48.71928],
+ [-94.69425, 48.77938],
+ [-94.70129, 48.83376],
+ [-94.68996, 48.83953],
+ [-94.68395, 48.99914],
+ [-111.96064, 48.99841]
]
]
}
@@ -1032,26 +693,15 @@
"properties": {},
"geometry": {
"type": "Polygon",
- "coordinates": [
- [
- [
- -63,
- -50.5
- ],
- [
- -55,
- -51
- ],
- [
- -60,
- -54
- ],
- [
- -63,
- -50.5
- ]
- ]
- ]
+ "coordinates": [[[180, 55], [170, 53], [180, 49], [180, 55]]]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[143, 22], [147, 22], [147, 12], [143, 12], [143, 22]]]
}
},
{
@@ -1060,1662 +710,9 @@
"geometry": {
"type": "Polygon",
"coordinates": [
- [
- [
- -139.19952,
- 60.08402
- ],
- [
- -141,
- 60.30621
- ],
- [
- -141,
- 76
- ],
- [
- -169,
- 68.63655
- ],
- [
- -169,
- 65.20147
- ],
- [
- -180,
- 61
- ],
- [
- -180,
- -4
- ],
- [
- -154,
- 9
- ],
- [
- -133.76404,
- 54.54021
- ],
- [
- -130.73868,
- 54.71986
- ],
- [
- -129.96277,
- 55.29163
- ],
- [
- -130.15228,
- 55.7758
- ],
- [
- -130.01787,
- 55.90688
- ],
- [
- -130.00362,
- 56.00798
- ],
- [
- -130.10284,
- 56.12336
- ],
- [
- -130.24498,
- 56.09656
- ],
- [
- -130.42625,
- 56.14249
- ],
- [
- -131.87439,
- 56.79787
- ],
- [
- -135.02884,
- 59.56285
- ],
- [
- -135.11759,
- 59.62306
- ],
- [
- -135.15827,
- 59.6261
- ],
- [
- -135.47928,
- 59.79822
- ],
- [
- -136.28677,
- 59.57955
- ],
- [
- -136.30531,
- 59.46462
- ],
- [
- -136.36836,
- 59.44898
- ],
- [
- -136.47697,
- 59.46558
- ],
- [
- -137.19727,
- 59.01935
- ],
- [
- -139.19952,
- 60.08402
- ]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "properties": {},
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- -111.96064,
- 48.99841
- ],
- [
- -121.22623,
- 49.00049
- ],
- [
- -122.26513,
- 49.00246
- ],
- [
- -122.7565,
- 49.00208
- ],
- [
- -123.32218,
- 49.00218
- ],
- [
- -122.97821,
- 48.76524
- ],
- [
- -123.2666,
- 48.69821
- ],
- [
- -123.21991,
- 48.21186
- ],
- [
- -125.80444,
- 48.60749
- ],
- [
- -124.32129,
- 31.54109
- ],
- [
- -117.125,
- 32.53429
- ],
- [
- -116.82417,
- 32.55996
- ],
- [
- -115.88036,
- 32.63735
- ],
- [
- -115.49738,
- 32.66486
- ],
- [
- -114.71984,
- 32.71877
- ],
- [
- -114.7649,
- 32.64602
- ],
- [
- -114.80885,
- 32.60959
- ],
- [
- -114.81481,
- 32.49451
- ],
- [
- -112.81743,
- 31.88004
- ],
- [
- -111.07481,
- 31.33224
- ],
- [
- -109.56051,
- 31.33402
- ],
- [
- -108.20847,
- 31.33384
- ],
- [
- -108.20838,
- 31.78363
- ],
- [
- -106.52847,
- 31.78391
- ],
- [
- -106.52781,
- 31.78086
- ],
- [
- -106.52249,
- 31.77501
- ],
- [
- -106.51249,
- 31.76933
- ],
- [
- -106.50988,
- 31.7612
- ],
- [
- -106.50709,
- 31.76123
- ],
- [
- -106.48896,
- 31.74806
- ],
- [
- -106.48473,
- 31.74769
- ],
- [
- -106.4719,
- 31.75101
- ],
- [
- -106.46816,
- 31.75897
- ],
- [
- -106.45434,
- 31.76466
- ],
- [
- -106.45035,
- 31.76426
- ],
- [
- -106.43516,
- 31.75492
- ],
- [
- -106.41484,
- 31.75101
- ],
- [
- -106.37864,
- 31.73021
- ],
- [
- -106.37225,
- 31.71174
- ],
- [
- -106.34924,
- 31.69633
- ],
- [
- -106.33289,
- 31.66178
- ],
- [
- -106.3068,
- 31.62459
- ],
- [
- -106.28079,
- 31.56179
- ],
- [
- -106.24775,
- 31.54226
- ],
- [
- -106.2329,
- 31.49982
- ],
- [
- -106.2105,
- 31.46857
- ],
- [
- -106.08201,
- 31.39863
- ],
- [
- -106.00554,
- 31.39233
- ],
- [
- -105.76401,
- 31.17051
- ],
- [
- -105.58548,
- 31.06117
- ],
- [
- -105.56419,
- 30.98526
- ],
- [
- -104.99153,
- 30.6639
- ],
- [
- -104.97162,
- 30.60896
- ],
- [
- -104.90639,
- 30.57822
- ],
- [
- -104.83772,
- 30.38117
- ],
- [
- -104.70177,
- 30.20567
- ],
- [
- -104.68048,
- 29.92399
- ],
- [
- -104.57611,
- 29.77838
- ],
- [
- -104.51157,
- 29.63674
- ],
- [
- -104.39758,
- 29.57047
- ],
- [
- -104.39278,
- 29.55293
- ],
- [
- -104.05769,
- 29.32173
- ],
- [
- -103.79883,
- 29.2581
- ],
- [
- -103.78196,
- 29.26555
- ],
- [
- -103.76759,
- 29.22799
- ],
- [
- -103.14102,
- 28.93666
- ],
- [
- -102.86087,
- 29.2217
- ],
- [
- -102.65076,
- 29.79418
- ],
- [
- -101.41068,
- 29.73457
- ],
- [
- -101.26511,
- 29.51372
- ],
- [
- -101.05997,
- 29.452
- ],
- [
- -101.04083,
- 29.38038
- ],
- [
- -100.96303,
- 29.34735
- ],
- [
- -100.94406,
- 29.34369
- ],
- [
- -100.94071,
- 29.33351
- ],
- [
- -100.92775,
- 29.32663
- ],
- [
- -100.89814,
- 29.30957
- ],
- [
- -100.87818,
- 29.28086
- ],
- [
- -100.80076,
- 29.2238
- ],
- [
- -100.76437,
- 29.15981
- ],
- [
- -100.67047,
- 29.08663
- ],
- [
- -100.6412,
- 28.91299
- ],
- [
- -100.63236,
- 28.90255
- ],
- [
- -100.61296,
- 28.89939
- ],
- [
- -100.534,
- 28.75622
- ],
- [
- -100.51495,
- 28.74531
- ],
- [
- -100.50705,
- 28.7143
- ],
- [
- -100.51203,
- 28.70666
- ],
- [
- -100.51014,
- 28.69127
- ],
- [
- -100.50048,
- 28.66186
- ],
- [
- -100.45547,
- 28.6381
- ],
- [
- -100.44697,
- 28.60743
- ],
- [
- -100.35599,
- 28.45239
- ],
- [
- -100.34946,
- 28.39653
- ],
- [
- -100.29488,
- 28.31315
- ],
- [
- -100.29591,
- 28.27324
- ],
- [
- -100.17197,
- 28.17493
- ],
- [
- -99.93645,
- 27.9568
- ],
- [
- -99.87722,
- 27.80173
- ],
- [
- -99.79671,
- 27.73338
- ],
- [
- -99.772,
- 27.72532
- ],
- [
- -99.74556,
- 27.69979
- ],
- [
- -99.71947,
- 27.65981
- ],
- [
- -99.5957,
- 27.59974
- ],
- [
- -99.54094,
- 27.60537
- ],
- [
- -99.53055,
- 27.57973
- ],
- [
- -99.52034,
- 27.55782
- ],
- [
- -99.52802,
- 27.49773
- ],
- [
- -99.50141,
- 27.49986
- ],
- [
- -99.48755,
- 27.49518
- ],
- [
- -99.47897,
- 27.48421
- ],
- [
- -99.48661,
- 27.46453
- ],
- [
- -99.49534,
- 27.44861
- ],
- [
- -99.48927,
- 27.40941
- ],
- [
- -99.53957,
- 27.31565
- ],
- [
- -99.43588,
- 27.19678
- ],
- [
- -99.46404,
- 27.01968
- ],
- [
- -99.16698,
- 26.56039
- ],
- [
- -99.17474,
- 26.53939
- ],
- [
- -99.12698,
- 26.51958
- ],
- [
- -99.1135,
- 26.42954
- ],
- [
- -99.08355,
- 26.39625
- ],
- [
- -99.06007,
- 26.39737
- ],
- [
- -99.03634,
- 26.41255
- ],
- [
- -99.02042,
- 26.40598
- ],
- [
- -99.01291,
- 26.39364
- ],
- [
- -98.95686,
- 26.38641
- ],
- [
- -98.9566,
- 26.37365
- ],
- [
- -98.94523,
- 26.36949
- ],
- [
- -98.90013,
- 26.36419
- ],
- [
- -98.89905,
- 26.35454
- ],
- [
- -98.80305,
- 26.36626
- ],
- [
- -98.78254,
- 26.30511
- ],
- [
- -98.66667,
- 26.23457
- ],
- [
- -98.58496,
- 26.24647
- ],
- [
- -98.57951,
- 26.23434
- ],
- [
- -98.56519,
- 26.23987
- ],
- [
- -98.56294,
- 26.22464
- ],
- [
- -98.50599,
- 26.20858
- ],
- [
- -98.44806,
- 26.21236
- ],
- [
- -98.38617,
- 26.15721
- ],
- [
- -98.34176,
- 26.15278
- ],
- [
- -98.33579,
- 26.1388
- ],
- [
- -98.30626,
- 26.10003
- ],
- [
- -98.28841,
- 26.10512
- ],
- [
- -98.26524,
- 26.0914
- ],
- [
- -98.19898,
- 26.06411
- ],
- [
- -98.09577,
- 26.05698
- ],
- [
- -98.07568,
- 26.06667
- ],
- [
- -98.08302,
- 26.03396
- ],
- [
- -97.9771,
- 26.04136
- ],
- [
- -97.9532,
- 26.06179
- ],
- [
- -97.81643,
- 26.04475
- ],
- [
- -97.77017,
- 26.02439
- ],
- [
- -97.73884,
- 26.02902
- ],
- [
- -97.5289,
- 25.90648
- ],
- [
- -97.52151,
- 25.88625
- ],
- [
- -97.50615,
- 25.89031
- ],
- [
- -97.49851,
- 25.89903
- ],
- [
- -97.49637,
- 25.89641
- ],
- [
- -97.49748,
- 25.88008
- ],
- [
- -97.49422,
- 25.87981
- ],
- [
- -97.48847,
- 25.88564
- ],
- [
- -97.46409,
- 25.88174
- ],
- [
- -97.42607,
- 25.842
- ],
- [
- -97.36856,
- 25.8396
- ],
- [
- -97.26231,
- 25.94724
- ],
- [
- -80.81543,
- 24.00633
- ],
- [
- -66.87378,
- 44.77794
- ],
- [
- -67.16148,
- 45.16715
- ],
- [
- -67.2286,
- 45.16739
- ],
- [
- -67.26246,
- 45.18797
- ],
- [
- -67.28311,
- 45.19175
- ],
- [
- -67.28959,
- 45.18784
- ],
- [
- -67.29332,
- 45.17568
- ],
- [
- -67.29049,
- 45.17317
- ],
- [
- -67.3001,
- 45.16776
- ],
- [
- -67.3025,
- 45.16122
- ],
- [
- -67.29761,
- 45.14766
- ],
- [
- -67.33975,
- 45.1255
- ],
- [
- -67.40524,
- 45.16122
- ],
- [
- -67.40387,
- 45.17139
- ],
- [
- -67.4818,
- 45.27682
- ],
- [
- -67.42172,
- 45.38543
- ],
- [
- -67.45262,
- 45.41008
- ],
- [
- -67.50498,
- 45.4889
- ],
- [
- -67.41623,
- 45.50105
- ],
- [
- -67.42219,
- 45.55661
- ],
- [
- -67.42902,
- 45.56833
- ],
- [
- -67.42331,
- 45.57154
- ],
- [
- -67.42498,
- 45.57836
- ],
- [
- -67.45193,
- 45.60323
- ],
- [
- -67.77981,
- 45.6738
- ],
- [
- -67.79019,
- 47.06776
- ],
- [
- -67.88006,
- 47.1067
- ],
- [
- -67.91319,
- 47.14793
- ],
- [
- -67.92598,
- 47.15418
- ],
- [
- -67.95181,
- 47.1875
- ],
- [
- -68.02374,
- 47.23915
- ],
- [
- -68.13017,
- 47.29309
- ],
- [
- -68.17669,
- 47.32893
- ],
- [
- -68.24046,
- 47.35354
- ],
- [
- -68.32809,
- 47.36005
- ],
- [
- -68.36363,
- 47.35476
- ],
- [
- -68.38054,
- 47.34167
- ],
- [
- -68.38509,
- 47.30321
- ],
- [
- -68.37367,
- 47.28796
- ],
- [
- -68.4377,
- 47.28232
- ],
- [
- -68.47916,
- 47.29623
- ],
- [
- -68.51074,
- 47.29885
- ],
- [
- -68.54593,
- 47.28441
- ],
- [
- -68.58408,
- 47.28482
- ],
- [
- -68.59777,
- 47.27134
- ],
- [
- -68.59271,
- 47.25762
- ],
- [
- -68.61889,
- 47.24148
- ],
- [
- -68.68936,
- 47.24125
- ],
- [
- -68.71768,
- 47.23676
- ],
- [
- -68.80128,
- 47.21423
- ],
- [
- -68.89629,
- 47.17676
- ],
- [
- -69.05354,
- 47.24847
- ],
- [
- -69.04924,
- 47.41798
- ],
- [
- -69.22425,
- 47.45961
- ],
- [
- -69.99729,
- 46.69558
- ],
- [
- -70.0569,
- 46.4149
- ],
- [
- -70.25551,
- 46.10871
- ],
- [
- -70.29001,
- 46.09431
- ],
- [
- -70.39919,
- 45.80667
- ],
- [
- -70.83229,
- 45.40062
- ],
- [
- -70.80794,
- 45.37878
- ],
- [
- -70.82663,
- 45.2367
- ],
- [
- -70.87538,
- 45.23453
- ],
- [
- -70.92138,
- 45.28099
- ],
- [
- -70.90645,
- 45.30918
- ],
- [
- -71.0109,
- 45.34798
- ],
- [
- -71.08429,
- 45.30556
- ],
- [
- -71.1454,
- 45.24226
- ],
- [
- -71.20525,
- 45.25278
- ],
- [
- -71.28925,
- 45.30097
- ],
- [
- -71.41405,
- 45.23513
- ],
- [
- -71.43044,
- 45.12381
- ],
- [
- -71.49692,
- 45.06991
- ],
- [
- -71.50623,
- 45.04878
- ],
- [
- -71.49284,
- 45.03629
- ],
- [
- -71.50027,
- 45.01372
- ],
- [
- -71.79359,
- 45.01075
- ],
- [
- -72.08774,
- 45.00581
- ],
- [
- -72.14155,
- 45.00568
- ],
- [
- -72.15282,
- 45.00609
- ],
- [
- -72.17142,
- 45.00584
- ],
- [
- -72.25847,
- 45.00436
- ],
- [
- -72.38795,
- 45.00626
- ],
- [
- -72.4496,
- 45.00863
- ],
- [
- -72.5356,
- 45.00936
- ],
- [
- -72.66257,
- 45.01523
- ],
- [
- -72.82537,
- 45.01642
- ],
- [
- -73.08466,
- 45.01561
- ],
- [
- -73.45219,
- 45.00875
- ],
- [
- -74.14699,
- 44.99145
- ],
- [
- -74.33753,
- 44.9923
- ],
- [
- -74.50786,
- 44.99798
- ],
- [
- -74.66158,
- 44.99949
- ],
- [
- -74.71244,
- 44.99734
- ],
- [
- -74.75887,
- 44.98708
- ],
- [
- -74.76368,
- 45.00632
- ],
- [
- -74.78977,
- 45.00365
- ],
- [
- -74.82376,
- 45.01773
- ],
- [
- -74.94186,
- 44.98229
- ],
- [
- -75.30098,
- 44.83883
- ],
- [
- -75.30304,
- 44.82836
- ],
- [
- -75.59418,
- 44.6457
- ],
- [
- -75.97269,
- 44.33502
- ],
- [
- -75.97295,
- 44.34595
- ],
- [
- -76.00059,
- 44.34797
- ],
- [
- -76.17645,
- 44.2865
- ],
- [
- -76.18744,
- 44.22158
- ],
- [
- -76.88782,
- 43.82759
- ],
- [
- -79.16851,
- 43.32168
- ],
- [
- -79.05487,
- 43.25371
- ],
- [
- -79.05092,
- 43.169
- ],
- [
- -79.04603,
- 43.16093
- ],
- [
- -79.04208,
- 43.13942
- ],
- [
- -79.07002,
- 43.12038
- ],
- [
- -79.06015,
- 43.114
- ],
- [
- -79.0568,
- 43.10474
- ],
- [
- -79.0774,
- 43.07861
- ],
- [
- -78.9996,
- 43.05484
- ],
- [
- -79.02311,
- 43.02071
- ],
- [
- -79.02552,
- 42.99473
- ],
- [
- -78.96235,
- 42.9573
- ],
- [
- -78.91188,
- 42.9426
- ],
- [
- -78.90398,
- 42.89181
- ],
- [
- -82.42767,
- 41.47978
- ],
- [
- -83.14316,
- 42.03807
- ],
- [
- -83.12805,
- 42.23843
- ],
- [
- -83.09715,
- 42.29052
- ],
- [
- -83.07252,
- 42.31515
- ],
- [
- -82.94575,
- 42.34332
- ],
- [
- -82.59676,
- 42.5479
- ],
- [
- -82.51368,
- 42.61785
- ],
- [
- -82.5108,
- 42.66464
- ],
- [
- -82.4675,
- 42.76415
- ],
- [
- -82.48055,
- 42.80573
- ],
- [
- -82.45497,
- 42.9284
- ],
- [
- -82.41334,
- 42.97099
- ],
- [
- -82.42596,
- 42.99536
- ],
- [
- -82.15851,
- 43.39507
- ],
- [
- -83.53729,
- 46.098
- ],
- [
- -83.96301,
- 46.05036
- ],
- [
- -84.11021,
- 46.23851
- ],
- [
- -84.09794,
- 46.25656
- ],
- [
- -84.11613,
- 46.26878
- ],
- [
- -84.11905,
- 46.31516
- ],
- [
- -84.10721,
- 46.3218
- ],
- [
- -84.14394,
- 46.41076
- ],
- [
- -84.11682,
- 46.51576
- ],
- [
- -84.13536,
- 46.53218
- ],
- [
- -84.16162,
- 46.5284
- ],
- [
- -84.21621,
- 46.53891
- ],
- [
- -84.26994,
- 46.49189
- ],
- [
- -84.36092,
- 46.50997
- ],
- [
- -84.55284,
- 46.4407
- ],
- [
- -84.95178,
- 46.77185
- ],
- [
- -89.59179,
- 48.00307
- ],
- [
- -89.67547,
- 48.00371
- ],
- [
- -90.87204,
- 48.25943
- ],
- [
- -91.41312,
- 48.06753
- ],
- [
- -92.99377,
- 48.62474
- ],
- [
- -93.34877,
- 48.62604
- ],
- [
- -93.35529,
- 48.61124
- ],
- [
- -93.37074,
- 48.60584
- ],
- [
- -93.39812,
- 48.60369
- ],
- [
- -93.40542,
- 48.61089
- ],
- [
- -93.43846,
- 48.59478
- ],
- [
- -93.46859,
- 48.59205
- ],
- [
- -93.45735,
- 48.56667
- ],
- [
- -93.46533,
- 48.54593
- ],
- [
- -93.64763,
- 48.51751
- ],
- [
- -93.80625,
- 48.51888
- ],
- [
- -93.80642,
- 48.58047
- ],
- [
- -93.83328,
- 48.62582
- ],
- [
- -93.84865,
- 48.63064
- ],
- [
- -93.93388,
- 48.6326
- ],
- [
- -94.01327,
- 48.64471
- ],
- [
- -94.16176,
- 48.64697
- ],
- [
- -94.25025,
- 48.65463
- ],
- [
- -94.24931,
- 48.67827
- ],
- [
- -94.26046,
- 48.69816
- ],
- [
- -94.30578,
- 48.71073
- ],
- [
- -94.32758,
- 48.70433
- ],
- [
- -94.36123,
- 48.70478
- ],
- [
- -94.38406,
- 48.71135
- ],
- [
- -94.41629,
- 48.71067
- ],
- [
- -94.44294,
- 48.69266
- ],
- [
- -94.53615,
- 48.7024
- ],
- [
- -94.55031,
- 48.71419
- ],
- [
- -94.58894,
- 48.71928
- ],
- [
- -94.69425,
- 48.77938
- ],
- [
- -94.70129,
- 48.83376
- ],
- [
- -94.68996,
- 48.83953
- ],
- [
- -94.68395,
- 48.99914
- ],
- [
- -111.96064,
- 48.99841
- ]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "properties": {},
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- 180,
- 55
- ],
- [
- 170,
- 53
- ],
- [
- 180,
- 49
- ],
- [
- 180,
- 55
- ]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "properties": {},
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- 143,
- 22
- ],
- [
- 147,
- 22
- ],
- [
- 147,
- 12
- ],
- [
- 143,
- 12
- ],
- [
- 143,
- 22
- ]
- ]
- ]
- }
- },
- {
- "type": "Feature",
- "properties": {},
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- -171.5,
- -10
- ],
- [
- -171,
- -15
- ],
- [
- -167,
- -15
- ],
- [
- -171.5,
- -10
- ]
- ]
+ [[-171.5, -10], [-171, -15], [-167, -15], [-171.5, -10]]
]
}
}
]
-}
+}
\ No newline at end of file
diff --git a/data/locales.json b/data/locales.json
index 92cec1647..52d27a861 100644
--- a/data/locales.json
+++ b/data/locales.json
@@ -1,250 +1,86 @@
{
- "dataLocales": {
- "af": {
- "rtl": false
- },
- "ar": {
- "rtl": true
- },
- "ar-AA": {
- "rtl": true
- },
- "ast": {
- "rtl": false
- },
- "be": {
- "rtl": false
- },
- "bg": {
- "rtl": false
- },
- "bn": {
- "rtl": false
- },
- "bs": {
- "rtl": false
- },
- "ca": {
- "rtl": false
- },
- "ckb": {
- "rtl": true
- },
- "cs": {
- "rtl": false
- },
- "cy": {
- "rtl": false
- },
- "da": {
- "rtl": false
- },
- "de": {
- "rtl": false
- },
- "dv": {
- "rtl": true
- },
- "el": {
- "rtl": false
- },
- "en-GB": {
- "rtl": false
- },
- "eo": {
- "rtl": false
- },
- "es": {
- "rtl": false
- },
- "et": {
- "rtl": false
- },
- "eu": {
- "rtl": false
- },
- "fa": {
- "rtl": true
- },
- "fi": {
- "rtl": false
- },
- "fr": {
- "rtl": false
- },
- "gan": {
- "rtl": false
- },
- "gl": {
- "rtl": false
- },
- "gu": {
- "rtl": false
- },
- "he": {
- "rtl": true
- },
- "hi": {
- "rtl": false
- },
- "hr": {
- "rtl": false
- },
- "hu": {
- "rtl": false
- },
- "hy": {
- "rtl": false
- },
- "ia": {
- "rtl": false
- },
- "id": {
- "rtl": false
- },
- "is": {
- "rtl": false
- },
- "it": {
- "rtl": false
- },
- "ja": {
- "rtl": false
- },
- "jv": {
- "rtl": false
- },
- "km": {
- "rtl": false
- },
- "kn": {
- "rtl": false
- },
- "ko": {
- "rtl": false
- },
- "ku": {
- "rtl": false
- },
- "lij": {
- "rtl": false
- },
- "lt": {
- "rtl": false
- },
- "lv": {
- "rtl": false
- },
- "mg": {
- "rtl": false
- },
- "mk": {
- "rtl": false
- },
- "ml": {
- "rtl": false
- },
- "mn": {
- "rtl": false
- },
- "ms": {
- "rtl": false
- },
- "ne": {
- "rtl": false
- },
- "nl": {
- "rtl": false
- },
- "nn": {
- "rtl": false
- },
- "no": {
- "rtl": false
- },
- "nv": {
- "rtl": false
- },
- "pl": {
- "rtl": false
- },
- "pt": {
- "rtl": false
- },
- "pt-BR": {
- "rtl": false
- },
- "rm": {
- "rtl": false
- },
- "ro": {
- "rtl": false
- },
- "ru": {
- "rtl": false
- },
- "sc": {
- "rtl": false
- },
- "si": {
- "rtl": false
- },
- "sk": {
- "rtl": false
- },
- "sl": {
- "rtl": false
- },
- "so": {
- "rtl": false
- },
- "sq": {
- "rtl": false
- },
- "sr": {
- "rtl": false
- },
- "sv": {
- "rtl": false
- },
- "ta": {
- "rtl": false
- },
- "te": {
- "rtl": false
- },
- "th": {
- "rtl": false
- },
- "tl": {
- "rtl": false
- },
- "tr": {
- "rtl": false
- },
- "uk": {
- "rtl": false
- },
- "ur": {
- "rtl": true
- },
- "vi": {
- "rtl": false
- },
- "yue": {
- "rtl": false
- },
- "zh": {
- "rtl": false
- },
- "zh-CN": {
- "rtl": false
- },
- "zh-HK": {
- "rtl": false
- },
- "zh-TW": {
- "rtl": false
- }
- }
+ "dataLocales": {
+ "af": {"rtl": false},
+ "ar": {"rtl": true},
+ "ar-AA": {"rtl": true},
+ "ast": {"rtl": false},
+ "be": {"rtl": false},
+ "bg": {"rtl": false},
+ "bn": {"rtl": false},
+ "bs": {"rtl": false},
+ "ca": {"rtl": false},
+ "ckb": {"rtl": true},
+ "cs": {"rtl": false},
+ "cy": {"rtl": false},
+ "da": {"rtl": false},
+ "de": {"rtl": false},
+ "dv": {"rtl": true},
+ "el": {"rtl": false},
+ "en-GB": {"rtl": false},
+ "eo": {"rtl": false},
+ "es": {"rtl": false},
+ "et": {"rtl": false},
+ "eu": {"rtl": false},
+ "fa": {"rtl": true},
+ "fi": {"rtl": false},
+ "fr": {"rtl": false},
+ "gan": {"rtl": false},
+ "gl": {"rtl": false},
+ "gu": {"rtl": false},
+ "he": {"rtl": true},
+ "hi": {"rtl": false},
+ "hr": {"rtl": false},
+ "hu": {"rtl": false},
+ "hy": {"rtl": false},
+ "ia": {"rtl": false},
+ "id": {"rtl": false},
+ "is": {"rtl": false},
+ "it": {"rtl": false},
+ "ja": {"rtl": false},
+ "jv": {"rtl": false},
+ "km": {"rtl": false},
+ "kn": {"rtl": false},
+ "ko": {"rtl": false},
+ "ku": {"rtl": false},
+ "lij": {"rtl": false},
+ "lt": {"rtl": false},
+ "lv": {"rtl": false},
+ "mg": {"rtl": false},
+ "mk": {"rtl": false},
+ "ml": {"rtl": false},
+ "mn": {"rtl": false},
+ "ms": {"rtl": false},
+ "ne": {"rtl": false},
+ "nl": {"rtl": false},
+ "nn": {"rtl": false},
+ "no": {"rtl": false},
+ "nv": {"rtl": false},
+ "pl": {"rtl": false},
+ "pt": {"rtl": false},
+ "pt-BR": {"rtl": false},
+ "rm": {"rtl": false},
+ "ro": {"rtl": false},
+ "ru": {"rtl": false},
+ "sc": {"rtl": false},
+ "si": {"rtl": false},
+ "sk": {"rtl": false},
+ "sl": {"rtl": false},
+ "so": {"rtl": false},
+ "sq": {"rtl": false},
+ "sr": {"rtl": false},
+ "sv": {"rtl": false},
+ "ta": {"rtl": false},
+ "te": {"rtl": false},
+ "th": {"rtl": false},
+ "tl": {"rtl": false},
+ "tr": {"rtl": false},
+ "uk": {"rtl": false},
+ "ur": {"rtl": true},
+ "vi": {"rtl": false},
+ "yue": {"rtl": false},
+ "zh": {"rtl": false},
+ "zh-CN": {"rtl": false},
+ "zh-HK": {"rtl": false},
+ "zh-TW": {"rtl": false}
+ }
}
\ No newline at end of file
diff --git a/data/phone-formats.json b/data/phone-formats.json
index 2d7753faf..0163f6e28 100644
--- a/data/phone-formats.json
+++ b/data/phone-formats.json
@@ -1,62 +1,62 @@
{
- "dataPhoneFormats": {
- "us": "+1-202-555-1234",
- "ca": "+1-226-555-1234",
- "bs": "+1-242-555-1234",
- "bb": "+1-246-555-1234",
- "ai": "+1-264-555-1234",
- "ag": "+1-268-555-1234",
- "vg": "+1-284-555-1234",
- "vi": "+1-340-555-1234",
- "ky": "+1-345-555-1234",
- "bm": "+1-441-555-1234",
- "gd": "+1-473-555-1234",
- "tc": "+1-649-555-1234",
- "ms": "+1-664-555-1234",
- "mp": "+1-670-555-1234",
- "gu": "+1-671-555-1234",
- "as": "+1-684-555-1234",
- "sx": "+1-721-555-1234",
- "lc": "+1-758-555-1234",
- "dm": "+1-767-555-1234",
- "vc": "+1-784-555-1234",
- "pr": "+1-787-555-1234",
- "do": "+1-809-555-1234",
- "tt": "+1-868-555-1234",
- "kn": "+1-869-555-1234",
- "jm": "+1-876-555-1234",
- "za": "+27 11 907 1111",
- "nl": "+31 42 123 4567",
- "fr": "+33 1 23 45 67 89",
- "es": "+34 989 12 34 56",
- "pt": "+351 211 123456",
- "ie": "+353 20 912 3456",
- "fi": "+358 40 123 4567",
- "hu": "+36 1 123 45 67",
- "hr": "+385 01 123 4567",
- "si": "+386 31 123 4567",
- "it": "+39 01 123 456",
- "va": "+39 01 123 456",
- "gb": "+44 1632 961234",
- "gg": "+44 1632 961234",
- "im": "+44 1632 961234",
- "je": "+44 1632 961234",
- "se": "+46 31 123 4567",
- "no": "+47 22 12 34 56",
- "sj": "+47 22 12 34 56",
- "pl": "+48 42 123 4567",
- "de": "+49 89 1234567",
- "br": "+55 11 0982 1098",
- "ru": "+7 495 1234567",
- "kz": "+7 495 1234567",
- "vn": "+84 1 234 5678",
- "hk": "+852 1234 5678",
- "cn": "+86 10 12345678",
- "tw": "+886 1 2345 6789",
- "tr": "+90 312 123 4567",
- "ua": "+380 44 123 4567",
- "at": "+43 1 123 45 67",
- "ci": "+225 20 12 34 56",
- "bj": "+229 20 12 34 56"
- }
+ "dataPhoneFormats": {
+ "ag": "+1-268-555-1234",
+ "ai": "+1-264-555-1234",
+ "as": "+1-684-555-1234",
+ "at": "+43 1 123 45 67",
+ "bb": "+1-246-555-1234",
+ "bj": "+229 20 12 34 56",
+ "bm": "+1-441-555-1234",
+ "br": "+55 11 0982 1098",
+ "bs": "+1-242-555-1234",
+ "ca": "+1-226-555-1234",
+ "ci": "+225 20 12 34 56",
+ "cn": "+86 10 12345678",
+ "de": "+49 89 1234567",
+ "dm": "+1-767-555-1234",
+ "do": "+1-809-555-1234",
+ "es": "+34 989 12 34 56",
+ "fi": "+358 40 123 4567",
+ "fr": "+33 1 23 45 67 89",
+ "gb": "+44 1632 961234",
+ "gd": "+1-473-555-1234",
+ "gg": "+44 1632 961234",
+ "gu": "+1-671-555-1234",
+ "hk": "+852 1234 5678",
+ "hr": "+385 01 123 4567",
+ "hu": "+36 1 123 45 67",
+ "ie": "+353 20 912 3456",
+ "im": "+44 1632 961234",
+ "it": "+39 01 123 456",
+ "je": "+44 1632 961234",
+ "jm": "+1-876-555-1234",
+ "kn": "+1-869-555-1234",
+ "ky": "+1-345-555-1234",
+ "kz": "+7 495 1234567",
+ "lc": "+1-758-555-1234",
+ "mp": "+1-670-555-1234",
+ "ms": "+1-664-555-1234",
+ "nl": "+31 42 123 4567",
+ "no": "+47 22 12 34 56",
+ "pl": "+48 42 123 4567",
+ "pr": "+1-787-555-1234",
+ "pt": "+351 211 123456",
+ "ru": "+7 495 1234567",
+ "se": "+46 31 123 4567",
+ "si": "+386 31 123 4567",
+ "sj": "+47 22 12 34 56",
+ "sx": "+1-721-555-1234",
+ "tc": "+1-649-555-1234",
+ "tr": "+90 312 123 4567",
+ "tt": "+1-868-555-1234",
+ "tw": "+886 1 2345 6789",
+ "ua": "+380 44 123 4567",
+ "us": "+1-202-555-1234",
+ "va": "+39 01 123 456",
+ "vc": "+1-784-555-1234",
+ "vg": "+1-284-555-1234",
+ "vi": "+1-340-555-1234",
+ "vn": "+84 1 234 5678",
+ "za": "+27 11 907 1111"
+ }
}
diff --git a/data/presets/categories.json b/data/presets/categories.json
index a17f09f0f..60653e374 100644
--- a/data/presets/categories.json
+++ b/data/presets/categories.json
@@ -1,216 +1,213 @@
{
- "categories": {
- "category-barrier": {
- "icon": "maki-roadblock",
- "geometry": "line",
- "name": "Barrier Features",
- "members": [
- "barrier/fence",
- "barrier/wall",
- "barrier/ditch",
- "barrier/gate",
- "barrier/hedge",
- "barrier/kerb",
- "barrier"
- ]
- },
- "category-building": {
- "icon": "maki-building",
- "geometry": "area",
- "name": "Building Features",
- "members": [
- "building",
- "building/house",
- "building/apartments",
- "building/retail",
- "building/commercial",
- "building/industrial",
- "building/residential"
- ]
- },
- "category-golf": {
- "icon": "maki-golf",
- "geometry": "area",
- "name": "Golf Features",
- "members": [
- "golf/fairway",
- "golf/green",
- "golf/lateral_water_hazard_area",
- "golf/rough",
- "golf/bunker",
- "golf/tee",
- "golf/water_hazard_area"
- ]
- },
- "category-landuse": {
- "icon": "maki-landuse",
- "geometry": "area",
- "name": "Land Use Features",
- "members": [
- "landuse/residential",
- "landuse/industrial",
- "landuse/commercial",
- "landuse/retail",
- "landuse/farmland",
- "landuse/farmyard",
- "landuse/forest",
- "landuse/meadow",
- "landuse/aquaculture",
- "landuse/cemetery",
- "landuse/military",
- "landuse/religious"
- ]
- },
- "category-natural-area": {
- "icon": "maki-natural",
- "geometry": "area",
- "name": "Natural Features",
- "members": [
- "natural/water",
- "natural/wood",
- "natural/scrub",
- "natural/wetland",
- "natural/grassland",
- "natural/heath",
- "natural/bare_rock",
- "natural/beach",
- "natural/cave_entrance",
- "natural/glacier"
- ]
- },
- "category-natural-line": {
- "icon": "maki-natural",
- "geometry": "line",
- "name": "Natural Features",
- "members": [
- "natural/coastline",
- "natural/tree_row"
- ]
- },
- "category-natural-point": {
- "icon": "maki-natural",
- "geometry": "point",
- "name": "Natural Features",
- "members": [
- "natural/peak",
- "natural/cliff",
- "natural/beach",
- "natural/cave_entrance"
- ]
- },
- "category-path": {
- "icon": "iD-category-path",
- "geometry": "line",
- "name": "Path Features",
- "members": [
- "footway/crosswalk",
- "footway/sidewalk",
- "highway/steps",
- "highway/path",
- "highway/footway",
- "highway/cycleway",
- "highway/bridleway",
- "highway/pedestrian_line"
- ]
- },
- "category-rail": {
- "icon": "iD-category-rail",
- "geometry": "line",
- "name": "Rail Features",
- "members": [
- "railway/rail",
- "railway/subway",
- "railway/tram",
- "railway/monorail",
- "railway/disused",
- "railway/abandoned"
- ]
- },
- "category-restriction": {
- "icon": "iD-restriction",
- "geometry": "relation",
- "name": "Restriction Features",
- "members": [
- "type/restriction/no_left_turn",
- "type/restriction/no_right_turn",
- "type/restriction/no_straight_on",
- "type/restriction/no_u_turn",
- "type/restriction/only_left_turn",
- "type/restriction/only_right_turn",
- "type/restriction/only_straight_on",
- "type/restriction/only_u_turn",
- "type/restriction"
- ]
- },
- "category-road": {
- "icon": "iD-category-roads",
- "geometry": "line",
- "name": "Road Features",
- "members": [
- "highway/residential",
- "highway/motorway",
- "highway/trunk",
- "highway/primary",
- "highway/secondary",
- "highway/tertiary",
- "highway/living_street",
- "highway/unclassified",
- "highway/service",
- "highway/track",
- "highway/motorway_link",
- "highway/trunk_link",
- "highway/primary_link",
- "highway/secondary_link",
- "highway/tertiary_link",
- "highway/road"
- ]
- },
- "category-route": {
- "icon": "iD-route",
- "geometry": "relation",
- "name": "Route Features",
- "members": [
- "type/route/road",
- "type/route/bicycle",
- "type/route/foot",
- "type/route/hiking",
- "type/route/horse",
- "type/route/piste",
- "type/route/bus",
- "type/route/train",
- "type/route/light_rail",
- "type/route/tram",
- "type/route/subway",
- "type/route/ferry",
- "type/route/power",
- "type/route/pipeline",
- "type/route/detour",
- "type/route_master",
- "type/route"
- ]
- },
- "category-water-area": {
- "icon": "maki-water",
- "geometry": "area",
- "name": "Water Features",
- "members": [
- "natural/water/lake",
- "natural/water/pond",
- "natural/water/reservoir",
- "natural/water"
- ]
- },
- "category-water-line": {
- "icon": "iD-category-water",
- "geometry": "line",
- "name": "Water Features",
- "members": [
- "waterway/river",
- "waterway/stream",
- "waterway/canal",
- "waterway/ditch",
- "waterway/drain"
- ]
- }
+ "categories": {
+ "category-barrier": {
+ "icon": "maki-roadblock",
+ "geometry": "line",
+ "name": "Barrier Features",
+ "members": [
+ "barrier/fence",
+ "barrier/wall",
+ "barrier/ditch",
+ "barrier/gate",
+ "barrier/hedge",
+ "barrier/kerb",
+ "barrier"
+ ]
+ },
+ "category-building": {
+ "icon": "maki-building",
+ "geometry": "area",
+ "name": "Building Features",
+ "members": [
+ "building",
+ "building/house",
+ "building/apartments",
+ "building/retail",
+ "building/commercial",
+ "building/industrial",
+ "building/residential"
+ ]
+ },
+ "category-golf": {
+ "icon": "maki-golf",
+ "geometry": "area",
+ "name": "Golf Features",
+ "members": [
+ "golf/fairway",
+ "golf/green",
+ "golf/lateral_water_hazard_area",
+ "golf/rough",
+ "golf/bunker",
+ "golf/tee",
+ "golf/water_hazard_area"
+ ]
+ },
+ "category-landuse": {
+ "icon": "maki-landuse",
+ "geometry": "area",
+ "name": "Land Use Features",
+ "members": [
+ "landuse/residential",
+ "landuse/industrial",
+ "landuse/commercial",
+ "landuse/retail",
+ "landuse/farmland",
+ "landuse/farmyard",
+ "landuse/forest",
+ "landuse/meadow",
+ "landuse/aquaculture",
+ "landuse/cemetery",
+ "landuse/military",
+ "landuse/religious"
+ ]
+ },
+ "category-natural-area": {
+ "icon": "maki-natural",
+ "geometry": "area",
+ "name": "Natural Features",
+ "members": [
+ "natural/water",
+ "natural/wood",
+ "natural/scrub",
+ "natural/wetland",
+ "natural/grassland",
+ "natural/heath",
+ "natural/bare_rock",
+ "natural/beach",
+ "natural/cave_entrance",
+ "natural/glacier"
+ ]
+ },
+ "category-natural-line": {
+ "icon": "maki-natural",
+ "geometry": "line",
+ "name": "Natural Features",
+ "members": ["natural/coastline", "natural/tree_row"]
+ },
+ "category-natural-point": {
+ "icon": "maki-natural",
+ "geometry": "point",
+ "name": "Natural Features",
+ "members": [
+ "natural/peak",
+ "natural/cliff",
+ "natural/beach",
+ "natural/cave_entrance"
+ ]
+ },
+ "category-path": {
+ "icon": "iD-category-path",
+ "geometry": "line",
+ "name": "Path Features",
+ "members": [
+ "footway/crosswalk",
+ "footway/sidewalk",
+ "highway/steps",
+ "highway/path",
+ "highway/footway",
+ "highway/cycleway",
+ "highway/bridleway",
+ "highway/pedestrian_line"
+ ]
+ },
+ "category-rail": {
+ "icon": "iD-category-rail",
+ "geometry": "line",
+ "name": "Rail Features",
+ "members": [
+ "railway/rail",
+ "railway/subway",
+ "railway/tram",
+ "railway/monorail",
+ "railway/disused",
+ "railway/abandoned"
+ ]
+ },
+ "category-restriction": {
+ "icon": "iD-restriction",
+ "geometry": "relation",
+ "name": "Restriction Features",
+ "members": [
+ "type/restriction/no_left_turn",
+ "type/restriction/no_right_turn",
+ "type/restriction/no_straight_on",
+ "type/restriction/no_u_turn",
+ "type/restriction/only_left_turn",
+ "type/restriction/only_right_turn",
+ "type/restriction/only_straight_on",
+ "type/restriction/only_u_turn",
+ "type/restriction"
+ ]
+ },
+ "category-road": {
+ "icon": "iD-category-roads",
+ "geometry": "line",
+ "name": "Road Features",
+ "members": [
+ "highway/residential",
+ "highway/motorway",
+ "highway/trunk",
+ "highway/primary",
+ "highway/secondary",
+ "highway/tertiary",
+ "highway/living_street",
+ "highway/unclassified",
+ "highway/service",
+ "highway/track",
+ "highway/motorway_link",
+ "highway/trunk_link",
+ "highway/primary_link",
+ "highway/secondary_link",
+ "highway/tertiary_link",
+ "highway/road"
+ ]
+ },
+ "category-route": {
+ "icon": "iD-route",
+ "geometry": "relation",
+ "name": "Route Features",
+ "members": [
+ "type/route/road",
+ "type/route/bicycle",
+ "type/route/foot",
+ "type/route/hiking",
+ "type/route/horse",
+ "type/route/piste",
+ "type/route/bus",
+ "type/route/train",
+ "type/route/light_rail",
+ "type/route/tram",
+ "type/route/subway",
+ "type/route/ferry",
+ "type/route/power",
+ "type/route/pipeline",
+ "type/route/detour",
+ "type/route_master",
+ "type/route"
+ ]
+ },
+ "category-water-area": {
+ "icon": "maki-water",
+ "geometry": "area",
+ "name": "Water Features",
+ "members": [
+ "natural/water/lake",
+ "natural/water/pond",
+ "natural/water/reservoir",
+ "natural/water"
+ ]
+ },
+ "category-water-line": {
+ "icon": "iD-category-water",
+ "geometry": "line",
+ "name": "Water Features",
+ "members": [
+ "waterway/river",
+ "waterway/stream",
+ "waterway/canal",
+ "waterway/ditch",
+ "waterway/drain"
+ ]
}
+ }
}
\ No newline at end of file
diff --git a/data/presets/defaults.json b/data/presets/defaults.json
index 92a8ff98d..6feaec2eb 100644
--- a/data/presets/defaults.json
+++ b/data/presets/defaults.json
@@ -1,61 +1,61 @@
{
- "defaults": {
- "area": [
- "category-landuse",
- "category-building",
- "category-water-area",
- "category-natural-area",
- "leisure/park",
- "amenity/hospital",
- "amenity/place_of_worship",
- "amenity/cafe",
- "amenity/restaurant",
- "area"
- ],
- "line": [
- "category-road",
- "category-rail",
- "category-path",
- "category-water-line",
- "category-barrier",
- "category-natural-line",
- "power/line",
- "line"
- ],
- "point": [
- "category-natural-point",
- "leisure/park",
- "amenity/hospital",
- "amenity/place_of_worship",
- "amenity/cafe",
- "amenity/restaurant",
- "amenity/fast_food",
- "amenity/bar",
- "amenity/bank",
- "shop/supermarket",
- "point"
- ],
- "vertex": [
- "highway/crosswalk",
- "highway/crossing",
- "railway/level_crossing",
- "highway/traffic_signals",
- "highway/turning_circle",
- "highway/turning_loop",
- "traffic_calming",
- "highway/mini_roundabout",
- "highway/motorway_junction",
- "vertex"
- ],
- "relation": [
- "category-route",
- "category-restriction",
- "public_transport/stop_area",
- "type/boundary",
- "type/waterway",
- "type/multipolygon",
- "type/site",
- "relation"
- ]
- }
+ "defaults": {
+ "area": [
+ "category-landuse",
+ "category-building",
+ "category-water-area",
+ "category-natural-area",
+ "leisure/park",
+ "amenity/hospital",
+ "amenity/place_of_worship",
+ "amenity/cafe",
+ "amenity/restaurant",
+ "area"
+ ],
+ "line": [
+ "category-road",
+ "category-rail",
+ "category-path",
+ "category-water-line",
+ "category-barrier",
+ "category-natural-line",
+ "power/line",
+ "line"
+ ],
+ "point": [
+ "category-natural-point",
+ "leisure/park",
+ "amenity/hospital",
+ "amenity/place_of_worship",
+ "amenity/cafe",
+ "amenity/restaurant",
+ "amenity/fast_food",
+ "amenity/bar",
+ "amenity/bank",
+ "shop/supermarket",
+ "point"
+ ],
+ "vertex": [
+ "highway/crosswalk",
+ "highway/crossing",
+ "railway/level_crossing",
+ "highway/traffic_signals",
+ "highway/turning_circle",
+ "highway/turning_loop",
+ "traffic_calming",
+ "highway/mini_roundabout",
+ "highway/motorway_junction",
+ "vertex"
+ ],
+ "relation": [
+ "category-route",
+ "category-restriction",
+ "public_transport/stop_area",
+ "type/boundary",
+ "type/waterway",
+ "type/multipolygon",
+ "type/site",
+ "relation"
+ ]
+ }
}
diff --git a/data/presets/fields.json b/data/presets/fields.json
index 02b917650..86c249a71 100644
--- a/data/presets/fields.json
+++ b/data/presets/fields.json
@@ -1,2373 +1,305 @@
{
- "fields": {
- "access_simple": {
- "key": "access",
- "type": "combo",
- "label": "Allowed Access",
- "options": [
- "yes",
- "permissive",
- "private",
- "customers",
- "no"
- ]
- },
- "access": {
- "keys": [
- "access",
- "foot",
- "motor_vehicle",
- "bicycle",
- "horse"
- ],
- "reference": {
- "key": "access"
- },
- "type": "access",
- "label": "Allowed Access",
- "placeholder": "Not Specified",
- "strings": {
- "types": {
- "access": "All",
- "foot": "Foot",
- "motor_vehicle": "Motor Vehicles",
- "bicycle": "Bicycles",
- "horse": "Horses"
- },
- "options": {
- "yes": {
- "title": "Allowed",
- "description": "Access permitted by law; a right of way"
- },
- "no": {
- "title": "Prohibited",
- "description": "Access not permitted to the general public"
- },
- "permissive": {
- "title": "Permissive",
- "description": "Access permitted until such time as the owner revokes the permission"
- },
- "private": {
- "title": "Private",
- "description": "Access permitted only with permission of the owner on an individual basis"
- },
- "designated": {
- "title": "Designated",
- "description": "Access permitted according to signs or specific local laws"
- },
- "destination": {
- "title": "Destination",
- "description": "Access permitted only to reach a destination"
- },
- "dismount": {
- "title": "Dismount",
- "description": "Access permitted but rider must dismount"
- }
- }
- }
- },
- "address": {
- "type": "address",
- "keys": [
- "addr:block_number",
- "addr:city",
- "addr:block_number",
- "addr:conscriptionnumber",
- "addr:county",
- "addr:country",
- "addr:county",
- "addr:district",
- "addr:floor",
- "addr:hamlet",
- "addr:housename",
- "addr:housenumber",
- "addr:neighbourhood",
- "addr:place",
- "addr:postcode",
- "addr:province",
- "addr:quarter",
- "addr:state",
- "addr:street",
- "addr:subdistrict",
- "addr:suburb",
- "addr:unit"
- ],
- "reference": {
- "key": "addr"
- },
- "icon": "address",
- "universal": true,
- "label": "Address",
- "strings": {
- "placeholders": {
- "block_number": "Block Number",
- "block_number!jp": "Block No.",
- "city": "City",
- "city!jp": "City/Town/Village/Tokyo Special Ward",
- "city!vn": "City/Town",
- "conscriptionnumber": "123",
- "country": "Country",
- "county": "County",
- "county!jp": "District",
- "district": "District",
- "district!vn": "Arrondissement/Town/District",
- "floor": "Floor",
- "hamlet": "Hamlet",
- "housename": "Housename",
- "housenumber": "123",
- "housenumber!jp": "Building No./Lot No.",
- "neighbourhood": "Neighbourhood",
- "neighbourhood!jp": "Chōme/Aza/Koaza",
- "place": "Place",
- "postcode": "Postcode",
- "province": "Province",
- "province!jp": "Prefecture",
- "quarter": "Quarter",
- "quarter!jp": "Ōaza/Machi",
- "state": "State",
- "street": "Street",
- "subdistrict": "Subdistrict",
- "subdistrict!vn": "Ward/Commune/Townlet",
- "suburb": "Suburb",
- "suburb!jp": "Ward",
- "unit": "Unit"
- }
- }
- },
- "admin_level": {
- "key": "admin_level",
- "type": "number",
- "minValue": 1,
- "label": "Admin Level"
- },
- "aerialway": {
- "key": "aerialway",
- "type": "typeCombo",
- "label": "Type"
- },
- "aerialway/access": {
- "key": "aerialway:access",
- "type": "combo",
- "label": "Access",
- "strings": {
- "options": {
- "entry": "Entry",
- "exit": "Exit",
- "both": "Both"
- }
- }
- },
- "aerialway/bubble": {
- "key": "aerialway:bubble",
- "type": "check",
- "label": "Bubble"
- },
- "aerialway/capacity": {
- "key": "aerialway:capacity",
- "type": "number",
- "minValue": 0,
- "label": "Capacity (per hour)",
- "placeholder": "500, 2500, 5000..."
- },
- "aerialway/duration": {
- "key": "aerialway:duration",
- "type": "number",
- "minValue": 0,
- "label": "Duration (minutes)",
- "placeholder": "1, 2, 3..."
- },
- "aerialway/heating": {
- "key": "aerialway:heating",
- "type": "check",
- "label": "Heated"
- },
- "aerialway/occupancy": {
- "key": "aerialway:occupancy",
- "type": "number",
- "minValue": 0,
- "label": "Occupancy",
- "placeholder": "2, 4, 8..."
- },
- "aerialway/summer/access": {
- "key": "aerialway:summer:access",
- "type": "combo",
- "label": "Access (summer)",
- "strings": {
- "options": {
- "entry": "Entry",
- "exit": "Exit",
- "both": "Both"
- }
- }
- },
- "aeroway": {
- "key": "aeroway",
- "type": "typeCombo",
- "label": "Type"
- },
- "agrarian": {
- "key": "agrarian",
- "type": "semiCombo",
- "label": "Products"
- },
- "amenity": {
- "key": "amenity",
- "type": "typeCombo",
- "label": "Type"
- },
- "animal_boarding": {
- "key": "animal_boarding",
- "type": "semiCombo",
- "label": "For Animals"
- },
- "animal_breeding": {
- "key": "animal_breeding",
- "type": "semiCombo",
- "label": "For Animals"
- },
- "animal_shelter": {
- "key": "animal_shelter",
- "type": "semiCombo",
- "label": "For Animals"
- },
- "area/highway": {
- "key": "area:highway",
- "type": "typeCombo",
- "label": "Type"
- },
- "artist": {
- "key": "artist_name",
- "type": "text",
- "label": "Artist"
- },
- "artwork_type": {
- "key": "artwork_type",
- "type": "combo",
- "label": "Type"
- },
- "atm": {
- "key": "atm",
- "type": "check",
- "label": "ATM"
- },
- "backrest": {
- "key": "backrest",
- "type": "check",
- "label": "Backrest"
- },
- "barrier": {
- "key": "barrier",
- "type": "typeCombo",
- "label": "Type"
- },
- "bath/open_air": {
- "key": "bath:open_air",
- "label": "Open Air",
- "type": "check"
- },
- "bath/sand_bath": {
- "key": "bath:sand_bath",
- "label": "Sand Bath",
- "type": "check"
- },
- "bath/type": {
- "key": "bath:type",
- "type": "combo",
- "label": "Specialty",
- "strings": {
- "options": {
- "onsen": "Japanese Onsen",
- "foot_bath": "Foot Bath",
- "hot_spring": "Hot Spring"
- }
- }
- },
- "beauty": {
- "key": "beauty",
- "type": "combo",
- "label": "Shop Type"
- },
- "bench": {
- "key": "bench",
- "type": "check",
- "label": "Bench"
- },
- "bicycle_parking": {
- "key": "bicycle_parking",
- "type": "combo",
- "label": "Type"
- },
- "bin": {
- "key": "bin",
- "type": "check",
- "label": "Waste Bin"
- },
- "blood_components": {
- "key": "blood:",
- "type": "multiCombo",
- "label": "Blood Components",
- "strings": {
- "options": {
- "whole": "whole blood",
- "plasma": "plasma",
- "platelets": "platelets",
- "stemcells": "stem cell samples"
- }
- }
- },
- "board_type": {
- "key": "board_type",
- "type": "typeCombo",
- "label": "Type"
- },
- "boules": {
- "key": "boules",
- "type": "typeCombo",
- "label": "Type"
- },
- "boundary": {
- "key": "boundary",
- "type": "combo",
- "label": "Type"
- },
- "brand": {
- "key": "brand",
- "type": "text",
- "label": "Brand"
- },
- "brewery": {
- "key": "brewery",
- "type": "semiCombo",
- "label": "Draft Beers"
- },
- "bridge": {
- "key": "bridge",
- "type": "typeCombo",
- "label": "Type",
- "placeholder": "Default"
- },
- "building_area": {
- "key": "building",
- "type": "combo",
- "default": "yes",
- "geometry": "area",
- "label": "Building"
- },
- "building": {
- "key": "building",
- "type": "combo",
- "label": "Building"
- },
- "bunker_type": {
- "key": "bunker_type",
- "type": "combo",
- "label": "Type"
- },
- "cables": {
- "key": "cables",
- "type": "number",
- "minValue": 1,
- "label": "Cables",
- "placeholder": "1, 2, 3..."
- },
- "camera/direction": {
- "key": "camera:direction",
- "type": "number",
- "label": "Direction (Degrees Clockwise)",
- "placeholder": "45, 90, 180, 270"
- },
- "camera/mount": {
- "key": "camera:mount",
- "type": "combo",
- "label": "Camera Mount"
- },
- "camera/type": {
- "key": "camera:type",
- "type": "combo",
- "label": "Camera Type",
- "strings": {
- "options": {
- "fixed": "Fixed",
- "panning": "Panning",
- "dome": "Dome"
- }
- }
- },
- "capacity": {
- "key": "capacity",
- "type": "number",
- "minValue": 0,
- "label": "Capacity",
- "placeholder": "50, 100, 200..."
- },
- "castle_type": {
- "key": "castle_type",
- "type": "combo",
- "label": "Type"
- },
- "clothes": {
- "key": "clothes",
- "type": "semiCombo",
- "label": "Clothes"
- },
- "club": {
- "key": "club",
- "type": "typeCombo",
- "label": "Type"
- },
- "collection_times": {
- "key": "collection_times",
- "type": "text",
- "label": "Collection Times"
- },
- "comment": {
- "key": "comment",
- "type": "textarea",
- "label": "Changeset Comment",
- "placeholder": "Brief description of your contributions (required)"
- },
- "communication_multi": {
- "key": "communication:",
- "type": "multiCombo",
- "label": "Communication Types"
- },
- "construction": {
- "key": "construction",
- "type": "combo",
- "label": "Type"
- },
- "contact/webcam": {
- "key": "contact:webcam",
- "type": "url",
- "icon": "website",
- "label": "Webcam URL",
- "placeholder": "http://example.com/"
- },
- "content": {
- "key": "content",
- "type": "combo",
- "label": "Content"
- },
- "country": {
- "key": "country",
- "type": "combo",
- "label": "Country"
- },
- "covered": {
- "key": "covered",
- "type": "check",
- "label": "Covered"
- },
- "craft": {
- "key": "craft",
- "type": "typeCombo",
- "label": "Type"
- },
- "crane/type": {
- "key": "crane:type",
- "type": "combo",
- "label": "Crane Type",
- "strings": {
- "options": {
- "portal_crane": "Portal Crane",
- "floor-mounted_crane": "Floor-mounted Crane",
- "travel_lift": "Travel Lift"
- }
- }
- },
- "crop": {
- "key": "crop",
- "type": "semiCombo",
- "label": "Crops"
- },
- "crossing": {
- "key": "crossing",
- "type": "combo",
- "label": "Type"
- },
- "cuisine": {
- "key": "cuisine",
- "type": "semiCombo",
- "label": "Cuisines"
- },
- "currency_multi": {
- "key": "currency:",
- "type": "multiCombo",
- "label": "Currency Types"
- },
- "cutting": {
- "key": "cutting",
- "type": "typeCombo",
- "label": "Type",
- "placeholder": "Default"
- },
- "cycle_network": {
- "key": "cycle_network",
- "type": "networkCombo",
- "label": "Network"
- },
- "cycleway": {
- "keys": [
- "cycleway:left",
- "cycleway:right"
- ],
- "reference": {
- "key": "cycleway"
- },
- "type": "cycleway",
- "label": "Bike Lanes",
- "placeholder": "none",
- "strings": {
- "types": {
- "cycleway:left": "Left side",
- "cycleway:right": "Right side"
- },
- "options": {
- "none": {
- "title": "None",
- "description": "No bike lane"
- },
- "lane": {
- "title": "Standard bike lane",
- "description": "A bike lane separated from auto traffic by a painted line"
- },
- "shared_lane": {
- "title": "Shared bike lane",
- "description": "A bike lane with no separation from auto traffic"
- },
- "track": {
- "title": "Bike track",
- "description": "A bike lane separated from traffic by a physical barrier"
- },
- "share_busway": {
- "title": "Bike lane shared with bus",
- "description": "A bike lane shared with a bus lane"
- },
- "opposite_lane": {
- "title": "Opposite bike lane",
- "description": "A bike lane that travels in the opposite direction of traffic"
- },
- "opposite": {
- "title": "Contraflow bike lane",
- "description": "A bike lane that travels in both directions on a one-way street"
- }
- }
- }
- },
- "dance/style": {
- "key": "dance:style",
- "type": "semiCombo",
- "label": "Dance Styles"
- },
- "date": {
- "key": "date",
- "type": "check",
- "label": "Date"
- },
- "delivery": {
- "key": "delivery",
- "type": "check",
- "label": "Delivery"
- },
- "denomination": {
- "key": "denomination",
- "type": "combo",
- "label": "Denomination"
- },
- "denotation": {
- "key": "denotation",
- "type": "combo",
- "label": "Denotation"
- },
- "description": {
- "key": "description",
- "type": "textarea",
- "label": "Description",
- "universal": true
- },
- "devices": {
- "key": "devices",
- "type": "number",
- "minValue": 0,
- "label": "Devices",
- "placeholder": "1, 2, 3..."
- },
- "diaper": {
- "key": "diaper",
- "type": "combo",
- "label": "Diaper Changing Available",
- "options": [
- "yes",
- "no",
- "room",
- "1",
- "2",
- "3",
- "4",
- "5"
- ]
- },
- "direction_cardinal": {
- "key": "direction",
- "type": "combo",
- "label": "Direction",
- "strings": {
- "options": {
- "N": "North",
- "E": "East",
- "S": "South",
- "W": "West",
- "NE": "Northeast",
- "SE": "Southeast",
- "SW": "Southwest",
- "NW": "Northwest",
- "NNE": "North-northeast",
- "ENE": "East-northeast",
- "ESE": "East-southeast",
- "SSE": "South-southeast",
- "SSW": "South-southwest",
- "WSW": "West-southwest",
- "WNW": "West-northwest",
- "NNW": "North-northwest"
- }
- }
- },
- "direction_clock": {
- "key": "direction",
- "type": "combo",
- "label": "Direction",
- "strings": {
- "options": {
- "clockwise": "Clockwise",
- "anticlockwise": "Counterclockwise"
- }
- }
- },
- "direction_vertex": {
- "key": "direction",
- "type": "combo",
- "label": "Direction",
- "strings": {
- "options": {
- "forward": "Forward",
- "backward": "Backward",
- "both": "Both / All"
- }
- }
- },
- "direction": {
- "key": "direction",
- "type": "number",
- "label": "Direction (Degrees Clockwise)",
- "placeholder": "45, 90, 180, 270"
- },
- "dispensing": {
- "key": "dispensing",
- "type": "check",
- "label": "Dispenses Prescriptions",
- "default": "yes"
- },
- "display": {
- "key": "display",
- "type": "combo",
- "label": "Display",
- "options": [
- "analog",
- "digital",
- "sundial",
- "unorthodox"
- ]
- },
- "distance": {
- "key": "distance",
- "type": "text",
- "label": "Total Distance"
- },
- "dock": {
- "key": "dock",
- "type": "combo",
- "label": "Type"
- },
- "drive_through": {
- "key": "drive_through",
- "type": "check",
- "label": "Drive-Through"
- },
- "duration": {
- "key": "duration",
- "type": "text",
- "label": "Duration",
- "placeholder": "00:00"
- },
- "electrified": {
- "key": "electrified",
- "type": "combo",
- "label": "Electrification",
- "placeholder": "Contact Line, Electrified Rail...",
- "strings": {
- "options": {
- "contact_line": "Contact Line",
- "rail": "Electrified Rail",
- "yes": "Yes (unspecified)",
- "no": "No"
- }
- }
- },
- "elevation": {
- "key": "ele",
- "type": "number",
- "icon": "elevation",
- "universal": true,
- "label": "Elevation"
- },
- "email": {
- "key": "email",
- "type": "email",
- "placeholder": "example@example.com",
- "universal": true,
- "label": "Email"
- },
- "embankment": {
- "key": "embankment",
- "type": "typeCombo",
- "label": "Type",
- "placeholder": "Default"
- },
- "emergency": {
- "key": "emergency",
- "type": "check",
- "label": "Emergency"
- },
- "entrance": {
- "key": "entrance",
- "type": "typeCombo",
- "label": "Type"
- },
- "except": {
- "key": "except",
- "type": "combo",
- "label": "Exceptions"
- },
- "faces": {
- "key": "faces",
- "type": "number",
- "minValue": 0,
- "label": "Faces"
- },
- "fax": {
- "key": "fax",
- "type": "tel",
- "label": "Fax",
- "universal": true,
- "placeholder": "+31 42 123 4567"
- },
- "fee": {
- "key": "fee",
- "type": "check",
- "label": "Fee"
- },
- "fence_type": {
- "key": "fence_type",
- "type": "combo",
- "label": "Type"
- },
- "fire_hydrant/position": {
- "key": "fire_hydrant:position",
- "type": "combo",
- "label": "Position",
- "strings": {
- "options": {
- "lane": "Lane",
- "parking_lot": "Parking Lot",
- "sidewalk": "Sidewalk",
- "green": "Green"
- }
- }
- },
- "fire_hydrant/type": {
- "key": "fire_hydrant:type",
- "type": "combo",
- "label": "Type",
- "strings": {
- "options": {
- "pillar": "Pillar/Aboveground",
- "underground": "Underground",
- "wall": "Wall",
- "pond": "Pond"
- }
- }
- },
- "fitness_station": {
- "key": "fitness_station",
- "type": "typeCombo",
- "label": "Equipment Type"
- },
- "fixme": {
- "key": "fixme",
- "type": "textarea",
- "label": "Fix Me",
- "universal": true
- },
- "ford": {
- "key": "ford",
- "type": "typeCombo",
- "label": "Type",
- "placeholder": "Default"
- },
- "frequency": {
- "key": "frequency",
- "type": "combo",
- "label": "Operating Frequency"
- },
- "fuel_multi": {
- "key": "fuel:",
- "type": "multiCombo",
- "label": "Fuel Types"
- },
- "fuel": {
- "key": "fuel",
- "type": "combo",
- "label": "Fuel"
- },
- "gauge": {
- "key": "gauge",
- "type": "combo",
- "label": "Gauge"
- },
- "gender": {
- "type": "radio",
- "keys": [
- "male",
- "female",
- "unisex"
- ],
- "label": "Gender",
- "placeholder": "Unknown",
- "strings": {
- "options": {
- "male": "Male",
- "female": "Female",
- "unisex": "Unisex"
- }
- }
- },
- "generator/method": {
- "key": "generator:method",
- "type": "combo",
- "label": "Method"
- },
- "generator/output/electricity": {
- "key": "generator:output:electricity",
- "type": "text",
- "label": "Power Output",
- "placeholder": "50 MW, 100 MW, 200 MW..."
- },
- "generator/source": {
- "key": "generator:source",
- "type": "combo",
- "label": "Source"
- },
- "generator/type": {
- "key": "generator:type",
- "type": "combo",
- "label": "Type"
- },
- "government": {
- "key": "government",
- "type": "typeCombo",
- "label": "Type"
- },
- "grape_variety": {
- "key": "grape_variety",
- "type": "semiCombo",
- "label": "Grape Varieties"
- },
- "handicap": {
- "key": "handicap",
- "type": "number",
- "label": "Handicap",
- "placeholder": "1-18"
- },
- "handrail": {
- "key": "handrail",
- "type": "check",
- "label": "Handrail"
- },
- "hashtags": {
- "key": "hashtags",
- "type": "semiCombo",
- "label": "Suggested Hashtags",
- "placeholder": "#example"
- },
- "healthcare": {
- "key": "healthcare",
- "type": "typeCombo",
- "label": "Type"
- },
- "healthcare/speciality": {
- "key": "healthcare:speciality",
- "type": "semiCombo",
- "reference": {
- "key": "healthcare"
- },
- "label": "Specialties"
- },
- "height": {
- "key": "height",
- "minValue": 0,
- "type": "number",
- "label": "Height (Meters)"
- },
- "highway": {
- "key": "highway",
- "type": "typeCombo",
- "label": "Type"
- },
- "historic": {
- "key": "historic",
- "type": "typeCombo",
- "label": "Type"
- },
- "historic/civilization": {
- "key": "historic:civilization",
- "type": "combo",
- "label": "Historic Civilization"
- },
- "hoops": {
- "key": "hoops",
- "type": "number",
- "minValue": 0,
- "label": "Hoops",
- "placeholder": "1, 2, 4..."
- },
- "horse_dressage": {
- "key": "sport",
- "type": "check",
- "label": "Dressage Riding",
- "strings": {
- "options": {
- "undefined": "No",
- "equestrian": "Yes"
- }
- },
- "reference": {
- "key": "sport",
- "value": "equestrian"
- }
- },
- "horse_riding": {
- "key": "leisure",
- "type": "check",
- "label": "Horseback Riding",
- "strings": {
- "options": {
- "undefined": "No",
- "horse_riding": "Yes"
- }
- },
- "reference": {
- "key": "leisure",
- "value": "horse_riding"
- }
- },
- "horse_scale": {
- "key": "horse_scale",
- "type": "combo",
- "label": "Horseback Riding Difficulty",
- "placeholder": "Difficult, Dangerous...",
- "strings": {
- "options": {
- "common": "Easy: No problems or difficulties. (default)",
- "demanding": "Use with caution: Uneven way, occasional difficult passages.",
- "difficult": "Difficult: Way narrow and exposed. May contain obstacles to step over and narrow passages.",
- "critical": "Borderline: Passable only for experienced riders and horses. Major obstacles. Bridges should be examined carefully.",
- "dangerous": "Dangerous: Passable only for very experienced riders and horses and only in good weather. Dismount.",
- "impossible": "Impassable: Way or bridge not passable for horses. Too narrow, insuffient support, obstacles like ladders. Danger of life."
- }
- }
- },
- "horse_stables": {
- "key": "amenity",
- "type": "check",
- "label": "Riding Stable",
- "strings": {
- "options": {
- "undefined": "No",
- "stables": "Yes"
- }
- },
- "reference": {
- "key": "amenity",
- "value": "stables"
- }
- },
- "iata": {
- "key": "iata",
- "type": "text",
- "label": "IATA"
- },
- "icao": {
- "key": "icao",
- "type": "text",
- "label": "ICAO"
- },
- "incline_steps": {
- "key": "incline",
- "type": "combo",
- "label": "Incline",
- "strings": {
- "options": {
- "up": "Up",
- "down": "Down"
- }
- }
- },
- "incline": {
- "key": "incline",
- "type": "combo",
- "label": "Incline"
- },
- "indoor": {
- "key": "indoor",
- "type": "check",
- "label": "Indoor"
- },
- "industrial": {
- "key": "industrial",
- "type": "combo",
- "label": "Type"
- },
- "information": {
- "key": "information",
- "type": "typeCombo",
- "label": "Type"
- },
- "inscription": {
- "key": "inscription",
- "type": "textarea",
- "label": "Inscription"
- },
- "intermittent": {
- "key": "intermittent",
- "type": "check",
- "label": "Intermittent"
- },
- "internet_access": {
- "key": "internet_access",
- "type": "combo",
- "label": "Internet Access",
- "strings": {
- "options": {
- "yes": "Yes",
- "no": "No",
- "wlan": "Wifi",
- "wired": "Wired",
- "terminal": "Terminal"
- }
- }
- },
- "internet_access/fee": {
- "key": "internet_access:fee",
- "type": "check",
- "label": "Internet Access Fee"
- },
- "internet_access/ssid": {
- "key": "internet_access:ssid",
- "type": "text",
- "label": "SSID (Network Name)"
- },
- "kerb": {
- "key": "kerb",
- "type": "combo",
- "label": "Curb"
- },
- "label": {
- "key": "label",
- "type": "textarea",
- "label": "Label"
- },
- "lamp_type": {
- "key": "lamp_type",
- "type": "combo",
- "label": "Type"
- },
- "landuse": {
- "key": "landuse",
- "type": "typeCombo",
- "label": "Type"
- },
- "lanes": {
- "key": "lanes",
- "type": "number",
- "minValue": 0,
- "label": "Lanes",
- "placeholder": "1, 2, 3..."
- },
- "layer": {
- "key": "layer",
- "type": "number",
- "label": "Layer",
- "placeholder": "0"
- },
- "leaf_cycle_singular": {
- "key": "leaf_cycle",
- "type": "combo",
- "label": "Leaf Cycle",
- "strings": {
- "options": {
- "evergreen": "Evergreen",
- "deciduous": "Deciduous",
- "semi_evergreen": "Semi-Evergreen",
- "semi_deciduous": "Semi-Deciduous"
- }
- }
- },
- "leaf_cycle": {
- "key": "leaf_cycle",
- "type": "combo",
- "label": "Leaf Cycle",
- "strings": {
- "options": {
- "evergreen": "Evergreen",
- "deciduous": "Deciduous",
- "semi_evergreen": "Semi-Evergreen",
- "semi_deciduous": "Semi-Deciduous",
- "mixed": "Mixed"
- }
- }
- },
- "leaf_type_singular": {
- "key": "leaf_type",
- "type": "combo",
- "label": "Leaf Type",
- "strings": {
- "options": {
- "broadleaved": "Broadleaved",
- "needleleaved": "Needleleaved",
- "leafless": "Leafless"
- }
- }
- },
- "leaf_type": {
- "key": "leaf_type",
- "type": "combo",
- "label": "Leaf Type",
- "strings": {
- "options": {
- "broadleaved": "Broadleaved",
- "needleleaved": "Needleleaved",
- "mixed": "Mixed",
- "leafless": "Leafless"
- }
- }
- },
- "leisure": {
- "key": "leisure",
- "type": "typeCombo",
- "label": "Type"
- },
- "length": {
- "key": "length",
- "type": "number",
- "minValue": 0,
- "label": "Length (Meters)"
- },
- "level": {
- "key": "level",
- "type": "combo",
- "label": "Level",
- "universal": true
- },
- "levels": {
- "key": "building:levels",
- "type": "number",
- "minValue": 0,
- "label": "Levels",
- "placeholder": "2, 4, 6..."
- },
- "lit": {
- "key": "lit",
- "type": "check",
- "label": "Lit"
- },
- "location": {
- "key": "location",
- "type": "combo",
- "label": "Location"
- },
- "man_made": {
- "key": "man_made",
- "type": "typeCombo",
- "label": "Type"
- },
- "manhole": {
- "key": "manhole",
- "type": "typeCombo",
- "label": "Type"
- },
- "map_size": {
- "key": "map_size",
- "type": "typeCombo",
- "label": "Coverage"
- },
- "map_type": {
- "key": "map_type",
- "type": "typeCombo",
- "label": "Type"
- },
- "maxheight": {
- "key": "maxheight",
- "type": "combo",
- "label": "Max Height",
- "placeholder": "4, 4.5, 5, 14'0\", 14'6\", 15'0\"",
- "snake_case": false
- },
- "maxspeed": {
- "key": "maxspeed",
- "type": "maxspeed",
- "label": "Speed Limit",
- "placeholder": "40, 50, 60..."
- },
- "maxspeed/advisory": {
- "key": "maxspeed:advisory",
- "type": "maxspeed",
- "label": "Advisory Speed Limit",
- "placeholder": "40, 50, 60..."
- },
- "maxstay": {
- "key": "maxstay",
- "type": "combo",
- "label": "Max Stay",
- "options": [
- "15 min",
- "30 min",
- "45 min",
- "1 hr",
- "1.5 hr",
- "2 hr",
- "2.5 hr",
- "3 hr",
- "4 hr",
- "1 day",
- "2 day"
- ],
- "snake_case": false
- },
- "maxweight": {
- "key": "maxweight",
- "type": "combo",
- "label": "Max Weight",
- "snake_case": false
- },
- "memorial": {
- "key": "memorial",
- "type": "typeCombo",
- "label": "Type"
- },
- "monitoring_multi": {
- "key": "monitoring:",
- "type": "multiCombo",
- "label": "Monitoring"
- },
- "mtb/scale": {
- "key": "mtb:scale",
- "type": "combo",
- "label": "Mountain Biking Difficulty",
- "placeholder": "0, 1, 2, 3...",
- "strings": {
- "options": {
- "0": "0: Solid gravel/packed earth, no obstacles, wide curves",
- "1": "1: Some loose surface, small obstacles, wide curves",
- "2": "2: Much loose surface, large obstacles, easy hairpins",
- "3": "3: Slippery surface, large obstacles, tight hairpins",
- "4": "4: Loose surface or boulders, dangerous hairpins",
- "5": "5: Maximum difficulty, boulder fields, landslides",
- "6": "6: Not rideable except by the very best mountain bikers"
- }
- }
- },
- "mtb/scale/imba": {
- "key": "mtb:scale:imba",
- "type": "combo",
- "label": "IMBA Trail Difficulty",
- "placeholder": "Easy, Medium, Difficult...",
- "strings": {
- "options": {
- "0": "Easiest (white circle)",
- "1": "Easy (green circle)",
- "2": "Medium (blue square)",
- "3": "Difficult (black diamond)",
- "4": "Extremely Difficult (double black diamond)"
- }
- }
- },
- "mtb/scale/uphill": {
- "key": "mtb:scale:uphill",
- "type": "combo",
- "label": "Mountain Biking Uphill Difficulty",
- "placeholder": "0, 1, 2, 3...",
- "strings": {
- "options": {
- "0": "0: Avg. incline <10%, gravel/packed earth, no obstacles",
- "1": "1: Avg. incline <15%, gravel/packed earth, few small objects",
- "2": "2: Avg. incline <20%, stable surface, fistsize rocks/roots",
- "3": "3: Avg. incline <25%, variable surface, fistsize rocks/branches",
- "4": "4: Avg. incline <30%, poor condition, big rocks/branches",
- "5": "5: Very steep, bike generally needs to be pushed or carried"
- }
- }
- },
- "name": {
- "key": "name",
- "type": "localized",
- "label": "Name",
- "universal": true,
- "placeholder": "Common name (if any)"
- },
- "natural": {
- "key": "natural",
- "type": "typeCombo",
- "label": "Natural"
- },
- "network_bicycle": {
- "key": "network",
- "type": "combo",
- "label": "Network Type",
- "placeholder": "Local, Regional, National, International",
- "strings": {
- "options": {
- "lcn": "Local",
- "rcn": "Regional",
- "ncn": "National",
- "icn": "International"
- }
- }
- },
- "network_foot": {
- "key": "network",
- "type": "combo",
- "label": "Network Type",
- "placeholder": "Local, Regional, National, International",
- "strings": {
- "options": {
- "lwn": "Local",
- "rwn": "Regional",
- "nwn": "National",
- "iwn": "International"
- }
- }
- },
- "network_horse": {
- "key": "network",
- "type": "combo",
- "label": "Network Type",
- "placeholder": "Local, Regional, National, International",
- "strings": {
- "options": {
- "lhn": "Local",
- "rhn": "Regional",
- "nhn": "National",
- "ihn": "International"
- }
- }
- },
- "network_road": {
- "key": "network",
- "type": "networkCombo",
- "label": "Network"
- },
- "network": {
- "key": "network",
- "type": "text",
- "label": "Network"
- },
- "note": {
- "key": "note",
- "type": "textarea",
- "universal": true,
- "icon": "note",
- "label": "Note"
- },
- "office": {
- "key": "office",
- "type": "typeCombo",
- "label": "Type"
- },
- "oneway_yes": {
- "key": "oneway",
- "type": "onewayCheck",
- "label": "One Way",
- "strings": {
- "options": {
- "undefined": "Assumed to be Yes",
- "yes": "Yes",
- "no": "No",
- "reversible": "Reversible",
- "alternating": "Alternating"
- }
- }
- },
- "oneway": {
- "key": "oneway",
- "type": "onewayCheck",
- "label": "One Way",
- "strings": {
- "options": {
- "undefined": "Assumed to be No",
- "yes": "Yes",
- "no": "No",
- "reversible": "Reversible",
- "alternating": "Alternating"
- }
- }
- },
- "opening_hours": {
- "key": "opening_hours",
- "type": "combo",
- "label": "Hours",
- "snake_case": false
- },
- "operator": {
- "key": "operator",
- "type": "text",
- "label": "Operator"
- },
- "outdoor_seating": {
- "key": "outdoor_seating",
- "type": "check",
- "label": "Outdoor Seating"
- },
- "par": {
- "key": "par",
- "type": "number",
- "minValue": 1,
- "label": "Par",
- "placeholder": "3, 4, 5..."
- },
- "park_ride": {
- "key": "park_ride",
- "type": "check",
- "label": "Park and Ride"
- },
- "parking": {
- "key": "parking",
- "type": "combo",
- "label": "Type",
- "strings": {
- "options": {
- "surface": "Surface",
- "multi-storey": "Multilevel",
- "underground": "Underground",
- "sheds": "Sheds",
- "carports": "Carports",
- "garage_boxes": "Garage Boxes",
- "lane": "Roadside Lane"
- }
- }
- },
- "payment_multi": {
- "key": "payment:",
- "type": "multiCombo",
- "label": "Payment Types",
- "universal": true
- },
- "phases": {
- "key": "phases",
- "type": "number",
- "minValue": 1,
- "label": "Phases",
- "placeholder": "1, 2, 3..."
- },
- "phone": {
- "key": "phone",
- "type": "tel",
- "icon": "maki-telephone",
- "universal": true,
- "label": "Telephone",
- "placeholder": "+31 42 123 4567"
- },
- "piste/difficulty": {
- "key": "piste:difficulty",
- "type": "combo",
- "label": "Difficulty",
- "placeholder": "Easy, Intermediate, Advanced...",
- "strings": {
- "options": {
- "novice": "Novice (instructional)",
- "easy": "Easy (green circle)",
- "intermediate": "Intermediate (blue square)",
- "advanced": "Advanced (black diamond)",
- "expert": "Expert (double black diamond)",
- "freeride": "Freeride (off-piste)",
- "extreme": "Extreme (climbing equipment required)"
- }
- }
- },
- "piste/grooming": {
- "key": "piste:grooming",
- "type": "combo",
- "label": "Grooming",
- "strings": {
- "options": {
- "classic": "Classic",
- "mogul": "Mogul",
- "backcountry": "Backcountry",
- "classic+skating": "Classic and Skating",
- "scooter": "Scooter/Snowmobile",
- "skating": "Skating"
- }
- }
- },
- "piste/type": {
- "key": "piste:type",
- "type": "typeCombo",
- "label": "Type",
- "strings": {
- "options": {
- "downhill": "Downhill",
- "nordic": "Nordic",
- "skitour": "Skitour",
- "sled": "Sled",
- "hike": "Hike",
- "sleigh": "Sleigh",
- "ice_skate": "Ice Skate",
- "snow_park": "Snow Park",
- "playground": "Playground"
- }
- }
- },
- "place": {
- "key": "place",
- "type": "typeCombo",
- "label": "Type"
- },
- "plant": {
- "key": "plant",
- "type": "combo",
- "label": "Plant"
- },
- "plant/output/electricity": {
- "key": "plant:output:electricity",
- "type": "text",
- "label": "Power Output",
- "placeholder": "500 MW, 1000 MW, 2000 MW..."
- },
- "playground/baby": {
- "key": "baby",
- "type": "check",
- "label": "Baby Seat"
- },
- "playground/max_age": {
- "key": "max_age",
- "type": "number",
- "minValue": 0,
- "label": "Maximum Age"
- },
- "playground/min_age": {
- "key": "min_age",
- "type": "number",
- "minValue": 0,
- "label": "Minimum Age"
- },
- "population": {
- "key": "population",
- "type": "text",
- "label": "Population"
- },
- "power_supply": {
- "key": "power_supply",
- "type": "check",
- "label": "Power Supply"
- },
- "power": {
- "key": "power",
- "type": "typeCombo",
- "label": "Type"
- },
- "produce": {
- "key": "produce",
- "type": "semiCombo",
- "label": "Produce"
- },
- "product": {
- "key": "product",
- "type": "semiCombo",
- "label": "Products"
- },
- "railway": {
- "key": "railway",
- "type": "typeCombo",
- "label": "Type"
- },
- "railway/position": {
- "key": "railway:position",
- "type": "text",
- "placeholder": "Distance to one decimal (123.4)",
- "label": "Milestone Position"
- },
- "railway/signal/direction": {
- "key": "railway:signal:direction",
- "type": "combo",
- "label": "Direction",
- "strings": {
- "options": {
- "forward": "Forward",
- "backward": "Backward",
- "both": "Both / All"
- }
- }
- },
- "rating": {
- "key": "rating",
- "type": "combo",
- "label": "Power Rating",
- "snake_case": false
- },
- "recycling_accepts": {
- "key": "recycling:",
- "type": "multiCombo",
- "label": "Accepts"
- },
- "ref_aeroway_gate": {
- "key": "ref",
- "type": "text",
- "label": "Gate Number"
- },
- "ref_golf_hole": {
- "key": "ref",
- "type": "text",
- "label": "Hole Number",
- "placeholder": "1-18"
- },
- "ref_highway_junction": {
- "key": "ref",
- "type": "text",
- "label": "Junction Number"
- },
- "ref_platform": {
- "key": "ref",
- "type": "text",
- "label": "Platform Number"
- },
- "ref_road_number": {
- "key": "ref",
- "type": "text",
- "label": "Road Number"
- },
- "ref_route": {
- "key": "ref",
- "type": "text",
- "label": "Route Number"
- },
- "ref_runway": {
- "key": "ref",
- "type": "text",
- "label": "Runway Number",
- "placeholder": "e.g. 01L/19R"
- },
- "ref_stop_position": {
- "key": "ref",
- "type": "text",
- "label": "Stop Number"
- },
- "ref_taxiway": {
- "key": "ref",
- "type": "text",
- "label": "Taxiway Name",
- "placeholder": "e.g. A5"
- },
- "ref": {
- "key": "ref",
- "type": "text",
- "label": "Reference Code"
- },
- "ref/isil": {
- "key": "ref:isil",
- "type": "text",
- "label": "ISIL Code"
- },
- "relation": {
- "key": "type",
- "type": "combo",
- "label": "Type"
- },
- "religion": {
- "key": "religion",
- "type": "combo",
- "label": "Religion"
- },
- "restriction": {
- "key": "restriction",
- "type": "combo",
- "label": "Type"
- },
- "restrictions": {
- "type": "restrictions",
- "geometry": "vertex",
- "icon": "iD-restrictions",
- "reference": {
- "rtype": "restriction"
- },
- "label": "Turn Restrictions"
- },
- "rooms": {
- "key": "rooms",
- "type": "number",
- "minValue": 0,
- "label": "Rooms"
- },
- "route_master": {
- "key": "route_master",
- "type": "combo",
- "label": "Type"
- },
- "route": {
- "key": "route",
- "type": "combo",
- "label": "Type"
- },
- "sac_scale": {
- "key": "sac_scale",
- "type": "combo",
- "label": "Hiking Difficulty",
- "placeholder": "Mountain Hiking, Alpine Hiking...",
- "strings": {
- "options": {
- "hiking": "T1: Hiking",
- "mountain_hiking": "T2: Mountain Hiking",
- "demanding_mountain_hiking": "T3: Demanding Mountain Hiking",
- "alpine_hiking": "T4: Alpine Hiking",
- "demanding_alpine_hiking": "T5: Demanding Alpine Hiking",
- "difficult_alpine_hiking": "T6: Difficult Alpine Hiking"
- }
- }
- },
- "sanitary_dump_station": {
- "key": "sanitary_dump_station",
- "type": "check",
- "label": "Toilet Disposal"
- },
- "seasonal": {
- "key": "seasonal",
- "type": "check",
- "label": "Seasonal"
- },
- "second_hand": {
- "key": "second_hand",
- "type": "combo",
- "label": "Sells Used",
- "placeholder": "Yes, No, Only",
- "strings": {
- "options": {
- "yes": "Yes",
- "no": "No",
- "only": "Only"
- }
- }
- },
- "service_rail": {
- "key": "service",
- "type": "combo",
- "label": "Service Type",
- "strings": {
- "options": {
- "spur": "Spur",
- "yard": "Yard",
- "siding": "Siding",
- "crossover": "Crossover"
- }
- }
- },
- "service_times": {
- "key": "service_times",
- "type": "text",
- "label": "Service Times"
- },
- "service": {
- "key": "service",
- "type": "combo",
- "label": "Type",
- "options": [
- "parking_aisle",
- "driveway",
- "alley",
- "emergency_access",
- "drive-through"
- ]
- },
- "service/bicycle": {
- "key": "service:bicycle:",
- "type": "multiCombo",
- "label": "Services"
- },
- "service/vehicle": {
- "key": "service:vehicle:",
- "type": "multiCombo",
- "label": "Services"
- },
- "shelter_type": {
- "key": "shelter_type",
- "type": "combo",
- "label": "Type"
- },
- "shelter": {
- "key": "shelter",
- "type": "check",
- "label": "Shelter"
- },
- "shop": {
- "key": "shop",
- "type": "typeCombo",
- "label": "Type"
- },
- "site": {
- "key": "site",
- "type": "combo",
- "label": "Type"
- },
- "smoking": {
- "key": "smoking",
- "type": "combo",
- "label": "Smoking",
- "placeholder": "No, Separated, Yes...",
- "strings": {
- "options": {
- "no": "No smoking anywhere",
- "separated": "In smoking areas, not physically isolated",
- "isolated": "In smoking areas, physically isolated",
- "outside": "Allowed outside",
- "yes": "Allowed everywhere",
- "dedicated": "Dedicated to smokers (e.g. smokers' club)"
- }
- }
- },
- "smoothness": {
- "key": "smoothness",
- "type": "combo",
- "label": "Smoothness",
- "placeholder": "Thin Rollers, Wheels, Off-Road...",
- "strings": {
- "options": {
- "excellent": "Thin Rollers: rollerblade, skateboard",
- "good": "Thin Wheels: racing bike",
- "intermediate": "Wheels: city bike, wheelchair, scooter",
- "bad": "Robust Wheels: trekking bike, car, rickshaw",
- "very_bad": "High Clearance: light duty off-road vehicle",
- "horrible": "Off-Road: heavy duty off-road vehicle",
- "very_horrible": "Specialized off-road: tractor, ATV",
- "impassable": "Impassable / No wheeled vehicle"
- }
- }
- },
- "social_facility_for": {
- "key": "social_facility:for",
- "type": "combo",
- "label": "People Served"
- },
- "social_facility": {
- "key": "social_facility",
- "type": "combo",
- "label": "Type"
- },
- "source": {
- "key": "source",
- "type": "semiCombo",
- "icon": "source",
- "universal": true,
- "label": "Sources",
- "snake_case": false,
- "caseSensitive": true,
- "options": [
- "survey",
- "local knowledge",
- "gps",
- "aerial imagery",
- "streetlevel imagery"
- ]
- },
- "sport_ice": {
- "key": "sport",
- "type": "semiCombo",
- "label": "Sports",
- "options": [
- "skating",
- "hockey",
- "multi",
- "curling",
- "ice_stock"
- ]
- },
- "sport_racing_motor": {
- "key": "sport",
- "type": "semiCombo",
- "label": "Sports",
- "options": [
- "motor",
- "karting",
- "motocross"
- ]
- },
- "sport_racing_nonmotor": {
- "key": "sport",
- "type": "semiCombo",
- "label": "Sports",
- "options": [
- "bmx",
- "cycling",
- "dog_racing",
- "horse_racing",
- "running"
- ]
- },
- "sport": {
- "key": "sport",
- "type": "semiCombo",
- "label": "Sports"
- },
- "stars": {
- "key": "stars",
- "type": "number",
- "minValue": 0,
- "label": "Stars"
- },
- "start_date": {
- "key": "start_date",
- "type": "text",
- "universal": true,
- "label": "Start Date"
- },
- "step_count": {
- "key": "step_count",
- "type": "number",
- "minValue": 0,
- "label": "Number of Steps"
- },
- "stop": {
- "key": "stop",
- "type": "combo",
- "label": "Stop Type",
- "strings": {
- "options": {
- "all": "All Ways",
- "minor": "Minor Road"
- }
- }
- },
- "structure_waterway": {
- "type": "structureRadio",
- "keys": [
- "tunnel"
- ],
- "label": "Structure",
- "placeholder": "Unknown",
- "strings": {
- "options": {
- "tunnel": "Tunnel"
- }
- }
- },
- "structure": {
- "type": "structureRadio",
- "keys": [
- "bridge",
- "tunnel",
- "embankment",
- "cutting",
- "ford"
- ],
- "label": "Structure",
- "placeholder": "Unknown",
- "strings": {
- "options": {
- "bridge": "Bridge",
- "tunnel": "Tunnel",
- "embankment": "Embankment",
- "cutting": "Cutting",
- "ford": "Ford"
- }
- }
- },
- "studio": {
- "key": "studio",
- "type": "combo",
- "label": "Type"
- },
- "substance": {
- "key": "substance",
- "type": "combo",
- "label": "Substance"
- },
- "substation": {
- "key": "substation",
- "type": "typeCombo",
- "label": "Type"
- },
- "supervised": {
- "key": "supervised",
- "type": "check",
- "label": "Supervised"
- },
- "support": {
- "key": "support",
- "type": "combo",
- "label": "Support"
- },
- "surface": {
- "key": "surface",
- "type": "combo",
- "label": "Surface"
- },
- "surveillance": {
- "key": "surveillance",
- "type": "combo",
- "label": "Surveillance Kind"
- },
- "surveillance/type": {
- "key": "surveillance:type",
- "type": "combo",
- "label": "Surveillance Type",
- "strings": {
- "options": {
- "camera": "Camera",
- "guard": "Guard",
- "ALPR": "Automatic License Plate Reader"
- }
- }
- },
- "surveillance/zone": {
- "key": "surveillance:zone",
- "type": "combo",
- "label": "Surveillance Zone"
- },
- "switch": {
- "key": "switch",
- "type": "combo",
- "label": "Type",
- "strings": {
- "options": {
- "mechanical": "Mechanical",
- "circuit_breaker": "Circuit Breaker",
- "disconnector": "Disconnector",
- "earthing": "Earthing"
- }
- }
- },
- "tactile_paving": {
- "key": "tactile_paving",
- "type": "check",
- "label": "Tactile Paving"
- },
- "takeaway": {
- "key": "takeaway",
- "type": "combo",
- "label": "Takeaway",
- "placeholder": "Yes, No, Takeaway Only...",
- "strings": {
- "options": {
- "yes": "Yes",
- "no": "No",
- "only": "Takeaway Only"
- }
- }
- },
- "toilets/disposal": {
- "key": "toilets:disposal",
- "type": "combo",
- "label": "Disposal",
- "strings": {
- "options": {
- "flush": "Flush",
- "pitlatrine": "Pit/Latrine",
- "chemical": "Chemical",
- "bucket": "Bucket"
- }
- }
- },
- "toll": {
- "key": "toll",
- "type": "check",
- "label": "Toll"
- },
- "tomb": {
- "key": "tomb",
- "type": "typeCombo",
- "label": "Type"
- },
- "tourism_attraction": {
- "key": "tourism",
- "default": "attraction",
- "type": "typeCombo",
- "universal": true,
- "label": "Tourism"
- },
- "tourism": {
- "key": "tourism",
- "type": "typeCombo",
- "label": "Type"
- },
- "tower/construction": {
- "key": "tower:construction",
- "type": "combo",
- "label": "Construction",
- "placeholder": "Guyed, Lattice, Concealed, ..."
- },
- "tower/type": {
- "key": "tower:type",
- "type": "combo",
- "label": "Type"
- },
- "tracktype": {
- "key": "tracktype",
- "type": "combo",
- "label": "Track Type",
- "placeholder": "Solid, Mostly Solid, Soft...",
- "strings": {
- "options": {
- "grade1": "Solid: paved or heavily compacted hardcore surface",
- "grade2": "Mostly Solid: gravel/rock with some soft material mixed in",
- "grade3": "Even mixture of hard and soft materials",
- "grade4": "Mostly Soft: soil/sand/grass with some hard material mixed in",
- "grade5": "Soft: soil/sand/grass"
- }
- }
- },
- "trade": {
- "key": "trade",
- "type": "typeCombo",
- "label": "Type"
- },
- "traffic_calming": {
- "key": "traffic_calming",
- "type": "typeCombo",
- "label": "Type"
- },
- "traffic_signals": {
- "key": "traffic_signals",
- "type": "combo",
- "label": "Type",
- "default": "signal"
- },
- "traffic_signals/direction": {
- "key": "traffic_signals:direction",
- "type": "combo",
- "label": "Direction",
- "strings": {
- "options": {
- "forward": "Forward",
- "backward": "Backward",
- "both": "Both / All"
- }
- }
- },
- "trail_visibility": {
- "key": "trail_visibility",
- "type": "combo",
- "label": "Trail Visibility",
- "placeholder": "Excellent, Good, Bad...",
- "strings": {
- "options": {
- "excellent": "Excellent: unambiguous path or markers everywhere",
- "good": "Good: markers visible, sometimes require searching",
- "intermediate": "Intermediate: few markers, path mostly visible",
- "bad": "Bad: no markers, path sometimes invisible/pathless",
- "horrible": "Horrible: often pathless, some orientation skills required",
- "no": "No: pathless, excellent orientation skills required"
- }
- }
- },
- "transformer": {
- "key": "transformer",
- "type": "combo",
- "label": "Type",
- "strings": {
- "options": {
- "distribution": "Distribution",
- "generator": "Generator",
- "converter": "Converter",
- "traction": "Traction",
- "auto": "Autotransformer",
- "phase_angle_regulator": "Phase Angle Regulator",
- "auxiliary": "Auxiliary",
- "yes": "Unknown"
- }
- }
- },
- "trees": {
- "key": "trees",
- "type": "semiCombo",
- "label": "Trees"
- },
- "tunnel": {
- "key": "tunnel",
- "type": "typeCombo",
- "label": "Type",
- "placeholder": "Default"
- },
- "usage_rail": {
- "key": "usage",
- "type": "combo",
- "label": "Usage Type",
- "strings": {
- "options": {
- "main": "Main",
- "branch": "Branch",
- "industrial": "Industrial",
- "military": "Military",
- "test": "Test",
- "tourism": "Tourism"
- }
- }
- },
- "vending": {
- "key": "vending",
- "type": "semiCombo",
- "label": "Types of Goods"
- },
- "visibility": {
- "key": "visibility",
- "type": "combo",
- "label": "Visibility",
- "strings": {
- "options": {
- "house": "Up to 5m (16ft)",
- "street": "5 to 20m (16 to 65ft)",
- "area": "Over 20m (65ft)"
- }
- }
- },
- "volcano/status": {
- "key": "volcano:status",
- "type": "combo",
- "label": "Volcano Status",
- "strings": {
- "options": {
- "active": "Active",
- "dormant": "Dormant",
- "extinct": "Extinct"
- }
- }
- },
- "volcano/type": {
- "key": "volcano:type",
- "type": "combo",
- "label": "Volcano Type",
- "strings": {
- "options": {
- "stratovolcano": "Stratovolcano",
- "shield": "Shield",
- "scoria": "Scoria"
- }
- }
- },
- "voltage": {
- "key": "voltage",
- "type": "combo",
- "label": "Voltage"
- },
- "voltage/primary": {
- "key": "voltage:primary",
- "type": "combo",
- "label": "Primary Voltage"
- },
- "voltage/secondary": {
- "key": "voltage:secondary",
- "type": "combo",
- "label": "Secondary Voltage"
- },
- "voltage/tertiary": {
- "key": "voltage:tertiary",
- "type": "combo",
- "label": "Tertiary Voltage"
- },
- "wall": {
- "key": "wall",
- "type": "combo",
- "label": "Type"
- },
- "water_point": {
- "key": "water_point",
- "type": "check",
- "label": "Water Point"
- },
- "water": {
- "key": "water",
- "type": "combo",
- "label": "Type"
- },
- "waterway": {
- "key": "waterway",
- "type": "typeCombo",
- "label": "Type"
- },
- "website": {
- "key": "website",
- "type": "url",
- "icon": "website",
- "placeholder": "http://example.com/",
- "universal": true,
- "label": "Website"
- },
- "wetland": {
- "key": "wetland",
- "type": "combo",
- "label": "Type"
- },
- "wheelchair": {
- "key": "wheelchair",
- "type": "radio",
- "options": [
- "yes",
- "limited",
- "no"
- ],
- "icon": "maki-wheelchair",
- "universal": true,
- "label": "Wheelchair Access"
- },
- "wholesale": {
- "key": "wholesale",
- "type": "typeCombo",
- "label": "Wholesale"
- },
- "width": {
- "key": "width",
- "type": "number",
- "minValue": 0,
- "label": "Width (Meters)"
- },
- "wikipedia": {
- "key": "wikipedia",
- "keys": [
- "wikipedia",
- "wikidata"
- ],
- "type": "wikipedia",
- "icon": "wikipedia",
- "universal": true,
- "label": "Wikipedia"
- },
- "windings": {
- "key": "windings",
- "type": "number",
- "minValue": 1,
- "label": "Windings",
- "placeholder": "1, 2, 3..."
- },
- "windings/configuration": {
- "key": "windings:configuration",
- "type": "combo",
- "label": "Windings Configuration",
- "strings": {
- "options": {
- "star": "Star / Wye",
- "delta": "Delta",
- "open-delta": "Open Delta",
- "zigzag": "Zig Zag",
- "open": "Open",
- "scott": "Scott",
- "leblanc": "Leblanc"
- }
- }
- }
- }
+ "fields": {
+ "access_simple": {"key": "access", "type": "combo", "label": "Allowed Access", "options": ["yes", "permissive", "private", "customers", "no"]},
+ "access": {"keys": ["access", "foot", "motor_vehicle", "bicycle", "horse"], "reference": {"key": "access"}, "type": "access", "label": "Allowed Access", "placeholder": "Not Specified", "strings": {"types": {"access": "All", "foot": "Foot", "motor_vehicle": "Motor Vehicles", "bicycle": "Bicycles", "horse": "Horses"}, "options": {"yes": {"title": "Allowed", "description": "Access permitted by law; a right of way"}, "no": {"title": "Prohibited", "description": "Access not permitted to the general public"}, "permissive": {"title": "Permissive", "description": "Access permitted until such time as the owner revokes the permission"}, "private": {"title": "Private", "description": "Access permitted only with permission of the owner on an individual basis"}, "designated": {"title": "Designated", "description": "Access permitted according to signs or specific local laws"}, "destination": {"title": "Destination", "description": "Access permitted only to reach a destination"}, "dismount": {"title": "Dismount", "description": "Access permitted but rider must dismount"}}}},
+ "address": {"type": "address", "keys": ["addr:block_number", "addr:city", "addr:block_number", "addr:conscriptionnumber", "addr:county", "addr:country", "addr:county", "addr:district", "addr:floor", "addr:hamlet", "addr:housename", "addr:housenumber", "addr:neighbourhood", "addr:place", "addr:postcode", "addr:province", "addr:quarter", "addr:state", "addr:street", "addr:subdistrict", "addr:suburb", "addr:unit"], "reference": {"key": "addr"}, "icon": "address", "universal": true, "label": "Address", "strings": {"placeholders": {"block_number": "Block Number", "block_number!jp": "Block No.", "city": "City", "city!jp": "City/Town/Village/Tokyo Special Ward", "city!vn": "City/Town", "conscriptionnumber": "123", "country": "Country", "county": "County", "county!jp": "District", "district": "District", "district!vn": "Arrondissement/Town/District", "floor": "Floor", "hamlet": "Hamlet", "housename": "Housename", "housenumber": "123", "housenumber!jp": "Building No./Lot No.", "neighbourhood": "Neighbourhood", "neighbourhood!jp": "Chōme/Aza/Koaza", "place": "Place", "postcode": "Postcode", "province": "Province", "province!jp": "Prefecture", "quarter": "Quarter", "quarter!jp": "Ōaza/Machi", "state": "State", "street": "Street", "subdistrict": "Subdistrict", "subdistrict!vn": "Ward/Commune/Townlet", "suburb": "Suburb", "suburb!jp": "Ward", "unit": "Unit"}}},
+ "admin_level": {"key": "admin_level", "type": "number", "minValue": 1, "label": "Admin Level"},
+ "aerialway": {"key": "aerialway", "type": "typeCombo", "label": "Type"},
+ "aerialway/access": {"key": "aerialway:access", "type": "combo", "label": "Access", "strings": {"options": {"entry": "Entry", "exit": "Exit", "both": "Both"}}},
+ "aerialway/bubble": {"key": "aerialway:bubble", "type": "check", "label": "Bubble"},
+ "aerialway/capacity": {"key": "aerialway:capacity", "type": "number", "minValue": 0, "label": "Capacity (per hour)", "placeholder": "500, 2500, 5000..."},
+ "aerialway/duration": {"key": "aerialway:duration", "type": "number", "minValue": 0, "label": "Duration (minutes)", "placeholder": "1, 2, 3..."},
+ "aerialway/heating": {"key": "aerialway:heating", "type": "check", "label": "Heated"},
+ "aerialway/occupancy": {"key": "aerialway:occupancy", "type": "number", "minValue": 0, "label": "Occupancy", "placeholder": "2, 4, 8..."},
+ "aerialway/summer/access": {"key": "aerialway:summer:access", "type": "combo", "label": "Access (summer)", "strings": {"options": {"entry": "Entry", "exit": "Exit", "both": "Both"}}},
+ "aeroway": {"key": "aeroway", "type": "typeCombo", "label": "Type"},
+ "agrarian": {"key": "agrarian", "type": "semiCombo", "label": "Products"},
+ "amenity": {"key": "amenity", "type": "typeCombo", "label": "Type"},
+ "animal_boarding": {"key": "animal_boarding", "type": "semiCombo", "label": "For Animals"},
+ "animal_breeding": {"key": "animal_breeding", "type": "semiCombo", "label": "For Animals"},
+ "animal_shelter": {"key": "animal_shelter", "type": "semiCombo", "label": "For Animals"},
+ "area/highway": {"key": "area:highway", "type": "typeCombo", "label": "Type"},
+ "artist": {"key": "artist_name", "type": "text", "label": "Artist"},
+ "artwork_type": {"key": "artwork_type", "type": "combo", "label": "Type"},
+ "atm": {"key": "atm", "type": "check", "label": "ATM"},
+ "backrest": {"key": "backrest", "type": "check", "label": "Backrest"},
+ "barrier": {"key": "barrier", "type": "typeCombo", "label": "Type"},
+ "bath/open_air": {"key": "bath:open_air", "label": "Open Air", "type": "check"},
+ "bath/sand_bath": {"key": "bath:sand_bath", "label": "Sand Bath", "type": "check"},
+ "bath/type": {"key": "bath:type", "type": "combo", "label": "Specialty", "strings": {"options": {"onsen": "Japanese Onsen", "foot_bath": "Foot Bath", "hot_spring": "Hot Spring"}}},
+ "beauty": {"key": "beauty", "type": "combo", "label": "Shop Type"},
+ "bench": {"key": "bench", "type": "check", "label": "Bench"},
+ "bicycle_parking": {"key": "bicycle_parking", "type": "combo", "label": "Type"},
+ "bin": {"key": "bin", "type": "check", "label": "Waste Bin"},
+ "blood_components": {"key": "blood:", "type": "multiCombo", "label": "Blood Components", "strings": {"options": {"whole": "whole blood", "plasma": "plasma", "platelets": "platelets", "stemcells": "stem cell samples"}}},
+ "board_type": {"key": "board_type", "type": "typeCombo", "label": "Type"},
+ "boules": {"key": "boules", "type": "typeCombo", "label": "Type"},
+ "boundary": {"key": "boundary", "type": "combo", "label": "Type"},
+ "brand": {"key": "brand", "type": "text", "label": "Brand"},
+ "brewery": {"key": "brewery", "type": "semiCombo", "label": "Draft Beers"},
+ "bridge": {"key": "bridge", "type": "typeCombo", "label": "Type", "placeholder": "Default"},
+ "building_area": {"key": "building", "type": "combo", "default": "yes", "geometry": "area", "label": "Building"},
+ "building": {"key": "building", "type": "combo", "label": "Building"},
+ "bunker_type": {"key": "bunker_type", "type": "combo", "label": "Type"},
+ "cables": {"key": "cables", "type": "number", "minValue": 1, "label": "Cables", "placeholder": "1, 2, 3..."},
+ "camera/direction": {"key": "camera:direction", "type": "number", "label": "Direction (Degrees Clockwise)", "placeholder": "45, 90, 180, 270"},
+ "camera/mount": {"key": "camera:mount", "type": "combo", "label": "Camera Mount"},
+ "camera/type": {"key": "camera:type", "type": "combo", "label": "Camera Type", "strings": {"options": {"fixed": "Fixed", "panning": "Panning", "dome": "Dome"}}},
+ "capacity": {"key": "capacity", "type": "number", "minValue": 0, "label": "Capacity", "placeholder": "50, 100, 200..."},
+ "castle_type": {"key": "castle_type", "type": "combo", "label": "Type"},
+ "clothes": {"key": "clothes", "type": "semiCombo", "label": "Clothes"},
+ "club": {"key": "club", "type": "typeCombo", "label": "Type"},
+ "collection_times": {"key": "collection_times", "type": "text", "label": "Collection Times"},
+ "comment": {"key": "comment", "type": "textarea", "label": "Changeset Comment", "placeholder": "Brief description of your contributions (required)"},
+ "communication_multi": {"key": "communication:", "type": "multiCombo", "label": "Communication Types"},
+ "construction": {"key": "construction", "type": "combo", "label": "Type"},
+ "contact/webcam": {"key": "contact:webcam", "type": "url", "icon": "website", "label": "Webcam URL", "placeholder": "http://example.com/"},
+ "content": {"key": "content", "type": "combo", "label": "Content"},
+ "country": {"key": "country", "type": "combo", "label": "Country"},
+ "covered": {"key": "covered", "type": "check", "label": "Covered"},
+ "craft": {"key": "craft", "type": "typeCombo", "label": "Type"},
+ "crane/type": {"key": "crane:type", "type": "combo", "label": "Crane Type", "strings": {"options": {"portal_crane": "Portal Crane", "floor-mounted_crane": "Floor-mounted Crane", "travel_lift": "Travel Lift"}}},
+ "crop": {"key": "crop", "type": "semiCombo", "label": "Crops"},
+ "crossing": {"key": "crossing", "type": "combo", "label": "Type"},
+ "cuisine": {"key": "cuisine", "type": "semiCombo", "label": "Cuisines"},
+ "currency_multi": {"key": "currency:", "type": "multiCombo", "label": "Currency Types"},
+ "cutting": {"key": "cutting", "type": "typeCombo", "label": "Type", "placeholder": "Default"},
+ "cycle_network": {"key": "cycle_network", "type": "networkCombo", "label": "Network"},
+ "cycleway": {"keys": ["cycleway:left", "cycleway:right"], "reference": {"key": "cycleway"}, "type": "cycleway", "label": "Bike Lanes", "placeholder": "none", "strings": {"types": {"cycleway:left": "Left side", "cycleway:right": "Right side"}, "options": {"none": {"title": "None", "description": "No bike lane"}, "lane": {"title": "Standard bike lane", "description": "A bike lane separated from auto traffic by a painted line"}, "shared_lane": {"title": "Shared bike lane", "description": "A bike lane with no separation from auto traffic"}, "track": {"title": "Bike track", "description": "A bike lane separated from traffic by a physical barrier"}, "share_busway": {"title": "Bike lane shared with bus", "description": "A bike lane shared with a bus lane"}, "opposite_lane": {"title": "Opposite bike lane", "description": "A bike lane that travels in the opposite direction of traffic"}, "opposite": {"title": "Contraflow bike lane", "description": "A bike lane that travels in both directions on a one-way street"}}}},
+ "dance/style": {"key": "dance:style", "type": "semiCombo", "label": "Dance Styles"},
+ "date": {"key": "date", "type": "check", "label": "Date"},
+ "delivery": {"key": "delivery", "type": "check", "label": "Delivery"},
+ "denomination": {"key": "denomination", "type": "combo", "label": "Denomination"},
+ "denotation": {"key": "denotation", "type": "combo", "label": "Denotation"},
+ "description": {"key": "description", "type": "textarea", "label": "Description", "universal": true},
+ "devices": {"key": "devices", "type": "number", "minValue": 0, "label": "Devices", "placeholder": "1, 2, 3..."},
+ "diaper": {"key": "diaper", "type": "combo", "label": "Diaper Changing Available", "options": ["yes", "no", "room", "1", "2", "3", "4", "5"]},
+ "direction_cardinal": {"key": "direction", "type": "combo", "label": "Direction", "strings": {"options": {"N": "North", "E": "East", "S": "South", "W": "West", "NE": "Northeast", "SE": "Southeast", "SW": "Southwest", "NW": "Northwest", "NNE": "North-northeast", "ENE": "East-northeast", "ESE": "East-southeast", "SSE": "South-southeast", "SSW": "South-southwest", "WSW": "West-southwest", "WNW": "West-northwest", "NNW": "North-northwest"}}},
+ "direction_clock": {"key": "direction", "type": "combo", "label": "Direction", "strings": {"options": {"clockwise": "Clockwise", "anticlockwise": "Counterclockwise"}}},
+ "direction_vertex": {"key": "direction", "type": "combo", "label": "Direction", "strings": {"options": {"forward": "Forward", "backward": "Backward", "both": "Both / All"}}},
+ "direction": {"key": "direction", "type": "number", "label": "Direction (Degrees Clockwise)", "placeholder": "45, 90, 180, 270"},
+ "dispensing": {"key": "dispensing", "type": "check", "label": "Dispenses Prescriptions", "default": "yes"},
+ "display": {"key": "display", "type": "combo", "label": "Display", "options": ["analog", "digital", "sundial", "unorthodox"]},
+ "distance": {"key": "distance", "type": "text", "label": "Total Distance"},
+ "dock": {"key": "dock", "type": "combo", "label": "Type"},
+ "drive_through": {"key": "drive_through", "type": "check", "label": "Drive-Through"},
+ "duration": {"key": "duration", "type": "text", "label": "Duration", "placeholder": "00:00"},
+ "electrified": {"key": "electrified", "type": "combo", "label": "Electrification", "placeholder": "Contact Line, Electrified Rail...", "strings": {"options": {"contact_line": "Contact Line", "rail": "Electrified Rail", "yes": "Yes (unspecified)", "no": "No"}}},
+ "elevation": {"key": "ele", "type": "number", "icon": "elevation", "universal": true, "label": "Elevation"},
+ "email": {"key": "email", "type": "email", "placeholder": "example@example.com", "universal": true, "label": "Email"},
+ "embankment": {"key": "embankment", "type": "typeCombo", "label": "Type", "placeholder": "Default"},
+ "emergency": {"key": "emergency", "type": "check", "label": "Emergency"},
+ "entrance": {"key": "entrance", "type": "typeCombo", "label": "Type"},
+ "except": {"key": "except", "type": "combo", "label": "Exceptions"},
+ "faces": {"key": "faces", "type": "number", "minValue": 0, "label": "Faces"},
+ "fax": {"key": "fax", "type": "tel", "label": "Fax", "universal": true, "placeholder": "+31 42 123 4567"},
+ "fee": {"key": "fee", "type": "check", "label": "Fee"},
+ "fence_type": {"key": "fence_type", "type": "combo", "label": "Type"},
+ "fire_hydrant/position": {"key": "fire_hydrant:position", "type": "combo", "label": "Position", "strings": {"options": {"lane": "Lane", "parking_lot": "Parking Lot", "sidewalk": "Sidewalk", "green": "Green"}}},
+ "fire_hydrant/type": {"key": "fire_hydrant:type", "type": "combo", "label": "Type", "strings": {"options": {"pillar": "Pillar/Aboveground", "underground": "Underground", "wall": "Wall", "pond": "Pond"}}},
+ "fitness_station": {"key": "fitness_station", "type": "typeCombo", "label": "Equipment Type"},
+ "fixme": {"key": "fixme", "type": "textarea", "label": "Fix Me", "universal": true},
+ "ford": {"key": "ford", "type": "typeCombo", "label": "Type", "placeholder": "Default"},
+ "frequency": {"key": "frequency", "type": "combo", "label": "Operating Frequency"},
+ "fuel_multi": {"key": "fuel:", "type": "multiCombo", "label": "Fuel Types"},
+ "fuel": {"key": "fuel", "type": "combo", "label": "Fuel"},
+ "gauge": {"key": "gauge", "type": "combo", "label": "Gauge"},
+ "gender": {"type": "radio", "keys": ["male", "female", "unisex"], "label": "Gender", "placeholder": "Unknown", "strings": {"options": {"male": "Male", "female": "Female", "unisex": "Unisex"}}},
+ "generator/method": {"key": "generator:method", "type": "combo", "label": "Method"},
+ "generator/output/electricity": {"key": "generator:output:electricity", "type": "text", "label": "Power Output", "placeholder": "50 MW, 100 MW, 200 MW..."},
+ "generator/source": {"key": "generator:source", "type": "combo", "label": "Source"},
+ "generator/type": {"key": "generator:type", "type": "combo", "label": "Type"},
+ "government": {"key": "government", "type": "typeCombo", "label": "Type"},
+ "grape_variety": {"key": "grape_variety", "type": "semiCombo", "label": "Grape Varieties"},
+ "handicap": {"key": "handicap", "type": "number", "label": "Handicap", "placeholder": "1-18"},
+ "handrail": {"key": "handrail", "type": "check", "label": "Handrail"},
+ "hashtags": {"key": "hashtags", "type": "semiCombo", "label": "Suggested Hashtags", "placeholder": "#example"},
+ "healthcare": {"key": "healthcare", "type": "typeCombo", "label": "Type"},
+ "healthcare/speciality": {"key": "healthcare:speciality", "type": "semiCombo", "reference": {"key": "healthcare"}, "label": "Specialties"},
+ "height": {"key": "height", "minValue": 0, "type": "number", "label": "Height (Meters)"},
+ "highway": {"key": "highway", "type": "typeCombo", "label": "Type"},
+ "historic": {"key": "historic", "type": "typeCombo", "label": "Type"},
+ "historic/civilization": {"key": "historic:civilization", "type": "combo", "label": "Historic Civilization"},
+ "hoops": {"key": "hoops", "type": "number", "minValue": 0, "label": "Hoops", "placeholder": "1, 2, 4..."},
+ "horse_dressage": {"key": "sport", "type": "check", "label": "Dressage Riding", "strings": {"options": {"undefined": "No", "equestrian": "Yes"}}, "reference": {"key": "sport", "value": "equestrian"}},
+ "horse_riding": {"key": "leisure", "type": "check", "label": "Horseback Riding", "strings": {"options": {"undefined": "No", "horse_riding": "Yes"}}, "reference": {"key": "leisure", "value": "horse_riding"}},
+ "horse_scale": {"key": "horse_scale", "type": "combo", "label": "Horseback Riding Difficulty", "placeholder": "Difficult, Dangerous...", "strings": {"options": {"common": "Easy: No problems or difficulties. (default)", "demanding": "Use with caution: Uneven way, occasional difficult passages.", "difficult": "Difficult: Way narrow and exposed. May contain obstacles to step over and narrow passages.", "critical": "Borderline: Passable only for experienced riders and horses. Major obstacles. Bridges should be examined carefully.", "dangerous": "Dangerous: Passable only for very experienced riders and horses and only in good weather. Dismount.", "impossible": "Impassable: Way or bridge not passable for horses. Too narrow, insuffient support, obstacles like ladders. Danger of life."}}},
+ "horse_stables": {"key": "amenity", "type": "check", "label": "Riding Stable", "strings": {"options": {"undefined": "No", "stables": "Yes"}}, "reference": {"key": "amenity", "value": "stables"}},
+ "iata": {"key": "iata", "type": "text", "label": "IATA"},
+ "icao": {"key": "icao", "type": "text", "label": "ICAO"},
+ "incline_steps": {"key": "incline", "type": "combo", "label": "Incline", "strings": {"options": {"up": "Up", "down": "Down"}}},
+ "incline": {"key": "incline", "type": "combo", "label": "Incline"},
+ "indoor": {"key": "indoor", "type": "check", "label": "Indoor"},
+ "industrial": {"key": "industrial", "type": "combo", "label": "Type"},
+ "information": {"key": "information", "type": "typeCombo", "label": "Type"},
+ "inscription": {"key": "inscription", "type": "textarea", "label": "Inscription"},
+ "intermittent": {"key": "intermittent", "type": "check", "label": "Intermittent"},
+ "internet_access": {"key": "internet_access", "type": "combo", "label": "Internet Access", "strings": {"options": {"yes": "Yes", "no": "No", "wlan": "Wifi", "wired": "Wired", "terminal": "Terminal"}}},
+ "internet_access/fee": {"key": "internet_access:fee", "type": "check", "label": "Internet Access Fee"},
+ "internet_access/ssid": {"key": "internet_access:ssid", "type": "text", "label": "SSID (Network Name)"},
+ "kerb": {"key": "kerb", "type": "combo", "label": "Curb"},
+ "label": {"key": "label", "type": "textarea", "label": "Label"},
+ "lamp_type": {"key": "lamp_type", "type": "combo", "label": "Type"},
+ "landuse": {"key": "landuse", "type": "typeCombo", "label": "Type"},
+ "lanes": {"key": "lanes", "type": "number", "minValue": 0, "label": "Lanes", "placeholder": "1, 2, 3..."},
+ "layer": {"key": "layer", "type": "number", "label": "Layer", "placeholder": "0"},
+ "leaf_cycle_singular": {"key": "leaf_cycle", "type": "combo", "label": "Leaf Cycle", "strings": {"options": {"evergreen": "Evergreen", "deciduous": "Deciduous", "semi_evergreen": "Semi-Evergreen", "semi_deciduous": "Semi-Deciduous"}}},
+ "leaf_cycle": {"key": "leaf_cycle", "type": "combo", "label": "Leaf Cycle", "strings": {"options": {"evergreen": "Evergreen", "deciduous": "Deciduous", "semi_evergreen": "Semi-Evergreen", "semi_deciduous": "Semi-Deciduous", "mixed": "Mixed"}}},
+ "leaf_type_singular": {"key": "leaf_type", "type": "combo", "label": "Leaf Type", "strings": {"options": {"broadleaved": "Broadleaved", "needleleaved": "Needleleaved", "leafless": "Leafless"}}},
+ "leaf_type": {"key": "leaf_type", "type": "combo", "label": "Leaf Type", "strings": {"options": {"broadleaved": "Broadleaved", "needleleaved": "Needleleaved", "mixed": "Mixed", "leafless": "Leafless"}}},
+ "leisure": {"key": "leisure", "type": "typeCombo", "label": "Type"},
+ "length": {"key": "length", "type": "number", "minValue": 0, "label": "Length (Meters)"},
+ "level": {"key": "level", "type": "combo", "label": "Level", "universal": true},
+ "levels": {"key": "building:levels", "type": "number", "minValue": 0, "label": "Levels", "placeholder": "2, 4, 6..."},
+ "lit": {"key": "lit", "type": "check", "label": "Lit"},
+ "location": {"key": "location", "type": "combo", "label": "Location"},
+ "man_made": {"key": "man_made", "type": "typeCombo", "label": "Type"},
+ "manhole": {"key": "manhole", "type": "typeCombo", "label": "Type"},
+ "map_size": {"key": "map_size", "type": "typeCombo", "label": "Coverage"},
+ "map_type": {"key": "map_type", "type": "typeCombo", "label": "Type"},
+ "maxheight": {"key": "maxheight", "type": "combo", "label": "Max Height", "placeholder": "4, 4.5, 5, 14'0\", 14'6\", 15'0\"", "snake_case": false},
+ "maxspeed": {"key": "maxspeed", "type": "maxspeed", "label": "Speed Limit", "placeholder": "40, 50, 60..."},
+ "maxspeed/advisory": {"key": "maxspeed:advisory", "type": "maxspeed", "label": "Advisory Speed Limit", "placeholder": "40, 50, 60..."},
+ "maxstay": {"key": "maxstay", "type": "combo", "label": "Max Stay", "options": ["15 min", "30 min", "45 min", "1 hr", "1.5 hr", "2 hr", "2.5 hr", "3 hr", "4 hr", "1 day", "2 day"], "snake_case": false},
+ "maxweight": {"key": "maxweight", "type": "combo", "label": "Max Weight", "snake_case": false},
+ "memorial": {"key": "memorial", "type": "typeCombo", "label": "Type"},
+ "monitoring_multi": {"key": "monitoring:", "type": "multiCombo", "label": "Monitoring"},
+ "mtb/scale": {"key": "mtb:scale", "type": "combo", "label": "Mountain Biking Difficulty", "placeholder": "0, 1, 2, 3...", "strings": {"options": {"0": "0: Solid gravel/packed earth, no obstacles, wide curves", "1": "1: Some loose surface, small obstacles, wide curves", "2": "2: Much loose surface, large obstacles, easy hairpins", "3": "3: Slippery surface, large obstacles, tight hairpins", "4": "4: Loose surface or boulders, dangerous hairpins", "5": "5: Maximum difficulty, boulder fields, landslides", "6": "6: Not rideable except by the very best mountain bikers"}}},
+ "mtb/scale/imba": {"key": "mtb:scale:imba", "type": "combo", "label": "IMBA Trail Difficulty", "placeholder": "Easy, Medium, Difficult...", "strings": {"options": {"0": "Easiest (white circle)", "1": "Easy (green circle)", "2": "Medium (blue square)", "3": "Difficult (black diamond)", "4": "Extremely Difficult (double black diamond)"}}},
+ "mtb/scale/uphill": {"key": "mtb:scale:uphill", "type": "combo", "label": "Mountain Biking Uphill Difficulty", "placeholder": "0, 1, 2, 3...", "strings": {"options": {"0": "0: Avg. incline <10%, gravel/packed earth, no obstacles", "1": "1: Avg. incline <15%, gravel/packed earth, few small objects", "2": "2: Avg. incline <20%, stable surface, fistsize rocks/roots", "3": "3: Avg. incline <25%, variable surface, fistsize rocks/branches", "4": "4: Avg. incline <30%, poor condition, big rocks/branches", "5": "5: Very steep, bike generally needs to be pushed or carried"}}},
+ "name": {"key": "name", "type": "localized", "label": "Name", "universal": true, "placeholder": "Common name (if any)"},
+ "natural": {"key": "natural", "type": "typeCombo", "label": "Natural"},
+ "network_bicycle": {"key": "network", "type": "combo", "label": "Network Type", "placeholder": "Local, Regional, National, International", "strings": {"options": {"lcn": "Local", "rcn": "Regional", "ncn": "National", "icn": "International"}}},
+ "network_foot": {"key": "network", "type": "combo", "label": "Network Type", "placeholder": "Local, Regional, National, International", "strings": {"options": {"lwn": "Local", "rwn": "Regional", "nwn": "National", "iwn": "International"}}},
+ "network_horse": {"key": "network", "type": "combo", "label": "Network Type", "placeholder": "Local, Regional, National, International", "strings": {"options": {"lhn": "Local", "rhn": "Regional", "nhn": "National", "ihn": "International"}}},
+ "network_road": {"key": "network", "type": "networkCombo", "label": "Network"},
+ "network": {"key": "network", "type": "text", "label": "Network"},
+ "note": {"key": "note", "type": "textarea", "universal": true, "icon": "note", "label": "Note"},
+ "office": {"key": "office", "type": "typeCombo", "label": "Type"},
+ "oneway_yes": {"key": "oneway", "type": "onewayCheck", "label": "One Way", "strings": {"options": {"undefined": "Assumed to be Yes", "yes": "Yes", "no": "No", "reversible": "Reversible", "alternating": "Alternating"}}},
+ "oneway": {"key": "oneway", "type": "onewayCheck", "label": "One Way", "strings": {"options": {"undefined": "Assumed to be No", "yes": "Yes", "no": "No", "reversible": "Reversible", "alternating": "Alternating"}}},
+ "opening_hours": {"key": "opening_hours", "type": "combo", "label": "Hours", "snake_case": false},
+ "operator": {"key": "operator", "type": "text", "label": "Operator"},
+ "outdoor_seating": {"key": "outdoor_seating", "type": "check", "label": "Outdoor Seating"},
+ "par": {"key": "par", "type": "number", "minValue": 1, "label": "Par", "placeholder": "3, 4, 5..."},
+ "park_ride": {"key": "park_ride", "type": "check", "label": "Park and Ride"},
+ "parking": {"key": "parking", "type": "combo", "label": "Type", "strings": {"options": {"surface": "Surface", "multi-storey": "Multilevel", "underground": "Underground", "sheds": "Sheds", "carports": "Carports", "garage_boxes": "Garage Boxes", "lane": "Roadside Lane"}}},
+ "payment_multi": {"key": "payment:", "type": "multiCombo", "label": "Payment Types", "universal": true},
+ "phases": {"key": "phases", "type": "number", "minValue": 1, "label": "Phases", "placeholder": "1, 2, 3..."},
+ "phone": {"key": "phone", "type": "tel", "icon": "maki-telephone", "universal": true, "label": "Telephone", "placeholder": "+31 42 123 4567"},
+ "piste/difficulty": {"key": "piste:difficulty", "type": "combo", "label": "Difficulty", "placeholder": "Easy, Intermediate, Advanced...", "strings": {"options": {"novice": "Novice (instructional)", "easy": "Easy (green circle)", "intermediate": "Intermediate (blue square)", "advanced": "Advanced (black diamond)", "expert": "Expert (double black diamond)", "freeride": "Freeride (off-piste)", "extreme": "Extreme (climbing equipment required)"}}},
+ "piste/grooming": {"key": "piste:grooming", "type": "combo", "label": "Grooming", "strings": {"options": {"classic": "Classic", "mogul": "Mogul", "backcountry": "Backcountry", "classic+skating": "Classic and Skating", "scooter": "Scooter/Snowmobile", "skating": "Skating"}}},
+ "piste/type": {"key": "piste:type", "type": "typeCombo", "label": "Type", "strings": {"options": {"downhill": "Downhill", "nordic": "Nordic", "skitour": "Skitour", "sled": "Sled", "hike": "Hike", "sleigh": "Sleigh", "ice_skate": "Ice Skate", "snow_park": "Snow Park", "playground": "Playground"}}},
+ "place": {"key": "place", "type": "typeCombo", "label": "Type"},
+ "plant": {"key": "plant", "type": "combo", "label": "Plant"},
+ "plant/output/electricity": {"key": "plant:output:electricity", "type": "text", "label": "Power Output", "placeholder": "500 MW, 1000 MW, 2000 MW..."},
+ "playground/baby": {"key": "baby", "type": "check", "label": "Baby Seat"},
+ "playground/max_age": {"key": "max_age", "type": "number", "minValue": 0, "label": "Maximum Age"},
+ "playground/min_age": {"key": "min_age", "type": "number", "minValue": 0, "label": "Minimum Age"},
+ "population": {"key": "population", "type": "text", "label": "Population"},
+ "power_supply": {"key": "power_supply", "type": "check", "label": "Power Supply"},
+ "power": {"key": "power", "type": "typeCombo", "label": "Type"},
+ "produce": {"key": "produce", "type": "semiCombo", "label": "Produce"},
+ "product": {"key": "product", "type": "semiCombo", "label": "Products"},
+ "railway": {"key": "railway", "type": "typeCombo", "label": "Type"},
+ "railway/position": {"key": "railway:position", "type": "text", "placeholder": "Distance to one decimal (123.4)", "label": "Milestone Position"},
+ "railway/signal/direction": {"key": "railway:signal:direction", "type": "combo", "label": "Direction", "strings": {"options": {"forward": "Forward", "backward": "Backward", "both": "Both / All"}}},
+ "rating": {"key": "rating", "type": "combo", "label": "Power Rating", "snake_case": false},
+ "recycling_accepts": {"key": "recycling:", "type": "multiCombo", "label": "Accepts"},
+ "ref_aeroway_gate": {"key": "ref", "type": "text", "label": "Gate Number"},
+ "ref_golf_hole": {"key": "ref", "type": "text", "label": "Hole Number", "placeholder": "1-18"},
+ "ref_highway_junction": {"key": "ref", "type": "text", "label": "Junction Number"},
+ "ref_platform": {"key": "ref", "type": "text", "label": "Platform Number"},
+ "ref_road_number": {"key": "ref", "type": "text", "label": "Road Number"},
+ "ref_route": {"key": "ref", "type": "text", "label": "Route Number"},
+ "ref_runway": {"key": "ref", "type": "text", "label": "Runway Number", "placeholder": "e.g. 01L/19R"},
+ "ref_stop_position": {"key": "ref", "type": "text", "label": "Stop Number"},
+ "ref_taxiway": {"key": "ref", "type": "text", "label": "Taxiway Name", "placeholder": "e.g. A5"},
+ "ref": {"key": "ref", "type": "text", "label": "Reference Code"},
+ "ref/isil": {"key": "ref:isil", "type": "text", "label": "ISIL Code"},
+ "relation": {"key": "type", "type": "combo", "label": "Type"},
+ "religion": {"key": "religion", "type": "combo", "label": "Religion"},
+ "restriction": {"key": "restriction", "type": "combo", "label": "Type"},
+ "restrictions": {"type": "restrictions", "geometry": "vertex", "icon": "iD-restrictions", "reference": {"rtype": "restriction"}, "label": "Turn Restrictions"},
+ "rooms": {"key": "rooms", "type": "number", "minValue": 0, "label": "Rooms"},
+ "route_master": {"key": "route_master", "type": "combo", "label": "Type"},
+ "route": {"key": "route", "type": "combo", "label": "Type"},
+ "sac_scale": {"key": "sac_scale", "type": "combo", "label": "Hiking Difficulty", "placeholder": "Mountain Hiking, Alpine Hiking...", "strings": {"options": {"hiking": "T1: Hiking", "mountain_hiking": "T2: Mountain Hiking", "demanding_mountain_hiking": "T3: Demanding Mountain Hiking", "alpine_hiking": "T4: Alpine Hiking", "demanding_alpine_hiking": "T5: Demanding Alpine Hiking", "difficult_alpine_hiking": "T6: Difficult Alpine Hiking"}}},
+ "sanitary_dump_station": {"key": "sanitary_dump_station", "type": "check", "label": "Toilet Disposal"},
+ "seasonal": {"key": "seasonal", "type": "check", "label": "Seasonal"},
+ "second_hand": {"key": "second_hand", "type": "combo", "label": "Sells Used", "placeholder": "Yes, No, Only", "strings": {"options": {"yes": "Yes", "no": "No", "only": "Only"}}},
+ "service_rail": {"key": "service", "type": "combo", "label": "Service Type", "strings": {"options": {"spur": "Spur", "yard": "Yard", "siding": "Siding", "crossover": "Crossover"}}},
+ "service_times": {"key": "service_times", "type": "text", "label": "Service Times"},
+ "service": {"key": "service", "type": "combo", "label": "Type", "options": ["parking_aisle", "driveway", "alley", "emergency_access", "drive-through"]},
+ "service/bicycle": {"key": "service:bicycle:", "type": "multiCombo", "label": "Services"},
+ "service/vehicle": {"key": "service:vehicle:", "type": "multiCombo", "label": "Services"},
+ "shelter_type": {"key": "shelter_type", "type": "combo", "label": "Type"},
+ "shelter": {"key": "shelter", "type": "check", "label": "Shelter"},
+ "shop": {"key": "shop", "type": "typeCombo", "label": "Type"},
+ "site": {"key": "site", "type": "combo", "label": "Type"},
+ "smoking": {"key": "smoking", "type": "combo", "label": "Smoking", "placeholder": "No, Separated, Yes...", "strings": {"options": {"no": "No smoking anywhere", "separated": "In smoking areas, not physically isolated", "isolated": "In smoking areas, physically isolated", "outside": "Allowed outside", "yes": "Allowed everywhere", "dedicated": "Dedicated to smokers (e.g. smokers' club)"}}},
+ "smoothness": {"key": "smoothness", "type": "combo", "label": "Smoothness", "placeholder": "Thin Rollers, Wheels, Off-Road...", "strings": {"options": {"excellent": "Thin Rollers: rollerblade, skateboard", "good": "Thin Wheels: racing bike", "intermediate": "Wheels: city bike, wheelchair, scooter", "bad": "Robust Wheels: trekking bike, car, rickshaw", "very_bad": "High Clearance: light duty off-road vehicle", "horrible": "Off-Road: heavy duty off-road vehicle", "very_horrible": "Specialized off-road: tractor, ATV", "impassable": "Impassable / No wheeled vehicle"}}},
+ "social_facility_for": {"key": "social_facility:for", "type": "combo", "label": "People Served"},
+ "social_facility": {"key": "social_facility", "type": "combo", "label": "Type"},
+ "source": {"key": "source", "type": "semiCombo", "icon": "source", "universal": true, "label": "Sources", "snake_case": false, "caseSensitive": true, "options": ["survey", "local knowledge", "gps", "aerial imagery", "streetlevel imagery"]},
+ "sport_ice": {"key": "sport", "type": "semiCombo", "label": "Sports", "options": ["skating", "hockey", "multi", "curling", "ice_stock"]},
+ "sport_racing_motor": {"key": "sport", "type": "semiCombo", "label": "Sports", "options": ["motor", "karting", "motocross"]},
+ "sport_racing_nonmotor": {"key": "sport", "type": "semiCombo", "label": "Sports", "options": ["bmx", "cycling", "dog_racing", "horse_racing", "running"]},
+ "sport": {"key": "sport", "type": "semiCombo", "label": "Sports"},
+ "stars": {"key": "stars", "type": "number", "minValue": 0, "label": "Stars"},
+ "start_date": {"key": "start_date", "type": "text", "universal": true, "label": "Start Date"},
+ "step_count": {"key": "step_count", "type": "number", "minValue": 0, "label": "Number of Steps"},
+ "stop": {"key": "stop", "type": "combo", "label": "Stop Type", "strings": {"options": {"all": "All Ways", "minor": "Minor Road"}}},
+ "structure_waterway": {"type": "structureRadio", "keys": ["tunnel"], "label": "Structure", "placeholder": "Unknown", "strings": {"options": {"tunnel": "Tunnel"}}},
+ "structure": {"type": "structureRadio", "keys": ["bridge", "tunnel", "embankment", "cutting", "ford"], "label": "Structure", "placeholder": "Unknown", "strings": {"options": {"bridge": "Bridge", "tunnel": "Tunnel", "embankment": "Embankment", "cutting": "Cutting", "ford": "Ford"}}},
+ "studio": {"key": "studio", "type": "combo", "label": "Type"},
+ "substance": {"key": "substance", "type": "combo", "label": "Substance"},
+ "substation": {"key": "substation", "type": "typeCombo", "label": "Type"},
+ "supervised": {"key": "supervised", "type": "check", "label": "Supervised"},
+ "support": {"key": "support", "type": "combo", "label": "Support"},
+ "surface": {"key": "surface", "type": "combo", "label": "Surface"},
+ "surveillance": {"key": "surveillance", "type": "combo", "label": "Surveillance Kind"},
+ "surveillance/type": {"key": "surveillance:type", "type": "combo", "label": "Surveillance Type", "strings": {"options": {"camera": "Camera", "guard": "Guard", "ALPR": "Automatic License Plate Reader"}}},
+ "surveillance/zone": {"key": "surveillance:zone", "type": "combo", "label": "Surveillance Zone"},
+ "switch": {"key": "switch", "type": "combo", "label": "Type", "strings": {"options": {"mechanical": "Mechanical", "circuit_breaker": "Circuit Breaker", "disconnector": "Disconnector", "earthing": "Earthing"}}},
+ "tactile_paving": {"key": "tactile_paving", "type": "check", "label": "Tactile Paving"},
+ "takeaway": {"key": "takeaway", "type": "combo", "label": "Takeaway", "placeholder": "Yes, No, Takeaway Only...", "strings": {"options": {"yes": "Yes", "no": "No", "only": "Takeaway Only"}}},
+ "toilets/disposal": {"key": "toilets:disposal", "type": "combo", "label": "Disposal", "strings": {"options": {"flush": "Flush", "pitlatrine": "Pit/Latrine", "chemical": "Chemical", "bucket": "Bucket"}}},
+ "toll": {"key": "toll", "type": "check", "label": "Toll"},
+ "tomb": {"key": "tomb", "type": "typeCombo", "label": "Type"},
+ "tourism_attraction": {"key": "tourism", "default": "attraction", "type": "typeCombo", "universal": true, "label": "Tourism"},
+ "tourism": {"key": "tourism", "type": "typeCombo", "label": "Type"},
+ "tower/construction": {"key": "tower:construction", "type": "combo", "label": "Construction", "placeholder": "Guyed, Lattice, Concealed, ..."},
+ "tower/type": {"key": "tower:type", "type": "combo", "label": "Type"},
+ "tracktype": {"key": "tracktype", "type": "combo", "label": "Track Type", "placeholder": "Solid, Mostly Solid, Soft...", "strings": {"options": {"grade1": "Solid: paved or heavily compacted hardcore surface", "grade2": "Mostly Solid: gravel/rock with some soft material mixed in", "grade3": "Even mixture of hard and soft materials", "grade4": "Mostly Soft: soil/sand/grass with some hard material mixed in", "grade5": "Soft: soil/sand/grass"}}},
+ "trade": {"key": "trade", "type": "typeCombo", "label": "Type"},
+ "traffic_calming": {"key": "traffic_calming", "type": "typeCombo", "label": "Type"},
+ "traffic_signals": {"key": "traffic_signals", "type": "combo", "label": "Type", "default": "signal"},
+ "traffic_signals/direction": {"key": "traffic_signals:direction", "type": "combo", "label": "Direction", "strings": {"options": {"forward": "Forward", "backward": "Backward", "both": "Both / All"}}},
+ "trail_visibility": {"key": "trail_visibility", "type": "combo", "label": "Trail Visibility", "placeholder": "Excellent, Good, Bad...", "strings": {"options": {"excellent": "Excellent: unambiguous path or markers everywhere", "good": "Good: markers visible, sometimes require searching", "intermediate": "Intermediate: few markers, path mostly visible", "bad": "Bad: no markers, path sometimes invisible/pathless", "horrible": "Horrible: often pathless, some orientation skills required", "no": "No: pathless, excellent orientation skills required"}}},
+ "transformer": {"key": "transformer", "type": "combo", "label": "Type", "strings": {"options": {"distribution": "Distribution", "generator": "Generator", "converter": "Converter", "traction": "Traction", "auto": "Autotransformer", "phase_angle_regulator": "Phase Angle Regulator", "auxiliary": "Auxiliary", "yes": "Unknown"}}},
+ "trees": {"key": "trees", "type": "semiCombo", "label": "Trees"},
+ "tunnel": {"key": "tunnel", "type": "typeCombo", "label": "Type", "placeholder": "Default"},
+ "usage_rail": {"key": "usage", "type": "combo", "label": "Usage Type", "strings": {"options": {"main": "Main", "branch": "Branch", "industrial": "Industrial", "military": "Military", "test": "Test", "tourism": "Tourism"}}},
+ "vending": {"key": "vending", "type": "semiCombo", "label": "Types of Goods"},
+ "visibility": {"key": "visibility", "type": "combo", "label": "Visibility", "strings": {"options": {"house": "Up to 5m (16ft)", "street": "5 to 20m (16 to 65ft)", "area": "Over 20m (65ft)"}}},
+ "volcano/status": {"key": "volcano:status", "type": "combo", "label": "Volcano Status", "strings": {"options": {"active": "Active", "dormant": "Dormant", "extinct": "Extinct"}}},
+ "volcano/type": {"key": "volcano:type", "type": "combo", "label": "Volcano Type", "strings": {"options": {"stratovolcano": "Stratovolcano", "shield": "Shield", "scoria": "Scoria"}}},
+ "voltage": {"key": "voltage", "type": "combo", "label": "Voltage"},
+ "voltage/primary": {"key": "voltage:primary", "type": "combo", "label": "Primary Voltage"},
+ "voltage/secondary": {"key": "voltage:secondary", "type": "combo", "label": "Secondary Voltage"},
+ "voltage/tertiary": {"key": "voltage:tertiary", "type": "combo", "label": "Tertiary Voltage"},
+ "wall": {"key": "wall", "type": "combo", "label": "Type"},
+ "water_point": {"key": "water_point", "type": "check", "label": "Water Point"},
+ "water": {"key": "water", "type": "combo", "label": "Type"},
+ "waterway": {"key": "waterway", "type": "typeCombo", "label": "Type"},
+ "website": {"key": "website", "type": "url", "icon": "website", "placeholder": "http://example.com/", "universal": true, "label": "Website"},
+ "wetland": {"key": "wetland", "type": "combo", "label": "Type"},
+ "wheelchair": {"key": "wheelchair", "type": "radio", "options": ["yes", "limited", "no"], "icon": "maki-wheelchair", "universal": true, "label": "Wheelchair Access"},
+ "wholesale": {"key": "wholesale", "type": "typeCombo", "label": "Wholesale"},
+ "width": {"key": "width", "type": "number", "minValue": 0, "label": "Width (Meters)"},
+ "wikipedia": {"key": "wikipedia", "keys": ["wikipedia", "wikidata"], "type": "wikipedia", "icon": "wikipedia", "universal": true, "label": "Wikipedia"},
+ "windings": {"key": "windings", "type": "number", "minValue": 1, "label": "Windings", "placeholder": "1, 2, 3..."},
+ "windings/configuration": {"key": "windings:configuration", "type": "combo", "label": "Windings Configuration", "strings": {"options": {"star": "Star / Wye", "delta": "Delta", "open-delta": "Open Delta", "zigzag": "Zig Zag", "open": "Open", "scott": "Scott", "leblanc": "Leblanc"}}}
+ }
}
\ No newline at end of file
diff --git a/data/presets/presets.json b/data/presets/presets.json
index b04f858f3..e0b7ef5a4 100644
--- a/data/presets/presets.json
+++ b/data/presets/presets.json
@@ -1,96590 +1,4390 @@
{
- "presets": {
- "aerialway": {
- "fields": [
- "aerialway"
- ],
- "geometry": [
- "point",
- "vertex",
- "line"
- ],
- "tags": {
- "aerialway": "*"
- },
- "terms": [
- "ski lift",
- "funifor",
- "funitel"
- ],
- "searchable": false,
- "name": "Aerialway"
- },
- "aeroway": {
- "icon": "maki-airport",
- "fields": [
- "aeroway"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "aeroway": "*"
- },
- "searchable": false,
- "name": "Aeroway"
- },
- "amenity": {
- "fields": [
- "amenity"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "*"
- },
- "searchable": false,
- "name": "Amenity"
- },
- "circular": {
- "geometry": [
- "vertex",
- "line"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "junction": "circular"
- },
- "name": "Traffic Circle",
- "searchable": false
- },
- "highway": {
- "fields": [
- "name",
- "highway"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "highway": "*"
- },
- "searchable": false,
- "name": "Highway"
- },
- "place": {
- "fields": [
- "name",
- "place"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "place": "*"
- },
- "searchable": false,
- "name": "Place"
- },
- "power": {
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "power": "*"
- },
- "fields": [
- "power"
- ],
- "searchable": false,
- "name": "Power"
- },
- "railway": {
- "fields": [
- "railway"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "railway": "*"
- },
- "searchable": false,
- "name": "Railway"
- },
- "roundabout": {
- "geometry": [
- "vertex",
- "line"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "junction": "roundabout"
- },
- "name": "Roundabout",
- "searchable": false
- },
- "waterway": {
- "fields": [
- "name",
- "waterway"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "waterway": "*"
- },
- "searchable": false,
- "name": "Waterway"
- },
- "address": {
- "fields": [
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "addr:*": "*"
- },
- "addTags": {},
- "removeTags": {},
- "reference": {
- "key": "addr"
- },
- "name": "Address",
- "matchScore": 0.15
- },
- "advertising/billboard": {
- "fields": [
- "direction",
- "lit"
- ],
- "geometry": [
- "point",
- "vertex",
- "line"
- ],
- "tags": {
- "advertising": "billboard"
- },
- "name": "Billboard"
- },
- "advertising/column": {
- "fields": [
- "direction",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "advertising": "column"
- },
- "name": "Advertising Column"
- },
- "aerialway/station": {
- "icon": "maki-aerialway",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "aerialway/access",
- "aerialway/summer/access",
- "elevation",
- "building_area"
- ],
- "tags": {
- "aerialway": "station"
- },
- "name": "Aerialway Station",
- "searchable": false
- },
- "aerialway/cable_car": {
- "geometry": [
- "line"
- ],
- "terms": [
- "tramway",
- "ropeway"
- ],
- "fields": [
- "name",
- "aerialway/occupancy",
- "aerialway/capacity",
- "aerialway/duration",
- "aerialway/heating"
- ],
- "tags": {
- "aerialway": "cable_car"
- },
- "name": "Cable Car"
- },
- "aerialway/chair_lift": {
- "geometry": [
- "line"
- ],
- "fields": [
- "name",
- "aerialway/occupancy",
- "aerialway/capacity",
- "aerialway/duration",
- "aerialway/bubble",
- "aerialway/heating"
- ],
- "tags": {
- "aerialway": "chair_lift"
- },
- "name": "Chair Lift"
- },
- "aerialway/drag_lift": {
- "geometry": [
- "line"
- ],
- "fields": [
- "name",
- "aerialway/capacity",
- "aerialway/duration"
- ],
- "tags": {
- "aerialway": "drag_lift"
- },
- "name": "Drag Lift"
- },
- "aerialway/gondola": {
- "geometry": [
- "line"
- ],
- "fields": [
- "name",
- "aerialway/occupancy",
- "aerialway/capacity",
- "aerialway/duration",
- "aerialway/bubble",
- "aerialway/heating"
- ],
- "tags": {
- "aerialway": "gondola"
- },
- "name": "Gondola"
- },
- "aerialway/goods": {
- "geometry": [
- "line"
- ],
- "fields": [
- "name",
- "aerialway/capacity",
- "aerialway/duration"
- ],
- "tags": {
- "aerialway": "goods"
- },
- "name": "Goods Aerialway"
- },
- "aerialway/magic_carpet": {
- "geometry": [
- "line"
- ],
- "fields": [
- "name",
- "aerialway/capacity",
- "aerialway/duration",
- "aerialway/heating"
- ],
- "tags": {
- "aerialway": "magic_carpet"
- },
- "name": "Magic Carpet Lift"
- },
- "aerialway/mixed_lift": {
- "geometry": [
- "line"
- ],
- "fields": [
- "name",
- "aerialway/occupancy",
- "aerialway/capacity",
- "aerialway/duration",
- "aerialway/bubble",
- "aerialway/heating"
- ],
- "tags": {
- "aerialway": "mixed_lift"
- },
- "name": "Mixed Lift"
- },
- "aerialway/platter": {
- "geometry": [
- "line"
- ],
- "terms": [
- "button lift",
- "poma lift"
- ],
- "fields": [
- "name",
- "aerialway/capacity",
- "aerialway/duration"
- ],
- "tags": {
- "aerialway": "platter"
- },
- "name": "Platter Lift"
- },
- "aerialway/pylon": {
- "geometry": [
- "point",
- "vertex"
- ],
- "fields": [
- "ref"
- ],
- "tags": {
- "aerialway": "pylon"
- },
- "name": "Aerialway Pylon"
- },
- "aerialway/rope_tow": {
- "geometry": [
- "line"
- ],
- "terms": [
- "handle tow",
- "bugel lift"
- ],
- "fields": [
- "name",
- "aerialway/capacity",
- "aerialway/duration"
- ],
- "tags": {
- "aerialway": "rope_tow"
- },
- "name": "Rope Tow Lift"
- },
- "aerialway/t-bar": {
- "geometry": [
- "line"
- ],
- "fields": [
- "name",
- "aerialway/capacity",
- "aerialway/duration"
- ],
- "terms": [
- "tbar"
- ],
- "tags": {
- "aerialway": "t-bar"
- },
- "name": "T-bar Lift"
- },
- "aeroway/aerodrome": {
- "icon": "maki-airport",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "iata",
- "icao",
- "operator",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "terms": [
- "airplane",
- "airport",
- "aerodrome"
- ],
- "tags": {
- "aeroway": "aerodrome"
- },
- "name": "Airport"
- },
- "aeroway/apron": {
- "icon": "maki-airport",
- "geometry": [
- "area"
- ],
- "terms": [
- "ramp"
- ],
- "fields": [
- "ref",
- "surface"
- ],
- "tags": {
- "aeroway": "apron"
- },
- "name": "Apron"
- },
- "aeroway/gate": {
- "icon": "maki-airport",
- "geometry": [
- "point"
- ],
- "fields": [
- "ref_aeroway_gate"
- ],
- "tags": {
- "aeroway": "gate"
- },
- "name": "Airport Gate"
- },
- "aeroway/hangar": {
- "geometry": [
- "area"
- ],
- "fields": [
- "name",
- "building_area"
- ],
- "tags": {
- "aeroway": "hangar"
- },
- "name": "Hangar"
- },
- "aeroway/helipad": {
- "icon": "maki-heliport",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "ref"
- ],
- "terms": [
- "helicopter",
- "helipad",
- "heliport"
- ],
- "tags": {
- "aeroway": "helipad"
- },
- "name": "Helipad"
- },
- "aeroway/runway": {
- "geometry": [
- "line",
- "area"
- ],
- "terms": [
- "landing strip"
- ],
- "fields": [
- "ref_runway",
- "surface",
- "length",
- "width"
- ],
- "tags": {
- "aeroway": "runway"
- },
- "name": "Runway"
- },
- "aeroway/taxiway": {
- "geometry": [
- "line"
- ],
- "fields": [
- "ref_taxiway",
- "surface"
- ],
- "tags": {
- "aeroway": "taxiway"
- },
- "name": "Taxiway"
- },
- "aeroway/terminal": {
- "icon": "maki-airport",
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "airport",
- "aerodrome"
- ],
- "fields": [
- "name",
- "operator",
- "building_area"
- ],
- "tags": {
- "aeroway": "terminal"
- },
- "name": "Airport Terminal"
- },
- "allotments/plot": {
- "geometry": [
- "area"
- ],
- "fields": [
- "name",
- "ref"
- ],
- "tags": {
- "allotments": "plot"
- },
- "reference": {
- "key": "allotments",
- "value": "plot"
- },
- "name": "Community Garden Plot"
- },
- "amenity/bus_station": {
- "icon": "maki-bus",
- "fields": [
- "name",
- "building_area",
- "operator",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "bus_station"
- },
- "name": "Bus Station / Terminal",
- "searchable": false
- },
- "amenity/coworking_space": {
- "icon": "maki-commercial",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "coworking_space"
- },
- "name": "Coworking Space",
- "searchable": false
- },
- "amenity/ferry_terminal": {
- "icon": "maki-ferry",
- "fields": [
- "name",
- "network",
- "operator",
- "address",
- "building_area"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [],
- "tags": {
- "amenity": "ferry_terminal"
- },
- "name": "Ferry Station / Terminal",
- "searchable": false
- },
- "amenity/nursing_home": {
- "icon": "maki-wheelchair",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "social_facility",
- "social_facility_for",
- "opening_hours",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "nursing_home"
- },
- "reference": {
- "key": "social_facility",
- "value": "nursing_home"
- },
- "name": "Nursing Home",
- "searchable": false
- },
- "amenity/register_office": {
- "icon": "maki-town-hall",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "operator"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "register_office"
- },
- "reference": {
- "key": "government",
- "value": "register_office"
- },
- "name": "Register Office",
- "searchable": false
- },
- "amenity/scrapyard": {
- "icon": "maki-car",
- "fields": [
- "name",
- "operator",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "scrapyard"
- },
- "reference": {
- "key": "industrial",
- "value": "scrap_yard"
- },
- "name": "Scrap Yard",
- "searchable": false
- },
- "amenity/swimming_pool": {
- "icon": "maki-swimming",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "swimming_pool"
- },
- "reference": {
- "key": "leisure",
- "value": "swimming_pool"
- },
- "name": "Swimming Pool",
- "searchable": false
- },
- "amenity/animal_boarding": {
- "icon": "maki-veterinary",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "animal_boarding"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "boarding",
- "cat",
- "cattery",
- "dog",
- "horse",
- "kennel",
- "kitten",
- "pet",
- "pet boarding",
- "pet care",
- "pet hotel",
- "puppy",
- "reptile"
- ],
- "tags": {
- "amenity": "animal_boarding"
- },
- "name": "Animal Boarding Facility"
- },
- "amenity/animal_breeding": {
- "icon": "maki-veterinary",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "animal_breeding"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "breeding",
- "bull",
- "cat",
- "cow",
- "dog",
- "horse",
- "husbandry",
- "kitten",
- "livestock",
- "pet breeding",
- "puppy",
- "reptile"
- ],
- "tags": {
- "amenity": "animal_breeding"
- },
- "name": "Animal Breeding Facility"
- },
- "amenity/animal_shelter": {
- "icon": "maki-veterinary",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "animal_shelter"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "adoption",
- "aspca",
- "cat",
- "dog",
- "horse",
- "kitten",
- "pet care",
- "pet rescue",
- "puppy",
- "raptor",
- "reptile",
- "rescue",
- "spca"
- ],
- "tags": {
- "amenity": "animal_shelter"
- },
- "name": "Animal Shelter"
- },
- "amenity/arts_centre": {
- "icon": "maki-theatre",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [],
- "tags": {
- "amenity": "arts_centre"
- },
- "name": "Arts Center"
- },
- "amenity/atm": {
- "icon": "maki-bank",
- "fields": [
- "operator",
- "currency_multi",
- "drive_through"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "terms": [
- "money",
- "cash",
- "machine"
- ],
- "tags": {
- "amenity": "atm"
- },
- "name": "ATM"
- },
- "amenity/bank": {
- "icon": "maki-bank",
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "credit union",
- "check",
- "deposit",
- "fund",
- "investment",
- "repository",
- "reserve",
- "safe",
- "savings",
- "stock",
- "treasury",
- "trust",
- "vault"
- ],
- "tags": {
- "amenity": "bank"
- },
- "name": "Bank"
- },
- "amenity/bar": {
- "icon": "maki-bar",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "dive",
- "beer",
- "bier",
- "booze"
- ],
- "tags": {
- "amenity": "bar"
- },
- "name": "Bar"
- },
- "amenity/bbq": {
- "icon": "maki-bbq",
- "fields": [
- "covered",
- "fuel"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "bbq",
- "grill"
- ],
- "tags": {
- "amenity": "bbq"
- },
- "name": "Barbecue/Grill"
- },
- "amenity/bench": {
- "icon": "temaki-bench",
- "fields": [
- "backrest"
- ],
- "geometry": [
- "point",
- "vertex",
- "line"
- ],
- "terms": [
- "seat"
- ],
- "tags": {
- "amenity": "bench"
- },
- "name": "Bench"
- },
- "amenity/bicycle_parking": {
- "icon": "maki-bicycle",
- "fields": [
- "bicycle_parking",
- "capacity",
- "operator",
- "covered",
- "access_simple"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "bike"
- ],
- "tags": {
- "amenity": "bicycle_parking"
- },
- "name": "Bicycle Parking"
- },
- "amenity/bicycle_rental": {
- "icon": "maki-bicycle",
- "fields": [
- "capacity",
- "network",
- "operator",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "bike"
- ],
- "tags": {
- "amenity": "bicycle_rental"
- },
- "name": "Bicycle Rental"
- },
- "amenity/bicycle_repair_station": {
- "icon": "maki-bicycle",
- "fields": [
- "operator",
- "brand",
- "opening_hours",
- "fee",
- "service/bicycle"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "terms": [
- "bike",
- "repair",
- "chain",
- "pump"
- ],
- "tags": {
- "amenity": "bicycle_repair_station"
- },
- "name": "Bicycle Repair Tool Stand"
- },
- "amenity/biergarten": {
- "icon": "maki-beer",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "biergarten"
- },
- "terms": [
- "beer",
- "bier",
- "booze"
- ],
- "name": "Beer Garden"
- },
- "amenity/boat_rental": {
- "fields": [
- "name",
- "operator",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "boat_rental"
- },
- "name": "Boat Rental"
- },
- "amenity/bureau_de_change": {
- "icon": "maki-bank",
- "fields": [
- "name",
- "currency_multi",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "bureau de change",
- "money changer"
- ],
- "tags": {
- "amenity": "bureau_de_change"
- },
- "name": "Currency Exchange"
- },
- "amenity/cafe": {
- "icon": "maki-cafe",
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "bistro",
- "coffee",
- "tea"
- ],
- "tags": {
- "amenity": "cafe"
- },
- "name": "Cafe"
- },
- "amenity/car_pooling": {
- "icon": "maki-car",
- "fields": [
- "name",
- "operator",
- "capacity"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "car_pooling"
- },
- "name": "Car Pooling"
- },
- "amenity/car_rental": {
- "icon": "maki-car",
- "fields": [
- "name",
- "operator",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "car_rental"
- },
- "name": "Car Rental"
- },
- "amenity/car_sharing": {
- "icon": "maki-car",
- "fields": [
- "name",
- "operator",
- "capacity",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "car_sharing"
- },
- "name": "Car Sharing"
- },
- "amenity/car_wash": {
- "icon": "maki-car",
- "fields": [
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "car_wash"
- },
- "name": "Car Wash"
- },
- "amenity/casino": {
- "icon": "temaki-dice",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "smoking"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "gambling",
- "roulette",
- "craps",
- "poker",
- "blackjack"
- ],
- "tags": {
- "amenity": "casino"
- },
- "name": "Casino"
- },
- "amenity/charging_station": {
- "icon": "maki-car",
- "fields": [
- "operator",
- "capacity"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "amenity": "charging_station"
- },
- "terms": [
- "EV",
- "Electric Vehicle",
- "Supercharger"
- ],
- "name": "Charging Station"
- },
- "amenity/childcare": {
- "icon": "maki-school",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "daycare",
- "orphanage",
- "playgroup"
- ],
- "tags": {
- "amenity": "childcare"
- },
- "name": "Nursery/Childcare"
- },
- "amenity/cinema": {
- "icon": "maki-cinema",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "drive-in",
- "film",
- "flick",
- "movie",
- "theater",
- "picture",
- "show",
- "screen"
- ],
- "tags": {
- "amenity": "cinema"
- },
- "name": "Cinema"
- },
- "amenity/clinic": {
- "icon": "maki-doctor",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "medical",
- "urgentcare"
- ],
- "tags": {
- "amenity": "clinic"
- },
- "addTags": {
- "amenity": "clinic",
- "healthcare": "clinic"
- },
- "removeTags": {
- "amenity": "clinic",
- "healthcare": "clinic"
- },
- "reference": {
- "key": "amenity",
- "value": "clinic"
- },
- "name": "Clinic"
- },
- "amenity/clinic/abortion": {
- "icon": "maki-hospital",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [],
- "tags": {
- "amenity": "clinic",
- "healthcare": "clinic",
- "healthcare:speciality": "abortion"
- },
- "reference": {
- "key": "amenity",
- "value": "clinic"
- },
- "name": "Abortion Clinic"
- },
- "amenity/clinic/fertility": {
- "icon": "maki-hospital",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "egg",
- "fertility",
- "reproductive",
- "sperm",
- "ovulation"
- ],
- "tags": {
- "amenity": "clinic",
- "healthcare": "clinic",
- "healthcare:speciality": "fertility"
- },
- "reference": {
- "key": "amenity",
- "value": "clinic"
- },
- "name": "Fertility Clinic"
- },
- "amenity/clock": {
- "icon": "temaki-clock",
- "fields": [
- "name",
- "support",
- "display",
- "visibility",
- "date",
- "faces"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "clock"
- },
- "name": "Clock"
- },
- "amenity/college": {
- "icon": "maki-college",
- "fields": [
- "name",
- "operator",
- "address",
- "internet_access",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "university"
- ],
- "tags": {
- "amenity": "college"
- },
- "name": "College Grounds"
- },
- "amenity/community_centre": {
- "icon": "maki-town-hall",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "event",
- "hall"
- ],
- "tags": {
- "amenity": "community_centre"
- },
- "name": "Community Center"
- },
- "amenity/compressed_air": {
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "compressed_air"
- },
- "name": "Compressed Air"
- },
- "amenity/courthouse": {
- "icon": "maki-town-hall",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "courthouse"
- },
- "name": "Courthouse"
- },
- "amenity/crematorium": {
- "icon": "maki-cemetery",
- "fields": [
- "name",
- "website",
- "phone",
- "opening_hours",
- "wheelchair"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "amenity": "crematorium"
- },
- "terms": [
- "cemetery",
- "funeral"
- ],
- "name": "Crematorium"
- },
- "amenity/dentist": {
- "icon": "maki-dentist",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "tooth",
- "teeth"
- ],
- "tags": {
- "amenity": "dentist"
- },
- "addTags": {
- "amenity": "dentist",
- "healthcare": "dentist"
- },
- "removeTags": {
- "amenity": "dentist",
- "healthcare": "dentist"
- },
- "reference": {
- "key": "amenity",
- "value": "dentist"
- },
- "name": "Dentist"
- },
- "amenity/doctors": {
- "icon": "maki-doctor",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "medic*",
- "physician"
- ],
- "tags": {
- "amenity": "doctors"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare": "doctor"
- },
- "removeTags": {
- "amenity": "doctors",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "amenity",
- "value": "doctors"
- },
- "name": "Doctor"
- },
- "amenity/dojo": {
- "icon": "maki-pitch",
- "fields": [
- "name",
- "sport",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "martial arts",
- "dojang"
- ],
- "tags": {
- "amenity": "dojo"
- },
- "name": "Dojo / Martial Arts Academy"
- },
- "amenity/drinking_water": {
- "icon": "maki-drinking-water",
- "geometry": [
- "point"
- ],
- "tags": {
- "amenity": "drinking_water"
- },
- "terms": [
- "fountain",
- "potable"
- ],
- "name": "Drinking Water"
- },
- "amenity/driving_school": {
- "icon": "maki-car",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "driving_school"
- },
- "name": "Driving School"
- },
- "amenity/embassy": {
- "icon": "maki-embassy",
- "fields": [
- "name",
- "country",
- "address",
- "building_area"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "embassy"
- },
- "name": "Embassy"
- },
- "amenity/fast_food": {
- "icon": "maki-fast-food",
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "fast_food"
- },
- "terms": [
- "restaurant",
- "takeaway"
- ],
- "name": "Fast Food"
- },
- "amenity/fire_station": {
- "icon": "maki-fire-station",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [],
- "tags": {
- "amenity": "fire_station"
- },
- "name": "Fire Station"
- },
- "amenity/food_court": {
- "icon": "maki-restaurant",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "fast food",
- "restaurant",
- "food"
- ],
- "tags": {
- "amenity": "food_court"
- },
- "name": "Food Court"
- },
- "amenity/fountain": {
- "icon": "temaki-fountain",
- "fields": [
- "name"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "fountain"
- },
- "name": "Fountain"
- },
- "amenity/fuel": {
- "icon": "maki-fuel",
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "petrol",
- "fuel",
- "gasoline",
- "propane",
- "diesel",
- "lng",
- "cng",
- "biodiesel"
- ],
- "tags": {
- "amenity": "fuel"
- },
- "name": "Gas Station"
- },
- "amenity/grave_yard": {
- "icon": "maki-cemetery",
- "fields": [
- "religion",
- "denomination"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "grave_yard"
- },
- "name": "Graveyard"
- },
- "amenity/grit_bin": {
- "fields": [
- "access_simple"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "grit_bin"
- },
- "terms": [
- "salt",
- "sand"
- ],
- "name": "Grit Bin"
- },
- "amenity/hospital": {
- "icon": "maki-hospital",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "emergency"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "clinic",
- "doctor",
- "emergency room",
- "health",
- "infirmary",
- "institution",
- "sanatorium",
- "sanitarium",
- "sick",
- "surgery",
- "ward"
- ],
- "tags": {
- "amenity": "hospital"
- },
- "addTags": {
- "amenity": "hospital",
- "healthcare": "hospital"
- },
- "removeTags": {
- "amenity": "hospital",
- "healthcare": "hospital"
- },
- "reference": {
- "key": "amenity",
- "value": "hospital"
- },
- "name": "Hospital Grounds"
- },
- "amenity/hunting_stand": {
- "icon": "temaki-binoculars",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "game",
- "gun",
- "lookout",
- "rifle",
- "shoot*",
- "wild",
- "watch"
- ],
- "tags": {
- "amenity": "hunting_stand"
- },
- "name": "Hunting Stand"
- },
- "amenity/ice_cream": {
- "icon": "maki-ice-cream",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "outdoor_seating"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "gelato",
- "sorbet",
- "sherbet",
- "frozen",
- "yogurt"
- ],
- "tags": {
- "amenity": "ice_cream"
- },
- "name": "Ice Cream Shop"
- },
- "amenity/internet_cafe": {
- "icon": "temaki-antenna",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "cybercafe",
- "taxiphone",
- "teleboutique",
- "coffee",
- "cafe",
- "net",
- "lanhouse"
- ],
- "tags": {
- "amenity": "internet_cafe"
- },
- "name": "Internet Cafe"
- },
- "amenity/kindergarten": {
- "icon": "maki-school",
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "kindergarden",
- "pre-school"
- ],
- "tags": {
- "amenity": "kindergarten"
- },
- "name": "Preschool/Kindergarten Grounds"
- },
- "amenity/library": {
- "icon": "maki-library",
- "fields": [
- "name",
- "operator",
- "building_area",
- "address",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "ref/isil"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "book"
- ],
- "tags": {
- "amenity": "library"
- },
- "name": "Library"
- },
- "amenity/love_hotel": {
- "icon": "maki-heart",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "smoking",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "love_hotel"
- },
- "name": "Love Hotel"
- },
- "amenity/marketplace": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "marketplace"
- },
- "name": "Marketplace"
- },
- "amenity/monastery": {
- "icon": "maki-place-of-worship",
- "fields": [
- "name",
- "religion",
- "denomination",
- "address",
- "building_area"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "abbey",
- "basilica",
- "bethel",
- "cathedral",
- "chancel",
- "chantry",
- "chapel",
- "church",
- "fold",
- "house of God",
- "house of prayer",
- "house of worship",
- "minster",
- "mission",
- "monastery",
- "mosque",
- "oratory",
- "parish",
- "sacellum",
- "sanctuary",
- "shrine",
- "synagogue",
- "tabernacle",
- "temple"
- ],
- "tags": {
- "amenity": "monastery"
- },
- "name": "Monastery Grounds"
- },
- "amenity/motorcycle_parking": {
- "icon": "fas-motorcycle",
- "fields": [
- "capacity",
- "operator",
- "covered",
- "access_simple"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "motorcycle_parking"
- },
- "name": "Motorcycle Parking"
- },
- "amenity/music_school": {
- "icon": "maki-school",
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "school of music"
- ],
- "tags": {
- "amenity": "music_school"
- },
- "name": "Music School"
- },
- "amenity/nightclub": {
- "icon": "maki-bar",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "smoking"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "nightclub"
- },
- "terms": [
- "disco*",
- "night club",
- "dancing",
- "dance club"
- ],
- "name": "Nightclub"
- },
- "amenity/parking_entrance": {
- "icon": "maki-entrance-alt1",
- "fields": [
- "access_simple",
- "ref"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "amenity": "parking_entrance"
- },
- "name": "Parking Garage Entrance/Exit"
- },
- "amenity/parking_space": {
- "fields": [
- "capacity"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [],
- "tags": {
- "amenity": "parking_space"
- },
- "matchScore": 0.95,
- "name": "Parking Space"
- },
- "amenity/parking": {
- "icon": "maki-parking",
- "fields": [
- "name",
- "operator",
- "parking",
- "capacity",
- "fee",
- "access_simple",
- "supervised",
- "park_ride",
- "surface",
- "maxstay"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "parking"
- },
- "terms": [],
- "name": "Car Parking"
- },
- "amenity/pavilion": {
- "icon": "maki-shelter",
- "fields": [
- "bin",
- "bench"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "shelter",
- "shelter_type": "pavilion"
- },
- "name": "Pavilion"
- },
- "amenity/pharmacy": {
- "icon": "maki-pharmacy",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "pharmacy"
- },
- "addTags": {
- "amenity": "pharmacy",
- "healthcare": "pharmacy"
- },
- "removeTags": {
- "amenity": "pharmacy",
- "healthcare": "pharmacy"
- },
- "reference": {
- "key": "amenity",
- "value": "pharmacy"
- },
- "terms": [
- "drug*",
- "med*",
- "prescription"
- ],
- "name": "Pharmacy"
- },
- "amenity/place_of_worship": {
- "icon": "maki-place-of-worship",
- "fields": [
- "name",
- "religion",
- "denomination",
- "address",
- "building_area",
- "service_times"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "abbey",
- "basilica",
- "bethel",
- "cathedral",
- "chancel",
- "chantry",
- "chapel",
- "church",
- "fold",
- "house of God",
- "house of prayer",
- "house of worship",
- "minster",
- "mission",
- "mosque",
- "oratory",
- "parish",
- "sacellum",
- "sanctuary",
- "shrine",
- "synagogue",
- "tabernacle",
- "temple"
- ],
- "tags": {
- "amenity": "place_of_worship"
- },
- "name": "Place of Worship"
- },
- "amenity/place_of_worship/buddhist": {
- "icon": "maki-buddhism",
- "fields": [
- "name",
- "denomination",
- "building_area",
- "address",
- "service_times"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "stupa",
- "vihara",
- "monastery",
- "temple",
- "pagoda",
- "zendo",
- "dojo"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "buddhist"
- },
- "reference": {
- "key": "amenity",
- "value": "place_of_worship"
- },
- "name": "Buddhist Temple"
- },
- "amenity/place_of_worship/christian": {
- "icon": "maki-religious-christian",
- "fields": [
- "name",
- "denomination",
- "building_area",
- "address",
- "service_times"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "christian",
- "abbey",
- "basilica",
- "bethel",
- "cathedral",
- "chancel",
- "chantry",
- "chapel",
- "fold",
- "house of God",
- "house of prayer",
- "house of worship",
- "minster",
- "mission",
- "oratory",
- "parish",
- "sacellum",
- "sanctuary",
- "shrine",
- "tabernacle",
- "temple"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "christian"
- },
- "reference": {
- "key": "amenity",
- "value": "place_of_worship"
- },
- "name": "Church"
- },
- "amenity/place_of_worship/hindu": {
- "icon": "temaki-hinduism",
- "fields": [
- "name",
- "denomination",
- "building_area",
- "address",
- "service_times"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "kovil",
- "devasthana",
- "mandir",
- "kshetram",
- "alayam",
- "shrine",
- "temple"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "hindu"
- },
- "reference": {
- "key": "amenity",
- "value": "place_of_worship"
- },
- "name": "Hindu Temple"
- },
- "amenity/place_of_worship/jewish": {
- "icon": "maki-religious-jewish",
- "fields": [
- "name",
- "denomination",
- "building_area",
- "address",
- "service_times"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "jewish"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "jewish"
- },
- "reference": {
- "key": "amenity",
- "value": "place_of_worship"
- },
- "name": "Synagogue"
- },
- "amenity/place_of_worship/muslim": {
- "icon": "maki-religious-muslim",
- "fields": [
- "name",
- "denomination",
- "building_area",
- "address",
- "service_times"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "muslim"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "muslim"
- },
- "reference": {
- "key": "amenity",
- "value": "place_of_worship"
- },
- "name": "Mosque"
- },
- "amenity/place_of_worship/shinto": {
- "icon": "temaki-shinto",
- "fields": [
- "name",
- "denomination",
- "building_area",
- "address",
- "service_times"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "kami",
- "torii"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "shinto"
- },
- "reference": {
- "key": "amenity",
- "value": "place_of_worship"
- },
- "name": "Shinto Shrine"
- },
- "amenity/place_of_worship/sikh": {
- "icon": "temaki-sikhism",
- "fields": [
- "name",
- "denomination",
- "building_area",
- "address",
- "service_times"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "gurudwara",
- "temple"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "sikh"
- },
- "reference": {
- "key": "amenity",
- "value": "place_of_worship"
- },
- "name": "Sikh Temple"
- },
- "amenity/place_of_worship/taoist": {
- "icon": "temaki-taoism",
- "fields": [
- "name",
- "denomination",
- "building_area",
- "address",
- "service_times"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "daoist",
- "monastery",
- "temple"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "taoist"
- },
- "reference": {
- "key": "amenity",
- "value": "place_of_worship"
- },
- "name": "Taoist Temple"
- },
- "amenity/planetarium": {
- "icon": "maki-museum",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "museum",
- "astronomy",
- "observatory"
- ],
- "tags": {
- "amenity": "planetarium"
- },
- "name": "Planetarium"
- },
- "amenity/police": {
- "icon": "maki-police",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "badge",
- "constable",
- "constabulary",
- "cop",
- "detective",
- "fed",
- "law",
- "enforcement",
- "officer",
- "patrol"
- ],
- "tags": {
- "amenity": "police"
- },
- "name": "Police"
- },
- "amenity/post_box": {
- "icon": "maki-post",
- "fields": [
- "operator",
- "collection_times",
- "drive_through",
- "ref"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "post_box"
- },
- "terms": [
- "letter",
- "post"
- ],
- "name": "Mailbox"
- },
- "amenity/post_office": {
- "icon": "maki-post",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "letter",
- "mail"
- ],
- "tags": {
- "amenity": "post_office"
- },
- "name": "Post Office"
- },
- "amenity/prison": {
- "icon": "maki-prison",
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "cell",
- "jail"
- ],
- "tags": {
- "amenity": "prison"
- },
- "name": "Prison Grounds"
- },
- "amenity/pub": {
- "icon": "maki-beer",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "pub"
- },
- "terms": [
- "alcohol",
- "drink",
- "dive",
- "beer",
- "bier",
- "booze"
- ],
- "name": "Pub"
- },
- "amenity/public_bath": {
- "icon": "maki-water",
- "fields": [
- "name",
- "bath/type",
- "bath/open_air",
- "bath/sand_bath",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "public_bath"
- },
- "terms": [
- "onsen",
- "foot bath",
- "hot springs"
- ],
- "name": "Public Bath"
- },
- "amenity/public_bookcase": {
- "icon": "maki-library",
- "fields": [
- "name",
- "operator",
- "capacity",
- "website"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "library",
- "bookcrossing"
- ],
- "tags": {
- "amenity": "public_bookcase"
- },
- "name": "Public Bookcase"
- },
- "amenity/ranger_station": {
- "icon": "maki-ranger-station",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "visitor center",
- "visitor centre",
- "permit center",
- "permit centre",
- "backcountry office",
- "warden office",
- "warden center"
- ],
- "tags": {
- "amenity": "ranger_station"
- },
- "name": "Ranger Station"
- },
- "amenity/recycling_centre": {
- "icon": "maki-recycling",
- "fields": [
- "name",
- "operator",
- "address",
- "building",
- "opening_hours",
- "recycling_accepts"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "bottle",
- "can",
- "dump",
- "glass",
- "garbage",
- "rubbish",
- "scrap",
- "trash"
- ],
- "tags": {
- "amenity": "recycling",
- "recycling_type": "centre"
- },
- "reference": {
- "key": "recycling_type",
- "value": "*"
- },
- "name": "Recycling Center"
- },
- "amenity/recycling": {
- "icon": "maki-recycling",
- "fields": [
- "recycling_accepts",
- "collection_times"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "bin",
- "can",
- "bottle",
- "glass",
- "garbage",
- "rubbish",
- "scrap",
- "trash"
- ],
- "tags": {
- "amenity": "recycling"
- },
- "addTags": {
- "amenity": "recycling",
- "recycling_type": "container"
- },
- "removeTags": {
- "amenity": "recycling",
- "recycling_type": "container"
- },
- "reference": {
- "key": "amenity",
- "value": "recycling"
- },
- "name": "Recycling Container"
- },
- "amenity/restaurant": {
- "icon": "maki-restaurant",
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "bar",
- "breakfast",
- "cafe",
- "café",
- "canteen",
- "coffee",
- "dine",
- "dining",
- "dinner",
- "drive-in",
- "eat",
- "grill",
- "lunch",
- "table"
- ],
- "tags": {
- "amenity": "restaurant"
- },
- "name": "Restaurant"
- },
- "amenity/sanitary_dump_station": {
- "icon": "temaki-storage_tank",
- "fields": [
- "operator",
- "access_simple",
- "fee",
- "water_point"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "Motor Home",
- "Camper",
- "Sanitary",
- "Dump Station",
- "Elsan",
- "CDP",
- "CTDP",
- "Chemical Toilet"
- ],
- "tags": {
- "amenity": "sanitary_dump_station"
- },
- "name": "RV Toilet Disposal"
- },
- "amenity/school": {
- "icon": "maki-school",
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "academy",
- "elementary school",
- "middle school",
- "high school"
- ],
- "tags": {
- "amenity": "school"
- },
- "name": "School Grounds"
- },
- "amenity/shelter": {
- "icon": "maki-shelter",
- "fields": [
- "name",
- "shelter_type",
- "bin"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "lean-to",
- "gazebo",
- "picnic"
- ],
- "tags": {
- "amenity": "shelter"
- },
- "name": "Shelter"
- },
- "amenity/shower": {
- "icon": "temaki-shower",
- "fields": [
- "operator",
- "opening_hours",
- "fee",
- "supervised",
- "building_area"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "rain closet"
- ],
- "tags": {
- "amenity": "shower"
- },
- "name": "Shower"
- },
- "amenity/smoking_area": {
- "icon": "fas-smoking",
- "fields": [
- "name",
- "shelter",
- "bin",
- "bench",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [],
- "tags": {
- "amenity": "smoking_area"
- },
- "name": "Smoking Area"
- },
- "amenity/social_facility": {
- "icon": "temaki-social_facility",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "social_facility",
- "social_facility_for",
- "opening_hours",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [],
- "tags": {
- "amenity": "social_facility"
- },
- "name": "Social Facility"
- },
- "amenity/social_facility/food_bank": {
- "icon": "temaki-social_facility",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "social_facility",
- "social_facility_for",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [],
- "tags": {
- "amenity": "social_facility",
- "social_facility": "food_bank"
- },
- "reference": {
- "key": "social_facility",
- "value": "food_bank"
- },
- "name": "Food Bank"
- },
- "amenity/social_facility/group_home": {
- "icon": "maki-wheelchair",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "social_facility",
- "social_facility_for",
- "opening_hours",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "old",
- "senior",
- "living",
- "care home",
- "assisted living"
- ],
- "tags": {
- "amenity": "social_facility",
- "social_facility": "group_home",
- "social_facility:for": "senior"
- },
- "reference": {
- "key": "social_facility",
- "value": "group_home"
- },
- "name": "Elderly Group Home"
- },
- "amenity/social_facility/homeless_shelter": {
- "icon": "temaki-social_facility",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "social_facility",
- "social_facility_for",
- "opening_hours",
- "wheelchair",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "houseless",
- "unhoused",
- "displaced"
- ],
- "tags": {
- "amenity": "social_facility",
- "social_facility": "shelter",
- "social_facility:for": "homeless"
- },
- "reference": {
- "key": "social_facility",
- "value": "shelter"
- },
- "name": "Homeless Shelter"
- },
- "amenity/social_facility/nursing_home": {
- "icon": "maki-wheelchair",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "social_facility",
- "social_facility_for",
- "opening_hours",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "elderly",
- "living",
- "nursing",
- "old",
- "senior",
- "assisted living"
- ],
- "tags": {
- "amenity": "social_facility",
- "social_facility": "nursing_home",
- "social_facility:for": "senior"
- },
- "reference": {
- "key": "social_facility",
- "value": "nursing_home"
- },
- "name": "Nursing Home"
- },
- "amenity/studio": {
- "icon": "maki-karaoke",
- "fields": [
- "name",
- "studio",
- "address",
- "building_area"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "recording",
- "radio",
- "television"
- ],
- "tags": {
- "amenity": "studio"
- },
- "name": "Studio"
- },
- "amenity/taxi": {
- "icon": "fas-taxi",
- "fields": [
- "name",
- "operator",
- "capacity"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "cab"
- ],
- "tags": {
- "amenity": "taxi"
- },
- "name": "Taxi Stand"
- },
- "amenity/telephone": {
- "icon": "maki-telephone",
- "fields": [
- "operator",
- "phone",
- "fee",
- "payment_multi",
- "covered",
- "indoor"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "telephone"
- },
- "terms": [
- "phone"
- ],
- "name": "Telephone"
- },
- "amenity/theatre": {
- "icon": "maki-theatre",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "theatre",
- "performance",
- "play",
- "musical"
- ],
- "tags": {
- "amenity": "theatre"
- },
- "name": "Theater"
- },
- "amenity/toilets": {
- "icon": "maki-toilet",
- "fields": [
- "toilets/disposal",
- "operator",
- "building_area",
- "access_simple",
- "gender",
- "fee",
- "diaper"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "bathroom",
- "restroom",
- "outhouse",
- "privy",
- "head",
- "lavatory",
- "latrine",
- "water closet",
- "WC",
- "W.C."
- ],
- "tags": {
- "amenity": "toilets"
- },
- "name": "Toilets"
- },
- "amenity/townhall": {
- "icon": "maki-town-hall",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "village",
- "city",
- "government",
- "courthouse",
- "municipal"
- ],
- "tags": {
- "amenity": "townhall"
- },
- "name": "Town Hall"
- },
- "amenity/university": {
- "icon": "maki-college",
- "fields": [
- "name",
- "operator",
- "address",
- "internet_access",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "college"
- ],
- "tags": {
- "amenity": "university"
- },
- "name": "University Grounds"
- },
- "amenity/vending_machine": {
- "icon": "temaki-vending_machine",
- "fields": [
- "vending",
- "operator",
- "payment_multi",
- "currency_multi"
- ],
- "geometry": [
- "point"
- ],
- "terms": [],
- "tags": {
- "amenity": "vending_machine"
- },
- "name": "Vending Machine"
- },
- "amenity/vending_machine/news_papers": {
- "icon": "temaki-vending_machine",
- "fields": [
- "vending",
- "operator",
- "fee",
- "payment_multi",
- "currency_multi"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "newspaper"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "news_papers"
- },
- "reference": {
- "key": "vending",
- "value": "newspapers"
- },
- "name": "Newspaper Vending Machine",
- "searchable": false
- },
- "amenity/vending_machine/cigarettes": {
- "icon": "temaki-vending_machine",
- "fields": [
- "vending",
- "operator",
- "payment_multi",
- "currency_multi"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "cigarette"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "cigarettes"
- },
- "reference": {
- "key": "vending",
- "value": "cigarettes"
- },
- "name": "Cigarette Vending Machine"
- },
- "amenity/vending_machine/coffee": {
- "icon": "temaki-vending_machine",
- "fields": [
- "vending",
- "operator",
- "payment_multi",
- "currency_multi"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "coffee"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "coffee"
- },
- "reference": {
- "key": "vending",
- "value": "coffee"
- },
- "name": "Coffee Vending Machine"
- },
- "amenity/vending_machine/condoms": {
- "icon": "temaki-vending_machine",
- "fields": [
- "vending",
- "operator",
- "payment_multi",
- "currency_multi"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "condom"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "condoms"
- },
- "reference": {
- "key": "vending",
- "value": "condoms"
- },
- "name": "Condom Vending Machine"
- },
- "amenity/vending_machine/drinks": {
- "icon": "temaki-vending_machine",
- "fields": [
- "vending",
- "operator",
- "payment_multi",
- "currency_multi"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "drink",
- "soda",
- "beverage",
- "juice",
- "pop"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "drinks"
- },
- "reference": {
- "key": "vending",
- "value": "drinks"
- },
- "name": "Drink Vending Machine"
- },
- "amenity/vending_machine/electronics": {
- "icon": "temaki-vending_machine",
- "fields": [
- "vending",
- "operator",
- "payment_multi",
- "currency_multi"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "cable",
- "charger",
- "earbud",
- "headphone",
- "phone",
- "tablet"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "electronics"
- },
- "reference": {
- "key": "vending",
- "value": "electronics"
- },
- "name": "Electronics Vending Machine"
- },
- "amenity/vending_machine/elongated_coin": {
- "icon": "temaki-vending_machine",
- "fields": [
- "vending",
- "operator",
- "payment_multi",
- "currency_multi"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "coin",
- "crush",
- "elongated",
- "flatten",
- "penny",
- "souvenir"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "elongated_coin"
- },
- "reference": {
- "key": "vending",
- "value": "elongated_coin"
- },
- "name": "Flat Coin Vending Machine"
- },
- "amenity/vending_machine/excrement_bags": {
- "icon": "temaki-vending_machine",
- "fields": [
- "vending",
- "operator",
- "fee",
- "payment_multi",
- "currency_multi"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "excrement bags",
- "poop",
- "dog",
- "animal"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "excrement_bags"
- },
- "reference": {
- "key": "vending",
- "value": "excrement_bags"
- },
- "name": "Excrement Bag Vending Machine"
- },
- "amenity/vending_machine/feminine_hygiene": {
- "icon": "temaki-vending_machine",
- "fields": [
- "vending",
- "operator",
- "payment_multi",
- "currency_multi"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "condom",
- "tampon",
- "pad",
- "woman",
- "women",
- "menstrual hygiene products",
- "personal care"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "feminine_hygiene"
- },
- "reference": {
- "key": "vending",
- "value": "feminine_hygiene"
- },
- "name": "Feminine Hygiene Vending Machine"
- },
- "amenity/vending_machine/food": {
- "icon": "temaki-vending_machine",
- "fields": [
- "vending",
- "operator",
- "payment_multi",
- "currency_multi"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "food"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "food"
- },
- "reference": {
- "key": "vending",
- "value": "food"
- },
- "name": "Food Vending Machine"
- },
- "amenity/vending_machine/fuel": {
- "icon": "maki-fuel",
- "fields": [
- "vending",
- "operator",
- "payment_multi",
- "currency_multi"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "petrol",
- "fuel",
- "gasoline",
- "propane",
- "diesel",
- "lng",
- "cng",
- "biodiesel"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "fuel"
- },
- "reference": {
- "key": "vending",
- "value": "fuel"
- },
- "name": "Gas Pump"
- },
- "amenity/vending_machine/ice_cream": {
- "icon": "temaki-vending_machine",
- "fields": [
- "vending",
- "operator",
- "payment_multi",
- "currency_multi"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "chocolate",
- "ice cream",
- "frozen",
- "popsicle",
- "vanilla"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "ice_cream"
- },
- "reference": {
- "key": "vending",
- "value": "ice_cream"
- },
- "name": "Ice Cream Vending Machine"
- },
- "amenity/vending_machine/newspapers": {
- "icon": "temaki-vending_machine",
- "fields": [
- "vending",
- "operator",
- "fee",
- "payment_multi",
- "currency_multi"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "newspaper"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "newspapers"
- },
- "reference": {
- "key": "vending",
- "value": "newspapers"
- },
- "name": "Newspaper Vending Machine"
- },
- "amenity/vending_machine/parcel_pickup_dropoff": {
- "icon": "temaki-vending_machine",
- "fields": [
- "vending",
- "operator",
- "payment_multi",
- "currency_multi"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "parcel",
- "mail",
- "pickup"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "parcel_pickup;parcel_mail_in"
- },
- "reference": {
- "key": "vending",
- "value": "parcel_pickup;parcel_mail_in"
- },
- "name": "Parcel Pickup/Dropoff Vending Machine"
- },
- "amenity/vending_machine/parking_tickets": {
- "icon": "temaki-vending_machine",
- "fields": [
- "vending",
- "operator",
- "payment_multi",
- "currency_multi"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "parking",
- "ticket"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "parking_tickets"
- },
- "reference": {
- "key": "vending",
- "value": "parking_tickets"
- },
- "matchScore": 0.94,
- "name": "Parking Ticket Vending Machine"
- },
- "amenity/vending_machine/public_transport_tickets": {
- "icon": "temaki-vending_machine",
- "fields": [
- "vending",
- "operator",
- "payment_multi",
- "currency_multi"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "bus",
- "train",
- "ferry",
- "rail",
- "ticket",
- "transportation"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "public_transport_tickets"
- },
- "reference": {
- "key": "vending",
- "value": "public_transport_tickets"
- },
- "name": "Transit Ticket Vending Machine"
- },
- "amenity/vending_machine/stamps": {
- "icon": "temaki-vending_machine",
- "fields": [
- "vending",
- "operator",
- "payment_multi",
- "currency_multi"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "mail",
- "postage",
- "stamp"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "stamps"
- },
- "reference": {
- "key": "vending",
- "value": "stamps"
- },
- "name": "Postage Vending Machine"
- },
- "amenity/vending_machine/sweets": {
- "icon": "temaki-vending_machine",
- "fields": [
- "vending",
- "operator",
- "payment_multi",
- "currency_multi"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "candy",
- "gum",
- "chip",
- "pretzel",
- "cookie",
- "cracker"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "sweets"
- },
- "reference": {
- "key": "vending",
- "value": "sweets"
- },
- "name": "Snack Vending Machine"
- },
- "amenity/veterinary": {
- "icon": "maki-veterinary",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "pet clinic",
- "veterinarian",
- "animal hospital",
- "pet doctor"
- ],
- "tags": {
- "amenity": "veterinary"
- },
- "name": "Veterinary"
- },
- "amenity/waste_basket": {
- "icon": "maki-waste-basket",
- "fields": [
- "collection_times"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "waste_basket"
- },
- "terms": [
- "bin",
- "garbage",
- "rubbish",
- "litter",
- "trash"
- ],
- "name": "Waste Basket"
- },
- "amenity/waste_disposal": {
- "icon": "maki-waste-basket",
- "fields": [
- "collection_times"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "waste_disposal"
- },
- "terms": [
- "garbage",
- "rubbish",
- "litter",
- "trash"
- ],
- "name": "Garbage Dumpster"
- },
- "amenity/waste_transfer_station": {
- "icon": "maki-waste-basket",
- "fields": [
- "name",
- "operator",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "dump",
- "garbage",
- "recycling",
- "rubbish",
- "scrap",
- "trash"
- ],
- "tags": {
- "amenity": "waste_transfer_station"
- },
- "name": "Waste Transfer Station"
- },
- "amenity/waste/dog_excrement": {
- "icon": "maki-waste-basket",
- "fields": [
- "collection_times"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "waste_basket",
- "waste": "dog_excrement"
- },
- "reference": {
- "key": "waste",
- "value": "dog_excrement"
- },
- "terms": [
- "bin",
- "garbage",
- "rubbish",
- "litter",
- "trash",
- "poo",
- "dog"
- ],
- "name": "Dog Excrement Bin"
- },
- "amenity/water_point": {
- "icon": "maki-drinking-water",
- "geometry": [
- "area",
- "vertex",
- "point"
- ],
- "tags": {
- "amenity": "water_point"
- },
- "name": "RV Drinking Water"
- },
- "amenity/watering_place": {
- "icon": "maki-drinking-water",
- "geometry": [
- "area",
- "vertex",
- "point"
- ],
- "tags": {
- "amenity": "watering_place"
- },
- "name": "Animal Watering Place"
- },
- "area": {
- "fields": [
- "name"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "area": "yes"
- },
- "name": "Area",
- "matchScore": 0.1
- },
- "area/highway": {
- "fields": [
- "name",
- "area/highway"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "area:highway": "*"
- },
- "name": "Road Surface"
- },
- "attraction/amusement_ride": {
- "icon": "maki-amusement-park",
- "fields": [
- "name",
- "operator",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "theme park",
- "carnival ride"
- ],
- "tags": {
- "attraction": "amusement_ride"
- },
- "name": "Amusement Ride"
- },
- "attraction/animal": {
- "icon": "maki-zoo",
- "fields": [
- "name",
- "operator"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "zoo",
- "theme park",
- "animal park",
- "lion",
- "tiger",
- "bear"
- ],
- "tags": {
- "attraction": "animal"
- },
- "name": "Animal"
- },
- "attraction/big_wheel": {
- "icon": "maki-amusement-park",
- "fields": [
- "name",
- "operator",
- "height",
- "opening_hours"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "ferris wheel",
- "theme park",
- "amusement ride"
- ],
- "tags": {
- "attraction": "big_wheel"
- },
- "name": "Big Wheel"
- },
- "attraction/bumper_car": {
- "icon": "maki-car",
- "fields": [
- "name",
- "operator",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "theme park",
- "dodgem cars",
- "autoscooter"
- ],
- "tags": {
- "attraction": "bumper_car"
- },
- "name": "Bumper Car"
- },
- "attraction/bungee_jumping": {
- "icon": "maki-pitch",
- "fields": [
- "name",
- "operator",
- "height",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "theme park",
- "bungy jumping",
- "jumping platform"
- ],
- "tags": {
- "attraction": "bungee_jumping"
- },
- "name": "Bungee Jumping"
- },
- "attraction/carousel": {
- "icon": "maki-horse-riding",
- "fields": [
- "name",
- "operator",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "theme park",
- "roundabout",
- "merry-go-round",
- "galloper",
- "jumper",
- "horseabout",
- "flying horses"
- ],
- "tags": {
- "attraction": "carousel"
- },
- "name": "Carousel"
- },
- "attraction/dark_ride": {
- "icon": "maki-rail-metro",
- "fields": [
- "name",
- "operator",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "terms": [
- "theme park",
- "ghost train"
- ],
- "tags": {
- "attraction": "dark_ride"
- },
- "name": "Dark Ride"
- },
- "attraction/drop_tower": {
- "icon": "temaki-tower",
- "fields": [
- "name",
- "operator",
- "height",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "theme park",
- "amusement ride",
- "gondola",
- "tower",
- "big drop"
- ],
- "tags": {
- "attraction": "drop_tower"
- },
- "name": "Drop Tower"
- },
- "attraction/maze": {
- "icon": "maki-amusement-park",
- "fields": [
- "name",
- "operator"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "theme park",
- "amusement ride",
- "labyrinth"
- ],
- "tags": {
- "attraction": "maze"
- },
- "name": "Maze"
- },
- "attraction/pirate_ship": {
- "icon": "maki-danger",
- "fields": [
- "name",
- "operator",
- "opening_hours"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "theme park",
- "carnival ride",
- "amusement ride"
- ],
- "tags": {
- "attraction": "pirate_ship"
- },
- "name": "Pirate Ship"
- },
- "attraction/river_rafting": {
- "icon": "maki-ferry",
- "fields": [
- "name",
- "operator",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "line"
- ],
- "terms": [
- "theme park",
- "aquatic park",
- "water park",
- "rafting simulator",
- "river rafting ride",
- "river rapids ride"
- ],
- "tags": {
- "attraction": "river_rafting"
- },
- "name": "River Rafting"
- },
- "attraction/roller_coaster": {
- "icon": "maki-amusement-park",
- "fields": [
- "name",
- "operator",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "theme park",
- "amusement ride"
- ],
- "tags": {
- "attraction": "roller_coaster"
- },
- "name": "Roller Coaster"
- },
- "attraction/train": {
- "icon": "maki-rail",
- "fields": [
- "name",
- "operator",
- "fee",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "line"
- ],
- "terms": [
- "theme park",
- "rackless train",
- "road train",
- "Tschu-Tschu train",
- "dotto train",
- "park train"
- ],
- "tags": {
- "attraction": "train"
- },
- "name": "Tourist Train"
- },
- "attraction/water_slide": {
- "icon": "maki-swimming",
- "fields": [
- "name",
- "operator",
- "opening_hours"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "terms": [
- "theme park",
- "aquatic park",
- "water park",
- "flumes",
- "water chutes",
- "hydroslides"
- ],
- "tags": {
- "attraction": "water_slide"
- },
- "name": "Water Slide"
- },
- "barrier": {
- "icon": "maki-roadblock",
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "barrier": "*"
- },
- "fields": [
- "barrier"
- ],
- "name": "Barrier",
- "matchScore": 0.4
- },
- "barrier/entrance": {
- "icon": "maki-entrance-alt1",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "entrance"
- },
- "name": "Entrance",
- "searchable": false
- },
- "barrier/block": {
- "icon": "maki-roadblock",
- "fields": [
- "access"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "barrier": "block"
- },
- "name": "Block"
- },
- "barrier/bollard": {
- "icon": "maki-roadblock",
- "fields": [
- "access"
- ],
- "geometry": [
- "point",
- "vertex",
- "line"
- ],
- "tags": {
- "barrier": "bollard"
- },
- "name": "Bollard"
- },
- "barrier/border_control": {
- "icon": "maki-roadblock",
- "fields": [
- "access",
- "building_area"
- ],
- "geometry": [
- "vertex",
- "area"
- ],
- "tags": {
- "barrier": "border_control"
- },
- "name": "Border Control"
- },
- "barrier/cattle_grid": {
- "icon": "maki-barrier",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "cattle_grid"
- },
- "name": "Cattle Grid"
- },
- "barrier/city_wall": {
- "icon": "maki-barrier",
- "fields": [
- "height"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "barrier": "city_wall"
- },
- "name": "City Wall"
- },
- "barrier/cycle_barrier": {
- "icon": "maki-roadblock",
- "fields": [
- "access"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "cycle_barrier"
- },
- "name": "Cycle Barrier"
- },
- "barrier/ditch": {
- "icon": "maki-roadblock",
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "barrier": "ditch"
- },
- "name": "Trench",
- "matchScore": 0.25
- },
- "barrier/fence": {
- "icon": "maki-fence",
- "fields": [
- "fence_type",
- "height"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "barrier": "fence"
- },
- "name": "Fence",
- "matchScore": 0.25
- },
- "barrier/gate": {
- "icon": "maki-barrier",
- "fields": [
- "access"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "tags": {
- "barrier": "gate"
- },
- "name": "Gate"
- },
- "barrier/hedge": {
- "fields": [
- "height"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "barrier": "hedge"
- },
- "name": "Hedge",
- "matchScore": 0.25
- },
- "barrier/kerb": {
- "icon": "maki-wheelchair",
- "fields": [
- "kerb",
- "tactile_paving"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "tags": {
- "barrier": "kerb"
- },
- "name": "Kerb"
- },
- "barrier/kissing_gate": {
- "icon": "maki-barrier",
- "fields": [
- "access"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "kissing_gate"
- },
- "name": "Kissing Gate"
- },
- "barrier/lift_gate": {
- "icon": "maki-roadblock",
- "fields": [
- "access"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "tags": {
- "barrier": "lift_gate"
- },
- "name": "Lift Gate"
- },
- "barrier/retaining_wall": {
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "barrier": "retaining_wall"
- },
- "name": "Retaining Wall"
- },
- "barrier/stile": {
- "icon": "maki-roadblock",
- "fields": [
- "access"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "stile"
- },
- "name": "Stile"
- },
- "barrier/toll_booth": {
- "icon": "maki-roadblock",
- "fields": [
- "access",
- "building_area"
- ],
- "geometry": [
- "vertex",
- "area"
- ],
- "tags": {
- "barrier": "toll_booth"
- },
- "name": "Toll Booth"
- },
- "barrier/wall": {
- "icon": "maki-barrier",
- "fields": [
- "wall",
- "height"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "barrier": "wall"
- },
- "name": "Wall",
- "matchScore": 0.25
- },
- "boundary/administrative": {
- "name": "Administrative Boundary",
- "geometry": [
- "line"
- ],
- "tags": {
- "boundary": "administrative"
- },
- "fields": [
- "name",
- "admin_level"
- ]
- },
- "building": {
- "icon": "maki-home",
- "fields": [
- "name",
- "building",
- "levels",
- "height",
- "address"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "building": "*"
- },
- "matchScore": 0.6,
- "terms": [],
- "name": "Building"
- },
- "building/bunker": {
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "bunker"
- },
- "matchScore": 0.5,
- "name": "Bunker",
- "searchable": false
- },
- "building/entrance": {
- "icon": "maki-entrance-alt1",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "building": "entrance"
- },
- "name": "Entrance/Exit",
- "searchable": false
- },
- "building/train_station": {
- "icon": "maki-building",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "building": "train_station"
- },
- "matchScore": 0.5,
- "name": "Train Station",
- "searchable": false
- },
- "building/apartments": {
- "icon": "maki-building",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "apartments"
- },
- "matchScore": 0.5,
- "name": "Apartments"
- },
- "building/barn": {
- "icon": "maki-farm",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "barn"
- },
- "matchScore": 0.5,
- "name": "Barn"
- },
- "building/boathouse": {
- "icon": "maki-harbor",
- "fields": [
- "name",
- "levels",
- "height",
- "address"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "boathouse"
- },
- "matchScore": 0.5,
- "terms": [],
- "name": "Boathouse"
- },
- "building/bungalow": {
- "icon": "maki-home",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "bungalow"
- },
- "terms": [
- "home",
- "detached"
- ],
- "matchScore": 0.5,
- "name": "Bungalow"
- },
- "building/cabin": {
- "icon": "maki-home",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "cabin"
- },
- "matchScore": 0.5,
- "name": "Cabin"
- },
- "building/cathedral": {
- "icon": "maki-place-of-worship",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "cathedral"
- },
- "matchScore": 0.5,
- "name": "Cathedral Building"
- },
- "building/chapel": {
- "icon": "maki-place-of-worship",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "chapel"
- },
- "matchScore": 0.5,
- "name": "Chapel Building"
- },
- "building/church": {
- "icon": "maki-place-of-worship",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "church"
- },
- "matchScore": 0.5,
- "name": "Church Building"
- },
- "building/civic": {
- "icon": "maki-building",
- "fields": [
- "name",
- "address",
- "levels",
- "height",
- "smoking"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "civic"
- },
- "matchScore": 0.5,
- "name": "Civic Building"
- },
- "building/college": {
- "icon": "maki-building",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "terms": [
- "university"
- ],
- "tags": {
- "building": "college"
- },
- "matchScore": 0.5,
- "name": "College Building"
- },
- "building/commercial": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "levels",
- "height",
- "smoking"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "commercial"
- },
- "matchScore": 0.5,
- "name": "Commercial Building"
- },
- "building/construction": {
- "icon": "maki-building",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "construction"
- },
- "matchScore": 0.5,
- "name": "Building Under Construction"
- },
- "building/detached": {
- "icon": "maki-home",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "detached"
- },
- "terms": [
- "home",
- "single",
- "family",
- "residence",
- "dwelling"
- ],
- "matchScore": 0.5,
- "name": "Detached House"
- },
- "building/dormitory": {
- "icon": "maki-building",
- "fields": [
- "name",
- "address",
- "levels",
- "height",
- "smoking"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "dormitory"
- },
- "matchScore": 0.5,
- "name": "Dormitory"
- },
- "building/farm_auxiliary": {
- "icon": "maki-farm",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "farm_auxiliary"
- },
- "matchScore": 0.5,
- "name": "Farm Building"
- },
- "building/farm": {
- "icon": "maki-farm",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "farm"
- },
- "matchScore": 0.5,
- "name": "Farm House"
- },
- "building/garage": {
- "icon": "fas-warehouse",
- "fields": [
- "name",
- "capacity"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "garage"
- },
- "matchScore": 0.5,
- "name": "Garage"
- },
- "building/garages": {
- "icon": "fas-warehouse",
- "fields": [
- "name",
- "capacity"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "garages"
- },
- "matchScore": 0.5,
- "name": "Garages"
- },
- "building/grandstand": {
- "icon": "maki-building",
- "fields": [
- "name",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "grandstand"
- },
- "terms": [
- "tribune",
- "stand",
- "stands",
- "bleachers"
- ],
- "matchScore": 0.5,
- "name": "Grandstand"
- },
- "building/greenhouse": {
- "icon": "maki-garden-center",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "greenhouse"
- },
- "matchScore": 0.5,
- "name": "Greenhouse"
- },
- "building/hospital": {
- "icon": "maki-building",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "hospital"
- },
- "matchScore": 0.5,
- "name": "Hospital Building"
- },
- "building/hotel": {
- "icon": "maki-building",
- "fields": [
- "name",
- "address",
- "levels",
- "height",
- "smoking"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "hotel"
- },
- "matchScore": 0.5,
- "name": "Hotel Building"
- },
- "building/house": {
- "icon": "maki-home",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "house"
- },
- "terms": [
- "home",
- "family",
- "residence",
- "dwelling"
- ],
- "matchScore": 0.5,
- "name": "House"
- },
- "building/hut": {
- "geometry": [
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "building": "hut"
- },
- "matchScore": 0.5,
- "name": "Hut"
- },
- "building/industrial": {
- "icon": "maki-industry",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "industrial"
- },
- "matchScore": 0.5,
- "name": "Industrial Building"
- },
- "building/kindergarten": {
- "icon": "maki-building",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "terms": [
- "kindergarden",
- "pre-school"
- ],
- "tags": {
- "building": "kindergarten"
- },
- "matchScore": 0.5,
- "name": "Preschool/Kindergarten Building"
- },
- "building/mosque": {
- "icon": "maki-place-of-worship",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "mosque"
- },
- "matchScore": 0.5,
- "name": "Mosque Building"
- },
- "building/public": {
- "icon": "maki-building",
- "fields": [
- "name",
- "address",
- "levels",
- "height",
- "smoking"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "public"
- },
- "matchScore": 0.5,
- "name": "Public Building"
- },
- "building/residential": {
- "icon": "maki-residential-community",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "residential"
- },
- "matchScore": 0.5,
- "name": "Residential Building"
- },
- "building/retail": {
- "icon": "maki-commercial",
- "fields": [
- "name",
- "address",
- "levels",
- "height",
- "smoking"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "retail"
- },
- "matchScore": 0.5,
- "name": "Retail Building"
- },
- "building/roof": {
- "icon": "maki-shelter",
- "fields": [
- "name",
- "address"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "roof"
- },
- "matchScore": 0.5,
- "name": "Roof"
- },
- "building/ruins": {
- "icon": "temaki-ruins",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "ruins"
- },
- "matchScore": 0.5,
- "name": "Building Ruins"
- },
- "building/school": {
- "icon": "maki-building",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "terms": [
- "academy",
- "elementary school",
- "middle school",
- "high school"
- ],
- "tags": {
- "building": "school"
- },
- "matchScore": 0.5,
- "name": "School Building"
- },
- "building/semidetached_house": {
- "icon": "maki-home",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "semidetached_house"
- },
- "terms": [
- "home",
- "double",
- "duplex",
- "twin",
- "family",
- "residence",
- "dwelling"
- ],
- "matchScore": 0.5,
- "name": "Semi-Detached House"
- },
- "building/service": {
- "icon": "maki-home",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "service"
- },
- "matchScore": 0.5,
- "name": "Service Building"
- },
- "building/shed": {
- "icon": "maki-home",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "shed"
- },
- "matchScore": 0.5,
- "name": "Shed"
- },
- "building/stable": {
- "icon": "maki-horse-riding",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "stable"
- },
- "matchScore": 0.5,
- "name": "Stable"
- },
- "building/stadium": {
- "icon": "maki-stadium",
- "fields": [
- "name",
- "address",
- "levels",
- "height",
- "smoking"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "stadium"
- },
- "matchScore": 0.5,
- "name": "Stadium Building"
- },
- "building/static_caravan": {
- "icon": "maki-home",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "static_caravan"
- },
- "matchScore": 0.5,
- "name": "Static Mobile Home"
- },
- "building/temple": {
- "icon": "maki-place-of-worship",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "temple"
- },
- "matchScore": 0.5,
- "name": "Temple Building"
- },
- "building/terrace": {
- "icon": "maki-building",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "terrace"
- },
- "terms": [
- "home",
- "terrace",
- "brownstone",
- "family",
- "residence",
- "dwelling"
- ],
- "matchScore": 0.5,
- "name": "Row Houses"
- },
- "building/transportation": {
- "icon": "maki-building",
- "fields": [
- "name",
- "address",
- "levels",
- "height",
- "smoking"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "transportation"
- },
- "matchScore": 0.5,
- "name": "Transportation Building"
- },
- "building/university": {
- "icon": "maki-building",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "terms": [
- "college"
- ],
- "tags": {
- "building": "university"
- },
- "matchScore": 0.5,
- "name": "University Building"
- },
- "building/warehouse": {
- "icon": "maki-warehouse",
- "fields": [
- "name",
- "address",
- "levels",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "warehouse"
- },
- "matchScore": 0.5,
- "name": "Warehouse"
- },
- "camp_site/camp_pitch": {
- "icon": "maki-campsite",
- "fields": [
- "name",
- "ref"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "tent",
- "rv"
- ],
- "tags": {
- "camp_site": "camp_pitch"
- },
- "name": "Camp Pitch"
- },
- "club": {
- "icon": "maki-heart",
- "fields": [
- "name",
- "club",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "club": "*"
- },
- "terms": [
- "social"
- ],
- "name": "Club"
- },
- "craft": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "craft",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "*"
- },
- "terms": [],
- "name": "Craft"
- },
- "craft/jeweler": {
- "icon": "maki-marker-stroked",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "jeweler"
- },
- "reference": {
- "key": "shop",
- "value": "jewelry"
- },
- "name": "Jeweler",
- "searchable": false
- },
- "craft/locksmith": {
- "icon": "maki-marker-stroked",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "locksmith"
- },
- "reference": {
- "key": "shop",
- "value": "locksmith"
- },
- "name": "Locksmith",
- "searchable": false
- },
- "craft/optician": {
- "icon": "maki-marker-stroked",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "optician"
- },
- "reference": {
- "key": "shop",
- "value": "optician"
- },
- "name": "Optician",
- "searchable": false
- },
- "craft/tailor": {
- "icon": "maki-clothing-store",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "clothes",
- "suit"
- ],
- "tags": {
- "craft": "tailor"
- },
- "reference": {
- "key": "shop",
- "value": "tailor"
- },
- "name": "Tailor",
- "searchable": false
- },
- "craft/basket_maker": {
- "icon": "maki-art-gallery",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "basket_maker"
- },
- "name": "Basket Maker"
- },
- "craft/beekeeper": {
- "icon": "maki-farm",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "beekeeper"
- },
- "name": "Beekeeper"
- },
- "craft/blacksmith": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "blacksmith"
- },
- "name": "Blacksmith"
- },
- "craft/boatbuilder": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "boatbuilder"
- },
- "matchScore": 0.4,
- "name": "Boat Builder"
- },
- "craft/bookbinder": {
- "icon": "maki-library",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "book repair"
- ],
- "tags": {
- "craft": "bookbinder"
- },
- "name": "Bookbinder"
- },
- "craft/brewery": {
- "icon": "temaki-storage_tank",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "product"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "alcohol",
- "beer",
- "beverage",
- "bier",
- "booze",
- "cider"
- ],
- "tags": {
- "craft": "brewery"
- },
- "name": "Brewery"
- },
- "craft/carpenter": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "woodworker"
- ],
- "tags": {
- "craft": "carpenter"
- },
- "name": "Carpenter"
- },
- "craft/carpet_layer": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "carpet_layer"
- },
- "name": "Carpet Layer"
- },
- "craft/caterer": {
- "icon": "maki-restaurant",
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "caterer"
- },
- "name": "Caterer"
- },
- "craft/chimney_sweeper": {
- "icon": "temaki-chimney",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "chimney_sweeper"
- },
- "name": "Chimney Sweeper"
- },
- "craft/clockmaker": {
- "icon": "temaki-clock",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "clockmaker"
- },
- "name": "Clockmaker"
- },
- "craft/confectionery": {
- "icon": "maki-bakery",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "sweet",
- "candy"
- ],
- "tags": {
- "craft": "confectionery"
- },
- "name": "Candy Maker"
- },
- "craft/distillery": {
- "icon": "temaki-storage_tank",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "product"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "alcohol",
- "beverage",
- "bourbon",
- "booze",
- "brandy",
- "gin",
- "hooch",
- "liquor",
- "mezcal",
- "moonshine",
- "rum",
- "scotch",
- "spirits",
- "still",
- "tequila",
- "vodka",
- "whiskey",
- "whisky"
- ],
- "tags": {
- "craft": "distillery"
- },
- "name": "Distillery"
- },
- "craft/dressmaker": {
- "icon": "maki-clothing-store",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "seamstress"
- ],
- "tags": {
- "craft": "dressmaker"
- },
- "name": "Dressmaker"
- },
- "craft/electrician": {
- "icon": "temaki-power",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "power",
- "wire"
- ],
- "tags": {
- "craft": "electrician"
- },
- "name": "Electrician"
- },
- "craft/electronics_repair": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "electronics_repair"
- },
- "name": "Electronics Repair Shop"
- },
- "craft/gardener": {
- "icon": "maki-garden-center",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "landscaper",
- "grounds keeper"
- ],
- "tags": {
- "craft": "gardener"
- },
- "name": "Gardener"
- },
- "craft/glaziery": {
- "icon": "temaki-window",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "glass",
- "stained-glass",
- "window"
- ],
- "tags": {
- "craft": "glaziery"
- },
- "name": "Glaziery"
- },
- "craft/handicraft": {
- "icon": "maki-art-gallery",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "handicraft"
- },
- "name": "Handicraft"
- },
- "craft/hvac": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "heat*",
- "vent*",
- "air conditioning"
- ],
- "tags": {
- "craft": "hvac"
- },
- "name": "HVAC"
- },
- "craft/insulator": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "insulation"
- },
- "name": "Insulator"
- },
- "craft/key_cutter": {
- "icon": "fas-key",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "key_cutter"
- },
- "name": "Key Cutter"
- },
- "craft/metal_construction": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "metal_construction"
- },
- "name": "Metal Construction"
- },
- "craft/painter": {
- "icon": "maki-art-gallery",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "painter"
- },
- "name": "Painter"
- },
- "craft/photographer": {
- "icon": "maki-attraction",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "photographer"
- },
- "name": "Photographer"
- },
- "craft/photographic_laboratory": {
- "icon": "maki-attraction",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "film"
- ],
- "tags": {
- "craft": "photographic_laboratory"
- },
- "name": "Photographic Laboratory"
- },
- "craft/plasterer": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "plasterer"
- },
- "name": "Plasterer"
- },
- "craft/plumber": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "pipe"
- ],
- "tags": {
- "craft": "plumber"
- },
- "name": "Plumber"
- },
- "craft/pottery": {
- "icon": "maki-art-gallery",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "ceramic"
- ],
- "tags": {
- "craft": "pottery"
- },
- "name": "Pottery"
- },
- "craft/rigger": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "rigger"
- },
- "name": "Rigger"
- },
- "craft/roofer": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "roofer"
- },
- "name": "Roofer"
- },
- "craft/saddler": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "saddler"
- },
- "name": "Saddler"
- },
- "craft/sailmaker": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "sailmaker"
- },
- "name": "Sailmaker"
- },
- "craft/sawmill": {
- "icon": "maki-logging",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "lumber"
- ],
- "tags": {
- "craft": "sawmill"
- },
- "name": "Sawmill"
- },
- "craft/scaffolder": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "scaffolder"
- },
- "name": "Scaffolder"
- },
- "craft/sculptor": {
- "icon": "maki-art-gallery",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "sculptor"
- },
- "name": "Sculptor"
- },
- "craft/shoemaker": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "cobbler"
- ],
- "tags": {
- "craft": "shoemaker"
- },
- "name": "Shoemaker"
- },
- "craft/stonemason": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "masonry"
- ],
- "tags": {
- "craft": "stonemason"
- },
- "name": "Stonemason"
- },
- "craft/tiler": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "tiler"
- },
- "name": "Tiler"
- },
- "craft/tinsmith": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "tinsmith"
- },
- "name": "Tinsmith"
- },
- "craft/upholsterer": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "upholsterer"
- },
- "name": "Upholsterer"
- },
- "craft/watchmaker": {
- "icon": "temaki-clock",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "watchmaker"
- },
- "name": "Watchmaker"
- },
- "craft/window_construction": {
- "icon": "temaki-window",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "glass"
- ],
- "tags": {
- "craft": "window_construction"
- },
- "name": "Window Construction"
- },
- "craft/winery": {
- "icon": "maki-alcohol-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "winery"
- },
- "name": "Winery"
- },
- "embankment": {
- "geometry": [
- "line"
- ],
- "tags": {
- "embankment": "yes"
- },
- "name": "Embankment",
- "matchScore": 0.2
- },
- "emergency/designated": {
- "fields": [],
- "geometry": [
- "line"
- ],
- "tags": {
- "emergency": "designated"
- },
- "terms": [],
- "name": "Emergency Access Designated",
- "searchable": false,
- "matchScore": 0.01
- },
- "emergency/destination": {
- "fields": [],
- "geometry": [
- "line"
- ],
- "tags": {
- "emergency": "destination"
- },
- "terms": [],
- "name": "Emergency Access Destination",
- "searchable": false,
- "matchScore": 0.01
- },
- "emergency/no": {
- "fields": [],
- "geometry": [
- "line"
- ],
- "tags": {
- "emergency": "no"
- },
- "terms": [],
- "name": "Emergency Access No",
- "searchable": false,
- "matchScore": 0.01
- },
- "emergency/official": {
- "fields": [],
- "geometry": [
- "line"
- ],
- "tags": {
- "emergency": "official"
- },
- "terms": [],
- "name": "Emergency Access Official",
- "searchable": false,
- "matchScore": 0.01
- },
- "emergency/private": {
- "fields": [],
- "geometry": [
- "line"
- ],
- "tags": {
- "emergency": "private"
- },
- "terms": [],
- "name": "Emergency Access Private",
- "searchable": false,
- "matchScore": 0.01
- },
- "emergency/yes": {
- "fields": [],
- "geometry": [
- "line"
- ],
- "tags": {
- "emergency": "yes"
- },
- "terms": [],
- "name": "Emergency Access Yes",
- "searchable": false,
- "matchScore": 0.01
- },
- "emergency/ambulance_station": {
- "icon": "fas-ambulance",
- "fields": [
- "name",
- "operator",
- "building_area",
- "address"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "EMS",
- "EMT",
- "rescue"
- ],
- "tags": {
- "emergency": "ambulance_station"
- },
- "name": "Ambulance Station"
- },
- "emergency/defibrillator": {
- "icon": "maki-defibrillator",
- "fields": [
- "indoor",
- "ref",
- "operator"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "terms": [
- "AED"
- ],
- "tags": {
- "emergency": "defibrillator"
- },
- "name": "Defibrillator"
- },
- "emergency/fire_extinguisher": {
- "icon": "fas-fire-extinguisher",
- "fields": [
- "indoor",
- "ref",
- "operator"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "emergency": "fire_extinguisher"
- },
- "name": "Fire Extinguisher"
- },
- "emergency/fire_hydrant": {
- "icon": "temaki-fire_hydrant",
- "fields": [
- "fire_hydrant/type",
- "fire_hydrant/position",
- "ref",
- "operator"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "terms": [
- "fire plug"
- ],
- "tags": {
- "emergency": "fire_hydrant"
- },
- "name": "Fire Hydrant"
- },
- "emergency/life_ring": {
- "icon": "fas-life-ring",
- "fields": [
- "ref",
- "operator"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "terms": [
- "life buoy",
- "kisby ring",
- "kisbie ring",
- "perry buoy"
- ],
- "tags": {
- "emergency": "life_ring"
- },
- "name": "Life Ring"
- },
- "emergency/phone": {
- "icon": "maki-emergency-phone",
- "fields": [
- "operator"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "emergency": "phone"
- },
- "name": "Emergency Phone"
- },
- "emergency/water_tank": {
- "icon": "maki-water",
- "fields": [
- "name",
- "ref",
- "operator"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "terms": [
- "water tank",
- "cistern",
- "reservoir"
- ],
- "tags": {
- "emergency": "water_tank"
- },
- "name": "Emergency Water Tank"
- },
- "entrance": {
- "icon": "maki-entrance-alt1",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "entrance": "*"
- },
- "fields": [
- "entrance",
- "access_simple",
- "address"
- ],
- "name": "Entrance/Exit"
- },
- "footway/crossing-raised": {
- "fields": [
- "crossing",
- "access",
- "surface",
- "kerb",
- "tactile_paving"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "footway",
- "footway": "crossing",
- "traffic_calming": "table"
- },
- "reference": {
- "key": "traffic_calming",
- "value": "table"
- },
- "terms": [
- "flat top",
- "hump",
- "speed",
- "slow"
- ],
- "name": "Raised Street Crossing"
- },
- "footway/crossing": {
- "fields": [
- "crossing",
- "access",
- "surface",
- "kerb",
- "tactile_paving"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "footway",
- "footway": "crossing"
- },
- "reference": {
- "key": "footway",
- "value": "crossing"
- },
- "terms": [],
- "name": "Street Crossing"
- },
- "footway/crosswalk-raised": {
- "icon": "iD-highway-footway",
- "fields": [
- "crossing",
- "access",
- "surface",
- "kerb",
- "tactile_paving"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "footway",
- "footway": "crossing",
- "crossing": "zebra",
- "traffic_calming": "table"
- },
- "reference": {
- "key": "traffic_calming",
- "value": "table"
- },
- "terms": [
- "zebra crossing",
- "flat top",
- "hump",
- "speed",
- "slow"
- ],
- "name": "Raised Pedestrian Crosswalk"
- },
- "footway/crosswalk": {
- "icon": "iD-highway-footway",
- "fields": [
- "crossing",
- "access",
- "surface",
- "kerb",
- "tactile_paving"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "footway",
- "footway": "crossing",
- "crossing": "zebra"
- },
- "reference": {
- "key": "footway",
- "value": "crossing"
- },
- "terms": [
- "zebra crossing"
- ],
- "name": "Pedestrian Crosswalk"
- },
- "footway/sidewalk": {
- "icon": "iD-highway-footway",
- "fields": [
- "surface",
- "lit",
- "width",
- "structure",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "footway",
- "footway": "sidewalk"
- },
- "reference": {
- "key": "footway",
- "value": "sidewalk"
- },
- "terms": [],
- "name": "Sidewalk"
- },
- "ford": {
- "geometry": [
- "vertex"
- ],
- "tags": {
- "ford": "yes"
- },
- "name": "Ford"
- },
- "golf/bunker": {
- "icon": "maki-golf",
- "fields": [
- "name"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "golf": "bunker",
- "natural": "sand"
- },
- "terms": [
- "hazard",
- "bunker"
- ],
- "reference": {
- "key": "golf",
- "value": "bunker"
- },
- "name": "Sand Trap"
- },
- "golf/fairway": {
- "icon": "maki-golf",
- "fields": [
- "name"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "golf": "fairway",
- "landuse": "grass"
- },
- "reference": {
- "key": "golf",
- "value": "fairway"
- },
- "name": "Fairway"
- },
- "golf/green": {
- "icon": "maki-golf",
- "fields": [
- "name"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "golf": "green",
- "landuse": "grass",
- "leisure": "pitch",
- "sport": "golf"
- },
- "reference": {
- "key": "golf",
- "value": "green"
- },
- "name": "Putting Green"
- },
- "golf/hole": {
- "icon": "maki-golf",
- "fields": [
- "name",
- "ref_golf_hole",
- "par",
- "handicap"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "golf": "hole"
- },
- "name": "Golf Hole"
- },
- "golf/lateral_water_hazard_area": {
- "icon": "maki-golf",
- "fields": [
- "name"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "golf": "lateral_water_hazard",
- "natural": "water"
- },
- "reference": {
- "key": "golf",
- "value": "lateral_water_hazard"
- },
- "name": "Lateral Water Hazard"
- },
- "golf/lateral_water_hazard_line": {
- "icon": "maki-golf",
- "fields": [
- "name"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "golf": "lateral_water_hazard"
- },
- "name": "Lateral Water Hazard"
- },
- "golf/rough": {
- "icon": "maki-golf",
- "fields": [
- "name"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "golf": "rough",
- "landuse": "grass"
- },
- "reference": {
- "key": "golf",
- "value": "rough"
- },
- "name": "Rough"
- },
- "golf/tee": {
- "icon": "maki-golf",
- "fields": [
- "name"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "golf": "tee",
- "landuse": "grass"
- },
- "terms": [
- "teeing ground"
- ],
- "reference": {
- "key": "golf",
- "value": "tee"
- },
- "name": "Tee Box"
- },
- "golf/water_hazard_area": {
- "icon": "maki-golf",
- "fields": [
- "name"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "golf": "water_hazard",
- "natural": "water"
- },
- "reference": {
- "key": "golf",
- "value": "water_hazard"
- },
- "name": "Water Hazard"
- },
- "golf/water_hazard_line": {
- "icon": "maki-golf",
- "fields": [
- "name"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "golf": "water_hazard"
- },
- "name": "Water Hazard"
- },
- "healthcare": {
- "icon": "maki-hospital",
- "fields": [
- "name",
- "healthcare",
- "operator",
- "healthcare/speciality",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "healthcare": "*"
- },
- "terms": [
- "clinic",
- "doctor",
- "disease",
- "health",
- "institution",
- "sick",
- "surgery",
- "wellness"
- ],
- "name": "Healthcare Facility"
- },
- "healthcare/alternative": {
- "icon": "maki-hospital",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "building_area",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "acupuncture",
- "anthroposophical",
- "applied kinesiology",
- "aromatherapy",
- "ayurveda",
- "herbalism",
- "homeopathy",
- "hydrotherapy",
- "hypnosis",
- "naturopathy",
- "osteopathy",
- "reflexology",
- "reiki",
- "shiatsu",
- "traditional",
- "tuina",
- "unani"
- ],
- "tags": {
- "healthcare": "alternative"
- },
- "name": "Alternative Medicine"
- },
- "healthcare/alternative/chiropractic": {
- "icon": "maki-hospital",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "building_area",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "back",
- "pain",
- "spine"
- ],
- "tags": {
- "healthcare": "alternative",
- "healthcare:speciality": "chiropractic"
- },
- "name": "Chiropractor"
- },
- "healthcare/audiologist": {
- "icon": "maki-hospital",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "building_area",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "ear",
- "hearing",
- "sound"
- ],
- "tags": {
- "healthcare": "audiologist"
- },
- "name": "Audiologist"
- },
- "healthcare/birthing_center": {
- "icon": "maki-hospital",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "building_area",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "baby",
- "childbirth",
- "delivery",
- "labour",
- "labor",
- "pregnancy"
- ],
- "tags": {
- "healthcare": "birthing_center"
- },
- "name": "Birthing Center"
- },
- "healthcare/blood_donation": {
- "icon": "maki-blood-bank",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "blood_components",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "blood bank",
- "blood donation",
- "blood transfusion",
- "apheresis",
- "plasmapheresis",
- "plateletpheresis",
- "stem cell donation"
- ],
- "tags": {
- "healthcare": "blood_donation"
- },
- "name": "Blood Donor Center"
- },
- "healthcare/hospice": {
- "icon": "maki-hospital",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "building_area",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "terminal",
- "illness"
- ],
- "tags": {
- "healthcare": "hospice"
- },
- "name": "Hospice"
- },
- "healthcare/laboratory": {
- "icon": "maki-hospital",
- "fields": [
- "name",
- "operator",
- "website",
- "ref",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "medical_laboratory",
- "medical_lab",
- "blood_check"
- ],
- "tags": {
- "healthcare": "laboratory"
- },
- "name": "Medical Laboratory"
- },
- "healthcare/midwife": {
- "icon": "maki-hospital",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "building_area",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "baby",
- "childbirth",
- "delivery",
- "labour",
- "labor",
- "pregnancy"
- ],
- "tags": {
- "healthcare": "midwife"
- },
- "name": "Midwife"
- },
- "healthcare/occupational_therapist": {
- "icon": "maki-hospital",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "building_area",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "therapist",
- "therapy"
- ],
- "tags": {
- "healthcare": "occupational_therapist"
- },
- "name": "Occupational Therapist"
- },
- "healthcare/optometrist": {
- "icon": "maki-hospital",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "building_area",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "eye",
- "glasses",
- "lasik",
- "lenses",
- "vision"
- ],
- "tags": {
- "healthcare": "optometrist"
- },
- "name": "Optometrist"
- },
- "healthcare/physiotherapist": {
- "icon": "maki-hospital",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "building_area",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "physical",
- "therapist",
- "therapy"
- ],
- "tags": {
- "healthcare": "physiotherapist"
- },
- "name": "Physiotherapist"
- },
- "healthcare/podiatrist": {
- "icon": "maki-hospital",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "building_area",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "foot",
- "feet",
- "nails"
- ],
- "tags": {
- "healthcare": "podiatrist"
- },
- "name": "Podiatrist"
- },
- "healthcare/psychotherapist": {
- "icon": "maki-hospital",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "building_area",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "anxiety",
- "counselor",
- "depression",
- "mental health",
- "mind",
- "suicide",
- "therapist",
- "therapy"
- ],
- "tags": {
- "healthcare": "psychotherapist"
- },
- "name": "Psychotherapist"
- },
- "healthcare/rehabilitation": {
- "icon": "maki-hospital",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "building_area",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "rehab",
- "therapist",
- "therapy"
- ],
- "tags": {
- "healthcare": "rehabilitation"
- },
- "name": "Rehabilitation Facility"
- },
- "healthcare/speech_therapist": {
- "icon": "maki-hospital",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "building_area",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "speech",
- "therapist",
- "therapy",
- "voice"
- ],
- "tags": {
- "healthcare": "speech_therapist"
- },
- "name": "Speech Therapist"
- },
- "highway/bus_stop": {
- "icon": "maki-bus",
- "fields": [
- "name",
- "network",
- "operator",
- "bench",
- "shelter"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "highway": "bus_stop"
- },
- "name": "Bus Stop / Platform",
- "searchable": false
- },
- "highway/bridleway": {
- "fields": [
- "name",
- "surface",
- "width",
- "structure",
- "access"
- ],
- "icon": "iD-highway-bridleway",
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "bridleway"
- },
- "terms": [
- "bridleway",
- "equestrian",
- "horse"
- ],
- "name": "Bridle Path"
- },
- "highway/bus_guideway": {
- "icon": "iD-highway-bus-guideway",
- "fields": [
- "name",
- "operator",
- "oneway"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "bus_guideway"
- },
- "addTags": {
- "highway": "bus_guideway",
- "access": "no",
- "bus": "designated"
- },
- "removeTags": {
- "highway": "bus_guideway",
- "access": "no",
- "bus": "designated"
- },
- "terms": [],
- "name": "Bus Guideway"
- },
- "highway/corridor": {
- "icon": "iD-highway-footway",
- "fields": [
- "name",
- "width",
- "level",
- "access_simple"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "corridor"
- },
- "terms": [
- "gallery",
- "hall",
- "hallway",
- "indoor",
- "passage",
- "passageway"
- ],
- "name": "Indoor Corridor"
- },
- "highway/crossing-raised": {
- "fields": [
- "crossing",
- "kerb",
- "tactile_paving"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "crossing",
- "traffic_calming": "table"
- },
- "reference": {
- "key": "traffic_calming",
- "value": "table"
- },
- "terms": [
- "flat top",
- "hump",
- "speed",
- "slow"
- ],
- "name": "Raised Street Crossing"
- },
- "highway/crossing": {
- "fields": [
- "crossing",
- "kerb",
- "tactile_paving"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "crossing"
- },
- "reference": {
- "key": "highway",
- "value": "crossing"
- },
- "terms": [],
- "name": "Street Crossing"
- },
- "highway/crosswalk-raised": {
- "icon": "temaki-pedestrian",
- "fields": [
- "crossing",
- "kerb",
- "tactile_paving"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "crossing",
- "crossing": "zebra",
- "traffic_calming": "table"
- },
- "reference": {
- "key": "traffic_calming",
- "value": "table"
- },
- "terms": [
- "zebra crossing",
- "flat top",
- "hump",
- "speed",
- "slow"
- ],
- "name": "Raised Pedestrian Crosswalk"
- },
- "highway/crosswalk": {
- "icon": "temaki-pedestrian",
- "fields": [
- "crossing",
- "kerb",
- "tactile_paving"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "crossing",
- "crossing": "zebra"
- },
- "reference": {
- "key": "highway",
- "value": "crossing"
- },
- "terms": [
- "zebra crossing"
- ],
- "name": "Pedestrian Crosswalk"
- },
- "highway/cycleway": {
- "icon": "iD-highway-cycleway",
- "fields": [
- "name",
- "oneway",
- "surface",
- "lit",
- "width",
- "structure",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "cycleway"
- },
- "terms": [
- "bike"
- ],
- "name": "Cycle Path"
- },
- "highway/elevator": {
- "icon": "temaki-elevator",
- "fields": [
- "access_simple",
- "opening_hours",
- "maxweight",
- "ref"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "elevator"
- },
- "terms": [
- "lift"
- ],
- "name": "Elevator"
- },
- "highway/footway": {
- "icon": "iD-highway-footway",
- "fields": [
- "name",
- "surface",
- "lit",
- "width",
- "structure",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "terms": [
- "hike",
- "hiking",
- "trackway",
- "trail",
- "walk"
- ],
- "tags": {
- "highway": "footway"
- },
- "name": "Foot Path"
- },
- "highway/give_way": {
- "icon": "temaki-yield",
- "fields": [
- "direction_vertex"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "give_way"
- },
- "terms": [
- "give way",
- "yield",
- "sign"
- ],
- "name": "Yield Sign"
- },
- "highway/living_street": {
- "icon": "iD-highway-living-street",
- "fields": [
- "name",
- "oneway",
- "maxspeed",
- "lanes",
- "surface",
- "structure",
- "maxheight",
- "access",
- "cycleway"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "living_street"
- },
- "name": "Living Street"
- },
- "highway/mini_roundabout": {
- "icon": "maki-circle-stroked",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "mini_roundabout"
- },
- "fields": [
- "direction_clock"
- ],
- "name": "Mini-Roundabout"
- },
- "highway/motorway_junction": {
- "icon": "temaki-junction",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "motorway_junction"
- },
- "fields": [
- "ref_highway_junction"
- ],
- "name": "Motorway Junction / Exit"
- },
- "highway/motorway_link": {
- "icon": "iD-highway-motorway-link",
- "fields": [
- "name",
- "ref_road_number",
- "oneway",
- "maxspeed",
- "maxspeed/advisory",
- "lanes",
- "surface",
- "structure",
- "maxheight",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "motorway_link"
- },
- "addTags": {
- "highway": "motorway_link",
- "oneway": "yes"
- },
- "removeTags": {
- "highway": "motorway_link",
- "oneway": "yes"
- },
- "terms": [
- "ramp",
- "on ramp",
- "off ramp"
- ],
- "name": "Motorway Link"
- },
- "highway/motorway": {
- "icon": "iD-highway-motorway",
- "fields": [
- "name",
- "ref_road_number",
- "oneway_yes",
- "maxspeed",
- "lanes",
- "surface",
- "structure",
- "maxheight",
- "toll",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "motorway"
- },
- "terms": [
- "autobahn",
- "expressway",
- "freeway",
- "highway",
- "interstate",
- "parkway",
- "thruway",
- "turnpike"
- ],
- "name": "Motorway"
- },
- "highway/passing_place": {
- "icon": "maki-circle-stroked",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "passing_place"
- },
- "terms": [
- "turnout, pullout"
- ],
- "name": "Passing Place"
- },
- "highway/path": {
- "icon": "iD-highway-path",
- "fields": [
- "name",
- "surface",
- "width",
- "structure",
- "access",
- "incline",
- "sac_scale",
- "trail_visibility",
- "mtb/scale",
- "mtb/scale/uphill",
- "mtb/scale/imba",
- "horse_scale",
- "ref"
- ],
- "geometry": [
- "line"
- ],
- "terms": [
- "hike",
- "hiking",
- "trackway",
- "trail",
- "walk"
- ],
- "tags": {
- "highway": "path"
- },
- "name": "Path"
- },
- "highway/pedestrian_area": {
- "icon": "temaki-pedestrian",
- "fields": [
- "name",
- "surface",
- "lit",
- "width",
- "structure",
- "access"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "highway": "pedestrian",
- "area": "yes"
- },
- "terms": [
- "center",
- "centre",
- "plaza",
- "quad",
- "square",
- "walkway"
- ],
- "name": "Pedestrian Area"
- },
- "highway/pedestrian_line": {
- "icon": "iD-highway-footway",
- "fields": [
- "name",
- "surface",
- "lit",
- "width",
- "oneway",
- "structure",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "pedestrian"
- },
- "terms": [
- "center",
- "centre",
- "plaza",
- "quad",
- "square",
- "walkway"
- ],
- "name": "Pedestrian Street"
- },
- "highway/primary_link": {
- "icon": "iD-highway-primary-link",
- "fields": [
- "name",
- "oneway",
- "maxspeed",
- "maxspeed/advisory",
- "lanes",
- "surface",
- "maxheight",
- "ref_road_number",
- "cycleway",
- "structure",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "primary_link"
- },
- "terms": [
- "ramp",
- "on ramp",
- "off ramp"
- ],
- "name": "Primary Link"
- },
- "highway/primary": {
- "icon": "iD-highway-primary",
- "fields": [
- "name",
- "oneway",
- "maxspeed",
- "lanes",
- "surface",
- "structure",
- "maxheight",
- "ref_road_number",
- "cycleway",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "primary"
- },
- "terms": [],
- "name": "Primary Road"
- },
- "highway/raceway": {
- "icon": "iD-highway-unclassified",
- "fields": [
- "name",
- "oneway",
- "surface",
- "sport_racing_motor",
- "lit",
- "width",
- "lanes",
- "structure"
- ],
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "tags": {
- "highway": "raceway"
- },
- "addTags": {
- "highway": "raceway",
- "sport": "motor"
- },
- "terms": [
- "auto*",
- "formula one",
- "kart",
- "motocross",
- "nascar",
- "race*",
- "track"
- ],
- "name": "Racetrack (Motorsport)"
- },
- "highway/residential": {
- "icon": "iD-highway-residential",
- "fields": [
- "name",
- "oneway",
- "maxspeed",
- "lanes",
- "surface",
- "structure",
- "maxheight",
- "cycleway",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "residential"
- },
- "terms": [],
- "name": "Residential Road"
- },
- "highway/rest_area": {
- "icon": "maki-car",
- "fields": [
- "name"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "highway": "rest_area"
- },
- "terms": [
- "rest stop"
- ],
- "name": "Rest Area"
- },
- "highway/road": {
- "icon": "iD-highway-road",
- "fields": [
- "name",
- "oneway",
- "maxspeed",
- "lanes",
- "surface",
- "structure",
- "maxheight",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "road"
- },
- "terms": [],
- "name": "Unknown Road"
- },
- "highway/secondary_link": {
- "icon": "iD-highway-secondary-link",
- "fields": [
- "name",
- "oneway",
- "maxspeed",
- "maxspeed/advisory",
- "lanes",
- "surface",
- "structure",
- "maxheight",
- "ref_road_number",
- "cycleway",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "secondary_link"
- },
- "terms": [
- "ramp",
- "on ramp",
- "off ramp"
- ],
- "name": "Secondary Link"
- },
- "highway/secondary": {
- "icon": "iD-highway-secondary",
- "fields": [
- "name",
- "oneway",
- "maxspeed",
- "lanes",
- "surface",
- "structure",
- "maxheight",
- "ref_road_number",
- "cycleway",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "secondary"
- },
- "terms": [],
- "name": "Secondary Road"
- },
- "highway/service": {
- "icon": "iD-highway-service",
- "fields": [
- "name",
- "service",
- "oneway",
- "maxspeed",
- "surface",
- "structure",
- "maxheight",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "service"
- },
- "terms": [],
- "name": "Service Road"
- },
- "highway/service/alley": {
- "icon": "iD-highway-service",
- "fields": [
- "name",
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "surface",
- "maxheight"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "service",
- "service": "alley"
- },
- "reference": {
- "key": "service",
- "value": "alley"
- },
- "name": "Alley"
- },
- "highway/service/drive-through": {
- "icon": "iD-highway-service",
- "fields": [
- "name",
- "oneway",
- "covered",
- "maxheight",
- "maxspeed",
- "structure",
- "access",
- "surface"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "service",
- "service": "drive-through"
- },
- "reference": {
- "key": "service",
- "value": "drive-through"
- },
- "name": "Drive-Through"
- },
- "highway/service/driveway": {
- "icon": "iD-highway-service",
- "fields": [
- "name",
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "surface",
- "maxheight"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "service",
- "service": "driveway"
- },
- "reference": {
- "key": "service",
- "value": "driveway"
- },
- "name": "Driveway"
- },
- "highway/service/emergency_access": {
- "icon": "iD-highway-service",
- "fields": [
- "name",
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "surface",
- "maxheight"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "service",
- "service": "emergency_access"
- },
- "reference": {
- "key": "service",
- "value": "emergency_access"
- },
- "name": "Emergency Access"
- },
- "highway/service/parking_aisle": {
- "icon": "iD-highway-service",
- "fields": [
- "name",
- "oneway",
- "maxspeed",
- "structure",
- "access",
- "surface",
- "maxheight"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "service",
- "service": "parking_aisle"
- },
- "reference": {
- "key": "service",
- "value": "parking_aisle"
- },
- "name": "Parking Aisle"
- },
- "highway/services": {
- "icon": "maki-car",
- "fields": [
- "name"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "highway": "services"
- },
- "terms": [
- "services",
- "travel plaza",
- "service station"
- ],
- "name": "Service Area"
- },
- "highway/speed_camera": {
- "icon": "maki-attraction",
- "geometry": [
- "point",
- "vertex"
- ],
- "fields": [
- "direction",
- "ref"
- ],
- "tags": {
- "highway": "speed_camera"
- },
- "terms": [],
- "name": "Speed Camera"
- },
- "highway/steps": {
- "icon": "iD-highway-steps",
- "fields": [
- "surface",
- "lit",
- "width",
- "incline_steps",
- "handrail",
- "step_count"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "steps"
- },
- "terms": [
- "stairs",
- "staircase"
- ],
- "name": "Steps"
- },
- "highway/stop": {
- "icon": "temaki-stop",
- "fields": [
- "stop",
- "direction_vertex"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "stop"
- },
- "terms": [
- "stop",
- "halt",
- "sign"
- ],
- "name": "Stop Sign"
- },
- "highway/street_lamp": {
- "icon": "temaki-bulb",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "highway": "street_lamp"
- },
- "fields": [
- "lamp_type",
- "direction",
- "ref"
- ],
- "terms": [
- "streetlight",
- "street light",
- "lamp",
- "light",
- "gaslight"
- ],
- "name": "Street Lamp"
- },
- "highway/tertiary_link": {
- "icon": "iD-highway-tertiary-link",
- "fields": [
- "name",
- "oneway",
- "maxspeed",
- "maxspeed/advisory",
- "lanes",
- "surface",
- "structure",
- "maxheight",
- "ref_road_number",
- "cycleway",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "tertiary_link"
- },
- "terms": [
- "ramp",
- "on ramp",
- "off ramp"
- ],
- "name": "Tertiary Link"
- },
- "highway/tertiary": {
- "icon": "iD-highway-tertiary",
- "fields": [
- "name",
- "oneway",
- "maxspeed",
- "lanes",
- "surface",
- "structure",
- "maxheight",
- "ref_road_number",
- "cycleway",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "tertiary"
- },
- "terms": [],
- "name": "Tertiary Road"
- },
- "highway/track": {
- "icon": "iD-highway-track",
- "fields": [
- "name",
- "tracktype",
- "surface",
- "width",
- "structure",
- "access",
- "incline",
- "smoothness",
- "mtb/scale",
- "mtb/scale/uphill",
- "mtb/scale/imba",
- "horse_scale"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "track"
- },
- "terms": [
- "woods road",
- "forest road",
- "logging road",
- "fire road",
- "farm road",
- "agricultural road",
- "ranch road",
- "carriage road",
- "primitive",
- "unmaintained",
- "rut",
- "offroad",
- "4wd",
- "4x4",
- "four wheel drive",
- "atv",
- "quad",
- "jeep",
- "double track",
- "two track"
- ],
- "name": "Unmaintained Track Road"
- },
- "highway/traffic_mirror": {
- "geometry": [
- "point",
- "vertex"
- ],
- "fields": [
- "direction"
- ],
- "tags": {
- "highway": "traffic_mirror"
- },
- "terms": [
- "blind spot",
- "convex",
- "corner",
- "curved",
- "roadside",
- "round",
- "safety",
- "sphere",
- "visibility"
- ],
- "name": "Traffic Mirror"
- },
- "highway/traffic_signals": {
- "icon": "temaki-traffic_signals",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "traffic_signals"
- },
- "fields": [
- "traffic_signals",
- "traffic_signals/direction"
- ],
- "terms": [
- "light",
- "stoplight",
- "traffic light"
- ],
- "name": "Traffic Signals"
- },
- "highway/trunk_link": {
- "icon": "iD-highway-trunk-link",
- "fields": [
- "name",
- "ref_road_number",
- "oneway",
- "maxspeed",
- "maxspeed/advisory",
- "lanes",
- "surface",
- "structure",
- "maxheight",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "trunk_link"
- },
- "terms": [
- "ramp",
- "on ramp",
- "off ramp"
- ],
- "name": "Trunk Link"
- },
- "highway/trunk": {
- "icon": "iD-highway-trunk",
- "fields": [
- "name",
- "ref_road_number",
- "oneway",
- "maxspeed",
- "lanes",
- "surface",
- "structure",
- "maxheight",
- "toll",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "trunk"
- },
- "terms": [],
- "name": "Trunk Road"
- },
- "highway/turning_circle": {
- "icon": "maki-circle-stroked",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "turning_circle"
- },
- "terms": [
- "cul-de-sac"
- ],
- "name": "Turning Circle"
- },
- "highway/turning_loop": {
- "icon": "maki-circle",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "turning_loop"
- },
- "terms": [
- "cul-de-sac"
- ],
- "name": "Turning Loop (Island)"
- },
- "highway/unclassified": {
- "icon": "iD-highway-unclassified",
- "fields": [
- "name",
- "oneway",
- "maxspeed",
- "lanes",
- "surface",
- "structure",
- "maxheight",
- "cycleway",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "unclassified"
- },
- "terms": [],
- "name": "Minor/Unclassified Road"
- },
- "historic": {
- "icon": "temaki-ruins",
- "fields": [
- "historic",
- "inscription"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "historic": "*"
- },
- "name": "Historic Site"
- },
- "historic/archaeological_site": {
- "icon": "temaki-ruins",
- "fields": [
- "name",
- "historic/civilization",
- "inscription"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "historic": "archaeological_site"
- },
- "name": "Archaeological Site"
- },
- "historic/boundary_stone": {
- "icon": "temaki-milestone",
- "fields": [
- "name",
- "inscription"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "historic": "boundary_stone"
- },
- "name": "Boundary Stone"
- },
- "historic/castle": {
- "icon": "maki-castle",
- "fields": [
- "name",
- "castle_type",
- "building_area",
- "historic/civilization"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "historic": "castle"
- },
- "name": "Castle"
- },
- "historic/memorial": {
- "icon": "maki-monument",
- "fields": [
- "name",
- "memorial",
- "inscription"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "dedicatory",
- "epitaph",
- "remember",
- "remembrance",
- "memory",
- "monument",
- "stolperstein"
- ],
- "tags": {
- "historic": "memorial"
- },
- "name": "Memorial"
- },
- "historic/monument": {
- "icon": "maki-monument",
- "fields": [
- "name",
- "inscription"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "historic": "monument"
- },
- "name": "Monument"
- },
- "historic/ruins": {
- "icon": "temaki-ruins",
- "fields": [
- "name",
- "historic/civilization",
- "inscription"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "historic": "ruins"
- },
- "name": "Ruins"
- },
- "historic/tomb": {
- "icon": "maki-cemetery",
- "fields": [
- "name",
- "tomb",
- "building_area",
- "inscription"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "historic": "tomb"
- },
- "name": "Tomb"
- },
- "historic/wayside_cross": {
- "icon": "maki-religious-christian",
- "fields": [
- "name",
- "inscription"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "historic": "wayside_cross"
- },
- "name": "Wayside Cross"
- },
- "historic/wayside_shrine": {
- "icon": "maki-landmark",
- "fields": [
- "name",
- "religion",
- "denomination",
- "inscription"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "historic": "wayside_shrine"
- },
- "name": "Wayside Shrine"
- },
- "junction": {
- "icon": "temaki-junction",
- "fields": [
- "name"
- ],
- "geometry": [
- "vertex",
- "area"
- ],
- "tags": {
- "junction": "yes"
- },
- "name": "Junction"
- },
- "landuse": {
- "fields": [
- "name",
- "landuse"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "*"
- },
- "matchScore": 0.9,
- "name": "Land Use"
- },
- "landuse/farm": {
- "icon": "maki-farm",
- "fields": [
- "name",
- "operator",
- "crop"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "landuse": "farm"
- },
- "terms": [],
- "name": "Farmland",
- "searchable": false
- },
- "landuse/allotments": {
- "icon": "maki-garden-center",
- "geometry": [
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "landuse": "allotments"
- },
- "terms": [
- "allotment",
- "garden"
- ],
- "name": "Community Garden"
- },
- "landuse/aquaculture": {
- "icon": "maki-aquarium",
- "fields": [
- "name",
- "operator",
- "produce"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "aquaculture"
- },
- "terms": [
- "fish farm",
- "crustacean",
- "algae",
- "aquafarming",
- "shrimp farm",
- "oyster farm",
- "mariculture",
- "algaculture"
- ],
- "name": "Aquaculture"
- },
- "landuse/basin": {
- "icon": "maki-water",
- "fields": [
- "name"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "basin"
- },
- "terms": [],
- "name": "Basin"
- },
- "landuse/brownfield": {
- "geometry": [
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "landuse": "brownfield"
- },
- "terms": [],
- "matchScore": 0.9,
- "name": "Brownfield"
- },
- "landuse/cemetery": {
- "icon": "maki-cemetery",
- "fields": [
- "name",
- "religion",
- "denomination"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "cemetery"
- },
- "terms": [],
- "name": "Cemetery"
- },
- "landuse/churchyard": {
- "icon": "maki-religious-christian",
- "fields": [
- "name",
- "religion",
- "denomination"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "churchyard"
- },
- "terms": [],
- "name": "Churchyard"
- },
- "landuse/commercial": {
- "icon": "maki-suitcase",
- "fields": [
- "name"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "commercial"
- },
- "terms": [],
- "matchScore": 0.9,
- "name": "Commercial Area"
- },
- "landuse/construction": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "construction",
- "operator"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "construction"
- },
- "terms": [],
- "name": "Construction"
- },
- "landuse/farmland": {
- "icon": "maki-farm",
- "fields": [
- "name",
- "operator",
- "crop",
- "produce"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "farmland"
- },
- "terms": [
- "crop",
- "grow",
- "plant"
- ],
- "name": "Farmland"
- },
- "landuse/farmyard": {
- "icon": "maki-farm",
- "fields": [
- "name",
- "operator",
- "crop"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "farmyard"
- },
- "terms": [
- "crop",
- "grow",
- "plant"
- ],
- "name": "Farmyard"
- },
- "landuse/forest": {
- "icon": "maki-park-alt1",
- "fields": [
- "name",
- "leaf_type",
- "leaf_cycle",
- "produce"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "forest"
- },
- "terms": [
- "cut",
- "forest",
- "lumber",
- "tree"
- ],
- "name": "Forest"
- },
- "landuse/garages": {
- "icon": "fas-warehouse",
- "geometry": [
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "landuse": "garages"
- },
- "terms": [],
- "name": "Garage Landuse"
- },
- "landuse/grass": {
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "grass"
- },
- "terms": [],
- "name": "Grass"
- },
- "landuse/greenfield": {
- "geometry": [
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "landuse": "greenfield"
- },
- "terms": [],
- "matchScore": 0.9,
- "name": "Greenfield"
- },
- "landuse/greenhouse_horticulture": {
- "icon": "maki-garden",
- "fields": [
- "name",
- "operator"
- ],
- "geometry": [
- "area"
- ],
- "terms": [
- "flower",
- "greenhouse",
- "horticulture",
- "grow",
- "vivero"
- ],
- "tags": {
- "landuse": "greenhouse_horticulture"
- },
- "matchScore": 0.9,
- "name": "Greenhouse Horticulture"
- },
- "landuse/harbour": {
- "icon": "maki-harbor",
- "fields": [
- "name",
- "operator"
- ],
- "geometry": [
- "area"
- ],
- "terms": [
- "boat"
- ],
- "tags": {
- "landuse": "harbour"
- },
- "name": "Harbor"
- },
- "landuse/industrial": {
- "icon": "maki-industry",
- "fields": [
- "name",
- "industrial"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "industrial"
- },
- "terms": [],
- "matchScore": 0.9,
- "name": "Industrial Area"
- },
- "landuse/industrial/scrap_yard": {
- "icon": "maki-car",
- "fields": [
- "name",
- "operator",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "industrial": "scrap_yard"
- },
- "addTags": {
- "landuse": "industrial",
- "industrial": "scrap_yard"
- },
- "removeTags": {
- "landuse": "industrial",
- "industrial": "scrap_yard"
- },
- "reference": {
- "key": "industrial",
- "value": "scrap_yard"
- },
- "terms": [
- "car",
- "junk",
- "metal",
- "salvage",
- "scrap",
- "u-pull-it",
- "vehicle",
- "wreck",
- "yard"
- ],
- "name": "Scrap Yard"
- },
- "landuse/industrial/slaughterhouse": {
- "icon": "maki-slaughterhouse",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "industrial": "slaughterhouse"
- },
- "addTags": {
- "landuse": "industrial",
- "industrial": "slaughterhouse"
- },
- "removeTags": {
- "landuse": "industrial",
- "industrial": "slaughterhouse"
- },
- "reference": {
- "key": "industrial",
- "value": "slaughterhouse"
- },
- "terms": [
- "abattoir",
- "beef",
- "butchery",
- "calf",
- "chicken",
- "cow",
- "killing house",
- "meat",
- "pig",
- "pork",
- "poultry",
- "shambles",
- "stockyard"
- ],
- "name": "Slaughterhouse"
- },
- "landuse/landfill": {
- "geometry": [
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "landuse": "landfill"
- },
- "terms": [
- "dump"
- ],
- "name": "Landfill"
- },
- "landuse/meadow": {
- "icon": "maki-garden",
- "geometry": [
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "landuse": "meadow"
- },
- "terms": [],
- "name": "Meadow"
- },
- "landuse/military": {
- "icon": "temaki-military",
- "fields": [
- "name"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "military"
- },
- "terms": [],
- "matchScore": 0.9,
- "name": "Military Area"
- },
- "landuse/military/airfield": {
- "icon": "maki-airfield",
- "fields": [
- "name",
- "iata",
- "icao"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "military": "airfield"
- },
- "addTags": {
- "landuse": "military",
- "military": "airfield"
- },
- "removeTags": {
- "landuse": "military",
- "military": "airfield"
- },
- "terms": [
- "air force",
- "army",
- "base",
- "bomb",
- "fight",
- "force",
- "guard",
- "heli*",
- "jet",
- "marine",
- "navy",
- "plane",
- "troop",
- "war"
- ],
- "name": "Military Airfield"
- },
- "landuse/military/barracks": {
- "icon": "temaki-military",
- "fields": [
- "name",
- "building_area"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "military": "barracks"
- },
- "addTags": {
- "landuse": "military",
- "military": "barracks"
- },
- "removeTags": {
- "landuse": "military",
- "military": "barracks"
- },
- "terms": [
- "air force",
- "army",
- "base",
- "fight",
- "force",
- "guard",
- "marine",
- "navy",
- "troop",
- "war"
- ],
- "name": "Barracks"
- },
- "landuse/military/bunker": {
- "icon": "temaki-military",
- "fields": [
- "name",
- "bunker_type",
- "building_area"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "military": "bunker"
- },
- "addTags": {
- "building": "bunker",
- "landuse": "military",
- "military": "bunker"
- },
- "removeTags": {
- "building": "bunker",
- "landuse": "military",
- "military": "bunker"
- },
- "terms": [
- "air force",
- "army",
- "base",
- "fight",
- "force",
- "guard",
- "marine",
- "navy",
- "troop",
- "war"
- ],
- "name": "Military Bunker"
- },
- "landuse/military/checkpoint": {
- "icon": "maki-barrier",
- "fields": [
- "name"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "military": "checkpoint"
- },
- "addTags": {
- "landuse": "military",
- "military": "checkpoint"
- },
- "removeTags": {
- "landuse": "military",
- "military": "checkpoint"
- },
- "terms": [
- "air force",
- "army",
- "base",
- "force",
- "guard",
- "marine",
- "navy",
- "troop",
- "war"
- ],
- "name": "Checkpoint"
- },
- "landuse/military/danger_area": {
- "icon": "maki-danger",
- "fields": [
- "name"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "military": "danger_area"
- },
- "addTags": {
- "landuse": "military",
- "military": "danger_area"
- },
- "removeTags": {
- "landuse": "military",
- "military": "danger_area"
- },
- "terms": [
- "air force",
- "army",
- "base",
- "blast",
- "bomb",
- "explo*",
- "force",
- "guard",
- "mine",
- "marine",
- "navy",
- "troop",
- "war"
- ],
- "name": "Danger Area"
- },
- "landuse/military/naval_base": {
- "icon": "temaki-military",
- "fields": [
- "name"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "military": "naval_base"
- },
- "addTags": {
- "landuse": "military",
- "military": "naval_base"
- },
- "removeTags": {
- "landuse": "military",
- "military": "naval_base"
- },
- "terms": [
- "base",
- "fight",
- "force",
- "guard",
- "marine",
- "navy",
- "ship",
- "sub",
- "troop",
- "war"
- ],
- "name": "Naval Base"
- },
- "landuse/military/nuclear_explosion_site": {
- "icon": "maki-danger",
- "fields": [
- "name"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "military": "nuclear_explosion_site"
- },
- "addTags": {
- "landuse": "military",
- "military": "nuclear_explosion_site"
- },
- "removeTags": {
- "landuse": "military",
- "military": "nuclear_explosion_site"
- },
- "terms": [
- "atom",
- "blast",
- "bomb",
- "detonat*",
- "nuke",
- "site",
- "test"
- ],
- "name": "Nuclear Explosion Site"
- },
- "landuse/military/obstacle_course": {
- "icon": "temaki-military",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "military": "obstacle_course"
- },
- "addTags": {
- "landuse": "military",
- "military": "obstacle_course"
- },
- "removeTags": {
- "landuse": "military",
- "military": "obstacle_course"
- },
- "terms": [
- "army",
- "base",
- "force",
- "guard",
- "marine",
- "navy",
- "troop",
- "war"
- ],
- "name": "Obstacle Course"
- },
- "landuse/military/office": {
- "icon": "temaki-military",
- "fields": [
- "name",
- "building_area"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "military": "office"
- },
- "addTags": {
- "landuse": "military",
- "military": "office"
- },
- "removeTags": {
- "landuse": "military",
- "military": "office"
- },
- "terms": [
- "air force",
- "army",
- "base",
- "enlist",
- "fight",
- "force",
- "guard",
- "marine",
- "navy",
- "recruit",
- "troop",
- "war"
- ],
- "name": "Military Office"
- },
- "landuse/military/range": {
- "icon": "temaki-military",
- "fields": [
- "name"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "military": "range"
- },
- "addTags": {
- "landuse": "military",
- "military": "range"
- },
- "removeTags": {
- "landuse": "military",
- "military": "range"
- },
- "terms": [
- "air force",
- "army",
- "base",
- "fight",
- "fire",
- "force",
- "guard",
- "gun",
- "marine",
- "navy",
- "rifle",
- "shoot*",
- "snip*",
- "train",
- "troop",
- "war"
- ],
- "name": "Military Range"
- },
- "landuse/military/training_area": {
- "icon": "temaki-military",
- "fields": [
- "name"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "military": "training_area"
- },
- "addTags": {
- "landuse": "military",
- "military": "training_area"
- },
- "removeTags": {
- "landuse": "military",
- "military": "training_area"
- },
- "terms": [
- "air force",
- "army",
- "base",
- "fight",
- "fire",
- "force",
- "guard",
- "gun",
- "marine",
- "navy",
- "rifle",
- "shoot*",
- "snip*",
- "train",
- "troop",
- "war"
- ],
- "name": "Training Area"
- },
- "landuse/orchard": {
- "icon": "maki-park-alt1",
- "fields": [
- "name",
- "operator",
- "trees"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "orchard"
- },
- "terms": [
- "fruit"
- ],
- "name": "Orchard"
- },
- "landuse/plant_nursery": {
- "icon": "maki-garden",
- "fields": [
- "name",
- "operator",
- "plant"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "plant_nursery"
- },
- "terms": [
- "flower",
- "garden",
- "grow",
- "vivero"
- ],
- "name": "Plant Nursery"
- },
- "landuse/quarry": {
- "geometry": [
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "landuse": "quarry"
- },
- "terms": [],
- "name": "Quarry"
- },
- "landuse/railway": {
- "icon": "maki-rail",
- "fields": [
- "operator"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "railway"
- },
- "terms": [
- "rail",
- "train",
- "track"
- ],
- "name": "Railway Corridor"
- },
- "landuse/recreation_ground": {
- "icon": "maki-pitch",
- "geometry": [
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "landuse": "recreation_ground"
- },
- "terms": [
- "playing fields"
- ],
- "name": "Recreation Ground"
- },
- "landuse/religious": {
- "icon": "maki-place-of-worship",
- "geometry": [
- "area"
- ],
- "fields": [
- "name",
- "religion",
- "denomination"
- ],
- "tags": {
- "landuse": "religious"
- },
- "terms": [],
- "name": "Religious Area"
- },
- "landuse/residential": {
- "icon": "maki-building",
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "residential"
- },
- "terms": [],
- "matchScore": 0.9,
- "name": "Residential Area"
- },
- "landuse/retail": {
- "icon": "maki-commercial",
- "geometry": [
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "landuse": "retail"
- },
- "matchScore": 0.9,
- "name": "Retail Area"
- },
- "landuse/vineyard": {
- "fields": [
- "name",
- "operator",
- "grape_variety"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "vineyard"
- },
- "addTags": {
- "landuse": "vineyard",
- "crop": "grape"
- },
- "removeTags": {
- "landuse": "vineyard",
- "crop": "grape",
- "grape_variety": "*"
- },
- "terms": [
- "grape",
- "wine"
- ],
- "name": "Vineyard"
- },
- "leisure": {
- "icon": "maki-pitch",
- "fields": [
- "name",
- "leisure"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "leisure": "*"
- },
- "name": "Leisure"
- },
- "leisure/adult_gaming_centre": {
- "icon": "temaki-dice",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "smoking"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "gambling",
- "slot machine"
- ],
- "tags": {
- "leisure": "adult_gaming_centre"
- },
- "name": "Adult Gaming Center"
- },
- "leisure/amusement_arcade": {
- "icon": "maki-gaming",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "pay-to-play games",
- "video games",
- "driving simulators",
- "pinball machines"
- ],
- "tags": {
- "leisure": "amusement_arcade"
- },
- "name": "Amusement Arcade"
- },
- "leisure/beach_resort": {
- "icon": "temaki-beach",
- "fields": [
- "name",
- "address",
- "fee"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "beach_resort"
- },
- "name": "Beach Resort"
- },
- "leisure/bird_hide": {
- "icon": "temaki-binoculars",
- "fields": [
- "building_area"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "bird_hide"
- },
- "terms": [
- "machan",
- "ornithology"
- ],
- "name": "Bird Hide"
- },
- "leisure/bleachers": {
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "bleachers"
- },
- "terms": [
- "crowd",
- "bench",
- "sports",
- "stand",
- "stands",
- "seat",
- "seating"
- ],
- "name": "Bleachers"
- },
- "leisure/bowling_alley": {
- "icon": "temaki-bowling",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "smoking"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "bowling center"
- ],
- "tags": {
- "leisure": "bowling_alley"
- },
- "name": "Bowling Alley"
- },
- "leisure/common": {
- "icon": "temaki-pedestrian",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name"
- ],
- "terms": [
- "open space"
- ],
- "tags": {
- "leisure": "common"
- },
- "name": "Common"
- },
- "leisure/dance": {
- "icon": "maki-music",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "dance/style",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "ballroom",
- "jive",
- "swing",
- "tango",
- "waltz"
- ],
- "tags": {
- "leisure": "dance"
- },
- "name": "Dance Hall"
- },
- "leisure/dancing_school": {
- "icon": "maki-music",
- "fields": [
- "name",
- "operator",
- "address",
- "opening_hours",
- "dance/style"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "jive",
- "swing",
- "tango",
- "waltz",
- "dance teaching"
- ],
- "tags": {
- "leisure": "dance",
- "dance:teaching": "yes"
- },
- "reference": {
- "key": "leisure",
- "value": "dance"
- },
- "name": "Dance School"
- },
- "leisure/dog_park": {
- "icon": "maki-dog-park",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name"
- ],
- "terms": [],
- "tags": {
- "leisure": "dog_park"
- },
- "name": "Dog Park"
- },
- "leisure/firepit": {
- "icon": "maki-fire-station",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "firepit"
- },
- "terms": [
- "fireplace",
- "campfire"
- ],
- "name": "Firepit"
- },
- "leisure/fitness_centre": {
- "icon": "maki-pitch",
- "fields": [
- "name",
- "sport",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_centre"
- },
- "terms": [
- "health",
- "gym",
- "leisure",
- "studio"
- ],
- "name": "Gym / Fitness Center"
- },
- "leisure/fitness_centre/yoga": {
- "icon": "maki-pitch",
- "fields": [
- "name",
- "sport",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "studio"
- ],
- "tags": {
- "leisure": "fitness_centre",
- "sport": "yoga"
- },
- "reference": {
- "key": "sport",
- "value": "yoga"
- },
- "name": "Yoga Studio"
- },
- "leisure/fitness_station": {
- "icon": "maki-pitch",
- "fields": [
- "fitness_station",
- "ref",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station"
- },
- "addTags": {
- "leisure": "fitness_station",
- "sport": "fitness"
- },
- "removeTags": {
- "leisure": "fitness_station",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- },
- "terms": [
- "exercise",
- "fitness",
- "gym",
- "trim trail"
- ],
- "name": "Outdoor Fitness Station"
- },
- "leisure/fitness_station/balance_beam": {
- "icon": "maki-pitch",
- "fields": [
- "ref",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "balance_beam"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "balance_beam",
- "sport": "fitness"
- },
- "removeTags": {
- "leisure": "fitness_station",
- "fitness_station": "balance_beam",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- },
- "terms": [
- "balance",
- "exercise",
- "fitness",
- "gym",
- "trim trail"
- ],
- "name": "Exercise Balance Beam"
- },
- "leisure/fitness_station/box": {
- "icon": "maki-pitch",
- "fields": [
- "ref",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "box"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "box",
- "sport": "fitness"
- },
- "removeTags": {
- "leisure": "fitness_station",
- "fitness_station": "box",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- },
- "terms": [
- "box",
- "exercise",
- "fitness",
- "gym",
- "jump",
- "trim trail"
- ],
- "name": "Exercise Box"
- },
- "leisure/fitness_station/horizontal_bar": {
- "icon": "maki-pitch",
- "fields": [
- "ref",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "horizontal_bar"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "horizontal_bar",
- "sport": "fitness"
- },
- "removeTags": {
- "leisure": "fitness_station",
- "fitness_station": "horizontal_bar",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- },
- "terms": [
- "bar",
- "chinup",
- "chin up",
- "exercise",
- "fitness",
- "gym",
- "pullup",
- "pull up",
- "trim trail"
- ],
- "name": "Exercise Horizontal Bar"
- },
- "leisure/fitness_station/horizontal_ladder": {
- "icon": "maki-pitch",
- "fields": [
- "ref",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "horizontal_ladder"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "horizontal_ladder",
- "sport": "fitness"
- },
- "removeTags": {
- "leisure": "fitness_station",
- "fitness_station": "horizontal_ladder",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- },
- "terms": [
- "bar",
- "chinup",
- "chin up",
- "exercise",
- "fitness",
- "gym",
- "ladder",
- "monkey bars",
- "pullup",
- "pull up",
- "trim trail"
- ],
- "name": "Exercise Monkey Bars"
- },
- "leisure/fitness_station/hyperextension": {
- "icon": "maki-pitch",
- "fields": [
- "ref",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "hyperextension"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "hyperextension",
- "sport": "fitness"
- },
- "removeTags": {
- "leisure": "fitness_station",
- "fitness_station": "hyperextension",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- },
- "terms": [
- "back",
- "exercise",
- "extension",
- "fitness",
- "gym",
- "roman chair",
- "trim trail"
- ],
- "name": "Hyperextension Station"
- },
- "leisure/fitness_station/parallel_bars": {
- "icon": "maki-pitch",
- "fields": [
- "ref",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "parallel_bars"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "parallel_bars",
- "sport": "fitness"
- },
- "removeTags": {
- "leisure": "fitness_station",
- "fitness_station": "parallel_bars",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- },
- "terms": [
- "bar",
- "dip",
- "exercise",
- "fitness",
- "gym",
- "trim trail"
- ],
- "name": "Parallel Bars"
- },
- "leisure/fitness_station/push-up": {
- "icon": "maki-pitch",
- "fields": [
- "ref",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "push-up"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "push-up",
- "sport": "fitness"
- },
- "removeTags": {
- "leisure": "fitness_station",
- "fitness_station": "push-up",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- },
- "terms": [
- "bar",
- "exercise",
- "fitness",
- "gym",
- "pushup",
- "push up",
- "trim trail"
- ],
- "name": "Push-Up Station"
- },
- "leisure/fitness_station/rings": {
- "icon": "maki-pitch",
- "fields": [
- "ref",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "rings"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "rings",
- "sport": "fitness"
- },
- "removeTags": {
- "leisure": "fitness_station",
- "fitness_station": "rings",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- },
- "terms": [
- "exercise",
- "fitness",
- "gym",
- "muscle up",
- "pullup",
- "pull up",
- "trim trail"
- ],
- "name": "Exercise Rings"
- },
- "leisure/fitness_station/sign": {
- "icon": "maki-pitch",
- "fields": [
- "ref",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "sign"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "sign",
- "sport": "fitness"
- },
- "removeTags": {
- "leisure": "fitness_station",
- "fitness_station": "sign",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- },
- "terms": [
- "exercise",
- "fitness",
- "gym",
- "trim trail"
- ],
- "name": "Exercise Instruction Sign"
- },
- "leisure/fitness_station/sit-up": {
- "icon": "maki-pitch",
- "fields": [
- "ref",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "sit-up"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "sit-up",
- "sport": "fitness"
- },
- "removeTags": {
- "leisure": "fitness_station",
- "fitness_station": "sit-up",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- },
- "terms": [
- "crunch",
- "exercise",
- "fitness",
- "gym",
- "situp",
- "sit up",
- "trim trail"
- ],
- "name": "Sit-Up Station"
- },
- "leisure/fitness_station/stairs": {
- "icon": "maki-pitch",
- "fields": [
- "ref",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "stairs"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "stairs",
- "sport": "fitness"
- },
- "removeTags": {
- "leisure": "fitness_station",
- "fitness_station": "stairs",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- },
- "terms": [
- "exercise",
- "fitness",
- "gym",
- "steps",
- "trim trail"
- ],
- "name": "Exercise Stairs"
- },
- "leisure/garden": {
- "icon": "maki-garden",
- "fields": [
- "name",
- "access_simple"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "leisure": "garden"
- },
- "name": "Garden"
- },
- "leisure/golf_course": {
- "icon": "maki-golf",
- "fields": [
- "name",
- "operator",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "links"
- ],
- "tags": {
- "leisure": "golf_course"
- },
- "name": "Golf Course"
- },
- "leisure/hackerspace": {
- "icon": "maki-commercial",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "website"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "makerspace",
- "hackspace",
- "hacklab"
- ],
- "tags": {
- "leisure": "hackerspace"
- },
- "name": "Hackerspace"
- },
- "leisure/horse_riding": {
- "icon": "maki-horse-riding",
- "fields": [
- "name",
- "access_simple",
- "operator",
- "address",
- "building"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "equestrian",
- "stable"
- ],
- "tags": {
- "leisure": "horse_riding"
- },
- "name": "Horseback Riding Facility"
- },
- "leisure/ice_rink": {
- "icon": "maki-pitch",
- "fields": [
- "name",
- "seasonal",
- "sport_ice",
- "operator",
- "address",
- "building",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "hockey",
- "skating",
- "curling"
- ],
- "tags": {
- "leisure": "ice_rink"
- },
- "name": "Ice Rink"
- },
- "leisure/marina": {
- "icon": "maki-harbor",
- "fields": [
- "name",
- "operator",
- "address",
- "capacity",
- "fee",
- "sanitary_dump_station",
- "power_supply",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "boat"
- ],
- "tags": {
- "leisure": "marina"
- },
- "name": "Marina"
- },
- "leisure/miniature_golf": {
- "icon": "maki-golf",
- "fields": [
- "name",
- "operator",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "crazy golf",
- "mini golf",
- "putt-putt"
- ],
- "tags": {
- "leisure": "miniature_golf"
- },
- "name": "Miniature Golf"
- },
- "leisure/nature_reserve": {
- "icon": "maki-park",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "leisure": "nature_reserve"
- },
- "terms": [
- "protected",
- "wildlife"
- ],
- "name": "Nature Reserve"
- },
- "leisure/outdoor_seating": {
- "icon": "maki-picnic-site",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator"
- ],
- "terms": [
- "al fresco",
- "beer garden",
- "dining",
- "cafe",
- "restaurant",
- "pub",
- "bar",
- "patio"
- ],
- "tags": {
- "leisure": "outdoor_seating"
- },
- "name": "Outdoor Seating Area"
- },
- "leisure/park": {
- "icon": "maki-park",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name"
- ],
- "terms": [
- "esplanade",
- "estate",
- "forest",
- "garden",
- "grass",
- "green",
- "grounds",
- "lawn",
- "lot",
- "meadow",
- "parkland",
- "place",
- "playground",
- "plaza",
- "pleasure garden",
- "recreation area",
- "square",
- "tract",
- "village green",
- "woodland"
- ],
- "tags": {
- "leisure": "park"
- },
- "name": "Park"
- },
- "leisure/picnic_table": {
- "icon": "maki-picnic-site",
- "geometry": [
- "point"
- ],
- "tags": {
- "leisure": "picnic_table"
- },
- "terms": [
- "bench"
- ],
- "name": "Picnic Table"
- },
- "leisure/pitch": {
- "icon": "maki-pitch",
- "fields": [
- "name",
- "sport",
- "surface",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch"
- },
- "terms": [
- "field"
- ],
- "name": "Sport Pitch"
- },
- "leisure/pitch/american_football": {
- "icon": "maki-america-football",
- "fields": [
- "name",
- "surface",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "american_football"
- },
- "reference": {
- "key": "sport",
- "value": "american_football"
- },
- "terms": [],
- "name": "American Football Field"
- },
- "leisure/pitch/baseball": {
- "icon": "maki-baseball",
- "fields": [
- "name",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "baseball"
- },
- "reference": {
- "key": "sport",
- "value": "baseball"
- },
- "terms": [],
- "name": "Baseball Diamond"
- },
- "leisure/pitch/basketball": {
- "icon": "maki-basketball",
- "fields": [
- "name",
- "surface",
- "hoops",
- "lit",
- "access_simple"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "basketball"
- },
- "reference": {
- "key": "sport",
- "value": "basketball"
- },
- "terms": [],
- "name": "Basketball Court"
- },
- "leisure/pitch/beachvolleyball": {
- "icon": "maki-basketball",
- "fields": [
- "name",
- "surface",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "beachvolleyball"
- },
- "addTags": {
- "leisure": "pitch",
- "sport": "beachvolleyball",
- "surface": "sand"
- },
- "removeTags": {
- "leisure": "pitch",
- "sport": "beachvolleyball",
- "surface": "sand"
- },
- "reference": {
- "key": "sport",
- "value": "beachvolleyball"
- },
- "terms": [
- "volleyball"
- ],
- "name": "Beach Volleyball Court"
- },
- "leisure/pitch/boules": {
- "icon": "maki-pitch",
- "fields": [
- "name",
- "boules",
- "surface",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "boules"
- },
- "reference": {
- "key": "sport",
- "value": "boules"
- },
- "terms": [
- "bocce",
- "lyonnaise",
- "pétanque"
- ],
- "name": "Boules/Bocce Court"
- },
- "leisure/pitch/bowls": {
- "icon": "maki-pitch",
- "fields": [
- "name",
- "surface",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "bowls"
- },
- "reference": {
- "key": "sport",
- "value": "bowls"
- },
- "terms": [],
- "name": "Bowling Green"
- },
- "leisure/pitch/cricket": {
- "icon": "maki-cricket",
- "fields": [
- "name",
- "surface",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "cricket"
- },
- "reference": {
- "key": "sport",
- "value": "cricket"
- },
- "terms": [],
- "name": "Cricket Field"
- },
- "leisure/pitch/equestrian": {
- "icon": "maki-horse-riding",
- "fields": [
- "name",
- "surface",
- "lit",
- "building"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "equestrian"
- },
- "reference": {
- "key": "sport",
- "value": "equestrian"
- },
- "terms": [
- "dressage",
- "equestrian",
- "horse",
- "horseback",
- "riding"
- ],
- "name": "Riding Arena"
- },
- "leisure/pitch/rugby_league": {
- "icon": "maki-america-football",
- "fields": [
- "name",
- "surface",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "rugby_league"
- },
- "reference": {
- "key": "sport",
- "value": "rugby_league"
- },
- "terms": [],
- "name": "Rugby League Field"
- },
- "leisure/pitch/rugby_union": {
- "icon": "maki-america-football",
- "fields": [
- "name",
- "surface",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "rugby_union"
- },
- "reference": {
- "key": "sport",
- "value": "rugby_union"
- },
- "terms": [],
- "name": "Rugby Union Field"
- },
- "leisure/pitch/skateboard": {
- "icon": "maki-pitch",
- "fields": [
- "name",
- "surface",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "skateboard"
- },
- "reference": {
- "key": "sport",
- "value": "skateboard"
- },
- "terms": [],
- "name": "Skate Park"
- },
- "leisure/pitch/soccer": {
- "icon": "maki-soccer",
- "fields": [
- "name",
- "surface",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "soccer"
- },
- "reference": {
- "key": "sport",
- "value": "soccer"
- },
- "terms": [
- "football"
- ],
- "name": "Soccer Field"
- },
- "leisure/pitch/table_tennis": {
- "icon": "maki-tennis",
- "fields": [
- "name",
- "lit",
- "access_simple"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "table_tennis"
- },
- "reference": {
- "key": "sport",
- "value": "table_tennis"
- },
- "terms": [
- "table tennis",
- "ping pong"
- ],
- "name": "Ping Pong Table"
- },
- "leisure/pitch/tennis": {
- "icon": "maki-tennis",
- "fields": [
- "name",
- "surface",
- "lit",
- "access_simple"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "tennis"
- },
- "reference": {
- "key": "sport",
- "value": "tennis"
- },
- "terms": [],
- "name": "Tennis Court"
- },
- "leisure/pitch/volleyball": {
- "icon": "maki-basketball",
- "fields": [
- "name",
- "surface",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "volleyball"
- },
- "reference": {
- "key": "sport",
- "value": "volleyball"
- },
- "terms": [],
- "name": "Volleyball Court"
- },
- "leisure/playground": {
- "icon": "maki-playground",
- "fields": [
- "name",
- "operator",
- "surface",
- "playground/max_age",
- "playground/min_age",
- "access_simple"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "jungle gym",
- "play area"
- ],
- "tags": {
- "leisure": "playground"
- },
- "name": "Playground"
- },
- "leisure/resort": {
- "icon": "maki-lodging",
- "fields": [
- "name",
- "operator",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "resort"
- },
- "name": "Resort"
- },
- "leisure/running_track": {
- "icon": "maki-pitch",
- "fields": [
- "surface",
- "sport_racing_nonmotor",
- "lit",
- "width",
- "lanes"
- ],
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "tags": {
- "leisure": "track",
- "sport": "running"
- },
- "terms": [
- "race*",
- "running",
- "sprint",
- "track"
- ],
- "name": "Racetrack (Running)"
- },
- "leisure/sauna": {
- "icon": "fas-thermometer-three-quarters",
- "fields": [
- "name",
- "operator",
- "address",
- "opening_hours",
- "access_simple",
- "fee"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "sauna"
- },
- "name": "Sauna"
- },
- "leisure/slipway": {
- "icon": "temaki-beach",
- "geometry": [
- "point",
- "line"
- ],
- "terms": [
- "boat launch",
- "boat ramp"
- ],
- "tags": {
- "leisure": "slipway"
- },
- "name": "Slipway"
- },
- "leisure/sports_centre": {
- "icon": "maki-pitch",
- "fields": [
- "name",
- "sport",
- "building",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "sports_centre"
- },
- "terms": [],
- "name": "Sports Center / Complex"
- },
- "leisure/sports_centre/swimming": {
- "icon": "maki-swimming",
- "fields": [
- "name",
- "access_simple",
- "operator",
- "address",
- "building"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "dive",
- "water"
- ],
- "tags": {
- "leisure": "sports_centre",
- "sport": "swimming"
- },
- "reference": {
- "key": "sport",
- "value": "swimming"
- },
- "name": "Swimming Pool Facility"
- },
- "leisure/stadium": {
- "icon": "maki-pitch",
- "fields": [
- "name",
- "sport",
- "address"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "stadium"
- },
- "name": "Stadium"
- },
- "leisure/swimming_pool": {
- "icon": "maki-swimming",
- "fields": [
- "name",
- "access_simple",
- "operator",
- "address"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "dive",
- "water"
- ],
- "tags": {
- "leisure": "swimming_pool"
- },
- "name": "Swimming Pool"
- },
- "leisure/track": {
- "icon": "iD-highway-road",
- "fields": [
- "surface",
- "sport_racing_nonmotor",
- "lit",
- "width",
- "lanes"
- ],
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "tags": {
- "leisure": "track"
- },
- "terms": [
- "cycle",
- "dog",
- "greyhound",
- "horse",
- "race*",
- "track"
- ],
- "name": "Racetrack (Non-Motorsport)"
- },
- "leisure/water_park": {
- "icon": "maki-swimming",
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "swim",
- "pool",
- "dive"
- ],
- "tags": {
- "leisure": "water_park"
- },
- "name": "Water Park"
- },
- "line": {
- "fields": [
- "name"
- ],
- "geometry": [
- "line"
- ],
- "tags": {},
- "name": "Line",
- "matchScore": 0.1
- },
- "man_made": {
- "icon": "temaki-storage_tank",
- "fields": [
- "name",
- "man_made"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "man_made": "*"
- },
- "name": "Man Made"
- },
- "man_made/embankment": {
- "geometry": [
- "line"
- ],
- "tags": {
- "man_made": "embankment"
- },
- "name": "Embankment",
- "searchable": false
- },
- "man_made/adit": {
- "icon": "maki-triangle",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "operator",
- "direction"
- ],
- "terms": [
- "entrance",
- "underground",
- "mine",
- "cave"
- ],
- "tags": {
- "man_made": "adit"
- },
- "name": "Adit"
- },
- "man_made/antenna": {
- "icon": "temaki-antenna",
- "fields": [
- "height",
- "communication_multi"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "broadcast",
- "cell phone",
- "cell",
- "communication",
- "mobile phone",
- "radio",
- "television",
- "transmission",
- "tv"
- ],
- "tags": {
- "man_made": "antenna"
- },
- "name": "Antenna"
- },
- "man_made/breakwater": {
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "man_made": "breakwater"
- },
- "name": "Breakwater"
- },
- "man_made/bridge": {
- "geometry": [
- "area"
- ],
- "tags": {
- "man_made": "bridge"
- },
- "name": "Bridge"
- },
- "man_made/chimney": {
- "icon": "temaki-chimney",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "chimney"
- },
- "name": "Chimney"
- },
- "man_made/clearcut": {
- "icon": "maki-logging",
- "geometry": [
- "area"
- ],
- "tags": {
- "man_made": "clearcut"
- },
- "terms": [
- "cut",
- "forest",
- "lumber",
- "tree",
- "wood"
- ],
- "name": "Clearcut Forest"
- },
- "man_made/crane": {
- "icon": "temaki-crane",
- "fields": [
- "operator",
- "height",
- "crane/type"
- ],
- "geometry": [
- "point",
- "line",
- "vertex",
- "area"
- ],
- "tags": {
- "man_made": "crane"
- },
- "name": "Crane"
- },
- "man_made/cutline": {
- "icon": "maki-logging",
- "geometry": [
- "line"
- ],
- "tags": {
- "man_made": "cutline"
- },
- "name": "Cut line"
- },
- "man_made/flagpole": {
- "icon": "maki-embassy",
- "geometry": [
- "point"
- ],
- "tags": {
- "man_made": "flagpole"
- },
- "name": "Flagpole"
- },
- "man_made/gasometer": {
- "icon": "temaki-storage_tank",
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "gas holder"
- ],
- "tags": {
- "man_made": "gasometer"
- },
- "name": "Gasometer"
- },
- "man_made/groyne": {
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "man_made": "groyne"
- },
- "name": "Groyne"
- },
- "man_made/lighthouse": {
- "icon": "maki-lighthouse",
- "fields": [
- "building_area"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "lighthouse"
- },
- "name": "Lighthouse"
- },
- "man_made/mast": {
- "icon": "temaki-antenna",
- "fields": [
- "tower/type",
- "tower/construction",
- "height",
- "communication_multi"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "antenna",
- "broadcast tower",
- "cell phone tower",
- "cell tower",
- "communication mast",
- "communication tower",
- "guyed tower",
- "mobile phone tower",
- "radio mast",
- "radio tower",
- "television tower",
- "transmission mast",
- "transmission tower",
- "tv tower"
- ],
- "tags": {
- "man_made": "mast"
- },
- "name": "Mast"
- },
- "man_made/monitoring_station": {
- "icon": "temaki-antenna",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "monitoring_multi",
- "operator"
- ],
- "terms": [
- "weather",
- "earthquake",
- "seismology",
- "air",
- "gps"
- ],
- "tags": {
- "man_made": "monitoring_station"
- },
- "name": "Monitoring Station"
- },
- "man_made/observation": {
- "icon": "temaki-tower",
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "lookout tower",
- "fire tower"
- ],
- "tags": {
- "man_made": "tower",
- "tower:type": "observation"
- },
- "name": "Observation Tower"
- },
- "man_made/observatory": {
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "astronomical",
- "meteorological"
- ],
- "tags": {
- "man_made": "observatory"
- },
- "name": "Observatory"
- },
- "man_made/petroleum_well": {
- "icon": "temaki-storage_tank",
- "geometry": [
- "point"
- ],
- "terms": [
- "drilling rig",
- "oil derrick",
- "oil drill",
- "oil horse",
- "oil rig",
- "oil pump",
- "petroleum well",
- "pumpjack"
- ],
- "tags": {
- "man_made": "petroleum_well"
- },
- "name": "Oil Well"
- },
- "man_made/pier": {
- "icon": "iD-highway-footway",
- "fields": [
- "name",
- "surface",
- "lit",
- "width",
- "access"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "terms": [
- "dock",
- "jetty"
- ],
- "tags": {
- "man_made": "pier"
- },
- "name": "Pier"
- },
- "man_made/pipeline": {
- "icon": "iD-pipeline-line",
- "fields": [
- "location",
- "operator",
- "substance"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "man_made": "pipeline"
- },
- "name": "Pipeline"
- },
- "man_made/pumping_station": {
- "icon": "maki-water",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "pumping_station"
- },
- "name": "Pumping Station"
- },
- "man_made/silo": {
- "icon": "temaki-silo",
- "fields": [
- "building_area",
- "crop"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "grain",
- "corn",
- "wheat"
- ],
- "tags": {
- "man_made": "silo"
- },
- "name": "Silo"
- },
- "man_made/storage_tank": {
- "icon": "temaki-storage_tank",
- "fields": [
- "building_area",
- "content"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "water",
- "oil",
- "gas",
- "petrol"
- ],
- "tags": {
- "man_made": "storage_tank"
- },
- "name": "Storage Tank"
- },
- "man_made/surveillance_camera": {
- "icon": "maki-attraction",
- "geometry": [
- "point",
- "vertex"
- ],
- "fields": [
- "surveillance",
- "surveillance/type",
- "camera/type",
- "camera/mount",
- "camera/direction",
- "surveillance/zone",
- "contact/webcam"
- ],
- "terms": [
- "anpr",
- "alpr",
- "camera",
- "car plate recognition",
- "cctv",
- "guard",
- "license plate recognition",
- "monitoring",
- "number plate recognition",
- "security",
- "video",
- "webcam"
- ],
- "tags": {
- "man_made": "surveillance",
- "surveillance:type": "camera"
- },
- "name": "Surveillance Camera"
- },
- "man_made/surveillance": {
- "icon": "maki-attraction",
- "geometry": [
- "point",
- "vertex"
- ],
- "fields": [
- "surveillance",
- "surveillance/type",
- "surveillance/zone",
- "direction"
- ],
- "terms": [
- "anpr",
- "alpr",
- "camera",
- "car plate recognition",
- "cctv",
- "guard",
- "license plate recognition",
- "monitoring",
- "number plate recognition",
- "security",
- "video",
- "webcam"
- ],
- "tags": {
- "man_made": "surveillance"
- },
- "name": "Surveillance"
- },
- "man_made/survey_point": {
- "icon": "maki-monument",
- "fields": [
- "ref"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "terms": [
- "trig point",
- "triangulation pillar",
- "trigonometrical station"
- ],
- "tags": {
- "man_made": "survey_point"
- },
- "name": "Survey Point"
- },
- "man_made/tower": {
- "icon": "temaki-tower",
- "fields": [
- "tower/type",
- "tower/construction",
- "height"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "tower"
- },
- "name": "Tower"
- },
- "man_made/wastewater_plant": {
- "icon": "maki-water",
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "sewage*",
- "water treatment plant",
- "reclamation plant"
- ],
- "tags": {
- "man_made": "wastewater_plant"
- },
- "name": "Wastewater Plant"
- },
- "man_made/water_tower": {
- "icon": "maki-water",
- "fields": [
- "operator"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "water_tower"
- },
- "name": "Water Tower"
- },
- "man_made/water_well": {
- "icon": "maki-water",
- "fields": [
- "operator"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "water_well"
- },
- "name": "Water Well"
- },
- "man_made/water_works": {
- "icon": "maki-water",
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "water_works"
- },
- "name": "Water Works"
- },
- "man_made/watermill": {
- "icon": "maki-buddhism",
- "fields": [
- "building_area"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "water",
- "wheel",
- "mill"
- ],
- "tags": {
- "man_made": "watermill"
- },
- "name": "Watermill"
- },
- "man_made/windmill": {
- "icon": "temaki-windmill",
- "fields": [
- "building_area"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "wind",
- "wheel",
- "mill"
- ],
- "tags": {
- "man_made": "windmill"
- },
- "name": "Windmill"
- },
- "man_made/works": {
- "icon": "maki-industry",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "product"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "assembly",
- "build",
- "brewery",
- "car",
- "plant",
- "plastic",
- "processing",
- "manufacture",
- "refinery"
- ],
- "tags": {
- "man_made": "works"
- },
- "name": "Factory"
- },
- "manhole": {
- "icon": "maki-circle-stroked",
- "fields": [
- "manhole",
- "operator",
- "label",
- "ref"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "manhole": "*"
- },
- "terms": [
- "cover",
- "hole",
- "sewer",
- "sewage",
- "telecom"
- ],
- "name": "Manhole"
- },
- "manhole/drain": {
- "icon": "maki-water",
- "fields": [
- "operator",
- "ref"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "manhole": "drain"
- },
- "terms": [
- "cover",
- "drain",
- "hole",
- "rain",
- "sewer",
- "sewage",
- "storm"
- ],
- "name": "Storm Drain"
- },
- "manhole/telecom": {
- "icon": "maki-circle-stroked",
- "fields": [
- "operator",
- "ref"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "manhole": "telecom"
- },
- "terms": [
- "cover",
- "phone",
- "hole",
- "telecom",
- "telephone",
- "bt"
- ],
- "name": "Telecom Manhole"
- },
- "natural": {
- "icon": "maki-natural",
- "fields": [
- "name",
- "natural"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "natural": "*"
- },
- "name": "Natural"
- },
- "natural/bare_rock": {
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "bare_rock"
- },
- "terms": [
- "rock"
- ],
- "name": "Bare Rock"
- },
- "natural/bay": {
- "icon": "temaki-beach",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "natural": "bay"
- },
- "terms": [],
- "name": "Bay"
- },
- "natural/beach": {
- "icon": "temaki-beach",
- "fields": [
- "surface"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "natural": "beach"
- },
- "terms": [
- "shore"
- ],
- "name": "Beach"
- },
- "natural/cave_entrance": {
- "icon": "maki-triangle",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "fee",
- "access_simple",
- "direction"
- ],
- "tags": {
- "natural": "cave_entrance"
- },
- "terms": [
- "cavern",
- "hollow",
- "grotto",
- "shelter",
- "cavity"
- ],
- "name": "Cave Entrance"
- },
- "natural/cliff": {
- "icon": "maki-triangle",
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "natural": "cliff"
- },
- "terms": [
- "escarpment"
- ],
- "name": "Cliff"
- },
- "natural/coastline": {
- "geometry": [
- "line"
- ],
- "tags": {
- "natural": "coastline"
- },
- "terms": [
- "shore"
- ],
- "name": "Coastline"
- },
- "natural/fell": {
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "fell"
- },
- "terms": [],
- "name": "Fell"
- },
- "natural/glacier": {
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "glacier"
- },
- "terms": [],
- "name": "Glacier"
- },
- "natural/grassland": {
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "grassland"
- },
- "terms": [
- "prairie",
- "savanna"
- ],
- "name": "Grassland"
- },
- "natural/heath": {
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "heath"
- },
- "terms": [],
- "name": "Heath"
- },
- "natural/mud": {
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "mud"
- },
- "terms": [
- "wetland"
- ],
- "name": "Mud"
- },
- "natural/peak": {
- "icon": "maki-mountain",
- "fields": [
- "name",
- "elevation"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "natural": "peak"
- },
- "terms": [
- "acme",
- "aiguille",
- "alp",
- "climax",
- "crest",
- "crown",
- "hill",
- "mount",
- "mountain",
- "pinnacle",
- "summit",
- "tip",
- "top"
- ],
- "name": "Peak"
- },
- "natural/reef": {
- "icon": "temaki-beach",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "natural": "reef"
- },
- "terms": [
- "barrier",
- "coral",
- "ocean",
- "sand",
- "shoal"
- ],
- "name": "Reef"
- },
- "natural/ridge": {
- "geometry": [
- "line"
- ],
- "tags": {
- "natural": "ridge"
- },
- "terms": [
- "crest"
- ],
- "name": "Ridge"
- },
- "natural/saddle": {
- "icon": "maki-triangle-stroked",
- "fields": [
- "elevation"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "natural": "saddle"
- },
- "terms": [
- "pass",
- "mountain pass",
- "top"
- ],
- "name": "Saddle"
- },
- "natural/sand": {
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "sand"
- },
- "terms": [
- "desert"
- ],
- "name": "Sand"
- },
- "natural/scree": {
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "scree"
- },
- "terms": [
- "loose rocks"
- ],
- "name": "Scree"
- },
- "natural/scrub": {
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "scrub"
- },
- "terms": [
- "bush",
- "shrubs"
- ],
- "name": "Scrub"
- },
- "natural/spring": {
- "icon": "maki-water",
- "fields": [
- "name",
- "intermittent"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "natural": "spring"
- },
- "terms": [],
- "name": "Spring"
- },
- "natural/tree_row": {
- "icon": "maki-park",
- "fields": [
- "leaf_type",
- "leaf_cycle",
- "denotation"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "natural": "tree_row"
- },
- "terms": [],
- "name": "Tree row"
- },
- "natural/tree": {
- "icon": "maki-park",
- "fields": [
- "leaf_type_singular",
- "leaf_cycle_singular",
- "denotation"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "natural": "tree"
- },
- "terms": [],
- "name": "Tree"
- },
- "natural/volcano": {
- "icon": "maki-volcano",
- "fields": [
- "name",
- "elevation",
- "volcano/status",
- "volcano/type"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "natural": "volcano"
- },
- "terms": [
- "mountain",
- "crater"
- ],
- "name": "Volcano"
- },
- "natural/water": {
- "icon": "maki-water",
- "fields": [
- "water"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "water"
- },
- "name": "Water"
- },
- "natural/water/lake": {
- "icon": "maki-water",
- "fields": [
- "name",
- "intermittent"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "water",
- "water": "lake"
- },
- "reference": {
- "key": "natural",
- "value": "water"
- },
- "terms": [
- "lakelet",
- "loch",
- "mere"
- ],
- "name": "Lake"
- },
- "natural/water/pond": {
- "icon": "maki-water",
- "fields": [
- "name",
- "intermittent"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "water",
- "water": "pond"
- },
- "reference": {
- "key": "natural",
- "value": "water"
- },
- "terms": [
- "lakelet",
- "millpond",
- "tarn",
- "pool",
- "mere"
- ],
- "name": "Pond"
- },
- "natural/water/reservoir": {
- "icon": "maki-water",
- "fields": [
- "name",
- "intermittent"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "water",
- "water": "reservoir"
- },
- "reference": {
- "key": "natural",
- "value": "water"
- },
- "name": "Reservoir"
- },
- "natural/wetland": {
- "icon": "maki-wetland",
- "fields": [
- "wetland"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "natural": "wetland"
- },
- "terms": [
- "bog",
- "marsh",
- "reedbed",
- "swamp",
- "tidalflat"
- ],
- "name": "Wetland"
- },
- "natural/wood": {
- "icon": "maki-park-alt1",
- "fields": [
- "name",
- "leaf_type",
- "leaf_cycle"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "natural": "wood"
- },
- "terms": [
- "tree"
- ],
- "name": "Wood"
- },
- "noexit/yes": {
- "icon": "maki-barrier",
- "geometry": [
- "vertex"
- ],
- "terms": [
- "no exit",
- "road end",
- "dead end"
- ],
- "tags": {
- "noexit": "yes"
- },
- "reference": {
- "key": "noexit",
- "value": "*"
- },
- "name": "No Exit"
- },
- "office": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "office",
- "address",
- "building_area",
- "opening_hours",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "*"
- },
- "terms": [],
- "name": "Office"
- },
- "office/administrative": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "administrative"
- },
- "terms": [],
- "searchable": false,
- "name": "Administrative Office"
- },
- "office/physician": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "physician"
- },
- "searchable": false,
- "name": "Physician"
- },
- "office/travel_agent": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "travel_agent"
- },
- "reference": {
- "key": "shop",
- "value": "travel_agency"
- },
- "terms": [],
- "name": "Travel Agency",
- "searchable": false
- },
- "office/accountant": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "accountant"
- },
- "terms": [],
- "name": "Accountant Office"
- },
- "office/adoption_agency": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "adoption_agency"
- },
- "terms": [],
- "name": "Adoption Agency"
- },
- "office/advertising_agency": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "advertising_agency"
- },
- "terms": [
- "ad",
- "ad agency",
- "advert agency",
- "advertising",
- "marketing"
- ],
- "name": "Advertising Agency"
- },
- "office/architect": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "architect"
- },
- "terms": [],
- "name": "Architect Office"
- },
- "office/association": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "association"
- },
- "terms": [
- "association",
- "non-profit",
- "nonprofit",
- "organization",
- "society"
- ],
- "name": "Nonprofit Organization Office"
- },
- "office/charity": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "charity"
- },
- "terms": [
- "charitable organization"
- ],
- "name": "Charity Office"
- },
- "office/company": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "company"
- },
- "terms": [],
- "name": "Corporate Office"
- },
- "office/coworking": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "coworking",
- "office"
- ],
- "tags": {
- "office": "coworking"
- },
- "reference": {
- "key": "amenity",
- "value": "coworking_space"
- },
- "name": "Coworking Space"
- },
- "office/educational_institution": {
- "icon": "maki-school",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "educational_institution"
- },
- "terms": [],
- "name": "Educational Institution"
- },
- "office/employment_agency": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "employment_agency"
- },
- "terms": [
- "job"
- ],
- "name": "Employment Agency"
- },
- "office/energy_supplier": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "energy_supplier"
- },
- "terms": [
- "electricity",
- "energy company",
- "energy utility",
- "gas utility"
- ],
- "name": "Energy Supplier Office"
- },
- "office/estate_agent": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "estate_agent"
- },
- "terms": [],
- "name": "Real Estate Office"
- },
- "office/financial": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "financial"
- },
- "terms": [],
- "name": "Financial Office"
- },
- "office/forestry": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "forestry"
- },
- "terms": [
- "forest",
- "ranger"
- ],
- "name": "Forestry Office"
- },
- "office/foundation": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "foundation"
- },
- "terms": [],
- "name": "Foundation Office"
- },
- "office/government": {
- "icon": "maki-town-hall",
- "fields": [
- "name",
- "government",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "government"
- },
- "terms": [],
- "name": "Government Office"
- },
- "office/government/register_office": {
- "icon": "maki-town-hall",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "operator"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "clerk",
- "marriage",
- "death",
- "birth",
- "certificate"
- ],
- "tags": {
- "office": "government",
- "government": "register_office"
- },
- "reference": {
- "key": "government",
- "value": "register_office"
- },
- "name": "Register Office"
- },
- "office/government/tax": {
- "icon": "maki-town-hall",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "operator"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "fiscal authorities",
- "revenue office",
- "tax office"
- ],
- "tags": {
- "office": "government",
- "government": "tax"
- },
- "reference": {
- "key": "government",
- "value": "tax"
- },
- "name": "Tax and Revenue Office"
- },
- "office/guide": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "guide"
- },
- "terms": [
- "dive guide",
- "mountain guide",
- "tour guide"
- ],
- "name": "Tour Guide Office"
- },
- "office/insurance": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "insurance"
- },
- "terms": [],
- "name": "Insurance Office"
- },
- "office/it": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "it"
- },
- "terms": [
- "computer",
- "information",
- "software",
- "technology"
- ],
- "name": "Information Technology Office"
- },
- "office/lawyer": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "lawyer"
- },
- "terms": [],
- "name": "Law Office"
- },
- "office/lawyer/notary": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "lawyer",
- "lawyer": "notary"
- },
- "reference": {
- "key": "office",
- "value": "notary"
- },
- "searchable": false,
- "name": "Notary Office"
- },
- "office/moving_company": {
- "icon": "maki-warehouse",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "moving_company"
- },
- "terms": [
- "relocation"
- ],
- "name": "Moving Company Office"
- },
- "office/newspaper": {
- "icon": "maki-library",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "newspaper"
- },
- "terms": [],
- "name": "Newspaper Office"
- },
- "office/ngo": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "ngo"
- },
- "terms": [
- "ngo",
- "non government",
- "non-government",
- "organization",
- "organisation"
- ],
- "name": "NGO Office"
- },
- "office/notary": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "notary"
- },
- "terms": [
- "clerk",
- "deeds",
- "estate",
- "signature",
- "wills"
- ],
- "name": "Notary Office"
- },
- "office/political_party": {
- "icon": "maki-town-hall",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "political_party"
- },
- "terms": [],
- "name": "Political Party"
- },
- "office/private_investigator": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "private_investigator"
- },
- "terms": [
- "PI",
- "private eye",
- "private detective"
- ],
- "name": "Private Investigator Office"
- },
- "office/quango": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "quango"
- },
- "terms": [
- "ngo",
- "non government",
- "non-government",
- "organization",
- "organisation",
- "quasi autonomous",
- "quasi-autonomous"
- ],
- "name": "Quasi-NGO Office"
- },
- "office/research": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "research"
- },
- "terms": [],
- "name": "Research Office"
- },
- "office/surveyor": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "surveyor"
- },
- "terms": [],
- "name": "Surveyor Office"
- },
- "office/tax_advisor": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "tax_advisor"
- },
- "terms": [
- "tax",
- "tax consultant"
- ],
- "name": "Tax Advisor Office"
- },
- "office/telecommunication": {
- "icon": "maki-telephone",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "telecommunication"
- },
- "terms": [
- "communication",
- "internet",
- "phone",
- "voice"
- ],
- "name": "Telecom Office"
- },
- "office/therapist": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "therapist"
- },
- "terms": [
- "therapy"
- ],
- "name": "Therapist Office"
- },
- "office/water_utility": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "operator"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "water_utility"
- },
- "terms": [
- "water board",
- "utility"
- ],
- "name": "Water Utility Office"
- },
- "piste": {
- "icon": "maki-skiing",
- "fields": [
- "name",
- "piste/type",
- "piste/difficulty",
- "piste/grooming",
- "oneway",
- "lit"
- ],
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "terms": [
- "ski",
- "sled",
- "sleigh",
- "snowboard",
- "nordic",
- "downhill",
- "snowmobile"
- ],
- "tags": {
- "piste:type": "*"
- },
- "name": "Piste/Ski Trail"
- },
- "place/farm": {
- "icon": "maki-farm",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "place": "farm"
- },
- "name": "Farm",
- "searchable": false
- },
- "place/city": {
- "icon": "maki-city",
- "fields": [
- "name",
- "population"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "city"
- },
- "name": "City"
- },
- "place/hamlet": {
- "icon": "maki-triangle-stroked",
- "fields": [
- "name",
- "population"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "hamlet"
- },
- "name": "Hamlet"
- },
- "place/island": {
- "icon": "maki-mountain",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name"
- ],
- "terms": [
- "archipelago",
- "atoll",
- "bar",
- "cay",
- "isle",
- "islet",
- "key",
- "reef"
- ],
- "tags": {
- "place": "island"
- },
- "name": "Island"
- },
- "place/islet": {
- "icon": "maki-mountain",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name"
- ],
- "terms": [
- "archipelago",
- "atoll",
- "bar",
- "cay",
- "isle",
- "islet",
- "key",
- "reef"
- ],
- "tags": {
- "place": "islet"
- },
- "name": "Islet"
- },
- "place/isolated_dwelling": {
- "icon": "maki-home",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "place": "isolated_dwelling"
- },
- "name": "Isolated Dwelling"
- },
- "place/locality": {
- "icon": "maki-triangle-stroked",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "place": "locality"
- },
- "name": "Locality"
- },
- "place/neighbourhood": {
- "icon": "maki-triangle-stroked",
- "fields": [
- "name",
- "population"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "neighbourhood"
- },
- "terms": [
- "neighbourhood"
- ],
- "name": "Neighborhood"
- },
- "place/plot": {
- "icon": "maki-triangle-stroked",
- "fields": [
- "name"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "plot"
- },
- "terms": [
- "tract",
- "land",
- "lot",
- "parcel"
- ],
- "name": "Plot"
- },
- "place/quarter": {
- "icon": "maki-triangle-stroked",
- "fields": [
- "name",
- "population"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "quarter"
- },
- "terms": [
- "boro",
- "borough",
- "quarter"
- ],
- "name": "Sub-Borough / Quarter"
- },
- "place/square": {
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "place": "square"
- },
- "name": "Square"
- },
- "place/suburb": {
- "icon": "maki-triangle-stroked",
- "fields": [
- "name",
- "population"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "suburb"
- },
- "terms": [
- "boro",
- "borough",
- "quarter"
- ],
- "name": "Borough / Suburb"
- },
- "place/town": {
- "icon": "maki-town",
- "fields": [
- "name",
- "population"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "town"
- },
- "name": "Town"
- },
- "place/village": {
- "icon": "maki-village",
- "fields": [
- "name",
- "population"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "village"
- },
- "name": "Village"
- },
- "playground/balance_beam": {
- "icon": "maki-playground",
- "geometry": [
- "point",
- "line"
- ],
- "tags": {
- "playground": "balancebeam"
- },
- "name": "Play Balance Beam"
- },
- "playground/basket_spinner": {
- "icon": "maki-playground",
- "geometry": [
- "point"
- ],
- "terms": [
- "basket rotator"
- ],
- "tags": {
- "playground": "basketrotator"
- },
- "name": "Basket Spinner"
- },
- "playground/basket_swing": {
- "icon": "maki-playground",
- "geometry": [
- "point"
- ],
- "tags": {
- "playground": "basketswing"
- },
- "name": "Basket Swing"
- },
- "playground/climbing_frame": {
- "icon": "maki-playground",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "playground": "climbingframe"
- },
- "name": "Climbing Frame"
- },
- "playground/cushion": {
- "icon": "maki-playground",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "playground": "cushion"
- },
- "name": "Bouncy Cushion"
- },
- "playground/horizontal_bar": {
- "icon": "maki-pitch",
- "fields": [
- "height"
- ],
- "geometry": [
- "point"
- ],
- "terms": [
- "high bar"
- ],
- "tags": {
- "playground": "horizontal_bar"
- },
- "name": "Play Horizontal Bar"
- },
- "playground/rocker": {
- "icon": "maki-playground",
- "geometry": [
- "point"
- ],
- "tags": {
- "playground": "springy"
- },
- "name": "Spring Rider",
- "terms": [
- "spring rocker",
- "springy rocker"
- ]
- },
- "playground/roundabout": {
- "icon": "maki-stadium",
- "fields": [
- "bench"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "playground": "roundabout"
- },
- "name": "Play Roundabout",
- "terms": [
- "merry-go-round"
- ]
- },
- "playground/sandpit": {
- "icon": "maki-playground",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "playground": "sandpit"
- },
- "name": "Sandpit"
- },
- "playground/seesaw": {
- "icon": "maki-playground",
- "geometry": [
- "point"
- ],
- "tags": {
- "playground": "seesaw"
- },
- "name": "Seesaw"
- },
- "playground/slide": {
- "icon": "maki-playground",
- "geometry": [
- "point",
- "line"
- ],
- "tags": {
- "playground": "slide"
- },
- "name": "Slide"
- },
- "playground/structure": {
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "playground": "structure"
- },
- "name": "Play Structure"
- },
- "playground/swing": {
- "icon": "maki-playground",
- "fields": [
- "playground/baby",
- "wheelchair"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "playground": "swing"
- },
- "name": "Swing"
- },
- "playground/zipwire": {
- "icon": "maki-playground",
- "geometry": [
- "point",
- "line"
- ],
- "tags": {
- "playground": "zipwire"
- },
- "name": "Zip Wire"
- },
- "point": {
- "fields": [
- "name"
- ],
- "geometry": [
- "point"
- ],
- "tags": {},
- "name": "Point",
- "matchScore": 0.1
- },
- "power/sub_station": {
- "icon": "temaki-power",
- "fields": [
- "substation",
- "operator",
- "building",
- "ref"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "power": "sub_station"
- },
- "reference": {
- "key": "power",
- "value": "substation"
- },
- "name": "Substation",
- "searchable": false
- },
- "power/generator": {
- "icon": "temaki-power",
- "fields": [
- "operator",
- "generator/source",
- "generator/method",
- "generator/type",
- "generator/output/electricity",
- "ref"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "hydro",
- "solar",
- "turbine",
- "wind"
- ],
- "tags": {
- "power": "generator"
- },
- "name": "Power Generator"
- },
- "power/generator/source_nuclear": {
- "icon": "temaki-radiation",
- "fields": [
- "operator",
- "generator/source",
- "generator/method",
- "generator/type",
- "generator/output/electricity",
- "ref"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "fission",
- "generator",
- "nuclear",
- "nuke",
- "reactor"
- ],
- "tags": {
- "power": "generator",
- "generator:source": "nuclear",
- "generator:method": "fission"
- },
- "reference": {
- "key": "generator:source",
- "value": "nuclear"
- },
- "name": "Nuclear Reactor"
- },
- "power/generator/source_wind": {
- "icon": "temaki-wind_turbine",
- "fields": [
- "operator",
- "generator/source",
- "generator/method",
- "generator/type",
- "generator/output/electricity",
- "height",
- "ref"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "generator",
- "turbine",
- "windmill",
- "wind"
- ],
- "tags": {
- "power": "generator",
- "generator:source": "wind",
- "generator:method": "wind_turbine"
- },
- "reference": {
- "key": "generator:source",
- "value": "wind"
- },
- "name": "Wind Turbine"
- },
- "power/line": {
- "icon": "iD-power-line",
- "fields": [
- "name",
- "operator",
- "voltage",
- "ref"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "power": "line"
- },
- "name": "Power Line"
- },
- "power/minor_line": {
- "icon": "iD-power-line",
- "fields": [
- "name",
- "operator",
- "voltage",
- "ref"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "power": "minor_line"
- },
- "name": "Minor Power Line"
- },
- "power/plant": {
- "icon": "maki-industry",
- "fields": [
- "name",
- "operator",
- "address",
- "plant/output/electricity",
- "start_date"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "power": "plant"
- },
- "addTags": {
- "power": "plant",
- "landuse": "industrial"
- },
- "removeTags": {
- "power": "plant",
- "landuse": "industrial"
- },
- "terms": [
- "coal",
- "gas",
- "generat*",
- "hydro",
- "nuclear",
- "power",
- "station"
- ],
- "name": "Power Station Grounds"
- },
- "power/pole": {
- "fields": [
- "ref"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "power": "pole"
- },
- "name": "Power Pole"
- },
- "power/substation": {
- "icon": "temaki-power",
- "fields": [
- "substation",
- "operator",
- "building",
- "ref"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "power": "substation"
- },
- "name": "Substation"
- },
- "power/switch": {
- "icon": "temaki-power",
- "fields": [
- "switch",
- "operator",
- "location",
- "cables",
- "voltage",
- "ref"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "power": "switch"
- },
- "name": "Power Switch"
- },
- "power/tower": {
- "fields": [
- "ref"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "power": "tower"
- },
- "name": "High-Voltage Tower"
- },
- "power/transformer": {
- "icon": "temaki-power",
- "fields": [
- "transformer",
- "operator",
- "location",
- "rating",
- "devices",
- "phases",
- "frequency",
- "voltage/primary",
- "voltage/secondary",
- "voltage/tertiary",
- "windings",
- "windings/configuration",
- "ref"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "power": "transformer"
- },
- "name": "Transformer"
- },
- "public_transport/linear_platform_aerialway": {
- "icon": "iD-highway-footway",
- "fields": [
- "name",
- "ref_platform",
- "network",
- "operator",
- "surface",
- "lit",
- "bench",
- "shelter"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "public_transport": "platform",
- "aerialway": "yes"
- },
- "reference": {
- "key": "public_transport",
- "value": "platform"
- },
- "terms": [
- "aerialway",
- "cable car",
- "platform",
- "public transit",
- "public transportation",
- "transit",
- "transportation"
- ],
- "name": "Aerialway Stop / Platform"
- },
- "public_transport/linear_platform_bus": {
- "icon": "iD-highway-footway",
- "fields": [
- "name",
- "ref_platform",
- "network",
- "operator",
- "surface",
- "lit",
- "bench",
- "shelter"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "public_transport": "platform",
- "bus": "yes"
- },
- "addTags": {
- "public_transport": "platform",
- "bus": "yes",
- "highway": "bus_stop"
- },
- "removeTags": {
- "public_transport": "platform",
- "bus": "yes",
- "highway": "bus_stop"
- },
- "reference": {
- "key": "public_transport",
- "value": "platform"
- },
- "terms": [
- "bus",
- "platform",
- "public transit",
- "public transportation",
- "transit",
- "transportation"
- ],
- "name": "Bus Stop / Platform"
- },
- "public_transport/linear_platform_ferry": {
- "icon": "iD-highway-footway",
- "fields": [
- "name",
- "ref_platform",
- "network",
- "operator",
- "surface",
- "lit",
- "bench",
- "shelter"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "public_transport": "platform",
- "ferry": "yes"
- },
- "reference": {
- "key": "public_transport",
- "value": "platform"
- },
- "terms": [
- "boat",
- "dock",
- "ferry",
- "pier",
- "platform",
- "public transit",
- "public transportation",
- "transit",
- "transportation"
- ],
- "name": "Ferry Stop / Platform"
- },
- "public_transport/linear_platform_light_rail": {
- "icon": "iD-highway-footway",
- "fields": [
- "name",
- "ref_platform",
- "network",
- "operator",
- "surface",
- "lit",
- "bench",
- "shelter"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "public_transport": "platform",
- "light_rail": "yes"
- },
- "addTags": {
- "public_transport": "platform",
- "light_rail": "yes",
- "railway": "platform"
- },
- "removeTags": {
- "public_transport": "platform",
- "light_rail": "yes",
- "railway": "platform"
- },
- "reference": {
- "key": "railway",
- "value": "platform"
- },
- "terms": [
- "electric",
- "light rail",
- "platform",
- "public transit",
- "public transportation",
- "rail",
- "track",
- "tram",
- "trolley",
- "transit",
- "transportation"
- ],
- "name": "Light Rail Stop / Platform"
- },
- "public_transport/linear_platform_monorail": {
- "icon": "iD-highway-footway",
- "fields": [
- "name",
- "ref_platform",
- "network",
- "operator",
- "surface",
- "lit",
- "bench",
- "shelter"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "public_transport": "platform",
- "monorail": "yes"
- },
- "addTags": {
- "public_transport": "platform",
- "monorail": "yes",
- "railway": "platform"
- },
- "removeTags": {
- "public_transport": "platform",
- "monorail": "yes",
- "railway": "platform"
- },
- "reference": {
- "key": "railway",
- "value": "platform"
- },
- "terms": [
- "monorail",
- "platform",
- "public transit",
- "public transportation",
- "rail",
- "transit",
- "transportation"
- ],
- "name": "Monorail Stop / Platform"
- },
- "public_transport/linear_platform_subway": {
- "icon": "iD-highway-footway",
- "fields": [
- "name",
- "ref_platform",
- "network",
- "operator",
- "surface",
- "lit",
- "bench",
- "shelter"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "public_transport": "platform",
- "subway": "yes"
- },
- "addTags": {
- "public_transport": "platform",
- "subway": "yes",
- "railway": "platform"
- },
- "removeTags": {
- "public_transport": "platform",
- "subway": "yes",
- "railway": "platform"
- },
- "reference": {
- "key": "railway",
- "value": "platform"
- },
- "terms": [
- "metro",
- "platform",
- "public transit",
- "public transportation",
- "rail",
- "subway",
- "track",
- "transit",
- "transportation",
- "underground"
- ],
- "name": "Subway Stop / Platform"
- },
- "public_transport/linear_platform_train": {
- "icon": "iD-highway-footway",
- "fields": [
- "name",
- "ref_platform",
- "network",
- "operator",
- "surface",
- "lit",
- "bench",
- "shelter"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "public_transport": "platform",
- "train": "yes"
- },
- "addTags": {
- "public_transport": "platform",
- "train": "yes",
- "railway": "platform"
- },
- "removeTags": {
- "public_transport": "platform",
- "train": "yes",
- "railway": "platform"
- },
- "reference": {
- "key": "railway",
- "value": "platform"
- },
- "terms": [
- "platform",
- "public transit",
- "public transportation",
- "rail",
- "track",
- "train",
- "transit",
- "transportation"
- ],
- "name": "Train Stop / Platform"
- },
- "public_transport/linear_platform_tram": {
- "icon": "iD-highway-footway",
- "fields": [
- "name",
- "ref_platform",
- "network",
- "operator",
- "surface",
- "lit",
- "bench",
- "shelter"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "public_transport": "platform",
- "tram": "yes"
- },
- "addTags": {
- "public_transport": "platform",
- "tram": "yes",
- "railway": "platform"
- },
- "removeTags": {
- "public_transport": "platform",
- "tram": "yes",
- "railway": "platform"
- },
- "reference": {
- "key": "public_transport",
- "value": "platform"
- },
- "terms": [
- "electric",
- "light rail",
- "platform",
- "public transit",
- "public transportation",
- "rail",
- "streetcar",
- "track",
- "tram",
- "trolley",
- "transit",
- "transportation"
- ],
- "name": "Tram Stop / Platform"
- },
- "public_transport/linear_platform_trolleybus": {
- "icon": "iD-highway-footway",
- "fields": [
- "name",
- "ref_platform",
- "network",
- "operator",
- "surface",
- "lit",
- "bench",
- "shelter"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "public_transport": "platform",
- "trolleybus": "yes"
- },
- "addTags": {
- "public_transport": "platform",
- "trolleybus": "yes",
- "highway": "bus_stop"
- },
- "removeTags": {
- "public_transport": "platform",
- "trolleybus": "yes",
- "highway": "bus_stop"
- },
- "reference": {
- "key": "public_transport",
- "value": "platform"
- },
- "terms": [
- "bus",
- "electric",
- "platform",
- "public transit",
- "public transportation",
- "streetcar",
- "trackless",
- "tram",
- "trolley",
- "transit",
- "transportation"
- ],
- "name": "Trolleybus Stop / Platform"
- },
- "public_transport/linear_platform": {
- "icon": "iD-highway-footway",
- "fields": [
- "name",
- "ref_platform",
- "network",
- "operator",
- "surface",
- "lit",
- "bench",
- "shelter"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "public_transport": "platform"
- },
- "terms": [
- "platform",
- "public transit",
- "public transportation",
- "transit",
- "transportation"
- ],
- "name": "Transit Stop / Platform",
- "matchScore": 0.2
- },
- "public_transport/platform_aerialway": {
- "icon": "maki-aerialway",
- "fields": [
- "name",
- "ref_platform",
- "network",
- "operator",
- "surface",
- "lit",
- "bench",
- "shelter"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "platform",
- "aerialway": "yes"
- },
- "reference": {
- "key": "public_transport",
- "value": "platform"
- },
- "terms": [
- "aerialway",
- "cable car",
- "platform",
- "public transit",
- "public transportation",
- "transit",
- "transportation"
- ],
- "name": "Aerialway Stop / Platform"
- },
- "public_transport/platform_bus": {
- "icon": "maki-bus",
- "fields": [
- "name",
- "ref_platform",
- "network",
- "operator",
- "surface",
- "lit",
- "bench",
- "shelter"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "platform",
- "bus": "yes"
- },
- "addTags": {
- "public_transport": "platform",
- "bus": "yes",
- "highway": "bus_stop"
- },
- "removeTags": {
- "public_transport": "platform",
- "bus": "yes",
- "highway": "bus_stop"
- },
- "reference": {
- "key": "public_transport",
- "value": "platform"
- },
- "terms": [
- "bus",
- "platform",
- "public transit",
- "public transportation",
- "transit",
- "transportation"
- ],
- "name": "Bus Stop / Platform"
- },
- "public_transport/platform_ferry": {
- "icon": "maki-ferry",
- "fields": [
- "name",
- "ref_platform",
- "network",
- "operator",
- "surface",
- "lit",
- "bench",
- "shelter"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "platform",
- "ferry": "yes"
- },
- "reference": {
- "key": "public_transport",
- "value": "platform"
- },
- "terms": [
- "boat",
- "dock",
- "ferry",
- "pier",
- "platform",
- "public transit",
- "public transportation",
- "transit",
- "transportation"
- ],
- "name": "Ferry Stop / Platform"
- },
- "public_transport/platform_light_rail": {
- "icon": "temaki-light_rail",
- "fields": [
- "name",
- "ref_platform",
- "network",
- "operator",
- "surface",
- "lit",
- "bench",
- "shelter"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "platform",
- "light_rail": "yes"
- },
- "addTags": {
- "public_transport": "platform",
- "light_rail": "yes",
- "railway": "platform"
- },
- "removeTags": {
- "public_transport": "platform",
- "light_rail": "yes",
- "railway": "platform"
- },
- "reference": {
- "key": "railway",
- "value": "platform"
- },
- "terms": [
- "electric",
- "light rail",
- "platform",
- "public transit",
- "public transportation",
- "rail",
- "track",
- "tram",
- "trolley",
- "transit",
- "transportation"
- ],
- "name": "Light Rail Stop / Platform"
- },
- "public_transport/platform_monorail": {
- "icon": "temaki-monorail",
- "fields": [
- "name",
- "ref_platform",
- "network",
- "operator",
- "surface",
- "lit",
- "bench",
- "shelter"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "platform",
- "monorail": "yes"
- },
- "addTags": {
- "public_transport": "platform",
- "monorail": "yes",
- "railway": "platform"
- },
- "removeTags": {
- "public_transport": "platform",
- "monorail": "yes",
- "railway": "platform"
- },
- "reference": {
- "key": "railway",
- "value": "platform"
- },
- "terms": [
- "monorail",
- "platform",
- "public transit",
- "public transportation",
- "rail",
- "transit",
- "transportation"
- ],
- "name": "Monorail Stop / Platform"
- },
- "public_transport/platform_subway": {
- "icon": "temaki-subway",
- "fields": [
- "name",
- "ref_platform",
- "network",
- "operator",
- "surface",
- "lit",
- "bench",
- "shelter"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "platform",
- "subway": "yes"
- },
- "addTags": {
- "public_transport": "platform",
- "subway": "yes",
- "railway": "platform"
- },
- "removeTags": {
- "public_transport": "platform",
- "subway": "yes",
- "railway": "platform"
- },
- "reference": {
- "key": "railway",
- "value": "platform"
- },
- "terms": [
- "metro",
- "platform",
- "public transit",
- "public transportation",
- "rail",
- "subway",
- "track",
- "transit",
- "transportation",
- "underground"
- ],
- "name": "Subway Stop / Platform"
- },
- "public_transport/platform_train": {
- "icon": "maki-rail",
- "fields": [
- "name",
- "ref_platform",
- "network",
- "operator",
- "surface",
- "lit",
- "bench",
- "shelter"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "platform",
- "train": "yes"
- },
- "addTags": {
- "public_transport": "platform",
- "train": "yes",
- "railway": "platform"
- },
- "removeTags": {
- "public_transport": "platform",
- "train": "yes",
- "railway": "platform"
- },
- "reference": {
- "key": "railway",
- "value": "platform"
- },
- "terms": [
- "platform",
- "public transit",
- "public transportation",
- "rail",
- "track",
- "train",
- "transit",
- "transportation"
- ],
- "name": "Train Stop / Platform"
- },
- "public_transport/platform_tram": {
- "icon": "temaki-tram",
- "fields": [
- "name",
- "ref_platform",
- "network",
- "operator",
- "surface",
- "lit",
- "bench",
- "shelter"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "platform",
- "tram": "yes"
- },
- "addTags": {
- "public_transport": "platform",
- "tram": "yes",
- "railway": "platform"
- },
- "removeTags": {
- "public_transport": "platform",
- "tram": "yes",
- "railway": "platform"
- },
- "reference": {
- "key": "public_transport",
- "value": "platform"
- },
- "terms": [
- "electric",
- "light rail",
- "platform",
- "public transit",
- "public transportation",
- "rail",
- "streetcar",
- "track",
- "tram",
- "trolley",
- "transit",
- "transportation"
- ],
- "name": "Tram Stop / Platform"
- },
- "public_transport/platform_trolleybus": {
- "icon": "temaki-trolleybus",
- "fields": [
- "name",
- "ref_platform",
- "network",
- "operator",
- "surface",
- "lit",
- "bench",
- "shelter"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "platform",
- "trolleybus": "yes"
- },
- "addTags": {
- "public_transport": "platform",
- "trolleybus": "yes",
- "highway": "bus_stop"
- },
- "removeTags": {
- "public_transport": "platform",
- "trolleybus": "yes",
- "highway": "bus_stop"
- },
- "reference": {
- "key": "public_transport",
- "value": "platform"
- },
- "terms": [
- "bus",
- "electric",
- "platform",
- "public transit",
- "public transportation",
- "streetcar",
- "trackless",
- "tram",
- "trolley",
- "transit",
- "transportation"
- ],
- "name": "Trolleybus Stop / Platform"
- },
- "public_transport/platform": {
- "icon": "maki-bus",
- "fields": [
- "name",
- "ref_platform",
- "network",
- "operator",
- "surface",
- "lit",
- "bench",
- "shelter"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "platform"
- },
- "terms": [
- "platform",
- "public transit",
- "public transportation",
- "transit",
- "transportation"
- ],
- "name": "Transit Stop / Platform",
- "matchScore": 0.2
- },
- "public_transport/station_aerialway": {
- "icon": "maki-aerialway",
- "fields": [
- "name",
- "network",
- "operator",
- "aerialway/access",
- "aerialway/summer/access",
- "elevation",
- "building_area",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "station",
- "aerialway": "yes"
- },
- "reference": {
- "key": "aerialway",
- "value": "station"
- },
- "terms": [
- "aerialway",
- "cable car",
- "public transit",
- "public transportation",
- "station",
- "terminal",
- "transit",
- "transportation"
- ],
- "name": "Aerialway Station"
- },
- "public_transport/station_bus": {
- "icon": "maki-bus",
- "fields": [
- "name",
- "network",
- "operator",
- "address",
- "building_area",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "station",
- "bus": "yes"
- },
- "addTags": {
- "public_transport": "station",
- "bus": "yes",
- "amenity": "bus_station"
- },
- "removeTags": {
- "public_transport": "station",
- "bus": "yes",
- "amenity": "bus_station"
- },
- "reference": {
- "key": "amenity",
- "value": "bus_station"
- },
- "terms": [
- "bus",
- "public transit",
- "public transportation",
- "station",
- "terminal",
- "transit",
- "transportation"
- ],
- "name": "Bus Station / Terminal"
- },
- "public_transport/station_ferry": {
- "icon": "maki-ferry",
- "fields": [
- "name",
- "network",
- "operator",
- "address",
- "building_area",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "station",
- "ferry": "yes"
- },
- "addTags": {
- "public_transport": "station",
- "ferry": "yes",
- "amenity": "ferry_terminal"
- },
- "removeTags": {
- "public_transport": "station",
- "ferry": "yes",
- "amenity": "ferry_terminal"
- },
- "reference": {
- "key": "amenity",
- "value": "ferry_terminal"
- },
- "terms": [
- "boat",
- "dock",
- "ferry",
- "pier",
- "public transit",
- "public transportation",
- "station",
- "terminal",
- "transit",
- "transportation"
- ],
- "name": "Ferry Station / Terminal"
- },
- "public_transport/station_light_rail": {
- "icon": "temaki-light_rail",
- "fields": [
- "name",
- "network",
- "operator",
- "address",
- "building_area",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "station",
- "light_rail": "yes"
- },
- "addTags": {
- "public_transport": "station",
- "light_rail": "yes",
- "railway": "station",
- "station": "light_rail"
- },
- "removeTags": {
- "public_transport": "station",
- "light_rail": "yes",
- "railway": "station",
- "station": "light_rail"
- },
- "reference": {
- "key": "station",
- "value": "light_rail"
- },
- "terms": [
- "electric",
- "light rail",
- "public transit",
- "public transportation",
- "rail",
- "station",
- "terminal",
- "track",
- "tram",
- "trolley",
- "transit",
- "transportation"
- ],
- "name": "Light Rail Station"
- },
- "public_transport/station_monorail": {
- "icon": "temaki-monorail",
- "fields": [
- "name",
- "network",
- "operator",
- "address",
- "building_area",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "station",
- "monorail": "yes"
- },
- "addTags": {
- "public_transport": "station",
- "monorail": "yes",
- "railway": "station"
- },
- "removeTags": {
- "public_transport": "station",
- "monorail": "yes",
- "railway": "station"
- },
- "reference": {
- "key": "railway",
- "value": "station"
- },
- "terms": [
- "monorail",
- "public transit",
- "public transportation",
- "rail",
- "station",
- "terminal",
- "transit",
- "transportation"
- ],
- "name": "Monorail Station"
- },
- "public_transport/station_subway": {
- "icon": "temaki-subway",
- "fields": [
- "name",
- "network",
- "operator",
- "address",
- "building_area",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "station",
- "subway": "yes"
- },
- "addTags": {
- "public_transport": "station",
- "subway": "yes",
- "railway": "station",
- "station": "subway"
- },
- "removeTags": {
- "public_transport": "station",
- "subway": "yes",
- "railway": "station",
- "station": "subway"
- },
- "reference": {
- "key": "station",
- "value": "subway"
- },
- "terms": [
- "metro",
- "public transit",
- "public transportation",
- "rail",
- "station",
- "subway",
- "terminal",
- "track",
- "transit",
- "transportation",
- "underground"
- ],
- "name": "Subway Station"
- },
- "public_transport/station_train_halt": {
- "icon": "maki-rail",
- "fields": [
- "name",
- "network",
- "operator",
- "address",
- "building_area",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "station",
- "train": "yes",
- "railway": "halt"
- },
- "reference": {
- "key": "railway",
- "value": "halt"
- },
- "terms": [
- "halt",
- "public transit",
- "public transportation",
- "rail",
- "station",
- "track",
- "train",
- "transit",
- "transportation",
- "whistle stop"
- ],
- "name": "Train Station (Halt / Request)"
- },
- "public_transport/station_train": {
- "icon": "maki-rail",
- "fields": [
- "name",
- "network",
- "operator",
- "address",
- "building_area",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "station",
- "train": "yes"
- },
- "addTags": {
- "public_transport": "station",
- "train": "yes",
- "railway": "station"
- },
- "removeTags": {
- "public_transport": "station",
- "train": "yes",
- "railway": "station"
- },
- "reference": {
- "key": "railway",
- "value": "station"
- },
- "terms": [
- "public transit",
- "public transportation",
- "rail",
- "station",
- "terminal",
- "track",
- "train",
- "transit",
- "transportation"
- ],
- "name": "Train Station"
- },
- "public_transport/station_tram": {
- "icon": "temaki-tram",
- "fields": [
- "name",
- "network",
- "operator",
- "address",
- "building_area",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "station",
- "tram": "yes"
- },
- "reference": {
- "key": "public_transport",
- "value": "station"
- },
- "terms": [
- "electric",
- "light rail",
- "public transit",
- "public transportation",
- "rail",
- "station",
- "streetcar",
- "terminal",
- "track",
- "tram",
- "trolley",
- "transit",
- "transportation"
- ],
- "name": "Tram Station"
- },
- "public_transport/station_trolleybus": {
- "icon": "temaki-trolleybus",
- "fields": [
- "name",
- "network",
- "operator",
- "address",
- "building_area",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "station",
- "trolleybus": "yes"
- },
- "addTags": {
- "public_transport": "station",
- "trolleybus": "yes",
- "amenity": "bus_station"
- },
- "removeTags": {
- "public_transport": "station",
- "trolleybus": "yes",
- "amenity": "bus_station"
- },
- "reference": {
- "key": "amenity",
- "value": "bus_station"
- },
- "terms": [
- "bus",
- "electric",
- "public transit",
- "public transportation",
- "station",
- "streetcar",
- "terminal",
- "trackless",
- "tram",
- "trolley",
- "transit",
- "transportation"
- ],
- "name": "Trolleybus Station / Terminal"
- },
- "public_transport/station": {
- "icon": "maki-rail",
- "fields": [
- "name",
- "network",
- "operator",
- "address",
- "building_area",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "station"
- },
- "terms": [
- "public transit",
- "public transportation",
- "station",
- "terminal",
- "transit",
- "transportation"
- ],
- "name": "Transit Station",
- "matchScore": 0.2
- },
- "public_transport/stop_area": {
- "icon": "maki-bus",
- "fields": [
- "name",
- "ref",
- "network",
- "operator"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "public_transport",
- "public_transport": "stop_area"
- },
- "addTags": {
- "type": "public_transport",
- "public_transport": "stop_area",
- "public_transport:version": "2"
- },
- "removeTags": {
- "type": "public_transport",
- "public_transport": "stop_area",
- "public_transport:version": "2"
- },
- "reference": {
- "key": "public_transport",
- "value": "stop_area"
- },
- "name": "Transit Stop Area"
- },
- "public_transport/stop_position_aerialway": {
- "icon": "maki-aerialway",
- "fields": [
- "name",
- "ref_stop_position",
- "network",
- "operator"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "public_transport": "stop_position",
- "aerialway": "yes"
- },
- "reference": {
- "key": "public_transport",
- "value": "stop_position"
- },
- "terms": [
- "aerialway",
- "cable car",
- "public transit",
- "public transportation",
- "transit",
- "transportation"
- ],
- "name": "Aerialway Stopping Location"
- },
- "public_transport/stop_position_bus": {
- "icon": "maki-bus",
- "fields": [
- "name",
- "ref_stop_position",
- "network",
- "operator"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "public_transport": "stop_position",
- "bus": "yes"
- },
- "reference": {
- "key": "public_transport",
- "value": "stop_position"
- },
- "terms": [
- "bus",
- "public transit",
- "public transportation",
- "transit",
- "transportation"
- ],
- "name": "Bus Stopping Location"
- },
- "public_transport/stop_position_ferry": {
- "icon": "maki-ferry",
- "fields": [
- "name",
- "ref_stop_position",
- "network",
- "operator"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "public_transport": "stop_position",
- "ferry": "yes"
- },
- "reference": {
- "key": "public_transport",
- "value": "stop_position"
- },
- "terms": [
- "boat",
- "dock",
- "ferry",
- "pier",
- "public transit",
- "public transportation",
- "transit",
- "transportation"
- ],
- "name": "Ferry Stopping Location"
- },
- "public_transport/stop_position_light_rail": {
- "icon": "temaki-light_rail",
- "fields": [
- "name",
- "ref_stop_position",
- "network",
- "operator"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "public_transport": "stop_position",
- "light_rail": "yes"
- },
- "addTags": {
- "public_transport": "stop_position",
- "light_rail": "yes",
- "railway": "stop"
- },
- "removeTags": {
- "public_transport": "stop_position",
- "light_rail": "yes",
- "railway": "stop"
- },
- "reference": {
- "key": "railway",
- "value": "stop"
- },
- "terms": [
- "electric",
- "light rail",
- "public transit",
- "public transportation",
- "rail",
- "track",
- "tram",
- "trolley",
- "transit",
- "transportation"
- ],
- "name": "Light Rail Stopping Location"
- },
- "public_transport/stop_position_monorail": {
- "icon": "temaki-monorail",
- "fields": [
- "name",
- "ref_stop_position",
- "network",
- "operator"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "public_transport": "stop_position",
- "monorail": "yes"
- },
- "addTags": {
- "public_transport": "stop_position",
- "monorail": "yes",
- "railway": "stop"
- },
- "removeTags": {
- "public_transport": "stop_position",
- "monorail": "yes",
- "railway": "stop"
- },
- "reference": {
- "key": "railway",
- "value": "stop"
- },
- "terms": [
- "monorail",
- "public transit",
- "public transportation",
- "rail",
- "transit",
- "transportation"
- ],
- "name": "Monorail Stopping Location"
- },
- "public_transport/stop_position_subway": {
- "icon": "temaki-subway",
- "fields": [
- "name",
- "ref_stop_position",
- "network",
- "operator"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "public_transport": "stop_position",
- "subway": "yes"
- },
- "addTags": {
- "public_transport": "stop_position",
- "subway": "yes",
- "railway": "stop"
- },
- "removeTags": {
- "public_transport": "stop_position",
- "subway": "yes",
- "railway": "stop"
- },
- "reference": {
- "key": "railway",
- "value": "stop"
- },
- "terms": [
- "metro",
- "public transit",
- "public transportation",
- "rail",
- "subway",
- "track",
- "transit",
- "transportation",
- "underground"
- ],
- "name": "Subway Stopping Location"
- },
- "public_transport/stop_position_train": {
- "icon": "maki-rail",
- "fields": [
- "name",
- "ref_stop_position",
- "network",
- "operator"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "public_transport": "stop_position",
- "train": "yes"
- },
- "addTags": {
- "public_transport": "stop_position",
- "train": "yes",
- "railway": "stop"
- },
- "removeTags": {
- "public_transport": "stop_position",
- "train": "yes",
- "railway": "stop"
- },
- "reference": {
- "key": "railway",
- "value": "stop"
- },
- "terms": [
- "public transit",
- "public transportation",
- "rail",
- "track",
- "train",
- "transit",
- "transportation"
- ],
- "name": "Train Stopping Location"
- },
- "public_transport/stop_position_tram": {
- "icon": "temaki-tram",
- "fields": [
- "name",
- "ref_stop_position",
- "network",
- "operator"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "public_transport": "stop_position",
- "tram": "yes"
- },
- "addTags": {
- "public_transport": "stop_position",
- "tram": "yes",
- "railway": "tram_stop"
- },
- "removeTags": {
- "public_transport": "stop_position",
- "tram": "yes",
- "railway": "tram_stop"
- },
- "reference": {
- "key": "public_transport",
- "value": "stop_position"
- },
- "terms": [
- "electric",
- "light rail",
- "public transit",
- "public transportation",
- "rail",
- "streetcar",
- "track",
- "tram",
- "trolley",
- "transit",
- "transportation"
- ],
- "name": "Tram Stopping Location"
- },
- "public_transport/stop_position_trolleybus": {
- "icon": "temaki-trolleybus",
- "fields": [
- "name",
- "ref_stop_position",
- "network",
- "operator"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "public_transport": "stop_position",
- "trolleybus": "yes"
- },
- "reference": {
- "key": "public_transport",
- "value": "stop_position"
- },
- "terms": [
- "bus",
- "electric",
- "public transit",
- "public transportation",
- "streetcar",
- "trackless",
- "tram",
- "trolley",
- "transit",
- "transportation"
- ],
- "name": "Trolleybus Stopping Location"
- },
- "public_transport/stop_position": {
- "icon": "maki-bus",
- "fields": [
- "name",
- "ref_stop_position",
- "network",
- "operator"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "public_transport": "stop_position"
- },
- "terms": [
- "public transit",
- "public transportation",
- "transit",
- "transportation"
- ],
- "name": "Transit Stopping Location",
- "matchScore": 0.2
- },
- "railway/halt": {
- "icon": "maki-rail",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "railway": "halt"
- },
- "terms": [
- "break",
- "interrupt",
- "rest",
- "wait",
- "interruption"
- ],
- "name": "Train Station (Halt / Request)",
- "searchable": false
- },
- "railway/platform": {
- "icon": "iD-highway-footway",
- "fields": [
- "name",
- "ref_platform",
- "surface",
- "lit",
- "shelter"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "railway": "platform"
- },
- "name": "Train Stop / Platform",
- "searchable": false
- },
- "railway/station": {
- "icon": "maki-rail",
- "fields": [
- "name",
- "network",
- "operator",
- "address",
- "building_area",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "railway": "station"
- },
- "terms": [
- "train station",
- "station"
- ],
- "name": "Train Station",
- "searchable": false
- },
- "railway/tram_stop": {
- "icon": "temaki-tram",
- "fields": [
- "name",
- "network",
- "operator"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "railway": "tram_stop"
- },
- "terms": [
- "light rail",
- "streetcar",
- "tram",
- "trolley"
- ],
- "name": "Tram Stopping Position",
- "searchable": false
- },
- "railway/abandoned": {
- "icon": "iD-railway-abandoned",
- "fields": [
- "name",
- "structure",
- "service_rail",
- "usage_rail"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "abandoned"
- },
- "terms": [],
- "name": "Abandoned Railway"
- },
- "railway/buffer_stop": {
- "icon": "temaki-buffer_stop",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "railway": "buffer_stop"
- },
- "terms": [
- "stop",
- "halt",
- "buffer"
- ],
- "name": "Buffer Stop"
- },
- "railway/crossing": {
- "icon": "maki-cross",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "railway": "crossing"
- },
- "terms": [
- "crossing",
- "pedestrian crossing",
- "railroad crossing",
- "level crossing",
- "grade crossing",
- "path through railroad",
- "train crossing"
- ],
- "name": "Railway Crossing (Path)"
- },
- "railway/derail": {
- "icon": "maki-roadblock",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "railway": "derail"
- },
- "terms": [
- "derailer"
- ],
- "name": "Railway Derailer"
- },
- "railway/disused": {
- "icon": "iD-railway-disused",
- "fields": [
- "structure",
- "service_rail",
- "usage_rail"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "disused"
- },
- "terms": [],
- "name": "Disused Railway"
- },
- "railway/funicular": {
- "icon": "iD-railway-rail",
- "geometry": [
- "line"
- ],
- "terms": [
- "venicular",
- "cliff railway",
- "cable car",
- "cable railway",
- "funicular railway"
- ],
- "fields": [
- "structure",
- "gauge",
- "service_rail"
- ],
- "tags": {
- "railway": "funicular"
- },
- "name": "Funicular"
- },
- "railway/level_crossing": {
- "icon": "maki-cross",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "railway": "level_crossing"
- },
- "terms": [
- "crossing",
- "railroad crossing",
- "level crossing",
- "grade crossing",
- "road through railroad",
- "train crossing"
- ],
- "name": "Railway Crossing (Road)"
- },
- "railway/light_rail": {
- "icon": "iD-railway-light-rail",
- "fields": [
- "name",
- "structure",
- "gauge",
- "electrified",
- "service_rail",
- "usage_rail",
- "voltage",
- "frequency"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "light_rail"
- },
- "terms": [
- "light rail",
- "streetcar",
- "trolley"
- ],
- "name": "Light Rail"
- },
- "railway/milestone": {
- "icon": "temaki-milestone",
- "geometry": [
- "point",
- "vertex"
- ],
- "fields": [
- "railway/position"
- ],
- "tags": {
- "railway": "milestone"
- },
- "terms": [
- "milestone",
- "marker"
- ],
- "name": "Railway Milestone"
- },
- "railway/miniature": {
- "icon": "iD-railway-rail",
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "miniature"
- },
- "fields": [
- "name",
- "structure",
- "gauge",
- "electrified",
- "service_rail"
- ],
- "terms": [
- "rideable miniature railway",
- "narrow gauge railway",
- "minimum gauge railway"
- ],
- "name": "Miniature Railway"
- },
- "railway/monorail": {
- "icon": "iD-railway-monorail",
- "fields": [
- "name",
- "structure",
- "electrified",
- "service_rail",
- "usage_rail",
- "voltage",
- "frequency"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "monorail"
- },
- "terms": [],
- "name": "Monorail"
- },
- "railway/narrow_gauge": {
- "icon": "iD-railway-rail",
- "fields": [
- "name",
- "structure",
- "gauge",
- "electrified",
- "service_rail",
- "usage_rail",
- "voltage",
- "frequency"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "narrow_gauge"
- },
- "terms": [
- "narrow gauge railway",
- "narrow gauge railroad"
- ],
- "name": "Narrow Gauge Rail"
- },
- "railway/rail": {
- "icon": "iD-railway-rail",
- "fields": [
- "name",
- "structure",
- "gauge",
- "electrified",
- "maxspeed",
- "service_rail",
- "usage_rail",
- "voltage",
- "frequency"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "rail"
- },
- "terms": [],
- "name": "Rail"
- },
- "railway/signal": {
- "icon": "temaki-railway_signals",
- "geometry": [
- "point",
- "vertex"
- ],
- "fields": [
- "railway/position",
- "railway/signal/direction",
- "ref"
- ],
- "tags": {
- "railway": "signal"
- },
- "terms": [
- "signal",
- "lights"
- ],
- "name": "Railway Signal"
- },
- "railway/subway_entrance": {
- "icon": "maki-entrance",
- "geometry": [
- "point",
- "vertex"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "railway": "subway_entrance"
- },
- "terms": [
- "metro",
- "transit"
- ],
- "name": "Subway Entrance"
- },
- "railway/subway": {
- "icon": "iD-railway-subway",
- "fields": [
- "name",
- "structure",
- "gauge",
- "electrified",
- "service_rail",
- "usage_rail",
- "voltage",
- "frequency"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "subway"
- },
- "terms": [
- "metro",
- "transit"
- ],
- "name": "Subway"
- },
- "railway/switch": {
- "icon": "temaki-junction",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "railway": "switch"
- },
- "terms": [
- "switch",
- "points"
- ],
- "name": "Railway Switch"
- },
- "railway/train_wash": {
- "icon": "maki-rail",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "operator",
- "building_area"
- ],
- "tags": {
- "railway": "wash"
- },
- "terms": [
- "wash",
- "clean"
- ],
- "name": "Train Wash"
- },
- "railway/tram": {
- "icon": "iD-railway-light-rail",
- "fields": [
- "name",
- "structure",
- "gauge",
- "electrified",
- "service_rail",
- "usage_rail",
- "voltage",
- "frequency"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "tram"
- },
- "terms": [
- "light rail",
- "streetcar",
- "tram",
- "trolley"
- ],
- "name": "Tram"
- },
- "relation": {
- "icon": "iD-relation",
- "fields": [
- "name",
- "relation"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {},
- "name": "Relation"
- },
- "route/ferry": {
- "icon": "iD-ferry-line",
- "geometry": [
- "line"
- ],
- "fields": [
- "name",
- "operator",
- "duration",
- "access"
- ],
- "tags": {
- "route": "ferry"
- },
- "name": "Ferry Route"
- },
- "shop": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "shop",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "*"
- },
- "terms": [],
- "name": "Shop"
- },
- "shop/fishmonger": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "fishmonger"
- },
- "reference": {
- "key": "shop",
- "value": "seafood"
- },
- "name": "Fishmonger",
- "searchable": false
- },
- "shop/furnace": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "oven",
- "stove"
- ],
- "tags": {
- "shop": "furnace"
- },
- "name": "Furnace Store",
- "searchable": false
- },
- "shop/vacant": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "address",
- "building_area"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "vacant"
- },
- "name": "Vacant Shop",
- "searchable": false
- },
- "shop/agrarian": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "agrarian",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "agricultural inputs",
- "agricultural machines",
- "seeds",
- "pesticides",
- "fertilizer",
- "agricultural tools"
- ],
- "tags": {
- "shop": "agrarian"
- },
- "name": "Farm Supply Shop"
- },
- "shop/alcohol": {
- "icon": "maki-alcohol-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "alcohol",
- "beer",
- "booze",
- "wine"
- ],
- "tags": {
- "shop": "alcohol"
- },
- "name": "Liquor Store"
- },
- "shop/anime": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "anime"
- },
- "terms": [
- "manga",
- "japan",
- "cosplay",
- "figurine",
- "dakimakura"
- ],
- "name": "Anime Shop"
- },
- "shop/antiques": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "antiques"
- },
- "name": "Antiques Shop"
- },
- "shop/appliance": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "air conditioner",
- "appliance",
- "dishwasher",
- "dryer",
- "freezer",
- "fridge",
- "grill",
- "kitchen",
- "oven",
- "refrigerator",
- "stove",
- "washer",
- "washing machine"
- ],
- "tags": {
- "shop": "appliance"
- },
- "name": "Appliance Store"
- },
- "shop/art": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "art*",
- "exhibit*",
- "gallery"
- ],
- "tags": {
- "shop": "art"
- },
- "name": "Art Store"
- },
- "shop/baby_goods": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "baby_goods"
- },
- "name": "Baby Goods Store"
- },
- "shop/bag": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "handbag",
- "purse"
- ],
- "tags": {
- "shop": "bag"
- },
- "name": "Bag/Luggage Store"
- },
- "shop/bakery": {
- "icon": "maki-bakery",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "bakery"
- },
- "name": "Bakery"
- },
- "shop/bathroom_furnishing": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "bathroom_furnishing"
- },
- "name": "Bathroom Furnishing Store"
- },
- "shop/beauty": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "beauty",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "spa",
- "salon",
- "tanning"
- ],
- "tags": {
- "shop": "beauty"
- },
- "name": "Beauty Shop"
- },
- "shop/beauty/nails": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "manicure",
- "pedicure"
- ],
- "tags": {
- "shop": "beauty",
- "beauty": "nails"
- },
- "reference": {
- "key": "shop",
- "value": "beauty"
- },
- "name": "Nail Salon"
- },
- "shop/beauty/tanning": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "beauty",
- "beauty": "tanning"
- },
- "reference": {
- "key": "leisure",
- "value": "tanning_salon"
- },
- "name": "Tanning Salon"
- },
- "shop/bed": {
- "icon": "maki-lodging",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "bed"
- },
- "name": "Bedding/Mattress Store"
- },
- "shop/beverages": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "beverages"
- },
- "name": "Beverage Store"
- },
- "shop/bicycle": {
- "icon": "maki-bicycle",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/bicycle",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "bike",
- "repair"
- ],
- "tags": {
- "shop": "bicycle"
- },
- "name": "Bicycle Shop"
- },
- "shop/bookmaker": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "betting"
- ],
- "tags": {
- "shop": "bookmaker"
- },
- "name": "Bookmaker"
- },
- "shop/books": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "books"
- },
- "name": "Book Store"
- },
- "shop/boutique": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "boutique"
- },
- "name": "Boutique"
- },
- "shop/butcher": {
- "icon": "maki-slaughterhouse",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "meat"
- ],
- "tags": {
- "shop": "butcher"
- },
- "name": "Butcher"
- },
- "shop/candles": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "candles"
- },
- "name": "Candle Shop"
- },
- "shop/car_parts": {
- "icon": "maki-car",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "auto"
- ],
- "tags": {
- "shop": "car_parts"
- },
- "name": "Car Parts Store"
- },
- "shop/car_repair": {
- "icon": "maki-car",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "auto",
- "garage",
- "service"
- ],
- "tags": {
- "shop": "car_repair"
- },
- "name": "Car Repair Shop"
- },
- "shop/car": {
- "icon": "maki-car",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "auto"
- ],
- "tags": {
- "shop": "car"
- },
- "name": "Car Dealership"
- },
- "shop/carpet": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "rug"
- ],
- "tags": {
- "shop": "carpet"
- },
- "name": "Carpet Store"
- },
- "shop/charity": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "second_hand",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "thrift",
- "op shop",
- "nonprofit"
- ],
- "tags": {
- "shop": "charity"
- },
- "name": "Charity Store"
- },
- "shop/cheese": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "cheese"
- },
- "name": "Cheese Store"
- },
- "shop/chemist": {
- "icon": "maki-grocery",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "chemist"
- },
- "terms": [
- "med*",
- "drug*",
- "gift"
- ],
- "name": "Drugstore"
- },
- "shop/chocolate": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "chocolate"
- },
- "name": "Chocolate Store"
- },
- "shop/clothes": {
- "icon": "maki-clothing-store",
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "clothes"
- },
- "name": "Clothing Store"
- },
- "shop/coffee": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "coffee"
- },
- "name": "Coffee Store"
- },
- "shop/computer": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "computer"
- },
- "name": "Computer Store"
- },
- "shop/confectionery": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "sweet"
- ],
- "tags": {
- "shop": "confectionery"
- },
- "name": "Candy Store"
- },
- "shop/convenience": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "convenience"
- },
- "name": "Convenience Store"
- },
- "shop/copyshop": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "copyshop"
- },
- "name": "Copy Store"
- },
- "shop/cosmetics": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "cosmetics"
- },
- "name": "Cosmetics Store"
- },
- "shop/craft": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "craft"
- },
- "terms": [
- "art*",
- "paint*",
- "frame"
- ],
- "name": "Arts and Crafts Store"
- },
- "shop/curtain": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "drape*",
- "window"
- ],
- "tags": {
- "shop": "curtain"
- },
- "name": "Curtain Store"
- },
- "shop/dairy": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "milk",
- "egg",
- "cheese"
- ],
- "tags": {
- "shop": "dairy"
- },
- "name": "Dairy Store"
- },
- "shop/deli": {
- "icon": "maki-restaurant",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "lunch",
- "meat",
- "sandwich"
- ],
- "tags": {
- "shop": "deli"
- },
- "name": "Deli"
- },
- "shop/department_store": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "department_store"
- },
- "name": "Department Store"
- },
- "shop/doityourself": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "doityourself"
- },
- "name": "DIY Store"
- },
- "shop/dry_cleaning": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "dry_cleaning"
- },
- "name": "Dry Cleaner"
- },
- "shop/e-cigarette": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "e-cigarette"
- },
- "terms": [
- "electronic",
- "vapor"
- ],
- "name": "E-Cigarette Shop"
- },
- "shop/electronics": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "appliance",
- "audio",
- "blueray",
- "camera",
- "computer",
- "dvd",
- "home theater",
- "radio",
- "speaker",
- "tv",
- "video"
- ],
- "tags": {
- "shop": "electronics"
- },
- "name": "Electronics Store"
- },
- "shop/erotic": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "sex",
- "porn"
- ],
- "tags": {
- "shop": "erotic"
- },
- "name": "Erotic Store"
- },
- "shop/fabric": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "sew"
- ],
- "tags": {
- "shop": "fabric"
- },
- "name": "Fabric Store"
- },
- "shop/farm": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "farm shop",
- "farm stand"
- ],
- "tags": {
- "shop": "farm"
- },
- "name": "Produce Stand"
- },
- "shop/fashion": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "fashion"
- },
- "name": "Fashion Store"
- },
- "shop/florist": {
- "icon": "maki-florist",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "flower"
- ],
- "tags": {
- "shop": "florist"
- },
- "name": "Florist"
- },
- "shop/frame": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "frame"
- },
- "terms": [
- "art*",
- "paint*",
- "photo*",
- "frame"
- ],
- "name": "Framing Shop"
- },
- "shop/funeral_directors": {
- "icon": "maki-cemetery",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "religion",
- "denomination"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "undertaker",
- "memorial home"
- ],
- "tags": {
- "shop": "funeral_directors"
- },
- "name": "Funeral Home"
- },
- "shop/furniture": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "chair",
- "sofa",
- "table"
- ],
- "tags": {
- "shop": "furniture"
- },
- "name": "Furniture Store"
- },
- "shop/garden_centre": {
- "icon": "maki-garden-center",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "landscape",
- "mulch",
- "shrub",
- "tree"
- ],
- "tags": {
- "shop": "garden_centre"
- },
- "name": "Garden Center"
- },
- "shop/gas": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "cng",
- "lpg",
- "natural gas",
- "propane",
- "refill",
- "tank"
- ],
- "tags": {
- "shop": "gas"
- },
- "name": "Bottled Gas Shop"
- },
- "shop/gift": {
- "icon": "maki-gift",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "souvenir"
- ],
- "tags": {
- "shop": "gift"
- },
- "name": "Gift Shop"
- },
- "shop/greengrocer": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "fruit",
- "vegetable"
- ],
- "tags": {
- "shop": "greengrocer"
- },
- "name": "Greengrocer"
- },
- "shop/hairdresser": {
- "icon": "maki-hairdresser",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "barber"
- ],
- "tags": {
- "shop": "hairdresser"
- },
- "name": "Hairdresser"
- },
- "shop/hardware": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "hardware"
- },
- "name": "Hardware Store"
- },
- "shop/health_food": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "wholefood",
- "vitamins",
- "vegetarian",
- "vegan"
- ],
- "tags": {
- "shop": "health_food"
- },
- "name": "Health Food Shop"
- },
- "shop/hearing_aids": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "hearing_aids"
- },
- "name": "Hearing Aids Store"
- },
- "shop/herbalist": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "herbalist"
- },
- "name": "Herbalist"
- },
- "shop/hifi": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "stereo",
- "video"
- ],
- "tags": {
- "shop": "hifi"
- },
- "name": "Hifi Store"
- },
- "shop/houseware": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "home",
- "household"
- ],
- "tags": {
- "shop": "houseware"
- },
- "name": "Houseware Store"
- },
- "shop/interior_decoration": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "interior_decoration"
- },
- "name": "Interior Decoration Store"
- },
- "shop/jewelry": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "diamond",
- "gem",
- "ring"
- ],
- "tags": {
- "shop": "jewelry"
- },
- "name": "Jeweler"
- },
- "shop/kiosk": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "kiosk"
- },
- "name": "Kiosk"
- },
- "shop/kitchen": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "kitchen"
- },
- "name": "Kitchen Design Store"
- },
- "shop/laundry": {
- "icon": "maki-laundry",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "laundry"
- },
- "name": "Laundry"
- },
- "shop/leather": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "leather"
- },
- "name": "Leather Store"
- },
- "shop/locksmith": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "key",
- "lockpick"
- ],
- "tags": {
- "shop": "locksmith"
- },
- "name": "Locksmith"
- },
- "shop/lottery": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "lottery"
- },
- "name": "Lottery Shop"
- },
- "shop/mall": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "shopping"
- ],
- "tags": {
- "shop": "mall"
- },
- "name": "Mall"
- },
- "shop/massage": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "massage"
- },
- "name": "Massage Shop"
- },
- "shop/medical_supply": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "medical_supply"
- },
- "name": "Medical Supply Store"
- },
- "shop/mobile_phone": {
- "icon": "maki-mobile-phone",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "mobile_phone"
- },
- "name": "Mobile Phone Store"
- },
- "shop/money_lender": {
- "icon": "maki-bank",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "currency_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "money_lender"
- },
- "name": "Money Lender"
- },
- "shop/motorcycle_repair": {
- "icon": "fas-motorcycle",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "auto",
- "bike",
- "garage",
- "motorcycle",
- "repair",
- "service"
- ],
- "tags": {
- "shop": "motorcycle_repair"
- },
- "name": "Motorcycle Repair Shop"
- },
- "shop/motorcycle": {
- "icon": "fas-motorcycle",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "bike"
- ],
- "tags": {
- "shop": "motorcycle"
- },
- "name": "Motorcycle Dealership"
- },
- "shop/music": {
- "icon": "maki-music",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "CD",
- "vinyl"
- ],
- "tags": {
- "shop": "music"
- },
- "name": "Music Store"
- },
- "shop/musical_instrument": {
- "icon": "maki-music",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "guitar"
- ],
- "tags": {
- "shop": "musical_instrument"
- },
- "name": "Musical Instrument Store"
- },
- "shop/newsagent": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "newsagent"
- },
- "name": "Newspaper/Magazine Shop"
- },
- "shop/nutrition_supplements": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "nutrition_supplements"
- },
- "name": "Nutrition Supplements Store"
- },
- "shop/optician": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "eye",
- "glasses"
- ],
- "tags": {
- "shop": "optician"
- },
- "name": "Optician"
- },
- "shop/organic": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "supermarket",
- "organic": "only"
- },
- "name": "Organic Goods Store"
- },
- "shop/outdoor": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "camping",
- "climbing",
- "hiking"
- ],
- "tags": {
- "shop": "outdoor"
- },
- "name": "Outdoors Store"
- },
- "shop/paint": {
- "icon": "maki-water",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "paint"
- },
- "name": "Paint Store"
- },
- "shop/pastry": {
- "icon": "maki-bakery",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "pastry"
- },
- "terms": [
- "patisserie",
- "cake shop",
- "cakery"
- ],
- "name": "Pastry Shop"
- },
- "shop/pawnbroker": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "pawnbroker"
- },
- "name": "Pawn Shop"
- },
- "shop/perfumery": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "perfumery"
- },
- "name": "Perfume Store"
- },
- "shop/pet_grooming": {
- "icon": "maki-dog-park",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "dog"
- ],
- "tags": {
- "shop": "pet_grooming"
- },
- "name": "Pet Grooming Store"
- },
- "shop/pet": {
- "icon": "maki-dog-park",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "animal",
- "cat",
- "dog",
- "fish",
- "kitten",
- "puppy",
- "reptile"
- ],
- "tags": {
- "shop": "pet"
- },
- "name": "Pet Store"
- },
- "shop/photo": {
- "icon": "maki-attraction",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "camera",
- "film"
- ],
- "tags": {
- "shop": "photo"
- },
- "name": "Photography Store"
- },
- "shop/pyrotechnics": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "pyrotechnics"
- },
- "name": "Fireworks Store"
- },
- "shop/radiotechnics": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "radiotechnics"
- },
- "name": "Radio/Electronic Component Store"
- },
- "shop/religion": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "religion",
- "denomination",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "religion"
- },
- "name": "Religious Store"
- },
- "shop/scuba_diving": {
- "icon": "maki-swimming",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "scuba_diving"
- },
- "name": "Scuba Diving Shop"
- },
- "shop/seafood": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "fishmonger"
- ],
- "tags": {
- "shop": "seafood"
- },
- "name": "Seafood Shop"
- },
- "shop/second_hand": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "second_hand",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "secondhand",
- "second hand",
- "resale",
- "thrift",
- "used"
- ],
- "tags": {
- "shop": "second_hand"
- },
- "name": "Consignment/Thrift Store"
- },
- "shop/shoes": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "shoes"
- },
- "name": "Shoe Store"
- },
- "shop/sports": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "sports"
- },
- "name": "Sporting Goods Store"
- },
- "shop/stationery": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "card",
- "paper"
- ],
- "tags": {
- "shop": "stationery"
- },
- "name": "Stationery Store"
- },
- "shop/storage_rental": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "storage_rental"
- },
- "name": "Storage Rental"
- },
- "shop/supermarket": {
- "icon": "maki-grocery",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "grocery",
- "store",
- "shop"
- ],
- "tags": {
- "shop": "supermarket"
- },
- "name": "Supermarket"
- },
- "shop/tailor": {
- "icon": "maki-clothing-store",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "clothes",
- "suit"
- ],
- "tags": {
- "shop": "tailor"
- },
- "name": "Tailor"
- },
- "shop/tattoo": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "tattoo"
- },
- "name": "Tattoo Parlor"
- },
- "shop/tea": {
- "icon": "maki-teahouse",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "tea"
- },
- "name": "Tea Store"
- },
- "shop/ticket": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "ticket"
- },
- "name": "Ticket Seller"
- },
- "shop/tiles": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "tiles"
- },
- "name": "Tile Shop"
- },
- "shop/tobacco": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "tobacco"
- },
- "name": "Tobacco Shop"
- },
- "shop/toys": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "toys"
- },
- "name": "Toy Store"
- },
- "shop/trade": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "trade",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "trade"
- },
- "name": "Trade Shop"
- },
- "shop/travel_agency": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "travel_agency"
- },
- "name": "Travel Agency"
- },
- "shop/tyres": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "tyres"
- },
- "name": "Tire Store"
- },
- "shop/vacuum_cleaner": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "vacuum_cleaner"
- },
- "name": "Vacuum Cleaner Store"
- },
- "shop/variety_store": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "variety_store"
- },
- "name": "Variety Store"
- },
- "shop/video_games": {
- "icon": "maki-gaming",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "video_games"
- },
- "name": "Video Game Store"
- },
- "shop/video": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "DVD"
- ],
- "tags": {
- "shop": "video"
- },
- "name": "Video Store"
- },
- "shop/watches": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "watches"
- },
- "name": "Watches Shop"
- },
- "shop/water_sports": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "water_sports"
- },
- "name": "Watersport/Swim Shop"
- },
- "shop/weapons": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "ammo",
- "gun",
- "knife",
- "knives"
- ],
- "tags": {
- "shop": "weapons"
- },
- "name": "Weapon Shop"
- },
- "shop/wholesale": {
- "icon": "maki-warehouse",
- "fields": [
- "name",
- "operator",
- "wholesale",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "warehouse club",
- "cash and carry"
- ],
- "tags": {
- "shop": "wholesale"
- },
- "name": "Wholesale Store"
- },
- "shop/window_blind": {
- "icon": "temaki-window",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "window_blind"
- },
- "name": "Window Blind Store"
- },
- "shop/wine": {
- "icon": "maki-alcohol-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "wine"
- },
- "name": "Wine Shop"
- },
- "tourism": {
- "icon": "maki-attraction",
- "fields": [
- "name",
- "tourism"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "tourism": "*"
- },
- "name": "Tourism"
- },
- "tourism/alpine_hut": {
- "icon": "maki-lodging",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "climbing hut"
- ],
- "tags": {
- "tourism": "alpine_hut"
- },
- "name": "Alpine Hut"
- },
- "tourism/apartment": {
- "icon": "maki-lodging",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "smoking",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "tourism": "apartment"
- },
- "name": "Guest Apartment / Condo"
- },
- "tourism/aquarium": {
- "icon": "maki-aquarium",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "fish",
- "sea",
- "water"
- ],
- "tags": {
- "tourism": "aquarium"
- },
- "name": "Aquarium"
- },
- "tourism/artwork": {
- "icon": "maki-art-gallery",
- "fields": [
- "name",
- "artwork_type",
- "artist"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "tourism": "artwork"
- },
- "terms": [
- "mural",
- "sculpture",
- "statue"
- ],
- "name": "Artwork"
- },
- "tourism/attraction": {
- "icon": "maki-star",
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "tourism": "attraction"
- },
- "name": "Tourist Attraction"
- },
- "tourism/camp_site": {
- "icon": "maki-campsite",
- "fields": [
- "name",
- "operator",
- "address",
- "capacity",
- "fee",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "tent",
- "rv"
- ],
- "tags": {
- "tourism": "camp_site"
- },
- "name": "Campground"
- },
- "tourism/caravan_site": {
- "icon": "maki-bus",
- "fields": [
- "name",
- "operator",
- "address",
- "capacity",
- "fee",
- "sanitary_dump_station",
- "power_supply",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "Motor Home",
- "Camper"
- ],
- "tags": {
- "tourism": "caravan_site"
- },
- "name": "RV Park"
- },
- "tourism/chalet": {
- "icon": "maki-lodging",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "smoking",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "holiday",
- "holiday cottage",
- "holiday home",
- "vacation",
- "vacation home"
- ],
- "tags": {
- "tourism": "chalet"
- },
- "name": "Holiday Cottage"
- },
- "tourism/gallery": {
- "icon": "maki-art-gallery",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "art*",
- "exhibit*",
- "paint*",
- "photo*",
- "sculpt*"
- ],
- "tags": {
- "tourism": "gallery"
- },
- "name": "Art Gallery"
- },
- "tourism/guest_house": {
- "icon": "maki-lodging",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "smoking",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "tourism": "guest_house"
- },
- "terms": [
- "B&B",
- "Bed and Breakfast"
- ],
- "name": "Guest House"
- },
- "tourism/hostel": {
- "icon": "maki-lodging",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "smoking",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "tourism": "hostel"
- },
- "name": "Hostel"
- },
- "tourism/hotel": {
- "icon": "maki-lodging",
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "tourism": "hotel"
- },
- "name": "Hotel"
- },
- "tourism/information": {
- "icon": "maki-information",
- "fields": [
- "information",
- "operator",
- "address",
- "building_area"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "tourism": "information"
- },
- "name": "Information"
- },
- "tourism/information/board": {
- "icon": "maki-information",
- "fields": [
- "name",
- "operator",
- "board_type",
- "direction"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "tourism": "information",
- "information": "board"
- },
- "reference": {
- "key": "information",
- "value": "board"
- },
- "name": "Information Board"
- },
- "tourism/information/guidepost": {
- "icon": "maki-information",
- "fields": [
- "name",
- "elevation",
- "operator",
- "ref"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "terms": [
- "signpost"
- ],
- "tags": {
- "tourism": "information",
- "information": "guidepost"
- },
- "reference": {
- "key": "information",
- "value": "guidepost"
- },
- "name": "Guidepost"
- },
- "tourism/information/map": {
- "icon": "maki-information",
- "fields": [
- "operator",
- "map_type",
- "map_size",
- "direction"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "tourism": "information",
- "information": "map"
- },
- "reference": {
- "key": "information",
- "value": "map"
- },
- "name": "Map"
- },
- "tourism/information/office": {
- "icon": "maki-information",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "tourism": "information",
- "information": "office"
- },
- "reference": {
- "key": "information",
- "value": "office"
- },
- "name": "Tourist Information Office"
- },
- "tourism/motel": {
- "icon": "maki-lodging",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "smoking",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "tourism": "motel"
- },
- "name": "Motel"
- },
- "tourism/museum": {
- "icon": "maki-museum",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "art*",
- "exhibit*",
- "gallery",
- "foundation",
- "hall",
- "institution",
- "paint*",
- "photo*",
- "sculpt*"
- ],
- "tags": {
- "tourism": "museum"
- },
- "name": "Museum"
- },
- "tourism/picnic_site": {
- "icon": "maki-picnic-site",
- "fields": [
- "name",
- "operator",
- "address",
- "smoking"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "camp"
- ],
- "tags": {
- "tourism": "picnic_site"
- },
- "name": "Picnic Site"
- },
- "tourism/theme_park": {
- "icon": "maki-amusement-park",
- "fields": [
- "name",
- "operator",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "tourism": "theme_park"
- },
- "name": "Theme Park"
- },
- "tourism/trail_riding_station": {
- "icon": "maki-horse-riding",
- "fields": [
- "name",
- "horse_stables",
- "horse_riding",
- "horse_dressage",
- "address",
- "phone",
- "website",
- "description"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "tourism": "trail_riding_station"
- },
- "name": "Trail Riding Station",
- "matchScore": 2
- },
- "tourism/viewpoint": {
- "icon": "temaki-binoculars",
- "geometry": [
- "point",
- "vertex"
- ],
- "fields": [
- "direction"
- ],
- "tags": {
- "tourism": "viewpoint"
- },
- "name": "Viewpoint"
- },
- "tourism/wilderness_hut": {
- "icon": "maki-lodging",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "wilderness hut",
- "backcountry hut",
- "bothy"
- ],
- "tags": {
- "tourism": "wilderness_hut"
- },
- "name": "Wilderness Hut"
- },
- "tourism/zoo": {
- "icon": "maki-zoo",
- "fields": [
- "name",
- "operator",
- "address",
- "opening_hours"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "animal"
- ],
- "tags": {
- "tourism": "zoo"
- },
- "name": "Zoo"
- },
- "traffic_calming": {
- "icon": "temaki-diamond",
- "fields": [
- "traffic_calming",
- "direction_vertex"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "tags": {
- "traffic_calming": "*"
- },
- "terms": [
- "bump",
- "hump",
- "slow",
- "speed"
- ],
- "name": "Traffic Calming"
- },
- "traffic_calming/bump": {
- "icon": "temaki-diamond",
- "fields": [
- "surface",
- "direction_vertex"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "terms": [
- "hump",
- "speed",
- "slow"
- ],
- "tags": {
- "traffic_calming": "bump"
- },
- "name": "Speed Bump"
- },
- "traffic_calming/chicane": {
- "icon": "temaki-diamond",
- "fields": [
- "direction_vertex"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "terms": [
- "driveway link",
- "speed",
- "slow"
- ],
- "tags": {
- "traffic_calming": "chicane"
- },
- "name": "Traffic Chicane"
- },
- "traffic_calming/choker": {
- "icon": "temaki-diamond",
- "fields": [
- "direction_vertex"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "terms": [
- "speed",
- "slow"
- ],
- "tags": {
- "traffic_calming": "choker"
- },
- "name": "Traffic Choker"
- },
- "traffic_calming/cushion": {
- "icon": "temaki-diamond",
- "fields": [
- "surface",
- "direction_vertex"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "terms": [
- "bump",
- "hump",
- "speed",
- "slow"
- ],
- "tags": {
- "traffic_calming": "cushion"
- },
- "name": "Speed Cushion"
- },
- "traffic_calming/dip": {
- "icon": "temaki-diamond",
- "fields": [
- "surface",
- "direction_vertex"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "terms": [
- "speed",
- "slow"
- ],
- "tags": {
- "traffic_calming": "dip"
- },
- "name": "Dip"
- },
- "traffic_calming/hump": {
- "icon": "temaki-diamond",
- "fields": [
- "surface",
- "direction_vertex"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "terms": [
- "bump",
- "speed",
- "slow"
- ],
- "tags": {
- "traffic_calming": "hump"
- },
- "name": "Speed Hump"
- },
- "traffic_calming/island": {
- "icon": "temaki-diamond",
- "geometry": [
- "vertex"
- ],
- "terms": [
- "circle",
- "roundabout",
- "slow"
- ],
- "tags": {
- "traffic_calming": "island"
- },
- "name": "Traffic Island"
- },
- "traffic_calming/rumble_strip": {
- "icon": "temaki-diamond",
- "fields": [
- "direction_vertex"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "terms": [
- "audible lines",
- "sleeper lines",
- "growlers"
- ],
- "tags": {
- "traffic_calming": "rumble_strip"
- },
- "name": "Rumble Strip"
- },
- "traffic_calming/table": {
- "icon": "temaki-diamond",
- "fields": [
- "surface"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "traffic_calming": "table"
- },
- "terms": [
- "flat top",
- "hump",
- "speed",
- "slow"
- ],
- "name": "Speed Table"
- },
- "type/multipolygon": {
- "icon": "iD-multipolygon",
- "geometry": [
- "area",
- "relation"
- ],
- "tags": {
- "type": "multipolygon"
- },
- "removeTags": {},
- "name": "Multipolygon",
- "searchable": false,
- "matchScore": 0.1
- },
- "type/boundary": {
- "icon": "iD-boundary",
- "fields": [
- "name",
- "boundary"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "boundary"
- },
- "name": "Boundary"
- },
- "type/boundary/administrative": {
- "icon": "iD-boundary",
- "fields": [
- "name",
- "admin_level"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "boundary",
- "boundary": "administrative"
- },
- "reference": {
- "key": "boundary",
- "value": "administrative"
- },
- "name": "Administrative Boundary"
- },
- "type/restriction": {
- "icon": "iD-restriction",
- "fields": [
- "name",
- "restriction",
- "except"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction"
- },
- "name": "Restriction"
- },
- "type/restriction/no_left_turn": {
- "icon": "iD-restriction-no-left-turn",
- "fields": [
- "except"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "no_left_turn"
- },
- "name": "No Left Turn"
- },
- "type/restriction/no_right_turn": {
- "icon": "iD-restriction-no-right-turn",
- "fields": [
- "except"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "no_right_turn"
- },
- "name": "No Right Turn"
- },
- "type/restriction/no_straight_on": {
- "icon": "iD-restriction-no-straight-on",
- "fields": [
- "except"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "no_straight_on"
- },
- "name": "No Straight On"
- },
- "type/restriction/no_u_turn": {
- "icon": "iD-restriction-no-u-turn",
- "fields": [
- "except"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "no_u_turn"
- },
- "name": "No U-turn"
- },
- "type/restriction/only_left_turn": {
- "icon": "iD-restriction-only-left-turn",
- "fields": [
- "except"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "only_left_turn"
- },
- "name": "Only Left Turn"
- },
- "type/restriction/only_right_turn": {
- "icon": "iD-restriction-only-right-turn",
- "fields": [
- "except"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "only_right_turn"
- },
- "name": "Only Right Turn"
- },
- "type/restriction/only_straight_on": {
- "icon": "iD-restriction-only-straight-on",
- "fields": [
- "except"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "only_straight_on"
- },
- "name": "Only Straight On"
- },
- "type/restriction/only_u_turn": {
- "icon": "iD-restriction-only-u-turn",
- "fields": [
- "except"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "only_u_turn"
- },
- "name": "Only U-turn"
- },
- "type/route_master": {
- "icon": "iD-route-master",
- "fields": [
- "name",
- "route_master",
- "ref",
- "operator",
- "network"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route_master"
- },
- "name": "Route Master"
- },
- "type/route": {
- "icon": "iD-route",
- "fields": [
- "name",
- "route",
- "ref_route",
- "operator",
- "network"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route"
- },
- "name": "Route"
- },
- "type/route/bicycle": {
- "icon": "iD-route-bicycle",
- "fields": [
- "name",
- "ref_route",
- "network_bicycle",
- "cycle_network"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "bicycle"
- },
- "name": "Cycle Route"
- },
- "type/route/bus": {
- "icon": "iD-route-bus",
- "fields": [
- "name",
- "ref_route",
- "operator",
- "network"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "bus"
- },
- "name": "Bus Route"
- },
- "type/route/detour": {
- "icon": "iD-route-detour",
- "fields": [
- "name",
- "ref_route"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "detour"
- },
- "name": "Detour Route"
- },
- "type/route/ferry": {
- "icon": "iD-route-ferry",
- "fields": [
- "name",
- "ref_route",
- "operator",
- "network"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "ferry"
- },
- "name": "Ferry Route"
- },
- "type/route/foot": {
- "icon": "iD-route-foot",
- "fields": [
- "name",
- "ref_route",
- "operator",
- "network_foot"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "foot"
- },
- "name": "Foot Route"
- },
- "type/route/hiking": {
- "icon": "iD-route-foot",
- "fields": [
- "name",
- "ref_route",
- "operator",
- "network_foot",
- "description",
- "distance"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "hiking"
- },
- "name": "Hiking Route"
- },
- "type/route/horse": {
- "icon": "iD-route-horse",
- "fields": [
- "name",
- "ref_route",
- "operator",
- "network_horse",
- "description",
- "distance"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "horse"
- },
- "name": "Riding Route"
- },
- "type/route/light_rail": {
- "icon": "iD-route-light-rail",
- "fields": [
- "name",
- "ref_route",
- "operator",
- "network"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "light_rail"
- },
- "name": "Light Rail Route"
- },
- "type/route/pipeline": {
- "icon": "iD-route-pipeline",
- "fields": [
- "name",
- "ref_route",
- "operator"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "pipeline"
- },
- "name": "Pipeline Route"
- },
- "type/route/piste": {
- "icon": "iD-route-piste",
- "fields": [
- "name",
- "ref_route",
- "operator",
- "network"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "piste"
- },
- "name": "Piste/Ski Route"
- },
- "type/route/power": {
- "icon": "iD-route-power",
- "fields": [
- "name",
- "ref_route",
- "operator"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "power"
- },
- "name": "Power Route"
- },
- "type/route/road": {
- "icon": "iD-route-road",
- "fields": [
- "name",
- "ref_route",
- "network_road"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "road"
- },
- "name": "Road Route"
- },
- "type/route/subway": {
- "icon": "iD-route-subway",
- "fields": [
- "name",
- "ref_route",
- "operator",
- "network"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "subway"
- },
- "name": "Subway Route"
- },
- "type/route/train": {
- "icon": "iD-route-train",
- "fields": [
- "name",
- "ref_route",
- "operator",
- "network"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "train"
- },
- "name": "Train Route"
- },
- "type/route/tram": {
- "icon": "iD-route-tram",
- "fields": [
- "name",
- "ref_route",
- "operator",
- "network"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "tram"
- },
- "name": "Tram Route"
- },
- "type/site": {
- "icon": "iD-relation",
- "fields": [
- "name",
- "site"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "site"
- },
- "name": "Site"
- },
- "type/waterway": {
- "icon": "iD-route-water",
- "fields": [
- "name",
- "waterway",
- "ref"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "waterway"
- },
- "name": "Waterway"
- },
- "vertex": {
- "fields": [
- "name"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {},
- "name": "Other",
- "matchScore": 0.1
- },
- "waterway/boatyard": {
- "icon": "maki-harbor",
- "fields": [
- "name",
- "operator"
- ],
- "geometry": [
- "area",
- "vertex",
- "point"
- ],
- "tags": {
- "waterway": "boatyard"
- },
- "name": "Boatyard"
- },
- "waterway/canal": {
- "icon": "iD-waterway-canal",
- "fields": [
- "name",
- "width",
- "intermittent"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "waterway": "canal"
- },
- "name": "Canal"
- },
- "waterway/dam": {
- "icon": "maki-dam",
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "waterway": "dam"
- },
- "name": "Dam"
- },
- "waterway/ditch": {
- "icon": "iD-waterway-ditch",
- "fields": [
- "structure_waterway",
- "intermittent"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "waterway": "ditch"
- },
- "name": "Ditch"
- },
- "waterway/dock": {
- "icon": "maki-harbor",
- "fields": [
- "name",
- "dock",
- "operator"
- ],
- "geometry": [
- "area",
- "vertex",
- "point"
- ],
- "terms": [
- "boat",
- "ship",
- "vessel",
- "marine"
- ],
- "tags": {
- "waterway": "dock"
- },
- "name": "Wet Dock / Dry Dock"
- },
- "waterway/drain": {
- "icon": "iD-waterway-ditch",
- "fields": [
- "structure_waterway",
- "intermittent"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "waterway": "drain"
- },
- "name": "Drain"
- },
- "waterway/fuel": {
- "icon": "maki-fuel",
- "fields": [
- "name",
- "operator",
- "address",
- "opening_hours",
- "fuel_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "terms": [
- "petrol",
- "gas",
- "diesel",
- "boat"
- ],
- "tags": {
- "waterway": "fuel"
- },
- "name": "Marine Fuel Station"
- },
- "waterway/river": {
- "icon": "iD-waterway-river",
- "fields": [
- "name",
- "structure_waterway",
- "width",
- "intermittent"
- ],
- "geometry": [
- "line"
- ],
- "terms": [
- "beck",
- "branch",
- "brook",
- "course",
- "creek",
- "estuary",
- "rill",
- "rivulet",
- "run",
- "runnel",
- "stream",
- "tributary",
- "watercourse"
- ],
- "tags": {
- "waterway": "river"
- },
- "name": "River"
- },
- "waterway/riverbank": {
- "icon": "maki-water",
- "geometry": [
- "area"
- ],
- "tags": {
- "waterway": "riverbank"
- },
- "name": "Riverbank"
- },
- "waterway/sanitary_dump_station": {
- "icon": "temaki-storage_tank",
- "fields": [
- "name",
- "operator",
- "access_simple",
- "fee",
- "water_point"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "terms": [
- "Boat",
- "Watercraft",
- "Sanitary",
- "Dump Station",
- "Pumpout",
- "Pump out",
- "Elsan",
- "CDP",
- "CTDP",
- "Chemical Toilet"
- ],
- "tags": {
- "waterway": "sanitary_dump_station"
- },
- "name": "Marine Toilet Disposal"
- },
- "waterway/stream_intermittent": {
- "icon": "iD-waterway-stream",
- "fields": [
- "name",
- "structure_waterway",
- "width",
- "intermittent"
- ],
- "geometry": [
- "line"
- ],
- "terms": [
- "arroyo",
- "beck",
- "branch",
- "brook",
- "burn",
- "course",
- "creek",
- "drift",
- "flood",
- "flow",
- "gully",
- "run",
- "runnel",
- "rush",
- "spate",
- "spritz",
- "tributary",
- "wadi",
- "wash",
- "watercourse"
- ],
- "tags": {
- "waterway": "stream",
- "intermittent": "yes"
- },
- "reference": {
- "key": "waterway",
- "value": "stream"
- },
- "name": "Intermittent Stream"
- },
- "waterway/stream": {
- "icon": "iD-waterway-stream",
- "fields": [
- "name",
- "structure_waterway",
- "width",
- "intermittent"
- ],
- "geometry": [
- "line"
- ],
- "terms": [
- "beck",
- "branch",
- "brook",
- "burn",
- "course",
- "creek",
- "current",
- "drift",
- "flood",
- "flow",
- "freshet",
- "race",
- "rill",
- "rindle",
- "rivulet",
- "run",
- "runnel",
- "rush",
- "spate",
- "spritz",
- "surge",
- "tide",
- "torrent",
- "tributary",
- "watercourse"
- ],
- "tags": {
- "waterway": "stream"
- },
- "name": "Stream"
- },
- "waterway/water_point": {
- "icon": "maki-drinking-water",
- "geometry": [
- "area",
- "vertex",
- "point"
- ],
- "tags": {
- "waterway": "water_point"
- },
- "name": "Marine Drinking Water"
- },
- "waterway/waterfall": {
- "icon": "maki-water",
- "fields": [
- "name",
- "height",
- "width",
- "intermittent"
- ],
- "geometry": [
- "vertex"
- ],
- "terms": [
- "fall"
- ],
- "tags": {
- "waterway": "waterfall"
- },
- "name": "Waterfall"
- },
- "waterway/weir": {
- "icon": "maki-dam",
- "geometry": [
- "vertex",
- "line"
- ],
- "tags": {
- "waterway": "weir"
- },
- "name": "Weir"
- },
- "amenity/arts_centre/Świetlica wiejska": {
- "tags": {
- "name": "Świetlica wiejska",
- "amenity": "arts_centre"
- },
- "name": "Świetlica wiejska",
- "icon": "maki-theatre",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/arts_centre/Дом культуры": {
- "tags": {
- "name": "Дом культуры",
- "amenity": "arts_centre"
- },
- "name": "Дом культуры",
- "icon": "maki-theatre",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bank/ABANCA": {
- "tags": {
- "name": "ABANCA",
- "amenity": "bank"
- },
- "name": "ABANCA",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/ABN AMRO": {
- "tags": {
- "name": "ABN AMRO",
- "amenity": "bank"
- },
- "name": "ABN AMRO",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/ABSA": {
- "tags": {
- "name": "ABSA",
- "amenity": "bank"
- },
- "name": "ABSA",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/AIB": {
- "tags": {
- "name": "AIB",
- "amenity": "bank"
- },
- "name": "AIB",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/ANZ": {
- "tags": {
- "name": "ANZ",
- "amenity": "bank"
- },
- "name": "ANZ",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/ASB Bank": {
- "tags": {
- "name": "ASB Bank",
- "amenity": "bank"
- },
- "name": "ASB Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/ATB Financial": {
- "tags": {
- "name": "ATB Financial",
- "amenity": "bank"
- },
- "name": "ATB Financial",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/AXA": {
- "tags": {
- "name": "AXA",
- "amenity": "bank"
- },
- "name": "AXA",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Agribank": {
- "tags": {
- "name": "Agribank",
- "amenity": "bank"
- },
- "name": "Agribank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Akbank": {
- "tags": {
- "name": "Akbank",
- "amenity": "bank"
- },
- "name": "Akbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Alior Bank": {
- "tags": {
- "name": "Alior Bank",
- "amenity": "bank"
- },
- "name": "Alior Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Allahabad Bank": {
- "tags": {
- "name": "Allahabad Bank",
- "amenity": "bank"
- },
- "name": "Allahabad Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Allied Bank": {
- "tags": {
- "name": "Allied Bank",
- "amenity": "bank"
- },
- "name": "Allied Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Alpha Bank": {
- "tags": {
- "name": "Alpha Bank",
- "amenity": "bank"
- },
- "name": "Alpha Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Andhra Bank": {
- "tags": {
- "name": "Andhra Bank",
- "amenity": "bank"
- },
- "name": "Andhra Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Antonveneta": {
- "tags": {
- "name": "Antonveneta",
- "amenity": "bank"
- },
- "name": "Antonveneta",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Argenta": {
- "tags": {
- "name": "Argenta",
- "amenity": "bank"
- },
- "name": "Argenta",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Asia United Bank": {
- "tags": {
- "name": "Asia United Bank",
- "amenity": "bank"
- },
- "name": "Asia United Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Askari Bank": {
- "tags": {
- "name": "Askari Bank",
- "amenity": "bank"
- },
- "name": "Askari Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Associated Bank": {
- "tags": {
- "name": "Associated Bank",
- "amenity": "bank"
- },
- "name": "Associated Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Axis Bank": {
- "tags": {
- "name": "Axis Bank",
- "amenity": "bank"
- },
- "name": "Axis Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BAC": {
- "tags": {
- "name": "BAC",
- "amenity": "bank"
- },
- "name": "BAC",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BAWAG PSK": {
- "tags": {
- "name": "BAWAG PSK",
- "amenity": "bank"
- },
- "name": "BAWAG PSK",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BB&T": {
- "tags": {
- "name": "BB&T",
- "amenity": "bank"
- },
- "name": "BB&T",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BBBank": {
- "tags": {
- "name": "BBBank",
- "amenity": "bank"
- },
- "name": "BBBank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BBK": {
- "tags": {
- "name": "BBK",
- "amenity": "bank"
- },
- "name": "BBK",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BBVA": {
- "tags": {
- "name": "BBVA",
- "amenity": "bank"
- },
- "name": "BBVA",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BBVA Bancomer": {
- "tags": {
- "name": "BBVA Bancomer",
- "amenity": "bank"
- },
- "name": "BBVA Bancomer",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BBVA Compass": {
- "tags": {
- "name": "BBVA Compass",
- "amenity": "bank"
- },
- "name": "BBVA Compass",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BBVA Continental": {
- "tags": {
- "name": "BBVA Continental",
- "amenity": "bank"
- },
- "name": "BBVA Continental",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BBVA Francés": {
- "tags": {
- "name": "BBVA Francés",
- "amenity": "bank"
- },
- "name": "BBVA Francés",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BCA": {
- "tags": {
- "name": "BCA",
- "amenity": "bank"
- },
- "name": "BCA",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BCI": {
- "tags": {
- "name": "BCI",
- "amenity": "bank"
- },
- "name": "BCI",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BCP": {
- "tags": {
- "name": "BCP",
- "amenity": "bank"
- },
- "name": "BCP",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BCR": {
- "tags": {
- "name": "BCR",
- "amenity": "bank"
- },
- "name": "BCR",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BDO": {
- "tags": {
- "name": "BDO",
- "amenity": "bank"
- },
- "name": "BDO",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BGŻ BNP Paribas": {
- "tags": {
- "name": "BGŻ BNP Paribas",
- "amenity": "bank"
- },
- "name": "BGŻ BNP Paribas",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BMCE": {
- "tags": {
- "name": "BMCE",
- "amenity": "bank"
- },
- "name": "BMCE",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BMN": {
- "tags": {
- "name": "BMN",
- "amenity": "bank"
- },
- "name": "BMN",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BMO": {
- "tags": {
- "name": "BMO",
- "amenity": "bank"
- },
- "name": "BMO",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BMO Harris Bank": {
- "tags": {
- "name": "BMO Harris Bank",
- "amenity": "bank"
- },
- "name": "BMO Harris Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BNA": {
- "tags": {
- "name": "BNA",
- "amenity": "bank"
- },
- "name": "BNA",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BNI": {
- "tags": {
- "name": "BNI",
- "amenity": "bank"
- },
- "name": "BNI",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BNL": {
- "tags": {
- "name": "BNL",
- "amenity": "bank"
- },
- "name": "BNL",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BNP Paribas": {
- "tags": {
- "name": "BNP Paribas",
- "amenity": "bank"
- },
- "name": "BNP Paribas",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BNP Paribas Fortis": {
- "tags": {
- "name": "BNP Paribas Fortis",
- "amenity": "bank"
- },
- "name": "BNP Paribas Fortis",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BOC": {
- "tags": {
- "name": "BOC",
- "amenity": "bank"
- },
- "name": "BOC",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BPH": {
- "tags": {
- "name": "BPH",
- "amenity": "bank"
- },
- "name": "BPH",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BPI": {
- "tags": {
- "name": "BPI",
- "amenity": "bank"
- },
- "name": "BPI",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BPI Family Savings Bank": {
- "tags": {
- "name": "BPI Family Savings Bank",
- "amenity": "bank"
- },
- "name": "BPI Family Savings Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BRD": {
- "tags": {
- "name": "BRD",
- "amenity": "bank"
- },
- "name": "BRD",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BRED": {
- "tags": {
- "name": "BRED",
- "amenity": "bank"
- },
- "name": "BRED",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BRI": {
- "tags": {
- "name": "BRI",
- "amenity": "bank"
- },
- "name": "BRI",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BW-Bank": {
- "tags": {
- "name": "BW-Bank",
- "amenity": "bank"
- },
- "name": "BW-Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BZ WBK": {
- "tags": {
- "name": "BZ WBK",
- "amenity": "bank"
- },
- "name": "BZ WBK",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banamex": {
- "tags": {
- "name": "Banamex",
- "amenity": "bank"
- },
- "name": "Banamex",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banc Sabadell": {
- "tags": {
- "name": "Banc Sabadell",
- "amenity": "bank"
- },
- "name": "Banc Sabadell",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banca Intesa": {
- "tags": {
- "name": "Banca Intesa",
- "amenity": "bank"
- },
- "name": "Banca Intesa",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banca March": {
- "tags": {
- "name": "Banca March",
- "amenity": "bank"
- },
- "name": "Banca March",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banca Popolare di Milano": {
- "tags": {
- "name": "Banca Popolare di Milano",
- "amenity": "bank"
- },
- "name": "Banca Popolare di Milano",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banca Popolare di Novara": {
- "tags": {
- "name": "Banca Popolare di Novara",
- "amenity": "bank"
- },
- "name": "Banca Popolare di Novara",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banca Popolare di Sondrio": {
- "tags": {
- "name": "Banca Popolare di Sondrio",
- "amenity": "bank"
- },
- "name": "Banca Popolare di Sondrio",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banca Popolare di Verona": {
- "tags": {
- "name": "Banca Popolare di Verona",
- "amenity": "bank"
- },
- "name": "Banca Popolare di Verona",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banca Popolare di Vicenza": {
- "tags": {
- "name": "Banca Popolare di Vicenza",
- "amenity": "bank"
- },
- "name": "Banca Popolare di Vicenza",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banca Românească": {
- "tags": {
- "name": "Banca Românească",
- "amenity": "bank"
- },
- "name": "Banca Românească",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banca Sella": {
- "tags": {
- "name": "Banca Sella",
- "amenity": "bank"
- },
- "name": "Banca Sella",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banca Transilvania": {
- "tags": {
- "name": "Banca Transilvania",
- "amenity": "bank"
- },
- "name": "Banca Transilvania",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco Agrario": {
- "tags": {
- "name": "Banco Agrario",
- "amenity": "bank"
- },
- "name": "Banco Agrario",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco Azteca": {
- "tags": {
- "name": "Banco Azteca",
- "amenity": "bank"
- },
- "name": "Banco Azteca",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco BCI": {
- "tags": {
- "name": "Banco BCI",
- "amenity": "bank"
- },
- "name": "Banco BCI",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco Continental": {
- "tags": {
- "name": "Banco Continental",
- "amenity": "bank"
- },
- "name": "Banco Continental",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco Estado": {
- "tags": {
- "name": "Banco Estado",
- "amenity": "bank"
- },
- "name": "Banco Estado",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco Fassil": {
- "tags": {
- "name": "Banco Fassil",
- "amenity": "bank"
- },
- "name": "Banco Fassil",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco G&T Continental": {
- "tags": {
- "name": "Banco G&T Continental",
- "amenity": "bank"
- },
- "name": "Banco G&T Continental",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco General": {
- "tags": {
- "name": "Banco General",
- "amenity": "bank"
- },
- "name": "Banco General",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco Industrial": {
- "tags": {
- "name": "Banco Industrial",
- "amenity": "bank"
- },
- "name": "Banco Industrial",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco Internacional": {
- "tags": {
- "name": "Banco Internacional",
- "amenity": "bank"
- },
- "name": "Banco Internacional",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco Nacional": {
- "tags": {
- "name": "Banco Nacional",
- "amenity": "bank"
- },
- "name": "Banco Nacional",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco Nación": {
- "tags": {
- "name": "Banco Nación",
- "amenity": "bank"
- },
- "name": "Banco Nación",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco Pastor": {
- "tags": {
- "name": "Banco Pastor",
- "amenity": "bank"
- },
- "name": "Banco Pastor",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco Pichincha": {
- "tags": {
- "name": "Banco Pichincha",
- "amenity": "bank"
- },
- "name": "Banco Pichincha",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco Popular": {
- "tags": {
- "name": "Banco Popular",
- "amenity": "bank"
- },
- "name": "Banco Popular",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco Provincia": {
- "tags": {
- "name": "Banco Provincia",
- "amenity": "bank"
- },
- "name": "Banco Provincia",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco Sabadell": {
- "tags": {
- "name": "Banco Sabadell",
- "amenity": "bank"
- },
- "name": "Banco Sabadell",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco Santander": {
- "tags": {
- "name": "Banco Santander",
- "amenity": "bank"
- },
- "name": "Banco Santander",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco Sol": {
- "tags": {
- "name": "Banco Sol",
- "amenity": "bank"
- },
- "name": "Banco Sol",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco de Bogotá": {
- "tags": {
- "name": "Banco de Bogotá",
- "amenity": "bank"
- },
- "name": "Banco de Bogotá",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco de Chile": {
- "tags": {
- "name": "Banco de Chile",
- "amenity": "bank"
- },
- "name": "Banco de Chile",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco de Costa Rica": {
- "tags": {
- "name": "Banco de Costa Rica",
- "amenity": "bank"
- },
- "name": "Banco de Costa Rica",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco de Desarrollo Banrural": {
- "tags": {
- "name": "Banco de Desarrollo Banrural",
- "amenity": "bank"
- },
- "name": "Banco de Desarrollo Banrural",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco de Occidente": {
- "tags": {
- "name": "Banco de Occidente",
- "amenity": "bank"
- },
- "name": "Banco de Occidente",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco de Venezuela": {
- "tags": {
- "name": "Banco de Venezuela",
- "amenity": "bank"
- },
- "name": "Banco de Venezuela",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco de la Nación": {
- "tags": {
- "name": "Banco de la Nación",
- "amenity": "bank"
- },
- "name": "Banco de la Nación",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco de la Nación Argentina": {
- "tags": {
- "name": "Banco de la Nación Argentina",
- "amenity": "bank"
- },
- "name": "Banco de la Nación Argentina",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco di Napoli": {
- "tags": {
- "name": "Banco di Napoli",
- "amenity": "bank"
- },
- "name": "Banco di Napoli",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco di Sardegna": {
- "tags": {
- "name": "Banco di Sardegna",
- "amenity": "bank"
- },
- "name": "Banco di Sardegna",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco do Brasil": {
- "tags": {
- "name": "Banco do Brasil",
- "amenity": "bank"
- },
- "name": "Banco do Brasil",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banco do Nordeste": {
- "tags": {
- "name": "Banco do Nordeste",
- "amenity": "bank"
- },
- "name": "Banco do Nordeste",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/BancoEstado": {
- "tags": {
- "name": "BancoEstado",
- "amenity": "bank"
- },
- "name": "BancoEstado",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bancolombia": {
- "tags": {
- "name": "Bancolombia",
- "amenity": "bank"
- },
- "name": "Bancolombia",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bancomer": {
- "tags": {
- "name": "Bancomer",
- "amenity": "bank"
- },
- "name": "Bancomer",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bancpost": {
- "tags": {
- "name": "Bancpost",
- "amenity": "bank"
- },
- "name": "Bancpost",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banesco": {
- "tags": {
- "name": "Banesco",
- "amenity": "bank"
- },
- "name": "Banesco",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bangkok Bank": {
- "tags": {
- "name": "Bangkok Bank",
- "amenity": "bank"
- },
- "name": "Bangkok Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank Al Habib": {
- "tags": {
- "name": "Bank Al Habib",
- "amenity": "bank"
- },
- "name": "Bank Al Habib",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank Alfalah": {
- "tags": {
- "name": "Bank Alfalah",
- "amenity": "bank"
- },
- "name": "Bank Alfalah",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank Austria": {
- "tags": {
- "name": "Bank Austria",
- "amenity": "bank"
- },
- "name": "Bank Austria",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank BCA": {
- "tags": {
- "name": "Bank BCA",
- "amenity": "bank"
- },
- "name": "Bank BCA",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank BNI": {
- "tags": {
- "name": "Bank BNI",
- "amenity": "bank"
- },
- "name": "Bank BNI",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank BPH": {
- "tags": {
- "name": "Bank BPH",
- "amenity": "bank"
- },
- "name": "Bank BPH",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank BRI": {
- "tags": {
- "name": "Bank BRI",
- "amenity": "bank"
- },
- "name": "Bank BRI",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank Danamon": {
- "tags": {
- "name": "Bank Danamon",
- "amenity": "bank"
- },
- "name": "Bank Danamon",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank Mandiri": {
- "tags": {
- "name": "Bank Mandiri",
- "amenity": "bank"
- },
- "name": "Bank Mandiri",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank Mega": {
- "tags": {
- "name": "Bank Mega",
- "amenity": "bank"
- },
- "name": "Bank Mega",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank Spółdzielczy": {
- "tags": {
- "name": "Bank Spółdzielczy",
- "amenity": "bank"
- },
- "name": "Bank Spółdzielczy",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank Zachodni WBK": {
- "tags": {
- "name": "Bank Zachodni WBK",
- "amenity": "bank"
- },
- "name": "Bank Zachodni WBK",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank of Africa": {
- "tags": {
- "name": "Bank of Africa",
- "amenity": "bank"
- },
- "name": "Bank of Africa",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank of America": {
- "tags": {
- "name": "Bank of America",
- "amenity": "bank"
- },
- "name": "Bank of America",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank of Baroda": {
- "tags": {
- "name": "Bank of Baroda",
- "amenity": "bank"
- },
- "name": "Bank of Baroda",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank of Ceylon": {
- "tags": {
- "name": "Bank of Ceylon",
- "amenity": "bank"
- },
- "name": "Bank of Ceylon",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank of China": {
- "tags": {
- "name": "Bank of China",
- "amenity": "bank"
- },
- "name": "Bank of China",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank of Commerce": {
- "tags": {
- "name": "Bank of Commerce",
- "amenity": "bank"
- },
- "name": "Bank of Commerce",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank of India": {
- "tags": {
- "name": "Bank of India",
- "amenity": "bank"
- },
- "name": "Bank of India",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank of Ireland": {
- "tags": {
- "name": "Bank of Ireland",
- "amenity": "bank"
- },
- "name": "Bank of Ireland",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank of Montreal": {
- "tags": {
- "name": "Bank of Montreal",
- "amenity": "bank"
- },
- "name": "Bank of Montreal",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank of New Zealand": {
- "tags": {
- "name": "Bank of New Zealand",
- "amenity": "bank"
- },
- "name": "Bank of New Zealand",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank of Scotland": {
- "tags": {
- "name": "Bank of Scotland",
- "amenity": "bank"
- },
- "name": "Bank of Scotland",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bank of the West": {
- "tags": {
- "name": "Bank of the West",
- "amenity": "bank"
- },
- "name": "Bank of the West",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bankia": {
- "tags": {
- "name": "Bankia",
- "amenity": "bank"
- },
- "name": "Bankia",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bankinter": {
- "tags": {
- "name": "Bankinter",
- "amenity": "bank"
- },
- "name": "Bankinter",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banner Bank": {
- "tags": {
- "name": "Banner Bank",
- "amenity": "bank"
- },
- "name": "Banner Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banorte": {
- "tags": {
- "name": "Banorte",
- "amenity": "bank"
- },
- "name": "Banorte",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banque Atlantique": {
- "tags": {
- "name": "Banque Atlantique",
- "amenity": "bank"
- },
- "name": "Banque Atlantique",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banque Nationale": {
- "tags": {
- "name": "Banque Nationale",
- "amenity": "bank"
- },
- "name": "Banque Nationale",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banque Populaire": {
- "tags": {
- "name": "Banque Populaire",
- "amenity": "bank"
- },
- "name": "Banque Populaire",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banrisul": {
- "tags": {
- "name": "Banrisul",
- "amenity": "bank"
- },
- "name": "Banrisul",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Banrural": {
- "tags": {
- "name": "Banrural",
- "amenity": "bank"
- },
- "name": "Banrural",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Barclays": {
- "tags": {
- "name": "Barclays",
- "amenity": "bank"
- },
- "name": "Barclays",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bcc": {
- "tags": {
- "name": "Bcc",
- "amenity": "bank"
- },
- "name": "Bcc",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Belfius": {
- "tags": {
- "name": "Belfius",
- "amenity": "bank"
- },
- "name": "Belfius",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bendigo Bank": {
- "tags": {
- "name": "Bendigo Bank",
- "amenity": "bank"
- },
- "name": "Bendigo Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Berliner Volksbank": {
- "tags": {
- "name": "Berliner Volksbank",
- "amenity": "bank"
- },
- "name": "Berliner Volksbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bicentenario": {
- "tags": {
- "name": "Bicentenario",
- "amenity": "bank"
- },
- "name": "Bicentenario",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Bradesco": {
- "tags": {
- "name": "Bradesco",
- "amenity": "bank"
- },
- "name": "Bradesco",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Budapest Bank": {
- "tags": {
- "name": "Budapest Bank",
- "amenity": "bank"
- },
- "name": "Budapest Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/CBAO": {
- "tags": {
- "name": "CBAO",
- "amenity": "bank"
- },
- "name": "CBAO",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/CEC Bank": {
- "tags": {
- "name": "CEC Bank",
- "amenity": "bank"
- },
- "name": "CEC Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/CGD": {
- "tags": {
- "name": "CGD",
- "amenity": "bank"
- },
- "name": "CGD",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/CIB Bank": {
- "tags": {
- "name": "CIB Bank",
- "amenity": "bank"
- },
- "name": "CIB Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/CIBC": {
- "tags": {
- "name": "CIBC",
- "amenity": "bank"
- },
- "name": "CIBC",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/CIC": {
- "tags": {
- "name": "CIC",
- "amenity": "bank"
- },
- "name": "CIC",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/CIMB Bank": {
- "tags": {
- "name": "CIMB Bank",
- "amenity": "bank"
- },
- "name": "CIMB Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/CNEP": {
- "tags": {
- "name": "CNEP",
- "amenity": "bank"
- },
- "name": "CNEP",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Caisse Desjardins": {
- "tags": {
- "name": "Caisse Desjardins",
- "amenity": "bank"
- },
- "name": "Caisse Desjardins",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Caisse d'Épargne": {
- "tags": {
- "name": "Caisse d'Épargne",
- "amenity": "bank"
- },
- "name": "Caisse d'Épargne",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Caixa": {
- "tags": {
- "name": "Caixa",
- "amenity": "bank"
- },
- "name": "Caixa",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Caixa Econômica Federal": {
- "tags": {
- "name": "Caixa Econômica Federal",
- "amenity": "bank"
- },
- "name": "Caixa Econômica Federal",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Caixa Geral de Depósitos": {
- "tags": {
- "name": "Caixa Geral de Depósitos",
- "amenity": "bank"
- },
- "name": "Caixa Geral de Depósitos",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/CaixaBank": {
- "tags": {
- "name": "CaixaBank",
- "amenity": "bank"
- },
- "name": "CaixaBank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Caja Círculo": {
- "tags": {
- "name": "Caja Círculo",
- "amenity": "bank"
- },
- "name": "Caja Círculo",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Caja Duero": {
- "tags": {
- "name": "Caja Duero",
- "amenity": "bank"
- },
- "name": "Caja Duero",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Caja España": {
- "tags": {
- "name": "Caja España",
- "amenity": "bank"
- },
- "name": "Caja España",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Caja Rural": {
- "tags": {
- "name": "Caja Rural",
- "amenity": "bank"
- },
- "name": "Caja Rural",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Caja Rural de Jaén": {
- "tags": {
- "name": "Caja Rural de Jaén",
- "amenity": "bank"
- },
- "name": "Caja Rural de Jaén",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/CajaSur": {
- "tags": {
- "name": "CajaSur",
- "amenity": "bank"
- },
- "name": "CajaSur",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Cajamar": {
- "tags": {
- "name": "Cajamar",
- "amenity": "bank"
- },
- "name": "Cajamar",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Cajero Automatico Bancared": {
- "tags": {
- "name": "Cajero Automatico Bancared",
- "amenity": "bank"
- },
- "name": "Cajero Automatico Bancared",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Canara Bank": {
- "tags": {
- "name": "Canara Bank",
- "amenity": "bank"
- },
- "name": "Canara Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Capital One": {
- "tags": {
- "name": "Capital One",
- "amenity": "bank"
- },
- "name": "Capital One",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Carige": {
- "tags": {
- "name": "Carige",
- "amenity": "bank"
- },
- "name": "Carige",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Cariparma": {
- "tags": {
- "name": "Cariparma",
- "amenity": "bank"
- },
- "name": "Cariparma",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Cassa di Risparmio del Veneto": {
- "tags": {
- "name": "Cassa di Risparmio del Veneto",
- "amenity": "bank"
- },
- "name": "Cassa di Risparmio del Veneto",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/CatalunyaCaixa": {
- "tags": {
- "name": "CatalunyaCaixa",
- "amenity": "bank"
- },
- "name": "CatalunyaCaixa",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Central Bank of India": {
- "tags": {
- "name": "Central Bank of India",
- "amenity": "bank"
- },
- "name": "Central Bank of India",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Chase": {
- "tags": {
- "name": "Chase",
- "amenity": "bank"
- },
- "name": "Chase",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/China Bank": {
- "tags": {
- "name": "China Bank",
- "amenity": "bank"
- },
- "name": "China Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/China Bank Savings": {
- "tags": {
- "name": "China Bank Savings",
- "amenity": "bank"
- },
- "name": "China Bank Savings",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/China Construction Bank": {
- "tags": {
- "name": "China Construction Bank",
- "amenity": "bank"
- },
- "name": "China Construction Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Citibank": {
- "tags": {
- "name": "Citibank",
- "amenity": "bank"
- },
- "name": "Citibank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Citizens Bank": {
- "tags": {
- "name": "Citizens Bank",
- "amenity": "bank"
- },
- "name": "Citizens Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Clydesdale Bank": {
- "tags": {
- "name": "Clydesdale Bank",
- "amenity": "bank"
- },
- "name": "Clydesdale Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Columbia Bank": {
- "tags": {
- "name": "Columbia Bank",
- "amenity": "bank"
- },
- "name": "Columbia Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Comerica Bank": {
- "tags": {
- "name": "Comerica Bank",
- "amenity": "bank"
- },
- "name": "Comerica Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Commerce Bank": {
- "tags": {
- "name": "Commerce Bank",
- "amenity": "bank"
- },
- "name": "Commerce Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Commercial Bank": {
- "tags": {
- "name": "Commercial Bank",
- "amenity": "bank"
- },
- "name": "Commercial Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Commercial Bank of Ceylon PLC": {
- "tags": {
- "name": "Commercial Bank of Ceylon PLC",
- "amenity": "bank"
- },
- "name": "Commercial Bank of Ceylon PLC",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Commerzbank": {
- "tags": {
- "name": "Commerzbank",
- "amenity": "bank"
- },
- "name": "Commerzbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Commonwealth Bank": {
- "tags": {
- "name": "Commonwealth Bank",
- "amenity": "bank"
- },
- "name": "Commonwealth Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Corporation Bank": {
- "tags": {
- "name": "Corporation Bank",
- "amenity": "bank"
- },
- "name": "Corporation Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Credem": {
- "tags": {
- "name": "Credem",
- "amenity": "bank"
- },
- "name": "Credem",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Credicoop": {
- "tags": {
- "name": "Credicoop",
- "amenity": "bank"
- },
- "name": "Credicoop",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Credit Agricole": {
- "tags": {
- "name": "Credit Agricole",
- "amenity": "bank"
- },
- "name": "Credit Agricole",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Credit Suisse": {
- "tags": {
- "name": "Credit Suisse",
- "amenity": "bank"
- },
- "name": "Credit Suisse",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Crelan": {
- "tags": {
- "name": "Crelan",
- "amenity": "bank"
- },
- "name": "Crelan",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Crédit Agricole": {
- "tags": {
- "name": "Crédit Agricole",
- "amenity": "bank"
- },
- "name": "Crédit Agricole",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Crédit Mutuel": {
- "tags": {
- "name": "Crédit Mutuel",
- "amenity": "bank"
- },
- "name": "Crédit Mutuel",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Crédit Mutuel de Bretagne": {
- "tags": {
- "name": "Crédit Mutuel de Bretagne",
- "amenity": "bank"
- },
- "name": "Crédit Mutuel de Bretagne",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Crédit du Nord": {
- "tags": {
- "name": "Crédit du Nord",
- "amenity": "bank"
- },
- "name": "Crédit du Nord",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Crédito Agrícola": {
- "tags": {
- "name": "Crédito Agrícola",
- "amenity": "bank"
- },
- "name": "Crédito Agrícola",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Cбербанк": {
- "tags": {
- "name": "Cбербанк",
- "amenity": "bank"
- },
- "name": "Cбербанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Danske Bank": {
- "tags": {
- "name": "Danske Bank",
- "amenity": "bank"
- },
- "name": "Danske Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Davivienda": {
- "tags": {
- "name": "Davivienda",
- "amenity": "bank"
- },
- "name": "Davivienda",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/De Venezuela": {
- "tags": {
- "name": "De Venezuela",
- "amenity": "bank"
- },
- "name": "De Venezuela",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Denizbank": {
- "tags": {
- "name": "Denizbank",
- "amenity": "bank"
- },
- "name": "Denizbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Desjardins": {
- "tags": {
- "name": "Desjardins",
- "amenity": "bank"
- },
- "name": "Desjardins",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Deutsche Bank": {
- "tags": {
- "name": "Deutsche Bank",
- "amenity": "bank"
- },
- "name": "Deutsche Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Dubai Islamic Bank": {
- "tags": {
- "name": "Dubai Islamic Bank",
- "amenity": "bank"
- },
- "name": "Dubai Islamic Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/EastWest Bank": {
- "tags": {
- "name": "EastWest Bank",
- "amenity": "bank"
- },
- "name": "EastWest Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Ecobank": {
- "tags": {
- "name": "Ecobank",
- "amenity": "bank"
- },
- "name": "Ecobank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Erste Bank": {
- "tags": {
- "name": "Erste Bank",
- "amenity": "bank"
- },
- "name": "Erste Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Eurobank": {
- "tags": {
- "name": "Eurobank",
- "amenity": "bank"
- },
- "name": "Eurobank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Express Union": {
- "tags": {
- "name": "Express Union",
- "amenity": "bank"
- },
- "name": "Express Union",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/FNB": {
- "tags": {
- "name": "FNB",
- "amenity": "bank"
- },
- "name": "FNB",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Federal Bank": {
- "tags": {
- "name": "Federal Bank",
- "amenity": "bank"
- },
- "name": "Federal Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Fifth Third Bank": {
- "tags": {
- "name": "Fifth Third Bank",
- "amenity": "bank"
- },
- "name": "Fifth Third Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Finansbank": {
- "tags": {
- "name": "Finansbank",
- "amenity": "bank"
- },
- "name": "Finansbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/First Bank": {
- "tags": {
- "name": "First Bank",
- "amenity": "bank"
- },
- "name": "First Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/First Citizens Bank": {
- "tags": {
- "name": "First Citizens Bank",
- "amenity": "bank"
- },
- "name": "First Citizens Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/First National Bank": {
- "tags": {
- "name": "First National Bank",
- "amenity": "bank"
- },
- "name": "First National Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Galicia": {
- "tags": {
- "name": "Galicia",
- "amenity": "bank"
- },
- "name": "Galicia",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Garanti": {
- "tags": {
- "name": "Garanti",
- "amenity": "bank"
- },
- "name": "Garanti",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Garanti Bankası": {
- "tags": {
- "name": "Garanti Bankası",
- "amenity": "bank"
- },
- "name": "Garanti Bankası",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Getin Bank": {
- "tags": {
- "name": "Getin Bank",
- "amenity": "bank"
- },
- "name": "Getin Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Groupama": {
- "tags": {
- "name": "Groupama",
- "amenity": "bank"
- },
- "name": "Groupama",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/HDFC Bank": {
- "tags": {
- "name": "HDFC Bank",
- "amenity": "bank"
- },
- "name": "HDFC Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/HNB": {
- "tags": {
- "name": "HNB",
- "amenity": "bank"
- },
- "name": "HNB",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/HSBC": {
- "tags": {
- "name": "HSBC",
- "amenity": "bank"
- },
- "name": "HSBC",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Halifax": {
- "tags": {
- "name": "Halifax",
- "amenity": "bank"
- },
- "name": "Halifax",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Halkbank": {
- "tags": {
- "name": "Halkbank",
- "amenity": "bank"
- },
- "name": "Halkbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Hamburger Sparkasse": {
- "tags": {
- "name": "Hamburger Sparkasse",
- "amenity": "bank"
- },
- "name": "Hamburger Sparkasse",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Handelsbanken": {
- "tags": {
- "name": "Handelsbanken",
- "amenity": "bank"
- },
- "name": "Handelsbanken",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Hong Leong Bank": {
- "tags": {
- "name": "Hong Leong Bank",
- "amenity": "bank"
- },
- "name": "Hong Leong Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Hrvatska poštanska banka": {
- "tags": {
- "name": "Hrvatska poštanska banka",
- "amenity": "bank"
- },
- "name": "Hrvatska poštanska banka",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Huntington Bank": {
- "tags": {
- "name": "Huntington Bank",
- "amenity": "bank"
- },
- "name": "Huntington Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/HypoVereinsbank": {
- "tags": {
- "name": "HypoVereinsbank",
- "amenity": "bank"
- },
- "name": "HypoVereinsbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/ICBC": {
- "tags": {
- "name": "ICBC",
- "amenity": "bank"
- },
- "name": "ICBC",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/ICICI Bank": {
- "tags": {
- "name": "ICICI Bank",
- "amenity": "bank"
- },
- "name": "ICICI Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/IDBI Bank": {
- "tags": {
- "name": "IDBI Bank",
- "amenity": "bank"
- },
- "name": "IDBI Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/ING": {
- "tags": {
- "name": "ING",
- "amenity": "bank"
- },
- "name": "ING",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/ING Bank Śląski": {
- "tags": {
- "name": "ING Bank Śląski",
- "amenity": "bank"
- },
- "name": "ING Bank Śląski",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/IberCaja": {
- "tags": {
- "name": "IberCaja",
- "amenity": "bank"
- },
- "name": "IberCaja",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Indian Bank": {
- "tags": {
- "name": "Indian Bank",
- "amenity": "bank"
- },
- "name": "Indian Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Indian Overseas Bank": {
- "tags": {
- "name": "Indian Overseas Bank",
- "amenity": "bank"
- },
- "name": "Indian Overseas Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Interbank": {
- "tags": {
- "name": "Interbank",
- "amenity": "bank"
- },
- "name": "Interbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Intesa San Paolo": {
- "tags": {
- "name": "Intesa San Paolo",
- "amenity": "bank"
- },
- "name": "Intesa San Paolo",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Itaú": {
- "tags": {
- "name": "Itaú",
- "amenity": "bank"
- },
- "name": "Itaú",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/K&H Bank": {
- "tags": {
- "name": "K&H Bank",
- "amenity": "bank"
- },
- "name": "K&H Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/KBC": {
- "tags": {
- "name": "KBC",
- "amenity": "bank"
- },
- "name": "KBC",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Kasa Stefczyka": {
- "tags": {
- "name": "Kasa Stefczyka",
- "amenity": "bank"
- },
- "name": "Kasa Stefczyka",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Key Bank": {
- "tags": {
- "name": "Key Bank",
- "amenity": "bank"
- },
- "name": "Key Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Komerční banka": {
- "tags": {
- "name": "Komerční banka",
- "amenity": "bank"
- },
- "name": "Komerční banka",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Kreissparkasse": {
- "tags": {
- "name": "Kreissparkasse",
- "amenity": "bank"
- },
- "name": "Kreissparkasse",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Kreissparkasse Köln": {
- "tags": {
- "name": "Kreissparkasse Köln",
- "amenity": "bank"
- },
- "name": "Kreissparkasse Köln",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Kutxabank": {
- "tags": {
- "name": "Kutxabank",
- "amenity": "bank"
- },
- "name": "Kutxabank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/LCL": {
- "tags": {
- "name": "LCL",
- "amenity": "bank"
- },
- "name": "LCL",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/La Banque Postale": {
- "tags": {
- "name": "La Banque Postale",
- "amenity": "bank"
- },
- "name": "La Banque Postale",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/La Caixa": {
- "tags": {
- "name": "La Caixa",
- "amenity": "bank"
- },
- "name": "La Caixa",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Laboral Kutxa": {
- "tags": {
- "name": "Laboral Kutxa",
- "amenity": "bank"
- },
- "name": "Laboral Kutxa",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Landbank": {
- "tags": {
- "name": "Landbank",
- "amenity": "bank"
- },
- "name": "Landbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Liberbank": {
- "tags": {
- "name": "Liberbank",
- "amenity": "bank"
- },
- "name": "Liberbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Lloyds Bank": {
- "tags": {
- "name": "Lloyds Bank",
- "amenity": "bank"
- },
- "name": "Lloyds Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/M&T Bank": {
- "tags": {
- "name": "M&T Bank",
- "amenity": "bank"
- },
- "name": "M&T Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/MCB": {
- "tags": {
- "name": "MCB",
- "amenity": "bank"
- },
- "name": "MCB",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/MCB Bank": {
- "tags": {
- "name": "MCB Bank",
- "amenity": "bank"
- },
- "name": "MCB Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/MONETA Money Bank": {
- "tags": {
- "name": "MONETA Money Bank",
- "amenity": "bank"
- },
- "name": "MONETA Money Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Macro": {
- "tags": {
- "name": "Macro",
- "amenity": "bank"
- },
- "name": "Macro",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Maybank": {
- "tags": {
- "name": "Maybank",
- "amenity": "bank"
- },
- "name": "Maybank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Meezan Bank": {
- "tags": {
- "name": "Meezan Bank",
- "amenity": "bank"
- },
- "name": "Meezan Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Mercantil": {
- "tags": {
- "name": "Mercantil",
- "amenity": "bank"
- },
- "name": "Mercantil",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Metro Bank": {
- "tags": {
- "name": "Metro Bank",
- "amenity": "bank"
- },
- "name": "Metro Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Metrobank": {
- "tags": {
- "name": "Metrobank",
- "amenity": "bank"
- },
- "name": "Metrobank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Millennium BCP": {
- "tags": {
- "name": "Millennium BCP",
- "amenity": "bank"
- },
- "name": "Millennium BCP",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Millennium Bank": {
- "tags": {
- "name": "Millennium Bank",
- "amenity": "bank"
- },
- "name": "Millennium Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Monte dei Paschi di Siena": {
- "tags": {
- "name": "Monte dei Paschi di Siena",
- "amenity": "bank"
- },
- "name": "Monte dei Paschi di Siena",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Montepio": {
- "tags": {
- "name": "Montepio",
- "amenity": "bank"
- },
- "name": "Montepio",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/NAB": {
- "tags": {
- "name": "NAB",
- "amenity": "bank"
- },
- "name": "NAB",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/NSB": {
- "tags": {
- "name": "NSB",
- "amenity": "bank"
- },
- "name": "NSB",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/NatWest": {
- "tags": {
- "name": "NatWest",
- "amenity": "bank"
- },
- "name": "NatWest",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/National Bank": {
- "tags": {
- "name": "National Bank",
- "amenity": "bank"
- },
- "name": "National Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Nationwide": {
- "tags": {
- "name": "Nationwide",
- "amenity": "bank"
- },
- "name": "Nationwide",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Nedbank": {
- "tags": {
- "name": "Nedbank",
- "amenity": "bank"
- },
- "name": "Nedbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Nordea": {
- "tags": {
- "name": "Nordea",
- "amenity": "bank"
- },
- "name": "Nordea",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Novo Banco": {
- "tags": {
- "name": "Novo Banco",
- "amenity": "bank"
- },
- "name": "Novo Banco",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/OLB": {
- "tags": {
- "name": "OLB",
- "amenity": "bank"
- },
- "name": "OLB",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/OTP": {
- "tags": {
- "name": "OTP",
- "amenity": "bank"
- },
- "name": "OTP",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Oberbank": {
- "tags": {
- "name": "Oberbank",
- "amenity": "bank"
- },
- "name": "Oberbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Occidental de Descuento": {
- "tags": {
- "name": "Occidental de Descuento",
- "amenity": "bank"
- },
- "name": "Occidental de Descuento",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Oldenburgische Landesbank": {
- "tags": {
- "name": "Oldenburgische Landesbank",
- "amenity": "bank"
- },
- "name": "Oldenburgische Landesbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/One Network Bank": {
- "tags": {
- "name": "One Network Bank",
- "amenity": "bank"
- },
- "name": "One Network Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Osuuspankki": {
- "tags": {
- "name": "Osuuspankki",
- "amenity": "bank"
- },
- "name": "Osuuspankki",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/PBZ": {
- "tags": {
- "name": "PBZ",
- "amenity": "bank"
- },
- "name": "PBZ",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/PKO": {
- "tags": {
- "name": "PKO",
- "amenity": "bank"
- },
- "name": "PKO",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/PKO BP": {
- "tags": {
- "name": "PKO BP",
- "amenity": "bank"
- },
- "name": "PKO BP",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/PNB": {
- "tags": {
- "name": "PNB",
- "amenity": "bank"
- },
- "name": "PNB",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/PNC": {
- "tags": {
- "name": "PNC",
- "amenity": "bank"
- },
- "name": "PNC",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/PNC Bank": {
- "tags": {
- "name": "PNC Bank",
- "amenity": "bank"
- },
- "name": "PNC Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/PSBank": {
- "tags": {
- "name": "PSBank",
- "amenity": "bank"
- },
- "name": "PSBank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Patagonia": {
- "tags": {
- "name": "Patagonia",
- "amenity": "bank"
- },
- "name": "Patagonia",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Pekao SA": {
- "tags": {
- "name": "Pekao SA",
- "amenity": "bank"
- },
- "name": "Pekao SA",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Peoples Bank": {
- "tags": {
- "name": "Peoples Bank",
- "amenity": "bank"
- },
- "name": "Peoples Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Philippine National Bank": {
- "tags": {
- "name": "Philippine National Bank",
- "amenity": "bank"
- },
- "name": "Philippine National Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Piraeus Bank": {
- "tags": {
- "name": "Piraeus Bank",
- "amenity": "bank"
- },
- "name": "Piraeus Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Popular": {
- "tags": {
- "name": "Popular",
- "amenity": "bank"
- },
- "name": "Popular",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Postbank": {
- "tags": {
- "name": "Postbank",
- "amenity": "bank"
- },
- "name": "Postbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Postbank Finanzcenter": {
- "tags": {
- "name": "Postbank Finanzcenter",
- "amenity": "bank"
- },
- "name": "Postbank Finanzcenter",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Provincial": {
- "tags": {
- "name": "Provincial",
- "amenity": "bank"
- },
- "name": "Provincial",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Public Bank": {
- "tags": {
- "name": "Public Bank",
- "amenity": "bank"
- },
- "name": "Public Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Punjab National Bank": {
- "tags": {
- "name": "Punjab National Bank",
- "amenity": "bank"
- },
- "name": "Punjab National Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/RBC": {
- "tags": {
- "name": "RBC",
- "amenity": "bank"
- },
- "name": "RBC",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/RBC Financial Group": {
- "tags": {
- "name": "RBC Financial Group",
- "amenity": "bank"
- },
- "name": "RBC Financial Group",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/RBS": {
- "tags": {
- "name": "RBS",
- "amenity": "bank"
- },
- "name": "RBS",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/RCBC": {
- "tags": {
- "name": "RCBC",
- "amenity": "bank"
- },
- "name": "RCBC",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/RCBC Savings Bank": {
- "tags": {
- "name": "RCBC Savings Bank",
- "amenity": "bank"
- },
- "name": "RCBC Savings Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Rabobank": {
- "tags": {
- "name": "Rabobank",
- "amenity": "bank"
- },
- "name": "Rabobank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Raiffeisen Polbank": {
- "tags": {
- "name": "Raiffeisen Polbank",
- "amenity": "bank"
- },
- "name": "Raiffeisen Polbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Raiffeisenbank": {
- "tags": {
- "name": "Raiffeisenbank",
- "amenity": "bank"
- },
- "name": "Raiffeisenbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Regions Bank": {
- "tags": {
- "name": "Regions Bank",
- "amenity": "bank"
- },
- "name": "Regions Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Republic Bank": {
- "tags": {
- "name": "Republic Bank",
- "amenity": "bank"
- },
- "name": "Republic Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Royal Bank": {
- "tags": {
- "name": "Royal Bank",
- "amenity": "bank"
- },
- "name": "Royal Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Royal Bank of Canada": {
- "tags": {
- "name": "Royal Bank of Canada",
- "amenity": "bank"
- },
- "name": "Royal Bank of Canada",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Royal Bank of Scotland": {
- "tags": {
- "name": "Royal Bank of Scotland",
- "amenity": "bank"
- },
- "name": "Royal Bank of Scotland",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/SEB": {
- "tags": {
- "name": "SEB",
- "amenity": "bank"
- },
- "name": "SEB",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/SNS Bank": {
- "tags": {
- "name": "SNS Bank",
- "amenity": "bank"
- },
- "name": "SNS Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Sabadell": {
- "tags": {
- "name": "Sabadell",
- "amenity": "bank"
- },
- "name": "Sabadell",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Sampath Bank": {
- "tags": {
- "name": "Sampath Bank",
- "amenity": "bank"
- },
- "name": "Sampath Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Santander": {
- "tags": {
- "name": "Santander",
- "amenity": "bank"
- },
- "name": "Santander",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Santander Consumer Bank": {
- "tags": {
- "name": "Santander Consumer Bank",
- "amenity": "bank"
- },
- "name": "Santander Consumer Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Santander Río": {
- "tags": {
- "name": "Santander Río",
- "amenity": "bank"
- },
- "name": "Santander Río",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Santander Totta": {
- "tags": {
- "name": "Santander Totta",
- "amenity": "bank"
- },
- "name": "Santander Totta",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Sberbank": {
- "tags": {
- "name": "Sberbank",
- "amenity": "bank"
- },
- "name": "Sberbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Scotiabank": {
- "tags": {
- "name": "Scotiabank",
- "amenity": "bank"
- },
- "name": "Scotiabank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Security Bank": {
- "tags": {
- "name": "Security Bank",
- "amenity": "bank"
- },
- "name": "Security Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Sicredi": {
- "tags": {
- "name": "Sicredi",
- "amenity": "bank"
- },
- "name": "Sicredi",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Slovenská sporiteľňa": {
- "tags": {
- "name": "Slovenská sporiteľňa",
- "amenity": "bank"
- },
- "name": "Slovenská sporiteľňa",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Société Générale": {
- "tags": {
- "name": "Société Générale",
- "amenity": "bank"
- },
- "name": "Société Générale",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Sparda-Bank": {
- "tags": {
- "name": "Sparda-Bank",
- "amenity": "bank"
- },
- "name": "Sparda-Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Sparkasse": {
- "tags": {
- "name": "Sparkasse",
- "amenity": "bank"
- },
- "name": "Sparkasse",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Sparkasse Aachen": {
- "tags": {
- "name": "Sparkasse Aachen",
- "amenity": "bank"
- },
- "name": "Sparkasse Aachen",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Sparkasse KölnBonn": {
- "tags": {
- "name": "Sparkasse KölnBonn",
- "amenity": "bank"
- },
- "name": "Sparkasse KölnBonn",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Stadtsparkasse": {
- "tags": {
- "name": "Stadtsparkasse",
- "amenity": "bank"
- },
- "name": "Stadtsparkasse",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Stanbic Bank": {
- "tags": {
- "name": "Stanbic Bank",
- "amenity": "bank"
- },
- "name": "Stanbic Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Standard Bank": {
- "tags": {
- "name": "Standard Bank",
- "amenity": "bank"
- },
- "name": "Standard Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Standard Chartered": {
- "tags": {
- "name": "Standard Chartered",
- "amenity": "bank"
- },
- "name": "Standard Chartered",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Standard Chartered Bank": {
- "tags": {
- "name": "Standard Chartered Bank",
- "amenity": "bank"
- },
- "name": "Standard Chartered Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/State Bank of India": {
- "tags": {
- "name": "State Bank of India",
- "amenity": "bank"
- },
- "name": "State Bank of India",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/SunTrust": {
- "tags": {
- "name": "SunTrust",
- "amenity": "bank"
- },
- "name": "SunTrust",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Supervielle": {
- "tags": {
- "name": "Supervielle",
- "amenity": "bank"
- },
- "name": "Supervielle",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Swedbank": {
- "tags": {
- "name": "Swedbank",
- "amenity": "bank"
- },
- "name": "Swedbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Syndicate Bank": {
- "tags": {
- "name": "Syndicate Bank",
- "amenity": "bank"
- },
- "name": "Syndicate Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/TCF Bank": {
- "tags": {
- "name": "TCF Bank",
- "amenity": "bank"
- },
- "name": "TCF Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/TD Bank": {
- "tags": {
- "name": "TD Bank",
- "amenity": "bank"
- },
- "name": "TD Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/TD Canada Trust": {
- "tags": {
- "name": "TD Canada Trust",
- "amenity": "bank"
- },
- "name": "TD Canada Trust",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/TEB": {
- "tags": {
- "name": "TEB",
- "amenity": "bank"
- },
- "name": "TEB",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/TSB": {
- "tags": {
- "name": "TSB",
- "amenity": "bank"
- },
- "name": "TSB",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Takarékszövetkezet": {
- "tags": {
- "name": "Takarékszövetkezet",
- "amenity": "bank"
- },
- "name": "Takarékszövetkezet",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Targobank": {
- "tags": {
- "name": "Targobank",
- "amenity": "bank"
- },
- "name": "Targobank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Tatra banka": {
- "tags": {
- "name": "Tatra banka",
- "amenity": "bank"
- },
- "name": "Tatra banka",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Türkiye İş Bankası": {
- "tags": {
- "name": "Türkiye İş Bankası",
- "amenity": "bank"
- },
- "name": "Türkiye İş Bankası",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/UBS": {
- "tags": {
- "name": "UBS",
- "amenity": "bank"
- },
- "name": "UBS",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/UCO Bank": {
- "tags": {
- "name": "UCO Bank",
- "amenity": "bank"
- },
- "name": "UCO Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/UCPB": {
- "tags": {
- "name": "UCPB",
- "amenity": "bank"
- },
- "name": "UCPB",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/UOB": {
- "tags": {
- "name": "UOB",
- "amenity": "bank"
- },
- "name": "UOB",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/US Bank": {
- "tags": {
- "name": "US Bank",
- "amenity": "bank"
- },
- "name": "US Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Ulster Bank": {
- "tags": {
- "name": "Ulster Bank",
- "amenity": "bank"
- },
- "name": "Ulster Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Umpqua Bank": {
- "tags": {
- "name": "Umpqua Bank",
- "amenity": "bank"
- },
- "name": "Umpqua Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/UniCredit Bank": {
- "tags": {
- "name": "UniCredit Bank",
- "amenity": "bank"
- },
- "name": "UniCredit Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Unicaja Banco": {
- "tags": {
- "name": "Unicaja Banco",
- "amenity": "bank"
- },
- "name": "Unicaja Banco",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Unicredit Banca": {
- "tags": {
- "name": "Unicredit Banca",
- "amenity": "bank"
- },
- "name": "Unicredit Banca",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Union Bank": {
- "tags": {
- "name": "Union Bank",
- "amenity": "bank"
- },
- "name": "Union Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/United Bank": {
- "tags": {
- "name": "United Bank",
- "amenity": "bank"
- },
- "name": "United Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/VR-Bank": {
- "tags": {
- "name": "VR-Bank",
- "amenity": "bank"
- },
- "name": "VR-Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Vakıfbank": {
- "tags": {
- "name": "Vakıfbank",
- "amenity": "bank"
- },
- "name": "Vakıfbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Veneto Banca": {
- "tags": {
- "name": "Veneto Banca",
- "amenity": "bank"
- },
- "name": "Veneto Banca",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Vijaya Bank": {
- "tags": {
- "name": "Vijaya Bank",
- "amenity": "bank"
- },
- "name": "Vijaya Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Volks- und Raiffeisenbank": {
- "tags": {
- "name": "Volks- und Raiffeisenbank",
- "amenity": "bank"
- },
- "name": "Volks- und Raiffeisenbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Volksbank": {
- "tags": {
- "name": "Volksbank",
- "amenity": "bank"
- },
- "name": "Volksbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Volksbank Mittelhessen": {
- "tags": {
- "name": "Volksbank Mittelhessen",
- "amenity": "bank"
- },
- "name": "Volksbank Mittelhessen",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Volksbank Raiffeisenbank": {
- "tags": {
- "name": "Volksbank Raiffeisenbank",
- "amenity": "bank"
- },
- "name": "Volksbank Raiffeisenbank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/VÚB": {
- "tags": {
- "name": "VÚB",
- "amenity": "bank"
- },
- "name": "VÚB",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Washington Federal": {
- "tags": {
- "name": "Washington Federal",
- "amenity": "bank"
- },
- "name": "Washington Federal",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Wells Fargo": {
- "tags": {
- "name": "Wells Fargo",
- "amenity": "bank"
- },
- "name": "Wells Fargo",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Western Union": {
- "tags": {
- "name": "Western Union",
- "amenity": "bank"
- },
- "name": "Western Union",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Westpac": {
- "tags": {
- "name": "Westpac",
- "amenity": "bank"
- },
- "name": "Westpac",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Yorkshire Bank": {
- "tags": {
- "name": "Yorkshire Bank",
- "amenity": "bank"
- },
- "name": "Yorkshire Bank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Yorkshire Building Society": {
- "tags": {
- "name": "Yorkshire Building Society",
- "amenity": "bank"
- },
- "name": "Yorkshire Building Society",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Zagrebačka banka": {
- "tags": {
- "name": "Zagrebačka banka",
- "amenity": "bank"
- },
- "name": "Zagrebačka banka",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Ziraat Bankası": {
- "tags": {
- "name": "Ziraat Bankası",
- "amenity": "bank"
- },
- "name": "Ziraat Bankası",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/mBank": {
- "tags": {
- "name": "mBank",
- "amenity": "bank"
- },
- "name": "mBank",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/ČSOB": {
- "tags": {
- "name": "ČSOB",
- "amenity": "bank"
- },
- "name": "ČSOB",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Česká spořitelna": {
- "tags": {
- "name": "Česká spořitelna",
- "amenity": "bank"
- },
- "name": "Česká spořitelna",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/İş Bankası": {
- "tags": {
- "name": "İş Bankası",
- "amenity": "bank"
- },
- "name": "İş Bankası",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Εθνική Τράπεζα": {
- "tags": {
- "name": "Εθνική Τράπεζα",
- "amenity": "bank"
- },
- "name": "Εθνική Τράπεζα",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Πειραιώς": {
- "tags": {
- "name": "Πειραιώς",
- "amenity": "bank"
- },
- "name": "Πειραιώς",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Τράπεζα Πειραιώς": {
- "tags": {
- "name": "Τράπεζα Πειραιώς",
- "amenity": "bank"
- },
- "name": "Τράπεζα Πειραιώς",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Авангард": {
- "tags": {
- "name": "Авангард",
- "amenity": "bank"
- },
- "name": "Авангард",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Альфа-Банк": {
- "tags": {
- "name": "Альфа-Банк",
- "amenity": "bank"
- },
- "name": "Альфа-Банк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Банк Москвы": {
- "tags": {
- "name": "Банк Москвы",
- "amenity": "bank"
- },
- "name": "Банк Москвы",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Банка ДСК": {
- "tags": {
- "name": "Банка ДСК",
- "amenity": "bank"
- },
- "name": "Банка ДСК",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Белагропромбанк": {
- "tags": {
- "name": "Белагропромбанк",
- "amenity": "bank"
- },
- "name": "Белагропромбанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Беларусбанк": {
- "tags": {
- "name": "Беларусбанк",
- "amenity": "bank"
- },
- "name": "Беларусбанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Белинвестбанк": {
- "tags": {
- "name": "Белинвестбанк",
- "amenity": "bank"
- },
- "name": "Белинвестбанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Бинбанк": {
- "tags": {
- "name": "Бинбанк",
- "amenity": "bank"
- },
- "name": "Бинбанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/ВТБ": {
- "tags": {
- "name": "ВТБ",
- "amenity": "bank"
- },
- "name": "ВТБ",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/ВТБ24": {
- "tags": {
- "name": "ВТБ24",
- "amenity": "bank"
- },
- "name": "ВТБ24",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Возрождение": {
- "tags": {
- "name": "Возрождение",
- "amenity": "bank"
- },
- "name": "Возрождение",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Газпромбанк": {
- "tags": {
- "name": "Газпромбанк",
- "amenity": "bank"
- },
- "name": "Газпромбанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Генбанк": {
- "tags": {
- "name": "Генбанк",
- "amenity": "bank"
- },
- "name": "Генбанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Казкоммерцбанк": {
- "tags": {
- "name": "Казкоммерцбанк",
- "amenity": "bank"
- },
- "name": "Казкоммерцбанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/МДМ Банк": {
- "tags": {
- "name": "МДМ Банк",
- "amenity": "bank"
- },
- "name": "МДМ Банк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Московский индустриальный банк": {
- "tags": {
- "name": "Московский индустриальный банк",
- "amenity": "bank"
- },
- "name": "Московский индустриальный банк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Мособлбанк": {
- "tags": {
- "name": "Мособлбанк",
- "amenity": "bank"
- },
- "name": "Мособлбанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Народный банк": {
- "tags": {
- "name": "Народный банк",
- "amenity": "bank"
- },
- "name": "Народный банк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/ОТП Банк": {
- "tags": {
- "name": "ОТП Банк",
- "amenity": "bank"
- },
- "name": "ОТП Банк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Открытие": {
- "tags": {
- "name": "Открытие",
- "amenity": "bank"
- },
- "name": "Открытие",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Ощадбанк": {
- "tags": {
- "name": "Ощадбанк",
- "amenity": "bank"
- },
- "name": "Ощадбанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/ПУМБ": {
- "tags": {
- "name": "ПУМБ",
- "amenity": "bank"
- },
- "name": "ПУМБ",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Почта Банк": {
- "tags": {
- "name": "Почта Банк",
- "amenity": "bank"
- },
- "name": "Почта Банк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/ПриватБанк": {
- "tags": {
- "name": "ПриватБанк",
- "amenity": "bank"
- },
- "name": "ПриватБанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Приватбанк": {
- "tags": {
- "name": "Приватбанк",
- "amenity": "bank"
- },
- "name": "Приватбанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Приднестровский Сбербанк": {
- "tags": {
- "name": "Приднестровский Сбербанк",
- "amenity": "bank"
- },
- "name": "Приднестровский Сбербанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Приорбанк": {
- "tags": {
- "name": "Приорбанк",
- "amenity": "bank"
- },
- "name": "Приорбанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Промсвязьбанк": {
- "tags": {
- "name": "Промсвязьбанк",
- "amenity": "bank"
- },
- "name": "Промсвязьбанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/РНКБ": {
- "tags": {
- "name": "РНКБ",
- "amenity": "bank"
- },
- "name": "РНКБ",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Райффайзен": {
- "tags": {
- "name": "Райффайзен",
- "amenity": "bank"
- },
- "name": "Райффайзен",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Райффайзен Банк Аваль": {
- "tags": {
- "name": "Райффайзен Банк Аваль",
- "amenity": "bank"
- },
- "name": "Райффайзен Банк Аваль",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Райффайзенбанк": {
- "tags": {
- "name": "Райффайзенбанк",
- "amenity": "bank"
- },
- "name": "Райффайзенбанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Росбанк": {
- "tags": {
- "name": "Росбанк",
- "amenity": "bank"
- },
- "name": "Росбанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Россельхозбанк": {
- "tags": {
- "name": "Россельхозбанк",
- "amenity": "bank"
- },
- "name": "Россельхозбанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Русский стандарт": {
- "tags": {
- "name": "Русский стандарт",
- "amenity": "bank"
- },
- "name": "Русский стандарт",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Сбербанк": {
- "tags": {
- "name": "Сбербанк",
- "amenity": "bank"
- },
- "name": "Сбербанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Совкомбанк": {
- "tags": {
- "name": "Совкомбанк",
- "amenity": "bank"
- },
- "name": "Совкомбанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/УкрСиббанк": {
- "tags": {
- "name": "УкрСиббанк",
- "amenity": "bank"
- },
- "name": "УкрСиббанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Укрсоцбанк": {
- "tags": {
- "name": "Укрсоцбанк",
- "amenity": "bank"
- },
- "name": "Укрсоцбанк",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Уралсиб": {
- "tags": {
- "name": "Уралсиб",
- "amenity": "bank"
- },
- "name": "Уралсиб",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/Хоум Кредит": {
- "tags": {
- "name": "Хоум Кредит",
- "amenity": "bank"
- },
- "name": "Хоум Кредит",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/בנק הפועלים": {
- "tags": {
- "name": "בנק הפועלים",
- "amenity": "bank"
- },
- "name": "בנק הפועלים",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/בנק לאומי": {
- "tags": {
- "name": "בנק לאומי",
- "amenity": "bank"
- },
- "name": "בנק לאומי",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/بانک": {
- "tags": {
- "name": "بانک",
- "amenity": "bank"
- },
- "name": "بانک",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/بانک آینده": {
- "tags": {
- "name": "بانک آینده",
- "amenity": "bank"
- },
- "name": "بانک آینده",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/بانک اقتصاد نوین": {
- "tags": {
- "name": "بانک اقتصاد نوین",
- "amenity": "bank"
- },
- "name": "بانک اقتصاد نوین",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/بانک انصار": {
- "tags": {
- "name": "بانک انصار",
- "amenity": "bank"
- },
- "name": "بانک انصار",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/بانک تجارت": {
- "tags": {
- "name": "بانک تجارت",
- "amenity": "bank"
- },
- "name": "بانک تجارت",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/بانک رفاه": {
- "tags": {
- "name": "بانک رفاه",
- "amenity": "bank"
- },
- "name": "بانک رفاه",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/بانک رفاه کارگران": {
- "tags": {
- "name": "بانک رفاه کارگران",
- "amenity": "bank"
- },
- "name": "بانک رفاه کارگران",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/بانک سپه": {
- "tags": {
- "name": "بانک سپه",
- "amenity": "bank"
- },
- "name": "بانک سپه",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/بانک شهر": {
- "tags": {
- "name": "بانک شهر",
- "amenity": "bank"
- },
- "name": "بانک شهر",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/بانک صادرات": {
- "tags": {
- "name": "بانک صادرات",
- "amenity": "bank"
- },
- "name": "بانک صادرات",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/بانک قوامین": {
- "tags": {
- "name": "بانک قوامین",
- "amenity": "bank"
- },
- "name": "بانک قوامین",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/بانک مسکن": {
- "tags": {
- "name": "بانک مسکن",
- "amenity": "bank"
- },
- "name": "بانک مسکن",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/بانک ملت": {
- "tags": {
- "name": "بانک ملت",
- "amenity": "bank"
- },
- "name": "بانک ملت",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/بانک ملی": {
- "tags": {
- "name": "بانک ملی",
- "amenity": "bank"
- },
- "name": "بانک ملی",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/بانک ملی ایران": {
- "tags": {
- "name": "بانک ملی ایران",
- "amenity": "bank"
- },
- "name": "بانک ملی ایران",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/بانک مهر اقتصاد": {
- "tags": {
- "name": "بانک مهر اقتصاد",
- "amenity": "bank"
- },
- "name": "بانک مهر اقتصاد",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/بانک پارسیان": {
- "tags": {
- "name": "بانک پارسیان",
- "amenity": "bank"
- },
- "name": "بانک پارسیان",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/بانک پاسارگاد": {
- "tags": {
- "name": "بانک پاسارگاد",
- "amenity": "bank"
- },
- "name": "بانک پاسارگاد",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/بانک کشاورزی": {
- "tags": {
- "name": "بانک کشاورزی",
- "amenity": "bank"
- },
- "name": "بانک کشاورزی",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/صادرات": {
- "tags": {
- "name": "صادرات",
- "amenity": "bank"
- },
- "name": "صادرات",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/ملی": {
- "tags": {
- "name": "ملی",
- "amenity": "bank"
- },
- "name": "ملی",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/پست بانک": {
- "tags": {
- "name": "پست بانک",
- "amenity": "bank"
- },
- "name": "پست بانک",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/ธนาคารกรุงเทพ": {
- "tags": {
- "name": "ธนาคารกรุงเทพ",
- "amenity": "bank"
- },
- "name": "ธนาคารกรุงเทพ",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/ธนาคารกรุงไทย": {
- "tags": {
- "name": "ธนาคารกรุงไทย",
- "amenity": "bank"
- },
- "name": "ธนาคารกรุงไทย",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/ธนาคารกสิกรไทย": {
- "tags": {
- "name": "ธนาคารกสิกรไทย",
- "amenity": "bank"
- },
- "name": "ธนาคารกสิกรไทย",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/ธนาคารออมสิน": {
- "tags": {
- "name": "ธนาคารออมสิน",
- "amenity": "bank"
- },
- "name": "ธนาคารออมสิน",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/ธนาคารไทยพาณิชย์": {
- "tags": {
- "name": "ธนาคารไทยพาณิชย์",
- "amenity": "bank"
- },
- "name": "ธนาคารไทยพาณิชย์",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/みずほ銀行": {
- "tags": {
- "name": "みずほ銀行",
- "amenity": "bank"
- },
- "name": "みずほ銀行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/りそな銀行": {
- "tags": {
- "name": "りそな銀行",
- "amenity": "bank"
- },
- "name": "りそな銀行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/三井住友銀行": {
- "tags": {
- "name": "三井住友銀行",
- "amenity": "bank"
- },
- "name": "三井住友銀行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/三菱東京UFJ銀行": {
- "tags": {
- "name": "三菱東京UFJ銀行",
- "amenity": "bank"
- },
- "name": "三菱東京UFJ銀行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/中国农业银行": {
- "tags": {
- "name": "中国农业银行",
- "amenity": "bank"
- },
- "name": "中国农业银行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/中国工商银行": {
- "tags": {
- "name": "中国工商银行",
- "amenity": "bank"
- },
- "name": "中国工商银行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/中国建设银行": {
- "tags": {
- "name": "中国建设银行",
- "amenity": "bank"
- },
- "name": "中国建设银行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/中国邮政储蓄银行": {
- "tags": {
- "name": "中国邮政储蓄银行",
- "amenity": "bank"
- },
- "name": "中国邮政储蓄银行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/中国银行": {
- "tags": {
- "name": "中国银行",
- "amenity": "bank"
- },
- "name": "中国银行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/交通银行": {
- "tags": {
- "name": "交通银行",
- "amenity": "bank"
- },
- "name": "交通银行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/京都中央信用金庫": {
- "tags": {
- "name": "京都中央信用金庫",
- "amenity": "bank"
- },
- "name": "京都中央信用金庫",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/京都銀行": {
- "tags": {
- "name": "京都銀行",
- "amenity": "bank"
- },
- "name": "京都銀行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/农业银行": {
- "tags": {
- "name": "农业银行",
- "amenity": "bank"
- },
- "name": "农业银行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/北海道銀行": {
- "tags": {
- "name": "北海道銀行",
- "amenity": "bank"
- },
- "name": "北海道銀行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/合作金庫銀行": {
- "tags": {
- "name": "合作金庫銀行",
- "amenity": "bank"
- },
- "name": "合作金庫銀行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/土地銀行": {
- "tags": {
- "name": "土地銀行",
- "amenity": "bank"
- },
- "name": "土地銀行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/工商银行": {
- "tags": {
- "name": "工商银行",
- "amenity": "bank"
- },
- "name": "工商银行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/建设银行": {
- "tags": {
- "name": "建设银行",
- "amenity": "bank"
- },
- "name": "建设银行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/彰化銀行": {
- "tags": {
- "name": "彰化銀行",
- "amenity": "bank"
- },
- "name": "彰化銀行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/招商银行": {
- "tags": {
- "name": "招商银行",
- "amenity": "bank"
- },
- "name": "招商银行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/横浜銀行": {
- "tags": {
- "name": "横浜銀行",
- "amenity": "bank"
- },
- "name": "横浜銀行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/第一銀行": {
- "tags": {
- "name": "第一銀行",
- "amenity": "bank"
- },
- "name": "第一銀行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/華南銀行": {
- "tags": {
- "name": "華南銀行",
- "amenity": "bank"
- },
- "name": "華南銀行",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/국민은행": {
- "tags": {
- "name": "국민은행",
- "name:en": "Gungmin Bank",
- "amenity": "bank"
- },
- "name": "국민은행",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/기업은행": {
- "tags": {
- "name": "기업은행",
- "amenity": "bank"
- },
- "name": "기업은행",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/농협": {
- "tags": {
- "name": "농협",
- "amenity": "bank"
- },
- "name": "농협",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/새마을금고": {
- "tags": {
- "name": "새마을금고",
- "amenity": "bank"
- },
- "name": "새마을금고",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/신한은행": {
- "tags": {
- "name": "신한은행",
- "name:en": "Sinhan Bank",
- "amenity": "bank"
- },
- "name": "신한은행",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/우리은행": {
- "tags": {
- "name": "우리은행",
- "name:en": "Uri Bank",
- "amenity": "bank"
- },
- "name": "우리은행",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bank/하나은행": {
- "tags": {
- "name": "하나은행",
- "amenity": "bank"
- },
- "name": "하나은행",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "atm",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "drive_through"
- ],
- "suggestion": true
- },
- "amenity/bar/Bar Centrale": {
- "tags": {
- "name": "Bar Centrale",
- "amenity": "bar"
- },
- "name": "Bar Centrale",
- "icon": "maki-bar",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/bar/Bar Sport": {
- "tags": {
- "name": "Bar Sport",
- "amenity": "bar"
- },
- "name": "Bar Sport",
- "icon": "maki-bar",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/bar/Beach Bar": {
- "tags": {
- "name": "Beach Bar",
- "amenity": "bar"
- },
- "name": "Beach Bar",
- "icon": "maki-bar",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/bar/Pool Bar": {
- "tags": {
- "name": "Pool Bar",
- "amenity": "bar"
- },
- "name": "Pool Bar",
- "icon": "maki-bar",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/bicycle_rental/Bicing": {
- "tags": {
- "name": "Bicing",
- "amenity": "bicycle_rental"
- },
- "name": "Bicing",
- "icon": "maki-bicycle",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "capacity",
- "network",
- "operator",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/bicycle_rental/Call a Bike": {
- "tags": {
- "name": "Call a Bike",
- "amenity": "bicycle_rental"
- },
- "name": "Call a Bike",
- "icon": "maki-bicycle",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "capacity",
- "network",
- "operator",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/bicycle_rental/Grid": {
- "tags": {
- "name": "Grid",
- "amenity": "bicycle_rental"
- },
- "name": "Grid",
- "icon": "maki-bicycle",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "capacity",
- "network",
- "operator",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/bicycle_rental/Mibici": {
- "tags": {
- "name": "Mibici",
- "amenity": "bicycle_rental"
- },
- "name": "Mibici",
- "icon": "maki-bicycle",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "capacity",
- "network",
- "operator",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/bicycle_rental/metropolradruhr": {
- "tags": {
- "name": "metropolradruhr",
- "amenity": "bicycle_rental"
- },
- "name": "metropolradruhr",
- "icon": "maki-bicycle",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "capacity",
- "network",
- "operator",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/bureau_de_change/Abitab": {
- "tags": {
- "name": "Abitab",
- "amenity": "bureau_de_change"
- },
- "name": "Abitab",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "currency_multi",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bureau_de_change/Change": {
- "tags": {
- "name": "Change",
- "amenity": "bureau_de_change"
- },
- "name": "Change",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "currency_multi",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/bureau_de_change/Travelex": {
- "tags": {
- "name": "Travelex",
- "amenity": "bureau_de_change"
- },
- "name": "Travelex",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "currency_multi",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/cafe/85度C": {
- "tags": {
- "name": "85度C",
- "amenity": "cafe"
- },
- "name": "85度C",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Bar Kafe": {
- "tags": {
- "name": "Bar Kafe",
- "amenity": "cafe"
- },
- "name": "Bar Kafe",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Barista": {
- "tags": {
- "name": "Barista",
- "amenity": "cafe"
- },
- "name": "Barista",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Bonafide": {
- "tags": {
- "name": "Bonafide",
- "amenity": "cafe"
- },
- "name": "Bonafide",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Cafe Coffee Day": {
- "tags": {
- "name": "Cafe Coffee Day",
- "amenity": "cafe"
- },
- "name": "Cafe Coffee Day",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Cafe Nero": {
- "tags": {
- "name": "Cafe Nero",
- "amenity": "cafe"
- },
- "name": "Cafe Nero",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Cafeteria": {
- "tags": {
- "name": "Cafeteria",
- "amenity": "cafe"
- },
- "name": "Cafeteria",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Cafetería": {
- "tags": {
- "name": "Cafetería",
- "amenity": "cafe"
- },
- "name": "Cafetería",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Caffè Nero": {
- "tags": {
- "name": "Caffè Nero",
- "amenity": "cafe"
- },
- "name": "Caffè Nero",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Café Amazon": {
- "tags": {
- "name": "Café Amazon",
- "amenity": "cafe"
- },
- "name": "Café Amazon",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Café Central": {
- "tags": {
- "name": "Café Central",
- "amenity": "cafe"
- },
- "name": "Café Central",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Café de la Place": {
- "tags": {
- "name": "Café de la Place",
- "amenity": "cafe"
- },
- "name": "Café de la Place",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Café des Sports": {
- "tags": {
- "name": "Café des Sports",
- "amenity": "cafe"
- },
- "name": "Café des Sports",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Caribou Coffee": {
- "tags": {
- "name": "Caribou Coffee",
- "amenity": "cafe"
- },
- "name": "Caribou Coffee",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Coffee Fellows": {
- "tags": {
- "name": "Coffee Fellows",
- "amenity": "cafe"
- },
- "name": "Coffee Fellows",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Coffee House": {
- "tags": {
- "name": "Coffee House",
- "amenity": "cafe"
- },
- "name": "Coffee House",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Coffee Island": {
- "tags": {
- "name": "Coffee Island",
- "amenity": "cafe"
- },
- "name": "Coffee Island",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Coffee Time": {
- "tags": {
- "name": "Coffee Time",
- "amenity": "cafe"
- },
- "name": "Coffee Time",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Costa": {
- "tags": {
- "name": "Costa",
- "amenity": "cafe"
- },
- "name": "Costa",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Country Style": {
- "tags": {
- "name": "Country Style",
- "amenity": "cafe"
- },
- "name": "Country Style",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Dunkin' Donuts": {
- "tags": {
- "name": "Dunkin' Donuts",
- "cuisine": "donut",
- "amenity": "cafe"
- },
- "name": "Dunkin' Donuts",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Eiscafe Dolomiti": {
- "tags": {
- "name": "Eiscafe Dolomiti",
- "amenity": "cafe"
- },
- "name": "Eiscafe Dolomiti",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Eiscafe Venezia": {
- "tags": {
- "name": "Eiscafe Venezia",
- "amenity": "cafe"
- },
- "name": "Eiscafe Venezia",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Espresso House": {
- "tags": {
- "name": "Espresso House",
- "amenity": "cafe"
- },
- "name": "Espresso House",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Havanna": {
- "tags": {
- "name": "Havanna",
- "amenity": "cafe"
- },
- "name": "Havanna",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Internet Cafe": {
- "tags": {
- "name": "Internet Cafe",
- "amenity": "cafe"
- },
- "name": "Internet Cafe",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Kafe": {
- "tags": {
- "name": "Kafe",
- "amenity": "cafe"
- },
- "name": "Kafe",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Krispy Kreme": {
- "tags": {
- "name": "Krispy Kreme",
- "amenity": "cafe"
- },
- "name": "Krispy Kreme",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Le Pain Quotidien": {
- "tags": {
- "name": "Le Pain Quotidien",
- "amenity": "cafe"
- },
- "name": "Le Pain Quotidien",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/McCafé": {
- "tags": {
- "name": "McCafé",
- "amenity": "cafe",
- "cuisine": "coffee_shop"
- },
- "name": "McCafé",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Peet's Coffee & Tea": {
- "tags": {
- "name": "Peet's Coffee & Tea",
- "amenity": "cafe"
- },
- "name": "Peet's Coffee & Tea",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Pret A Manger": {
- "tags": {
- "name": "Pret A Manger",
- "amenity": "cafe"
- },
- "name": "Pret A Manger",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Prime": {
- "tags": {
- "name": "Prime",
- "amenity": "cafe"
- },
- "name": "Prime",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Second Cup": {
- "tags": {
- "name": "Second Cup",
- "amenity": "cafe"
- },
- "name": "Second Cup",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Segafredo": {
- "tags": {
- "name": "Segafredo",
- "amenity": "cafe"
- },
- "name": "Segafredo",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Starbucks": {
- "tags": {
- "name": "Starbucks",
- "cuisine": "coffee_shop",
- "amenity": "cafe"
- },
- "name": "Starbucks",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/The Coffee Bean & Tea Leaf": {
- "tags": {
- "name": "The Coffee Bean & Tea Leaf",
- "amenity": "cafe"
- },
- "name": "The Coffee Bean & Tea Leaf",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/The Coffee Club": {
- "tags": {
- "name": "The Coffee Club",
- "amenity": "cafe"
- },
- "name": "The Coffee Club",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Tim Hortons": {
- "tags": {
- "name": "Tim Hortons",
- "amenity": "cafe"
- },
- "name": "Tim Hortons",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Traveler's Coffee": {
- "tags": {
- "name": "Traveler's Coffee",
- "amenity": "cafe"
- },
- "name": "Traveler's Coffee",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Wayne's Coffee": {
- "tags": {
- "name": "Wayne's Coffee",
- "amenity": "cafe"
- },
- "name": "Wayne's Coffee",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Бистро": {
- "tags": {
- "name": "Бистро",
- "amenity": "cafe"
- },
- "name": "Бистро",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Буфет": {
- "tags": {
- "name": "Буфет",
- "amenity": "cafe"
- },
- "name": "Буфет",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Встреча": {
- "tags": {
- "name": "Встреча",
- "amenity": "cafe"
- },
- "name": "Встреча",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Даблби": {
- "tags": {
- "name": "Даблби",
- "amenity": "cafe"
- },
- "name": "Даблби",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Закусочная": {
- "tags": {
- "name": "Закусочная",
- "amenity": "cafe"
- },
- "name": "Закусочная",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Кофе Хауз": {
- "tags": {
- "name": "Кофе Хауз",
- "amenity": "cafe"
- },
- "name": "Кофе Хауз",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Кофейня": {
- "tags": {
- "name": "Кофейня",
- "amenity": "cafe"
- },
- "name": "Кофейня",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Лакомка": {
- "tags": {
- "name": "Лакомка",
- "amenity": "cafe"
- },
- "name": "Лакомка",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Летнее кафе": {
- "tags": {
- "name": "Летнее кафе",
- "amenity": "cafe"
- },
- "name": "Летнее кафе",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Пельменная": {
- "tags": {
- "name": "Пельменная",
- "amenity": "cafe"
- },
- "name": "Пельменная",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Пиццерия": {
- "tags": {
- "name": "Пиццерия",
- "amenity": "cafe"
- },
- "name": "Пиццерия",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Рандеву": {
- "tags": {
- "name": "Рандеву",
- "amenity": "cafe"
- },
- "name": "Рандеву",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Сказка": {
- "tags": {
- "name": "Сказка",
- "amenity": "cafe"
- },
- "name": "Сказка",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Старбакс": {
- "tags": {
- "name": "Старбакс",
- "amenity": "cafe"
- },
- "name": "Старбакс",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Столовая": {
- "tags": {
- "name": "Столовая",
- "amenity": "cafe"
- },
- "name": "Столовая",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Уют": {
- "tags": {
- "name": "Уют",
- "amenity": "cafe"
- },
- "name": "Уют",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Хуторок": {
- "tags": {
- "name": "Хуторок",
- "amenity": "cafe"
- },
- "name": "Хуторок",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Шашлычная": {
- "tags": {
- "name": "Шашлычная",
- "amenity": "cafe"
- },
- "name": "Шашлычная",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Шоколад": {
- "tags": {
- "name": "Шоколад",
- "amenity": "cafe"
- },
- "name": "Шоколад",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/Шоколадница": {
- "tags": {
- "name": "Шоколадница",
- "amenity": "cafe"
- },
- "name": "Шоколадница",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/ארומה": {
- "tags": {
- "name": "ארומה",
- "amenity": "cafe"
- },
- "name": "ארומה",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/مقهى": {
- "tags": {
- "name": "مقهى",
- "amenity": "cafe"
- },
- "name": "مقهى",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/คาเฟ่ อเมซอน": {
- "tags": {
- "name": "คาเฟ่ อเมซอน",
- "amenity": "cafe"
- },
- "name": "คาเฟ่ อเมซอน",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/エクセルシオール カフェ": {
- "tags": {
- "name": "エクセルシオール カフェ",
- "amenity": "cafe"
- },
- "name": "エクセルシオール カフェ",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/カフェ・ド・クリエ": {
- "tags": {
- "name": "カフェ・ド・クリエ",
- "name:en": "Cafe de CRIE",
- "amenity": "cafe"
- },
- "name": "カフェ・ド・クリエ",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/カフェ・ベローチェ": {
- "tags": {
- "name": "カフェ・ベローチェ",
- "amenity": "cafe"
- },
- "name": "カフェ・ベローチェ",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/コメダ珈琲店": {
- "tags": {
- "name": "コメダ珈琲店",
- "amenity": "cafe"
- },
- "name": "コメダ珈琲店",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/サンマルクカフェ": {
- "tags": {
- "name": "サンマルクカフェ",
- "amenity": "cafe"
- },
- "name": "サンマルクカフェ",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/スターバックス": {
- "tags": {
- "name": "スターバックス",
- "name:en": "Starbucks",
- "amenity": "cafe"
- },
- "name": "スターバックス",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/タリーズコーヒー": {
- "tags": {
- "name": "タリーズコーヒー",
- "amenity": "cafe"
- },
- "name": "タリーズコーヒー",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/ドトールコーヒーショップ": {
- "tags": {
- "name": "ドトールコーヒーショップ",
- "name:en": "Doutor",
- "amenity": "cafe"
- },
- "name": "ドトールコーヒーショップ",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/星巴克": {
- "tags": {
- "name": "星巴克",
- "amenity": "cafe"
- },
- "name": "星巴克",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/cafe/스타벅스": {
- "tags": {
- "name": "스타벅스",
- "amenity": "cafe"
- },
- "name": "스타벅스",
- "icon": "maki-cafe",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/car_rental/Alamo": {
- "tags": {
- "name": "Alamo",
- "amenity": "car_rental"
- },
- "name": "Alamo",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_rental/Avis": {
- "tags": {
- "name": "Avis",
- "amenity": "car_rental"
- },
- "name": "Avis",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_rental/Budget": {
- "tags": {
- "name": "Budget",
- "amenity": "car_rental"
- },
- "name": "Budget",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_rental/Enterprise": {
- "tags": {
- "name": "Enterprise",
- "amenity": "car_rental"
- },
- "name": "Enterprise",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_rental/Enterprise Rent-a-Car": {
- "tags": {
- "name": "Enterprise Rent-a-Car",
- "amenity": "car_rental"
- },
- "name": "Enterprise Rent-a-Car",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_rental/Europcar": {
- "tags": {
- "name": "Europcar",
- "amenity": "car_rental"
- },
- "name": "Europcar",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_rental/Hertz": {
- "tags": {
- "name": "Hertz",
- "amenity": "car_rental"
- },
- "name": "Hertz",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_rental/Localiza": {
- "tags": {
- "name": "Localiza",
- "amenity": "car_rental"
- },
- "name": "Localiza",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_rental/Sixt": {
- "tags": {
- "name": "Sixt",
- "amenity": "car_rental"
- },
- "name": "Sixt",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_rental/Thrifty": {
- "tags": {
- "name": "Thrifty",
- "amenity": "car_rental"
- },
- "name": "Thrifty",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_rental/U-Haul": {
- "tags": {
- "name": "U-Haul",
- "amenity": "car_rental"
- },
- "name": "U-Haul",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_rental/オリックスレンタカー": {
- "tags": {
- "name": "オリックスレンタカー",
- "amenity": "car_rental"
- },
- "name": "オリックスレンタカー",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_rental/トヨタレンタカー": {
- "tags": {
- "name": "トヨタレンタカー",
- "amenity": "car_rental"
- },
- "name": "トヨタレンタカー",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_rental/トヨタレンタリース": {
- "tags": {
- "name": "トヨタレンタリース",
- "amenity": "car_rental"
- },
- "name": "トヨタレンタリース",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_rental/ニッポンレンタカー": {
- "tags": {
- "name": "ニッポンレンタカー",
- "amenity": "car_rental"
- },
- "name": "ニッポンレンタカー",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_wash/Autolavaggio": {
- "tags": {
- "name": "Autolavaggio",
- "amenity": "car_wash"
- },
- "name": "Autolavaggio",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_wash/H-E-B Car Wash": {
- "tags": {
- "name": "H-E-B Car Wash",
- "amenity": "car_wash"
- },
- "name": "H-E-B Car Wash",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_wash/Lavage Auto": {
- "tags": {
- "name": "Lavage Auto",
- "amenity": "car_wash"
- },
- "name": "Lavage Auto",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_wash/Lavazh": {
- "tags": {
- "name": "Lavazh",
- "amenity": "car_wash"
- },
- "name": "Lavazh",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_wash/Myjnia": {
- "tags": {
- "name": "Myjnia",
- "amenity": "car_wash"
- },
- "name": "Myjnia",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_wash/Myjnia bezdotykowa": {
- "tags": {
- "name": "Myjnia bezdotykowa",
- "amenity": "car_wash"
- },
- "name": "Myjnia bezdotykowa",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_wash/Myjnia samochodowa": {
- "tags": {
- "name": "Myjnia samochodowa",
- "amenity": "car_wash"
- },
- "name": "Myjnia samochodowa",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_wash/Spălătorie Auto": {
- "tags": {
- "name": "Spălătorie Auto",
- "amenity": "car_wash"
- },
- "name": "Spălătorie Auto",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_wash/Spălătorie auto": {
- "tags": {
- "name": "Spălătorie auto",
- "amenity": "car_wash"
- },
- "name": "Spălătorie auto",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/car_wash/Автомийка": {
- "tags": {
- "name": "Автомийка",
- "amenity": "car_wash"
- },
- "name": "Автомийка",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/cinema/Cinema City": {
- "tags": {
- "name": "Cinema City",
- "amenity": "cinema"
- },
- "name": "Cinema City",
- "icon": "maki-cinema",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/cinema/Cinemark": {
- "tags": {
- "name": "Cinemark",
- "amenity": "cinema"
- },
- "name": "Cinemark",
- "icon": "maki-cinema",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/cinema/Cinemex": {
- "tags": {
- "name": "Cinemex",
- "amenity": "cinema"
- },
- "name": "Cinemex",
- "icon": "maki-cinema",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/cinema/Cinepolis": {
- "tags": {
- "name": "Cinepolis",
- "amenity": "cinema"
- },
- "name": "Cinepolis",
- "icon": "maki-cinema",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/cinema/Cineworld": {
- "tags": {
- "name": "Cineworld",
- "amenity": "cinema"
- },
- "name": "Cineworld",
- "icon": "maki-cinema",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/cinema/Odeon": {
- "tags": {
- "name": "Odeon",
- "amenity": "cinema"
- },
- "name": "Odeon",
- "icon": "maki-cinema",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/clinic/ФАП": {
- "tags": {
- "name": "ФАП",
- "healthcare": "clinic",
- "amenity": "clinic"
- },
- "name": "ФАП",
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/dentist/Aspen Dental": {
- "tags": {
- "name": "Aspen Dental",
- "healthcare": "dentist",
- "amenity": "dentist"
- },
- "name": "Aspen Dental",
- "icon": "maki-dentist",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/dentist/Family Dentistry": {
- "tags": {
- "name": "Family Dentistry",
- "healthcare": "dentist",
- "amenity": "dentist"
- },
- "name": "Family Dentistry",
- "icon": "maki-dentist",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/dentist/Vitaldent": {
- "tags": {
- "name": "Vitaldent",
- "healthcare": "dentist",
- "amenity": "dentist"
- },
- "name": "Vitaldent",
- "icon": "maki-dentist",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/dentist/Стоматолог": {
- "tags": {
- "name": "Стоматолог",
- "healthcare": "dentist",
- "amenity": "dentist"
- },
- "name": "Стоматолог",
- "icon": "maki-dentist",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/dentist/Стоматологія": {
- "tags": {
- "name": "Стоматологія",
- "healthcare": "dentist",
- "amenity": "dentist"
- },
- "name": "Стоматологія",
- "icon": "maki-dentist",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/doctors/Háziorvosi rendelő": {
- "tags": {
- "name": "Háziorvosi rendelő",
- "healthcare": "doctor",
- "amenity": "doctors"
- },
- "name": "Háziorvosi rendelő",
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/doctors/Инвитро": {
- "tags": {
- "name": "Инвитро",
- "healthcare": "doctor",
- "amenity": "doctors"
- },
- "name": "Инвитро",
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "amenity/driving_school/Автодром": {
- "tags": {
- "name": "Автодром",
- "amenity": "driving_school"
- },
- "name": "Автодром",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fast_food/A&W": {
- "tags": {
- "name": "A&W",
- "amenity": "fast_food"
- },
- "name": "A&W",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Ali Baba": {
- "tags": {
- "name": "Ali Baba",
- "amenity": "fast_food"
- },
- "name": "Ali Baba",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Angel's Burger": {
- "tags": {
- "name": "Angel's Burger",
- "amenity": "fast_food"
- },
- "name": "Angel's Burger",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Antalya": {
- "tags": {
- "name": "Antalya",
- "amenity": "fast_food"
- },
- "name": "Antalya",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Arby's": {
- "tags": {
- "name": "Arby's",
- "amenity": "fast_food"
- },
- "name": "Arby's",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Asia Bistro": {
- "tags": {
- "name": "Asia Bistro",
- "amenity": "fast_food"
- },
- "name": "Asia Bistro",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Asia Wok": {
- "tags": {
- "name": "Asia Wok",
- "amenity": "fast_food"
- },
- "name": "Asia Wok",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Baskin-Robbins": {
- "tags": {
- "name": "Baskin-Robbins",
- "amenity": "fast_food"
- },
- "name": "Baskin-Robbins",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Bistro": {
- "tags": {
- "name": "Bistro",
- "amenity": "fast_food"
- },
- "name": "Bistro",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Bob's": {
- "tags": {
- "name": "Bob's",
- "amenity": "fast_food"
- },
- "name": "Bob's",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Bojangles": {
- "tags": {
- "name": "Bojangles",
- "amenity": "fast_food"
- },
- "name": "Bojangles",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Booster Juice": {
- "tags": {
- "name": "Booster Juice",
- "amenity": "fast_food"
- },
- "name": "Booster Juice",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Boston Market": {
- "tags": {
- "name": "Boston Market",
- "amenity": "fast_food"
- },
- "name": "Boston Market",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Braum's": {
- "tags": {
- "name": "Braum's",
- "amenity": "fast_food"
- },
- "name": "Braum's",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Burger King": {
- "tags": {
- "name": "Burger King",
- "cuisine": "burger",
- "amenity": "fast_food"
- },
- "name": "Burger King",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Burger Machine": {
- "tags": {
- "name": "Burger Machine",
- "amenity": "fast_food"
- },
- "name": "Burger Machine",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Büfé": {
- "tags": {
- "name": "Büfé",
- "amenity": "fast_food"
- },
- "name": "Büfé",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Captain D's": {
- "tags": {
- "name": "Captain D's",
- "amenity": "fast_food"
- },
- "name": "Captain D's",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Carl's Jr.": {
- "tags": {
- "name": "Carl's Jr.",
- "cuisine": "burger",
- "amenity": "fast_food"
- },
- "name": "Carl's Jr.",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Chick-fil-A": {
- "tags": {
- "name": "Chick-fil-A",
- "cuisine": "chicken",
- "amenity": "fast_food"
- },
- "name": "Chick-fil-A",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Chicken Express": {
- "tags": {
- "name": "Chicken Express",
- "amenity": "fast_food"
- },
- "name": "Chicken Express",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Chipotle": {
- "tags": {
- "name": "Chipotle",
- "cuisine": "mexican",
- "amenity": "fast_food"
- },
- "name": "Chipotle",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Chowking": {
- "tags": {
- "name": "Chowking",
- "amenity": "fast_food"
- },
- "name": "Chowking",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Church's Chicken": {
- "tags": {
- "name": "Church's Chicken",
- "amenity": "fast_food"
- },
- "name": "Church's Chicken",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/CoCo壱番屋": {
- "tags": {
- "name": "CoCo壱番屋",
- "amenity": "fast_food"
- },
- "name": "CoCo壱番屋",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Cold Stone Creamery": {
- "tags": {
- "name": "Cold Stone Creamery",
- "amenity": "fast_food"
- },
- "name": "Cold Stone Creamery",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Cook Out": {
- "tags": {
- "name": "Cook Out",
- "amenity": "fast_food"
- },
- "name": "Cook Out",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Culver's": {
- "tags": {
- "name": "Culver's",
- "amenity": "fast_food"
- },
- "name": "Culver's",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/DQ": {
- "tags": {
- "name": "DQ",
- "amenity": "fast_food"
- },
- "name": "DQ",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Dairy Queen": {
- "tags": {
- "name": "Dairy Queen",
- "amenity": "fast_food"
- },
- "name": "Dairy Queen",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Del Taco": {
- "tags": {
- "name": "Del Taco",
- "amenity": "fast_food"
- },
- "name": "Del Taco",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Domino's Pizza": {
- "tags": {
- "name": "Domino's Pizza",
- "cuisine": "pizza",
- "amenity": "fast_food"
- },
- "name": "Domino's Pizza",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/El Pollo Loco": {
- "tags": {
- "name": "El Pollo Loco",
- "amenity": "fast_food"
- },
- "name": "El Pollo Loco",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Everest": {
- "tags": {
- "name": "Everest",
- "amenity": "fast_food"
- },
- "name": "Everest",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Extreme Pita": {
- "tags": {
- "name": "Extreme Pita",
- "amenity": "fast_food"
- },
- "name": "Extreme Pita",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Fazoli's": {
- "tags": {
- "name": "Fazoli's",
- "amenity": "fast_food"
- },
- "name": "Fazoli's",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Firehouse Subs": {
- "tags": {
- "name": "Firehouse Subs",
- "amenity": "fast_food"
- },
- "name": "Firehouse Subs",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Fish & Chips": {
- "tags": {
- "name": "Fish & Chips",
- "amenity": "fast_food"
- },
- "name": "Fish & Chips",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Fish and Chips": {
- "tags": {
- "name": "Fish and Chips",
- "amenity": "fast_food"
- },
- "name": "Fish and Chips",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Five Guys": {
- "tags": {
- "name": "Five Guys",
- "amenity": "fast_food"
- },
- "name": "Five Guys",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Greenwich": {
- "tags": {
- "name": "Greenwich",
- "amenity": "fast_food"
- },
- "name": "Greenwich",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Habib's": {
- "tags": {
- "name": "Habib's",
- "amenity": "fast_food"
- },
- "name": "Habib's",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Hallo Pizza": {
- "tags": {
- "name": "Hallo Pizza",
- "amenity": "fast_food"
- },
- "name": "Hallo Pizza",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Hardee's": {
- "tags": {
- "name": "Hardee's",
- "cuisine": "burger",
- "amenity": "fast_food"
- },
- "name": "Hardee's",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Harvey's": {
- "tags": {
- "name": "Harvey's",
- "amenity": "fast_food"
- },
- "name": "Harvey's",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Hesburger": {
- "tags": {
- "name": "Hesburger",
- "amenity": "fast_food"
- },
- "name": "Hesburger",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Hungry Jacks": {
- "tags": {
- "name": "Hungry Jacks",
- "cuisine": "burger",
- "amenity": "fast_food"
- },
- "name": "Hungry Jacks",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/In-N-Out Burger": {
- "tags": {
- "name": "In-N-Out Burger",
- "amenity": "fast_food"
- },
- "name": "In-N-Out Burger",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Istanbul": {
- "tags": {
- "name": "Istanbul",
- "amenity": "fast_food"
- },
- "name": "Istanbul",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Istanbul Kebab": {
- "tags": {
- "name": "Istanbul Kebab",
- "amenity": "fast_food"
- },
- "name": "Istanbul Kebab",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Jack in the Box": {
- "tags": {
- "name": "Jack in the Box",
- "cuisine": "burger",
- "amenity": "fast_food"
- },
- "name": "Jack in the Box",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Jamba Juice": {
- "tags": {
- "name": "Jamba Juice",
- "amenity": "fast_food"
- },
- "name": "Jamba Juice",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Jersey Mike's Subs": {
- "tags": {
- "name": "Jersey Mike's Subs",
- "amenity": "fast_food"
- },
- "name": "Jersey Mike's Subs",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Jimmy John's": {
- "tags": {
- "name": "Jimmy John's",
- "cuisine": "sandwich",
- "amenity": "fast_food"
- },
- "name": "Jimmy John's",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Jollibee": {
- "tags": {
- "name": "Jollibee",
- "amenity": "fast_food"
- },
- "name": "Jollibee",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/KFC": {
- "tags": {
- "name": "KFC",
- "cuisine": "chicken",
- "amenity": "fast_food"
- },
- "name": "KFC",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/KFC/Taco Bell": {
- "tags": {
- "name": "KFC/Taco Bell",
- "amenity": "fast_food"
- },
- "name": "KFC/Taco Bell",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Kebab House": {
- "tags": {
- "name": "Kebab House",
- "amenity": "fast_food"
- },
- "name": "Kebab House",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Kebabai": {
- "tags": {
- "name": "Kebabai",
- "amenity": "fast_food"
- },
- "name": "Kebabai",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Kochlöffel": {
- "tags": {
- "name": "Kochlöffel",
- "amenity": "fast_food"
- },
- "name": "Kochlöffel",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Kotipizza": {
- "tags": {
- "name": "Kotipizza",
- "amenity": "fast_food"
- },
- "name": "Kotipizza",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Krystal": {
- "tags": {
- "name": "Krystal",
- "amenity": "fast_food"
- },
- "name": "Krystal",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Little Caesars": {
- "tags": {
- "name": "Little Caesars",
- "amenity": "fast_food"
- },
- "name": "Little Caesars",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Little Caesars Pizza": {
- "tags": {
- "name": "Little Caesars Pizza",
- "amenity": "fast_food"
- },
- "name": "Little Caesars Pizza",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Long John Silver's": {
- "tags": {
- "name": "Long John Silver's",
- "amenity": "fast_food"
- },
- "name": "Long John Silver's",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Lotteria": {
- "tags": {
- "name": "Lotteria",
- "amenity": "fast_food"
- },
- "name": "Lotteria",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Max": {
- "tags": {
- "name": "Max",
- "amenity": "fast_food"
- },
- "name": "Max",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/McDonald's": {
- "tags": {
- "name": "McDonald's",
- "cuisine": "burger",
- "amenity": "fast_food"
- },
- "name": "McDonald's",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Minute Burger": {
- "tags": {
- "name": "Minute Burger",
- "amenity": "fast_food"
- },
- "name": "Minute Burger",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Mr. Sub": {
- "tags": {
- "name": "Mr. Sub",
- "amenity": "fast_food"
- },
- "name": "Mr. Sub",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/New York Pizza": {
- "tags": {
- "name": "New York Pizza",
- "amenity": "fast_food"
- },
- "name": "New York Pizza",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Nordsee": {
- "tags": {
- "name": "Nordsee",
- "amenity": "fast_food"
- },
- "name": "Nordsee",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Panda Express": {
- "tags": {
- "name": "Panda Express",
- "cuisine": "chinese",
- "amenity": "fast_food"
- },
- "name": "Panda Express",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Papa John's": {
- "tags": {
- "name": "Papa John's",
- "cuisine": "pizza",
- "amenity": "fast_food"
- },
- "name": "Papa John's",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Papa Murphy's": {
- "tags": {
- "name": "Papa Murphy's",
- "amenity": "fast_food"
- },
- "name": "Papa Murphy's",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Pinulito": {
- "tags": {
- "name": "Pinulito",
- "amenity": "fast_food"
- },
- "name": "Pinulito",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Pita Pit": {
- "tags": {
- "name": "Pita Pit",
- "amenity": "fast_food"
- },
- "name": "Pita Pit",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Pizza Hut Delivery": {
- "tags": {
- "name": "Pizza Hut Delivery",
- "amenity": "fast_food"
- },
- "name": "Pizza Hut Delivery",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Pizza King": {
- "tags": {
- "name": "Pizza King",
- "amenity": "fast_food"
- },
- "name": "Pizza King",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Pizza Nova": {
- "tags": {
- "name": "Pizza Nova",
- "amenity": "fast_food"
- },
- "name": "Pizza Nova",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Pizza Pizza": {
- "tags": {
- "name": "Pizza Pizza",
- "amenity": "fast_food"
- },
- "name": "Pizza Pizza",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Pollo Campero": {
- "tags": {
- "name": "Pollo Campero",
- "amenity": "fast_food"
- },
- "name": "Pollo Campero",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Pollo Granjero": {
- "tags": {
- "name": "Pollo Granjero",
- "amenity": "fast_food"
- },
- "name": "Pollo Granjero",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Popeye's": {
- "tags": {
- "name": "Popeye's",
- "cuisine": "chicken",
- "amenity": "fast_food"
- },
- "name": "Popeye's",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Popeyes Louisiana Kitchen": {
- "tags": {
- "name": "Popeyes Louisiana Kitchen",
- "amenity": "fast_food"
- },
- "name": "Popeyes Louisiana Kitchen",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Qdoba": {
- "tags": {
- "name": "Qdoba",
- "amenity": "fast_food"
- },
- "name": "Qdoba",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Quick": {
- "tags": {
- "name": "Quick",
- "amenity": "fast_food"
- },
- "name": "Quick",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Quiznos": {
- "tags": {
- "name": "Quiznos",
- "amenity": "fast_food"
- },
- "name": "Quiznos",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Rally's": {
- "tags": {
- "name": "Rally's",
- "amenity": "fast_food"
- },
- "name": "Rally's",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Red Rooster": {
- "tags": {
- "name": "Red Rooster",
- "amenity": "fast_food"
- },
- "name": "Red Rooster",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Sbarro": {
- "tags": {
- "name": "Sbarro",
- "amenity": "fast_food"
- },
- "name": "Sbarro",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Schlotzsky's Deli": {
- "tags": {
- "name": "Schlotzsky's Deli",
- "amenity": "fast_food"
- },
- "name": "Schlotzsky's Deli",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Sibylla": {
- "tags": {
- "name": "Sibylla",
- "amenity": "fast_food"
- },
- "name": "Sibylla",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Sonic": {
- "tags": {
- "name": "Sonic",
- "cuisine": "burger",
- "amenity": "fast_food"
- },
- "name": "Sonic",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Steers": {
- "tags": {
- "name": "Steers",
- "amenity": "fast_food"
- },
- "name": "Steers",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Subway": {
- "tags": {
- "name": "Subway",
- "amenity": "fast_food"
- },
- "name": "Subway",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Taco Bell": {
- "tags": {
- "name": "Taco Bell",
- "cuisine": "mexican",
- "amenity": "fast_food"
- },
- "name": "Taco Bell",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Taco Bueno": {
- "tags": {
- "name": "Taco Bueno",
- "amenity": "fast_food"
- },
- "name": "Taco Bueno",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Taco Cabana": {
- "tags": {
- "name": "Taco Cabana",
- "amenity": "fast_food"
- },
- "name": "Taco Cabana",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Taco Del Mar": {
- "tags": {
- "name": "Taco Del Mar",
- "amenity": "fast_food"
- },
- "name": "Taco Del Mar",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Taco John's": {
- "tags": {
- "name": "Taco John's",
- "amenity": "fast_food"
- },
- "name": "Taco John's",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Taco Time": {
- "tags": {
- "name": "Taco Time",
- "amenity": "fast_food"
- },
- "name": "Taco Time",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Telepizza": {
- "tags": {
- "name": "Telepizza",
- "amenity": "fast_food"
- },
- "name": "Telepizza",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Thai Express": {
- "tags": {
- "name": "Thai Express",
- "amenity": "fast_food"
- },
- "name": "Thai Express",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/The Pizza Company": {
- "tags": {
- "name": "The Pizza Company",
- "amenity": "fast_food"
- },
- "name": "The Pizza Company",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Wendy's": {
- "tags": {
- "name": "Wendy's",
- "cuisine": "burger",
- "amenity": "fast_food"
- },
- "name": "Wendy's",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Whataburger": {
- "tags": {
- "name": "Whataburger",
- "amenity": "fast_food"
- },
- "name": "Whataburger",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/White Castle": {
- "tags": {
- "name": "White Castle",
- "amenity": "fast_food"
- },
- "name": "White Castle",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Wienerschnitzel": {
- "tags": {
- "name": "Wienerschnitzel",
- "amenity": "fast_food"
- },
- "name": "Wienerschnitzel",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Wimpy": {
- "tags": {
- "name": "Wimpy",
- "amenity": "fast_food"
- },
- "name": "Wimpy",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Zaxby's": {
- "tags": {
- "name": "Zaxby's",
- "amenity": "fast_food"
- },
- "name": "Zaxby's",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Γρηγόρης": {
- "tags": {
- "name": "Γρηγόρης",
- "amenity": "fast_food"
- },
- "name": "Γρηγόρης",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Бургер Кинг": {
- "tags": {
- "name": "Бургер Кинг",
- "amenity": "fast_food"
- },
- "name": "Бургер Кинг",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Крошка Картошка": {
- "tags": {
- "name": "Крошка Картошка",
- "amenity": "fast_food"
- },
- "name": "Крошка Картошка",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Макдоналдс": {
- "tags": {
- "name": "Макдоналдс",
- "name:en": "McDonald's",
- "amenity": "fast_food"
- },
- "name": "Макдоналдс",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Робин Сдобин": {
- "tags": {
- "name": "Робин Сдобин",
- "amenity": "fast_food"
- },
- "name": "Робин Сдобин",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Русский Аппетит": {
- "tags": {
- "name": "Русский Аппетит",
- "amenity": "fast_food"
- },
- "name": "Русский Аппетит",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Сабвэй": {
- "tags": {
- "name": "Сабвэй",
- "amenity": "fast_food"
- },
- "name": "Сабвэй",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Стардог!s": {
- "tags": {
- "name": "Стардог!s",
- "amenity": "fast_food"
- },
- "name": "Стардог!s",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Теремок": {
- "tags": {
- "name": "Теремок",
- "amenity": "fast_food"
- },
- "name": "Теремок",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Шаверма": {
- "tags": {
- "name": "Шаверма",
- "amenity": "fast_food"
- },
- "name": "Шаверма",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/Шаурма": {
- "tags": {
- "name": "Шаурма",
- "amenity": "fast_food"
- },
- "name": "Шаурма",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/かっぱ寿司": {
- "tags": {
- "name": "かっぱ寿司",
- "amenity": "fast_food"
- },
- "name": "かっぱ寿司",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/かつや": {
- "tags": {
- "name": "かつや",
- "amenity": "fast_food"
- },
- "name": "かつや",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/くら寿司": {
- "tags": {
- "name": "くら寿司",
- "amenity": "fast_food"
- },
- "name": "くら寿司",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/すき家": {
- "tags": {
- "name": "すき家",
- "name:en": "Sukiya",
- "amenity": "fast_food"
- },
- "name": "すき家",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/なか卯": {
- "tags": {
- "name": "なか卯",
- "amenity": "fast_food"
- },
- "name": "なか卯",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/ほっかほっか亭": {
- "tags": {
- "name": "ほっかほっか亭",
- "amenity": "fast_food"
- },
- "name": "ほっかほっか亭",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/ほっともっと": {
- "tags": {
- "name": "ほっともっと",
- "amenity": "fast_food"
- },
- "name": "ほっともっと",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/オリジン弁当": {
- "tags": {
- "name": "オリジン弁当",
- "amenity": "fast_food"
- },
- "name": "オリジン弁当",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/ケンタッキーフライドチキン": {
- "tags": {
- "name": "ケンタッキーフライドチキン",
- "cuisine": "chicken",
- "name:en": "KFC",
- "amenity": "fast_food"
- },
- "name": "ケンタッキーフライドチキン",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/サブウェイ": {
- "tags": {
- "name": "サブウェイ",
- "amenity": "fast_food"
- },
- "name": "サブウェイ",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/スシロー": {
- "tags": {
- "name": "スシロー",
- "amenity": "fast_food"
- },
- "name": "スシロー",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/マクドナルド": {
- "tags": {
- "name": "マクドナルド",
- "cuisine": "burger",
- "name:en": "McDonald's",
- "amenity": "fast_food"
- },
- "name": "マクドナルド",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/ミスタードーナツ": {
- "tags": {
- "name": "ミスタードーナツ",
- "amenity": "fast_food"
- },
- "name": "ミスタードーナツ",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/モスバーガー": {
- "tags": {
- "name": "モスバーガー",
- "name:en": "Mos Burger",
- "amenity": "fast_food"
- },
- "name": "モスバーガー",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/ロッテリア": {
- "tags": {
- "name": "ロッテリア",
- "amenity": "fast_food"
- },
- "name": "ロッテリア",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/吉野家": {
- "tags": {
- "name": "吉野家",
- "amenity": "fast_food"
- },
- "name": "吉野家",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/幸楽苑": {
- "tags": {
- "name": "幸楽苑",
- "amenity": "fast_food"
- },
- "name": "幸楽苑",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/摩斯漢堡": {
- "tags": {
- "name": "摩斯漢堡",
- "amenity": "fast_food"
- },
- "name": "摩斯漢堡",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/松屋": {
- "tags": {
- "name": "松屋",
- "name:en": "Matsuya",
- "amenity": "fast_food"
- },
- "name": "松屋",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/肯德基": {
- "tags": {
- "name": "肯德基",
- "amenity": "fast_food"
- },
- "name": "肯德基",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/麥當勞": {
- "tags": {
- "name": "麥當勞",
- "amenity": "fast_food"
- },
- "name": "麥當勞",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/麦当劳": {
- "tags": {
- "name": "麦当劳",
- "amenity": "fast_food"
- },
- "name": "麦当劳",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fast_food/롯데리아": {
- "tags": {
- "name": "롯데리아",
- "amenity": "fast_food"
- },
- "name": "롯데리아",
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "drive_through",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/fuel/76": {
- "tags": {
- "name": "76",
- "amenity": "fuel"
- },
- "name": "76",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/1-2-3": {
- "tags": {
- "name": "1-2-3",
- "amenity": "fuel"
- },
- "name": "1-2-3",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/ADNOC": {
- "tags": {
- "name": "ADNOC",
- "amenity": "fuel"
- },
- "name": "ADNOC",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/ANP": {
- "tags": {
- "name": "ANP",
- "amenity": "fuel"
- },
- "name": "ANP",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/ARAL": {
- "tags": {
- "name": "ARAL",
- "amenity": "fuel"
- },
- "name": "ARAL",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Aegean": {
- "tags": {
- "name": "Aegean",
- "amenity": "fuel"
- },
- "name": "Aegean",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Afriquia": {
- "tags": {
- "name": "Afriquia",
- "amenity": "fuel"
- },
- "name": "Afriquia",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Agip": {
- "tags": {
- "name": "Agip",
- "amenity": "fuel"
- },
- "name": "Agip",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Agrola": {
- "tags": {
- "name": "Agrola",
- "amenity": "fuel"
- },
- "name": "Agrola",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Alon": {
- "tags": {
- "name": "Alon",
- "amenity": "fuel"
- },
- "name": "Alon",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Alpet": {
- "tags": {
- "name": "Alpet",
- "amenity": "fuel"
- },
- "name": "Alpet",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Api": {
- "tags": {
- "name": "Api",
- "amenity": "fuel"
- },
- "name": "Api",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Aral": {
- "tags": {
- "name": "Aral",
- "amenity": "fuel"
- },
- "name": "Aral",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Arco": {
- "tags": {
- "name": "Arco",
- "amenity": "fuel"
- },
- "name": "Arco",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Avanti": {
- "tags": {
- "name": "Avanti",
- "amenity": "fuel"
- },
- "name": "Avanti",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Avia": {
- "tags": {
- "name": "Avia",
- "amenity": "fuel"
- },
- "name": "Avia",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/BEBECO": {
- "tags": {
- "name": "BEBECO",
- "amenity": "fuel"
- },
- "name": "BEBECO",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/BFT": {
- "tags": {
- "name": "BFT",
- "amenity": "fuel"
- },
- "name": "BFT",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/BHPetrol": {
- "tags": {
- "name": "BHPetrol",
- "amenity": "fuel"
- },
- "name": "BHPetrol",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/BP": {
- "tags": {
- "name": "BP",
- "amenity": "fuel"
- },
- "name": "BP",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/BR": {
- "tags": {
- "name": "BR",
- "amenity": "fuel"
- },
- "name": "BR",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Bangchak": {
- "tags": {
- "name": "Bangchak",
- "amenity": "fuel"
- },
- "name": "Bangchak",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Benzina": {
- "tags": {
- "name": "Benzina",
- "amenity": "fuel"
- },
- "name": "Benzina",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Bharat Petroleum": {
- "tags": {
- "name": "Bharat Petroleum",
- "amenity": "fuel"
- },
- "name": "Bharat Petroleum",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Bliska": {
- "tags": {
- "name": "Bliska",
- "amenity": "fuel"
- },
- "name": "Bliska",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/CAMPSA": {
- "tags": {
- "name": "CAMPSA",
- "amenity": "fuel"
- },
- "name": "CAMPSA",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/CARREFOUR": {
- "tags": {
- "name": "CARREFOUR",
- "amenity": "fuel"
- },
- "name": "CARREFOUR",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/CEPSA": {
- "tags": {
- "name": "CEPSA",
- "amenity": "fuel"
- },
- "name": "CEPSA",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/CNG": {
- "tags": {
- "name": "CNG",
- "amenity": "fuel"
- },
- "name": "CNG",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Caltex": {
- "tags": {
- "name": "Caltex",
- "amenity": "fuel"
- },
- "name": "Caltex",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Campsa": {
- "tags": {
- "name": "Campsa",
- "amenity": "fuel"
- },
- "name": "Campsa",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Casey's General Store": {
- "tags": {
- "name": "Casey's General Store",
- "amenity": "fuel"
- },
- "name": "Casey's General Store",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Cenex": {
- "tags": {
- "name": "Cenex",
- "amenity": "fuel"
- },
- "name": "Cenex",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Cepsa": {
- "tags": {
- "name": "Cepsa",
- "amenity": "fuel"
- },
- "name": "Cepsa",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Ceypetco": {
- "tags": {
- "name": "Ceypetco",
- "amenity": "fuel"
- },
- "name": "Ceypetco",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Chevron": {
- "tags": {
- "name": "Chevron",
- "amenity": "fuel"
- },
- "name": "Chevron",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Citgo": {
- "tags": {
- "name": "Citgo",
- "amenity": "fuel"
- },
- "name": "Citgo",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Clark": {
- "tags": {
- "name": "Clark",
- "amenity": "fuel"
- },
- "name": "Clark",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Coles Express": {
- "tags": {
- "name": "Coles Express",
- "amenity": "fuel"
- },
- "name": "Coles Express",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Conoco": {
- "tags": {
- "name": "Conoco",
- "amenity": "fuel"
- },
- "name": "Conoco",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Copec": {
- "tags": {
- "name": "Copec",
- "amenity": "fuel"
- },
- "name": "Copec",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Copetrol": {
- "tags": {
- "name": "Copetrol",
- "amenity": "fuel"
- },
- "name": "Copetrol",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Cosmo": {
- "tags": {
- "name": "Cosmo",
- "amenity": "fuel"
- },
- "name": "Cosmo",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Crodux": {
- "tags": {
- "name": "Crodux",
- "amenity": "fuel"
- },
- "name": "Crodux",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Delta": {
- "tags": {
- "name": "Delta",
- "amenity": "fuel"
- },
- "name": "Delta",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Diamond Shamrock": {
- "tags": {
- "name": "Diamond Shamrock",
- "amenity": "fuel"
- },
- "name": "Diamond Shamrock",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Drummed Fuel": {
- "tags": {
- "name": "Drummed Fuel",
- "amenity": "fuel"
- },
- "name": "Drummed Fuel",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/EKO": {
- "tags": {
- "name": "EKO",
- "amenity": "fuel"
- },
- "name": "EKO",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/ENEOS": {
- "tags": {
- "name": "ENEOS",
- "amenity": "fuel"
- },
- "name": "ENEOS",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/ENI": {
- "tags": {
- "name": "ENI",
- "amenity": "fuel"
- },
- "name": "ENI",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/ERG": {
- "tags": {
- "name": "ERG",
- "amenity": "fuel"
- },
- "name": "ERG",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Elan": {
- "tags": {
- "name": "Elan",
- "amenity": "fuel"
- },
- "name": "Elan",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Eneos": {
- "tags": {
- "name": "Eneos",
- "amenity": "fuel"
- },
- "name": "Eneos",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Engen": {
- "tags": {
- "name": "Engen",
- "amenity": "fuel"
- },
- "name": "Engen",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Eni": {
- "tags": {
- "name": "Eni",
- "amenity": "fuel"
- },
- "name": "Eni",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Erg": {
- "tags": {
- "name": "Erg",
- "amenity": "fuel"
- },
- "name": "Erg",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Esso": {
- "tags": {
- "name": "Esso",
- "amenity": "fuel"
- },
- "name": "Esso",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Esso Express": {
- "tags": {
- "name": "Esso Express",
- "amenity": "fuel"
- },
- "name": "Esso Express",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/EuroOil": {
- "tags": {
- "name": "EuroOil",
- "amenity": "fuel"
- },
- "name": "EuroOil",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Exxon": {
- "tags": {
- "name": "Exxon",
- "amenity": "fuel"
- },
- "name": "Exxon",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/F24": {
- "tags": {
- "name": "F24",
- "amenity": "fuel"
- },
- "name": "F24",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Firezone": {
- "tags": {
- "name": "Firezone",
- "amenity": "fuel"
- },
- "name": "Firezone",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Flying V": {
- "tags": {
- "name": "Flying V",
- "amenity": "fuel"
- },
- "name": "Flying V",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/GALP": {
- "tags": {
- "name": "GALP",
- "amenity": "fuel"
- },
- "name": "GALP",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Gazprom": {
- "tags": {
- "name": "Gazprom",
- "amenity": "fuel"
- },
- "name": "Gazprom",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/GetGo": {
- "tags": {
- "name": "GetGo",
- "amenity": "fuel"
- },
- "name": "GetGo",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Goil": {
- "tags": {
- "name": "Goil",
- "amenity": "fuel"
- },
- "name": "Goil",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Gulf": {
- "tags": {
- "name": "Gulf",
- "amenity": "fuel"
- },
- "name": "Gulf",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/H-E-B Fuel": {
- "tags": {
- "name": "H-E-B Fuel",
- "amenity": "fuel"
- },
- "name": "H-E-B Fuel",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/H-E-B Gas": {
- "tags": {
- "name": "H-E-B Gas",
- "amenity": "fuel"
- },
- "name": "H-E-B Gas",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/HEM": {
- "tags": {
- "name": "HEM",
- "amenity": "fuel"
- },
- "name": "HEM",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/HP": {
- "tags": {
- "name": "HP",
- "amenity": "fuel"
- },
- "name": "HP",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/HP Petrol Pump": {
- "tags": {
- "name": "HP Petrol Pump",
- "amenity": "fuel"
- },
- "name": "HP Petrol Pump",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Helios": {
- "tags": {
- "name": "Helios",
- "amenity": "fuel"
- },
- "name": "Helios",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Hess": {
- "tags": {
- "name": "Hess",
- "amenity": "fuel"
- },
- "name": "Hess",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Hindustan Petroleum": {
- "tags": {
- "name": "Hindustan Petroleum",
- "amenity": "fuel"
- },
- "name": "Hindustan Petroleum",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Holiday": {
- "tags": {
- "name": "Holiday",
- "amenity": "fuel"
- },
- "name": "Holiday",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Husky": {
- "tags": {
- "name": "Husky",
- "amenity": "fuel"
- },
- "name": "Husky",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/IES": {
- "tags": {
- "name": "IES",
- "amenity": "fuel"
- },
- "name": "IES",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/IP": {
- "tags": {
- "name": "IP",
- "amenity": "fuel"
- },
- "name": "IP",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Independent Fuel Station": {
- "tags": {
- "name": "Independent Fuel Station",
- "amenity": "fuel"
- },
- "name": "Independent Fuel Station",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Indian Oil": {
- "tags": {
- "name": "Indian Oil",
- "amenity": "fuel"
- },
- "name": "Indian Oil",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Indipend.": {
- "tags": {
- "name": "Indipend.",
- "amenity": "fuel"
- },
- "name": "Indipend.",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Ingo": {
- "tags": {
- "name": "Ingo",
- "amenity": "fuel"
- },
- "name": "Ingo",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Ipiranga": {
- "tags": {
- "name": "Ipiranga",
- "amenity": "fuel"
- },
- "name": "Ipiranga",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Irving": {
- "tags": {
- "name": "Irving",
- "amenity": "fuel"
- },
- "name": "Irving",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/JA-SS": {
- "tags": {
- "name": "JA-SS",
- "amenity": "fuel"
- },
- "name": "JA-SS",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/JOMO": {
- "tags": {
- "name": "JOMO",
- "amenity": "fuel"
- },
- "name": "JOMO",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Jet": {
- "tags": {
- "name": "Jet",
- "amenity": "fuel"
- },
- "name": "Jet",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Jetti": {
- "tags": {
- "name": "Jetti",
- "amenity": "fuel"
- },
- "name": "Jetti",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Kangaroo": {
- "tags": {
- "name": "Kangaroo",
- "amenity": "fuel"
- },
- "name": "Kangaroo",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Kobil": {
- "tags": {
- "name": "Kobil",
- "amenity": "fuel"
- },
- "name": "Kobil",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Kroger Fuel": {
- "tags": {
- "name": "Kroger Fuel",
- "amenity": "fuel"
- },
- "name": "Kroger Fuel",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Kum & Go": {
- "tags": {
- "name": "Kum & Go",
- "amenity": "fuel"
- },
- "name": "Kum & Go",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Kwik Trip": {
- "tags": {
- "name": "Kwik Trip",
- "amenity": "fuel"
- },
- "name": "Kwik Trip",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/LPG": {
- "tags": {
- "name": "LPG",
- "amenity": "fuel"
- },
- "name": "LPG",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/LPG Station": {
- "tags": {
- "name": "LPG Station",
- "amenity": "fuel"
- },
- "name": "LPG Station",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/LUKOIL": {
- "tags": {
- "name": "LUKOIL",
- "amenity": "fuel"
- },
- "name": "LUKOIL",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Liberty": {
- "tags": {
- "name": "Liberty",
- "amenity": "fuel"
- },
- "name": "Liberty",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Lotos": {
- "tags": {
- "name": "Lotos",
- "amenity": "fuel"
- },
- "name": "Lotos",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Lotos Optima": {
- "tags": {
- "name": "Lotos Optima",
- "amenity": "fuel"
- },
- "name": "Lotos Optima",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Love's": {
- "tags": {
- "name": "Love's",
- "amenity": "fuel"
- },
- "name": "Love's",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Lukoil": {
- "tags": {
- "name": "Lukoil",
- "amenity": "fuel"
- },
- "name": "Lukoil",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/MEROIL": {
- "tags": {
- "name": "MEROIL",
- "amenity": "fuel"
- },
- "name": "MEROIL",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/MOL": {
- "tags": {
- "name": "MOL",
- "amenity": "fuel"
- },
- "name": "MOL",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/MRS": {
- "tags": {
- "name": "MRS",
- "amenity": "fuel"
- },
- "name": "MRS",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Marathon": {
- "tags": {
- "name": "Marathon",
- "amenity": "fuel"
- },
- "name": "Marathon",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Maverik": {
- "tags": {
- "name": "Maverik",
- "amenity": "fuel"
- },
- "name": "Maverik",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Maxol": {
- "tags": {
- "name": "Maxol",
- "amenity": "fuel"
- },
- "name": "Maxol",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Metano": {
- "tags": {
- "name": "Metano",
- "amenity": "fuel"
- },
- "name": "Metano",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Migrol": {
- "tags": {
- "name": "Migrol",
- "amenity": "fuel"
- },
- "name": "Migrol",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Minipump": {
- "tags": {
- "name": "Minipump",
- "amenity": "fuel"
- },
- "name": "Minipump",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Mobil": {
- "tags": {
- "name": "Mobil",
- "amenity": "fuel"
- },
- "name": "Mobil",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Mobile": {
- "tags": {
- "name": "Mobile",
- "amenity": "fuel"
- },
- "name": "Mobile",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Mol": {
- "tags": {
- "name": "Mol",
- "amenity": "fuel"
- },
- "name": "Mol",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Moya": {
- "tags": {
- "name": "Moya",
- "amenity": "fuel"
- },
- "name": "Moya",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Murphy USA": {
- "tags": {
- "name": "Murphy USA",
- "amenity": "fuel"
- },
- "name": "Murphy USA",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Neste": {
- "tags": {
- "name": "Neste",
- "amenity": "fuel"
- },
- "name": "Neste",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/OIL!": {
- "tags": {
- "name": "OIL!",
- "amenity": "fuel"
- },
- "name": "OIL!",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/OK": {
- "tags": {
- "name": "OK",
- "amenity": "fuel"
- },
- "name": "OK",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/OKQ8": {
- "tags": {
- "name": "OKQ8",
- "amenity": "fuel"
- },
- "name": "OKQ8",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/OMV": {
- "tags": {
- "name": "OMV",
- "amenity": "fuel"
- },
- "name": "OMV",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Oilibya": {
- "tags": {
- "name": "Oilibya",
- "brand": "Oilibya",
- "name:ar": "أويليبيا",
- "amenity": "fuel"
- },
- "name": "Oilibya",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Opet": {
- "tags": {
- "name": "Opet",
- "amenity": "fuel"
- },
- "name": "Opet",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Orlen": {
- "tags": {
- "name": "Orlen",
- "amenity": "fuel"
- },
- "name": "Orlen",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/PETRONOR": {
- "tags": {
- "name": "PETRONOR",
- "amenity": "fuel"
- },
- "name": "PETRONOR",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/PSO": {
- "tags": {
- "name": "PSO",
- "amenity": "fuel"
- },
- "name": "PSO",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/PSO Petrol Pump": {
- "tags": {
- "name": "PSO Petrol Pump",
- "amenity": "fuel"
- },
- "name": "PSO Petrol Pump",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/PT": {
- "tags": {
- "name": "PT",
- "amenity": "fuel"
- },
- "name": "PT",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/PTT": {
- "tags": {
- "name": "PTT",
- "amenity": "fuel"
- },
- "name": "PTT",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/PV Oil": {
- "tags": {
- "name": "PV Oil",
- "amenity": "fuel"
- },
- "name": "PV Oil",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Pacific Pride": {
- "tags": {
- "name": "Pacific Pride",
- "amenity": "fuel"
- },
- "name": "Pacific Pride",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Pecsa": {
- "tags": {
- "name": "Pecsa",
- "amenity": "fuel"
- },
- "name": "Pecsa",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Pemex": {
- "tags": {
- "name": "Pemex",
- "amenity": "fuel"
- },
- "name": "Pemex",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Pertamina": {
- "tags": {
- "name": "Pertamina",
- "amenity": "fuel"
- },
- "name": "Pertamina",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Petro": {
- "tags": {
- "name": "Petro",
- "amenity": "fuel"
- },
- "name": "Petro",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Petro-Canada": {
- "tags": {
- "name": "Petro-Canada",
- "amenity": "fuel"
- },
- "name": "Petro-Canada",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Petrochina": {
- "tags": {
- "name": "Petrochina",
- "amenity": "fuel"
- },
- "name": "Petrochina",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Petroecuador": {
- "tags": {
- "name": "Petroecuador",
- "amenity": "fuel"
- },
- "name": "Petroecuador",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Petrol Ofisi": {
- "tags": {
- "name": "Petrol Ofisi",
- "amenity": "fuel"
- },
- "name": "Petrol Ofisi",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Petrolimex": {
- "tags": {
- "name": "Petrolimex",
- "amenity": "fuel"
- },
- "name": "Petrolimex",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Petrom": {
- "tags": {
- "name": "Petrom",
- "amenity": "fuel"
- },
- "name": "Petrom",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Petron": {
- "tags": {
- "name": "Petron",
- "amenity": "fuel"
- },
- "name": "Petron",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Petronas": {
- "tags": {
- "name": "Petronas",
- "amenity": "fuel"
- },
- "name": "Petronas",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Petroperu": {
- "tags": {
- "name": "Petroperu",
- "amenity": "fuel"
- },
- "name": "Petroperu",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Phillips 66": {
- "tags": {
- "name": "Phillips 66",
- "amenity": "fuel"
- },
- "name": "Phillips 66",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Phoenix": {
- "tags": {
- "name": "Phoenix",
- "amenity": "fuel"
- },
- "name": "Phoenix",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Pilot": {
- "tags": {
- "name": "Pilot",
- "amenity": "fuel"
- },
- "name": "Pilot",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Pioneer": {
- "tags": {
- "name": "Pioneer",
- "amenity": "fuel"
- },
- "name": "Pioneer",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Posto": {
- "tags": {
- "name": "Posto",
- "amenity": "fuel"
- },
- "name": "Posto",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Posto Atem": {
- "tags": {
- "name": "Posto Atem",
- "amenity": "fuel"
- },
- "name": "Posto Atem",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Posto Ipiranga": {
- "tags": {
- "name": "Posto Ipiranga",
- "amenity": "fuel"
- },
- "name": "Posto Ipiranga",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Posto Shell": {
- "tags": {
- "name": "Posto Shell",
- "amenity": "fuel"
- },
- "name": "Posto Shell",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Primax": {
- "tags": {
- "name": "Primax",
- "amenity": "fuel"
- },
- "name": "Primax",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Prio": {
- "tags": {
- "name": "Prio",
- "amenity": "fuel"
- },
- "name": "Prio",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Puma": {
- "tags": {
- "name": "Puma",
- "amenity": "fuel"
- },
- "name": "Puma",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Q1": {
- "tags": {
- "name": "Q1",
- "amenity": "fuel"
- },
- "name": "Q1",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Q8": {
- "tags": {
- "name": "Q8",
- "amenity": "fuel"
- },
- "name": "Q8",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Q8 Easy": {
- "tags": {
- "name": "Q8 Easy",
- "amenity": "fuel"
- },
- "name": "Q8 Easy",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/QuikTrip": {
- "tags": {
- "name": "QuikTrip",
- "amenity": "fuel"
- },
- "name": "QuikTrip",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/REPSOL": {
- "tags": {
- "name": "REPSOL",
- "amenity": "fuel"
- },
- "name": "REPSOL",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/RaceTrac": {
- "tags": {
- "name": "RaceTrac",
- "amenity": "fuel"
- },
- "name": "RaceTrac",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Repsol": {
- "tags": {
- "name": "Repsol",
- "amenity": "fuel"
- },
- "name": "Repsol",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Rompetrol": {
- "tags": {
- "name": "Rompetrol",
- "amenity": "fuel"
- },
- "name": "Rompetrol",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Rubis": {
- "tags": {
- "name": "Rubis",
- "amenity": "fuel"
- },
- "name": "Rubis",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/SB Tank": {
- "tags": {
- "name": "SB Tank",
- "amenity": "fuel"
- },
- "name": "SB Tank",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/SPBU": {
- "tags": {
- "name": "SPBU",
- "amenity": "fuel"
- },
- "name": "SPBU",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Sasol": {
- "tags": {
- "name": "Sasol",
- "amenity": "fuel"
- },
- "name": "Sasol",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Sea Oil": {
- "tags": {
- "name": "Sea Oil",
- "amenity": "fuel"
- },
- "name": "Sea Oil",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Sheetz": {
- "tags": {
- "name": "Sheetz",
- "amenity": "fuel"
- },
- "name": "Sheetz",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Shell": {
- "tags": {
- "name": "Shell",
- "amenity": "fuel"
- },
- "name": "Shell",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Shell Express": {
- "tags": {
- "name": "Shell Express",
- "amenity": "fuel"
- },
- "name": "Shell Express",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Sinclair": {
- "tags": {
- "name": "Sinclair",
- "amenity": "fuel"
- },
- "name": "Sinclair",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Sinopec": {
- "tags": {
- "name": "Sinopec",
- "amenity": "fuel"
- },
- "name": "Sinopec",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Sinopec Fuel": {
- "tags": {
- "name": "Sinopec Fuel",
- "amenity": "fuel"
- },
- "name": "Sinopec Fuel",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Slovnaft": {
- "tags": {
- "name": "Slovnaft",
- "amenity": "fuel"
- },
- "name": "Slovnaft",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Socar": {
- "tags": {
- "name": "Socar",
- "amenity": "fuel"
- },
- "name": "Socar",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Sokimex": {
- "tags": {
- "name": "Sokimex",
- "amenity": "fuel"
- },
- "name": "Sokimex",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Speedway": {
- "tags": {
- "name": "Speedway",
- "amenity": "fuel"
- },
- "name": "Speedway",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/St1": {
- "tags": {
- "name": "St1",
- "amenity": "fuel"
- },
- "name": "St1",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Star": {
- "tags": {
- "name": "Star",
- "amenity": "fuel"
- },
- "name": "Star",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Star Oil": {
- "tags": {
- "name": "Star Oil",
- "amenity": "fuel"
- },
- "name": "Star Oil",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Station Service E. Leclerc": {
- "tags": {
- "name": "Station Service E. Leclerc",
- "amenity": "fuel"
- },
- "name": "Station Service E. Leclerc",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Statoil": {
- "tags": {
- "name": "Statoil",
- "amenity": "fuel"
- },
- "name": "Statoil",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Sunoco": {
- "tags": {
- "name": "Sunoco",
- "amenity": "fuel"
- },
- "name": "Sunoco",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Tamoil": {
- "tags": {
- "name": "Tamoil",
- "amenity": "fuel"
- },
- "name": "Tamoil",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Tango": {
- "tags": {
- "name": "Tango",
- "amenity": "fuel"
- },
- "name": "Tango",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Teboil": {
- "tags": {
- "name": "Teboil",
- "amenity": "fuel"
- },
- "name": "Teboil",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Tela": {
- "tags": {
- "name": "Tela",
- "amenity": "fuel"
- },
- "name": "Tela",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Terpel": {
- "tags": {
- "name": "Terpel",
- "amenity": "fuel"
- },
- "name": "Terpel",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Texaco": {
- "tags": {
- "name": "Texaco",
- "amenity": "fuel"
- },
- "name": "Texaco",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Tinq": {
- "tags": {
- "name": "Tinq",
- "amenity": "fuel"
- },
- "name": "Tinq",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Topaz": {
- "tags": {
- "name": "Topaz",
- "amenity": "fuel"
- },
- "name": "Topaz",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Total": {
- "tags": {
- "name": "Total",
- "amenity": "fuel"
- },
- "name": "Total",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Total Access": {
- "tags": {
- "name": "Total Access",
- "amenity": "fuel"
- },
- "name": "Total Access",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Total Erg": {
- "tags": {
- "name": "Total Erg",
- "amenity": "fuel"
- },
- "name": "Total Erg",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/TotalErg": {
- "tags": {
- "name": "TotalErg",
- "amenity": "fuel"
- },
- "name": "TotalErg",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Turkey Hill": {
- "tags": {
- "name": "Turkey Hill",
- "amenity": "fuel"
- },
- "name": "Turkey Hill",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Turmöl": {
- "tags": {
- "name": "Turmöl",
- "amenity": "fuel"
- },
- "name": "Turmöl",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Ultramar": {
- "tags": {
- "name": "Ultramar",
- "amenity": "fuel"
- },
- "name": "Ultramar",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/United": {
- "tags": {
- "name": "United",
- "amenity": "fuel"
- },
- "name": "United",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Uno": {
- "tags": {
- "name": "Uno",
- "amenity": "fuel"
- },
- "name": "Uno",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Uno-X": {
- "tags": {
- "name": "Uno-X",
- "amenity": "fuel"
- },
- "name": "Uno-X",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Valero": {
- "tags": {
- "name": "Valero",
- "amenity": "fuel"
- },
- "name": "Valero",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Vito": {
- "tags": {
- "name": "Vito",
- "amenity": "fuel"
- },
- "name": "Vito",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/WOG": {
- "tags": {
- "name": "WOG",
- "amenity": "fuel"
- },
- "name": "WOG",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Westfalen": {
- "tags": {
- "name": "Westfalen",
- "amenity": "fuel"
- },
- "name": "Westfalen",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Woolworths Petrol": {
- "tags": {
- "name": "Woolworths Petrol",
- "amenity": "fuel"
- },
- "name": "Woolworths Petrol",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Z": {
- "tags": {
- "name": "Z",
- "amenity": "fuel"
- },
- "name": "Z",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/bft": {
- "tags": {
- "name": "bft",
- "amenity": "fuel"
- },
- "name": "bft",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/eni": {
- "tags": {
- "name": "eni",
- "amenity": "fuel"
- },
- "name": "eni",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/ΕΚΟ": {
- "tags": {
- "name": "ΕΚΟ",
- "amenity": "fuel"
- },
- "name": "ΕΚΟ",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/АГЗС": {
- "tags": {
- "name": "АГЗС",
- "amenity": "fuel"
- },
- "name": "АГЗС",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/АЗС": {
- "tags": {
- "name": "АЗС",
- "amenity": "fuel"
- },
- "name": "АЗС",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Авіас": {
- "tags": {
- "name": "Авіас",
- "amenity": "fuel"
- },
- "name": "Авіас",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/БРСМ-Нафта": {
- "tags": {
- "name": "БРСМ-Нафта",
- "amenity": "fuel"
- },
- "name": "БРСМ-Нафта",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Башнефть": {
- "tags": {
- "name": "Башнефть",
- "amenity": "fuel"
- },
- "name": "Башнефть",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Белоруснефть": {
- "tags": {
- "name": "Белоруснефть",
- "amenity": "fuel"
- },
- "name": "Белоруснефть",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Газовая заправка": {
- "tags": {
- "name": "Газовая заправка",
- "amenity": "fuel"
- },
- "name": "Газовая заправка",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Газпромнефть": {
- "tags": {
- "name": "Газпромнефть",
- "amenity": "fuel"
- },
- "name": "Газпромнефть",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Гелиос": {
- "tags": {
- "name": "Гелиос",
- "amenity": "fuel"
- },
- "name": "Гелиос",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/ЕКА": {
- "tags": {
- "name": "ЕКА",
- "amenity": "fuel"
- },
- "name": "ЕКА",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Заправка": {
- "tags": {
- "name": "Заправка",
- "amenity": "fuel"
- },
- "name": "Заправка",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/КазМунайГаз": {
- "tags": {
- "name": "КазМунайГаз",
- "amenity": "fuel"
- },
- "name": "КазМунайГаз",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Лукойл": {
- "tags": {
- "name": "Лукойл",
- "amenity": "fuel"
- },
- "name": "Лукойл",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Макпетрол": {
- "tags": {
- "name": "Макпетрол",
- "amenity": "fuel"
- },
- "name": "Макпетрол",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/НК Альянс": {
- "tags": {
- "name": "НК Альянс",
- "amenity": "fuel"
- },
- "name": "НК Альянс",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Нефтьмагистраль": {
- "tags": {
- "name": "Нефтьмагистраль",
- "amenity": "fuel"
- },
- "name": "Нефтьмагистраль",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/ОККО": {
- "tags": {
- "name": "ОККО",
- "amenity": "fuel"
- },
- "name": "ОККО",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/ОМВ": {
- "tags": {
- "name": "ОМВ",
- "amenity": "fuel"
- },
- "name": "ОМВ",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Октан": {
- "tags": {
- "name": "Октан",
- "amenity": "fuel"
- },
- "name": "Октан",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/ПТК": {
- "tags": {
- "name": "ПТК",
- "amenity": "fuel"
- },
- "name": "ПТК",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Петрол": {
- "tags": {
- "name": "Петрол",
- "amenity": "fuel"
- },
- "name": "Петрол",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Пропан": {
- "tags": {
- "name": "Пропан",
- "amenity": "fuel"
- },
- "name": "Пропан",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Роснефть": {
- "tags": {
- "name": "Роснефть",
- "amenity": "fuel"
- },
- "name": "Роснефть",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Сибнефть": {
- "tags": {
- "name": "Сибнефть",
- "amenity": "fuel"
- },
- "name": "Сибнефть",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Сургутнефтегаз": {
- "tags": {
- "name": "Сургутнефтегаз",
- "amenity": "fuel"
- },
- "name": "Сургутнефтегаз",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/ТНК": {
- "tags": {
- "name": "ТНК",
- "amenity": "fuel"
- },
- "name": "ТНК",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Татнефтепродукт": {
- "tags": {
- "name": "Татнефтепродукт",
- "amenity": "fuel"
- },
- "name": "Татнефтепродукт",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Татнефть": {
- "tags": {
- "name": "Татнефть",
- "amenity": "fuel"
- },
- "name": "Татнефть",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/Укрнафта": {
- "tags": {
- "name": "Укрнафта",
- "amenity": "fuel"
- },
- "name": "Укрнафта",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/דור אלון": {
- "tags": {
- "name": "דור אלון",
- "amenity": "fuel"
- },
- "name": "דור אלון",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/דלק": {
- "tags": {
- "name": "דלק",
- "amenity": "fuel"
- },
- "name": "דלק",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/סונול": {
- "tags": {
- "name": "סונול",
- "amenity": "fuel"
- },
- "name": "סונול",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/פז": {
- "tags": {
- "name": "פז",
- "amenity": "fuel"
- },
- "name": "פז",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/محطة وقود": {
- "tags": {
- "name": "محطة وقود",
- "amenity": "fuel"
- },
- "name": "محطة وقود",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/محطه وقود": {
- "tags": {
- "name": "محطه وقود",
- "amenity": "fuel"
- },
- "name": "محطه وقود",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/پمپ بنزین": {
- "tags": {
- "name": "پمپ بنزین",
- "amenity": "fuel"
- },
- "name": "پمپ بنزین",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/پمپ گاز": {
- "tags": {
- "name": "پمپ گاز",
- "amenity": "fuel"
- },
- "name": "پمپ گاز",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/บางจาก": {
- "tags": {
- "name": "บางจาก",
- "amenity": "fuel"
- },
- "name": "บางจาก",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/ป.ต.ท.": {
- "tags": {
- "name": "ป.ต.ท.",
- "amenity": "fuel"
- },
- "name": "ป.ต.ท.",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/เชลล์": {
- "tags": {
- "name": "เชลล์",
- "amenity": "fuel"
- },
- "name": "เชลล์",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/เอสโซ่": {
- "tags": {
- "name": "เอสโซ่",
- "amenity": "fuel"
- },
- "name": "เอสโซ่",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/エッソ": {
- "tags": {
- "name": "エッソ",
- "amenity": "fuel"
- },
- "name": "エッソ",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/エネオス": {
- "tags": {
- "name": "エネオス",
- "amenity": "fuel"
- },
- "name": "エネオス",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/コスモ石油": {
- "tags": {
- "name": "コスモ石油",
- "amenity": "fuel"
- },
- "name": "コスモ石油",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/ゼネラル": {
- "tags": {
- "name": "ゼネラル",
- "amenity": "fuel"
- },
- "name": "ゼネラル",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/中国石化": {
- "tags": {
- "name": "中国石化",
- "amenity": "fuel"
- },
- "name": "中国石化",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/中国石化 Sinopec": {
- "tags": {
- "name": "中国石化 Sinopec",
- "amenity": "fuel"
- },
- "name": "中国石化 Sinopec",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/中国石油": {
- "tags": {
- "name": "中国石油",
- "amenity": "fuel"
- },
- "name": "中国石油",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/中油": {
- "tags": {
- "name": "中油",
- "amenity": "fuel"
- },
- "name": "中油",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/出光": {
- "tags": {
- "name": "出光",
- "name:en": "Idemitsu",
- "amenity": "fuel"
- },
- "name": "出光",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/加油站": {
- "tags": {
- "name": "加油站",
- "amenity": "fuel"
- },
- "name": "加油站",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/台灣中油": {
- "tags": {
- "name": "台灣中油",
- "amenity": "fuel"
- },
- "name": "台灣中油",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/fuel/昭和シェル": {
- "tags": {
- "name": "昭和シェル",
- "amenity": "fuel"
- },
- "name": "昭和シェル",
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel_multi",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "amenity/hospital/Cruz Roja": {
- "tags": {
- "name": "Cruz Roja",
- "healthcare": "hospital",
- "amenity": "hospital"
- },
- "name": "Cruz Roja",
- "icon": "maki-hospital",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "emergency"
- ],
- "suggestion": true
- },
- "amenity/hospital/IMSS": {
- "tags": {
- "name": "IMSS",
- "healthcare": "hospital",
- "amenity": "hospital"
- },
- "name": "IMSS",
- "icon": "maki-hospital",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "emergency"
- ],
- "suggestion": true
- },
- "amenity/hospital/Инфекционное отделение": {
- "tags": {
- "name": "Инфекционное отделение",
- "healthcare": "hospital",
- "amenity": "hospital"
- },
- "name": "Инфекционное отделение",
- "icon": "maki-hospital",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "emergency"
- ],
- "suggestion": true
- },
- "amenity/hospital/Кожно-венерологический диспансер": {
- "tags": {
- "name": "Кожно-венерологический диспансер",
- "healthcare": "hospital",
- "amenity": "hospital"
- },
- "name": "Кожно-венерологический диспансер",
- "icon": "maki-hospital",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "emergency"
- ],
- "suggestion": true
- },
- "amenity/hospital/Районная больница": {
- "tags": {
- "name": "Районная больница",
- "healthcare": "hospital",
- "amenity": "hospital"
- },
- "name": "Районная больница",
- "icon": "maki-hospital",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "emergency"
- ],
- "suggestion": true
- },
- "amenity/hospital/Роддом": {
- "tags": {
- "name": "Роддом",
- "healthcare": "hospital",
- "amenity": "hospital"
- },
- "name": "Роддом",
- "icon": "maki-hospital",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "emergency"
- ],
- "suggestion": true
- },
- "amenity/hospital/Родильный дом": {
- "tags": {
- "name": "Родильный дом",
- "healthcare": "hospital",
- "amenity": "hospital"
- },
- "name": "Родильный дом",
- "icon": "maki-hospital",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "emergency"
- ],
- "suggestion": true
- },
- "amenity/hospital/Скорая помощь": {
- "tags": {
- "name": "Скорая помощь",
- "healthcare": "hospital",
- "amenity": "hospital"
- },
- "name": "Скорая помощь",
- "icon": "maki-hospital",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "emergency"
- ],
- "suggestion": true
- },
- "amenity/hospital/ЦРБ": {
- "tags": {
- "name": "ЦРБ",
- "healthcare": "hospital",
- "amenity": "hospital"
- },
- "name": "ЦРБ",
- "icon": "maki-hospital",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "emergency"
- ],
- "suggestion": true
- },
- "amenity/hospital/Центральная районная больница": {
- "tags": {
- "name": "Центральная районная больница",
- "healthcare": "hospital",
- "amenity": "hospital"
- },
- "name": "Центральная районная больница",
- "icon": "maki-hospital",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "emergency"
- ],
- "suggestion": true
- },
- "amenity/hospital/โรงพยาบาลส่งเสริมสุขภาพตำบล": {
- "tags": {
- "name": "โรงพยาบาลส่งเสริมสุขภาพตำบล",
- "healthcare": "hospital",
- "amenity": "hospital"
- },
- "name": "โรงพยาบาลส่งเสริมสุขภาพตำบล",
- "icon": "maki-hospital",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "emergency"
- ],
- "suggestion": true
- },
- "amenity/ice_cream/Grido": {
- "tags": {
- "name": "Grido",
- "amenity": "ice_cream"
- },
- "name": "Grido",
- "icon": "maki-ice-cream",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "takeaway",
- "delivery",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Anganwadi": {
- "tags": {
- "name": "Anganwadi",
- "amenity": "kindergarten"
- },
- "name": "Anganwadi",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Arche Noah": {
- "tags": {
- "name": "Arche Noah",
- "amenity": "kindergarten"
- },
- "name": "Arche Noah",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/CONAFE Preescolar": {
- "tags": {
- "name": "CONAFE Preescolar",
- "amenity": "kindergarten"
- },
- "name": "CONAFE Preescolar",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Educacion Inicial de CONAFE No Escolarizado": {
- "tags": {
- "name": "Educacion Inicial de CONAFE No Escolarizado",
- "amenity": "kindergarten"
- },
- "name": "Educacion Inicial de CONAFE No Escolarizado",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Estefania Casta�eda": {
- "tags": {
- "name": "Estefania Casta�eda",
- "amenity": "kindergarten"
- },
- "name": "Estefania Casta�eda",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Evangelischer Kindergarten": {
- "tags": {
- "name": "Evangelischer Kindergarten",
- "amenity": "kindergarten"
- },
- "name": "Evangelischer Kindergarten",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Federico Froebel": {
- "tags": {
- "name": "Federico Froebel",
- "amenity": "kindergarten"
- },
- "name": "Federico Froebel",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Gabriela Mistral": {
- "tags": {
- "name": "Gabriela Mistral",
- "amenity": "kindergarten"
- },
- "name": "Gabriela Mistral",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Jean Piaget": {
- "tags": {
- "name": "Jean Piaget",
- "amenity": "kindergarten"
- },
- "name": "Jean Piaget",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Katholischer Kindergarten": {
- "tags": {
- "name": "Katholischer Kindergarten",
- "amenity": "kindergarten"
- },
- "name": "Katholischer Kindergarten",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Kindergarten Regenbogen": {
- "tags": {
- "name": "Kindergarten Regenbogen",
- "amenity": "kindergarten"
- },
- "name": "Kindergarten Regenbogen",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Kindergarten St. Josef": {
- "tags": {
- "name": "Kindergarten St. Josef",
- "amenity": "kindergarten"
- },
- "name": "Kindergarten St. Josef",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Kindergarten St. Martin": {
- "tags": {
- "name": "Kindergarten St. Martin",
- "amenity": "kindergarten"
- },
- "name": "Kindergarten St. Martin",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Maria Montessori": {
- "tags": {
- "name": "Maria Montessori",
- "amenity": "kindergarten"
- },
- "name": "Maria Montessori",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/PAUD": {
- "tags": {
- "name": "PAUD",
- "amenity": "kindergarten"
- },
- "name": "PAUD",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Pusteblume": {
- "tags": {
- "name": "Pusteblume",
- "amenity": "kindergarten"
- },
- "name": "Pusteblume",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Rosaura Zapata": {
- "tags": {
- "name": "Rosaura Zapata",
- "amenity": "kindergarten"
- },
- "name": "Rosaura Zapata",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Sor Juana Ines De La Cruz": {
- "tags": {
- "name": "Sor Juana Ines De La Cruz",
- "amenity": "kindergarten"
- },
- "name": "Sor Juana Ines De La Cruz",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Spatzennest": {
- "tags": {
- "name": "Spatzennest",
- "amenity": "kindergarten"
- },
- "name": "Spatzennest",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Städtischer Kindergarten": {
- "tags": {
- "name": "Städtischer Kindergarten",
- "amenity": "kindergarten"
- },
- "name": "Städtischer Kindergarten",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Villa Kunterbunt": {
- "tags": {
- "name": "Villa Kunterbunt",
- "amenity": "kindergarten"
- },
- "name": "Villa Kunterbunt",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Waldkindergarten": {
- "tags": {
- "name": "Waldkindergarten",
- "amenity": "kindergarten"
- },
- "name": "Waldkindergarten",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Waldorfkindergarten": {
- "tags": {
- "name": "Waldorfkindergarten",
- "amenity": "kindergarten"
- },
- "name": "Waldorfkindergarten",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Óvoda": {
- "tags": {
- "name": "Óvoda",
- "amenity": "kindergarten"
- },
- "name": "Óvoda",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детсад": {
- "tags": {
- "name": "Детсад",
- "amenity": "kindergarten"
- },
- "name": "Детсад",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад Солнышко": {
- "tags": {
- "name": "Детский сад Солнышко",
- "amenity": "kindergarten"
- },
- "name": "Детский сад Солнышко",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад № 1": {
- "tags": {
- "name": "Детский сад № 1",
- "amenity": "kindergarten"
- },
- "name": "Детский сад № 1",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №1": {
- "tags": {
- "name": "Детский сад №1",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №1",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №10": {
- "tags": {
- "name": "Детский сад №10",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №10",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №11": {
- "tags": {
- "name": "Детский сад №11",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №11",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №12": {
- "tags": {
- "name": "Детский сад №12",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №12",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №13": {
- "tags": {
- "name": "Детский сад №13",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №13",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №14": {
- "tags": {
- "name": "Детский сад №14",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №14",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №15": {
- "tags": {
- "name": "Детский сад №15",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №15",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №16": {
- "tags": {
- "name": "Детский сад №16",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №16",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №17": {
- "tags": {
- "name": "Детский сад №17",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №17",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №18": {
- "tags": {
- "name": "Детский сад №18",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №18",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №19": {
- "tags": {
- "name": "Детский сад №19",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №19",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №2": {
- "tags": {
- "name": "Детский сад №2",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №2",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №22": {
- "tags": {
- "name": "Детский сад №22",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №22",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №24": {
- "tags": {
- "name": "Детский сад №24",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №24",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №25": {
- "tags": {
- "name": "Детский сад №25",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №25",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №27": {
- "tags": {
- "name": "Детский сад №27",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №27",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №29": {
- "tags": {
- "name": "Детский сад №29",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №29",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №3": {
- "tags": {
- "name": "Детский сад №3",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №3",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №33": {
- "tags": {
- "name": "Детский сад №33",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №33",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №4": {
- "tags": {
- "name": "Детский сад №4",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №4",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №5": {
- "tags": {
- "name": "Детский сад №5",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №5",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №6": {
- "tags": {
- "name": "Детский сад №6",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №6",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №7": {
- "tags": {
- "name": "Детский сад №7",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №7",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №8": {
- "tags": {
- "name": "Детский сад №8",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №8",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Детский сад №9": {
- "tags": {
- "name": "Детский сад №9",
- "amenity": "kindergarten"
- },
- "name": "Детский сад №9",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Дитячий садок": {
- "tags": {
- "name": "Дитячий садок",
- "amenity": "kindergarten"
- },
- "name": "Дитячий садок",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/Солнышко": {
- "tags": {
- "name": "Солнышко",
- "amenity": "kindergarten"
- },
- "name": "Солнышко",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/საბავშვო ბაღი": {
- "tags": {
- "name": "საბავშვო ბაღი",
- "amenity": "kindergarten"
- },
- "name": "საბავშვო ბაღი",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/kindergarten/中央保育所": {
- "tags": {
- "name": "中央保育所",
- "amenity": "kindergarten"
- },
- "name": "中央保育所",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "amenity/library/Biblioteca Comunale": {
- "tags": {
- "name": "Biblioteca Comunale",
- "amenity": "library"
- },
- "name": "Biblioteca Comunale",
- "icon": "maki-library",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "building_area",
- "address",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "ref/isil"
- ],
- "suggestion": true
- },
- "amenity/library/Biblioteca comunale": {
- "tags": {
- "name": "Biblioteca comunale",
- "amenity": "library"
- },
- "name": "Biblioteca comunale",
- "icon": "maki-library",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "building_area",
- "address",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "ref/isil"
- ],
- "suggestion": true
- },
- "amenity/library/Biblioteka Publiczna": {
- "tags": {
- "name": "Biblioteka Publiczna",
- "amenity": "library"
- },
- "name": "Biblioteka Publiczna",
- "icon": "maki-library",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "building_area",
- "address",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "ref/isil"
- ],
- "suggestion": true
- },
- "amenity/library/Bibliothèque Municipale": {
- "tags": {
- "name": "Bibliothèque Municipale",
- "amenity": "library"
- },
- "name": "Bibliothèque Municipale",
- "icon": "maki-library",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "building_area",
- "address",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "ref/isil"
- ],
- "suggestion": true
- },
- "amenity/library/Bibliothèque municipale": {
- "tags": {
- "name": "Bibliothèque municipale",
- "amenity": "library"
- },
- "name": "Bibliothèque municipale",
- "icon": "maki-library",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "building_area",
- "address",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "ref/isil"
- ],
- "suggestion": true
- },
- "amenity/library/Bücherei": {
- "tags": {
- "name": "Bücherei",
- "amenity": "library"
- },
- "name": "Bücherei",
- "icon": "maki-library",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "building_area",
- "address",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "ref/isil"
- ],
- "suggestion": true
- },
- "amenity/library/Central Library": {
- "tags": {
- "name": "Central Library",
- "amenity": "library"
- },
- "name": "Central Library",
- "icon": "maki-library",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "building_area",
- "address",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "ref/isil"
- ],
- "suggestion": true
- },
- "amenity/library/Gemeindebücherei": {
- "tags": {
- "name": "Gemeindebücherei",
- "amenity": "library"
- },
- "name": "Gemeindebücherei",
- "icon": "maki-library",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "building_area",
- "address",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "ref/isil"
- ],
- "suggestion": true
- },
- "amenity/library/Gminna Biblioteka Publiczna": {
- "tags": {
- "name": "Gminna Biblioteka Publiczna",
- "amenity": "library"
- },
- "name": "Gminna Biblioteka Publiczna",
- "icon": "maki-library",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "building_area",
- "address",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "ref/isil"
- ],
- "suggestion": true
- },
- "amenity/library/Miejska Biblioteka Publiczna": {
- "tags": {
- "name": "Miejska Biblioteka Publiczna",
- "amenity": "library"
- },
- "name": "Miejska Biblioteka Publiczna",
- "icon": "maki-library",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "building_area",
- "address",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "ref/isil"
- ],
- "suggestion": true
- },
- "amenity/library/Médiathèque": {
- "tags": {
- "name": "Médiathèque",
- "amenity": "library"
- },
- "name": "Médiathèque",
- "icon": "maki-library",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "building_area",
- "address",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "ref/isil"
- ],
- "suggestion": true
- },
- "amenity/library/Městská knihovna": {
- "tags": {
- "name": "Městská knihovna",
- "amenity": "library"
- },
- "name": "Městská knihovna",
- "icon": "maki-library",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "building_area",
- "address",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "ref/isil"
- ],
- "suggestion": true
- },
- "amenity/library/Public Library": {
- "tags": {
- "name": "Public Library",
- "amenity": "library"
- },
- "name": "Public Library",
- "icon": "maki-library",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "building_area",
- "address",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "ref/isil"
- ],
- "suggestion": true
- },
- "amenity/library/Stadtbibliothek": {
- "tags": {
- "name": "Stadtbibliothek",
- "amenity": "library"
- },
- "name": "Stadtbibliothek",
- "icon": "maki-library",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "building_area",
- "address",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "ref/isil"
- ],
- "suggestion": true
- },
- "amenity/library/Stadtbücherei": {
- "tags": {
- "name": "Stadtbücherei",
- "amenity": "library"
- },
- "name": "Stadtbücherei",
- "icon": "maki-library",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "building_area",
- "address",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "ref/isil"
- ],
- "suggestion": true
- },
- "amenity/library/Городская библиотека": {
- "tags": {
- "name": "Городская библиотека",
- "amenity": "library"
- },
- "name": "Городская библиотека",
- "icon": "maki-library",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "building_area",
- "address",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "ref/isil"
- ],
- "suggestion": true
- },
- "amenity/library/Детская библиотека": {
- "tags": {
- "name": "Детская библиотека",
- "amenity": "library"
- },
- "name": "Детская библиотека",
- "icon": "maki-library",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "building_area",
- "address",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "ref/isil"
- ],
- "suggestion": true
- },
- "amenity/library/Центральная библиотека": {
- "tags": {
- "name": "Центральная библиотека",
- "amenity": "library"
- },
- "name": "Центральная библиотека",
- "icon": "maki-library",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "building_area",
- "address",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "ref/isil"
- ],
- "suggestion": true
- },
- "amenity/library/Центральная городская библиотека": {
- "tags": {
- "name": "Центральная городская библиотека",
- "amenity": "library"
- },
- "name": "Центральная городская библиотека",
- "icon": "maki-library",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "building_area",
- "address",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "ref/isil"
- ],
- "suggestion": true
- },
- "amenity/library/图书馆": {
- "tags": {
- "name": "图书馆",
- "amenity": "library"
- },
- "name": "图书馆",
- "icon": "maki-library",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "building_area",
- "address",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "ref/isil"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/36.6": {
- "tags": {
- "name": "36.6",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "36.6",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Adler-Apotheke": {
- "tags": {
- "name": "Adler-Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Adler-Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Alte Apotheke": {
- "tags": {
- "name": "Alte Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Alte Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Apollo Pharmacy": {
- "tags": {
- "name": "Apollo Pharmacy",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Apollo Pharmacy",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Apotek": {
- "tags": {
- "name": "Apotek",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Apotek",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Apotek Hjärtat": {
- "tags": {
- "name": "Apotek Hjärtat",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Apotek Hjärtat",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Apotheke am Markt": {
- "tags": {
- "name": "Apotheke am Markt",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Apotheke am Markt",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Bahnhof Apotheke": {
- "tags": {
- "name": "Bahnhof Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Bahnhof Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Bahnhof-Apotheke": {
- "tags": {
- "name": "Bahnhof-Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Bahnhof-Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Bartell Drugs": {
- "tags": {
- "name": "Bartell Drugs",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Bartell Drugs",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Benavides": {
- "tags": {
- "name": "Benavides",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Benavides",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Benu": {
- "tags": {
- "name": "Benu",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Benu",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Boots": {
- "tags": {
- "name": "Boots",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Boots",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Botica": {
- "tags": {
- "name": "Botica",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Botica",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Brunnen-Apotheke": {
- "tags": {
- "name": "Brunnen-Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Brunnen-Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Burg-Apotheke": {
- "tags": {
- "name": "Burg-Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Burg-Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Bären-Apotheke": {
- "tags": {
- "name": "Bären-Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Bären-Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/CVS": {
- "tags": {
- "name": "CVS",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "CVS",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Camelia": {
- "tags": {
- "name": "Camelia",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Camelia",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Catena": {
- "tags": {
- "name": "Catena",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Catena",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Chemist Warehouse": {
- "tags": {
- "name": "Chemist Warehouse",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Chemist Warehouse",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Clicks": {
- "tags": {
- "name": "Clicks",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Clicks",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Cruz Azul": {
- "tags": {
- "name": "Cruz Azul",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Cruz Azul",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Cruz Verde": {
- "tags": {
- "name": "Cruz Verde",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Cruz Verde",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Dbam o Zdrowie": {
- "tags": {
- "name": "Dbam o Zdrowie",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Dbam o Zdrowie",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Dr. Max": {
- "tags": {
- "name": "Dr. Max",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Dr. Max",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Droga Raia": {
- "tags": {
- "name": "Droga Raia",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Droga Raia",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Drogaria São Paulo": {
- "tags": {
- "name": "Drogaria São Paulo",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Drogaria São Paulo",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Drogasil": {
- "tags": {
- "name": "Drogasil",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Drogasil",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Duane Reade": {
- "tags": {
- "name": "Duane Reade",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Duane Reade",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Eczane": {
- "tags": {
- "name": "Eczane",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Eczane",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Engel-Apotheke": {
- "tags": {
- "name": "Engel-Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Engel-Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Eurovaistinė": {
- "tags": {
- "name": "Eurovaistinė",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Eurovaistinė",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Familiprix": {
- "tags": {
- "name": "Familiprix",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Familiprix",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Farmacenter": {
- "tags": {
- "name": "Farmacenter",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Farmacenter",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Farmacia Centrale": {
- "tags": {
- "name": "Farmacia Centrale",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Farmacia Centrale",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Farmacia Comunale": {
- "tags": {
- "name": "Farmacia Comunale",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Farmacia Comunale",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Farmacia Guadalajara": {
- "tags": {
- "name": "Farmacia Guadalajara",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Farmacia Guadalajara",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Farmacia del Ahorro": {
- "tags": {
- "name": "Farmacia del Ahorro",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Farmacia del Ahorro",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Farmacias Ahumada": {
- "tags": {
- "name": "Farmacias Ahumada",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Farmacias Ahumada",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Farmacias Cruz Azul": {
- "tags": {
- "name": "Farmacias Cruz Azul",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Farmacias Cruz Azul",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Farmacias Cruz Verde": {
- "tags": {
- "name": "Farmacias Cruz Verde",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Farmacias Cruz Verde",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Farmacias Económicas": {
- "tags": {
- "name": "Farmacias Económicas",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Farmacias Económicas",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Farmacias Guadalajara": {
- "tags": {
- "name": "Farmacias Guadalajara",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Farmacias Guadalajara",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Farmacias SalcoBrand": {
- "tags": {
- "name": "Farmacias SalcoBrand",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Farmacias SalcoBrand",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Farmacias Sana Sana": {
- "tags": {
- "name": "Farmacias Sana Sana",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Farmacias Sana Sana",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Farmacias Similares": {
- "tags": {
- "name": "Farmacias Similares",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Farmacias Similares",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Farmacias del Ahorro": {
- "tags": {
- "name": "Farmacias del Ahorro",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Farmacias del Ahorro",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Farmacity": {
- "tags": {
- "name": "Farmacity",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Farmacity",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Farmahorro": {
- "tags": {
- "name": "Farmahorro",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Farmahorro",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Farmatodo": {
- "tags": {
- "name": "Farmatodo",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Farmatodo",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Felicia": {
- "tags": {
- "name": "Felicia",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Felicia",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Fybeca": {
- "tags": {
- "name": "Fybeca",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Fybeca",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Generika Drugstore": {
- "tags": {
- "name": "Generika Drugstore",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Generika Drugstore",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Gintarinė vaistinė": {
- "tags": {
- "name": "Gintarinė vaistinė",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Gintarinė vaistinė",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Guardian": {
- "tags": {
- "name": "Guardian",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Guardian",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Gyógyszertár": {
- "tags": {
- "name": "Gyógyszertár",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Gyógyszertár",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/H-E-B Pharmacy": {
- "tags": {
- "name": "H-E-B Pharmacy",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "H-E-B Pharmacy",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Hirsch-Apotheke": {
- "tags": {
- "name": "Hirsch-Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Hirsch-Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Hubertus Apotheke": {
- "tags": {
- "name": "Hubertus Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Hubertus Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Inkafarma": {
- "tags": {
- "name": "Inkafarma",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Inkafarma",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Jean Coutu": {
- "tags": {
- "name": "Jean Coutu",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Jean Coutu",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Kinney Drugs": {
- "tags": {
- "name": "Kinney Drugs",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Kinney Drugs",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Kur-Apotheke": {
- "tags": {
- "name": "Kur-Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Kur-Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Linden-Apotheke": {
- "tags": {
- "name": "Linden-Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Linden-Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Ljekarna": {
- "tags": {
- "name": "Ljekarna",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Ljekarna",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Lloyds Pharmacy": {
- "tags": {
- "name": "Lloyds Pharmacy",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Lloyds Pharmacy",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Lékárna": {
- "tags": {
- "name": "Lékárna",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Lékárna",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Löwen-Apotheke": {
- "tags": {
- "name": "Löwen-Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Löwen-Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Marien-Apotheke": {
- "tags": {
- "name": "Marien-Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Marien-Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Markt-Apotheke": {
- "tags": {
- "name": "Markt-Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Markt-Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Mercury Drug": {
- "tags": {
- "name": "Mercury Drug",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Mercury Drug",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Mifarma": {
- "tags": {
- "name": "Mifarma",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Mifarma",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Mēness aptieka": {
- "tags": {
- "name": "Mēness aptieka",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Mēness aptieka",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Neue Apotheke": {
- "tags": {
- "name": "Neue Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Neue Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Pague Menos": {
- "tags": {
- "name": "Pague Menos",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Pague Menos",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Panvel": {
- "tags": {
- "name": "Panvel",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Panvel",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Park-Apotheke": {
- "tags": {
- "name": "Park-Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Park-Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Pharmacie Centrale": {
- "tags": {
- "name": "Pharmacie Centrale",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Pharmacie Centrale",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Pharmacie Principale": {
- "tags": {
- "name": "Pharmacie Principale",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Pharmacie Principale",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Pharmacie de l'Hôtel de Ville": {
- "tags": {
- "name": "Pharmacie de l'Hôtel de Ville",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Pharmacie de l'Hôtel de Ville",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Pharmacie de la Gare": {
- "tags": {
- "name": "Pharmacie de la Gare",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Pharmacie de la Gare",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Pharmacie de la Mairie": {
- "tags": {
- "name": "Pharmacie de la Mairie",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Pharmacie de la Mairie",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Pharmacie de la Poste": {
- "tags": {
- "name": "Pharmacie de la Poste",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Pharmacie de la Poste",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Pharmacie du Centre": {
- "tags": {
- "name": "Pharmacie du Centre",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Pharmacie du Centre",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Pharmacie du Marché": {
- "tags": {
- "name": "Pharmacie du Marché",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Pharmacie du Marché",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Pharmacie du Parc": {
- "tags": {
- "name": "Pharmacie du Parc",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Pharmacie du Parc",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Pharmaprix": {
- "tags": {
- "name": "Pharmaprix",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Pharmaprix",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Pharmasave": {
- "tags": {
- "name": "Pharmasave",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Pharmasave",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Punkt Apteczny": {
- "tags": {
- "name": "Punkt Apteczny",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Punkt Apteczny",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Rathaus-Apotheke": {
- "tags": {
- "name": "Rathaus-Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Rathaus-Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Rats-Apotheke": {
- "tags": {
- "name": "Rats-Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Rats-Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Rexall": {
- "tags": {
- "name": "Rexall",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Rexall",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Rite Aid": {
- "tags": {
- "name": "Rite Aid",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Rite Aid",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Rose Pharmacy": {
- "tags": {
- "name": "Rose Pharmacy",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Rose Pharmacy",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Rosen-Apotheke": {
- "tags": {
- "name": "Rosen-Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Rosen-Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Rowlands Pharmacy": {
- "tags": {
- "name": "Rowlands Pharmacy",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Rowlands Pharmacy",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/SalcoBrand": {
- "tags": {
- "name": "SalcoBrand",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "SalcoBrand",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Sana Sana": {
- "tags": {
- "name": "Sana Sana",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Sana Sana",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Schloss-Apotheke": {
- "tags": {
- "name": "Schloss-Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Schloss-Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Sensiblu": {
- "tags": {
- "name": "Sensiblu",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Sensiblu",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Shoppers Drug Mart": {
- "tags": {
- "name": "Shoppers Drug Mart",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Shoppers Drug Mart",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Sonnen-Apotheke": {
- "tags": {
- "name": "Sonnen-Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Sonnen-Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/South Star Drug": {
- "tags": {
- "name": "South Star Drug",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "South Star Drug",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Stadt-Apotheke": {
- "tags": {
- "name": "Stadt-Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Stadt-Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Stern-Apotheke": {
- "tags": {
- "name": "Stern-Apotheke",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Stern-Apotheke",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Superdrug": {
- "tags": {
- "name": "Superdrug",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Superdrug",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/São João": {
- "tags": {
- "name": "São João",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "São João",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/The Generics Pharmacy": {
- "tags": {
- "name": "The Generics Pharmacy",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "The Generics Pharmacy",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Uniprix": {
- "tags": {
- "name": "Uniprix",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Uniprix",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Walgreens": {
- "tags": {
- "name": "Walgreens",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Walgreens",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Walgreens Pharmacy": {
- "tags": {
- "name": "Walgreens Pharmacy",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Walgreens Pharmacy",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Walmart Pharmacy": {
- "tags": {
- "name": "Walmart Pharmacy",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Walmart Pharmacy",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Well Pharmacy": {
- "tags": {
- "name": "Well Pharmacy",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Well Pharmacy",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/centro naturista": {
- "tags": {
- "name": "centro naturista",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "centro naturista",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/А5": {
- "tags": {
- "name": "А5",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "А5",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Айболит": {
- "tags": {
- "name": "Айболит",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Айболит",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Аптека 36,6": {
- "tags": {
- "name": "Аптека 36,6",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Аптека 36,6",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Аптека низких цен": {
- "tags": {
- "name": "Аптека низких цен",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Аптека низких цен",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Аптека низьких цін": {
- "tags": {
- "name": "Аптека низьких цін",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Аптека низьких цін",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Аптека от склада": {
- "tags": {
- "name": "Аптека от склада",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Аптека от склада",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Аптека №1": {
- "tags": {
- "name": "Аптека №1",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Аптека №1",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Аптечный пункт": {
- "tags": {
- "name": "Аптечный пункт",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Аптечный пункт",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Арніка": {
- "tags": {
- "name": "Арніка",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Арніка",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Бережная аптека": {
- "tags": {
- "name": "Бережная аптека",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Бережная аптека",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Будь здоров": {
- "tags": {
- "name": "Будь здоров",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Будь здоров",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Вита": {
- "tags": {
- "name": "Вита",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Вита",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Горздрав": {
- "tags": {
- "name": "Горздрав",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Горздрав",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Живика": {
- "tags": {
- "name": "Живика",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Живика",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Здоровье": {
- "tags": {
- "name": "Здоровье",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Здоровье",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Имплозия": {
- "tags": {
- "name": "Имплозия",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Имплозия",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Классика": {
- "tags": {
- "name": "Классика",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Классика",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Ладушка": {
- "tags": {
- "name": "Ладушка",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Ладушка",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Мед-сервіс": {
- "tags": {
- "name": "Мед-сервіс",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Мед-сервіс",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Мелодия здоровья": {
- "tags": {
- "name": "Мелодия здоровья",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Мелодия здоровья",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Невис": {
- "tags": {
- "name": "Невис",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Невис",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Норма": {
- "tags": {
- "name": "Норма",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Норма",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Озерки": {
- "tags": {
- "name": "Озерки",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Озерки",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Панацея": {
- "tags": {
- "name": "Панацея",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Панацея",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Первая помощь": {
- "tags": {
- "name": "Первая помощь",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Первая помощь",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Планета здоровья": {
- "tags": {
- "name": "Планета здоровья",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Планета здоровья",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Ригла": {
- "tags": {
- "name": "Ригла",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Ригла",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Семейная": {
- "tags": {
- "name": "Семейная",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Семейная",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Социальная аптека": {
- "tags": {
- "name": "Социальная аптека",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Социальная аптека",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Столички": {
- "tags": {
- "name": "Столички",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Столички",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Фармакопейка": {
- "tags": {
- "name": "Фармакопейка",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Фармакопейка",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Фармакор": {
- "tags": {
- "name": "Фармакор",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Фармакор",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Фармация": {
- "tags": {
- "name": "Фармация",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Фармация",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Фармленд": {
- "tags": {
- "name": "Фармленд",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Фармленд",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/Центральная аптека": {
- "tags": {
- "name": "Центральная аптека",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "Центральная аптека",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/סופר-פארם": {
- "tags": {
- "name": "סופר-פארם",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "סופר-פארם",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/داروخانه": {
- "tags": {
- "name": "داروخانه",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "داروخانه",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/داروخانه شبانه روزی": {
- "tags": {
- "name": "داروخانه شبانه روزی",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "داروخانه شبانه روزی",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/صيدلية": {
- "tags": {
- "name": "صيدلية",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "صيدلية",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/くすりの福太郎": {
- "tags": {
- "name": "くすりの福太郎",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "くすりの福太郎",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/さくら薬局": {
- "tags": {
- "name": "さくら薬局",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "さくら薬局",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/ウエルシア": {
- "tags": {
- "name": "ウエルシア",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "ウエルシア",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/カワチ薬品": {
- "tags": {
- "name": "カワチ薬品",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "カワチ薬品",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/クリエイト": {
- "tags": {
- "name": "クリエイト",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "クリエイト",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/サンドラッグ": {
- "tags": {
- "name": "サンドラッグ",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "サンドラッグ",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/スギ薬局": {
- "tags": {
- "name": "スギ薬局",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "スギ薬局",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/セイジョー": {
- "tags": {
- "name": "セイジョー",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "セイジョー",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/ツルハドラッグ": {
- "tags": {
- "name": "ツルハドラッグ",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "ツルハドラッグ",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/ドラッグてらしま (Drug Terashima)": {
- "tags": {
- "name": "ドラッグてらしま (Drug Terashima)",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "ドラッグてらしま (Drug Terashima)",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/マツモトキヨシ": {
- "tags": {
- "name": "マツモトキヨシ",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "マツモトキヨシ",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pharmacy/丁丁藥局": {
- "tags": {
- "name": "丁丁藥局",
- "healthcare": "pharmacy",
- "amenity": "pharmacy"
- },
- "name": "丁丁藥局",
- "icon": "maki-pharmacy",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "drive_through",
- "opening_hours",
- "payment_multi",
- "dispensing"
- ],
- "suggestion": true
- },
- "amenity/pub/Black Bull": {
- "tags": {
- "name": "Black Bull",
- "amenity": "pub"
- },
- "name": "Black Bull",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/Commercial Hotel": {
- "tags": {
- "name": "Commercial Hotel",
- "amenity": "pub"
- },
- "name": "Commercial Hotel",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/Cross Keys": {
- "tags": {
- "name": "Cross Keys",
- "amenity": "pub"
- },
- "name": "Cross Keys",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/Irish Pub": {
- "tags": {
- "name": "Irish Pub",
- "amenity": "pub"
- },
- "name": "Irish Pub",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/Kings Arms": {
- "tags": {
- "name": "Kings Arms",
- "amenity": "pub"
- },
- "name": "Kings Arms",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/Kings Head": {
- "tags": {
- "name": "Kings Head",
- "amenity": "pub"
- },
- "name": "Kings Head",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/New Inn": {
- "tags": {
- "name": "New Inn",
- "amenity": "pub"
- },
- "name": "New Inn",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/Prince of Wales": {
- "tags": {
- "name": "Prince of Wales",
- "amenity": "pub"
- },
- "name": "Prince of Wales",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/Queens Head": {
- "tags": {
- "name": "Queens Head",
- "amenity": "pub"
- },
- "name": "Queens Head",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/Red Lion": {
- "tags": {
- "name": "Red Lion",
- "amenity": "pub"
- },
- "name": "Red Lion",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/Rose & Crown": {
- "tags": {
- "name": "Rose & Crown",
- "amenity": "pub"
- },
- "name": "Rose & Crown",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/Rose and Crown": {
- "tags": {
- "name": "Rose and Crown",
- "amenity": "pub"
- },
- "name": "Rose and Crown",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/Royal Oak": {
- "tags": {
- "name": "Royal Oak",
- "amenity": "pub"
- },
- "name": "Royal Oak",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Albion": {
- "tags": {
- "name": "The Albion",
- "amenity": "pub"
- },
- "name": "The Albion",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Anchor": {
- "tags": {
- "name": "The Anchor",
- "amenity": "pub"
- },
- "name": "The Anchor",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Angel": {
- "tags": {
- "name": "The Angel",
- "amenity": "pub"
- },
- "name": "The Angel",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Beehive": {
- "tags": {
- "name": "The Beehive",
- "amenity": "pub"
- },
- "name": "The Beehive",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Bell": {
- "tags": {
- "name": "The Bell",
- "amenity": "pub"
- },
- "name": "The Bell",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Bell Inn": {
- "tags": {
- "name": "The Bell Inn",
- "amenity": "pub"
- },
- "name": "The Bell Inn",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Black Horse": {
- "tags": {
- "name": "The Black Horse",
- "amenity": "pub"
- },
- "name": "The Black Horse",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Bull": {
- "tags": {
- "name": "The Bull",
- "amenity": "pub"
- },
- "name": "The Bull",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Castle": {
- "tags": {
- "name": "The Castle",
- "amenity": "pub"
- },
- "name": "The Castle",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Chequers": {
- "tags": {
- "name": "The Chequers",
- "amenity": "pub"
- },
- "name": "The Chequers",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Cricketers": {
- "tags": {
- "name": "The Cricketers",
- "amenity": "pub"
- },
- "name": "The Cricketers",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Cross Keys": {
- "tags": {
- "name": "The Cross Keys",
- "amenity": "pub"
- },
- "name": "The Cross Keys",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Crown": {
- "tags": {
- "name": "The Crown",
- "amenity": "pub"
- },
- "name": "The Crown",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Crown Inn": {
- "tags": {
- "name": "The Crown Inn",
- "amenity": "pub"
- },
- "name": "The Crown Inn",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Fox": {
- "tags": {
- "name": "The Fox",
- "amenity": "pub"
- },
- "name": "The Fox",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The George": {
- "tags": {
- "name": "The George",
- "amenity": "pub"
- },
- "name": "The George",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Green Man": {
- "tags": {
- "name": "The Green Man",
- "amenity": "pub"
- },
- "name": "The Green Man",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Greyhound": {
- "tags": {
- "name": "The Greyhound",
- "amenity": "pub"
- },
- "name": "The Greyhound",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Kings Arms": {
- "tags": {
- "name": "The Kings Arms",
- "amenity": "pub"
- },
- "name": "The Kings Arms",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Kings Head": {
- "tags": {
- "name": "The Kings Head",
- "amenity": "pub"
- },
- "name": "The Kings Head",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The New Inn": {
- "tags": {
- "name": "The New Inn",
- "amenity": "pub"
- },
- "name": "The New Inn",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Plough": {
- "tags": {
- "name": "The Plough",
- "amenity": "pub"
- },
- "name": "The Plough",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Plough Inn": {
- "tags": {
- "name": "The Plough Inn",
- "amenity": "pub"
- },
- "name": "The Plough Inn",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Queens Head": {
- "tags": {
- "name": "The Queens Head",
- "amenity": "pub"
- },
- "name": "The Queens Head",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Railway": {
- "tags": {
- "name": "The Railway",
- "amenity": "pub"
- },
- "name": "The Railway",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Red Lion": {
- "tags": {
- "name": "The Red Lion",
- "amenity": "pub"
- },
- "name": "The Red Lion",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Rising Sun": {
- "tags": {
- "name": "The Rising Sun",
- "amenity": "pub"
- },
- "name": "The Rising Sun",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Royal Oak": {
- "tags": {
- "name": "The Royal Oak",
- "amenity": "pub"
- },
- "name": "The Royal Oak",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Ship": {
- "tags": {
- "name": "The Ship",
- "amenity": "pub"
- },
- "name": "The Ship",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Ship Inn": {
- "tags": {
- "name": "The Ship Inn",
- "amenity": "pub"
- },
- "name": "The Ship Inn",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Star": {
- "tags": {
- "name": "The Star",
- "amenity": "pub"
- },
- "name": "The Star",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Star Inn": {
- "tags": {
- "name": "The Star Inn",
- "amenity": "pub"
- },
- "name": "The Star Inn",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Sun Inn": {
- "tags": {
- "name": "The Sun Inn",
- "amenity": "pub"
- },
- "name": "The Sun Inn",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Swan": {
- "tags": {
- "name": "The Swan",
- "amenity": "pub"
- },
- "name": "The Swan",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Swan Inn": {
- "tags": {
- "name": "The Swan Inn",
- "amenity": "pub"
- },
- "name": "The Swan Inn",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Victoria": {
- "tags": {
- "name": "The Victoria",
- "amenity": "pub"
- },
- "name": "The Victoria",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The Wheatsheaf": {
- "tags": {
- "name": "The Wheatsheaf",
- "amenity": "pub"
- },
- "name": "The Wheatsheaf",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The White Hart": {
- "tags": {
- "name": "The White Hart",
- "amenity": "pub"
- },
- "name": "The White Hart",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The White Horse": {
- "tags": {
- "name": "The White Horse",
- "amenity": "pub"
- },
- "name": "The White Horse",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The White Lion": {
- "tags": {
- "name": "The White Lion",
- "amenity": "pub"
- },
- "name": "The White Lion",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/The White Swan": {
- "tags": {
- "name": "The White Swan",
- "amenity": "pub"
- },
- "name": "The White Swan",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/魚民": {
- "tags": {
- "name": "魚民",
- "amenity": "pub"
- },
- "name": "魚民",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/pub/鳥貴族": {
- "tags": {
- "name": "鳥貴族",
- "amenity": "pub"
- },
- "name": "鳥貴族",
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "address",
- "building_area",
- "opening_hours",
- "smoking",
- "outdoor_seating",
- "brewery"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Adler": {
- "tags": {
- "name": "Adler",
- "amenity": "restaurant"
- },
- "name": "Adler",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Adria": {
- "tags": {
- "name": "Adria",
- "amenity": "restaurant"
- },
- "name": "Adria",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Adyar Ananda Bhavan": {
- "tags": {
- "name": "Adyar Ananda Bhavan",
- "amenity": "restaurant"
- },
- "name": "Adyar Ananda Bhavan",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Akropolis": {
- "tags": {
- "name": "Akropolis",
- "amenity": "restaurant"
- },
- "name": "Akropolis",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Alte Post": {
- "tags": {
- "name": "Alte Post",
- "amenity": "restaurant"
- },
- "name": "Alte Post",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Applebee's": {
- "tags": {
- "name": "Applebee's",
- "amenity": "restaurant"
- },
- "name": "Applebee's",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Asia": {
- "tags": {
- "name": "Asia",
- "amenity": "restaurant"
- },
- "name": "Asia",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Athen": {
- "tags": {
- "name": "Athen",
- "amenity": "restaurant"
- },
- "name": "Athen",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Athos": {
- "tags": {
- "name": "Athos",
- "amenity": "restaurant"
- },
- "name": "Athos",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Autogrill": {
- "tags": {
- "name": "Autogrill",
- "amenity": "restaurant"
- },
- "name": "Autogrill",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Bahnhof": {
- "tags": {
- "name": "Bahnhof",
- "amenity": "restaurant"
- },
- "name": "Bahnhof",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Bella Italia": {
- "tags": {
- "name": "Bella Italia",
- "amenity": "restaurant"
- },
- "name": "Bella Italia",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Bella Napoli": {
- "tags": {
- "name": "Bella Napoli",
- "amenity": "restaurant"
- },
- "name": "Bella Napoli",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Big Boy": {
- "tags": {
- "name": "Big Boy",
- "amenity": "restaurant"
- },
- "name": "Big Boy",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Bob Evans": {
- "tags": {
- "name": "Bob Evans",
- "amenity": "restaurant"
- },
- "name": "Bob Evans",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Bonefish Grill": {
- "tags": {
- "name": "Bonefish Grill",
- "amenity": "restaurant"
- },
- "name": "Bonefish Grill",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Boston Pizza": {
- "tags": {
- "name": "Boston Pizza",
- "amenity": "restaurant"
- },
- "name": "Boston Pizza",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Buffalo Grill": {
- "tags": {
- "name": "Buffalo Grill",
- "amenity": "restaurant"
- },
- "name": "Buffalo Grill",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Buffalo Wild Wings": {
- "tags": {
- "name": "Buffalo Wild Wings",
- "amenity": "restaurant"
- },
- "name": "Buffalo Wild Wings",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Bären": {
- "tags": {
- "name": "Bären",
- "amenity": "restaurant"
- },
- "name": "Bären",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/California Pizza Kitchen": {
- "tags": {
- "name": "California Pizza Kitchen",
- "amenity": "restaurant"
- },
- "name": "California Pizza Kitchen",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Canteen": {
- "tags": {
- "name": "Canteen",
- "amenity": "restaurant"
- },
- "name": "Canteen",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Capri": {
- "tags": {
- "name": "Capri",
- "amenity": "restaurant"
- },
- "name": "Capri",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Carluccio's": {
- "tags": {
- "name": "Carluccio's",
- "amenity": "restaurant"
- },
- "name": "Carluccio's",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Carpe Diem": {
- "tags": {
- "name": "Carpe Diem",
- "amenity": "restaurant"
- },
- "name": "Carpe Diem",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Carrabba's Italian Grill": {
- "tags": {
- "name": "Carrabba's Italian Grill",
- "amenity": "restaurant"
- },
- "name": "Carrabba's Italian Grill",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Casa Mia": {
- "tags": {
- "name": "Casa Mia",
- "amenity": "restaurant"
- },
- "name": "Casa Mia",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Casablanca": {
- "tags": {
- "name": "Casablanca",
- "amenity": "restaurant"
- },
- "name": "Casablanca",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Cheesecake Factory": {
- "tags": {
- "name": "Cheesecake Factory",
- "amenity": "restaurant"
- },
- "name": "Cheesecake Factory",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Chifa": {
- "tags": {
- "name": "Chifa",
- "amenity": "restaurant"
- },
- "name": "Chifa",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Chili's": {
- "tags": {
- "name": "Chili's",
- "amenity": "restaurant"
- },
- "name": "Chili's",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/China Buffet": {
- "tags": {
- "name": "China Buffet",
- "amenity": "restaurant"
- },
- "name": "China Buffet",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/China Garden": {
- "tags": {
- "name": "China Garden",
- "amenity": "restaurant"
- },
- "name": "China Garden",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/China House": {
- "tags": {
- "name": "China House",
- "amenity": "restaurant"
- },
- "name": "China House",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/China Town": {
- "tags": {
- "name": "China Town",
- "amenity": "restaurant"
- },
- "name": "China Town",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/China Wok": {
- "tags": {
- "name": "China Wok",
- "amenity": "restaurant"
- },
- "name": "China Wok",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Chiquito": {
- "tags": {
- "name": "Chiquito",
- "amenity": "restaurant"
- },
- "name": "Chiquito",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Chuck E. Cheese's": {
- "tags": {
- "name": "Chuck E. Cheese's",
- "amenity": "restaurant"
- },
- "name": "Chuck E. Cheese's",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Cici's Pizza": {
- "tags": {
- "name": "Cici's Pizza",
- "amenity": "restaurant"
- },
- "name": "Cici's Pizza",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Comedor": {
- "tags": {
- "name": "Comedor",
- "amenity": "restaurant"
- },
- "name": "Comedor",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Comida China": {
- "tags": {
- "name": "Comida China",
- "amenity": "restaurant"
- },
- "name": "Comida China",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Courtepaille": {
- "tags": {
- "name": "Courtepaille",
- "amenity": "restaurant"
- },
- "name": "Courtepaille",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Cracker Barrel": {
- "tags": {
- "name": "Cracker Barrel",
- "amenity": "restaurant"
- },
- "name": "Cracker Barrel",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Da Grasso": {
- "tags": {
- "name": "Da Grasso",
- "amenity": "restaurant"
- },
- "name": "Da Grasso",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Da Vinci": {
- "tags": {
- "name": "Da Vinci",
- "amenity": "restaurant"
- },
- "name": "Da Vinci",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Delphi": {
- "tags": {
- "name": "Delphi",
- "amenity": "restaurant"
- },
- "name": "Delphi",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Denny's": {
- "tags": {
- "name": "Denny's",
- "amenity": "restaurant"
- },
- "name": "Denny's",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Deutsches Haus": {
- "tags": {
- "name": "Deutsches Haus",
- "amenity": "restaurant"
- },
- "name": "Deutsches Haus",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Dionysos": {
- "tags": {
- "name": "Dionysos",
- "amenity": "restaurant"
- },
- "name": "Dionysos",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Dolce Vita": {
- "tags": {
- "name": "Dolce Vita",
- "amenity": "restaurant"
- },
- "name": "Dolce Vita",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Dorfkrug": {
- "tags": {
- "name": "Dorfkrug",
- "amenity": "restaurant"
- },
- "name": "Dorfkrug",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/East Side Mario's": {
- "tags": {
- "name": "East Side Mario's",
- "amenity": "restaurant"
- },
- "name": "East Side Mario's",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/El Greco": {
- "tags": {
- "name": "El Greco",
- "amenity": "restaurant"
- },
- "name": "El Greco",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/El Paso": {
- "tags": {
- "name": "El Paso",
- "amenity": "restaurant"
- },
- "name": "El Paso",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/El Rancho": {
- "tags": {
- "name": "El Rancho",
- "amenity": "restaurant"
- },
- "name": "El Rancho",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Europa": {
- "tags": {
- "name": "Europa",
- "amenity": "restaurant"
- },
- "name": "Europa",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Famous Dave's": {
- "tags": {
- "name": "Famous Dave's",
- "amenity": "restaurant"
- },
- "name": "Famous Dave's",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Flunch": {
- "tags": {
- "name": "Flunch",
- "amenity": "restaurant"
- },
- "name": "Flunch",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Frankie & Benny's": {
- "tags": {
- "name": "Frankie & Benny's",
- "amenity": "restaurant"
- },
- "name": "Frankie & Benny's",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Friendly's": {
- "tags": {
- "name": "Friendly's",
- "amenity": "restaurant"
- },
- "name": "Friendly's",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Gasthaus Krone": {
- "tags": {
- "name": "Gasthaus Krone",
- "amenity": "restaurant"
- },
- "name": "Gasthaus Krone",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Gasthaus zur Linde": {
- "tags": {
- "name": "Gasthaus zur Linde",
- "amenity": "restaurant"
- },
- "name": "Gasthaus zur Linde",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Gasthof zur Post": {
- "tags": {
- "name": "Gasthof zur Post",
- "amenity": "restaurant"
- },
- "name": "Gasthof zur Post",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Golden Corral": {
- "tags": {
- "name": "Golden Corral",
- "amenity": "restaurant"
- },
- "name": "Golden Corral",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Golden Dragon": {
- "tags": {
- "name": "Golden Dragon",
- "amenity": "restaurant"
- },
- "name": "Golden Dragon",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Great Wall": {
- "tags": {
- "name": "Great Wall",
- "amenity": "restaurant"
- },
- "name": "Great Wall",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Grüner Baum": {
- "tags": {
- "name": "Grüner Baum",
- "amenity": "restaurant"
- },
- "name": "Grüner Baum",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Gusto": {
- "tags": {
- "name": "Gusto",
- "amenity": "restaurant"
- },
- "name": "Gusto",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Hard Rock Cafe": {
- "tags": {
- "name": "Hard Rock Cafe",
- "amenity": "restaurant"
- },
- "name": "Hard Rock Cafe",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Harvester": {
- "tags": {
- "name": "Harvester",
- "amenity": "restaurant"
- },
- "name": "Harvester",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Hellas": {
- "tags": {
- "name": "Hellas",
- "amenity": "restaurant"
- },
- "name": "Hellas",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Hippopotamus": {
- "tags": {
- "name": "Hippopotamus",
- "amenity": "restaurant"
- },
- "name": "Hippopotamus",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Hirsch": {
- "tags": {
- "name": "Hirsch",
- "amenity": "restaurant"
- },
- "name": "Hirsch",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Hirschen": {
- "tags": {
- "name": "Hirschen",
- "amenity": "restaurant"
- },
- "name": "Hirschen",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Hong Kong": {
- "tags": {
- "name": "Hong Kong",
- "amenity": "restaurant"
- },
- "name": "Hong Kong",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Hooters": {
- "tags": {
- "name": "Hooters",
- "amenity": "restaurant"
- },
- "name": "Hooters",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/IHOP": {
- "tags": {
- "name": "IHOP",
- "amenity": "restaurant"
- },
- "name": "IHOP",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/IL Патио": {
- "tags": {
- "name": "IL Патио",
- "amenity": "restaurant"
- },
- "name": "IL Патио",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Jason's Deli": {
- "tags": {
- "name": "Jason's Deli",
- "amenity": "restaurant"
- },
- "name": "Jason's Deli",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Joe's Crab Shack": {
- "tags": {
- "name": "Joe's Crab Shack",
- "amenity": "restaurant"
- },
- "name": "Joe's Crab Shack",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Jägerhof": {
- "tags": {
- "name": "Jägerhof",
- "amenity": "restaurant"
- },
- "name": "Jägerhof",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Kantine": {
- "tags": {
- "name": "Kantine",
- "amenity": "restaurant"
- },
- "name": "Kantine",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Kelsey's": {
- "tags": {
- "name": "Kelsey's",
- "amenity": "restaurant"
- },
- "name": "Kelsey's",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Kirchenwirt": {
- "tags": {
- "name": "Kirchenwirt",
- "amenity": "restaurant"
- },
- "name": "Kirchenwirt",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Kreta": {
- "tags": {
- "name": "Kreta",
- "amenity": "restaurant"
- },
- "name": "Kreta",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Kreuz": {
- "tags": {
- "name": "Kreuz",
- "amenity": "restaurant"
- },
- "name": "Kreuz",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Krone": {
- "tags": {
- "name": "Krone",
- "amenity": "restaurant"
- },
- "name": "Krone",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Kudu": {
- "tags": {
- "name": "Kudu",
- "amenity": "restaurant"
- },
- "name": "Kudu",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/L'Escale": {
- "tags": {
- "name": "L'Escale",
- "amenity": "restaurant"
- },
- "name": "L'Escale",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/L'Osteria": {
- "tags": {
- "name": "L'Osteria",
- "amenity": "restaurant"
- },
- "name": "L'Osteria",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Bodega": {
- "tags": {
- "name": "La Bodega",
- "amenity": "restaurant"
- },
- "name": "La Bodega",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Boucherie": {
- "tags": {
- "name": "La Boucherie",
- "amenity": "restaurant"
- },
- "name": "La Boucherie",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Cantina": {
- "tags": {
- "name": "La Cantina",
- "amenity": "restaurant"
- },
- "name": "La Cantina",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Casa": {
- "tags": {
- "name": "La Casa",
- "amenity": "restaurant"
- },
- "name": "La Casa",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Casona": {
- "tags": {
- "name": "La Casona",
- "amenity": "restaurant"
- },
- "name": "La Casona",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Dolce Vita": {
- "tags": {
- "name": "La Dolce Vita",
- "amenity": "restaurant"
- },
- "name": "La Dolce Vita",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Fontana": {
- "tags": {
- "name": "La Fontana",
- "amenity": "restaurant"
- },
- "name": "La Fontana",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Gondola": {
- "tags": {
- "name": "La Gondola",
- "amenity": "restaurant"
- },
- "name": "La Gondola",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Hacienda": {
- "tags": {
- "name": "La Hacienda",
- "amenity": "restaurant"
- },
- "name": "La Hacienda",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Pataterie": {
- "tags": {
- "name": "La Pataterie",
- "amenity": "restaurant"
- },
- "name": "La Pataterie",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Pergola": {
- "tags": {
- "name": "La Pergola",
- "amenity": "restaurant"
- },
- "name": "La Pergola",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Perla": {
- "tags": {
- "name": "La Perla",
- "amenity": "restaurant"
- },
- "name": "La Perla",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Piazza": {
- "tags": {
- "name": "La Piazza",
- "amenity": "restaurant"
- },
- "name": "La Piazza",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Piazzetta": {
- "tags": {
- "name": "La Piazzetta",
- "amenity": "restaurant"
- },
- "name": "La Piazzetta",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Place": {
- "tags": {
- "name": "La Place",
- "amenity": "restaurant"
- },
- "name": "La Place",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Scala": {
- "tags": {
- "name": "La Scala",
- "amenity": "restaurant"
- },
- "name": "La Scala",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Strada": {
- "tags": {
- "name": "La Strada",
- "amenity": "restaurant"
- },
- "name": "La Strada",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Tagliatella": {
- "tags": {
- "name": "La Tagliatella",
- "amenity": "restaurant"
- },
- "name": "La Tagliatella",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Tasca": {
- "tags": {
- "name": "La Tasca",
- "amenity": "restaurant"
- },
- "name": "La Tasca",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Taverna": {
- "tags": {
- "name": "La Taverna",
- "amenity": "restaurant"
- },
- "name": "La Taverna",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Terrasse": {
- "tags": {
- "name": "La Terrasse",
- "amenity": "restaurant"
- },
- "name": "La Terrasse",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Terraza": {
- "tags": {
- "name": "La Terraza",
- "amenity": "restaurant"
- },
- "name": "La Terraza",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Terrazza": {
- "tags": {
- "name": "La Terrazza",
- "amenity": "restaurant"
- },
- "name": "La Terrazza",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/La Trattoria": {
- "tags": {
- "name": "La Trattoria",
- "amenity": "restaurant"
- },
- "name": "La Trattoria",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Lamm": {
- "tags": {
- "name": "Lamm",
- "amenity": "restaurant"
- },
- "name": "Lamm",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Linde": {
- "tags": {
- "name": "Linde",
- "amenity": "restaurant"
- },
- "name": "Linde",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Lindenhof": {
- "tags": {
- "name": "Lindenhof",
- "amenity": "restaurant"
- },
- "name": "Lindenhof",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Little Chef": {
- "tags": {
- "name": "Little Chef",
- "amenity": "restaurant"
- },
- "name": "Little Chef",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Little Italy": {
- "tags": {
- "name": "Little Italy",
- "amenity": "restaurant"
- },
- "name": "Little Italy",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Logan's Roadhouse": {
- "tags": {
- "name": "Logan's Roadhouse",
- "amenity": "restaurant"
- },
- "name": "Logan's Roadhouse",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/LongHorn Steakhouse": {
- "tags": {
- "name": "LongHorn Steakhouse",
- "amenity": "restaurant"
- },
- "name": "LongHorn Steakhouse",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Lotus": {
- "tags": {
- "name": "Lotus",
- "amenity": "restaurant"
- },
- "name": "Lotus",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Léon de Bruxelles": {
- "tags": {
- "name": "Léon de Bruxelles",
- "amenity": "restaurant"
- },
- "name": "Léon de Bruxelles",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Löwen": {
- "tags": {
- "name": "Löwen",
- "amenity": "restaurant"
- },
- "name": "Löwen",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/MK Restaurants": {
- "tags": {
- "name": "MK Restaurants",
- "amenity": "restaurant"
- },
- "name": "MK Restaurants",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Maharaja": {
- "tags": {
- "name": "Maharaja",
- "amenity": "restaurant"
- },
- "name": "Maharaja",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Mamma Mia": {
- "tags": {
- "name": "Mamma Mia",
- "amenity": "restaurant"
- },
- "name": "Mamma Mia",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Mandarin": {
- "tags": {
- "name": "Mandarin",
- "amenity": "restaurant"
- },
- "name": "Mandarin",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Mang Inasal": {
- "tags": {
- "name": "Mang Inasal",
- "amenity": "restaurant"
- },
- "name": "Mang Inasal",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Marco Polo": {
- "tags": {
- "name": "Marco Polo",
- "amenity": "restaurant"
- },
- "name": "Marco Polo",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Marco's Pizza": {
- "tags": {
- "name": "Marco's Pizza",
- "amenity": "restaurant"
- },
- "name": "Marco's Pizza",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/McAlister's Deli": {
- "tags": {
- "name": "McAlister's Deli",
- "amenity": "restaurant"
- },
- "name": "McAlister's Deli",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Mediterraneo": {
- "tags": {
- "name": "Mediterraneo",
- "amenity": "restaurant"
- },
- "name": "Mediterraneo",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Mellow Mushroom": {
- "tags": {
- "name": "Mellow Mushroom",
- "amenity": "restaurant"
- },
- "name": "Mellow Mushroom",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Mensa": {
- "tags": {
- "name": "Mensa",
- "amenity": "restaurant"
- },
- "name": "Mensa",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Milano": {
- "tags": {
- "name": "Milano",
- "amenity": "restaurant"
- },
- "name": "Milano",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Mimi's Cafe": {
- "tags": {
- "name": "Mimi's Cafe",
- "amenity": "restaurant"
- },
- "name": "Mimi's Cafe",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Moe's Southwest Grill": {
- "tags": {
- "name": "Moe's Southwest Grill",
- "amenity": "restaurant"
- },
- "name": "Moe's Southwest Grill",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Mykonos": {
- "tags": {
- "name": "Mykonos",
- "amenity": "restaurant"
- },
- "name": "Mykonos",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Mythos": {
- "tags": {
- "name": "Mythos",
- "amenity": "restaurant"
- },
- "name": "Mythos",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Nando's": {
- "tags": {
- "name": "Nando's",
- "amenity": "restaurant"
- },
- "name": "Nando's",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Noodles & Company": {
- "tags": {
- "name": "Noodles & Company",
- "amenity": "restaurant"
- },
- "name": "Noodles & Company",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/O'Charley's": {
- "tags": {
- "name": "O'Charley's",
- "amenity": "restaurant"
- },
- "name": "O'Charley's",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Oasis": {
- "tags": {
- "name": "Oasis",
- "amenity": "restaurant"
- },
- "name": "Oasis",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Ocean Basket": {
- "tags": {
- "name": "Ocean Basket",
- "amenity": "restaurant"
- },
- "name": "Ocean Basket",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Ochsen": {
- "tags": {
- "name": "Ochsen",
- "amenity": "restaurant"
- },
- "name": "Ochsen",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Old Chicago": {
- "tags": {
- "name": "Old Chicago",
- "amenity": "restaurant"
- },
- "name": "Old Chicago",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Olive Garden": {
- "tags": {
- "name": "Olive Garden",
- "amenity": "restaurant"
- },
- "name": "Olive Garden",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Olympia": {
- "tags": {
- "name": "Olympia",
- "amenity": "restaurant"
- },
- "name": "Olympia",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Osaka": {
- "tags": {
- "name": "Osaka",
- "amenity": "restaurant"
- },
- "name": "Osaka",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Outback Steakhouse": {
- "tags": {
- "name": "Outback Steakhouse",
- "amenity": "restaurant"
- },
- "name": "Outback Steakhouse",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/P.F. Chang's": {
- "tags": {
- "name": "P.F. Chang's",
- "amenity": "restaurant"
- },
- "name": "P.F. Chang's",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Pancake House": {
- "tags": {
- "name": "Pancake House",
- "amenity": "restaurant"
- },
- "name": "Pancake House",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Panda": {
- "tags": {
- "name": "Panda",
- "amenity": "restaurant"
- },
- "name": "Panda",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Panera Bread": {
- "tags": {
- "name": "Panera Bread",
- "amenity": "restaurant"
- },
- "name": "Panera Bread",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Panorama": {
- "tags": {
- "name": "Panorama",
- "amenity": "restaurant"
- },
- "name": "Panorama",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Parrilla": {
- "tags": {
- "name": "Parrilla",
- "amenity": "restaurant"
- },
- "name": "Parrilla",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Peking": {
- "tags": {
- "name": "Peking",
- "amenity": "restaurant"
- },
- "name": "Peking",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Perkins": {
- "tags": {
- "name": "Perkins",
- "amenity": "restaurant"
- },
- "name": "Perkins",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Pinocchio": {
- "tags": {
- "name": "Pinocchio",
- "amenity": "restaurant"
- },
- "name": "Pinocchio",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Pizza Express": {
- "tags": {
- "name": "Pizza Express",
- "amenity": "restaurant"
- },
- "name": "Pizza Express",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Pizza Factory": {
- "tags": {
- "name": "Pizza Factory",
- "amenity": "restaurant"
- },
- "name": "Pizza Factory",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Pizza House": {
- "tags": {
- "name": "Pizza House",
- "amenity": "restaurant"
- },
- "name": "Pizza House",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Pizza Hut": {
- "tags": {
- "name": "Pizza Hut",
- "cuisine": "pizza",
- "amenity": "restaurant"
- },
- "name": "Pizza Hut",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Pizza Ranch": {
- "tags": {
- "name": "Pizza Ranch",
- "amenity": "restaurant"
- },
- "name": "Pizza Ranch",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Pizzeria Italia": {
- "tags": {
- "name": "Pizzeria Italia",
- "amenity": "restaurant"
- },
- "name": "Pizzeria Italia",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Pizzeria Milano": {
- "tags": {
- "name": "Pizzeria Milano",
- "amenity": "restaurant"
- },
- "name": "Pizzeria Milano",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Pizzeria Napoli": {
- "tags": {
- "name": "Pizzeria Napoli",
- "amenity": "restaurant"
- },
- "name": "Pizzeria Napoli",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Pizzeria Roma": {
- "tags": {
- "name": "Pizzeria Roma",
- "amenity": "restaurant"
- },
- "name": "Pizzeria Roma",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Pizzeria Venezia": {
- "tags": {
- "name": "Pizzeria Venezia",
- "amenity": "restaurant"
- },
- "name": "Pizzeria Venezia",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Poivre Rouge": {
- "tags": {
- "name": "Poivre Rouge",
- "amenity": "restaurant"
- },
- "name": "Poivre Rouge",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Pomodoro": {
- "tags": {
- "name": "Pomodoro",
- "amenity": "restaurant"
- },
- "name": "Pomodoro",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Portofino": {
- "tags": {
- "name": "Portofino",
- "amenity": "restaurant"
- },
- "name": "Portofino",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Poseidon": {
- "tags": {
- "name": "Poseidon",
- "amenity": "restaurant"
- },
- "name": "Poseidon",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Prezzo": {
- "tags": {
- "name": "Prezzo",
- "amenity": "restaurant"
- },
- "name": "Prezzo",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Qdoba Mexican Grill": {
- "tags": {
- "name": "Qdoba Mexican Grill",
- "amenity": "restaurant"
- },
- "name": "Qdoba Mexican Grill",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Ratskeller": {
- "tags": {
- "name": "Ratskeller",
- "amenity": "restaurant"
- },
- "name": "Ratskeller",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Red Lobster": {
- "tags": {
- "name": "Red Lobster",
- "amenity": "restaurant"
- },
- "name": "Red Lobster",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Red Robin": {
- "tags": {
- "name": "Red Robin",
- "amenity": "restaurant"
- },
- "name": "Red Robin",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Restaurante Universitário": {
- "tags": {
- "name": "Restaurante Universitário",
- "amenity": "restaurant"
- },
- "name": "Restaurante Universitário",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Rhodos": {
- "tags": {
- "name": "Rhodos",
- "amenity": "restaurant"
- },
- "name": "Rhodos",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Ristorante Del Arte": {
- "tags": {
- "name": "Ristorante Del Arte",
- "amenity": "restaurant"
- },
- "name": "Ristorante Del Arte",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Roma": {
- "tags": {
- "name": "Roma",
- "amenity": "restaurant"
- },
- "name": "Roma",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Rose": {
- "tags": {
- "name": "Rose",
- "amenity": "restaurant"
- },
- "name": "Rose",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Round Table Pizza": {
- "tags": {
- "name": "Round Table Pizza",
- "amenity": "restaurant"
- },
- "name": "Round Table Pizza",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Ruby Tuesday": {
- "tags": {
- "name": "Ruby Tuesday",
- "amenity": "restaurant"
- },
- "name": "Ruby Tuesday",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Rössle": {
- "tags": {
- "name": "Rössle",
- "amenity": "restaurant"
- },
- "name": "Rössle",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Rössli": {
- "tags": {
- "name": "Rössli",
- "amenity": "restaurant"
- },
- "name": "Rössli",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Saigon": {
- "tags": {
- "name": "Saigon",
- "amenity": "restaurant"
- },
- "name": "Saigon",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Sakura": {
- "tags": {
- "name": "Sakura",
- "amenity": "restaurant"
- },
- "name": "Sakura",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/San Marco": {
- "tags": {
- "name": "San Marco",
- "amenity": "restaurant"
- },
- "name": "San Marco",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Santorini": {
- "tags": {
- "name": "Santorini",
- "amenity": "restaurant"
- },
- "name": "Santorini",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Schwarzer Adler": {
- "tags": {
- "name": "Schwarzer Adler",
- "amenity": "restaurant"
- },
- "name": "Schwarzer Adler",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Schützenhaus": {
- "tags": {
- "name": "Schützenhaus",
- "amenity": "restaurant"
- },
- "name": "Schützenhaus",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Shakey's": {
- "tags": {
- "name": "Shakey's",
- "amenity": "restaurant"
- },
- "name": "Shakey's",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Shalimar": {
- "tags": {
- "name": "Shalimar",
- "amenity": "restaurant"
- },
- "name": "Shalimar",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Shanghai": {
- "tags": {
- "name": "Shanghai",
- "amenity": "restaurant"
- },
- "name": "Shanghai",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Shari's": {
- "tags": {
- "name": "Shari's",
- "amenity": "restaurant"
- },
- "name": "Shari's",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Shoney's": {
- "tags": {
- "name": "Shoney's",
- "amenity": "restaurant"
- },
- "name": "Shoney's",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Sizzler": {
- "tags": {
- "name": "Sizzler",
- "amenity": "restaurant"
- },
- "name": "Sizzler",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Sonne": {
- "tags": {
- "name": "Sonne",
- "amenity": "restaurant"
- },
- "name": "Sonne",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Sphinx": {
- "tags": {
- "name": "Sphinx",
- "amenity": "restaurant"
- },
- "name": "Sphinx",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Sportheim": {
- "tags": {
- "name": "Sportheim",
- "amenity": "restaurant"
- },
- "name": "Sportheim",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Spur": {
- "tags": {
- "name": "Spur",
- "amenity": "restaurant"
- },
- "name": "Spur",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Steak 'n Shake": {
- "tags": {
- "name": "Steak 'n Shake",
- "cuisine": "burger",
- "amenity": "restaurant"
- },
- "name": "Steak 'n Shake",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Sternen": {
- "tags": {
- "name": "Sternen",
- "amenity": "restaurant"
- },
- "name": "Sternen",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Sunset Grill": {
- "tags": {
- "name": "Sunset Grill",
- "amenity": "restaurant"
- },
- "name": "Sunset Grill",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Sushi": {
- "tags": {
- "name": "Sushi",
- "amenity": "restaurant"
- },
- "name": "Sushi",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Sushi Bar": {
- "tags": {
- "name": "Sushi Bar",
- "amenity": "restaurant"
- },
- "name": "Sushi Bar",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Swiss Chalet": {
- "tags": {
- "name": "Swiss Chalet",
- "amenity": "restaurant"
- },
- "name": "Swiss Chalet",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Syrtaki": {
- "tags": {
- "name": "Syrtaki",
- "amenity": "restaurant"
- },
- "name": "Syrtaki",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/TGI Friday's": {
- "tags": {
- "name": "TGI Friday's",
- "amenity": "restaurant"
- },
- "name": "TGI Friday's",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Taj Mahal": {
- "tags": {
- "name": "Taj Mahal",
- "amenity": "restaurant"
- },
- "name": "Taj Mahal",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Taste of India": {
- "tags": {
- "name": "Taste of India",
- "amenity": "restaurant"
- },
- "name": "Taste of India",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Taverna": {
- "tags": {
- "name": "Taverna",
- "amenity": "restaurant"
- },
- "name": "Taverna",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Texas Roadhouse": {
- "tags": {
- "name": "Texas Roadhouse",
- "amenity": "restaurant"
- },
- "name": "Texas Roadhouse",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/The Cheesecake Factory": {
- "tags": {
- "name": "The Cheesecake Factory",
- "amenity": "restaurant"
- },
- "name": "The Cheesecake Factory",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Toby Carvery": {
- "tags": {
- "name": "Toby Carvery",
- "amenity": "restaurant"
- },
- "name": "Toby Carvery",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Tony Roma's": {
- "tags": {
- "name": "Tony Roma's",
- "amenity": "restaurant"
- },
- "name": "Tony Roma's",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Toscana": {
- "tags": {
- "name": "Toscana",
- "amenity": "restaurant"
- },
- "name": "Toscana",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Trattoria": {
- "tags": {
- "name": "Trattoria",
- "amenity": "restaurant"
- },
- "name": "Trattoria",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Traube": {
- "tags": {
- "name": "Traube",
- "amenity": "restaurant"
- },
- "name": "Traube",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Vapiano": {
- "tags": {
- "name": "Vapiano",
- "amenity": "restaurant"
- },
- "name": "Vapiano",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Venezia": {
- "tags": {
- "name": "Venezia",
- "amenity": "restaurant"
- },
- "name": "Venezia",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Village Inn": {
- "tags": {
- "name": "Village Inn",
- "amenity": "restaurant"
- },
- "name": "Village Inn",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Vips": {
- "tags": {
- "name": "Vips",
- "amenity": "restaurant"
- },
- "name": "Vips",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Waffle House": {
- "tags": {
- "name": "Waffle House",
- "amenity": "restaurant"
- },
- "name": "Waffle House",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Wagamama": {
- "tags": {
- "name": "Wagamama",
- "amenity": "restaurant"
- },
- "name": "Wagamama",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Waldschänke": {
- "tags": {
- "name": "Waldschänke",
- "amenity": "restaurant"
- },
- "name": "Waldschänke",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Warung": {
- "tags": {
- "name": "Warung",
- "amenity": "restaurant"
- },
- "name": "Warung",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Wasabi": {
- "tags": {
- "name": "Wasabi",
- "amenity": "restaurant"
- },
- "name": "Wasabi",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Zizzi": {
- "tags": {
- "name": "Zizzi",
- "amenity": "restaurant"
- },
- "name": "Zizzi",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Zorbas": {
- "tags": {
- "name": "Zorbas",
- "amenity": "restaurant"
- },
- "name": "Zorbas",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Zum Hirschen": {
- "tags": {
- "name": "Zum Hirschen",
- "amenity": "restaurant"
- },
- "name": "Zum Hirschen",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Zum Löwen": {
- "tags": {
- "name": "Zum Löwen",
- "amenity": "restaurant"
- },
- "name": "Zum Löwen",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Zur Krone": {
- "tags": {
- "name": "Zur Krone",
- "amenity": "restaurant"
- },
- "name": "Zur Krone",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Zur Linde": {
- "tags": {
- "name": "Zur Linde",
- "amenity": "restaurant"
- },
- "name": "Zur Linde",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Zur Post": {
- "tags": {
- "name": "Zur Post",
- "amenity": "restaurant"
- },
- "name": "Zur Post",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Zur Sonne": {
- "tags": {
- "name": "Zur Sonne",
- "amenity": "restaurant"
- },
- "name": "Zur Sonne",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Евразия": {
- "tags": {
- "name": "Евразия",
- "amenity": "restaurant"
- },
- "name": "Евразия",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Ресторан": {
- "tags": {
- "name": "Ресторан",
- "amenity": "restaurant"
- },
- "name": "Ресторан",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Тануки": {
- "tags": {
- "name": "Тануки",
- "amenity": "restaurant"
- },
- "name": "Тануки",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/Якитория": {
- "tags": {
- "name": "Якитория",
- "amenity": "restaurant"
- },
- "name": "Якитория",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/رستوران": {
- "tags": {
- "name": "رستوران",
- "amenity": "restaurant"
- },
- "name": "رستوران",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/مطعم": {
- "tags": {
- "name": "مطعم",
- "amenity": "restaurant"
- },
- "name": "مطعم",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/はま寿司": {
- "tags": {
- "name": "はま寿司",
- "amenity": "restaurant"
- },
- "name": "はま寿司",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/びっくりドンキー": {
- "tags": {
- "name": "びっくりドンキー",
- "amenity": "restaurant"
- },
- "name": "びっくりドンキー",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/やよい軒": {
- "tags": {
- "name": "やよい軒",
- "amenity": "restaurant"
- },
- "name": "やよい軒",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/ガスト": {
- "tags": {
- "name": "ガスト",
- "name:en": "Gusto",
- "amenity": "restaurant"
- },
- "name": "ガスト",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/ココス": {
- "tags": {
- "name": "ココス",
- "amenity": "restaurant"
- },
- "name": "ココス",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/サイゼリア": {
- "tags": {
- "name": "サイゼリア",
- "amenity": "restaurant"
- },
- "name": "サイゼリア",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/サイゼリヤ": {
- "tags": {
- "name": "サイゼリヤ",
- "amenity": "restaurant"
- },
- "name": "サイゼリヤ",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/ジョイフル": {
- "tags": {
- "name": "ジョイフル",
- "amenity": "restaurant"
- },
- "name": "ジョイフル",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/ジョナサン": {
- "tags": {
- "name": "ジョナサン",
- "amenity": "restaurant"
- },
- "name": "ジョナサン",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/ジョリーパスタ": {
- "tags": {
- "name": "ジョリーパスタ",
- "amenity": "restaurant"
- },
- "name": "ジョリーパスタ",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/デニーズ": {
- "tags": {
- "name": "デニーズ",
- "amenity": "restaurant"
- },
- "name": "デニーズ",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/バーミヤン": {
- "tags": {
- "name": "バーミヤン",
- "amenity": "restaurant"
- },
- "name": "バーミヤン",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/ロイヤルホスト": {
- "tags": {
- "name": "ロイヤルホスト",
- "amenity": "restaurant"
- },
- "name": "ロイヤルホスト",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/丸亀製麺": {
- "tags": {
- "name": "丸亀製麺",
- "amenity": "restaurant"
- },
- "name": "丸亀製麺",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/八方雲集": {
- "tags": {
- "name": "八方雲集",
- "amenity": "restaurant"
- },
- "name": "八方雲集",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/夢庵": {
- "tags": {
- "name": "夢庵",
- "amenity": "restaurant"
- },
- "name": "夢庵",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/大戸屋": {
- "tags": {
- "name": "大戸屋",
- "amenity": "restaurant"
- },
- "name": "大戸屋",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/大阪王将": {
- "tags": {
- "name": "大阪王将",
- "amenity": "restaurant"
- },
- "name": "大阪王将",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/天下一品": {
- "tags": {
- "name": "天下一品",
- "amenity": "restaurant"
- },
- "name": "天下一品",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/安楽亭": {
- "tags": {
- "name": "安楽亭",
- "amenity": "restaurant"
- },
- "name": "安楽亭",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/牛角": {
- "tags": {
- "name": "牛角",
- "amenity": "restaurant"
- },
- "name": "牛角",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/食堂": {
- "tags": {
- "name": "食堂",
- "amenity": "restaurant"
- },
- "name": "食堂",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/餃子の王将": {
- "tags": {
- "name": "餃子の王将",
- "amenity": "restaurant"
- },
- "name": "餃子の王将",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/restaurant/바다횟집 (Bada Fish Restaurant)": {
- "tags": {
- "name": "바다횟집 (Bada Fish Restaurant)",
- "amenity": "restaurant"
- },
- "name": "바다횟집 (Bada Fish Restaurant)",
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area",
- "opening_hours",
- "capacity",
- "takeaway",
- "delivery",
- "smoking",
- "outdoor_seating"
- ],
- "suggestion": true
- },
- "amenity/school/Adolfo Lopez Mateos": {
- "tags": {
- "name": "Adolfo Lopez Mateos",
- "amenity": "school"
- },
- "name": "Adolfo Lopez Mateos",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Agustin Ya�ez": {
- "tags": {
- "name": "Agustin Ya�ez",
- "amenity": "school"
- },
- "name": "Agustin Ya�ez",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Albert-Schweitzer-Schule": {
- "tags": {
- "name": "Albert-Schweitzer-Schule",
- "amenity": "school"
- },
- "name": "Albert-Schweitzer-Schule",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Amado Nervo": {
- "tags": {
- "name": "Amado Nervo",
- "amenity": "school"
- },
- "name": "Amado Nervo",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Astrid-Lindgren-Schule": {
- "tags": {
- "name": "Astrid-Lindgren-Schule",
- "amenity": "school"
- },
- "name": "Astrid-Lindgren-Schule",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Benito Juarez": {
- "tags": {
- "name": "Benito Juarez",
- "amenity": "school"
- },
- "name": "Benito Juarez",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Brown School": {
- "tags": {
- "name": "Brown School",
- "amenity": "school"
- },
- "name": "Brown School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/CEM": {
- "tags": {
- "name": "CEM",
- "amenity": "school"
- },
- "name": "CEM",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Center School": {
- "tags": {
- "name": "Center School",
- "amenity": "school"
- },
- "name": "Center School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Central Elementary School": {
- "tags": {
- "name": "Central Elementary School",
- "amenity": "school"
- },
- "name": "Central Elementary School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Central High School": {
- "tags": {
- "name": "Central High School",
- "amenity": "school"
- },
- "name": "Central High School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Central School": {
- "tags": {
- "name": "Central School",
- "amenity": "school"
- },
- "name": "Central School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Colegio San José": {
- "tags": {
- "name": "Colegio San José",
- "amenity": "school"
- },
- "name": "Colegio San José",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Collège Jean Moulin": {
- "tags": {
- "name": "Collège Jean Moulin",
- "amenity": "school"
- },
- "name": "Collège Jean Moulin",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Collège privé Saint-Joseph": {
- "tags": {
- "name": "Collège privé Saint-Joseph",
- "amenity": "school"
- },
- "name": "Collège privé Saint-Joseph",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Cuauhtemoc": {
- "tags": {
- "name": "Cuauhtemoc",
- "amenity": "school"
- },
- "name": "Cuauhtemoc",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Curso Comunitario": {
- "tags": {
- "name": "Curso Comunitario",
- "amenity": "school"
- },
- "name": "Curso Comunitario",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Cursos Comunitarios": {
- "tags": {
- "name": "Cursos Comunitarios",
- "amenity": "school"
- },
- "name": "Cursos Comunitarios",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/EPP": {
- "tags": {
- "name": "EPP",
- "amenity": "school"
- },
- "name": "EPP",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Emiliano Zapata": {
- "tags": {
- "name": "Emiliano Zapata",
- "amenity": "school"
- },
- "name": "Emiliano Zapata",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Fairview Elementary School": {
- "tags": {
- "name": "Fairview Elementary School",
- "amenity": "school"
- },
- "name": "Fairview Elementary School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Fairview School": {
- "tags": {
- "name": "Fairview School",
- "amenity": "school"
- },
- "name": "Fairview School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Francisco I Madero": {
- "tags": {
- "name": "Francisco I Madero",
- "amenity": "school"
- },
- "name": "Francisco I Madero",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Francisco I. Madero": {
- "tags": {
- "name": "Francisco I. Madero",
- "amenity": "school"
- },
- "name": "Francisco I. Madero",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Francisco Villa": {
- "tags": {
- "name": "Francisco Villa",
- "amenity": "school"
- },
- "name": "Francisco Villa",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Franklin Elementary School": {
- "tags": {
- "name": "Franklin Elementary School",
- "amenity": "school"
- },
- "name": "Franklin Elementary School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Franklin School": {
- "tags": {
- "name": "Franklin School",
- "amenity": "school"
- },
- "name": "Franklin School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Garfield Elementary School": {
- "tags": {
- "name": "Garfield Elementary School",
- "amenity": "school"
- },
- "name": "Garfield Elementary School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Garfield School": {
- "tags": {
- "name": "Garfield School",
- "amenity": "school"
- },
- "name": "Garfield School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Gimnazjum nr 1": {
- "tags": {
- "name": "Gimnazjum nr 1",
- "amenity": "school"
- },
- "name": "Gimnazjum nr 1",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Government School": {
- "tags": {
- "name": "Government School",
- "amenity": "school"
- },
- "name": "Government School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Gregorio Torres Quintero": {
- "tags": {
- "name": "Gregorio Torres Quintero",
- "amenity": "school"
- },
- "name": "Gregorio Torres Quintero",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Groupe Scolaire": {
- "tags": {
- "name": "Groupe Scolaire",
- "amenity": "school"
- },
- "name": "Groupe Scolaire",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Guadalupe Victoria": {
- "tags": {
- "name": "Guadalupe Victoria",
- "amenity": "school"
- },
- "name": "Guadalupe Victoria",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Highland School": {
- "tags": {
- "name": "Highland School",
- "amenity": "school"
- },
- "name": "Highland School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Hillcrest Elementary School": {
- "tags": {
- "name": "Hillcrest Elementary School",
- "amenity": "school"
- },
- "name": "Hillcrest Elementary School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Holy Cross School": {
- "tags": {
- "name": "Holy Cross School",
- "amenity": "school"
- },
- "name": "Holy Cross School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Holy Family School": {
- "tags": {
- "name": "Holy Family School",
- "amenity": "school"
- },
- "name": "Holy Family School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Holy Trinity School": {
- "tags": {
- "name": "Holy Trinity School",
- "amenity": "school"
- },
- "name": "Holy Trinity School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Ignacio Allende": {
- "tags": {
- "name": "Ignacio Allende",
- "amenity": "school"
- },
- "name": "Ignacio Allende",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Ignacio Zaragoza": {
- "tags": {
- "name": "Ignacio Zaragoza",
- "amenity": "school"
- },
- "name": "Ignacio Zaragoza",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Immaculate Conception School": {
- "tags": {
- "name": "Immaculate Conception School",
- "amenity": "school"
- },
- "name": "Immaculate Conception School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Jackson Elementary School": {
- "tags": {
- "name": "Jackson Elementary School",
- "amenity": "school"
- },
- "name": "Jackson Elementary School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Jackson School": {
- "tags": {
- "name": "Jackson School",
- "amenity": "school"
- },
- "name": "Jackson School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Jefferson Elementary School": {
- "tags": {
- "name": "Jefferson Elementary School",
- "amenity": "school"
- },
- "name": "Jefferson Elementary School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Jefferson School": {
- "tags": {
- "name": "Jefferson School",
- "amenity": "school"
- },
- "name": "Jefferson School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Jose Clemente Orozco": {
- "tags": {
- "name": "Jose Clemente Orozco",
- "amenity": "school"
- },
- "name": "Jose Clemente Orozco",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Jose Ma Morelos Y Pavon": {
- "tags": {
- "name": "Jose Ma Morelos Y Pavon",
- "amenity": "school"
- },
- "name": "Jose Ma Morelos Y Pavon",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Jose Vasconcelos": {
- "tags": {
- "name": "Jose Vasconcelos",
- "amenity": "school"
- },
- "name": "Jose Vasconcelos",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Josefa Ortiz De Dominguez": {
- "tags": {
- "name": "Josefa Ortiz De Dominguez",
- "amenity": "school"
- },
- "name": "Josefa Ortiz De Dominguez",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Juan Escutia": {
- "tags": {
- "name": "Juan Escutia",
- "amenity": "school"
- },
- "name": "Juan Escutia",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Justo Sierra": {
- "tags": {
- "name": "Justo Sierra",
- "amenity": "school"
- },
- "name": "Justo Sierra",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Kumon": {
- "tags": {
- "name": "Kumon",
- "amenity": "school"
- },
- "name": "Kumon",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Lazaro Cardenas": {
- "tags": {
- "name": "Lazaro Cardenas",
- "amenity": "school"
- },
- "name": "Lazaro Cardenas",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Lazaro Cardenas Del Rio": {
- "tags": {
- "name": "Lazaro Cardenas Del Rio",
- "amenity": "school"
- },
- "name": "Lazaro Cardenas Del Rio",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Leona Vicario": {
- "tags": {
- "name": "Leona Vicario",
- "amenity": "school"
- },
- "name": "Leona Vicario",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Liberty Elementary School": {
- "tags": {
- "name": "Liberty Elementary School",
- "amenity": "school"
- },
- "name": "Liberty Elementary School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Liberty School": {
- "tags": {
- "name": "Liberty School",
- "amenity": "school"
- },
- "name": "Liberty School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Lincoln Elementary School": {
- "tags": {
- "name": "Lincoln Elementary School",
- "amenity": "school"
- },
- "name": "Lincoln Elementary School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Lincoln School": {
- "tags": {
- "name": "Lincoln School",
- "amenity": "school"
- },
- "name": "Lincoln School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Longfellow Elementary School": {
- "tags": {
- "name": "Longfellow Elementary School",
- "amenity": "school"
- },
- "name": "Longfellow Elementary School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Longfellow School": {
- "tags": {
- "name": "Longfellow School",
- "amenity": "school"
- },
- "name": "Longfellow School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Madison Elementary School": {
- "tags": {
- "name": "Madison Elementary School",
- "amenity": "school"
- },
- "name": "Madison Elementary School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Manuel Lopez Cotilla": {
- "tags": {
- "name": "Manuel Lopez Cotilla",
- "amenity": "school"
- },
- "name": "Manuel Lopez Cotilla",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Maple Grove School": {
- "tags": {
- "name": "Maple Grove School",
- "amenity": "school"
- },
- "name": "Maple Grove School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/McKinley Elementary School": {
- "tags": {
- "name": "McKinley Elementary School",
- "amenity": "school"
- },
- "name": "McKinley Elementary School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/McKinley School": {
- "tags": {
- "name": "McKinley School",
- "amenity": "school"
- },
- "name": "McKinley School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Miguel Hidalgo": {
- "tags": {
- "name": "Miguel Hidalgo",
- "amenity": "school"
- },
- "name": "Miguel Hidalgo",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Miguel Hidalgo Y Costilla": {
- "tags": {
- "name": "Miguel Hidalgo Y Costilla",
- "amenity": "school"
- },
- "name": "Miguel Hidalgo Y Costilla",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Miller School": {
- "tags": {
- "name": "Miller School",
- "amenity": "school"
- },
- "name": "Miller School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Mount Pleasant School": {
- "tags": {
- "name": "Mount Pleasant School",
- "amenity": "school"
- },
- "name": "Mount Pleasant School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Mount Zion School": {
- "tags": {
- "name": "Mount Zion School",
- "amenity": "school"
- },
- "name": "Mount Zion School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Mountain View Elementary School": {
- "tags": {
- "name": "Mountain View Elementary School",
- "amenity": "school"
- },
- "name": "Mountain View Elementary School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/New Hope School": {
- "tags": {
- "name": "New Hope School",
- "amenity": "school"
- },
- "name": "New Hope School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Nicolas Bravo": {
- "tags": {
- "name": "Nicolas Bravo",
- "amenity": "school"
- },
- "name": "Nicolas Bravo",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Ni�os Heroes": {
- "tags": {
- "name": "Ni�os Heroes",
- "amenity": "school"
- },
- "name": "Ni�os Heroes",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Nombre En Tramite": {
- "tags": {
- "name": "Nombre En Tramite",
- "amenity": "school"
- },
- "name": "Nombre En Tramite",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/North Elementary School": {
- "tags": {
- "name": "North Elementary School",
- "amenity": "school"
- },
- "name": "North Elementary School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Oak Grove School": {
- "tags": {
- "name": "Oak Grove School",
- "amenity": "school"
- },
- "name": "Oak Grove School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Pedro Moreno": {
- "tags": {
- "name": "Pedro Moreno",
- "amenity": "school"
- },
- "name": "Pedro Moreno",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Pestalozzischule": {
- "tags": {
- "name": "Pestalozzischule",
- "amenity": "school"
- },
- "name": "Pestalozzischule",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Pine Grove School": {
- "tags": {
- "name": "Pine Grove School",
- "amenity": "school"
- },
- "name": "Pine Grove School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Pleasant Hill School": {
- "tags": {
- "name": "Pleasant Hill School",
- "amenity": "school"
- },
- "name": "Pleasant Hill School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Pleasant Valley School": {
- "tags": {
- "name": "Pleasant Valley School",
- "amenity": "school"
- },
- "name": "Pleasant Valley School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Pleasant View School": {
- "tags": {
- "name": "Pleasant View School",
- "amenity": "school"
- },
- "name": "Pleasant View School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Primaria Comunitaria": {
- "tags": {
- "name": "Primaria Comunitaria",
- "amenity": "school"
- },
- "name": "Primaria Comunitaria",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Ramon Corona": {
- "tags": {
- "name": "Ramon Corona",
- "amenity": "school"
- },
- "name": "Ramon Corona",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Ricardo Flores Magon": {
- "tags": {
- "name": "Ricardo Flores Magon",
- "amenity": "school"
- },
- "name": "Ricardo Flores Magon",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Riverside School": {
- "tags": {
- "name": "Riverside School",
- "amenity": "school"
- },
- "name": "Riverside School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Roosevelt Elementary School": {
- "tags": {
- "name": "Roosevelt Elementary School",
- "amenity": "school"
- },
- "name": "Roosevelt Elementary School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Roosevelt School": {
- "tags": {
- "name": "Roosevelt School",
- "amenity": "school"
- },
- "name": "Roosevelt School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/SD": {
- "tags": {
- "name": "SD",
- "amenity": "school"
- },
- "name": "SD",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/SDN": {
- "tags": {
- "name": "SDN",
- "amenity": "school"
- },
- "name": "SDN",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Sacred Heart School": {
- "tags": {
- "name": "Sacred Heart School",
- "amenity": "school"
- },
- "name": "Sacred Heart School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Saint Francis School": {
- "tags": {
- "name": "Saint Francis School",
- "amenity": "school"
- },
- "name": "Saint Francis School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Saint James School": {
- "tags": {
- "name": "Saint James School",
- "amenity": "school"
- },
- "name": "Saint James School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Saint Johns School": {
- "tags": {
- "name": "Saint Johns School",
- "amenity": "school"
- },
- "name": "Saint Johns School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Saint Joseph School": {
- "tags": {
- "name": "Saint Joseph School",
- "amenity": "school"
- },
- "name": "Saint Joseph School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Saint Josephs School": {
- "tags": {
- "name": "Saint Josephs School",
- "amenity": "school"
- },
- "name": "Saint Josephs School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Saint Kizito Primary School": {
- "tags": {
- "name": "Saint Kizito Primary School",
- "amenity": "school"
- },
- "name": "Saint Kizito Primary School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Saint Mary School": {
- "tags": {
- "name": "Saint Mary School",
- "amenity": "school"
- },
- "name": "Saint Mary School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Saint Marys School": {
- "tags": {
- "name": "Saint Marys School",
- "amenity": "school"
- },
- "name": "Saint Marys School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Saint Patricks School": {
- "tags": {
- "name": "Saint Patricks School",
- "amenity": "school"
- },
- "name": "Saint Patricks School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Saint Paul School": {
- "tags": {
- "name": "Saint Paul School",
- "amenity": "school"
- },
- "name": "Saint Paul School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Saint Pauls School": {
- "tags": {
- "name": "Saint Pauls School",
- "amenity": "school"
- },
- "name": "Saint Pauls School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Saint Peters School": {
- "tags": {
- "name": "Saint Peters School",
- "amenity": "school"
- },
- "name": "Saint Peters School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Schillerschule": {
- "tags": {
- "name": "Schillerschule",
- "amenity": "school"
- },
- "name": "Schillerschule",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/School Number 1": {
- "tags": {
- "name": "School Number 1",
- "amenity": "school"
- },
- "name": "School Number 1",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/School Number 2": {
- "tags": {
- "name": "School Number 2",
- "amenity": "school"
- },
- "name": "School Number 2",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/School Number 3": {
- "tags": {
- "name": "School Number 3",
- "amenity": "school"
- },
- "name": "School Number 3",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/School Number 4": {
- "tags": {
- "name": "School Number 4",
- "amenity": "school"
- },
- "name": "School Number 4",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Smith School": {
- "tags": {
- "name": "Smith School",
- "amenity": "school"
- },
- "name": "Smith School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/South Elementary School": {
- "tags": {
- "name": "South Elementary School",
- "amenity": "school"
- },
- "name": "South Elementary School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Sunnyside School": {
- "tags": {
- "name": "Sunnyside School",
- "amenity": "school"
- },
- "name": "Sunnyside School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Szkoła Podstawowa nr 1": {
- "tags": {
- "name": "Szkoła Podstawowa nr 1",
- "amenity": "school"
- },
- "name": "Szkoła Podstawowa nr 1",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Szkoła Podstawowa nr 2": {
- "tags": {
- "name": "Szkoła Podstawowa nr 2",
- "amenity": "school"
- },
- "name": "Szkoła Podstawowa nr 2",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Szkoła Podstawowa nr 3": {
- "tags": {
- "name": "Szkoła Podstawowa nr 3",
- "amenity": "school"
- },
- "name": "Szkoła Podstawowa nr 3",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Trinity School": {
- "tags": {
- "name": "Trinity School",
- "amenity": "school"
- },
- "name": "Trinity School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/UNIDAD EDUCATIVA": {
- "tags": {
- "name": "UNIDAD EDUCATIVA",
- "amenity": "school"
- },
- "name": "UNIDAD EDUCATIVA",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Union School": {
- "tags": {
- "name": "Union School",
- "amenity": "school"
- },
- "name": "Union School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Valentin Gomez Farias": {
- "tags": {
- "name": "Valentin Gomez Farias",
- "amenity": "school"
- },
- "name": "Valentin Gomez Farias",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Venustiano Carranza": {
- "tags": {
- "name": "Venustiano Carranza",
- "amenity": "school"
- },
- "name": "Venustiano Carranza",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Vicente Guerrero": {
- "tags": {
- "name": "Vicente Guerrero",
- "amenity": "school"
- },
- "name": "Vicente Guerrero",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Volkshochschule": {
- "tags": {
- "name": "Volkshochschule",
- "amenity": "school"
- },
- "name": "Volkshochschule",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Volksschule": {
- "tags": {
- "name": "Volksschule",
- "amenity": "school"
- },
- "name": "Volksschule",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Washington Elementary School": {
- "tags": {
- "name": "Washington Elementary School",
- "amenity": "school"
- },
- "name": "Washington Elementary School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Washington School": {
- "tags": {
- "name": "Washington School",
- "amenity": "school"
- },
- "name": "Washington School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/West Elementary School": {
- "tags": {
- "name": "West Elementary School",
- "amenity": "school"
- },
- "name": "West Elementary School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/White School": {
- "tags": {
- "name": "White School",
- "amenity": "school"
- },
- "name": "White School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Wilson Elementary School": {
- "tags": {
- "name": "Wilson Elementary School",
- "amenity": "school"
- },
- "name": "Wilson Elementary School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Wilson School": {
- "tags": {
- "name": "Wilson School",
- "amenity": "school"
- },
- "name": "Wilson School",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Általános iskola": {
- "tags": {
- "name": "Általános iskola",
- "amenity": "school"
- },
- "name": "Általános iskola",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/École Jules Ferry": {
- "tags": {
- "name": "École Jules Ferry",
- "amenity": "school"
- },
- "name": "École Jules Ferry",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/École Notre-Dame": {
- "tags": {
- "name": "École Notre-Dame",
- "amenity": "school"
- },
- "name": "École Notre-Dame",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/École Saint-Joseph": {
- "tags": {
- "name": "École Saint-Joseph",
- "amenity": "school"
- },
- "name": "École Saint-Joseph",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/École primaire Jean Jaurès": {
- "tags": {
- "name": "École primaire Jean Jaurès",
- "amenity": "school"
- },
- "name": "École primaire Jean Jaurès",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/École primaire Jules Ferry": {
- "tags": {
- "name": "École primaire Jules Ferry",
- "amenity": "school"
- },
- "name": "École primaire Jules Ferry",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/École primaire privée Notre-Dame": {
- "tags": {
- "name": "École primaire privée Notre-Dame",
- "amenity": "school"
- },
- "name": "École primaire privée Notre-Dame",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/École primaire privée Saint-Joseph": {
- "tags": {
- "name": "École primaire privée Saint-Joseph",
- "amenity": "school"
- },
- "name": "École primaire privée Saint-Joseph",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/École primaire privée Sainte-Marie": {
- "tags": {
- "name": "École primaire privée Sainte-Marie",
- "amenity": "school"
- },
- "name": "École primaire privée Sainte-Marie",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/École élémentaire Jules Ferry": {
- "tags": {
- "name": "École élémentaire Jules Ferry",
- "amenity": "school"
- },
- "name": "École élémentaire Jules Ferry",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Școala Generală": {
- "tags": {
- "name": "Școala Generală",
- "amenity": "school"
- },
- "name": "Școala Generală",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Școală": {
- "tags": {
- "name": "Școală",
- "amenity": "school"
- },
- "name": "Școală",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Вечерняя школа": {
- "tags": {
- "name": "Вечерняя школа",
- "amenity": "school"
- },
- "name": "Вечерняя школа",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Гимназия №1": {
- "tags": {
- "name": "Гимназия №1",
- "amenity": "school"
- },
- "name": "Гимназия №1",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Средняя школа №1": {
- "tags": {
- "name": "Средняя школа №1",
- "amenity": "school"
- },
- "name": "Средняя школа №1",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Средняя школа №2": {
- "tags": {
- "name": "Средняя школа №2",
- "amenity": "school"
- },
- "name": "Средняя школа №2",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Средняя школа №3": {
- "tags": {
- "name": "Средняя школа №3",
- "amenity": "school"
- },
- "name": "Средняя школа №3",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа № 1": {
- "tags": {
- "name": "Школа № 1",
- "amenity": "school"
- },
- "name": "Школа № 1",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа № 2": {
- "tags": {
- "name": "Школа № 2",
- "amenity": "school"
- },
- "name": "Школа № 2",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа № 3": {
- "tags": {
- "name": "Школа № 3",
- "amenity": "school"
- },
- "name": "Школа № 3",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа № 4": {
- "tags": {
- "name": "Школа № 4",
- "amenity": "school"
- },
- "name": "Школа № 4",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа № 5": {
- "tags": {
- "name": "Школа № 5",
- "amenity": "school"
- },
- "name": "Школа № 5",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №1": {
- "tags": {
- "name": "Школа №1",
- "amenity": "school"
- },
- "name": "Школа №1",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №10": {
- "tags": {
- "name": "Школа №10",
- "amenity": "school"
- },
- "name": "Школа №10",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №11": {
- "tags": {
- "name": "Школа №11",
- "amenity": "school"
- },
- "name": "Школа №11",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №12": {
- "tags": {
- "name": "Школа №12",
- "amenity": "school"
- },
- "name": "Школа №12",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №13": {
- "tags": {
- "name": "Школа №13",
- "amenity": "school"
- },
- "name": "Школа №13",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №14": {
- "tags": {
- "name": "Школа №14",
- "amenity": "school"
- },
- "name": "Школа №14",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №15": {
- "tags": {
- "name": "Школа №15",
- "amenity": "school"
- },
- "name": "Школа №15",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №16": {
- "tags": {
- "name": "Школа №16",
- "amenity": "school"
- },
- "name": "Школа №16",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №17": {
- "tags": {
- "name": "Школа №17",
- "amenity": "school"
- },
- "name": "Школа №17",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №18": {
- "tags": {
- "name": "Школа №18",
- "amenity": "school"
- },
- "name": "Школа №18",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №19": {
- "tags": {
- "name": "Школа №19",
- "amenity": "school"
- },
- "name": "Школа №19",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №2": {
- "tags": {
- "name": "Школа №2",
- "amenity": "school"
- },
- "name": "Школа №2",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №20": {
- "tags": {
- "name": "Школа №20",
- "amenity": "school"
- },
- "name": "Школа №20",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №21": {
- "tags": {
- "name": "Школа №21",
- "amenity": "school"
- },
- "name": "Школа №21",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №22": {
- "tags": {
- "name": "Школа №22",
- "amenity": "school"
- },
- "name": "Школа №22",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №23": {
- "tags": {
- "name": "Школа №23",
- "amenity": "school"
- },
- "name": "Школа №23",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №24": {
- "tags": {
- "name": "Школа №24",
- "amenity": "school"
- },
- "name": "Школа №24",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №25": {
- "tags": {
- "name": "Школа №25",
- "amenity": "school"
- },
- "name": "Школа №25",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №26": {
- "tags": {
- "name": "Школа №26",
- "amenity": "school"
- },
- "name": "Школа №26",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №27": {
- "tags": {
- "name": "Школа №27",
- "amenity": "school"
- },
- "name": "Школа №27",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №28": {
- "tags": {
- "name": "Школа №28",
- "amenity": "school"
- },
- "name": "Школа №28",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №3": {
- "tags": {
- "name": "Школа №3",
- "amenity": "school"
- },
- "name": "Школа №3",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №31": {
- "tags": {
- "name": "Школа №31",
- "amenity": "school"
- },
- "name": "Школа №31",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №35": {
- "tags": {
- "name": "Школа №35",
- "amenity": "school"
- },
- "name": "Школа №35",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №4": {
- "tags": {
- "name": "Школа №4",
- "amenity": "school"
- },
- "name": "Школа №4",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №5": {
- "tags": {
- "name": "Школа №5",
- "amenity": "school"
- },
- "name": "Школа №5",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №6": {
- "tags": {
- "name": "Школа №6",
- "amenity": "school"
- },
- "name": "Школа №6",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №7": {
- "tags": {
- "name": "Школа №7",
- "amenity": "school"
- },
- "name": "Школа №7",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №8": {
- "tags": {
- "name": "Школа №8",
- "amenity": "school"
- },
- "name": "Школа №8",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/Школа №9": {
- "tags": {
- "name": "Школа №9",
- "amenity": "school"
- },
- "name": "Школа №9",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/مدرسة": {
- "tags": {
- "name": "مدرسة",
- "amenity": "school"
- },
- "name": "مدرسة",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/مدرسه": {
- "tags": {
- "name": "مدرسه",
- "amenity": "school"
- },
- "name": "مدرسه",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/市立南中学校": {
- "tags": {
- "name": "市立南中学校",
- "amenity": "school"
- },
- "name": "市立南中学校",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/市立南小学校": {
- "tags": {
- "name": "市立南小学校",
- "amenity": "school"
- },
- "name": "市立南小学校",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/school/市立東中学校": {
- "tags": {
- "name": "市立東中学校",
- "amenity": "school"
- },
- "name": "市立東中学校",
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "amenity/social_facility/Safe Haven": {
- "tags": {
- "name": "Safe Haven",
- "amenity": "social_facility"
- },
- "name": "Safe Haven",
- "icon": "temaki-social_facility",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "social_facility",
- "social_facility_for",
- "opening_hours",
- "wheelchair"
- ],
- "suggestion": true
- },
- "amenity/social_facility/Детский дом": {
- "tags": {
- "name": "Детский дом",
- "amenity": "social_facility"
- },
- "name": "Детский дом",
- "icon": "temaki-social_facility",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "social_facility",
- "social_facility_for",
- "opening_hours",
- "wheelchair"
- ],
- "suggestion": true
- },
- "amenity/social_facility/Социальный участковый": {
- "tags": {
- "name": "Социальный участковый",
- "amenity": "social_facility"
- },
- "name": "Социальный участковый",
- "icon": "temaki-social_facility",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "social_facility",
- "social_facility_for",
- "opening_hours",
- "wheelchair"
- ],
- "suggestion": true
- },
- "amenity/theatre/Amfiteatr": {
- "tags": {
- "name": "Amfiteatr",
- "amenity": "theatre"
- },
- "name": "Amfiteatr",
- "icon": "maki-theatre",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area"
- ],
- "suggestion": true
- },
- "amenity/theatre/Amphitheater": {
- "tags": {
- "name": "Amphitheater",
- "amenity": "theatre"
- },
- "name": "Amphitheater",
- "icon": "maki-theatre",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area"
- ],
- "suggestion": true
- },
- "amenity/theatre/Amphitheatre": {
- "tags": {
- "name": "Amphitheatre",
- "amenity": "theatre"
- },
- "name": "Amphitheatre",
- "icon": "maki-theatre",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area"
- ],
- "suggestion": true
- },
- "amenity/theatre/Freilichtbühne": {
- "tags": {
- "name": "Freilichtbühne",
- "amenity": "theatre"
- },
- "name": "Freilichtbühne",
- "icon": "maki-theatre",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area"
- ],
- "suggestion": true
- },
- "amenity/theatre/Teatro Comunale": {
- "tags": {
- "name": "Teatro Comunale",
- "amenity": "theatre"
- },
- "name": "Teatro Comunale",
- "icon": "maki-theatre",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area"
- ],
- "suggestion": true
- },
- "leisure/fitness_centre/LA Fitness": {
- "tags": {
- "name": "LA Fitness",
- "leisure": "fitness_centre"
- },
- "name": "LA Fitness",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/fitness_centre/Planet Fitness": {
- "tags": {
- "name": "Planet Fitness",
- "leisure": "fitness_centre"
- },
- "name": "Planet Fitness",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/fitness_centre/Snap Fitness": {
- "tags": {
- "name": "Snap Fitness",
- "leisure": "fitness_centre"
- },
- "name": "Snap Fitness",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/playground/Çocuk Parkı": {
- "tags": {
- "name": "Çocuk Parkı",
- "leisure": "playground"
- },
- "name": "Çocuk Parkı",
- "icon": "maki-playground",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "surface",
- "playground/max_age",
- "playground/min_age",
- "access_simple"
- ],
- "suggestion": true
- },
- "leisure/playground/놀이터": {
- "tags": {
- "name": "놀이터",
- "leisure": "playground"
- },
- "name": "놀이터",
- "icon": "maki-playground",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "surface",
- "playground/max_age",
- "playground/min_age",
- "access_simple"
- ],
- "suggestion": true
- },
- "leisure/sports_centre/Anytime Fitness": {
- "tags": {
- "name": "Anytime Fitness",
- "leisure": "sports_centre"
- },
- "name": "Anytime Fitness",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "building",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/sports_centre/Complejo Municipal de Deportes": {
- "tags": {
- "name": "Complejo Municipal de Deportes",
- "leisure": "sports_centre"
- },
- "name": "Complejo Municipal de Deportes",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "building",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/sports_centre/Complexe Sportif": {
- "tags": {
- "name": "Complexe Sportif",
- "leisure": "sports_centre"
- },
- "name": "Complexe Sportif",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "building",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/sports_centre/Curves": {
- "tags": {
- "name": "Curves",
- "leisure": "sports_centre"
- },
- "name": "Curves",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "building",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/sports_centre/Fitness First": {
- "tags": {
- "name": "Fitness First",
- "leisure": "sports_centre"
- },
- "name": "Fitness First",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "building",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/sports_centre/Gold's Gym": {
- "tags": {
- "name": "Gold's Gym",
- "leisure": "sports_centre"
- },
- "name": "Gold's Gym",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "building",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/sports_centre/Kieser Training": {
- "tags": {
- "name": "Kieser Training",
- "leisure": "sports_centre"
- },
- "name": "Kieser Training",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "building",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/sports_centre/Life Time Fitness": {
- "tags": {
- "name": "Life Time Fitness",
- "leisure": "sports_centre"
- },
- "name": "Life Time Fitness",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "building",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/sports_centre/McFit": {
- "tags": {
- "name": "McFit",
- "leisure": "sports_centre"
- },
- "name": "McFit",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "building",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/sports_centre/Mrs. Sporty": {
- "tags": {
- "name": "Mrs. Sporty",
- "leisure": "sports_centre"
- },
- "name": "Mrs. Sporty",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "building",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/sports_centre/Orlik": {
- "tags": {
- "name": "Orlik",
- "leisure": "sports_centre"
- },
- "name": "Orlik",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "building",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/sports_centre/Pabellón Municipal de Deportes": {
- "tags": {
- "name": "Pabellón Municipal de Deportes",
- "leisure": "sports_centre"
- },
- "name": "Pabellón Municipal de Deportes",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "building",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/sports_centre/Palestra Comunale": {
- "tags": {
- "name": "Palestra Comunale",
- "leisure": "sports_centre"
- },
- "name": "Palestra Comunale",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "building",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/sports_centre/Salle Omnisport": {
- "tags": {
- "name": "Salle Omnisport",
- "leisure": "sports_centre"
- },
- "name": "Salle Omnisport",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "building",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/sports_centre/Virgin Active": {
- "tags": {
- "name": "Virgin Active",
- "leisure": "sports_centre"
- },
- "name": "Virgin Active",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "building",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/sports_centre/YMCA": {
- "tags": {
- "name": "YMCA",
- "leisure": "sports_centre"
- },
- "name": "YMCA",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "building",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/sports_centre/ДЮСШ": {
- "tags": {
- "name": "ДЮСШ",
- "leisure": "sports_centre"
- },
- "name": "ДЮСШ",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "building",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/sports_centre/Ледовый дворец": {
- "tags": {
- "name": "Ледовый дворец",
- "leisure": "sports_centre"
- },
- "name": "Ледовый дворец",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "building",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/sports_centre/体育館": {
- "tags": {
- "name": "体育館",
- "leisure": "sports_centre"
- },
- "name": "体育館",
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "sport",
- "building",
- "address",
- "opening_hours"
- ],
- "suggestion": true
- },
- "leisure/swimming_pool/Schwimmerbecken": {
- "tags": {
- "name": "Schwimmerbecken",
- "leisure": "swimming_pool"
- },
- "name": "Schwimmerbecken",
- "icon": "maki-swimming",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "access_simple",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "leisure/swimming_pool/Yüzme Havuzu": {
- "tags": {
- "name": "Yüzme Havuzu",
- "leisure": "swimming_pool"
- },
- "name": "Yüzme Havuzu",
- "icon": "maki-swimming",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "access_simple",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "leisure/swimming_pool/プール": {
- "tags": {
- "name": "プール",
- "leisure": "swimming_pool"
- },
- "name": "プール",
- "icon": "maki-swimming",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "access_simple",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "leisure/swimming_pool/游泳池": {
- "tags": {
- "name": "游泳池",
- "leisure": "swimming_pool"
- },
- "name": "游泳池",
- "icon": "maki-swimming",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "access_simple",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "man_made/windmill/De Hoop": {
- "tags": {
- "name": "De Hoop",
- "man_made": "windmill"
- },
- "name": "De Hoop",
- "icon": "temaki-windmill",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "building_area"
- ],
- "suggestion": true
- },
- "shop/alcohol/Alko": {
- "tags": {
- "name": "Alko",
- "shop": "alcohol"
- },
- "name": "Alko",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/BC Liquor Store": {
- "tags": {
- "name": "BC Liquor Store",
- "shop": "alcohol"
- },
- "name": "BC Liquor Store",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/BWS": {
- "tags": {
- "name": "BWS",
- "shop": "alcohol"
- },
- "name": "BWS",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Bargain Booze": {
- "tags": {
- "name": "Bargain Booze",
- "shop": "alcohol"
- },
- "name": "Bargain Booze",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Beer Store": {
- "tags": {
- "name": "Beer Store",
- "shop": "alcohol"
- },
- "name": "Beer Store",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Botilleria": {
- "tags": {
- "name": "Botilleria",
- "shop": "alcohol"
- },
- "name": "Botilleria",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Dan Murphy's": {
- "tags": {
- "name": "Dan Murphy's",
- "shop": "alcohol"
- },
- "name": "Dan Murphy's",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Gall & Gall": {
- "tags": {
- "name": "Gall & Gall",
- "shop": "alcohol"
- },
- "name": "Gall & Gall",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/LCBO": {
- "tags": {
- "name": "LCBO",
- "shop": "alcohol"
- },
- "name": "LCBO",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Liquor Depot": {
- "tags": {
- "name": "Liquor Depot",
- "shop": "alcohol"
- },
- "name": "Liquor Depot",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Liquor Store": {
- "tags": {
- "name": "Liquor Store",
- "shop": "alcohol"
- },
- "name": "Liquor Store",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Liquorland": {
- "tags": {
- "name": "Liquorland",
- "shop": "alcohol"
- },
- "name": "Liquorland",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Mitra": {
- "tags": {
- "name": "Mitra",
- "shop": "alcohol"
- },
- "name": "Mitra",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Nicolas": {
- "tags": {
- "name": "Nicolas",
- "shop": "alcohol"
- },
- "name": "Nicolas",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/SAQ": {
- "tags": {
- "name": "SAQ",
- "shop": "alcohol"
- },
- "name": "SAQ",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Systembolaget": {
- "tags": {
- "name": "Systembolaget",
- "shop": "alcohol"
- },
- "name": "Systembolaget",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/The Beer Store": {
- "tags": {
- "name": "The Beer Store",
- "shop": "alcohol"
- },
- "name": "The Beer Store",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Vinmonopolet": {
- "tags": {
- "name": "Vinmonopolet",
- "shop": "alcohol"
- },
- "name": "Vinmonopolet",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Алкомаркет": {
- "tags": {
- "name": "Алкомаркет",
- "shop": "alcohol"
- },
- "name": "Алкомаркет",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Ароматный мир": {
- "tags": {
- "name": "Ароматный мир",
- "shop": "alcohol"
- },
- "name": "Ароматный мир",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Бристоль": {
- "tags": {
- "name": "Бристоль",
- "shop": "alcohol"
- },
- "name": "Бристоль",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Градус": {
- "tags": {
- "name": "Градус",
- "shop": "alcohol"
- },
- "name": "Градус",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Живое пиво": {
- "tags": {
- "name": "Живое пиво",
- "shop": "alcohol"
- },
- "name": "Живое пиво",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Красное & Белое": {
- "tags": {
- "name": "Красное & Белое",
- "shop": "alcohol"
- },
- "name": "Красное & Белое",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Норман": {
- "tags": {
- "name": "Норман",
- "shop": "alcohol"
- },
- "name": "Норман",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Отдохни": {
- "tags": {
- "name": "Отдохни",
- "shop": "alcohol"
- },
- "name": "Отдохни",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Пиво": {
- "tags": {
- "name": "Пиво",
- "shop": "alcohol"
- },
- "name": "Пиво",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/alcohol/Разливное пиво": {
- "tags": {
- "name": "Разливное пиво",
- "shop": "alcohol"
- },
- "name": "Разливное пиво",
- "icon": "maki-alcohol-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi",
- "drive_through"
- ],
- "suggestion": true
- },
- "shop/baby_goods/Aubert": {
- "tags": {
- "name": "Aubert",
- "shop": "baby_goods"
- },
- "name": "Aubert",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/baby_goods/Babies R Us": {
- "tags": {
- "name": "Babies R Us",
- "shop": "baby_goods"
- },
- "name": "Babies R Us",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/baby_goods/BabyOne": {
- "tags": {
- "name": "BabyOne",
- "shop": "baby_goods"
- },
- "name": "BabyOne",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/AILI": {
- "tags": {
- "name": "AILI",
- "shop": "bakery"
- },
- "name": "AILI",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Anker": {
- "tags": {
- "name": "Anker",
- "shop": "bakery"
- },
- "name": "Anker",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Awiteks": {
- "tags": {
- "name": "Awiteks",
- "shop": "bakery"
- },
- "name": "Awiteks",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Backshop": {
- "tags": {
- "name": "Backshop",
- "shop": "bakery"
- },
- "name": "Backshop",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Backwerk": {
- "tags": {
- "name": "Backwerk",
- "shop": "bakery"
- },
- "name": "Backwerk",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Baguette": {
- "tags": {
- "name": "Baguette",
- "shop": "bakery"
- },
- "name": "Baguette",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Bakers Delight": {
- "tags": {
- "name": "Bakers Delight",
- "shop": "bakery"
- },
- "name": "Bakers Delight",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Bakker Bart": {
- "tags": {
- "name": "Bakker Bart",
- "shop": "bakery"
- },
- "name": "Bakker Bart",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Banette": {
- "tags": {
- "name": "Banette",
- "shop": "bakery"
- },
- "name": "Banette",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Bäckerei Fuchs": {
- "tags": {
- "name": "Bäckerei Fuchs",
- "shop": "bakery"
- },
- "name": "Bäckerei Fuchs",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Bäckerei Grimminger": {
- "tags": {
- "name": "Bäckerei Grimminger",
- "shop": "bakery"
- },
- "name": "Bäckerei Grimminger",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Bäckerei Müller": {
- "tags": {
- "name": "Bäckerei Müller",
- "shop": "bakery"
- },
- "name": "Bäckerei Müller",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Bäckerei Schmidt": {
- "tags": {
- "name": "Bäckerei Schmidt",
- "shop": "bakery"
- },
- "name": "Bäckerei Schmidt",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Bäckerei Schneider": {
- "tags": {
- "name": "Bäckerei Schneider",
- "shop": "bakery"
- },
- "name": "Bäckerei Schneider",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Cooplands": {
- "tags": {
- "name": "Cooplands",
- "shop": "bakery"
- },
- "name": "Cooplands",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Dat Backhus": {
- "tags": {
- "name": "Dat Backhus",
- "shop": "bakery"
- },
- "name": "Dat Backhus",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Der Beck": {
- "tags": {
- "name": "Der Beck",
- "shop": "bakery"
- },
- "name": "Der Beck",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Der Mann": {
- "tags": {
- "name": "Der Mann",
- "shop": "bakery"
- },
- "name": "Der Mann",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Ditsch": {
- "tags": {
- "name": "Ditsch",
- "shop": "bakery"
- },
- "name": "Ditsch",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Fornetti": {
- "tags": {
- "name": "Fornetti",
- "shop": "bakery"
- },
- "name": "Fornetti",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Goeken backen": {
- "tags": {
- "name": "Goeken backen",
- "shop": "bakery"
- },
- "name": "Goeken backen",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Goldilocks": {
- "tags": {
- "name": "Goldilocks",
- "shop": "bakery"
- },
- "name": "Goldilocks",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Greggs": {
- "tags": {
- "name": "Greggs",
- "shop": "bakery"
- },
- "name": "Greggs",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Hofpfisterei": {
- "tags": {
- "name": "Hofpfisterei",
- "shop": "bakery"
- },
- "name": "Hofpfisterei",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Ihle": {
- "tags": {
- "name": "Ihle",
- "shop": "bakery"
- },
- "name": "Ihle",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Julie's Bakeshop": {
- "tags": {
- "name": "Julie's Bakeshop",
- "shop": "bakery"
- },
- "name": "Julie's Bakeshop",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/K&U": {
- "tags": {
- "name": "K&U",
- "shop": "bakery"
- },
- "name": "K&U",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/K&U Bäckerei": {
- "tags": {
- "name": "K&U Bäckerei",
- "shop": "bakery"
- },
- "name": "K&U Bäckerei",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Kamps": {
- "tags": {
- "name": "Kamps",
- "shop": "bakery"
- },
- "name": "Kamps",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/La Mie Câline": {
- "tags": {
- "name": "La Mie Câline",
- "shop": "bakery"
- },
- "name": "La Mie Câline",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Le Crobag": {
- "tags": {
- "name": "Le Crobag",
- "shop": "bakery"
- },
- "name": "Le Crobag",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Le Fournil": {
- "tags": {
- "name": "Le Fournil",
- "shop": "bakery"
- },
- "name": "Le Fournil",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Lila Bäcker": {
- "tags": {
- "name": "Lila Bäcker",
- "shop": "bakery"
- },
- "name": "Lila Bäcker",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Lipóti Pékség": {
- "tags": {
- "name": "Lipóti Pékség",
- "shop": "bakery"
- },
- "name": "Lipóti Pékség",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Marie Blachère": {
- "tags": {
- "name": "Marie Blachère",
- "shop": "bakery"
- },
- "name": "Marie Blachère",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Mlinar": {
- "tags": {
- "name": "Mlinar",
- "shop": "bakery"
- },
- "name": "Mlinar",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Musmanni": {
- "tags": {
- "name": "Musmanni",
- "shop": "bakery"
- },
- "name": "Musmanni",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Oebel": {
- "tags": {
- "name": "Oebel",
- "shop": "bakery"
- },
- "name": "Oebel",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Paul": {
- "tags": {
- "name": "Paul",
- "shop": "bakery"
- },
- "name": "Paul",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Red Ribbon": {
- "tags": {
- "name": "Red Ribbon",
- "shop": "bakery"
- },
- "name": "Red Ribbon",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Schäfer's": {
- "tags": {
- "name": "Schäfer's",
- "shop": "bakery"
- },
- "name": "Schäfer's",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Sehne": {
- "tags": {
- "name": "Sehne",
- "shop": "bakery"
- },
- "name": "Sehne",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Stadtbäckerei": {
- "tags": {
- "name": "Stadtbäckerei",
- "shop": "bakery"
- },
- "name": "Stadtbäckerei",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Steinecke": {
- "tags": {
- "name": "Steinecke",
- "shop": "bakery"
- },
- "name": "Steinecke",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Sternenbäck": {
- "tags": {
- "name": "Sternenbäck",
- "shop": "bakery"
- },
- "name": "Sternenbäck",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Ströck": {
- "tags": {
- "name": "Ströck",
- "shop": "bakery"
- },
- "name": "Ströck",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Wiener Feinbäcker": {
- "tags": {
- "name": "Wiener Feinbäcker",
- "shop": "bakery"
- },
- "name": "Wiener Feinbäcker",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/von Allwörden": {
- "tags": {
- "name": "von Allwörden",
- "shop": "bakery"
- },
- "name": "von Allwörden",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Булочная": {
- "tags": {
- "name": "Булочная",
- "shop": "bakery"
- },
- "name": "Булочная",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Горячий хлеб": {
- "tags": {
- "name": "Горячий хлеб",
- "shop": "bakery"
- },
- "name": "Горячий хлеб",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Каравай": {
- "tags": {
- "name": "Каравай",
- "shop": "bakery"
- },
- "name": "Каравай",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Кулиничи": {
- "tags": {
- "name": "Кулиничи",
- "shop": "bakery"
- },
- "name": "Кулиничи",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Кулиничі": {
- "tags": {
- "name": "Кулиничі",
- "shop": "bakery"
- },
- "name": "Кулиничі",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Свежий хлеб": {
- "tags": {
- "name": "Свежий хлеб",
- "shop": "bakery"
- },
- "name": "Свежий хлеб",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/Хлеб": {
- "tags": {
- "name": "Хлеб",
- "shop": "bakery"
- },
- "name": "Хлеб",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/مخبز": {
- "tags": {
- "name": "مخبز",
- "shop": "bakery"
- },
- "name": "مخبز",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/مخبزة": {
- "tags": {
- "name": "مخبزة",
- "shop": "bakery"
- },
- "name": "مخبزة",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/نان لواش": {
- "tags": {
- "name": "نان لواش",
- "shop": "bakery"
- },
- "name": "نان لواش",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/نانوایی": {
- "tags": {
- "name": "نانوایی",
- "shop": "bakery"
- },
- "name": "نانوایی",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/نانوایی بربری": {
- "tags": {
- "name": "نانوایی بربری",
- "shop": "bakery"
- },
- "name": "نانوایی بربری",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/نانوایی سنگک": {
- "tags": {
- "name": "نانوایی سنگک",
- "shop": "bakery"
- },
- "name": "نانوایی سنگک",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/نانوایی سنگکی": {
- "tags": {
- "name": "نانوایی سنگکی",
- "shop": "bakery"
- },
- "name": "نانوایی سنگکی",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bakery/نانوایی لواش": {
- "tags": {
- "name": "نانوایی لواش",
- "shop": "bakery"
- },
- "name": "نانوایی لواش",
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/beauty/Sally Beauty Supply": {
- "tags": {
- "name": "Sally Beauty Supply",
- "shop": "beauty"
- },
- "name": "Sally Beauty Supply",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "beauty",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/beauty/Yves Rocher": {
- "tags": {
- "name": "Yves Rocher",
- "shop": "beauty"
- },
- "name": "Yves Rocher",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "beauty",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bed/Matratzen Concord": {
- "tags": {
- "name": "Matratzen Concord",
- "shop": "bed"
- },
- "name": "Matratzen Concord",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bed/Mattress Firm": {
- "tags": {
- "name": "Mattress Firm",
- "shop": "bed"
- },
- "name": "Mattress Firm",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bed/Sleepy's": {
- "tags": {
- "name": "Sleepy's",
- "shop": "bed"
- },
- "name": "Sleepy's",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/beverages/50嵐": {
- "tags": {
- "name": "50嵐",
- "shop": "beverages"
- },
- "name": "50嵐",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/beverages/Dursty": {
- "tags": {
- "name": "Dursty",
- "shop": "beverages"
- },
- "name": "Dursty",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/beverages/Edeka Getränkemarkt": {
- "tags": {
- "name": "Edeka Getränkemarkt",
- "shop": "beverages"
- },
- "name": "Edeka Getränkemarkt",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/beverages/Fristo": {
- "tags": {
- "name": "Fristo",
- "shop": "beverages"
- },
- "name": "Fristo",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/beverages/Getränke Hoffmann": {
- "tags": {
- "name": "Getränke Hoffmann",
- "shop": "beverages"
- },
- "name": "Getränke Hoffmann",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/beverages/Getränkeland": {
- "tags": {
- "name": "Getränkeland",
- "shop": "beverages"
- },
- "name": "Getränkeland",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/beverages/Getränkemarkt": {
- "tags": {
- "name": "Getränkemarkt",
- "shop": "beverages"
- },
- "name": "Getränkemarkt",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/beverages/Orterer Getränkemarkt": {
- "tags": {
- "name": "Orterer Getränkemarkt",
- "shop": "beverages"
- },
- "name": "Orterer Getränkemarkt",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/beverages/Rewe Getränkemarkt": {
- "tags": {
- "name": "Rewe Getränkemarkt",
- "shop": "beverages"
- },
- "name": "Rewe Getränkemarkt",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/beverages/Trinkgut": {
- "tags": {
- "name": "Trinkgut",
- "shop": "beverages"
- },
- "name": "Trinkgut",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/beverages/茶湯會": {
- "tags": {
- "name": "茶湯會",
- "shop": "beverages"
- },
- "name": "茶湯會",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bicycle/Halfords": {
- "tags": {
- "name": "Halfords",
- "shop": "bicycle"
- },
- "name": "Halfords",
- "icon": "maki-bicycle",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/bicycle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bicycle/Веломарка": {
- "tags": {
- "name": "Веломарка",
- "shop": "bicycle"
- },
- "name": "Веломарка",
- "icon": "maki-bicycle",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/bicycle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bicycle/サイクルベースあさひ": {
- "tags": {
- "name": "サイクルベースあさひ",
- "shop": "bicycle"
- },
- "name": "サイクルベースあさひ",
- "icon": "maki-bicycle",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/bicycle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bookmaker/Betfred": {
- "tags": {
- "name": "Betfred",
- "shop": "bookmaker"
- },
- "name": "Betfred",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bookmaker/Coral": {
- "tags": {
- "name": "Coral",
- "shop": "bookmaker"
- },
- "name": "Coral",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bookmaker/Ladbrokes": {
- "tags": {
- "name": "Ladbrokes",
- "shop": "bookmaker"
- },
- "name": "Ladbrokes",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bookmaker/Paddy Power": {
- "tags": {
- "name": "Paddy Power",
- "shop": "bookmaker"
- },
- "name": "Paddy Power",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bookmaker/William Hill": {
- "tags": {
- "name": "William Hill",
- "shop": "bookmaker"
- },
- "name": "William Hill",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/bookmaker/ΟΠΑΠ": {
- "tags": {
- "name": "ΟΠΑΠ",
- "shop": "bookmaker"
- },
- "name": "ΟΠΑΠ",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/butcher/Boucherie Charcuterie": {
- "tags": {
- "name": "Boucherie Charcuterie",
- "shop": "butcher"
- },
- "name": "Boucherie Charcuterie",
- "icon": "maki-slaughterhouse",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/butcher/Carnicería": {
- "tags": {
- "name": "Carnicería",
- "shop": "butcher"
- },
- "name": "Carnicería",
- "icon": "maki-slaughterhouse",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/butcher/Fleischerei Richter": {
- "tags": {
- "name": "Fleischerei Richter",
- "shop": "butcher"
- },
- "name": "Fleischerei Richter",
- "icon": "maki-slaughterhouse",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/butcher/Húsbolt": {
- "tags": {
- "name": "Húsbolt",
- "shop": "butcher"
- },
- "name": "Húsbolt",
- "icon": "maki-slaughterhouse",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/butcher/Macelleria": {
- "tags": {
- "name": "Macelleria",
- "shop": "butcher"
- },
- "name": "Macelleria",
- "icon": "maki-slaughterhouse",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/butcher/Vinzenzmurr": {
- "tags": {
- "name": "Vinzenzmurr",
- "shop": "butcher"
- },
- "name": "Vinzenzmurr",
- "icon": "maki-slaughterhouse",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/butcher/Ариант": {
- "tags": {
- "name": "Ариант",
- "shop": "butcher"
- },
- "name": "Ариант",
- "icon": "maki-slaughterhouse",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/butcher/Великолукский мясокомбинат": {
- "tags": {
- "name": "Великолукский мясокомбинат",
- "shop": "butcher"
- },
- "name": "Великолукский мясокомбинат",
- "icon": "maki-slaughterhouse",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/butcher/Мясная лавка": {
- "tags": {
- "name": "Мясная лавка",
- "shop": "butcher"
- },
- "name": "Мясная лавка",
- "icon": "maki-slaughterhouse",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/butcher/Мясницкий ряд": {
- "tags": {
- "name": "Мясницкий ряд",
- "shop": "butcher"
- },
- "name": "Мясницкий ряд",
- "icon": "maki-slaughterhouse",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/butcher/Мясной": {
- "tags": {
- "name": "Мясной",
- "shop": "butcher"
- },
- "name": "Мясной",
- "icon": "maki-slaughterhouse",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/butcher/Мясо": {
- "tags": {
- "name": "Мясо",
- "shop": "butcher"
- },
- "name": "Мясо",
- "icon": "maki-slaughterhouse",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/butcher/Наша Ряба": {
- "tags": {
- "name": "Наша Ряба",
- "shop": "butcher"
- },
- "name": "Наша Ряба",
- "icon": "maki-slaughterhouse",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/butcher/Свежее мясо": {
- "tags": {
- "name": "Свежее мясо",
- "shop": "butcher"
- },
- "name": "Свежее мясо",
- "icon": "maki-slaughterhouse",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Audi": {
- "tags": {
- "name": "Audi",
- "shop": "car"
- },
- "name": "Audi",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/BMW": {
- "tags": {
- "name": "BMW",
- "shop": "car"
- },
- "name": "BMW",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Chevrolet": {
- "tags": {
- "name": "Chevrolet",
- "shop": "car"
- },
- "name": "Chevrolet",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Citroën": {
- "tags": {
- "name": "Citroën",
- "shop": "car"
- },
- "name": "Citroën",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Dacia": {
- "tags": {
- "name": "Dacia",
- "shop": "car"
- },
- "name": "Dacia",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Fiat": {
- "tags": {
- "name": "Fiat",
- "shop": "car"
- },
- "name": "Fiat",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Ford": {
- "tags": {
- "name": "Ford",
- "shop": "car"
- },
- "name": "Ford",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Honda": {
- "tags": {
- "name": "Honda",
- "shop": "car"
- },
- "name": "Honda",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Hyundai": {
- "tags": {
- "name": "Hyundai",
- "shop": "car"
- },
- "name": "Hyundai",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Isuzu": {
- "tags": {
- "name": "Isuzu",
- "shop": "car"
- },
- "name": "Isuzu",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Kia": {
- "tags": {
- "name": "Kia",
- "shop": "car"
- },
- "name": "Kia",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Land Rover": {
- "tags": {
- "name": "Land Rover",
- "shop": "car"
- },
- "name": "Land Rover",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Lexus": {
- "tags": {
- "name": "Lexus",
- "shop": "car"
- },
- "name": "Lexus",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Mazda": {
- "tags": {
- "name": "Mazda",
- "shop": "car"
- },
- "name": "Mazda",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Mercedes-Benz": {
- "tags": {
- "name": "Mercedes-Benz",
- "shop": "car"
- },
- "name": "Mercedes-Benz",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Mitsubishi": {
- "tags": {
- "name": "Mitsubishi",
- "shop": "car"
- },
- "name": "Mitsubishi",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Mitsubishi Motors": {
- "tags": {
- "name": "Mitsubishi Motors",
- "shop": "car"
- },
- "name": "Mitsubishi Motors",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/NISSAN": {
- "tags": {
- "name": "NISSAN",
- "shop": "car"
- },
- "name": "NISSAN",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Nissan": {
- "tags": {
- "name": "Nissan",
- "shop": "car"
- },
- "name": "Nissan",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Opel": {
- "tags": {
- "name": "Opel",
- "shop": "car"
- },
- "name": "Opel",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Peugeot": {
- "tags": {
- "name": "Peugeot",
- "shop": "car"
- },
- "name": "Peugeot",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Porsche": {
- "tags": {
- "name": "Porsche",
- "shop": "car"
- },
- "name": "Porsche",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Renault": {
- "tags": {
- "name": "Renault",
- "shop": "car"
- },
- "name": "Renault",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Seat": {
- "tags": {
- "name": "Seat",
- "shop": "car"
- },
- "name": "Seat",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Skoda": {
- "tags": {
- "name": "Skoda",
- "shop": "car"
- },
- "name": "Skoda",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Subaru": {
- "tags": {
- "name": "Subaru",
- "shop": "car"
- },
- "name": "Subaru",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Suzuki": {
- "tags": {
- "name": "Suzuki",
- "shop": "car"
- },
- "name": "Suzuki",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Toyota": {
- "tags": {
- "name": "Toyota",
- "shop": "car"
- },
- "name": "Toyota",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Volkswagen": {
- "tags": {
- "name": "Volkswagen",
- "shop": "car"
- },
- "name": "Volkswagen",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car/Volvo": {
- "tags": {
- "name": "Volvo",
- "shop": "car"
- },
- "name": "Volvo",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "brand",
- "second_hand",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_parts/Advance Auto Parts": {
- "tags": {
- "name": "Advance Auto Parts",
- "shop": "car_parts"
- },
- "name": "Advance Auto Parts",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_parts/AutoZone": {
- "tags": {
- "name": "AutoZone",
- "shop": "car_parts"
- },
- "name": "AutoZone",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_parts/Brezan": {
- "tags": {
- "name": "Brezan",
- "shop": "car_parts"
- },
- "name": "Brezan",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_parts/NAPA Auto Parts": {
- "tags": {
- "name": "NAPA Auto Parts",
- "shop": "car_parts"
- },
- "name": "NAPA Auto Parts",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_parts/Napa Auto Parts": {
- "tags": {
- "name": "Napa Auto Parts",
- "shop": "car_parts"
- },
- "name": "Napa Auto Parts",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_parts/O'Reilly Auto Parts": {
- "tags": {
- "name": "O'Reilly Auto Parts",
- "shop": "car_parts"
- },
- "name": "O'Reilly Auto Parts",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_parts/Repco": {
- "tags": {
- "name": "Repco",
- "shop": "car_parts"
- },
- "name": "Repco",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_parts/Tokić": {
- "tags": {
- "name": "Tokić",
- "shop": "car_parts"
- },
- "name": "Tokić",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_parts/repuestos automotrices": {
- "tags": {
- "name": "repuestos automotrices",
- "shop": "car_parts"
- },
- "name": "repuestos automotrices",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_parts/Автозапчастини": {
- "tags": {
- "name": "Автозапчастини",
- "shop": "car_parts"
- },
- "name": "Автозапчастини",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_parts/Автомир": {
- "tags": {
- "name": "Автомир",
- "shop": "car_parts"
- },
- "name": "Автомир",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_parts/イエローハット": {
- "tags": {
- "name": "イエローハット",
- "shop": "car_parts"
- },
- "name": "イエローハット",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_parts/オートバックス": {
- "tags": {
- "name": "オートバックス",
- "shop": "car_parts"
- },
- "name": "オートバックス",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_parts/タイヤ館": {
- "tags": {
- "name": "タイヤ館",
- "shop": "car_parts"
- },
- "name": "タイヤ館",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/A.T.U": {
- "tags": {
- "name": "A.T.U",
- "shop": "car_repair"
- },
- "name": "A.T.U",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Bosch Car Service": {
- "tags": {
- "name": "Bosch Car Service",
- "shop": "car_repair"
- },
- "name": "Bosch Car Service",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Carglass": {
- "tags": {
- "name": "Carglass",
- "shop": "car_repair"
- },
- "name": "Carglass",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Euromaster": {
- "tags": {
- "name": "Euromaster",
- "shop": "car_repair"
- },
- "name": "Euromaster",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Feu Vert": {
- "tags": {
- "name": "Feu Vert",
- "shop": "car_repair"
- },
- "name": "Feu Vert",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Firestone": {
- "tags": {
- "name": "Firestone",
- "shop": "car_repair"
- },
- "name": "Firestone",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Firestone Complete Auto Care": {
- "tags": {
- "name": "Firestone Complete Auto Care",
- "shop": "car_repair"
- },
- "name": "Firestone Complete Auto Care",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Garage Renault": {
- "tags": {
- "name": "Garage Renault",
- "shop": "car_repair"
- },
- "name": "Garage Renault",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Gomeria": {
- "tags": {
- "name": "Gomeria",
- "shop": "car_repair"
- },
- "name": "Gomeria",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Gomería": {
- "tags": {
- "name": "Gomería",
- "shop": "car_repair"
- },
- "name": "Gomería",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Goodyear": {
- "tags": {
- "name": "Goodyear",
- "shop": "car_repair"
- },
- "name": "Goodyear",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Grease Monkey": {
- "tags": {
- "name": "Grease Monkey",
- "shop": "car_repair"
- },
- "name": "Grease Monkey",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Jiffy Lube": {
- "tags": {
- "name": "Jiffy Lube",
- "shop": "car_repair"
- },
- "name": "Jiffy Lube",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Kwik Fit": {
- "tags": {
- "name": "Kwik Fit",
- "shop": "car_repair"
- },
- "name": "Kwik Fit",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Lubricentro": {
- "tags": {
- "name": "Lubricentro",
- "shop": "car_repair"
- },
- "name": "Lubricentro",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Meineke": {
- "tags": {
- "name": "Meineke",
- "shop": "car_repair"
- },
- "name": "Meineke",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Mekonomen": {
- "tags": {
- "name": "Mekonomen",
- "shop": "car_repair"
- },
- "name": "Mekonomen",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Midas": {
- "tags": {
- "name": "Midas",
- "shop": "car_repair"
- },
- "name": "Midas",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Mr. Lube": {
- "tags": {
- "name": "Mr. Lube",
- "shop": "car_repair"
- },
- "name": "Mr. Lube",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Norauto": {
- "tags": {
- "name": "Norauto",
- "shop": "car_repair"
- },
- "name": "Norauto",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Pep Boys": {
- "tags": {
- "name": "Pep Boys",
- "shop": "car_repair"
- },
- "name": "Pep Boys",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Pit Stop": {
- "tags": {
- "name": "Pit Stop",
- "shop": "car_repair"
- },
- "name": "Pit Stop",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Point S": {
- "tags": {
- "name": "Point S",
- "shop": "car_repair"
- },
- "name": "Point S",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Roady": {
- "tags": {
- "name": "Roady",
- "shop": "car_repair"
- },
- "name": "Roady",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Sears Auto Center": {
- "tags": {
- "name": "Sears Auto Center",
- "shop": "car_repair"
- },
- "name": "Sears Auto Center",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Speedy": {
- "tags": {
- "name": "Speedy",
- "shop": "car_repair"
- },
- "name": "Speedy",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Stacja Kontroli Pojazdów": {
- "tags": {
- "name": "Stacja Kontroli Pojazdów",
- "shop": "car_repair"
- },
- "name": "Stacja Kontroli Pojazdów",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Taller": {
- "tags": {
- "name": "Taller",
- "shop": "car_repair"
- },
- "name": "Taller",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Valvoline": {
- "tags": {
- "name": "Valvoline",
- "shop": "car_repair"
- },
- "name": "Valvoline",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Valvoline Instant Oil Change": {
- "tags": {
- "name": "Valvoline Instant Oil Change",
- "shop": "car_repair"
- },
- "name": "Valvoline Instant Oil Change",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Wulkanizacja": {
- "tags": {
- "name": "Wulkanizacja",
- "shop": "car_repair"
- },
- "name": "Wulkanizacja",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/ÖAMTC": {
- "tags": {
- "name": "ÖAMTC",
- "shop": "car_repair"
- },
- "name": "ÖAMTC",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Автомастерская": {
- "tags": {
- "name": "Автомастерская",
- "shop": "car_repair"
- },
- "name": "Автомастерская",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Авторемонт": {
- "tags": {
- "name": "Авторемонт",
- "shop": "car_repair"
- },
- "name": "Авторемонт",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Автосервис": {
- "tags": {
- "name": "Автосервис",
- "shop": "car_repair"
- },
- "name": "Автосервис",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Автосервис+шиномонтаж": {
- "tags": {
- "name": "Автосервис+шиномонтаж",
- "shop": "car_repair"
- },
- "name": "Автосервис+шиномонтаж",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Замена масла": {
- "tags": {
- "name": "Замена масла",
- "shop": "car_repair"
- },
- "name": "Замена масла",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/СТО": {
- "tags": {
- "name": "СТО",
- "shop": "car_repair"
- },
- "name": "СТО",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/Шиномонтаж": {
- "tags": {
- "name": "Шиномонтаж",
- "shop": "car_repair"
- },
- "name": "Шиномонтаж",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/car_repair/шиномонтаж": {
- "tags": {
- "name": "шиномонтаж",
- "shop": "car_repair"
- },
- "name": "шиномонтаж",
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "service/vehicle",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/carpet/Carpet Right": {
- "tags": {
- "name": "Carpet Right",
- "shop": "carpet"
- },
- "name": "Carpet Right",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/carpet/Carpetright": {
- "tags": {
- "name": "Carpetright",
- "shop": "carpet"
- },
- "name": "Carpetright",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/charity/Age UK": {
- "tags": {
- "name": "Age UK",
- "shop": "charity"
- },
- "name": "Age UK",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "second_hand",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/charity/Barnardo's": {
- "tags": {
- "name": "Barnardo's",
- "shop": "charity"
- },
- "name": "Barnardo's",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "second_hand",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/charity/British Heart Foundation": {
- "tags": {
- "name": "British Heart Foundation",
- "shop": "charity"
- },
- "name": "British Heart Foundation",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "second_hand",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/charity/Cancer Research UK": {
- "tags": {
- "name": "Cancer Research UK",
- "shop": "charity"
- },
- "name": "Cancer Research UK",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "second_hand",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/charity/Oxfam": {
- "tags": {
- "name": "Oxfam",
- "shop": "charity"
- },
- "name": "Oxfam",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "second_hand",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/charity/Salvation Army": {
- "tags": {
- "name": "Salvation Army",
- "shop": "charity"
- },
- "name": "Salvation Army",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "second_hand",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/charity/Scope": {
- "tags": {
- "name": "Scope",
- "shop": "charity"
- },
- "name": "Scope",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "second_hand",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/charity/Sue Ryder": {
- "tags": {
- "name": "Sue Ryder",
- "shop": "charity"
- },
- "name": "Sue Ryder",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "second_hand",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/chemist/7 Дней": {
- "tags": {
- "name": "7 Дней",
- "shop": "chemist"
- },
- "name": "7 Дней",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/chemist/Bipa": {
- "tags": {
- "name": "Bipa",
- "shop": "chemist"
- },
- "name": "Bipa",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/chemist/Budnikowsky": {
- "tags": {
- "name": "Budnikowsky",
- "shop": "chemist"
- },
- "name": "Budnikowsky",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/chemist/Etos": {
- "tags": {
- "name": "Etos",
- "shop": "chemist"
- },
- "name": "Etos",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/chemist/Kruidvat": {
- "tags": {
- "name": "Kruidvat",
- "shop": "chemist"
- },
- "name": "Kruidvat",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/chemist/Matas": {
- "tags": {
- "name": "Matas",
- "shop": "chemist"
- },
- "name": "Matas",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/chemist/Müller": {
- "tags": {
- "name": "Müller",
- "shop": "chemist"
- },
- "name": "Müller",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/chemist/Rossmann": {
- "tags": {
- "name": "Rossmann",
- "shop": "chemist"
- },
- "name": "Rossmann",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/chemist/Schlecker": {
- "tags": {
- "name": "Schlecker",
- "shop": "chemist"
- },
- "name": "Schlecker",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/chemist/Teta": {
- "tags": {
- "name": "Teta",
- "shop": "chemist"
- },
- "name": "Teta",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/chemist/Trekpleister": {
- "tags": {
- "name": "Trekpleister",
- "shop": "chemist"
- },
- "name": "Trekpleister",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/chemist/Watsons": {
- "tags": {
- "name": "Watsons",
- "shop": "chemist"
- },
- "name": "Watsons",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/chemist/dm": {
- "tags": {
- "name": "dm",
- "shop": "chemist"
- },
- "name": "dm",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/chemist/Бытовая химия": {
- "tags": {
- "name": "Бытовая химия",
- "shop": "chemist"
- },
- "name": "Бытовая химия",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/chemist/Магнит Косметик": {
- "tags": {
- "name": "Магнит Косметик",
- "shop": "chemist"
- },
- "name": "Магнит Косметик",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/chemist/Мила": {
- "tags": {
- "name": "Мила",
- "shop": "chemist"
- },
- "name": "Мила",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/chemist/Остров чистоты": {
- "tags": {
- "name": "Остров чистоты",
- "shop": "chemist"
- },
- "name": "Остров чистоты",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/chemist/Рубль Бум": {
- "tags": {
- "name": "Рубль Бум",
- "shop": "chemist"
- },
- "name": "Рубль Бум",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/chemist/Улыбка радуги": {
- "tags": {
- "name": "Улыбка радуги",
- "shop": "chemist"
- },
- "name": "Улыбка радуги",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/chemist/屈臣氏": {
- "tags": {
- "name": "屈臣氏",
- "shop": "chemist"
- },
- "name": "屈臣氏",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/chemist/康是美": {
- "tags": {
- "name": "康是美",
- "shop": "chemist"
- },
- "name": "康是美",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/AOKI": {
- "tags": {
- "name": "AOKI",
- "shop": "clothes"
- },
- "name": "AOKI",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/AWG": {
- "tags": {
- "name": "AWG",
- "shop": "clothes"
- },
- "name": "AWG",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Ackermans": {
- "tags": {
- "name": "Ackermans",
- "shop": "clothes"
- },
- "name": "Ackermans",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Adidas": {
- "tags": {
- "name": "Adidas",
- "shop": "clothes"
- },
- "name": "Adidas",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/American Apparel": {
- "tags": {
- "name": "American Apparel",
- "shop": "clothes"
- },
- "name": "American Apparel",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/American Eagle Outfitters": {
- "tags": {
- "name": "American Eagle Outfitters",
- "shop": "clothes"
- },
- "name": "American Eagle Outfitters",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Anthropologie": {
- "tags": {
- "name": "Anthropologie",
- "shop": "clothes"
- },
- "name": "Anthropologie",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Ardene": {
- "tags": {
- "name": "Ardene",
- "shop": "clothes"
- },
- "name": "Ardene",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Armand Thiery": {
- "tags": {
- "name": "Armand Thiery",
- "shop": "clothes"
- },
- "name": "Armand Thiery",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Banana Republic": {
- "tags": {
- "name": "Banana Republic",
- "shop": "clothes"
- },
- "name": "Banana Republic",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Benetton": {
- "tags": {
- "name": "Benetton",
- "shop": "clothes"
- },
- "name": "Benetton",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Bershka": {
- "tags": {
- "name": "Bershka",
- "shop": "clothes"
- },
- "name": "Bershka",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Bonita": {
- "tags": {
- "name": "Bonita",
- "shop": "clothes"
- },
- "name": "Bonita",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Bonobo": {
- "tags": {
- "name": "Bonobo",
- "shop": "clothes"
- },
- "name": "Bonobo",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Brooks Brothers": {
- "tags": {
- "name": "Brooks Brothers",
- "shop": "clothes"
- },
- "name": "Brooks Brothers",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Burberry": {
- "tags": {
- "name": "Burberry",
- "shop": "clothes"
- },
- "name": "Burberry",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Burlington Coat Factory": {
- "tags": {
- "name": "Burlington Coat Factory",
- "shop": "clothes"
- },
- "name": "Burlington Coat Factory",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Burton": {
- "tags": {
- "name": "Burton",
- "shop": "clothes"
- },
- "name": "Burton",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/C&A": {
- "tags": {
- "name": "C&A",
- "shop": "clothes"
- },
- "name": "C&A",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Cache Cache": {
- "tags": {
- "name": "Cache Cache",
- "shop": "clothes"
- },
- "name": "Cache Cache",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Calvin Klein": {
- "tags": {
- "name": "Calvin Klein",
- "shop": "clothes"
- },
- "name": "Calvin Klein",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Calzedonia": {
- "tags": {
- "name": "Calzedonia",
- "shop": "clothes"
- },
- "name": "Calzedonia",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Camaïeu": {
- "tags": {
- "name": "Camaïeu",
- "shop": "clothes"
- },
- "name": "Camaïeu",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Caroll": {
- "tags": {
- "name": "Caroll",
- "shop": "clothes"
- },
- "name": "Caroll",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Carter's": {
- "tags": {
- "name": "Carter's",
- "shop": "clothes"
- },
- "name": "Carter's",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Cecil": {
- "tags": {
- "name": "Cecil",
- "shop": "clothes"
- },
- "name": "Cecil",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Celio": {
- "tags": {
- "name": "Celio",
- "shop": "clothes"
- },
- "name": "Celio",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Charles Vögele": {
- "tags": {
- "name": "Charles Vögele",
- "shop": "clothes"
- },
- "name": "Charles Vögele",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Chico's": {
- "tags": {
- "name": "Chico's",
- "shop": "clothes"
- },
- "name": "Chico's",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Cropp": {
- "tags": {
- "name": "Cropp",
- "shop": "clothes"
- },
- "name": "Cropp",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Cubus": {
- "tags": {
- "name": "Cubus",
- "shop": "clothes"
- },
- "name": "Cubus",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Desigual": {
- "tags": {
- "name": "Desigual",
- "shop": "clothes"
- },
- "name": "Desigual",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Devred": {
- "tags": {
- "name": "Devred",
- "shop": "clothes"
- },
- "name": "Devred",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Didi": {
- "tags": {
- "name": "Didi",
- "shop": "clothes"
- },
- "name": "Didi",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Diesel": {
- "tags": {
- "name": "Diesel",
- "shop": "clothes"
- },
- "name": "Diesel",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Dorothy Perkins": {
- "tags": {
- "name": "Dorothy Perkins",
- "shop": "clothes"
- },
- "name": "Dorothy Perkins",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Dress Barn": {
- "tags": {
- "name": "Dress Barn",
- "shop": "clothes"
- },
- "name": "Dress Barn",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Dressmann": {
- "tags": {
- "name": "Dressmann",
- "shop": "clothes"
- },
- "name": "Dressmann",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Eddie Bauer": {
- "tags": {
- "name": "Eddie Bauer",
- "shop": "clothes"
- },
- "name": "Eddie Bauer",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Edgars": {
- "tags": {
- "name": "Edgars",
- "shop": "clothes"
- },
- "name": "Edgars",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Engbers": {
- "tags": {
- "name": "Engbers",
- "shop": "clothes"
- },
- "name": "Engbers",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Ernsting's family": {
- "tags": {
- "name": "Ernsting's family",
- "shop": "clothes"
- },
- "name": "Ernsting's family",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Esprit": {
- "tags": {
- "name": "Esprit",
- "shop": "clothes"
- },
- "name": "Esprit",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Etam": {
- "tags": {
- "name": "Etam",
- "shop": "clothes"
- },
- "name": "Etam",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Express": {
- "tags": {
- "name": "Express",
- "shop": "clothes"
- },
- "name": "Express",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Fat Face": {
- "tags": {
- "name": "Fat Face",
- "shop": "clothes"
- },
- "name": "Fat Face",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Forever 21": {
- "tags": {
- "name": "Forever 21",
- "shop": "clothes"
- },
- "name": "Forever 21",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Gant": {
- "tags": {
- "name": "Gant",
- "shop": "clothes"
- },
- "name": "Gant",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Gap": {
- "tags": {
- "name": "Gap",
- "shop": "clothes"
- },
- "name": "Gap",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Gerry Weber": {
- "tags": {
- "name": "Gerry Weber",
- "shop": "clothes"
- },
- "name": "Gerry Weber",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Gina Laura": {
- "tags": {
- "name": "Gina Laura",
- "shop": "clothes"
- },
- "name": "Gina Laura",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Guess": {
- "tags": {
- "name": "Guess",
- "shop": "clothes"
- },
- "name": "Guess",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Gymboree": {
- "tags": {
- "name": "Gymboree",
- "shop": "clothes"
- },
- "name": "Gymboree",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Gémo": {
- "tags": {
- "name": "Gémo",
- "shop": "clothes"
- },
- "name": "Gémo",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/H&M": {
- "tags": {
- "name": "H&M",
- "shop": "clothes"
- },
- "name": "H&M",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Hallhuber": {
- "tags": {
- "name": "Hallhuber",
- "shop": "clothes"
- },
- "name": "Hallhuber",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/House": {
- "tags": {
- "name": "House",
- "shop": "clothes"
- },
- "name": "House",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Hugo Boss": {
- "tags": {
- "name": "Hugo Boss",
- "shop": "clothes"
- },
- "name": "Hugo Boss",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Humana": {
- "tags": {
- "name": "Humana",
- "shop": "clothes"
- },
- "name": "Humana",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Hunkemöller": {
- "tags": {
- "name": "Hunkemöller",
- "shop": "clothes"
- },
- "name": "Hunkemöller",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Intimissimi": {
- "tags": {
- "name": "Intimissimi",
- "shop": "clothes"
- },
- "name": "Intimissimi",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/JBC": {
- "tags": {
- "name": "JBC",
- "shop": "clothes"
- },
- "name": "JBC",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Jack & Jones": {
- "tags": {
- "name": "Jack & Jones",
- "shop": "clothes"
- },
- "name": "Jack & Jones",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Jack Wolfskin": {
- "tags": {
- "name": "Jack Wolfskin",
- "shop": "clothes"
- },
- "name": "Jack Wolfskin",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Jeans Fritz": {
- "tags": {
- "name": "Jeans Fritz",
- "shop": "clothes"
- },
- "name": "Jeans Fritz",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Jennyfer": {
- "tags": {
- "name": "Jennyfer",
- "shop": "clothes"
- },
- "name": "Jennyfer",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Jigsaw": {
- "tags": {
- "name": "Jigsaw",
- "shop": "clothes"
- },
- "name": "Jigsaw",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Jules": {
- "tags": {
- "name": "Jules",
- "shop": "clothes"
- },
- "name": "Jules",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Justice": {
- "tags": {
- "name": "Justice",
- "shop": "clothes"
- },
- "name": "Justice",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/KappAhl": {
- "tags": {
- "name": "KappAhl",
- "shop": "clothes"
- },
- "name": "KappAhl",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/KiK": {
- "tags": {
- "name": "KiK",
- "shop": "clothes"
- },
- "name": "KiK",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Kiabi": {
- "tags": {
- "name": "Kiabi",
- "shop": "clothes"
- },
- "name": "Kiabi",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/La Halle": {
- "tags": {
- "name": "La Halle",
- "shop": "clothes"
- },
- "name": "La Halle",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Lacoste": {
- "tags": {
- "name": "Lacoste",
- "shop": "clothes"
- },
- "name": "Lacoste",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Lane Bryant": {
- "tags": {
- "name": "Lane Bryant",
- "shop": "clothes"
- },
- "name": "Lane Bryant",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Levi's": {
- "tags": {
- "name": "Levi's",
- "shop": "clothes"
- },
- "name": "Levi's",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Lindex": {
- "tags": {
- "name": "Lindex",
- "shop": "clothes"
- },
- "name": "Lindex",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Loft": {
- "tags": {
- "name": "Loft",
- "shop": "clothes"
- },
- "name": "Loft",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Mango": {
- "tags": {
- "name": "Mango",
- "shop": "clothes"
- },
- "name": "Mango",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Marc O'Polo": {
- "tags": {
- "name": "Marc O'Polo",
- "shop": "clothes"
- },
- "name": "Marc O'Polo",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Mark's": {
- "tags": {
- "name": "Mark's",
- "shop": "clothes"
- },
- "name": "Mark's",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Marshalls": {
- "tags": {
- "name": "Marshalls",
- "shop": "clothes"
- },
- "name": "Marshalls",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Massimo Dutti": {
- "tags": {
- "name": "Massimo Dutti",
- "shop": "clothes"
- },
- "name": "Massimo Dutti",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Matalan": {
- "tags": {
- "name": "Matalan",
- "shop": "clothes"
- },
- "name": "Matalan",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Maurices": {
- "tags": {
- "name": "Maurices",
- "shop": "clothes"
- },
- "name": "Maurices",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Max Mara": {
- "tags": {
- "name": "Max Mara",
- "shop": "clothes"
- },
- "name": "Max Mara",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Men's Wearhouse": {
- "tags": {
- "name": "Men's Wearhouse",
- "shop": "clothes"
- },
- "name": "Men's Wearhouse",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Mexx": {
- "tags": {
- "name": "Mexx",
- "shop": "clothes"
- },
- "name": "Mexx",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Michael Kors": {
- "tags": {
- "name": "Michael Kors",
- "shop": "clothes"
- },
- "name": "Michael Kors",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Mim": {
- "tags": {
- "name": "Mim",
- "shop": "clothes"
- },
- "name": "Mim",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Monsoon": {
- "tags": {
- "name": "Monsoon",
- "shop": "clothes"
- },
- "name": "Monsoon",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Mr Price": {
- "tags": {
- "name": "Mr Price",
- "shop": "clothes"
- },
- "name": "Mr Price",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/NKD": {
- "tags": {
- "name": "NKD",
- "shop": "clothes"
- },
- "name": "NKD",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/New Look": {
- "tags": {
- "name": "New Look",
- "shop": "clothes"
- },
- "name": "New Look",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/New Yorker": {
- "tags": {
- "name": "New Yorker",
- "shop": "clothes"
- },
- "name": "New Yorker",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/NewYorker": {
- "tags": {
- "name": "NewYorker",
- "shop": "clothes"
- },
- "name": "NewYorker",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Next": {
- "tags": {
- "name": "Next",
- "shop": "clothes"
- },
- "name": "Next",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Nike": {
- "tags": {
- "name": "Nike",
- "shop": "clothes"
- },
- "name": "Nike",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Nordstrom Rack": {
- "tags": {
- "name": "Nordstrom Rack",
- "shop": "clothes"
- },
- "name": "Nordstrom Rack",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/OVS": {
- "tags": {
- "name": "OVS",
- "shop": "clothes"
- },
- "name": "OVS",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Okaïdi": {
- "tags": {
- "name": "Okaïdi",
- "shop": "clothes"
- },
- "name": "Okaïdi",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Old Navy": {
- "tags": {
- "name": "Old Navy",
- "shop": "clothes"
- },
- "name": "Old Navy",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Only": {
- "tags": {
- "name": "Only",
- "shop": "clothes"
- },
- "name": "Only",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Orchestra": {
- "tags": {
- "name": "Orchestra",
- "shop": "clothes"
- },
- "name": "Orchestra",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Original Marines": {
- "tags": {
- "name": "Original Marines",
- "shop": "clothes"
- },
- "name": "Original Marines",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Orsay": {
- "tags": {
- "name": "Orsay",
- "shop": "clothes"
- },
- "name": "Orsay",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Outfit": {
- "tags": {
- "name": "Outfit",
- "shop": "clothes"
- },
- "name": "Outfit",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Outlet": {
- "tags": {
- "name": "Outlet",
- "shop": "clothes"
- },
- "name": "Outlet",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Palmers": {
- "tags": {
- "name": "Palmers",
- "shop": "clothes"
- },
- "name": "Palmers",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Peacocks": {
- "tags": {
- "name": "Peacocks",
- "shop": "clothes"
- },
- "name": "Peacocks",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Peek & Cloppenburg": {
- "tags": {
- "name": "Peek & Cloppenburg",
- "shop": "clothes"
- },
- "name": "Peek & Cloppenburg",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Pep": {
- "tags": {
- "name": "Pep",
- "shop": "clothes"
- },
- "name": "Pep",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Pepco": {
- "tags": {
- "name": "Pepco",
- "shop": "clothes"
- },
- "name": "Pepco",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Petit Bateau": {
- "tags": {
- "name": "Petit Bateau",
- "shop": "clothes"
- },
- "name": "Petit Bateau",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Pimkie": {
- "tags": {
- "name": "Pimkie",
- "shop": "clothes"
- },
- "name": "Pimkie",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Plato's Closet": {
- "tags": {
- "name": "Plato's Closet",
- "shop": "clothes"
- },
- "name": "Plato's Closet",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Primark": {
- "tags": {
- "name": "Primark",
- "shop": "clothes"
- },
- "name": "Primark",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Promod": {
- "tags": {
- "name": "Promod",
- "shop": "clothes"
- },
- "name": "Promod",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Pull & Bear": {
- "tags": {
- "name": "Pull & Bear",
- "shop": "clothes"
- },
- "name": "Pull & Bear",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Reitmans": {
- "tags": {
- "name": "Reitmans",
- "shop": "clothes"
- },
- "name": "Reitmans",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Reserved": {
- "tags": {
- "name": "Reserved",
- "shop": "clothes"
- },
- "name": "Reserved",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/River Island": {
- "tags": {
- "name": "River Island",
- "shop": "clothes"
- },
- "name": "River Island",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Ross": {
- "tags": {
- "name": "Ross",
- "shop": "clothes"
- },
- "name": "Ross",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Sela": {
- "tags": {
- "name": "Sela",
- "shop": "clothes"
- },
- "name": "Sela",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Sergent Major": {
- "tags": {
- "name": "Sergent Major",
- "shop": "clothes"
- },
- "name": "Sergent Major",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Shoeby": {
- "tags": {
- "name": "Shoeby",
- "shop": "clothes"
- },
- "name": "Shoeby",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Sisley": {
- "tags": {
- "name": "Sisley",
- "shop": "clothes"
- },
- "name": "Sisley",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Springfield": {
- "tags": {
- "name": "Springfield",
- "shop": "clothes"
- },
- "name": "Springfield",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Stefanel": {
- "tags": {
- "name": "Stefanel",
- "shop": "clothes"
- },
- "name": "Stefanel",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Steps": {
- "tags": {
- "name": "Steps",
- "shop": "clothes"
- },
- "name": "Steps",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Stradivarius": {
- "tags": {
- "name": "Stradivarius",
- "shop": "clothes"
- },
- "name": "Stradivarius",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Street One": {
- "tags": {
- "name": "Street One",
- "shop": "clothes"
- },
- "name": "Street One",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Superdry": {
- "tags": {
- "name": "Superdry",
- "shop": "clothes"
- },
- "name": "Superdry",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/TJ Maxx": {
- "tags": {
- "name": "TJ Maxx",
- "shop": "clothes"
- },
- "name": "TJ Maxx",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/TK Maxx": {
- "tags": {
- "name": "TK Maxx",
- "shop": "clothes"
- },
- "name": "TK Maxx",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Takko": {
- "tags": {
- "name": "Takko",
- "shop": "clothes"
- },
- "name": "Takko",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Talbots": {
- "tags": {
- "name": "Talbots",
- "shop": "clothes"
- },
- "name": "Talbots",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Tally Weijl": {
- "tags": {
- "name": "Tally Weijl",
- "shop": "clothes"
- },
- "name": "Tally Weijl",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Tati": {
- "tags": {
- "name": "Tati",
- "shop": "clothes"
- },
- "name": "Tati",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Terranova": {
- "tags": {
- "name": "Terranova",
- "shop": "clothes"
- },
- "name": "Terranova",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Tesha": {
- "tags": {
- "name": "Tesha",
- "shop": "clothes"
- },
- "name": "Tesha",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Tezenis": {
- "tags": {
- "name": "Tezenis",
- "shop": "clothes"
- },
- "name": "Tezenis",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/The Children's Place": {
- "tags": {
- "name": "The Children's Place",
- "shop": "clothes"
- },
- "name": "The Children's Place",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/The North Face": {
- "tags": {
- "name": "The North Face",
- "shop": "clothes"
- },
- "name": "The North Face",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/The Sting": {
- "tags": {
- "name": "The Sting",
- "shop": "clothes"
- },
- "name": "The Sting",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Timberland": {
- "tags": {
- "name": "Timberland",
- "shop": "clothes"
- },
- "name": "Timberland",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Toko Pakaian": {
- "tags": {
- "name": "Toko Pakaian",
- "shop": "clothes"
- },
- "name": "Toko Pakaian",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Tom Tailor": {
- "tags": {
- "name": "Tom Tailor",
- "shop": "clothes"
- },
- "name": "Tom Tailor",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Tommy Hilfiger": {
- "tags": {
- "name": "Tommy Hilfiger",
- "shop": "clothes"
- },
- "name": "Tommy Hilfiger",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Topshop": {
- "tags": {
- "name": "Topshop",
- "shop": "clothes"
- },
- "name": "Topshop",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Triumph": {
- "tags": {
- "name": "Triumph",
- "shop": "clothes"
- },
- "name": "Triumph",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Truworths": {
- "tags": {
- "name": "Truworths",
- "shop": "clothes"
- },
- "name": "Truworths",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Ulla Popken": {
- "tags": {
- "name": "Ulla Popken",
- "shop": "clothes"
- },
- "name": "Ulla Popken",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Uniqlo": {
- "tags": {
- "name": "Uniqlo",
- "shop": "clothes"
- },
- "name": "Uniqlo",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/United Colors of Benetton": {
- "tags": {
- "name": "United Colors of Benetton",
- "shop": "clothes"
- },
- "name": "United Colors of Benetton",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Urban Outfitters": {
- "tags": {
- "name": "Urban Outfitters",
- "shop": "clothes"
- },
- "name": "Urban Outfitters",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Vero Moda": {
- "tags": {
- "name": "Vero Moda",
- "shop": "clothes"
- },
- "name": "Vero Moda",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Victoria's Secret": {
- "tags": {
- "name": "Victoria's Secret",
- "shop": "clothes"
- },
- "name": "Victoria's Secret",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Vögele": {
- "tags": {
- "name": "Vögele",
- "shop": "clothes"
- },
- "name": "Vögele",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/WE": {
- "tags": {
- "name": "WE",
- "shop": "clothes"
- },
- "name": "WE",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Wibra": {
- "tags": {
- "name": "Wibra",
- "shop": "clothes"
- },
- "name": "Wibra",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Winners": {
- "tags": {
- "name": "Winners",
- "shop": "clothes"
- },
- "name": "Winners",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Yamamay": {
- "tags": {
- "name": "Yamamay",
- "shop": "clothes"
- },
- "name": "Yamamay",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Zara": {
- "tags": {
- "name": "Zara",
- "shop": "clothes"
- },
- "name": "Zara",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Zeeman": {
- "tags": {
- "name": "Zeeman",
- "shop": "clothes"
- },
- "name": "Zeeman",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/mister*lady": {
- "tags": {
- "name": "mister*lady",
- "shop": "clothes"
- },
- "name": "mister*lady",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/s.Oliver": {
- "tags": {
- "name": "s.Oliver",
- "shop": "clothes"
- },
- "name": "s.Oliver",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Детская одежда": {
- "tags": {
- "name": "Детская одежда",
- "shop": "clothes"
- },
- "name": "Детская одежда",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Женская одежда": {
- "tags": {
- "name": "Женская одежда",
- "shop": "clothes"
- },
- "name": "Женская одежда",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Липненски": {
- "tags": {
- "name": "Липненски",
- "shop": "clothes"
- },
- "name": "Липненски",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Московская ярмарка": {
- "tags": {
- "name": "Московская ярмарка",
- "shop": "clothes"
- },
- "name": "Московская ярмарка",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Одежда": {
- "tags": {
- "name": "Одежда",
- "shop": "clothes"
- },
- "name": "Одежда",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Смешные цены": {
- "tags": {
- "name": "Смешные цены",
- "shop": "clothes"
- },
- "name": "Смешные цены",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/Спецодежда": {
- "tags": {
- "name": "Спецодежда",
- "shop": "clothes"
- },
- "name": "Спецодежда",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/しまむら": {
- "tags": {
- "name": "しまむら",
- "shop": "clothes"
- },
- "name": "しまむら",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/ユニクロ": {
- "tags": {
- "name": "ユニクロ",
- "shop": "clothes"
- },
- "name": "ユニクロ",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/ワークマン": {
- "tags": {
- "name": "ワークマン",
- "shop": "clothes"
- },
- "name": "ワークマン",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/洋服の青山": {
- "tags": {
- "name": "洋服の青山",
- "shop": "clothes"
- },
- "name": "洋服の青山",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/clothes/西松屋": {
- "tags": {
- "name": "西松屋",
- "shop": "clothes"
- },
- "name": "西松屋",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "clothes",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/coffee/Nespresso": {
- "tags": {
- "name": "Nespresso",
- "shop": "coffee"
- },
- "name": "Nespresso",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/coffee/Tchibo": {
- "tags": {
- "name": "Tchibo",
- "shop": "coffee"
- },
- "name": "Tchibo",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/computer/Apple Store": {
- "tags": {
- "name": "Apple Store",
- "shop": "computer"
- },
- "name": "Apple Store",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/computer/DNS": {
- "tags": {
- "name": "DNS",
- "shop": "computer"
- },
- "name": "DNS",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/computer/PC World": {
- "tags": {
- "name": "PC World",
- "shop": "computer"
- },
- "name": "PC World",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/computer/ДНС": {
- "tags": {
- "name": "ДНС",
- "shop": "computer"
- },
- "name": "ДНС",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/confectionery/Fagyizó": {
- "tags": {
- "name": "Fagyizó",
- "shop": "confectionery"
- },
- "name": "Fagyizó",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/confectionery/Hussel": {
- "tags": {
- "name": "Hussel",
- "shop": "confectionery"
- },
- "name": "Hussel",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/confectionery/Leonidas": {
- "tags": {
- "name": "Leonidas",
- "shop": "confectionery"
- },
- "name": "Leonidas",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/confectionery/T. SN": {
- "tags": {
- "name": "T. SN",
- "shop": "confectionery"
- },
- "name": "T. SN",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/confectionery/Thorntons": {
- "tags": {
- "name": "Thorntons",
- "shop": "confectionery"
- },
- "name": "Thorntons",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/711": {
- "tags": {
- "name": "711",
- "shop": "convenience"
- },
- "name": "711",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/777": {
- "tags": {
- "name": "777",
- "shop": "convenience"
- },
- "name": "777",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/24 часа": {
- "tags": {
- "name": "24 часа",
- "shop": "convenience"
- },
- "name": "24 часа",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/7-Eleven": {
- "tags": {
- "name": "7-Eleven",
- "shop": "convenience"
- },
- "name": "7-Eleven",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/8 à Huit": {
- "tags": {
- "name": "8 à Huit",
- "shop": "convenience"
- },
- "name": "8 à Huit",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/99 Speedmart": {
- "tags": {
- "name": "99 Speedmart",
- "shop": "convenience"
- },
- "name": "99 Speedmart",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/ABC": {
- "tags": {
- "name": "ABC",
- "shop": "convenience"
- },
- "name": "ABC",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/AMPM": {
- "tags": {
- "name": "AMPM",
- "shop": "convenience"
- },
- "name": "AMPM",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Aibė": {
- "tags": {
- "name": "Aibė",
- "shop": "convenience"
- },
- "name": "Aibė",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Alepa": {
- "tags": {
- "name": "Alepa",
- "shop": "convenience"
- },
- "name": "Alepa",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Alfamart": {
- "tags": {
- "name": "Alfamart",
- "shop": "convenience"
- },
- "name": "Alfamart",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Alimentara": {
- "tags": {
- "name": "Alimentara",
- "shop": "convenience"
- },
- "name": "Alimentara",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Almacen": {
- "tags": {
- "name": "Almacen",
- "shop": "convenience"
- },
- "name": "Almacen",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Almacén": {
- "tags": {
- "name": "Almacén",
- "shop": "convenience"
- },
- "name": "Almacén",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/BP Shop": {
- "tags": {
- "name": "BP Shop",
- "shop": "convenience"
- },
- "name": "BP Shop",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Baqala": {
- "tags": {
- "name": "Baqala",
- "shop": "convenience"
- },
- "name": "Baqala",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Best One": {
- "tags": {
- "name": "Best One",
- "shop": "convenience"
- },
- "name": "Best One",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Best-One": {
- "tags": {
- "name": "Best-One",
- "shop": "convenience"
- },
- "name": "Best-One",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Bodega": {
- "tags": {
- "name": "Bodega",
- "shop": "convenience"
- },
- "name": "Bodega",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Bonjour": {
- "tags": {
- "name": "Bonjour",
- "shop": "convenience"
- },
- "name": "Bonjour",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/CBA": {
- "tags": {
- "name": "CBA",
- "shop": "convenience"
- },
- "name": "CBA",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/COOP": {
- "tags": {
- "name": "COOP",
- "shop": "convenience"
- },
- "name": "COOP",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/COOP Jednota": {
- "tags": {
- "name": "COOP Jednota",
- "shop": "convenience"
- },
- "name": "COOP Jednota",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/CU": {
- "tags": {
- "name": "CU",
- "shop": "convenience"
- },
- "name": "CU",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Casino Shop": {
- "tags": {
- "name": "Casino Shop",
- "shop": "convenience"
- },
- "name": "Casino Shop",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Centra": {
- "tags": {
- "name": "Centra",
- "shop": "convenience"
- },
- "name": "Centra",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Central Convenience Store": {
- "tags": {
- "name": "Central Convenience Store",
- "shop": "convenience"
- },
- "name": "Central Convenience Store",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Circle K": {
- "tags": {
- "name": "Circle K",
- "shop": "convenience"
- },
- "name": "Circle K",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Coop Jednota": {
- "tags": {
- "name": "Coop Jednota",
- "shop": "convenience"
- },
- "name": "Coop Jednota",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Corner Store": {
- "tags": {
- "name": "Corner Store",
- "shop": "convenience"
- },
- "name": "Corner Store",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Costcutter": {
- "tags": {
- "name": "Costcutter",
- "shop": "convenience"
- },
- "name": "Costcutter",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Couche-Tard": {
- "tags": {
- "name": "Couche-Tard",
- "shop": "convenience"
- },
- "name": "Couche-Tard",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Cumberland Farms": {
- "tags": {
- "name": "Cumberland Farms",
- "shop": "convenience"
- },
- "name": "Cumberland Farms",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Daisy Mart": {
- "tags": {
- "name": "Daisy Mart",
- "shop": "convenience"
- },
- "name": "Daisy Mart",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Delikatesy": {
- "tags": {
- "name": "Delikatesy",
- "shop": "convenience"
- },
- "name": "Delikatesy",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Dollar General": {
- "tags": {
- "name": "Dollar General",
- "shop": "convenience"
- },
- "name": "Dollar General",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Dépanneur": {
- "tags": {
- "name": "Dépanneur",
- "shop": "convenience"
- },
- "name": "Dépanneur",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/FamilyMart": {
- "tags": {
- "name": "FamilyMart",
- "shop": "convenience"
- },
- "name": "FamilyMart",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Food Mart": {
- "tags": {
- "name": "Food Mart",
- "shop": "convenience"
- },
- "name": "Food Mart",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Four Square": {
- "tags": {
- "name": "Four Square",
- "shop": "convenience"
- },
- "name": "Four Square",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Fresh": {
- "tags": {
- "name": "Fresh",
- "shop": "convenience"
- },
- "name": "Fresh",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Freshmarket": {
- "tags": {
- "name": "Freshmarket",
- "shop": "convenience"
- },
- "name": "Freshmarket",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/GS25": {
- "tags": {
- "name": "GS25",
- "shop": "convenience"
- },
- "name": "GS25",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Groszek": {
- "tags": {
- "name": "Groszek",
- "shop": "convenience"
- },
- "name": "Groszek",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Hasty Market": {
- "tags": {
- "name": "Hasty Market",
- "shop": "convenience"
- },
- "name": "Hasty Market",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Hruška": {
- "tags": {
- "name": "Hruška",
- "shop": "convenience"
- },
- "name": "Hruška",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Indomaret": {
- "tags": {
- "name": "Indomaret",
- "shop": "convenience"
- },
- "name": "Indomaret",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Jednota": {
- "tags": {
- "name": "Jednota",
- "shop": "convenience"
- },
- "name": "Jednota",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Joker": {
- "tags": {
- "name": "Joker",
- "shop": "convenience"
- },
- "name": "Joker",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/K-Market": {
- "tags": {
- "name": "K-Market",
- "shop": "convenience"
- },
- "name": "K-Market",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Kangaroo Express": {
- "tags": {
- "name": "Kangaroo Express",
- "shop": "convenience"
- },
- "name": "Kangaroo Express",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Kisbolt": {
- "tags": {
- "name": "Kisbolt",
- "shop": "convenience"
- },
- "name": "Kisbolt",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Lawson": {
- "tags": {
- "name": "Lawson",
- "shop": "convenience"
- },
- "name": "Lawson",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Lewiatan": {
- "tags": {
- "name": "Lewiatan",
- "shop": "convenience"
- },
- "name": "Lewiatan",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Lifestyle Express": {
- "tags": {
- "name": "Lifestyle Express",
- "shop": "convenience"
- },
- "name": "Lifestyle Express",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Londis": {
- "tags": {
- "name": "Londis",
- "shop": "convenience"
- },
- "name": "Londis",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/M&S Simply Food": {
- "tags": {
- "name": "M&S Simply Food",
- "shop": "convenience"
- },
- "name": "M&S Simply Food",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Mac's": {
- "tags": {
- "name": "Mac's",
- "shop": "convenience"
- },
- "name": "Mac's",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Mace": {
- "tags": {
- "name": "Mace",
- "shop": "convenience"
- },
- "name": "Mace",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Magazin": {
- "tags": {
- "name": "Magazin",
- "shop": "convenience"
- },
- "name": "Magazin",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Magazin Mixt": {
- "tags": {
- "name": "Magazin Mixt",
- "shop": "convenience"
- },
- "name": "Magazin Mixt",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Magazin Non-Stop": {
- "tags": {
- "name": "Magazin Non-Stop",
- "shop": "convenience"
- },
- "name": "Magazin Non-Stop",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Magazin mixt": {
- "tags": {
- "name": "Magazin mixt",
- "shop": "convenience"
- },
- "name": "Magazin mixt",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Maxikiosco": {
- "tags": {
- "name": "Maxikiosco",
- "shop": "convenience"
- },
- "name": "Maxikiosco",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Małpka Express": {
- "tags": {
- "name": "Małpka Express",
- "shop": "convenience"
- },
- "name": "Małpka Express",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/McColl's": {
- "tags": {
- "name": "McColl's",
- "shop": "convenience"
- },
- "name": "McColl's",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Migrolino": {
- "tags": {
- "name": "Migrolino",
- "shop": "convenience"
- },
- "name": "Migrolino",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Mini ABC": {
- "tags": {
- "name": "Mini ABC",
- "shop": "convenience"
- },
- "name": "Mini ABC",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Mini Market": {
- "tags": {
- "name": "Mini Market",
- "shop": "convenience"
- },
- "name": "Mini Market",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Mini Market Non-Stop": {
- "tags": {
- "name": "Mini Market Non-Stop",
- "shop": "convenience"
- },
- "name": "Mini Market Non-Stop",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Mini Mart": {
- "tags": {
- "name": "Mini Mart",
- "shop": "convenience"
- },
- "name": "Mini Mart",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Mini Stop": {
- "tags": {
- "name": "Mini Stop",
- "shop": "convenience"
- },
- "name": "Mini Stop",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Minimercado": {
- "tags": {
- "name": "Minimercado",
- "shop": "convenience"
- },
- "name": "Minimercado",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Mlin i pekare": {
- "tags": {
- "name": "Mlin i pekare",
- "shop": "convenience"
- },
- "name": "Mlin i pekare",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Nasz Sklep": {
- "tags": {
- "name": "Nasz Sklep",
- "shop": "convenience"
- },
- "name": "Nasz Sklep",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Nisa": {
- "tags": {
- "name": "Nisa",
- "shop": "convenience"
- },
- "name": "Nisa",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Nisa Local": {
- "tags": {
- "name": "Nisa Local",
- "shop": "convenience"
- },
- "name": "Nisa Local",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/OK-Mart": {
- "tags": {
- "name": "OK-Mart",
- "shop": "convenience"
- },
- "name": "OK-Mart",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/OK便利商店": {
- "tags": {
- "name": "OK便利商店",
- "shop": "convenience"
- },
- "name": "OK便利商店",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/OK便利店 Circle K": {
- "tags": {
- "name": "OK便利店 Circle K",
- "shop": "convenience"
- },
- "name": "OK便利店 Circle K",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Odido": {
- "tags": {
- "name": "Odido",
- "shop": "convenience"
- },
- "name": "Odido",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/On The Run": {
- "tags": {
- "name": "On The Run",
- "shop": "convenience"
- },
- "name": "On The Run",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/On the Run": {
- "tags": {
- "name": "On the Run",
- "shop": "convenience"
- },
- "name": "On the Run",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/One Stop": {
- "tags": {
- "name": "One Stop",
- "shop": "convenience"
- },
- "name": "One Stop",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Oxxo": {
- "tags": {
- "name": "Oxxo",
- "shop": "convenience"
- },
- "name": "Oxxo",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Parduotuvė": {
- "tags": {
- "name": "Parduotuvė",
- "shop": "convenience"
- },
- "name": "Parduotuvė",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Petit Casino": {
- "tags": {
- "name": "Petit Casino",
- "shop": "convenience"
- },
- "name": "Petit Casino",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Plaid Pantry": {
- "tags": {
- "name": "Plaid Pantry",
- "shop": "convenience"
- },
- "name": "Plaid Pantry",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Potraviny": {
- "tags": {
- "name": "Potraviny",
- "shop": "convenience"
- },
- "name": "Potraviny",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Prehrana": {
- "tags": {
- "name": "Prehrana",
- "shop": "convenience"
- },
- "name": "Prehrana",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Premier": {
- "tags": {
- "name": "Premier",
- "shop": "convenience"
- },
- "name": "Premier",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Proxi": {
- "tags": {
- "name": "Proxi",
- "shop": "convenience"
- },
- "name": "Proxi",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Proxy": {
- "tags": {
- "name": "Proxy",
- "shop": "convenience"
- },
- "name": "Proxy",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Pulperia": {
- "tags": {
- "name": "Pulperia",
- "shop": "convenience"
- },
- "name": "Pulperia",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Royal Farms": {
- "tags": {
- "name": "Royal Farms",
- "shop": "convenience"
- },
- "name": "Royal Farms",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Sale": {
- "tags": {
- "name": "Sale",
- "shop": "convenience"
- },
- "name": "Sale",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Sari-sari Store": {
- "tags": {
- "name": "Sari-sari Store",
- "shop": "convenience"
- },
- "name": "Sari-sari Store",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Select": {
- "tags": {
- "name": "Select",
- "shop": "convenience"
- },
- "name": "Select",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Shell Select": {
- "tags": {
- "name": "Shell Select",
- "shop": "convenience"
- },
- "name": "Shell Select",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Shop & Go": {
- "tags": {
- "name": "Shop & Go",
- "shop": "convenience"
- },
- "name": "Shop & Go",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Siwa": {
- "tags": {
- "name": "Siwa",
- "shop": "convenience"
- },
- "name": "Siwa",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Sklep spożywczy": {
- "tags": {
- "name": "Sklep spożywczy",
- "shop": "convenience"
- },
- "name": "Sklep spożywczy",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Smíšené zboží": {
- "tags": {
- "name": "Smíšené zboží",
- "shop": "convenience"
- },
- "name": "Smíšené zboží",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Społem": {
- "tags": {
- "name": "Społem",
- "shop": "convenience"
- },
- "name": "Społem",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Spätkauf": {
- "tags": {
- "name": "Spätkauf",
- "shop": "convenience"
- },
- "name": "Spätkauf",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Stewart's": {
- "tags": {
- "name": "Stewart's",
- "shop": "convenience"
- },
- "name": "Stewart's",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Stores": {
- "tags": {
- "name": "Stores",
- "shop": "convenience"
- },
- "name": "Stores",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Stripes": {
- "tags": {
- "name": "Stripes",
- "shop": "convenience"
- },
- "name": "Stripes",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Studenac": {
- "tags": {
- "name": "Studenac",
- "shop": "convenience"
- },
- "name": "Studenac",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Sunkus": {
- "tags": {
- "name": "Sunkus",
- "shop": "convenience"
- },
- "name": "Sunkus",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Słoneczko": {
- "tags": {
- "name": "Słoneczko",
- "shop": "convenience"
- },
- "name": "Słoneczko",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/TESCO Lotus Express": {
- "tags": {
- "name": "TESCO Lotus Express",
- "shop": "convenience"
- },
- "name": "TESCO Lotus Express",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Tesco Express": {
- "tags": {
- "name": "Tesco Express",
- "shop": "convenience"
- },
- "name": "Tesco Express",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Tesco Lotus Express": {
- "tags": {
- "name": "Tesco Lotus Express",
- "shop": "convenience"
- },
- "name": "Tesco Lotus Express",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Tom Market 89": {
- "tags": {
- "name": "Tom Market 89",
- "shop": "convenience"
- },
- "name": "Tom Market 89",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/United Dairy Farmers": {
- "tags": {
- "name": "United Dairy Farmers",
- "shop": "convenience"
- },
- "name": "United Dairy Farmers",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Vegyesbolt": {
- "tags": {
- "name": "Vegyesbolt",
- "shop": "convenience"
- },
- "name": "Vegyesbolt",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Večerka": {
- "tags": {
- "name": "Večerka",
- "shop": "convenience"
- },
- "name": "Večerka",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Vival": {
- "tags": {
- "name": "Vival",
- "shop": "convenience"
- },
- "name": "Vival",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Wawa": {
- "tags": {
- "name": "Wawa",
- "shop": "convenience"
- },
- "name": "Wawa",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Weltladen": {
- "tags": {
- "name": "Weltladen",
- "shop": "convenience"
- },
- "name": "Weltladen",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/abc": {
- "tags": {
- "name": "abc",
- "shop": "convenience"
- },
- "name": "abc",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/ampm": {
- "tags": {
- "name": "ampm",
- "shop": "convenience"
- },
- "name": "ampm",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/best-one": {
- "tags": {
- "name": "best-one",
- "shop": "convenience"
- },
- "name": "best-one",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/odido": {
- "tags": {
- "name": "odido",
- "shop": "convenience"
- },
- "name": "odido",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Élelmiszer": {
- "tags": {
- "name": "Élelmiszer",
- "shop": "convenience"
- },
- "name": "Élelmiszer",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Élelmiszerbolt": {
- "tags": {
- "name": "Élelmiszerbolt",
- "shop": "convenience"
- },
- "name": "Élelmiszerbolt",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Żabka": {
- "tags": {
- "name": "Żabka",
- "shop": "convenience"
- },
- "name": "Żabka",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Žabka": {
- "tags": {
- "name": "Žabka",
- "shop": "convenience"
- },
- "name": "Žabka",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Августина": {
- "tags": {
- "name": "Августина",
- "shop": "convenience"
- },
- "name": "Августина",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Авоська": {
- "tags": {
- "name": "Авоська",
- "shop": "convenience"
- },
- "name": "Авоська",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Агрокомплекс": {
- "tags": {
- "name": "Агрокомплекс",
- "shop": "convenience"
- },
- "name": "Агрокомплекс",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Альянс": {
- "tags": {
- "name": "Альянс",
- "shop": "convenience"
- },
- "name": "Альянс",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Апельсин": {
- "tags": {
- "name": "Апельсин",
- "shop": "convenience"
- },
- "name": "Апельсин",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Ассорти": {
- "tags": {
- "name": "Ассорти",
- "shop": "convenience"
- },
- "name": "Ассорти",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Белорусские продукты": {
- "tags": {
- "name": "Белорусские продукты",
- "shop": "convenience"
- },
- "name": "Белорусские продукты",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Берёзка": {
- "tags": {
- "name": "Берёзка",
- "shop": "convenience"
- },
- "name": "Берёзка",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Везунчик": {
- "tags": {
- "name": "Везунчик",
- "shop": "convenience"
- },
- "name": "Везунчик",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Весна": {
- "tags": {
- "name": "Весна",
- "shop": "convenience"
- },
- "name": "Весна",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Ветеран": {
- "tags": {
- "name": "Ветеран",
- "shop": "convenience"
- },
- "name": "Ветеран",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Визит": {
- "tags": {
- "name": "Визит",
- "shop": "convenience"
- },
- "name": "Визит",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Виктория": {
- "tags": {
- "name": "Виктория",
- "shop": "convenience"
- },
- "name": "Виктория",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/ВкусВилл": {
- "tags": {
- "name": "ВкусВилл",
- "shop": "convenience"
- },
- "name": "ВкусВилл",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Гастроном": {
- "tags": {
- "name": "Гастроном",
- "shop": "convenience"
- },
- "name": "Гастроном",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Гермес": {
- "tags": {
- "name": "Гермес",
- "shop": "convenience"
- },
- "name": "Гермес",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Гурман": {
- "tags": {
- "name": "Гурман",
- "shop": "convenience"
- },
- "name": "Гурман",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Домашний": {
- "tags": {
- "name": "Домашний",
- "shop": "convenience"
- },
- "name": "Домашний",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Елена": {
- "tags": {
- "name": "Елена",
- "shop": "convenience"
- },
- "name": "Елена",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Ермолино": {
- "tags": {
- "name": "Ермолино",
- "shop": "convenience"
- },
- "name": "Ермолино",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Калинка": {
- "tags": {
- "name": "Калинка",
- "shop": "convenience"
- },
- "name": "Калинка",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Кировский": {
- "tags": {
- "name": "Кировский",
- "shop": "convenience"
- },
- "name": "Кировский",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Колобок": {
- "tags": {
- "name": "Колобок",
- "shop": "convenience"
- },
- "name": "Колобок",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Колосок": {
- "tags": {
- "name": "Колосок",
- "shop": "convenience"
- },
- "name": "Колосок",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Копеечка": {
- "tags": {
- "name": "Копеечка",
- "shop": "convenience"
- },
- "name": "Копеечка",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Копейка": {
- "tags": {
- "name": "Копейка",
- "shop": "convenience"
- },
- "name": "Копейка",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Корзинка": {
- "tags": {
- "name": "Корзинка",
- "shop": "convenience"
- },
- "name": "Корзинка",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Крамниця": {
- "tags": {
- "name": "Крамниця",
- "shop": "convenience"
- },
- "name": "Крамниця",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Кристалл": {
- "tags": {
- "name": "Кристалл",
- "shop": "convenience"
- },
- "name": "Кристалл",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Кулинария": {
- "tags": {
- "name": "Кулинария",
- "shop": "convenience"
- },
- "name": "Кулинария",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Купец": {
- "tags": {
- "name": "Купец",
- "shop": "convenience"
- },
- "name": "Купец",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Ласточка": {
- "tags": {
- "name": "Ласточка",
- "shop": "convenience"
- },
- "name": "Ласточка",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Лидер": {
- "tags": {
- "name": "Лидер",
- "shop": "convenience"
- },
- "name": "Лидер",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Любимый": {
- "tags": {
- "name": "Любимый",
- "shop": "convenience"
- },
- "name": "Любимый",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Люкс": {
- "tags": {
- "name": "Люкс",
- "shop": "convenience"
- },
- "name": "Люкс",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Магазин при АЗС": {
- "tags": {
- "name": "Магазин при АЗС",
- "shop": "convenience"
- },
- "name": "Магазин при АЗС",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Мария-Ра": {
- "tags": {
- "name": "Мария-Ра",
- "shop": "convenience"
- },
- "name": "Мария-Ра",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Маяк": {
- "tags": {
- "name": "Маяк",
- "shop": "convenience"
- },
- "name": "Маяк",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Меркурий": {
- "tags": {
- "name": "Меркурий",
- "shop": "convenience"
- },
- "name": "Меркурий",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Мечта": {
- "tags": {
- "name": "Мечта",
- "shop": "convenience"
- },
- "name": "Мечта",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Минимаркет": {
- "tags": {
- "name": "Минимаркет",
- "shop": "convenience"
- },
- "name": "Минимаркет",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Мираж": {
- "tags": {
- "name": "Мираж",
- "shop": "convenience"
- },
- "name": "Мираж",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Надежда": {
- "tags": {
- "name": "Надежда",
- "shop": "convenience"
- },
- "name": "Надежда",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Ника": {
- "tags": {
- "name": "Ника",
- "shop": "convenience"
- },
- "name": "Ника",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Оазис": {
- "tags": {
- "name": "Оазис",
- "shop": "convenience"
- },
- "name": "Оазис",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Олимп": {
- "tags": {
- "name": "Олимп",
- "shop": "convenience"
- },
- "name": "Олимп",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Подсолнух": {
- "tags": {
- "name": "Подсолнух",
- "shop": "convenience"
- },
- "name": "Подсолнух",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Престиж": {
- "tags": {
- "name": "Престиж",
- "shop": "convenience"
- },
- "name": "Престиж",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Продукти": {
- "tags": {
- "name": "Продукти",
- "shop": "convenience"
- },
- "name": "Продукти",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Продуктовый": {
- "tags": {
- "name": "Продуктовый",
- "shop": "convenience"
- },
- "name": "Продуктовый",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Продуктовый магазин": {
- "tags": {
- "name": "Продуктовый магазин",
- "shop": "convenience"
- },
- "name": "Продуктовый магазин",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Продукты": {
- "tags": {
- "name": "Продукты",
- "shop": "convenience"
- },
- "name": "Продукты",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Продукты 24": {
- "tags": {
- "name": "Продукты 24",
- "shop": "convenience"
- },
- "name": "Продукты 24",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Радуга": {
- "tags": {
- "name": "Радуга",
- "shop": "convenience"
- },
- "name": "Радуга",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Родны кут": {
- "tags": {
- "name": "Родны кут",
- "shop": "convenience"
- },
- "name": "Родны кут",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Ромашка": {
- "tags": {
- "name": "Ромашка",
- "shop": "convenience"
- },
- "name": "Ромашка",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Русь": {
- "tags": {
- "name": "Русь",
- "shop": "convenience"
- },
- "name": "Русь",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Светлана": {
- "tags": {
- "name": "Светлана",
- "shop": "convenience"
- },
- "name": "Светлана",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Смак": {
- "tags": {
- "name": "Смак",
- "shop": "convenience"
- },
- "name": "Смак",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Солнечный": {
- "tags": {
- "name": "Солнечный",
- "shop": "convenience"
- },
- "name": "Солнечный",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Татьяна": {
- "tags": {
- "name": "Татьяна",
- "shop": "convenience"
- },
- "name": "Татьяна",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Тройка": {
- "tags": {
- "name": "Тройка",
- "shop": "convenience"
- },
- "name": "Тройка",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/У Палыча": {
- "tags": {
- "name": "У Палыча",
- "shop": "convenience"
- },
- "name": "У Палыча",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Универсам": {
- "tags": {
- "name": "Универсам",
- "shop": "convenience"
- },
- "name": "Универсам",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Фортуна": {
- "tags": {
- "name": "Фортуна",
- "shop": "convenience"
- },
- "name": "Фортуна",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Хороший": {
- "tags": {
- "name": "Хороший",
- "shop": "convenience"
- },
- "name": "Хороший",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Центральный": {
- "tags": {
- "name": "Центральный",
- "shop": "convenience"
- },
- "name": "Центральный",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Чайка": {
- "tags": {
- "name": "Чайка",
- "shop": "convenience"
- },
- "name": "Чайка",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Шанс": {
- "tags": {
- "name": "Шанс",
- "shop": "convenience"
- },
- "name": "Шанс",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Эконом": {
- "tags": {
- "name": "Эконом",
- "shop": "convenience"
- },
- "name": "Эконом",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Юбилейный": {
- "tags": {
- "name": "Юбилейный",
- "shop": "convenience"
- },
- "name": "Юбилейный",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/Юлия": {
- "tags": {
- "name": "Юлия",
- "shop": "convenience"
- },
- "name": "Юлия",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/продукты": {
- "tags": {
- "name": "продукты",
- "shop": "convenience"
- },
- "name": "продукты",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/მარკეტი": {
- "tags": {
- "name": "მარკეტი",
- "shop": "convenience"
- },
- "name": "მარკეტი",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/サンクス": {
- "tags": {
- "name": "サンクス",
- "name:en": "Sunkus",
- "shop": "convenience"
- },
- "name": "サンクス",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/サークルK": {
- "tags": {
- "name": "サークルK",
- "name:en": "Circle K",
- "shop": "convenience"
- },
- "name": "サークルK",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/スリーエフ": {
- "tags": {
- "name": "スリーエフ",
- "shop": "convenience"
- },
- "name": "スリーエフ",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/セイコーマート": {
- "tags": {
- "name": "セイコーマート",
- "shop": "convenience"
- },
- "name": "セイコーマート",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/セブン-イレブン": {
- "tags": {
- "name": "セブン-イレブン",
- "name:en": "7-Eleven",
- "shop": "convenience"
- },
- "name": "セブン-イレブン",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/セブンイレブン(Seven-Eleven)": {
- "tags": {
- "name": "セブンイレブン(Seven-Eleven)",
- "shop": "convenience"
- },
- "name": "セブンイレブン(Seven-Eleven)",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/セーブオン": {
- "tags": {
- "name": "セーブオン",
- "shop": "convenience"
- },
- "name": "セーブオン",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/デイリーヤマザキ": {
- "tags": {
- "name": "デイリーヤマザキ",
- "shop": "convenience"
- },
- "name": "デイリーヤマザキ",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/ファミリーマート": {
- "tags": {
- "name": "ファミリーマート",
- "name:en": "FamilyMart",
- "shop": "convenience"
- },
- "name": "ファミリーマート",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/ポプラ": {
- "tags": {
- "name": "ポプラ",
- "shop": "convenience"
- },
- "name": "ポプラ",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/ミニストップ": {
- "tags": {
- "name": "ミニストップ",
- "name:en": "MINISTOP",
- "shop": "convenience"
- },
- "name": "ミニストップ",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/ヤマザキショップ": {
- "tags": {
- "name": "ヤマザキショップ",
- "shop": "convenience"
- },
- "name": "ヤマザキショップ",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/ローソン": {
- "tags": {
- "name": "ローソン",
- "name:en": "Lawson",
- "shop": "convenience"
- },
- "name": "ローソン",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/ローソンストア100": {
- "tags": {
- "name": "ローソンストア100",
- "shop": "convenience"
- },
- "name": "ローソンストア100",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/全家": {
- "tags": {
- "name": "全家",
- "shop": "convenience"
- },
- "name": "全家",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/全家便利商店": {
- "tags": {
- "name": "全家便利商店",
- "shop": "convenience"
- },
- "name": "全家便利商店",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/萊爾富": {
- "tags": {
- "name": "萊爾富",
- "shop": "convenience"
- },
- "name": "萊爾富",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/convenience/세븐일레븐": {
- "tags": {
- "name": "세븐일레븐",
- "shop": "convenience"
- },
- "name": "세븐일레븐",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/copyshop/FedEx Office": {
- "tags": {
- "name": "FedEx Office",
- "shop": "copyshop"
- },
- "name": "FedEx Office",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/copyshop/FedEx Office Print and Ship Center": {
- "tags": {
- "name": "FedEx Office Print and Ship Center",
- "shop": "copyshop"
- },
- "name": "FedEx Office Print and Ship Center",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/cosmetics/Douglas": {
- "tags": {
- "name": "Douglas",
- "shop": "cosmetics"
- },
- "name": "Douglas",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/cosmetics/Lush": {
- "tags": {
- "name": "Lush",
- "shop": "cosmetics"
- },
- "name": "Lush",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/cosmetics/Marionnaud": {
- "tags": {
- "name": "Marionnaud",
- "shop": "cosmetics"
- },
- "name": "Marionnaud",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/cosmetics/Sephora": {
- "tags": {
- "name": "Sephora",
- "shop": "cosmetics"
- },
- "name": "Sephora",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/cosmetics/The Body Shop": {
- "tags": {
- "name": "The Body Shop",
- "shop": "cosmetics"
- },
- "name": "The Body Shop",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/cosmetics/Л'Этуаль": {
- "tags": {
- "name": "Л'Этуаль",
- "shop": "cosmetics"
- },
- "name": "Л'Этуаль",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/cosmetics/Магнит косметик": {
- "tags": {
- "name": "Магнит косметик",
- "shop": "cosmetics"
- },
- "name": "Магнит косметик",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/cosmetics/Магнит-Косметик": {
- "tags": {
- "name": "Магнит-Косметик",
- "shop": "cosmetics"
- },
- "name": "Магнит-Косметик",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/cosmetics/Подружка": {
- "tags": {
- "name": "Подружка",
- "shop": "cosmetics"
- },
- "name": "Подружка",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/craft/Hobby Lobby": {
- "tags": {
- "name": "Hobby Lobby",
- "shop": "craft"
- },
- "name": "Hobby Lobby",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/craft/Michaels": {
- "tags": {
- "name": "Michaels",
- "shop": "craft"
- },
- "name": "Michaels",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Argos": {
- "tags": {
- "name": "Argos",
- "shop": "department_store"
- },
- "name": "Argos",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Bed Bath & Beyond": {
- "tags": {
- "name": "Bed Bath & Beyond",
- "shop": "department_store"
- },
- "name": "Bed Bath & Beyond",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Big Lots": {
- "tags": {
- "name": "Big Lots",
- "shop": "department_store"
- },
- "name": "Big Lots",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Big W": {
- "tags": {
- "name": "Big W",
- "shop": "department_store"
- },
- "name": "Big W",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Canadian Tire": {
- "tags": {
- "name": "Canadian Tire",
- "shop": "department_store"
- },
- "name": "Canadian Tire",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Coppel": {
- "tags": {
- "name": "Coppel",
- "shop": "department_store"
- },
- "name": "Coppel",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Debenhams": {
- "tags": {
- "name": "Debenhams",
- "shop": "department_store"
- },
- "name": "Debenhams",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Dillard's": {
- "tags": {
- "name": "Dillard's",
- "shop": "department_store"
- },
- "name": "Dillard's",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/El Corte Inglés": {
- "tags": {
- "name": "El Corte Inglés",
- "shop": "department_store"
- },
- "name": "El Corte Inglés",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Galeria Kaufhof": {
- "tags": {
- "name": "Galeria Kaufhof",
- "shop": "department_store"
- },
- "name": "Galeria Kaufhof",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/HEMA": {
- "tags": {
- "name": "HEMA",
- "shop": "department_store"
- },
- "name": "HEMA",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Harvey Norman": {
- "tags": {
- "name": "Harvey Norman",
- "shop": "department_store"
- },
- "name": "Harvey Norman",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/JCPenney": {
- "tags": {
- "name": "JCPenney",
- "shop": "department_store"
- },
- "name": "JCPenney",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Karstadt": {
- "tags": {
- "name": "Karstadt",
- "shop": "department_store"
- },
- "name": "Karstadt",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Kmart": {
- "tags": {
- "name": "Kmart",
- "shop": "department_store"
- },
- "name": "Kmart",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Kohl's": {
- "tags": {
- "name": "Kohl's",
- "shop": "department_store"
- },
- "name": "Kohl's",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Lojas Americanas": {
- "tags": {
- "name": "Lojas Americanas",
- "shop": "department_store"
- },
- "name": "Lojas Americanas",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Macy's": {
- "tags": {
- "name": "Macy's",
- "shop": "department_store"
- },
- "name": "Macy's",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Marks & Spencer": {
- "tags": {
- "name": "Marks & Spencer",
- "shop": "department_store"
- },
- "name": "Marks & Spencer",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Myer": {
- "tags": {
- "name": "Myer",
- "shop": "department_store"
- },
- "name": "Myer",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Nordstrom": {
- "tags": {
- "name": "Nordstrom",
- "shop": "department_store"
- },
- "name": "Nordstrom",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Sears": {
- "tags": {
- "name": "Sears",
- "shop": "department_store"
- },
- "name": "Sears",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Shopko": {
- "tags": {
- "name": "Shopko",
- "shop": "department_store"
- },
- "name": "Shopko",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Target": {
- "tags": {
- "name": "Target",
- "shop": "department_store"
- },
- "name": "Target",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/The Warehouse": {
- "tags": {
- "name": "The Warehouse",
- "shop": "department_store"
- },
- "name": "The Warehouse",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Woolworth": {
- "tags": {
- "name": "Woolworth",
- "shop": "department_store"
- },
- "name": "Woolworth",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/department_store/Универмаг": {
- "tags": {
- "name": "Универмаг",
- "shop": "department_store"
- },
- "name": "Универмаг",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Ace Hardware": {
- "tags": {
- "name": "Ace Hardware",
- "shop": "doityourself"
- },
- "name": "Ace Hardware",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/B&Q": {
- "tags": {
- "name": "B&Q",
- "shop": "doityourself"
- },
- "name": "B&Q",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Bauhaus": {
- "tags": {
- "name": "Bauhaus",
- "shop": "doityourself"
- },
- "name": "Bauhaus",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Biltema": {
- "tags": {
- "name": "Biltema",
- "shop": "doityourself"
- },
- "name": "Biltema",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Brico": {
- "tags": {
- "name": "Brico",
- "shop": "doityourself"
- },
- "name": "Brico",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Bricomarché": {
- "tags": {
- "name": "Bricomarché",
- "shop": "doityourself"
- },
- "name": "Bricomarché",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Bricorama": {
- "tags": {
- "name": "Bricorama",
- "shop": "doityourself"
- },
- "name": "Bricorama",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Bunnings Warehouse": {
- "tags": {
- "name": "Bunnings Warehouse",
- "shop": "doityourself"
- },
- "name": "Bunnings Warehouse",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Castorama": {
- "tags": {
- "name": "Castorama",
- "shop": "doityourself"
- },
- "name": "Castorama",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Easy": {
- "tags": {
- "name": "Easy",
- "shop": "doityourself"
- },
- "name": "Easy",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Gamma": {
- "tags": {
- "name": "Gamma",
- "shop": "doityourself"
- },
- "name": "Gamma",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Globus Baumarkt": {
- "tags": {
- "name": "Globus Baumarkt",
- "shop": "doityourself"
- },
- "name": "Globus Baumarkt",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Hagebaumarkt": {
- "tags": {
- "name": "Hagebaumarkt",
- "shop": "doityourself"
- },
- "name": "Hagebaumarkt",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Hellweg": {
- "tags": {
- "name": "Hellweg",
- "shop": "doityourself"
- },
- "name": "Hellweg",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Home Depot": {
- "tags": {
- "name": "Home Depot",
- "shop": "doityourself"
- },
- "name": "Home Depot",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Home Hardware": {
- "tags": {
- "name": "Home Hardware",
- "shop": "doityourself"
- },
- "name": "Home Hardware",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Homebase": {
- "tags": {
- "name": "Homebase",
- "shop": "doityourself"
- },
- "name": "Homebase",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Hornbach": {
- "tags": {
- "name": "Hornbach",
- "shop": "doityourself"
- },
- "name": "Hornbach",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Hubo": {
- "tags": {
- "name": "Hubo",
- "shop": "doityourself"
- },
- "name": "Hubo",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Karwei": {
- "tags": {
- "name": "Karwei",
- "shop": "doityourself"
- },
- "name": "Karwei",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Lagerhaus": {
- "tags": {
- "name": "Lagerhaus",
- "shop": "doityourself"
- },
- "name": "Lagerhaus",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Leroy Merlin": {
- "tags": {
- "name": "Leroy Merlin",
- "shop": "doityourself"
- },
- "name": "Leroy Merlin",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Lowe's": {
- "tags": {
- "name": "Lowe's",
- "shop": "doityourself"
- },
- "name": "Lowe's",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Lowes": {
- "tags": {
- "name": "Lowes",
- "shop": "doityourself"
- },
- "name": "Lowes",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Menards": {
- "tags": {
- "name": "Menards",
- "shop": "doityourself"
- },
- "name": "Menards",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Mr Bricolage": {
- "tags": {
- "name": "Mr Bricolage",
- "shop": "doityourself"
- },
- "name": "Mr Bricolage",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Mr.Bricolage": {
- "tags": {
- "name": "Mr.Bricolage",
- "shop": "doityourself"
- },
- "name": "Mr.Bricolage",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/OBI": {
- "tags": {
- "name": "OBI",
- "shop": "doityourself"
- },
- "name": "OBI",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Point P": {
- "tags": {
- "name": "Point P",
- "shop": "doityourself"
- },
- "name": "Point P",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Praktiker": {
- "tags": {
- "name": "Praktiker",
- "shop": "doityourself"
- },
- "name": "Praktiker",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Praxis": {
- "tags": {
- "name": "Praxis",
- "shop": "doityourself"
- },
- "name": "Praxis",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Rona": {
- "tags": {
- "name": "Rona",
- "shop": "doityourself"
- },
- "name": "Rona",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Screwfix": {
- "tags": {
- "name": "Screwfix",
- "shop": "doityourself"
- },
- "name": "Screwfix",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Sonderpreis Baumarkt": {
- "tags": {
- "name": "Sonderpreis Baumarkt",
- "shop": "doityourself"
- },
- "name": "Sonderpreis Baumarkt",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Tekzen": {
- "tags": {
- "name": "Tekzen",
- "shop": "doityourself"
- },
- "name": "Tekzen",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Toom Baumarkt": {
- "tags": {
- "name": "Toom Baumarkt",
- "shop": "doityourself"
- },
- "name": "Toom Baumarkt",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Weldom": {
- "tags": {
- "name": "Weldom",
- "shop": "doityourself"
- },
- "name": "Weldom",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Wickes": {
- "tags": {
- "name": "Wickes",
- "shop": "doityourself"
- },
- "name": "Wickes",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Леруа Мерлен": {
- "tags": {
- "name": "Леруа Мерлен",
- "shop": "doityourself"
- },
- "name": "Леруа Мерлен",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Мастер": {
- "tags": {
- "name": "Мастер",
- "shop": "doityourself"
- },
- "name": "Мастер",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Строитель": {
- "tags": {
- "name": "Строитель",
- "shop": "doityourself"
- },
- "name": "Строитель",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/Стройматериалы": {
- "tags": {
- "name": "Стройматериалы",
- "shop": "doityourself"
- },
- "name": "Стройматериалы",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/カインズホーム": {
- "tags": {
- "name": "カインズホーム",
- "shop": "doityourself"
- },
- "name": "カインズホーム",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/コメリ": {
- "tags": {
- "name": "コメリ",
- "shop": "doityourself"
- },
- "name": "コメリ",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/doityourself/コーナン": {
- "tags": {
- "name": "コーナン",
- "shop": "doityourself"
- },
- "name": "コーナン",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/dry_cleaning/Cleaners": {
- "tags": {
- "name": "Cleaners",
- "shop": "dry_cleaning"
- },
- "name": "Cleaners",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/dry_cleaning/Pressing": {
- "tags": {
- "name": "Pressing",
- "shop": "dry_cleaning"
- },
- "name": "Pressing",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/dry_cleaning/Диана": {
- "tags": {
- "name": "Диана",
- "shop": "dry_cleaning"
- },
- "name": "Диана",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/dry_cleaning/Химчистка": {
- "tags": {
- "name": "Химчистка",
- "shop": "dry_cleaning"
- },
- "name": "Химчистка",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/dry_cleaning/ホワイト急便": {
- "tags": {
- "name": "ホワイト急便",
- "shop": "dry_cleaning"
- },
- "name": "ホワイト急便",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/BCC": {
- "tags": {
- "name": "BCC",
- "shop": "electronics"
- },
- "name": "BCC",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Batteries Plus Bulbs": {
- "tags": {
- "name": "Batteries Plus Bulbs",
- "shop": "electronics"
- },
- "name": "Batteries Plus Bulbs",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Best Buy": {
- "tags": {
- "name": "Best Buy",
- "shop": "electronics"
- },
- "name": "Best Buy",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Boulanger": {
- "tags": {
- "name": "Boulanger",
- "shop": "electronics"
- },
- "name": "Boulanger",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Currys": {
- "tags": {
- "name": "Currys",
- "shop": "electronics"
- },
- "name": "Currys",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Currys PC World": {
- "tags": {
- "name": "Currys PC World",
- "shop": "electronics"
- },
- "name": "Currys PC World",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Darty": {
- "tags": {
- "name": "Darty",
- "shop": "electronics"
- },
- "name": "Darty",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Elektra": {
- "tags": {
- "name": "Elektra",
- "shop": "electronics"
- },
- "name": "Elektra",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Elgiganten": {
- "tags": {
- "name": "Elgiganten",
- "shop": "electronics"
- },
- "name": "Elgiganten",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Euronics": {
- "tags": {
- "name": "Euronics",
- "shop": "electronics"
- },
- "name": "Euronics",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Expert": {
- "tags": {
- "name": "Expert",
- "shop": "electronics"
- },
- "name": "Expert",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Hartlauer": {
- "tags": {
- "name": "Hartlauer",
- "shop": "electronics"
- },
- "name": "Hartlauer",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Interdiscount": {
- "tags": {
- "name": "Interdiscount",
- "shop": "electronics"
- },
- "name": "Interdiscount",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/La Curacao": {
- "tags": {
- "name": "La Curacao",
- "shop": "electronics"
- },
- "name": "La Curacao",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Maplin": {
- "tags": {
- "name": "Maplin",
- "shop": "electronics"
- },
- "name": "Maplin",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Media Expert": {
- "tags": {
- "name": "Media Expert",
- "shop": "electronics"
- },
- "name": "Media Expert",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Media Markt": {
- "tags": {
- "name": "Media Markt",
- "shop": "electronics"
- },
- "name": "Media Markt",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Musimundo": {
- "tags": {
- "name": "Musimundo",
- "shop": "electronics"
- },
- "name": "Musimundo",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Neonet": {
- "tags": {
- "name": "Neonet",
- "shop": "electronics"
- },
- "name": "Neonet",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/RTV Euro AGD": {
- "tags": {
- "name": "RTV Euro AGD",
- "shop": "electronics"
- },
- "name": "RTV Euro AGD",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Radio Shack": {
- "tags": {
- "name": "Radio Shack",
- "shop": "electronics"
- },
- "name": "Radio Shack",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Rogers": {
- "tags": {
- "name": "Rogers",
- "shop": "electronics"
- },
- "name": "Rogers",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Samsung": {
- "tags": {
- "name": "Samsung",
- "shop": "electronics"
- },
- "name": "Samsung",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Saturn": {
- "tags": {
- "name": "Saturn",
- "shop": "electronics"
- },
- "name": "Saturn",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Sony": {
- "tags": {
- "name": "Sony",
- "shop": "electronics"
- },
- "name": "Sony",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/The Source": {
- "tags": {
- "name": "The Source",
- "shop": "electronics"
- },
- "name": "The Source",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Unieuro": {
- "tags": {
- "name": "Unieuro",
- "shop": "electronics"
- },
- "name": "Unieuro",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/М.Видео": {
- "tags": {
- "name": "М.Видео",
- "shop": "electronics"
- },
- "name": "М.Видео",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Фокстрот": {
- "tags": {
- "name": "Фокстрот",
- "shop": "electronics"
- },
- "name": "Фокстрот",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Эксперт": {
- "tags": {
- "name": "Эксперт",
- "shop": "electronics"
- },
- "name": "Эксперт",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/Эльдорадо": {
- "tags": {
- "name": "Эльдорадо",
- "shop": "electronics"
- },
- "name": "Эльдорадо",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/エディオン": {
- "tags": {
- "name": "エディオン",
- "shop": "electronics"
- },
- "name": "エディオン",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/ケーズデンキ": {
- "tags": {
- "name": "ケーズデンキ",
- "shop": "electronics"
- },
- "name": "ケーズデンキ",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/コジマ": {
- "tags": {
- "name": "コジマ",
- "shop": "electronics"
- },
- "name": "コジマ",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/ヤマダ電機": {
- "tags": {
- "name": "ヤマダ電機",
- "shop": "electronics"
- },
- "name": "ヤマダ電機",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/全國電子": {
- "tags": {
- "name": "全國電子",
- "shop": "electronics"
- },
- "name": "全國電子",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/electronics/燦坤3C": {
- "tags": {
- "name": "燦坤3C",
- "shop": "electronics"
- },
- "name": "燦坤3C",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/erotic/Orion": {
- "tags": {
- "name": "Orion",
- "shop": "erotic"
- },
- "name": "Orion",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/fabric/Ткани": {
- "tags": {
- "name": "Ткани",
- "shop": "fabric"
- },
- "name": "Ткани",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/farm/Hofladen": {
- "tags": {
- "name": "Hofladen",
- "shop": "farm"
- },
- "name": "Hofladen",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/florist/Blume 2000": {
- "tags": {
- "name": "Blume 2000",
- "shop": "florist"
- },
- "name": "Blume 2000",
- "icon": "maki-florist",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/florist/Blumen Risse": {
- "tags": {
- "name": "Blumen Risse",
- "shop": "florist"
- },
- "name": "Blumen Risse",
- "icon": "maki-florist",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/florist/Fleuriste": {
- "tags": {
- "name": "Fleuriste",
- "shop": "florist"
- },
- "name": "Fleuriste",
- "icon": "maki-florist",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/florist/Interflora": {
- "tags": {
- "name": "Interflora",
- "shop": "florist"
- },
- "name": "Interflora",
- "icon": "maki-florist",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/florist/Monceau Fleurs": {
- "tags": {
- "name": "Monceau Fleurs",
- "shop": "florist"
- },
- "name": "Monceau Fleurs",
- "icon": "maki-florist",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/florist/Virágbolt": {
- "tags": {
- "name": "Virágbolt",
- "shop": "florist"
- },
- "name": "Virágbolt",
- "icon": "maki-florist",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/florist/Квіти": {
- "tags": {
- "name": "Квіти",
- "shop": "florist"
- },
- "name": "Квіти",
- "icon": "maki-florist",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/florist/Цветочный магазин": {
- "tags": {
- "name": "Цветочный магазин",
- "shop": "florist"
- },
- "name": "Цветочный магазин",
- "icon": "maki-florist",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/florist/Цветы": {
- "tags": {
- "name": "Цветы",
- "shop": "florist"
- },
- "name": "Цветы",
- "icon": "maki-florist",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/frame/rumah penduduk": {
- "tags": {
- "name": "rumah penduduk",
- "shop": "frame"
- },
- "name": "rumah penduduk",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/funeral_directors/The Co-operative Funeralcare": {
- "tags": {
- "name": "The Co-operative Funeralcare",
- "shop": "funeral_directors"
- },
- "name": "The Co-operative Funeralcare",
- "icon": "maki-cemetery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "shop/funeral_directors/Ритуальные услуги": {
- "tags": {
- "name": "Ритуальные услуги",
- "shop": "funeral_directors"
- },
- "name": "Ритуальные услуги",
- "icon": "maki-cemetery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "religion",
- "denomination"
- ],
- "suggestion": true
- },
- "shop/furniture/Aaron's": {
- "tags": {
- "name": "Aaron's",
- "shop": "furniture"
- },
- "name": "Aaron's",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/furniture/Black Red White": {
- "tags": {
- "name": "Black Red White",
- "shop": "furniture"
- },
- "name": "Black Red White",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/furniture/Bodzio": {
- "tags": {
- "name": "Bodzio",
- "shop": "furniture"
- },
- "name": "Bodzio",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/furniture/But": {
- "tags": {
- "name": "But",
- "shop": "furniture"
- },
- "name": "But",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/furniture/Conforama": {
- "tags": {
- "name": "Conforama",
- "shop": "furniture"
- },
- "name": "Conforama",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/furniture/DFS": {
- "tags": {
- "name": "DFS",
- "shop": "furniture"
- },
- "name": "DFS",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/furniture/Dänisches Bettenlager": {
- "tags": {
- "name": "Dänisches Bettenlager",
- "shop": "furniture"
- },
- "name": "Dänisches Bettenlager",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/furniture/Fly": {
- "tags": {
- "name": "Fly",
- "shop": "furniture"
- },
- "name": "Fly",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/furniture/Harveys": {
- "tags": {
- "name": "Harveys",
- "shop": "furniture"
- },
- "name": "Harveys",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/furniture/IKEA": {
- "tags": {
- "name": "IKEA",
- "shop": "furniture"
- },
- "name": "IKEA",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/furniture/JYSK": {
- "tags": {
- "name": "JYSK",
- "shop": "furniture"
- },
- "name": "JYSK",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/furniture/Kwantum": {
- "tags": {
- "name": "Kwantum",
- "shop": "furniture"
- },
- "name": "Kwantum",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/furniture/Leen Bakker": {
- "tags": {
- "name": "Leen Bakker",
- "shop": "furniture"
- },
- "name": "Leen Bakker",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/furniture/Pier 1 Imports": {
- "tags": {
- "name": "Pier 1 Imports",
- "shop": "furniture"
- },
- "name": "Pier 1 Imports",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/furniture/Roller": {
- "tags": {
- "name": "Roller",
- "shop": "furniture"
- },
- "name": "Roller",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/furniture/The Brick": {
- "tags": {
- "name": "The Brick",
- "shop": "furniture"
- },
- "name": "The Brick",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/furniture/Меблі": {
- "tags": {
- "name": "Меблі",
- "shop": "furniture"
- },
- "name": "Меблі",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/furniture/ニトリ": {
- "tags": {
- "name": "ニトリ",
- "shop": "furniture"
- },
- "name": "ニトリ",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/garden_centre/Dehner": {
- "tags": {
- "name": "Dehner",
- "shop": "garden_centre"
- },
- "name": "Dehner",
- "icon": "maki-garden-center",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/garden_centre/Gamm Vert": {
- "tags": {
- "name": "Gamm Vert",
- "shop": "garden_centre"
- },
- "name": "Gamm Vert",
- "icon": "maki-garden-center",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/garden_centre/Jardiland": {
- "tags": {
- "name": "Jardiland",
- "shop": "garden_centre"
- },
- "name": "Jardiland",
- "icon": "maki-garden-center",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/garden_centre/Point Vert": {
- "tags": {
- "name": "Point Vert",
- "shop": "garden_centre"
- },
- "name": "Point Vert",
- "icon": "maki-garden-center",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/garden_centre/Welkoop": {
- "tags": {
- "name": "Welkoop",
- "shop": "garden_centre"
- },
- "name": "Welkoop",
- "icon": "maki-garden-center",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/garden_centre/Семена": {
- "tags": {
- "name": "Семена",
- "shop": "garden_centre"
- },
- "name": "Семена",
- "icon": "maki-garden-center",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/gift/Card Factory": {
- "tags": {
- "name": "Card Factory",
- "shop": "gift"
- },
- "name": "Card Factory",
- "icon": "maki-gift",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/gift/Hallmark": {
- "tags": {
- "name": "Hallmark",
- "shop": "gift"
- },
- "name": "Hallmark",
- "icon": "maki-gift",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/gift/Подарки": {
- "tags": {
- "name": "Подарки",
- "shop": "gift"
- },
- "name": "Подарки",
- "icon": "maki-gift",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/greengrocer/Frutería": {
- "tags": {
- "name": "Frutería",
- "shop": "greengrocer"
- },
- "name": "Frutería",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/greengrocer/Овощи и фрукты": {
- "tags": {
- "name": "Овощи и фрукты",
- "shop": "greengrocer"
- },
- "name": "Овощи и фрукты",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Berber": {
- "tags": {
- "name": "Berber",
- "shop": "hairdresser"
- },
- "name": "Berber",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Cost Cutters": {
- "tags": {
- "name": "Cost Cutters",
- "shop": "hairdresser"
- },
- "name": "Cost Cutters",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Fantastic Sams": {
- "tags": {
- "name": "Fantastic Sams",
- "shop": "hairdresser"
- },
- "name": "Fantastic Sams",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Figaro": {
- "tags": {
- "name": "Figaro",
- "shop": "hairdresser"
- },
- "name": "Figaro",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/First Choice Haircutters": {
- "tags": {
- "name": "First Choice Haircutters",
- "shop": "hairdresser"
- },
- "name": "First Choice Haircutters",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Franck Provost": {
- "tags": {
- "name": "Franck Provost",
- "shop": "hairdresser"
- },
- "name": "Franck Provost",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Frizerie": {
- "tags": {
- "name": "Frizerie",
- "shop": "hairdresser"
- },
- "name": "Frizerie",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Great Clips": {
- "tags": {
- "name": "Great Clips",
- "shop": "hairdresser"
- },
- "name": "Great Clips",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Haarmonie": {
- "tags": {
- "name": "Haarmonie",
- "shop": "hairdresser"
- },
- "name": "Haarmonie",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Haarscharf": {
- "tags": {
- "name": "Haarscharf",
- "shop": "hairdresser"
- },
- "name": "Haarscharf",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Hair Cuttery": {
- "tags": {
- "name": "Hair Cuttery",
- "shop": "hairdresser"
- },
- "name": "Hair Cuttery",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Hairkiller": {
- "tags": {
- "name": "Hairkiller",
- "shop": "hairdresser"
- },
- "name": "Hairkiller",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Jean Louis David": {
- "tags": {
- "name": "Jean Louis David",
- "shop": "hairdresser"
- },
- "name": "Jean Louis David",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Jean-Louis David": {
- "tags": {
- "name": "Jean-Louis David",
- "shop": "hairdresser"
- },
- "name": "Jean-Louis David",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Klier": {
- "tags": {
- "name": "Klier",
- "shop": "hairdresser"
- },
- "name": "Klier",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Klipp": {
- "tags": {
- "name": "Klipp",
- "shop": "hairdresser"
- },
- "name": "Klipp",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Le Salon": {
- "tags": {
- "name": "Le Salon",
- "shop": "hairdresser"
- },
- "name": "Le Salon",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Marco Aldany": {
- "tags": {
- "name": "Marco Aldany",
- "shop": "hairdresser"
- },
- "name": "Marco Aldany",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Peluquería": {
- "tags": {
- "name": "Peluquería",
- "shop": "hairdresser"
- },
- "name": "Peluquería",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Salon fryzjerski": {
- "tags": {
- "name": "Salon fryzjerski",
- "shop": "hairdresser"
- },
- "name": "Salon fryzjerski",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Sport Clips": {
- "tags": {
- "name": "Sport Clips",
- "shop": "hairdresser"
- },
- "name": "Sport Clips",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Super Cuts": {
- "tags": {
- "name": "Super Cuts",
- "shop": "hairdresser"
- },
- "name": "Super Cuts",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Supercuts": {
- "tags": {
- "name": "Supercuts",
- "shop": "hairdresser"
- },
- "name": "Supercuts",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Tchip": {
- "tags": {
- "name": "Tchip",
- "shop": "hairdresser"
- },
- "name": "Tchip",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/The Barber Shop": {
- "tags": {
- "name": "The Barber Shop",
- "shop": "hairdresser"
- },
- "name": "The Barber Shop",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Toni & Guy": {
- "tags": {
- "name": "Toni & Guy",
- "shop": "hairdresser"
- },
- "name": "Toni & Guy",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Top Hair": {
- "tags": {
- "name": "Top Hair",
- "shop": "hairdresser"
- },
- "name": "Top Hair",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Локон": {
- "tags": {
- "name": "Локон",
- "shop": "hairdresser"
- },
- "name": "Локон",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Парикмахерская": {
- "tags": {
- "name": "Парикмахерская",
- "shop": "hairdresser"
- },
- "name": "Парикмахерская",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Перукарня": {
- "tags": {
- "name": "Перукарня",
- "shop": "hairdresser"
- },
- "name": "Перукарня",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Салон красоты": {
- "tags": {
- "name": "Салон красоты",
- "shop": "hairdresser"
- },
- "name": "Салон красоты",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Стиль": {
- "tags": {
- "name": "Стиль",
- "shop": "hairdresser"
- },
- "name": "Стиль",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/Шарм": {
- "tags": {
- "name": "Шарм",
- "shop": "hairdresser"
- },
- "name": "Шарм",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hairdresser/حلاق": {
- "tags": {
- "name": "حلاق",
- "shop": "hairdresser"
- },
- "name": "حلاق",
- "icon": "maki-hairdresser",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hardware/1000 мелочей": {
- "tags": {
- "name": "1000 мелочей",
- "shop": "hardware"
- },
- "name": "1000 мелочей",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hardware/Ferretería": {
- "tags": {
- "name": "Ferretería",
- "shop": "hardware"
- },
- "name": "Ferretería",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hardware/Harbor Freight Tools": {
- "tags": {
- "name": "Harbor Freight Tools",
- "shop": "hardware"
- },
- "name": "Harbor Freight Tools",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hardware/Quincaillerie": {
- "tags": {
- "name": "Quincaillerie",
- "shop": "hardware"
- },
- "name": "Quincaillerie",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hardware/True Value": {
- "tags": {
- "name": "True Value",
- "shop": "hardware"
- },
- "name": "True Value",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hardware/Würth": {
- "tags": {
- "name": "Würth",
- "shop": "hardware"
- },
- "name": "Würth",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hardware/Промтовары": {
- "tags": {
- "name": "Промтовары",
- "shop": "hardware"
- },
- "name": "Промтовары",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hardware/Сантехника": {
- "tags": {
- "name": "Сантехника",
- "shop": "hardware"
- },
- "name": "Сантехника",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hardware/Товары для дома": {
- "tags": {
- "name": "Товары для дома",
- "shop": "hardware"
- },
- "name": "Товары для дома",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hardware/Хозтовары": {
- "tags": {
- "name": "Хозтовары",
- "shop": "hardware"
- },
- "name": "Хозтовары",
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hearing_aids/Amplifon": {
- "tags": {
- "name": "Amplifon",
- "shop": "hearing_aids"
- },
- "name": "Amplifon",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hearing_aids/Geers": {
- "tags": {
- "name": "Geers",
- "shop": "hearing_aids"
- },
- "name": "Geers",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hearing_aids/Kind Hörgeräte": {
- "tags": {
- "name": "Kind Hörgeräte",
- "shop": "hearing_aids"
- },
- "name": "Kind Hörgeräte",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hearing_aids/amplifon": {
- "tags": {
- "name": "amplifon",
- "shop": "hearing_aids"
- },
- "name": "amplifon",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/hifi/Bang & Olufsen": {
- "tags": {
- "name": "Bang & Olufsen",
- "shop": "hifi"
- },
- "name": "Bang & Olufsen",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/houseware/Blokker": {
- "tags": {
- "name": "Blokker",
- "shop": "houseware"
- },
- "name": "Blokker",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/houseware/Marskramer": {
- "tags": {
- "name": "Marskramer",
- "shop": "houseware"
- },
- "name": "Marskramer",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/houseware/Xenos": {
- "tags": {
- "name": "Xenos",
- "shop": "houseware"
- },
- "name": "Xenos",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/interior_decoration/Casa": {
- "tags": {
- "name": "Casa",
- "shop": "interior_decoration"
- },
- "name": "Casa",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/interior_decoration/Depot": {
- "tags": {
- "name": "Depot",
- "shop": "interior_decoration"
- },
- "name": "Depot",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/jewelry/585": {
- "tags": {
- "name": "585",
- "shop": "jewelry"
- },
- "name": "585",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/jewelry/Apart": {
- "tags": {
- "name": "Apart",
- "shop": "jewelry"
- },
- "name": "Apart",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/jewelry/Bijou Brigitte": {
- "tags": {
- "name": "Bijou Brigitte",
- "shop": "jewelry"
- },
- "name": "Bijou Brigitte",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/jewelry/Christ": {
- "tags": {
- "name": "Christ",
- "shop": "jewelry"
- },
- "name": "Christ",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/jewelry/Claire's": {
- "tags": {
- "name": "Claire's",
- "shop": "jewelry"
- },
- "name": "Claire's",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/jewelry/Ernest Jones": {
- "tags": {
- "name": "Ernest Jones",
- "shop": "jewelry"
- },
- "name": "Ernest Jones",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/jewelry/H Samuel": {
- "tags": {
- "name": "H Samuel",
- "shop": "jewelry"
- },
- "name": "H Samuel",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/jewelry/James Avery Jewelry": {
- "tags": {
- "name": "James Avery Jewelry",
- "shop": "jewelry"
- },
- "name": "James Avery Jewelry",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/jewelry/Julien d'Orcel": {
- "tags": {
- "name": "Julien d'Orcel",
- "shop": "jewelry"
- },
- "name": "Julien d'Orcel",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/jewelry/Kay Jewelers": {
- "tags": {
- "name": "Kay Jewelers",
- "shop": "jewelry"
- },
- "name": "Kay Jewelers",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/jewelry/Pandora": {
- "tags": {
- "name": "Pandora",
- "shop": "jewelry"
- },
- "name": "Pandora",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/jewelry/Swarovski": {
- "tags": {
- "name": "Swarovski",
- "shop": "jewelry"
- },
- "name": "Swarovski",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/jewelry/Адамас": {
- "tags": {
- "name": "Адамас",
- "shop": "jewelry"
- },
- "name": "Адамас",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/jewelry/Золото": {
- "tags": {
- "name": "Золото",
- "shop": "jewelry"
- },
- "name": "Золото",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/kiosk/KIOS": {
- "tags": {
- "name": "KIOS",
- "shop": "kiosk"
- },
- "name": "KIOS",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/kiosk/Kiosko": {
- "tags": {
- "name": "Kiosko",
- "shop": "kiosk"
- },
- "name": "Kiosko",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/kiosk/Kiosque": {
- "tags": {
- "name": "Kiosque",
- "shop": "kiosk"
- },
- "name": "Kiosque",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/kiosk/Kolporter": {
- "tags": {
- "name": "Kolporter",
- "shop": "kiosk"
- },
- "name": "Kolporter",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/kiosk/Lietuvos spauda": {
- "tags": {
- "name": "Lietuvos spauda",
- "shop": "kiosk"
- },
- "name": "Lietuvos spauda",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/kiosk/Narvesen": {
- "tags": {
- "name": "Narvesen",
- "shop": "kiosk"
- },
- "name": "Narvesen",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/kiosk/Pressbyrån": {
- "tags": {
- "name": "Pressbyrån",
- "shop": "kiosk"
- },
- "name": "Pressbyrån",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/kiosk/Pulpería": {
- "tags": {
- "name": "Pulpería",
- "shop": "kiosk"
- },
- "name": "Pulpería",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/kiosk/R-Kioski": {
- "tags": {
- "name": "R-Kioski",
- "shop": "kiosk"
- },
- "name": "R-Kioski",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/kiosk/Ruch": {
- "tags": {
- "name": "Ruch",
- "shop": "kiosk"
- },
- "name": "Ruch",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/kiosk/Tabak Trafik": {
- "tags": {
- "name": "Tabak Trafik",
- "shop": "kiosk"
- },
- "name": "Tabak Trafik",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/kiosk/Tisak": {
- "tags": {
- "name": "Tisak",
- "shop": "kiosk"
- },
- "name": "Tisak",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/kiosk/Trafik": {
- "tags": {
- "name": "Trafik",
- "shop": "kiosk"
- },
- "name": "Trafik",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/kiosk/Trafika": {
- "tags": {
- "name": "Trafika",
- "shop": "kiosk"
- },
- "name": "Trafika",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/kiosk/Trinkhalle": {
- "tags": {
- "name": "Trinkhalle",
- "shop": "kiosk"
- },
- "name": "Trinkhalle",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/kiosk/Белсоюзпечать": {
- "tags": {
- "name": "Белсоюзпечать",
- "shop": "kiosk"
- },
- "name": "Белсоюзпечать",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/kiosk/Киоск": {
- "tags": {
- "name": "Киоск",
- "shop": "kiosk"
- },
- "name": "Киоск",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/kiosk/მარკეტი (Market)": {
- "tags": {
- "name": "მარკეტი (Market)",
- "shop": "kiosk"
- },
- "name": "მარკეტი (Market)",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/kitchen/Cuisinella": {
- "tags": {
- "name": "Cuisinella",
- "shop": "kitchen"
- },
- "name": "Cuisinella",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/kitchen/Home Utensils": {
- "tags": {
- "name": "Home Utensils",
- "shop": "kitchen"
- },
- "name": "Home Utensils",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/laundry/Launderette": {
- "tags": {
- "name": "Launderette",
- "shop": "laundry"
- },
- "name": "Launderette",
- "icon": "maki-laundry",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/laundry/Lavandería": {
- "tags": {
- "name": "Lavandería",
- "shop": "laundry"
- },
- "name": "Lavandería",
- "icon": "maki-laundry",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/laundry/コインランドリー": {
- "tags": {
- "name": "コインランドリー",
- "shop": "laundry"
- },
- "name": "コインランドリー",
- "icon": "maki-laundry",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/lottery/Loteria de la Provincia": {
- "tags": {
- "name": "Loteria de la Provincia",
- "shop": "lottery"
- },
- "name": "Loteria de la Provincia",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/lottery/Lotería Nacional": {
- "tags": {
- "name": "Lotería Nacional",
- "shop": "lottery"
- },
- "name": "Lotería Nacional",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/lottery/Lotería de la Provincia": {
- "tags": {
- "name": "Lotería de la Provincia",
- "shop": "lottery"
- },
- "name": "Lotería de la Provincia",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/lottery/Lotto": {
- "tags": {
- "name": "Lotto",
- "shop": "lottery"
- },
- "name": "Lotto",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/lottery/Lottózó": {
- "tags": {
- "name": "Lottózó",
- "shop": "lottery"
- },
- "name": "Lottózó",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/lottery/ONCE": {
- "tags": {
- "name": "ONCE",
- "shop": "lottery"
- },
- "name": "ONCE",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mall/Торговый центр": {
- "tags": {
- "name": "Торговый центр",
- "shop": "mall"
- },
- "name": "Торговый центр",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "shop/massage/Massage Envy": {
- "tags": {
- "name": "Massage Envy",
- "shop": "massage"
- },
- "name": "Massage Envy",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/medical_supply/Pofam-Poznań": {
- "tags": {
- "name": "Pofam-Poznań",
- "shop": "medical_supply"
- },
- "name": "Pofam-Poznań",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/3 Store": {
- "tags": {
- "name": "3 Store",
- "shop": "mobile_phone"
- },
- "name": "3 Store",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/AT&T": {
- "tags": {
- "name": "AT&T",
- "shop": "mobile_phone"
- },
- "name": "AT&T",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Bell": {
- "tags": {
- "name": "Bell",
- "shop": "mobile_phone"
- },
- "name": "Bell",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Bitė": {
- "tags": {
- "name": "Bitė",
- "shop": "mobile_phone"
- },
- "name": "Bitė",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Boost Mobile": {
- "tags": {
- "name": "Boost Mobile",
- "shop": "mobile_phone"
- },
- "name": "Boost Mobile",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Carphone Warehouse": {
- "tags": {
- "name": "Carphone Warehouse",
- "shop": "mobile_phone"
- },
- "name": "Carphone Warehouse",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Claro": {
- "tags": {
- "name": "Claro",
- "shop": "mobile_phone"
- },
- "name": "Claro",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Cricket Wireless": {
- "tags": {
- "name": "Cricket Wireless",
- "shop": "mobile_phone"
- },
- "name": "Cricket Wireless",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Digicel": {
- "tags": {
- "name": "Digicel",
- "shop": "mobile_phone"
- },
- "name": "Digicel",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/EE": {
- "tags": {
- "name": "EE",
- "shop": "mobile_phone"
- },
- "name": "EE",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/MetroPCS": {
- "tags": {
- "name": "MetroPCS",
- "shop": "mobile_phone"
- },
- "name": "MetroPCS",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Movistar": {
- "tags": {
- "name": "Movistar",
- "shop": "mobile_phone"
- },
- "name": "Movistar",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/O2": {
- "tags": {
- "name": "O2",
- "shop": "mobile_phone"
- },
- "name": "O2",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Orange": {
- "tags": {
- "name": "Orange",
- "shop": "mobile_phone"
- },
- "name": "Orange",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Personal": {
- "tags": {
- "name": "Personal",
- "shop": "mobile_phone"
- },
- "name": "Personal",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Play": {
- "tags": {
- "name": "Play",
- "shop": "mobile_phone"
- },
- "name": "Play",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Plus": {
- "tags": {
- "name": "Plus",
- "shop": "mobile_phone"
- },
- "name": "Plus",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/SFR": {
- "tags": {
- "name": "SFR",
- "shop": "mobile_phone"
- },
- "name": "SFR",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Sprint": {
- "tags": {
- "name": "Sprint",
- "shop": "mobile_phone"
- },
- "name": "Sprint",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/T-Mobile": {
- "tags": {
- "name": "T-Mobile",
- "shop": "mobile_phone"
- },
- "name": "T-Mobile",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/TIM": {
- "tags": {
- "name": "TIM",
- "shop": "mobile_phone"
- },
- "name": "TIM",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Telcel": {
- "tags": {
- "name": "Telcel",
- "shop": "mobile_phone"
- },
- "name": "Telcel",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Tele2": {
- "tags": {
- "name": "Tele2",
- "shop": "mobile_phone"
- },
- "name": "Tele2",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Telekom": {
- "tags": {
- "name": "Telekom",
- "shop": "mobile_phone"
- },
- "name": "Telekom",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Telekom Shop": {
- "tags": {
- "name": "Telekom Shop",
- "shop": "mobile_phone"
- },
- "name": "Telekom Shop",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Telenor": {
- "tags": {
- "name": "Telenor",
- "shop": "mobile_phone"
- },
- "name": "Telenor",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Telus": {
- "tags": {
- "name": "Telus",
- "shop": "mobile_phone"
- },
- "name": "Telus",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/The Phone House": {
- "tags": {
- "name": "The Phone House",
- "shop": "mobile_phone"
- },
- "name": "The Phone House",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Three": {
- "tags": {
- "name": "Three",
- "shop": "mobile_phone"
- },
- "name": "Three",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Tim": {
- "tags": {
- "name": "Tim",
- "shop": "mobile_phone"
- },
- "name": "Tim",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Télécentre": {
- "tags": {
- "name": "Télécentre",
- "shop": "mobile_phone"
- },
- "name": "Télécentre",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Verizon": {
- "tags": {
- "name": "Verizon",
- "shop": "mobile_phone"
- },
- "name": "Verizon",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Verizon Wireless": {
- "tags": {
- "name": "Verizon Wireless",
- "shop": "mobile_phone"
- },
- "name": "Verizon Wireless",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Vodafone": {
- "tags": {
- "name": "Vodafone",
- "shop": "mobile_phone"
- },
- "name": "Vodafone",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Vodafone Shop": {
- "tags": {
- "name": "Vodafone Shop",
- "shop": "mobile_phone"
- },
- "name": "Vodafone Shop",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Wind": {
- "tags": {
- "name": "Wind",
- "shop": "mobile_phone"
- },
- "name": "Wind",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Yoigo": {
- "tags": {
- "name": "Yoigo",
- "shop": "mobile_phone"
- },
- "name": "Yoigo",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/au": {
- "tags": {
- "name": "au",
- "shop": "mobile_phone"
- },
- "name": "au",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/auショップ": {
- "tags": {
- "name": "auショップ",
- "shop": "mobile_phone"
- },
- "name": "auショップ",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/mobilcom debitel": {
- "tags": {
- "name": "mobilcom debitel",
- "shop": "mobile_phone"
- },
- "name": "mobilcom debitel",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Алло": {
- "tags": {
- "name": "Алло",
- "shop": "mobile_phone"
- },
- "name": "Алло",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Билайн": {
- "tags": {
- "name": "Билайн",
- "shop": "mobile_phone"
- },
- "name": "Билайн",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Евросеть": {
- "tags": {
- "name": "Евросеть",
- "shop": "mobile_phone"
- },
- "name": "Евросеть",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Київстар": {
- "tags": {
- "name": "Київстар",
- "shop": "mobile_phone"
- },
- "name": "Київстар",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/МТС": {
- "tags": {
- "name": "МТС",
- "shop": "mobile_phone"
- },
- "name": "МТС",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Мегафон": {
- "tags": {
- "name": "Мегафон",
- "shop": "mobile_phone"
- },
- "name": "Мегафон",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Связной": {
- "tags": {
- "name": "Связной",
- "shop": "mobile_phone"
- },
- "name": "Связной",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/Теле2": {
- "tags": {
- "name": "Теле2",
- "shop": "mobile_phone"
- },
- "name": "Теле2",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/ソフトバンクショップ": {
- "tags": {
- "name": "ソフトバンクショップ",
- "shop": "mobile_phone"
- },
- "name": "ソフトバンクショップ",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/mobile_phone/ドコモショップ": {
- "tags": {
- "name": "ドコモショップ",
- "shop": "mobile_phone"
- },
- "name": "ドコモショップ",
- "icon": "maki-mobile-phone",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/money_lender/Money Mart": {
- "tags": {
- "name": "Money Mart",
- "shop": "money_lender"
- },
- "name": "Money Mart",
- "icon": "maki-bank",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "currency_multi"
- ],
- "suggestion": true
- },
- "shop/motorcycle/Harley Davidson": {
- "tags": {
- "name": "Harley Davidson",
- "shop": "motorcycle"
- },
- "name": "Harley Davidson",
- "icon": "fas-motorcycle",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/motorcycle/Yamaha": {
- "tags": {
- "name": "Yamaha",
- "shop": "motorcycle"
- },
- "name": "Yamaha",
- "icon": "fas-motorcycle",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/music/HMV": {
- "tags": {
- "name": "HMV",
- "shop": "music"
- },
- "name": "HMV",
- "icon": "maki-music",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/musical_instrument/Guitar Center": {
- "tags": {
- "name": "Guitar Center",
- "shop": "musical_instrument"
- },
- "name": "Guitar Center",
- "icon": "maki-music",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/newsagent/Edicola": {
- "tags": {
- "name": "Edicola",
- "shop": "newsagent"
- },
- "name": "Edicola",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/newsagent/Maison de la Presse": {
- "tags": {
- "name": "Maison de la Presse",
- "shop": "newsagent"
- },
- "name": "Maison de la Presse",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/newsagent/Relay": {
- "tags": {
- "name": "Relay",
- "shop": "newsagent"
- },
- "name": "Relay",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/newsagent/Tabac Presse": {
- "tags": {
- "name": "Tabac Presse",
- "shop": "newsagent"
- },
- "name": "Tabac Presse",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/newsagent/WHSmith": {
- "tags": {
- "name": "WHSmith",
- "shop": "newsagent"
- },
- "name": "WHSmith",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/newsagent/Витебскоблсоюзпечать": {
- "tags": {
- "name": "Витебскоблсоюзпечать",
- "shop": "newsagent"
- },
- "name": "Витебскоблсоюзпечать",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/newsagent/Первая полоса": {
- "tags": {
- "name": "Первая полоса",
- "shop": "newsagent"
- },
- "name": "Первая полоса",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/newsagent/Печать": {
- "tags": {
- "name": "Печать",
- "shop": "newsagent"
- },
- "name": "Печать",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/newsagent/Роспечать": {
- "tags": {
- "name": "Роспечать",
- "shop": "newsagent"
- },
- "name": "Роспечать",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/newsagent/Союзпечать": {
- "tags": {
- "name": "Союзпечать",
- "shop": "newsagent"
- },
- "name": "Союзпечать",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/Alain Afflelou": {
- "tags": {
- "name": "Alain Afflelou",
- "shop": "optician"
- },
- "name": "Alain Afflelou",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/Apollo": {
- "tags": {
- "name": "Apollo",
- "shop": "optician"
- },
- "name": "Apollo",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/Atol": {
- "tags": {
- "name": "Atol",
- "shop": "optician"
- },
- "name": "Atol",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/Boots Opticians": {
- "tags": {
- "name": "Boots Opticians",
- "shop": "optician"
- },
- "name": "Boots Opticians",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/Fielmann": {
- "tags": {
- "name": "Fielmann",
- "shop": "optician"
- },
- "name": "Fielmann",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/General Óptica": {
- "tags": {
- "name": "General Óptica",
- "shop": "optician"
- },
- "name": "General Óptica",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/Grand Optical": {
- "tags": {
- "name": "Grand Optical",
- "shop": "optician"
- },
- "name": "Grand Optical",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/Générale d'Optique": {
- "tags": {
- "name": "Générale d'Optique",
- "shop": "optician"
- },
- "name": "Générale d'Optique",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/Hakim Optical": {
- "tags": {
- "name": "Hakim Optical",
- "shop": "optician"
- },
- "name": "Hakim Optical",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/Hans Anders": {
- "tags": {
- "name": "Hans Anders",
- "shop": "optician"
- },
- "name": "Hans Anders",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/Krys": {
- "tags": {
- "name": "Krys",
- "shop": "optician"
- },
- "name": "Krys",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/Les Opticiens Mutualistes": {
- "tags": {
- "name": "Les Opticiens Mutualistes",
- "shop": "optician"
- },
- "name": "Les Opticiens Mutualistes",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/Optic 2000": {
- "tags": {
- "name": "Optic 2000",
- "shop": "optician"
- },
- "name": "Optic 2000",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/Optical Center": {
- "tags": {
- "name": "Optical Center",
- "shop": "optician"
- },
- "name": "Optical Center",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/Pearle": {
- "tags": {
- "name": "Pearle",
- "shop": "optician"
- },
- "name": "Pearle",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/Pearle Vision": {
- "tags": {
- "name": "Pearle Vision",
- "shop": "optician"
- },
- "name": "Pearle Vision",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/Specsavers": {
- "tags": {
- "name": "Specsavers",
- "shop": "optician"
- },
- "name": "Specsavers",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/Sunglass Hut": {
- "tags": {
- "name": "Sunglass Hut",
- "shop": "optician"
- },
- "name": "Sunglass Hut",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/Synoptik": {
- "tags": {
- "name": "Synoptik",
- "shop": "optician"
- },
- "name": "Synoptik",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/Vision Express": {
- "tags": {
- "name": "Vision Express",
- "shop": "optician"
- },
- "name": "Vision Express",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/แว่นท็อปเจริญ": {
- "tags": {
- "name": "แว่นท็อปเจริญ",
- "shop": "optician"
- },
- "name": "แว่นท็อปเจริญ",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/メガネスーパー": {
- "tags": {
- "name": "メガネスーパー",
- "shop": "optician"
- },
- "name": "メガネスーパー",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/optician/眼鏡市場": {
- "tags": {
- "name": "眼鏡市場",
- "shop": "optician"
- },
- "name": "眼鏡市場",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/outdoor/Mountain Warehouse": {
- "tags": {
- "name": "Mountain Warehouse",
- "shop": "outdoor"
- },
- "name": "Mountain Warehouse",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/outdoor/REI": {
- "tags": {
- "name": "REI",
- "shop": "outdoor"
- },
- "name": "REI",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/outdoor/Рыболов": {
- "tags": {
- "name": "Рыболов",
- "shop": "outdoor"
- },
- "name": "Рыболов",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/paint/Benjamin Moore": {
- "tags": {
- "name": "Benjamin Moore",
- "shop": "paint"
- },
- "name": "Benjamin Moore",
- "icon": "maki-water",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/paint/Comex": {
- "tags": {
- "name": "Comex",
- "shop": "paint"
- },
- "name": "Comex",
- "icon": "maki-water",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/paint/Jotun": {
- "tags": {
- "name": "Jotun",
- "shop": "paint"
- },
- "name": "Jotun",
- "icon": "maki-water",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/paint/National Paints": {
- "tags": {
- "name": "National Paints",
- "shop": "paint"
- },
- "name": "National Paints",
- "icon": "maki-water",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/paint/Sherwin Williams": {
- "tags": {
- "name": "Sherwin Williams",
- "shop": "paint"
- },
- "name": "Sherwin Williams",
- "icon": "maki-water",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/paint/Sherwin-Williams Paints": {
- "tags": {
- "name": "Sherwin-Williams Paints",
- "shop": "paint"
- },
- "name": "Sherwin-Williams Paints",
- "icon": "maki-water",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/pawnbroker/Cash Converters": {
- "tags": {
- "name": "Cash Converters",
- "shop": "pawnbroker"
- },
- "name": "Cash Converters",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/pawnbroker/Lombard": {
- "tags": {
- "name": "Lombard",
- "shop": "pawnbroker"
- },
- "name": "Lombard",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/pawnbroker/Palawan Pawnshop": {
- "tags": {
- "name": "Palawan Pawnshop",
- "shop": "pawnbroker"
- },
- "name": "Palawan Pawnshop",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/pet/Das Futterhaus": {
- "tags": {
- "name": "Das Futterhaus",
- "shop": "pet"
- },
- "name": "Das Futterhaus",
- "icon": "maki-dog-park",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/pet/Fressnapf": {
- "tags": {
- "name": "Fressnapf",
- "shop": "pet"
- },
- "name": "Fressnapf",
- "icon": "maki-dog-park",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/pet/Global Pet Foods": {
- "tags": {
- "name": "Global Pet Foods",
- "shop": "pet"
- },
- "name": "Global Pet Foods",
- "icon": "maki-dog-park",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/pet/Maxi Zoo": {
- "tags": {
- "name": "Maxi Zoo",
- "shop": "pet"
- },
- "name": "Maxi Zoo",
- "icon": "maki-dog-park",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/pet/Pet Valu": {
- "tags": {
- "name": "Pet Valu",
- "shop": "pet"
- },
- "name": "Pet Valu",
- "icon": "maki-dog-park",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/pet/PetSmart": {
- "tags": {
- "name": "PetSmart",
- "shop": "pet"
- },
- "name": "PetSmart",
- "icon": "maki-dog-park",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/pet/Petco": {
- "tags": {
- "name": "Petco",
- "shop": "pet"
- },
- "name": "Petco",
- "icon": "maki-dog-park",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/pet/Pets at Home": {
- "tags": {
- "name": "Pets at Home",
- "shop": "pet"
- },
- "name": "Pets at Home",
- "icon": "maki-dog-park",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/pet/Бетховен": {
- "tags": {
- "name": "Бетховен",
- "shop": "pet"
- },
- "name": "Бетховен",
- "icon": "maki-dog-park",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/pet/Зоотовары": {
- "tags": {
- "name": "Зоотовары",
- "shop": "pet"
- },
- "name": "Зоотовары",
- "icon": "maki-dog-park",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/pet/Четыре лапы": {
- "tags": {
- "name": "Четыре лапы",
- "shop": "pet"
- },
- "name": "Четыре лапы",
- "icon": "maki-dog-park",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/second_hand/Goodwill": {
- "tags": {
- "name": "Goodwill",
- "shop": "second_hand"
- },
- "name": "Goodwill",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "second_hand",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/second_hand/Value Village": {
- "tags": {
- "name": "Value Village",
- "shop": "second_hand"
- },
- "name": "Value Village",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "second_hand",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Aldo": {
- "tags": {
- "name": "Aldo",
- "shop": "shoes"
- },
- "name": "Aldo",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Bata": {
- "tags": {
- "name": "Bata",
- "shop": "shoes"
- },
- "name": "Bata",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Besson Chaussures": {
- "tags": {
- "name": "Besson Chaussures",
- "shop": "shoes"
- },
- "name": "Besson Chaussures",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Brantano": {
- "tags": {
- "name": "Brantano",
- "shop": "shoes"
- },
- "name": "Brantano",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/CCC": {
- "tags": {
- "name": "CCC",
- "shop": "shoes"
- },
- "name": "CCC",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Camper": {
- "tags": {
- "name": "Camper",
- "shop": "shoes"
- },
- "name": "Camper",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Chaussea": {
- "tags": {
- "name": "Chaussea",
- "shop": "shoes"
- },
- "name": "Chaussea",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Clarks": {
- "tags": {
- "name": "Clarks",
- "shop": "shoes"
- },
- "name": "Clarks",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Converse": {
- "tags": {
- "name": "Converse",
- "shop": "shoes"
- },
- "name": "Converse",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Crocs": {
- "tags": {
- "name": "Crocs",
- "shop": "shoes"
- },
- "name": "Crocs",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/DSW": {
- "tags": {
- "name": "DSW",
- "shop": "shoes"
- },
- "name": "DSW",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Deichmann": {
- "tags": {
- "name": "Deichmann",
- "shop": "shoes"
- },
- "name": "Deichmann",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Dosenbach": {
- "tags": {
- "name": "Dosenbach",
- "shop": "shoes"
- },
- "name": "Dosenbach",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Ecco": {
- "tags": {
- "name": "Ecco",
- "shop": "shoes"
- },
- "name": "Ecco",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Famous Footwear": {
- "tags": {
- "name": "Famous Footwear",
- "shop": "shoes"
- },
- "name": "Famous Footwear",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Foot Locker": {
- "tags": {
- "name": "Foot Locker",
- "shop": "shoes"
- },
- "name": "Foot Locker",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Geox": {
- "tags": {
- "name": "Geox",
- "shop": "shoes"
- },
- "name": "Geox",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Kari": {
- "tags": {
- "name": "Kari",
- "shop": "shoes"
- },
- "name": "Kari",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/La Halle aux Chaussures": {
- "tags": {
- "name": "La Halle aux Chaussures",
- "shop": "shoes"
- },
- "name": "La Halle aux Chaussures",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Mephisto": {
- "tags": {
- "name": "Mephisto",
- "shop": "shoes"
- },
- "name": "Mephisto",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Minelli": {
- "tags": {
- "name": "Minelli",
- "shop": "shoes"
- },
- "name": "Minelli",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/New Balance": {
- "tags": {
- "name": "New Balance",
- "shop": "shoes"
- },
- "name": "New Balance",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Payless": {
- "tags": {
- "name": "Payless",
- "shop": "shoes"
- },
- "name": "Payless",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Payless Shoe Source": {
- "tags": {
- "name": "Payless Shoe Source",
- "shop": "shoes"
- },
- "name": "Payless Shoe Source",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Payless ShoeSource": {
- "tags": {
- "name": "Payless ShoeSource",
- "shop": "shoes"
- },
- "name": "Payless ShoeSource",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Quick Schuh": {
- "tags": {
- "name": "Quick Schuh",
- "shop": "shoes"
- },
- "name": "Quick Schuh",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Rack Room Shoes": {
- "tags": {
- "name": "Rack Room Shoes",
- "shop": "shoes"
- },
- "name": "Rack Room Shoes",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Reno": {
- "tags": {
- "name": "Reno",
- "shop": "shoes"
- },
- "name": "Reno",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Rieker": {
- "tags": {
- "name": "Rieker",
- "shop": "shoes"
- },
- "name": "Rieker",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Salamander": {
- "tags": {
- "name": "Salamander",
- "shop": "shoes"
- },
- "name": "Salamander",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/San Marina": {
- "tags": {
- "name": "San Marina",
- "shop": "shoes"
- },
- "name": "San Marina",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Scapino": {
- "tags": {
- "name": "Scapino",
- "shop": "shoes"
- },
- "name": "Scapino",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Shoe Carnival": {
- "tags": {
- "name": "Shoe Carnival",
- "shop": "shoes"
- },
- "name": "Shoe Carnival",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Shoe Zone": {
- "tags": {
- "name": "Shoe Zone",
- "shop": "shoes"
- },
- "name": "Shoe Zone",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Siemes Schuhcenter": {
- "tags": {
- "name": "Siemes Schuhcenter",
- "shop": "shoes"
- },
- "name": "Siemes Schuhcenter",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Skechers": {
- "tags": {
- "name": "Skechers",
- "shop": "shoes"
- },
- "name": "Skechers",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Tamaris": {
- "tags": {
- "name": "Tamaris",
- "shop": "shoes"
- },
- "name": "Tamaris",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/vanHaren": {
- "tags": {
- "name": "vanHaren",
- "shop": "shoes"
- },
- "name": "vanHaren",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Éram": {
- "tags": {
- "name": "Éram",
- "shop": "shoes"
- },
- "name": "Éram",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Ремонт обуви": {
- "tags": {
- "name": "Ремонт обуви",
- "shop": "shoes"
- },
- "name": "Ремонт обуви",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/ЦентрОбувь": {
- "tags": {
- "name": "ЦентрОбувь",
- "shop": "shoes"
- },
- "name": "ЦентрОбувь",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/Юничел": {
- "tags": {
- "name": "Юничел",
- "shop": "shoes"
- },
- "name": "Юничел",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/shoes/東京靴流通センター": {
- "tags": {
- "name": "東京靴流通センター",
- "shop": "shoes"
- },
- "name": "東京靴流通センター",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/sports/Aktiesport": {
- "tags": {
- "name": "Aktiesport",
- "shop": "sports"
- },
- "name": "Aktiesport",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/sports/Big 5 Sporting Goods": {
- "tags": {
- "name": "Big 5 Sporting Goods",
- "shop": "sports"
- },
- "name": "Big 5 Sporting Goods",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/sports/Decathlon": {
- "tags": {
- "name": "Decathlon",
- "shop": "sports"
- },
- "name": "Decathlon",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/sports/Dick's Sporting Goods": {
- "tags": {
- "name": "Dick's Sporting Goods",
- "shop": "sports"
- },
- "name": "Dick's Sporting Goods",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/sports/Hervis": {
- "tags": {
- "name": "Hervis",
- "shop": "sports"
- },
- "name": "Hervis",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/sports/Intersport": {
- "tags": {
- "name": "Intersport",
- "shop": "sports"
- },
- "name": "Intersport",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/sports/JD Sports": {
- "tags": {
- "name": "JD Sports",
- "shop": "sports"
- },
- "name": "JD Sports",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/sports/Sport 2000": {
- "tags": {
- "name": "Sport 2000",
- "shop": "sports"
- },
- "name": "Sport 2000",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/sports/Sports Authority": {
- "tags": {
- "name": "Sports Authority",
- "shop": "sports"
- },
- "name": "Sports Authority",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/sports/Sports Direct": {
- "tags": {
- "name": "Sports Direct",
- "shop": "sports"
- },
- "name": "Sports Direct",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/sports/Спортмастер": {
- "tags": {
- "name": "Спортмастер",
- "shop": "sports"
- },
- "name": "Спортмастер",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/sports/Спорттовары": {
- "tags": {
- "name": "Спорттовары",
- "shop": "sports"
- },
- "name": "Спорттовары",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/stationery/Bureau Vallée": {
- "tags": {
- "name": "Bureau Vallée",
- "shop": "stationery"
- },
- "name": "Bureau Vallée",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/stationery/Libro": {
- "tags": {
- "name": "Libro",
- "shop": "stationery"
- },
- "name": "Libro",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/stationery/McPaper": {
- "tags": {
- "name": "McPaper",
- "shop": "stationery"
- },
- "name": "McPaper",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/stationery/Office Depot": {
- "tags": {
- "name": "Office Depot",
- "shop": "stationery"
- },
- "name": "Office Depot",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/stationery/Office Max": {
- "tags": {
- "name": "Office Max",
- "shop": "stationery"
- },
- "name": "Office Max",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/stationery/Officeworks": {
- "tags": {
- "name": "Officeworks",
- "shop": "stationery"
- },
- "name": "Officeworks",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/stationery/Pagro": {
- "tags": {
- "name": "Pagro",
- "shop": "stationery"
- },
- "name": "Pagro",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/stationery/Paperchase": {
- "tags": {
- "name": "Paperchase",
- "shop": "stationery"
- },
- "name": "Paperchase",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/stationery/Ryman": {
- "tags": {
- "name": "Ryman",
- "shop": "stationery"
- },
- "name": "Ryman",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/stationery/Staples": {
- "tags": {
- "name": "Staples",
- "shop": "stationery"
- },
- "name": "Staples",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/stationery/Канцтовары": {
- "tags": {
- "name": "Канцтовары",
- "shop": "stationery"
- },
- "name": "Канцтовары",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/A&O": {
- "tags": {
- "name": "A&O",
- "shop": "supermarket"
- },
- "name": "A&O",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/A101": {
- "tags": {
- "name": "A101",
- "shop": "supermarket"
- },
- "name": "A101",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/AD Delhaize": {
- "tags": {
- "name": "AD Delhaize",
- "shop": "supermarket"
- },
- "name": "AD Delhaize",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/ADEG": {
- "tags": {
- "name": "ADEG",
- "shop": "supermarket"
- },
- "name": "ADEG",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Ahorramás": {
- "tags": {
- "name": "Ahorramás",
- "shop": "supermarket"
- },
- "name": "Ahorramás",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Albert": {
- "tags": {
- "name": "Albert",
- "shop": "supermarket"
- },
- "name": "Albert",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Albert Heijn": {
- "tags": {
- "name": "Albert Heijn",
- "shop": "supermarket"
- },
- "name": "Albert Heijn",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Albertsons": {
- "tags": {
- "name": "Albertsons",
- "shop": "supermarket"
- },
- "name": "Albertsons",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Aldi": {
- "tags": {
- "name": "Aldi",
- "shop": "supermarket"
- },
- "name": "Aldi",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Aldi Nord": {
- "tags": {
- "name": "Aldi Nord",
- "shop": "supermarket"
- },
- "name": "Aldi Nord",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Aldi Süd": {
- "tags": {
- "name": "Aldi Süd",
- "shop": "supermarket"
- },
- "name": "Aldi Süd",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Alimerka": {
- "tags": {
- "name": "Alimerka",
- "shop": "supermarket"
- },
- "name": "Alimerka",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Alnatura": {
- "tags": {
- "name": "Alnatura",
- "shop": "supermarket"
- },
- "name": "Alnatura",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Asda": {
- "tags": {
- "name": "Asda",
- "shop": "supermarket"
- },
- "name": "Asda",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Atac": {
- "tags": {
- "name": "Atac",
- "shop": "supermarket"
- },
- "name": "Atac",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Atacadão": {
- "tags": {
- "name": "Atacadão",
- "shop": "supermarket"
- },
- "name": "Atacadão",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Auchan": {
- "tags": {
- "name": "Auchan",
- "shop": "supermarket"
- },
- "name": "Auchan",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/BM": {
- "tags": {
- "name": "BM",
- "shop": "supermarket"
- },
- "name": "BM",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Biedronka": {
- "tags": {
- "name": "Biedronka",
- "shop": "supermarket"
- },
- "name": "Biedronka",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Big C": {
- "tags": {
- "name": "Big C",
- "shop": "supermarket"
- },
- "name": "Big C",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Billa": {
- "tags": {
- "name": "Billa",
- "shop": "supermarket"
- },
- "name": "Billa",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Bim": {
- "tags": {
- "name": "Bim",
- "shop": "supermarket"
- },
- "name": "Bim",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Biocoop": {
- "tags": {
- "name": "Biocoop",
- "shop": "supermarket"
- },
- "name": "Biocoop",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Bodega Aurrera": {
- "tags": {
- "name": "Bodega Aurrera",
- "shop": "supermarket"
- },
- "name": "Bodega Aurrera",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Budgens": {
- "tags": {
- "name": "Budgens",
- "shop": "supermarket"
- },
- "name": "Budgens",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Bulk Barn": {
- "tags": {
- "name": "Bulk Barn",
- "shop": "supermarket"
- },
- "name": "Bulk Barn",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Bunnpris": {
- "tags": {
- "name": "Bunnpris",
- "shop": "supermarket"
- },
- "name": "Bunnpris",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/CONAD": {
- "tags": {
- "name": "CONAD",
- "shop": "supermarket"
- },
- "name": "CONAD",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/CRAI": {
- "tags": {
- "name": "CRAI",
- "shop": "supermarket"
- },
- "name": "CRAI",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Caprabo": {
- "tags": {
- "name": "Caprabo",
- "shop": "supermarket"
- },
- "name": "Caprabo",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Cargills Food City": {
- "tags": {
- "name": "Cargills Food City",
- "shop": "supermarket"
- },
- "name": "Cargills Food City",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Carrefour": {
- "tags": {
- "name": "Carrefour",
- "shop": "supermarket"
- },
- "name": "Carrefour",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Carrefour City": {
- "tags": {
- "name": "Carrefour City",
- "shop": "supermarket"
- },
- "name": "Carrefour City",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Carrefour Contact": {
- "tags": {
- "name": "Carrefour Contact",
- "shop": "supermarket"
- },
- "name": "Carrefour Contact",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Carrefour Express": {
- "tags": {
- "name": "Carrefour Express",
- "shop": "supermarket"
- },
- "name": "Carrefour Express",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Centre Commercial E. Leclerc": {
- "tags": {
- "name": "Centre Commercial E. Leclerc",
- "shop": "supermarket"
- },
- "name": "Centre Commercial E. Leclerc",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Checkers": {
- "tags": {
- "name": "Checkers",
- "shop": "supermarket"
- },
- "name": "Checkers",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Chedraui": {
- "tags": {
- "name": "Chedraui",
- "shop": "supermarket"
- },
- "name": "Chedraui",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Co-Op": {
- "tags": {
- "name": "Co-Op",
- "shop": "supermarket"
- },
- "name": "Co-Op",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Co-op": {
- "tags": {
- "name": "Co-op",
- "shop": "supermarket"
- },
- "name": "Co-op",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Co-operative": {
- "tags": {
- "name": "Co-operative",
- "shop": "supermarket"
- },
- "name": "Co-operative",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Coles": {
- "tags": {
- "name": "Coles",
- "shop": "supermarket"
- },
- "name": "Coles",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Colmado": {
- "tags": {
- "name": "Colmado",
- "shop": "supermarket"
- },
- "name": "Colmado",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Colruyt": {
- "tags": {
- "name": "Colruyt",
- "shop": "supermarket"
- },
- "name": "Colruyt",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Combi": {
- "tags": {
- "name": "Combi",
- "shop": "supermarket"
- },
- "name": "Combi",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Comercial Mexicana": {
- "tags": {
- "name": "Comercial Mexicana",
- "shop": "supermarket"
- },
- "name": "Comercial Mexicana",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Conad": {
- "tags": {
- "name": "Conad",
- "shop": "supermarket"
- },
- "name": "Conad",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Conad City": {
- "tags": {
- "name": "Conad City",
- "shop": "supermarket"
- },
- "name": "Conad City",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Condis": {
- "tags": {
- "name": "Condis",
- "shop": "supermarket"
- },
- "name": "Condis",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Consum": {
- "tags": {
- "name": "Consum",
- "shop": "supermarket"
- },
- "name": "Consum",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Continente": {
- "tags": {
- "name": "Continente",
- "shop": "supermarket"
- },
- "name": "Continente",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Coop": {
- "tags": {
- "name": "Coop",
- "shop": "supermarket"
- },
- "name": "Coop",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Coop Extra": {
- "tags": {
- "name": "Coop Extra",
- "shop": "supermarket"
- },
- "name": "Coop Extra",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Coop Konsum": {
- "tags": {
- "name": "Coop Konsum",
- "shop": "supermarket"
- },
- "name": "Coop Konsum",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Costco Gasoline": {
- "tags": {
- "name": "Costco Gasoline",
- "shop": "supermarket"
- },
- "name": "Costco Gasoline",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Coto": {
- "tags": {
- "name": "Coto",
- "shop": "supermarket"
- },
- "name": "Coto",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Countdown": {
- "tags": {
- "name": "Countdown",
- "shop": "supermarket"
- },
- "name": "Countdown",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Coviran": {
- "tags": {
- "name": "Coviran",
- "shop": "supermarket"
- },
- "name": "Coviran",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Covirán": {
- "tags": {
- "name": "Covirán",
- "shop": "supermarket"
- },
- "name": "Covirán",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Crai": {
- "tags": {
- "name": "Crai",
- "shop": "supermarket"
- },
- "name": "Crai",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Cub Foods": {
- "tags": {
- "name": "Cub Foods",
- "shop": "supermarket"
- },
- "name": "Cub Foods",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Dagli'Brugsen": {
- "tags": {
- "name": "Dagli'Brugsen",
- "shop": "supermarket"
- },
- "name": "Dagli'Brugsen",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Deen": {
- "tags": {
- "name": "Deen",
- "shop": "supermarket"
- },
- "name": "Deen",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Delhaize": {
- "tags": {
- "name": "Delhaize",
- "shop": "supermarket"
- },
- "name": "Delhaize",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Delikatesy Centrum": {
- "tags": {
- "name": "Delikatesy Centrum",
- "shop": "supermarket"
- },
- "name": "Delikatesy Centrum",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Denner": {
- "tags": {
- "name": "Denner",
- "shop": "supermarket"
- },
- "name": "Denner",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Despar": {
- "tags": {
- "name": "Despar",
- "shop": "supermarket"
- },
- "name": "Despar",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Despensa Familiar": {
- "tags": {
- "name": "Despensa Familiar",
- "shop": "supermarket"
- },
- "name": "Despensa Familiar",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Dia": {
- "tags": {
- "name": "Dia",
- "shop": "supermarket"
- },
- "name": "Dia",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Dia %": {
- "tags": {
- "name": "Dia %",
- "shop": "supermarket"
- },
- "name": "Dia %",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Dia Market": {
- "tags": {
- "name": "Dia Market",
- "shop": "supermarket"
- },
- "name": "Dia Market",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Dino": {
- "tags": {
- "name": "Dino",
- "shop": "supermarket"
- },
- "name": "Dino",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Dirk van den Broek": {
- "tags": {
- "name": "Dirk van den Broek",
- "shop": "supermarket"
- },
- "name": "Dirk van den Broek",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Disco": {
- "tags": {
- "name": "Disco",
- "shop": "supermarket"
- },
- "name": "Disco",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Diska": {
- "tags": {
- "name": "Diska",
- "shop": "supermarket"
- },
- "name": "Diska",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Dunnes Stores": {
- "tags": {
- "name": "Dunnes Stores",
- "shop": "supermarket"
- },
- "name": "Dunnes Stores",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/E-Center": {
- "tags": {
- "name": "E-Center",
- "shop": "supermarket"
- },
- "name": "E-Center",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/E. Leclerc": {
- "tags": {
- "name": "E. Leclerc",
- "shop": "supermarket"
- },
- "name": "E. Leclerc",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/E. Leclerc Drive": {
- "tags": {
- "name": "E. Leclerc Drive",
- "shop": "supermarket"
- },
- "name": "E. Leclerc Drive",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/EMTÉ": {
- "tags": {
- "name": "EMTÉ",
- "shop": "supermarket"
- },
- "name": "EMTÉ",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Edeka": {
- "tags": {
- "name": "Edeka",
- "shop": "supermarket"
- },
- "name": "Edeka",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Ekom": {
- "tags": {
- "name": "Ekom",
- "shop": "supermarket"
- },
- "name": "Ekom",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Ekono": {
- "tags": {
- "name": "Ekono",
- "shop": "supermarket"
- },
- "name": "Ekono",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/El Árbol": {
- "tags": {
- "name": "El Árbol",
- "shop": "supermarket"
- },
- "name": "El Árbol",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Eroski": {
- "tags": {
- "name": "Eroski",
- "shop": "supermarket"
- },
- "name": "Eroski",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Esselunga": {
- "tags": {
- "name": "Esselunga",
- "shop": "supermarket"
- },
- "name": "Esselunga",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/EuroSpin": {
- "tags": {
- "name": "EuroSpin",
- "shop": "supermarket"
- },
- "name": "EuroSpin",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Eurospar": {
- "tags": {
- "name": "Eurospar",
- "shop": "supermarket"
- },
- "name": "Eurospar",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Eurospin": {
- "tags": {
- "name": "Eurospin",
- "shop": "supermarket"
- },
- "name": "Eurospin",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Extra": {
- "tags": {
- "name": "Extra",
- "shop": "supermarket"
- },
- "name": "Extra",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Famiglia Cooperativa": {
- "tags": {
- "name": "Famiglia Cooperativa",
- "shop": "supermarket"
- },
- "name": "Famiglia Cooperativa",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Famila": {
- "tags": {
- "name": "Famila",
- "shop": "supermarket"
- },
- "name": "Famila",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Fareway": {
- "tags": {
- "name": "Fareway",
- "shop": "supermarket"
- },
- "name": "Fareway",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Farmfoods": {
- "tags": {
- "name": "Farmfoods",
- "shop": "supermarket"
- },
- "name": "Farmfoods",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Feneberg": {
- "tags": {
- "name": "Feneberg",
- "shop": "supermarket"
- },
- "name": "Feneberg",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Food Basics": {
- "tags": {
- "name": "Food Basics",
- "shop": "supermarket"
- },
- "name": "Food Basics",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Food Lion": {
- "tags": {
- "name": "Food Lion",
- "shop": "supermarket"
- },
- "name": "Food Lion",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Foodland": {
- "tags": {
- "name": "Foodland",
- "shop": "supermarket"
- },
- "name": "Foodland",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Foodworks": {
- "tags": {
- "name": "Foodworks",
- "shop": "supermarket"
- },
- "name": "Foodworks",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Franprix": {
- "tags": {
- "name": "Franprix",
- "shop": "supermarket"
- },
- "name": "Franprix",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Fred Meyer": {
- "tags": {
- "name": "Fred Meyer",
- "shop": "supermarket"
- },
- "name": "Fred Meyer",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Froiz": {
- "tags": {
- "name": "Froiz",
- "shop": "supermarket"
- },
- "name": "Froiz",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Føtex": {
- "tags": {
- "name": "Føtex",
- "shop": "supermarket"
- },
- "name": "Føtex",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/G20": {
- "tags": {
- "name": "G20",
- "shop": "supermarket"
- },
- "name": "G20",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Gadis": {
- "tags": {
- "name": "Gadis",
- "shop": "supermarket"
- },
- "name": "Gadis",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Giant": {
- "tags": {
- "name": "Giant",
- "shop": "supermarket"
- },
- "name": "Giant",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Giant Eagle": {
- "tags": {
- "name": "Giant Eagle",
- "shop": "supermarket"
- },
- "name": "Giant Eagle",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Grand Frais": {
- "tags": {
- "name": "Grand Frais",
- "shop": "supermarket"
- },
- "name": "Grand Frais",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Grocery Outlet": {
- "tags": {
- "name": "Grocery Outlet",
- "shop": "supermarket"
- },
- "name": "Grocery Outlet",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Géant Casino": {
- "tags": {
- "name": "Géant Casino",
- "shop": "supermarket"
- },
- "name": "Géant Casino",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/H-E-B": {
- "tags": {
- "name": "H-E-B",
- "shop": "supermarket"
- },
- "name": "H-E-B",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/HIT": {
- "tags": {
- "name": "HIT",
- "shop": "supermarket"
- },
- "name": "HIT",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Hannaford": {
- "tags": {
- "name": "Hannaford",
- "shop": "supermarket"
- },
- "name": "Hannaford",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Harris Teeter": {
- "tags": {
- "name": "Harris Teeter",
- "shop": "supermarket"
- },
- "name": "Harris Teeter",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Hemköp": {
- "tags": {
- "name": "Hemköp",
- "shop": "supermarket"
- },
- "name": "Hemköp",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Heron Foods": {
- "tags": {
- "name": "Heron Foods",
- "shop": "supermarket"
- },
- "name": "Heron Foods",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Hofer": {
- "tags": {
- "name": "Hofer",
- "shop": "supermarket"
- },
- "name": "Hofer",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Hoogvliet": {
- "tags": {
- "name": "Hoogvliet",
- "shop": "supermarket"
- },
- "name": "Hoogvliet",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Hy-Vee": {
- "tags": {
- "name": "Hy-Vee",
- "shop": "supermarket"
- },
- "name": "Hy-Vee",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/ICA": {
- "tags": {
- "name": "ICA",
- "shop": "supermarket"
- },
- "name": "ICA",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/ICA Kvantum": {
- "tags": {
- "name": "ICA Kvantum",
- "shop": "supermarket"
- },
- "name": "ICA Kvantum",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/IDEA": {
- "tags": {
- "name": "IDEA",
- "shop": "supermarket"
- },
- "name": "IDEA",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/IGA": {
- "tags": {
- "name": "IGA",
- "shop": "supermarket"
- },
- "name": "IGA",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Iceland": {
- "tags": {
- "name": "Iceland",
- "shop": "supermarket"
- },
- "name": "Iceland",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Intermarché": {
- "tags": {
- "name": "Intermarché",
- "shop": "supermarket"
- },
- "name": "Intermarché",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Intermarché Contact": {
- "tags": {
- "name": "Intermarché Contact",
- "shop": "supermarket"
- },
- "name": "Intermarché Contact",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Intermarché Super": {
- "tags": {
- "name": "Intermarché Super",
- "shop": "supermarket"
- },
- "name": "Intermarché Super",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Interspar": {
- "tags": {
- "name": "Interspar",
- "shop": "supermarket"
- },
- "name": "Interspar",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Irma": {
- "tags": {
- "name": "Irma",
- "shop": "supermarket"
- },
- "name": "Irma",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Jewel-Osco": {
- "tags": {
- "name": "Jewel-Osco",
- "shop": "supermarket"
- },
- "name": "Jewel-Osco",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Jumbo": {
- "tags": {
- "name": "Jumbo",
- "shop": "supermarket"
- },
- "name": "Jumbo",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/K+K": {
- "tags": {
- "name": "K+K",
- "shop": "supermarket"
- },
- "name": "K+K",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Kaufland": {
- "tags": {
- "name": "Kaufland",
- "shop": "supermarket"
- },
- "name": "Kaufland",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/King Soopers": {
- "tags": {
- "name": "King Soopers",
- "shop": "supermarket"
- },
- "name": "King Soopers",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Kiwi": {
- "tags": {
- "name": "Kiwi",
- "shop": "supermarket"
- },
- "name": "Kiwi",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Konsum": {
- "tags": {
- "name": "Konsum",
- "shop": "supermarket"
- },
- "name": "Konsum",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Konzum": {
- "tags": {
- "name": "Konzum",
- "shop": "supermarket"
- },
- "name": "Konzum",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Kroger": {
- "tags": {
- "name": "Kroger",
- "shop": "supermarket"
- },
- "name": "Kroger",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Kvickly": {
- "tags": {
- "name": "Kvickly",
- "shop": "supermarket"
- },
- "name": "Kvickly",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/La Vie Claire": {
- "tags": {
- "name": "La Vie Claire",
- "shop": "supermarket"
- },
- "name": "La Vie Claire",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Landi": {
- "tags": {
- "name": "Landi",
- "shop": "supermarket"
- },
- "name": "Landi",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Leader Price": {
- "tags": {
- "name": "Leader Price",
- "shop": "supermarket"
- },
- "name": "Leader Price",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Leclerc Drive": {
- "tags": {
- "name": "Leclerc Drive",
- "shop": "supermarket"
- },
- "name": "Leclerc Drive",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Lider": {
- "tags": {
- "name": "Lider",
- "shop": "supermarket"
- },
- "name": "Lider",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Lidl": {
- "tags": {
- "name": "Lidl",
- "shop": "supermarket"
- },
- "name": "Lidl",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Lupa": {
- "tags": {
- "name": "Lupa",
- "shop": "supermarket"
- },
- "name": "Lupa",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/MPREIS": {
- "tags": {
- "name": "MPREIS",
- "shop": "supermarket"
- },
- "name": "MPREIS",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Makro": {
- "tags": {
- "name": "Makro",
- "shop": "supermarket"
- },
- "name": "Makro",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Markant": {
- "tags": {
- "name": "Markant",
- "shop": "supermarket"
- },
- "name": "Markant",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Market Basket": {
- "tags": {
- "name": "Market Basket",
- "shop": "supermarket"
- },
- "name": "Market Basket",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Marktkauf": {
- "tags": {
- "name": "Marktkauf",
- "shop": "supermarket"
- },
- "name": "Marktkauf",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Match": {
- "tags": {
- "name": "Match",
- "shop": "supermarket"
- },
- "name": "Match",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Maxi": {
- "tags": {
- "name": "Maxi",
- "shop": "supermarket"
- },
- "name": "Maxi",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Maxi Dia": {
- "tags": {
- "name": "Maxi Dia",
- "shop": "supermarket"
- },
- "name": "Maxi Dia",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Maxima": {
- "tags": {
- "name": "Maxima",
- "shop": "supermarket"
- },
- "name": "Maxima",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Maxima X": {
- "tags": {
- "name": "Maxima X",
- "shop": "supermarket"
- },
- "name": "Maxima X",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Maxima XX": {
- "tags": {
- "name": "Maxima XX",
- "shop": "supermarket"
- },
- "name": "Maxima XX",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Mega Image": {
- "tags": {
- "name": "Mega Image",
- "shop": "supermarket"
- },
- "name": "Mega Image",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Mego": {
- "tags": {
- "name": "Mego",
- "shop": "supermarket"
- },
- "name": "Mego",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Meijer": {
- "tags": {
- "name": "Meijer",
- "shop": "supermarket"
- },
- "name": "Meijer",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Meny": {
- "tags": {
- "name": "Meny",
- "shop": "supermarket"
- },
- "name": "Meny",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Mercado Municipal": {
- "tags": {
- "name": "Mercado Municipal",
- "shop": "supermarket"
- },
- "name": "Mercado Municipal",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Mercado de Abastos": {
- "tags": {
- "name": "Mercado de Abastos",
- "shop": "supermarket"
- },
- "name": "Mercado de Abastos",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Mercadona": {
- "tags": {
- "name": "Mercadona",
- "shop": "supermarket"
- },
- "name": "Mercadona",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Mercator": {
- "tags": {
- "name": "Mercator",
- "shop": "supermarket"
- },
- "name": "Mercator",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Merkur": {
- "tags": {
- "name": "Merkur",
- "shop": "supermarket"
- },
- "name": "Merkur",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Metro": {
- "tags": {
- "name": "Metro",
- "shop": "supermarket"
- },
- "name": "Metro",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Migros": {
- "tags": {
- "name": "Migros",
- "shop": "supermarket"
- },
- "name": "Migros",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Mila": {
- "tags": {
- "name": "Mila",
- "shop": "supermarket"
- },
- "name": "Mila",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Minipreço": {
- "tags": {
- "name": "Minipreço",
- "shop": "supermarket"
- },
- "name": "Minipreço",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Mix Markt": {
- "tags": {
- "name": "Mix Markt",
- "shop": "supermarket"
- },
- "name": "Mix Markt",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Monoprix": {
- "tags": {
- "name": "Monoprix",
- "shop": "supermarket"
- },
- "name": "Monoprix",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/More": {
- "tags": {
- "name": "More",
- "shop": "supermarket"
- },
- "name": "More",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Morrisons": {
- "tags": {
- "name": "Morrisons",
- "shop": "supermarket"
- },
- "name": "Morrisons",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/NORMA": {
- "tags": {
- "name": "NORMA",
- "shop": "supermarket"
- },
- "name": "NORMA",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/NP": {
- "tags": {
- "name": "NP",
- "shop": "supermarket"
- },
- "name": "NP",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Nah & Frisch": {
- "tags": {
- "name": "Nah & Frisch",
- "shop": "supermarket"
- },
- "name": "Nah & Frisch",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Nahkauf": {
- "tags": {
- "name": "Nahkauf",
- "shop": "supermarket"
- },
- "name": "Nahkauf",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Netto": {
- "tags": {
- "name": "Netto",
- "shop": "supermarket"
- },
- "name": "Netto",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Netto Marken-Discount": {
- "tags": {
- "name": "Netto Marken-Discount",
- "shop": "supermarket"
- },
- "name": "Netto Marken-Discount",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/New World": {
- "tags": {
- "name": "New World",
- "shop": "supermarket"
- },
- "name": "New World",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/No Frills": {
- "tags": {
- "name": "No Frills",
- "shop": "supermarket"
- },
- "name": "No Frills",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Norfa XL": {
- "tags": {
- "name": "Norfa XL",
- "shop": "supermarket"
- },
- "name": "Norfa XL",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Norma": {
- "tags": {
- "name": "Norma",
- "shop": "supermarket"
- },
- "name": "Norma",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/PENNY": {
- "tags": {
- "name": "PENNY",
- "shop": "supermarket"
- },
- "name": "PENNY",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/PLUS": {
- "tags": {
- "name": "PLUS",
- "shop": "supermarket"
- },
- "name": "PLUS",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/POLOmarket": {
- "tags": {
- "name": "POLOmarket",
- "shop": "supermarket"
- },
- "name": "POLOmarket",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Palí": {
- "tags": {
- "name": "Palí",
- "shop": "supermarket"
- },
- "name": "Palí",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Pam": {
- "tags": {
- "name": "Pam",
- "shop": "supermarket"
- },
- "name": "Pam",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Penny": {
- "tags": {
- "name": "Penny",
- "shop": "supermarket"
- },
- "name": "Penny",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Penny Markt": {
- "tags": {
- "name": "Penny Markt",
- "shop": "supermarket"
- },
- "name": "Penny Markt",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Pick n Pay": {
- "tags": {
- "name": "Pick n Pay",
- "shop": "supermarket"
- },
- "name": "Pick n Pay",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Piggly Wiggly": {
- "tags": {
- "name": "Piggly Wiggly",
- "shop": "supermarket"
- },
- "name": "Piggly Wiggly",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Pingo Doce": {
- "tags": {
- "name": "Pingo Doce",
- "shop": "supermarket"
- },
- "name": "Pingo Doce",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Piotr i Paweł": {
- "tags": {
- "name": "Piotr i Paweł",
- "shop": "supermarket"
- },
- "name": "Piotr i Paweł",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Plaza Vea": {
- "tags": {
- "name": "Plaza Vea",
- "shop": "supermarket"
- },
- "name": "Plaza Vea",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Plodine": {
- "tags": {
- "name": "Plodine",
- "shop": "supermarket"
- },
- "name": "Plodine",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Poiesz": {
- "tags": {
- "name": "Poiesz",
- "shop": "supermarket"
- },
- "name": "Poiesz",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Price Chopper": {
- "tags": {
- "name": "Price Chopper",
- "shop": "supermarket"
- },
- "name": "Price Chopper",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Prix": {
- "tags": {
- "name": "Prix",
- "shop": "supermarket"
- },
- "name": "Prix",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Profi": {
- "tags": {
- "name": "Profi",
- "shop": "supermarket"
- },
- "name": "Profi",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Proxy Delhaize": {
- "tags": {
- "name": "Proxy Delhaize",
- "shop": "supermarket"
- },
- "name": "Proxy Delhaize",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Publix": {
- "tags": {
- "name": "Publix",
- "shop": "supermarket"
- },
- "name": "Publix",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Punto Simply": {
- "tags": {
- "name": "Punto Simply",
- "shop": "supermarket"
- },
- "name": "Punto Simply",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Puregold": {
- "tags": {
- "name": "Puregold",
- "shop": "supermarket"
- },
- "name": "Puregold",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Pão de Açúcar": {
- "tags": {
- "name": "Pão de Açúcar",
- "shop": "supermarket"
- },
- "name": "Pão de Açúcar",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/QFC": {
- "tags": {
- "name": "QFC",
- "shop": "supermarket"
- },
- "name": "QFC",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/REMA 1000": {
- "tags": {
- "name": "REMA 1000",
- "shop": "supermarket"
- },
- "name": "REMA 1000",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Ralphs": {
- "tags": {
- "name": "Ralphs",
- "shop": "supermarket"
- },
- "name": "Ralphs",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Real": {
- "tags": {
- "name": "Real",
- "shop": "supermarket"
- },
- "name": "Real",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Real Canadian Superstore": {
- "tags": {
- "name": "Real Canadian Superstore",
- "shop": "supermarket"
- },
- "name": "Real Canadian Superstore",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Reliance Fresh": {
- "tags": {
- "name": "Reliance Fresh",
- "shop": "supermarket"
- },
- "name": "Reliance Fresh",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Rema 1000": {
- "tags": {
- "name": "Rema 1000",
- "shop": "supermarket"
- },
- "name": "Rema 1000",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Rewe": {
- "tags": {
- "name": "Rewe",
- "shop": "supermarket"
- },
- "name": "Rewe",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Rewe City": {
- "tags": {
- "name": "Rewe City",
- "shop": "supermarket"
- },
- "name": "Rewe City",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Rimi": {
- "tags": {
- "name": "Rimi",
- "shop": "supermarket"
- },
- "name": "Rimi",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/S-Market": {
- "tags": {
- "name": "S-Market",
- "shop": "supermarket"
- },
- "name": "S-Market",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Safeway": {
- "tags": {
- "name": "Safeway",
- "shop": "supermarket"
- },
- "name": "Safeway",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Sainsbury's": {
- "tags": {
- "name": "Sainsbury's",
- "shop": "supermarket"
- },
- "name": "Sainsbury's",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Sainsbury's Local": {
- "tags": {
- "name": "Sainsbury's Local",
- "shop": "supermarket"
- },
- "name": "Sainsbury's Local",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Sam's Club": {
- "tags": {
- "name": "Sam's Club",
- "shop": "supermarket"
- },
- "name": "Sam's Club",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Santa Isabel": {
- "tags": {
- "name": "Santa Isabel",
- "shop": "supermarket"
- },
- "name": "Santa Isabel",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Save-A-Lot": {
- "tags": {
- "name": "Save-A-Lot",
- "shop": "supermarket"
- },
- "name": "Save-A-Lot",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/ShopRite": {
- "tags": {
- "name": "ShopRite",
- "shop": "supermarket"
- },
- "name": "ShopRite",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Shoprite": {
- "tags": {
- "name": "Shoprite",
- "shop": "supermarket"
- },
- "name": "Shoprite",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Sigma": {
- "tags": {
- "name": "Sigma",
- "shop": "supermarket"
- },
- "name": "Sigma",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Simply Market": {
- "tags": {
- "name": "Simply Market",
- "shop": "supermarket"
- },
- "name": "Simply Market",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Sky": {
- "tags": {
- "name": "Sky",
- "shop": "supermarket"
- },
- "name": "Sky",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Smith's": {
- "tags": {
- "name": "Smith's",
- "shop": "supermarket"
- },
- "name": "Smith's",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Sobeys": {
- "tags": {
- "name": "Sobeys",
- "shop": "supermarket"
- },
- "name": "Sobeys",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Soriana": {
- "tags": {
- "name": "Soriana",
- "shop": "supermarket"
- },
- "name": "Soriana",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Spar": {
- "tags": {
- "name": "Spar",
- "shop": "supermarket"
- },
- "name": "Spar",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Sprouts Farmers Market": {
- "tags": {
- "name": "Sprouts Farmers Market",
- "shop": "supermarket"
- },
- "name": "Sprouts Farmers Market",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Stokrotka": {
- "tags": {
- "name": "Stokrotka",
- "shop": "supermarket"
- },
- "name": "Stokrotka",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Stop & Shop": {
- "tags": {
- "name": "Stop & Shop",
- "shop": "supermarket"
- },
- "name": "Stop & Shop",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Super C": {
- "tags": {
- "name": "Super C",
- "shop": "supermarket"
- },
- "name": "Super C",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Super U": {
- "tags": {
- "name": "Super U",
- "shop": "supermarket"
- },
- "name": "Super U",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/SuperBrugsen": {
- "tags": {
- "name": "SuperBrugsen",
- "shop": "supermarket"
- },
- "name": "SuperBrugsen",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/SuperValu": {
- "tags": {
- "name": "SuperValu",
- "shop": "supermarket"
- },
- "name": "SuperValu",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Superama": {
- "tags": {
- "name": "Superama",
- "shop": "supermarket"
- },
- "name": "Superama",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Supersol": {
- "tags": {
- "name": "Supersol",
- "shop": "supermarket"
- },
- "name": "Supersol",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Superspar": {
- "tags": {
- "name": "Superspar",
- "shop": "supermarket"
- },
- "name": "Superspar",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Tegut": {
- "tags": {
- "name": "Tegut",
- "shop": "supermarket"
- },
- "name": "Tegut",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Tengelmann": {
- "tags": {
- "name": "Tengelmann",
- "shop": "supermarket"
- },
- "name": "Tengelmann",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Tesco": {
- "tags": {
- "name": "Tesco",
- "shop": "supermarket"
- },
- "name": "Tesco",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Tesco Extra": {
- "tags": {
- "name": "Tesco Extra",
- "shop": "supermarket"
- },
- "name": "Tesco Extra",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Tesco Lotus": {
- "tags": {
- "name": "Tesco Lotus",
- "shop": "supermarket"
- },
- "name": "Tesco Lotus",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Tesco Metro": {
- "tags": {
- "name": "Tesco Metro",
- "shop": "supermarket"
- },
- "name": "Tesco Metro",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/The Co-operative": {
- "tags": {
- "name": "The Co-operative",
- "shop": "supermarket"
- },
- "name": "The Co-operative",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/The Co-operative Food": {
- "tags": {
- "name": "The Co-operative Food",
- "shop": "supermarket"
- },
- "name": "The Co-operative Food",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Tommy": {
- "tags": {
- "name": "Tommy",
- "shop": "supermarket"
- },
- "name": "Tommy",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Tottus": {
- "tags": {
- "name": "Tottus",
- "shop": "supermarket"
- },
- "name": "Tottus",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Trader Joe's": {
- "tags": {
- "name": "Trader Joe's",
- "shop": "supermarket"
- },
- "name": "Trader Joe's",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Treff 3000": {
- "tags": {
- "name": "Treff 3000",
- "shop": "supermarket"
- },
- "name": "Treff 3000",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/U Express": {
- "tags": {
- "name": "U Express",
- "shop": "supermarket"
- },
- "name": "U Express",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Unimarc": {
- "tags": {
- "name": "Unimarc",
- "shop": "supermarket"
- },
- "name": "Unimarc",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Unimarkt": {
- "tags": {
- "name": "Unimarkt",
- "shop": "supermarket"
- },
- "name": "Unimarkt",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Utile": {
- "tags": {
- "name": "Utile",
- "shop": "supermarket"
- },
- "name": "Utile",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Vea": {
- "tags": {
- "name": "Vea",
- "shop": "supermarket"
- },
- "name": "Vea",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Volg": {
- "tags": {
- "name": "Volg",
- "shop": "supermarket"
- },
- "name": "Volg",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Waitrose": {
- "tags": {
- "name": "Waitrose",
- "shop": "supermarket"
- },
- "name": "Waitrose",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Walmart": {
- "tags": {
- "name": "Walmart",
- "shop": "supermarket"
- },
- "name": "Walmart",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Walmart Neighborhood Market": {
- "tags": {
- "name": "Walmart Neighborhood Market",
- "shop": "supermarket"
- },
- "name": "Walmart Neighborhood Market",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Walmart Supercenter": {
- "tags": {
- "name": "Walmart Supercenter",
- "shop": "supermarket"
- },
- "name": "Walmart Supercenter",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Wasgau": {
- "tags": {
- "name": "Wasgau",
- "shop": "supermarket"
- },
- "name": "Wasgau",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Wegmans": {
- "tags": {
- "name": "Wegmans",
- "shop": "supermarket"
- },
- "name": "Wegmans",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Wellcome": {
- "tags": {
- "name": "Wellcome",
- "shop": "supermarket"
- },
- "name": "Wellcome",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Whole Foods Market": {
- "tags": {
- "name": "Whole Foods Market",
- "shop": "supermarket"
- },
- "name": "Whole Foods Market",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Willys": {
- "tags": {
- "name": "Willys",
- "shop": "supermarket"
- },
- "name": "Willys",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/WinCo Foods": {
- "tags": {
- "name": "WinCo Foods",
- "shop": "supermarket"
- },
- "name": "WinCo Foods",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Winn Dixie": {
- "tags": {
- "name": "Winn Dixie",
- "shop": "supermarket"
- },
- "name": "Winn Dixie",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Woolworths": {
- "tags": {
- "name": "Woolworths",
- "shop": "supermarket"
- },
- "name": "Woolworths",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/denn's Biomarkt": {
- "tags": {
- "name": "denn's Biomarkt",
- "shop": "supermarket"
- },
- "name": "denn's Biomarkt",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/fakta": {
- "tags": {
- "name": "fakta",
- "shop": "supermarket"
- },
- "name": "fakta",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/real": {
- "tags": {
- "name": "real",
- "shop": "supermarket"
- },
- "name": "real",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/tegut": {
- "tags": {
- "name": "tegut",
- "shop": "supermarket"
- },
- "name": "tegut",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Şok": {
- "tags": {
- "name": "Şok",
- "shop": "supermarket"
- },
- "name": "Şok",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/ΑΒ Βασιλόπουλος": {
- "tags": {
- "name": "ΑΒ Βασιλόπουλος",
- "shop": "supermarket"
- },
- "name": "ΑΒ Βασιλόπουλος",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Γαλαξίας": {
- "tags": {
- "name": "Γαλαξίας",
- "shop": "supermarket"
- },
- "name": "Γαλαξίας",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Μασούτης": {
- "tags": {
- "name": "Μασούτης",
- "shop": "supermarket"
- },
- "name": "Μασούτης",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Σκλαβενίτης": {
- "tags": {
- "name": "Σκλαβενίτης",
- "shop": "supermarket"
- },
- "name": "Σκλαβενίτης",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/АТБ": {
- "tags": {
- "name": "АТБ",
- "shop": "supermarket"
- },
- "name": "АТБ",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Абсолют": {
- "tags": {
- "name": "Абсолют",
- "shop": "supermarket"
- },
- "name": "Абсолют",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Азбука Вкуса": {
- "tags": {
- "name": "Азбука Вкуса",
- "shop": "supermarket"
- },
- "name": "Азбука Вкуса",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Атак": {
- "tags": {
- "name": "Атак",
- "shop": "supermarket"
- },
- "name": "Атак",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Ашан": {
- "tags": {
- "name": "Ашан",
- "shop": "supermarket"
- },
- "name": "Ашан",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Верный": {
- "tags": {
- "name": "Верный",
- "shop": "supermarket"
- },
- "name": "Верный",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Вопак": {
- "tags": {
- "name": "Вопак",
- "shop": "supermarket"
- },
- "name": "Вопак",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Гроздь": {
- "tags": {
- "name": "Гроздь",
- "shop": "supermarket"
- },
- "name": "Гроздь",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Десяточка": {
- "tags": {
- "name": "Десяточка",
- "shop": "supermarket"
- },
- "name": "Десяточка",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Дикси": {
- "tags": {
- "name": "Дикси",
- "shop": "supermarket"
- },
- "name": "Дикси",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Евроопт": {
- "tags": {
- "name": "Евроопт",
- "shop": "supermarket"
- },
- "name": "Евроопт",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Карусель": {
- "tags": {
- "name": "Карусель",
- "shop": "supermarket"
- },
- "name": "Карусель",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Квартал": {
- "tags": {
- "name": "Квартал",
- "shop": "supermarket"
- },
- "name": "Квартал",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Командор": {
- "tags": {
- "name": "Командор",
- "shop": "supermarket"
- },
- "name": "Командор",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Красный Яр": {
- "tags": {
- "name": "Красный Яр",
- "shop": "supermarket"
- },
- "name": "Красный Яр",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Лента": {
- "tags": {
- "name": "Лента",
- "shop": "supermarket"
- },
- "name": "Лента",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Магнит": {
- "tags": {
- "name": "Магнит",
- "shop": "supermarket"
- },
- "name": "Магнит",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Магнолия": {
- "tags": {
- "name": "Магнолия",
- "shop": "supermarket"
- },
- "name": "Магнолия",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Монетка": {
- "tags": {
- "name": "Монетка",
- "shop": "supermarket"
- },
- "name": "Монетка",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Народная 7Я семьЯ": {
- "tags": {
- "name": "Народная 7Я семьЯ",
- "shop": "supermarket"
- },
- "name": "Народная 7Я семьЯ",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Перекресток": {
- "tags": {
- "name": "Перекресток",
- "shop": "supermarket"
- },
- "name": "Перекресток",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Покупочка": {
- "tags": {
- "name": "Покупочка",
- "shop": "supermarket"
- },
- "name": "Покупочка",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Полушка": {
- "tags": {
- "name": "Полушка",
- "shop": "supermarket"
- },
- "name": "Полушка",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Пятёрочка": {
- "tags": {
- "name": "Пятёрочка",
- "shop": "supermarket"
- },
- "name": "Пятёрочка",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Радеж": {
- "tags": {
- "name": "Радеж",
- "shop": "supermarket"
- },
- "name": "Радеж",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Рукавичка": {
- "tags": {
- "name": "Рукавичка",
- "shop": "supermarket"
- },
- "name": "Рукавичка",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Светофор": {
- "tags": {
- "name": "Светофор",
- "shop": "supermarket"
- },
- "name": "Светофор",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Седьмой континент": {
- "tags": {
- "name": "Седьмой континент",
- "shop": "supermarket"
- },
- "name": "Седьмой континент",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Семейный": {
- "tags": {
- "name": "Семейный",
- "shop": "supermarket"
- },
- "name": "Семейный",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Семья": {
- "tags": {
- "name": "Семья",
- "shop": "supermarket"
- },
- "name": "Семья",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Супермаркет": {
- "tags": {
- "name": "Супермаркет",
- "shop": "supermarket"
- },
- "name": "Супермаркет",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Сільпо": {
- "tags": {
- "name": "Сільпо",
- "shop": "supermarket"
- },
- "name": "Сільпо",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Таврія‑В": {
- "tags": {
- "name": "Таврія‑В",
- "shop": "supermarket"
- },
- "name": "Таврія‑В",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Фора": {
- "tags": {
- "name": "Фора",
- "shop": "supermarket"
- },
- "name": "Фора",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Фуршет": {
- "tags": {
- "name": "Фуршет",
- "shop": "supermarket"
- },
- "name": "Фуршет",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Хүнсний дэлгүүр": {
- "tags": {
- "name": "Хүнсний дэлгүүр",
- "shop": "supermarket"
- },
- "name": "Хүнсний дэлгүүр",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/Эдельвейс": {
- "tags": {
- "name": "Эдельвейс",
- "shop": "supermarket"
- },
- "name": "Эдельвейс",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/хүнсний дэлгүүр": {
- "tags": {
- "name": "хүнсний дэлгүүр",
- "shop": "supermarket"
- },
- "name": "хүнсний дэлгүүр",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/بقالة": {
- "tags": {
- "name": "بقالة",
- "shop": "supermarket"
- },
- "name": "بقالة",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/سوپر مارکت": {
- "tags": {
- "name": "سوپر مارکت",
- "shop": "supermarket"
- },
- "name": "سوپر مارکت",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/سوپرمارکت": {
- "tags": {
- "name": "سوپرمارکت",
- "shop": "supermarket"
- },
- "name": "سوپرمارکت",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/いなげや": {
- "tags": {
- "name": "いなげや",
- "shop": "supermarket"
- },
- "name": "いなげや",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/まいばすけっと": {
- "tags": {
- "name": "まいばすけっと",
- "shop": "supermarket"
- },
- "name": "まいばすけっと",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/イオン": {
- "tags": {
- "name": "イオン",
- "shop": "supermarket"
- },
- "name": "イオン",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/イトーヨーカドー": {
- "tags": {
- "name": "イトーヨーカドー",
- "shop": "supermarket"
- },
- "name": "イトーヨーカドー",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/カスミ": {
- "tags": {
- "name": "カスミ",
- "shop": "supermarket"
- },
- "name": "カスミ",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/マックスバリュ": {
- "tags": {
- "name": "マックスバリュ",
- "shop": "supermarket"
- },
- "name": "マックスバリュ",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/マルエツ": {
- "tags": {
- "name": "マルエツ",
- "shop": "supermarket"
- },
- "name": "マルエツ",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/ライフ": {
- "tags": {
- "name": "ライフ",
- "shop": "supermarket"
- },
- "name": "ライフ",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/全聯": {
- "tags": {
- "name": "全聯",
- "shop": "supermarket"
- },
- "name": "全聯",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/全聯福利中心": {
- "tags": {
- "name": "全聯福利中心",
- "shop": "supermarket"
- },
- "name": "全聯福利中心",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/惠康 Wellcome": {
- "tags": {
- "name": "惠康 Wellcome",
- "shop": "supermarket"
- },
- "name": "惠康 Wellcome",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/業務スーパー": {
- "tags": {
- "name": "業務スーパー",
- "shop": "supermarket"
- },
- "name": "業務スーパー",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/美廉社": {
- "tags": {
- "name": "美廉社",
- "shop": "supermarket"
- },
- "name": "美廉社",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/supermarket/西友": {
- "tags": {
- "name": "西友",
- "shop": "supermarket"
- },
- "name": "西友",
- "icon": "maki-grocery",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/tailor/Atelier de couture": {
- "tags": {
- "name": "Atelier de couture",
- "shop": "tailor"
- },
- "name": "Atelier de couture",
- "icon": "maki-clothing-store",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/ticket/Boutique Grandes Lignes": {
- "tags": {
- "name": "Boutique Grandes Lignes",
- "shop": "ticket"
- },
- "name": "Boutique Grandes Lignes",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/ticket/Guichet Transilien": {
- "tags": {
- "name": "Guichet Transilien",
- "shop": "ticket"
- },
- "name": "Guichet Transilien",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/ticket/Касса": {
- "tags": {
- "name": "Касса",
- "shop": "ticket"
- },
- "name": "Касса",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/ticket/Проездные билеты": {
- "tags": {
- "name": "Проездные билеты",
- "shop": "ticket"
- },
- "name": "Проездные билеты",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/tobacco/Dohánybolt": {
- "tags": {
- "name": "Dohánybolt",
- "shop": "tobacco"
- },
- "name": "Dohánybolt",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/tobacco/Estanco": {
- "tags": {
- "name": "Estanco",
- "shop": "tobacco"
- },
- "name": "Estanco",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/tobacco/Nemzeti Dohánybolt": {
- "tags": {
- "name": "Nemzeti Dohánybolt",
- "shop": "tobacco"
- },
- "name": "Nemzeti Dohánybolt",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/tobacco/Tabacos": {
- "tags": {
- "name": "Tabacos",
- "shop": "tobacco"
- },
- "name": "Tabacos",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/tobacco/Табакерка": {
- "tags": {
- "name": "Табакерка",
- "shop": "tobacco"
- },
- "name": "Табакерка",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/toys/Dráčik": {
- "tags": {
- "name": "Dráčik",
- "shop": "toys"
- },
- "name": "Dráčik",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/toys/Intertoys": {
- "tags": {
- "name": "Intertoys",
- "shop": "toys"
- },
- "name": "Intertoys",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/toys/King Jouet": {
- "tags": {
- "name": "King Jouet",
- "shop": "toys"
- },
- "name": "King Jouet",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/toys/La Grande Récré": {
- "tags": {
- "name": "La Grande Récré",
- "shop": "toys"
- },
- "name": "La Grande Récré",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/toys/Maxi Toys": {
- "tags": {
- "name": "Maxi Toys",
- "shop": "toys"
- },
- "name": "Maxi Toys",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/toys/Toys R Us": {
- "tags": {
- "name": "Toys R Us",
- "shop": "toys"
- },
- "name": "Toys R Us",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/toys/Детский мир": {
- "tags": {
- "name": "Детский мир",
- "shop": "toys"
- },
- "name": "Детский мир",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/toys/Игрушки": {
- "tags": {
- "name": "Игрушки",
- "shop": "toys"
- },
- "name": "Игрушки",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/travel_agency/D-reizen": {
- "tags": {
- "name": "D-reizen",
- "shop": "travel_agency"
- },
- "name": "D-reizen",
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/travel_agency/DER Reisebüro": {
- "tags": {
- "name": "DER Reisebüro",
- "shop": "travel_agency"
- },
- "name": "DER Reisebüro",
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/travel_agency/First Reisebüro": {
- "tags": {
- "name": "First Reisebüro",
- "shop": "travel_agency"
- },
- "name": "First Reisebüro",
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/travel_agency/Flight Centre": {
- "tags": {
- "name": "Flight Centre",
- "shop": "travel_agency"
- },
- "name": "Flight Centre",
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/travel_agency/Reiseland": {
- "tags": {
- "name": "Reiseland",
- "shop": "travel_agency"
- },
- "name": "Reiseland",
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/travel_agency/TUI": {
- "tags": {
- "name": "TUI",
- "shop": "travel_agency"
- },
- "name": "TUI",
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/travel_agency/The Co-operative Travel": {
- "tags": {
- "name": "The Co-operative Travel",
- "shop": "travel_agency"
- },
- "name": "The Co-operative Travel",
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/travel_agency/Thomas Cook": {
- "tags": {
- "name": "Thomas Cook",
- "shop": "travel_agency"
- },
- "name": "Thomas Cook",
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/travel_agency/Thomson": {
- "tags": {
- "name": "Thomson",
- "shop": "travel_agency"
- },
- "name": "Thomson",
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/tyres/Borracharia": {
- "tags": {
- "name": "Borracharia",
- "shop": "tyres"
- },
- "name": "Borracharia",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/tyres/Bridgestone": {
- "tags": {
- "name": "Bridgestone",
- "shop": "tyres"
- },
- "name": "Bridgestone",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/tyres/Discount Tire": {
- "tags": {
- "name": "Discount Tire",
- "shop": "tyres"
- },
- "name": "Discount Tire",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/tyres/Les Schwab Tire Center": {
- "tags": {
- "name": "Les Schwab Tire Center",
- "shop": "tyres"
- },
- "name": "Les Schwab Tire Center",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/tyres/Vianor": {
- "tags": {
- "name": "Vianor",
- "shop": "tyres"
- },
- "name": "Vianor",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/tyres/Вулканизация": {
- "tags": {
- "name": "Вулканизация",
- "shop": "tyres"
- },
- "name": "Вулканизация",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/variety_store/Action": {
- "tags": {
- "name": "Action",
- "shop": "variety_store"
- },
- "name": "Action",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/variety_store/Bazar": {
- "tags": {
- "name": "Bazar",
- "shop": "variety_store"
- },
- "name": "Bazar",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/variety_store/Big Bazar": {
- "tags": {
- "name": "Big Bazar",
- "shop": "variety_store"
- },
- "name": "Big Bazar",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/variety_store/Dollar Tree": {
- "tags": {
- "name": "Dollar Tree",
- "shop": "variety_store"
- },
- "name": "Dollar Tree",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/variety_store/Dollarama": {
- "tags": {
- "name": "Dollarama",
- "shop": "variety_store"
- },
- "name": "Dollarama",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/variety_store/EuroShop": {
- "tags": {
- "name": "EuroShop",
- "shop": "variety_store"
- },
- "name": "EuroShop",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/variety_store/Family Dollar": {
- "tags": {
- "name": "Family Dollar",
- "shop": "variety_store"
- },
- "name": "Family Dollar",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/variety_store/Fix Price": {
- "tags": {
- "name": "Fix Price",
- "shop": "variety_store"
- },
- "name": "Fix Price",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/variety_store/Fix price": {
- "tags": {
- "name": "Fix price",
- "shop": "variety_store"
- },
- "name": "Fix price",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/variety_store/FixPrice": {
- "tags": {
- "name": "FixPrice",
- "shop": "variety_store"
- },
- "name": "FixPrice",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/variety_store/GiFi": {
- "tags": {
- "name": "GiFi",
- "shop": "variety_store"
- },
- "name": "GiFi",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/variety_store/Home Bargains": {
- "tags": {
- "name": "Home Bargains",
- "shop": "variety_store"
- },
- "name": "Home Bargains",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/variety_store/Mäc-Geiz": {
- "tags": {
- "name": "Mäc-Geiz",
- "shop": "variety_store"
- },
- "name": "Mäc-Geiz",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/variety_store/NOZ": {
- "tags": {
- "name": "NOZ",
- "shop": "variety_store"
- },
- "name": "NOZ",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/variety_store/Poundland": {
- "tags": {
- "name": "Poundland",
- "shop": "variety_store"
- },
- "name": "Poundland",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/variety_store/Poundworld": {
- "tags": {
- "name": "Poundworld",
- "shop": "variety_store"
- },
- "name": "Poundworld",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/variety_store/Tedi": {
- "tags": {
- "name": "Tedi",
- "shop": "variety_store"
- },
- "name": "Tedi",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/variety_store/ダイソー": {
- "tags": {
- "name": "ダイソー",
- "shop": "variety_store"
- },
- "name": "ダイソー",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/video/Blockbuster": {
- "tags": {
- "name": "Blockbuster",
- "shop": "video"
- },
- "name": "Blockbuster",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/video/Family Video": {
- "tags": {
- "name": "Family Video",
- "shop": "video"
- },
- "name": "Family Video",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/video/TSUTAYA": {
- "tags": {
- "name": "TSUTAYA",
- "shop": "video"
- },
- "name": "TSUTAYA",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/video/World of Video": {
- "tags": {
- "name": "World of Video",
- "shop": "video"
- },
- "name": "World of Video",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/video/ゲオ": {
- "tags": {
- "name": "ゲオ",
- "shop": "video"
- },
- "name": "ゲオ",
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/video_games/EB Games": {
- "tags": {
- "name": "EB Games",
- "shop": "video_games"
- },
- "name": "EB Games",
- "icon": "maki-gaming",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/video_games/Game": {
- "tags": {
- "name": "Game",
- "shop": "video_games"
- },
- "name": "Game",
- "icon": "maki-gaming",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/video_games/GameStop": {
- "tags": {
- "name": "GameStop",
- "shop": "video_games"
- },
- "name": "GameStop",
- "icon": "maki-gaming",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "shop/video_games/Micromania": {
- "tags": {
- "name": "Micromania",
- "shop": "video_games"
- },
- "name": "Micromania",
- "icon": "maki-gaming",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "payment_multi"
- ],
- "suggestion": true
- },
- "tourism/alpine_hut/КОШ": {
- "tags": {
- "name": "КОШ",
- "tourism": "alpine_hut"
- },
- "name": "КОШ",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/apartment/Двухкомнатная квартира на сутки": {
- "tags": {
- "name": "Двухкомнатная квартира на сутки",
- "tourism": "apartment"
- },
- "name": "Двухкомнатная квартира на сутки",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "smoking",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/attraction/Arch": {
- "tags": {
- "name": "Arch",
- "tourism": "attraction"
- },
- "name": "Arch",
- "icon": "maki-star",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "tourism/attraction/Kursächsische Postmeilensäule": {
- "tags": {
- "name": "Kursächsische Postmeilensäule",
- "tourism": "attraction"
- },
- "name": "Kursächsische Postmeilensäule",
- "icon": "maki-star",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "tourism/attraction/Maibaum": {
- "tags": {
- "name": "Maibaum",
- "tourism": "attraction"
- },
- "name": "Maibaum",
- "icon": "maki-star",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "tourism/attraction/Moab trail": {
- "tags": {
- "name": "Moab trail",
- "tourism": "attraction"
- },
- "name": "Moab trail",
- "icon": "maki-star",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "tourism/attraction/Moai": {
- "tags": {
- "name": "Moai",
- "tourism": "attraction"
- },
- "name": "Moai",
- "icon": "maki-star",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "tourism/attraction/OWŚ": {
- "tags": {
- "name": "OWŚ",
- "tourism": "attraction"
- },
- "name": "OWŚ",
- "icon": "maki-star",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "tourism/attraction/Sommerrodelbahn": {
- "tags": {
- "name": "Sommerrodelbahn",
- "tourism": "attraction"
- },
- "name": "Sommerrodelbahn",
- "icon": "maki-star",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "tourism/attraction/path contiunes": {
- "tags": {
- "name": "path contiunes",
- "tourism": "attraction"
- },
- "name": "path contiunes",
- "icon": "maki-star",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "tourism/attraction/white blaze": {
- "tags": {
- "name": "white blaze",
- "tourism": "attraction"
- },
- "name": "white blaze",
- "icon": "maki-star",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "tourism/attraction/Кладбище еврейское": {
- "tags": {
- "name": "Кладбище еврейское",
- "tourism": "attraction"
- },
- "name": "Кладбище еврейское",
- "icon": "maki-star",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "tourism/attraction/Колесо обозрения": {
- "tags": {
- "name": "Колесо обозрения",
- "tourism": "attraction"
- },
- "name": "Колесо обозрения",
- "icon": "maki-star",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "tourism/attraction/Приусадебный парк": {
- "tags": {
- "name": "Приусадебный парк",
- "tourism": "attraction"
- },
- "name": "Приусадебный парк",
- "icon": "maki-star",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "tourism/attraction/Усадьба": {
- "tags": {
- "name": "Усадьба",
- "tourism": "attraction"
- },
- "name": "Усадьба",
- "icon": "maki-star",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "tourism/attraction/Хозяйственный двор": {
- "tags": {
- "name": "Хозяйственный двор",
- "tourism": "attraction"
- },
- "name": "Хозяйственный двор",
- "icon": "maki-star",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "tourism/attraction/Часовня": {
- "tags": {
- "name": "Часовня",
- "tourism": "attraction"
- },
- "name": "Часовня",
- "icon": "maki-star",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "tourism/attraction/дольмен": {
- "tags": {
- "name": "дольмен",
- "tourism": "attraction"
- },
- "name": "дольмен",
- "icon": "maki-star",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "suggestion": true
- },
- "tourism/camp_site/Camping Municipal": {
- "tags": {
- "name": "Camping Municipal",
- "tourism": "camp_site"
- },
- "name": "Camping Municipal",
- "icon": "maki-campsite",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "capacity",
- "fee",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/camp_site/Camping municipal": {
- "tags": {
- "name": "Camping municipal",
- "tourism": "camp_site"
- },
- "name": "Camping municipal",
- "icon": "maki-campsite",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "capacity",
- "fee",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/guest_house/Home": {
- "tags": {
- "name": "Home",
- "tourism": "guest_house"
- },
- "name": "Home",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "smoking",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/guest_house/OW Bielanka": {
- "tags": {
- "name": "OW Bielanka",
- "tourism": "guest_house"
- },
- "name": "OW Bielanka",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "smoking",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hostel/Albergue de Peregrinos": {
- "tags": {
- "name": "Albergue de Peregrinos",
- "tourism": "hostel"
- },
- "name": "Albergue de Peregrinos",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "smoking",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hostel/Hospedaje": {
- "tags": {
- "name": "Hospedaje",
- "tourism": "hostel"
- },
- "name": "Hospedaje",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "smoking",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hostel/Hostal": {
- "tags": {
- "name": "Hostal",
- "tourism": "hostel"
- },
- "name": "Hostal",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "smoking",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/B&B Hôtel": {
- "tags": {
- "name": "B&B Hôtel",
- "tourism": "hotel"
- },
- "name": "B&B Hôtel",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/B&b Hôtel": {
- "tags": {
- "name": "B&b Hôtel",
- "tourism": "hotel"
- },
- "name": "B&b Hôtel",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Best Western": {
- "tags": {
- "name": "Best Western",
- "tourism": "hotel"
- },
- "name": "Best Western",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Campanile": {
- "tags": {
- "name": "Campanile",
- "tourism": "hotel"
- },
- "name": "Campanile",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Central Hotel": {
- "tags": {
- "name": "Central Hotel",
- "tourism": "hotel"
- },
- "name": "Central Hotel",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/City Hotel": {
- "tags": {
- "name": "City Hotel",
- "tourism": "hotel"
- },
- "name": "City Hotel",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Comfort Inn": {
- "tags": {
- "name": "Comfort Inn",
- "tourism": "hotel"
- },
- "name": "Comfort Inn",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Comfort Inn & Suites": {
- "tags": {
- "name": "Comfort Inn & Suites",
- "tourism": "hotel"
- },
- "name": "Comfort Inn & Suites",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Comfort Suites": {
- "tags": {
- "name": "Comfort Suites",
- "tourism": "hotel"
- },
- "name": "Comfort Suites",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Country Inn & Suites": {
- "tags": {
- "name": "Country Inn & Suites",
- "tourism": "hotel"
- },
- "name": "Country Inn & Suites",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Courtyard by Marriott": {
- "tags": {
- "name": "Courtyard by Marriott",
- "tourism": "hotel"
- },
- "name": "Courtyard by Marriott",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Crowne Plaza": {
- "tags": {
- "name": "Crowne Plaza",
- "tourism": "hotel"
- },
- "name": "Crowne Plaza",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Days Inn": {
- "tags": {
- "name": "Days Inn",
- "tourism": "hotel"
- },
- "name": "Days Inn",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Embassy Suites": {
- "tags": {
- "name": "Embassy Suites",
- "tourism": "hotel"
- },
- "name": "Embassy Suites",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Extended Stay America": {
- "tags": {
- "name": "Extended Stay America",
- "tourism": "hotel"
- },
- "name": "Extended Stay America",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Fairfield Inn": {
- "tags": {
- "name": "Fairfield Inn",
- "tourism": "hotel"
- },
- "name": "Fairfield Inn",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Fairfield Inn & Suites": {
- "tags": {
- "name": "Fairfield Inn & Suites",
- "tourism": "hotel"
- },
- "name": "Fairfield Inn & Suites",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Formule 1": {
- "tags": {
- "name": "Formule 1",
- "tourism": "hotel"
- },
- "name": "Formule 1",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Grand Hotel": {
- "tags": {
- "name": "Grand Hotel",
- "tourism": "hotel"
- },
- "name": "Grand Hotel",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Hampton Inn": {
- "tags": {
- "name": "Hampton Inn",
- "tourism": "hotel"
- },
- "name": "Hampton Inn",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Hampton Inn & Suites": {
- "tags": {
- "name": "Hampton Inn & Suites",
- "tourism": "hotel"
- },
- "name": "Hampton Inn & Suites",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Hilton Garden Inn": {
- "tags": {
- "name": "Hilton Garden Inn",
- "tourism": "hotel"
- },
- "name": "Hilton Garden Inn",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Holiday Inn": {
- "tags": {
- "name": "Holiday Inn",
- "tourism": "hotel"
- },
- "name": "Holiday Inn",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Holiday Inn Express": {
- "tags": {
- "name": "Holiday Inn Express",
- "tourism": "hotel"
- },
- "name": "Holiday Inn Express",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Holiday Inn Express & Suites": {
- "tags": {
- "name": "Holiday Inn Express & Suites",
- "tourism": "hotel"
- },
- "name": "Holiday Inn Express & Suites",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Homewood Suites": {
- "tags": {
- "name": "Homewood Suites",
- "tourism": "hotel"
- },
- "name": "Homewood Suites",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Hotel Central": {
- "tags": {
- "name": "Hotel Central",
- "tourism": "hotel"
- },
- "name": "Hotel Central",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Hotel Europa": {
- "tags": {
- "name": "Hotel Europa",
- "tourism": "hotel"
- },
- "name": "Hotel Europa",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Hotel Ibis": {
- "tags": {
- "name": "Hotel Ibis",
- "tourism": "hotel"
- },
- "name": "Hotel Ibis",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Hotel Krone": {
- "tags": {
- "name": "Hotel Krone",
- "tourism": "hotel"
- },
- "name": "Hotel Krone",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Hotel Panorama": {
- "tags": {
- "name": "Hotel Panorama",
- "tourism": "hotel"
- },
- "name": "Hotel Panorama",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Hotel Plaza": {
- "tags": {
- "name": "Hotel Plaza",
- "tourism": "hotel"
- },
- "name": "Hotel Plaza",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Hotel Post": {
- "tags": {
- "name": "Hotel Post",
- "tourism": "hotel"
- },
- "name": "Hotel Post",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Hotel Royal": {
- "tags": {
- "name": "Hotel Royal",
- "tourism": "hotel"
- },
- "name": "Hotel Royal",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Hotel Victoria": {
- "tags": {
- "name": "Hotel Victoria",
- "tourism": "hotel"
- },
- "name": "Hotel Victoria",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Hotel zur Post": {
- "tags": {
- "name": "Hotel zur Post",
- "tourism": "hotel"
- },
- "name": "Hotel zur Post",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Hôtel Ibis": {
- "tags": {
- "name": "Hôtel Ibis",
- "tourism": "hotel"
- },
- "name": "Hôtel Ibis",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Hôtel de France": {
- "tags": {
- "name": "Hôtel de France",
- "tourism": "hotel"
- },
- "name": "Hôtel de France",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Ibis": {
- "tags": {
- "name": "Ibis",
- "tourism": "hotel"
- },
- "name": "Ibis",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Ibis Budget": {
- "tags": {
- "name": "Ibis Budget",
- "tourism": "hotel"
- },
- "name": "Ibis Budget",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Ibis Styles": {
- "tags": {
- "name": "Ibis Styles",
- "tourism": "hotel"
- },
- "name": "Ibis Styles",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Kyriad": {
- "tags": {
- "name": "Kyriad",
- "tourism": "hotel"
- },
- "name": "Kyriad",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/La Quinta": {
- "tags": {
- "name": "La Quinta",
- "tourism": "hotel"
- },
- "name": "La Quinta",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Marriott": {
- "tags": {
- "name": "Marriott",
- "tourism": "hotel"
- },
- "name": "Marriott",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Mercure": {
- "tags": {
- "name": "Mercure",
- "tourism": "hotel"
- },
- "name": "Mercure",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Novotel": {
- "tags": {
- "name": "Novotel",
- "tourism": "hotel"
- },
- "name": "Novotel",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Palace Hotel": {
- "tags": {
- "name": "Palace Hotel",
- "tourism": "hotel"
- },
- "name": "Palace Hotel",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Park Hotel": {
- "tags": {
- "name": "Park Hotel",
- "tourism": "hotel"
- },
- "name": "Park Hotel",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Parkhotel": {
- "tags": {
- "name": "Parkhotel",
- "tourism": "hotel"
- },
- "name": "Parkhotel",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Premier Inn": {
- "tags": {
- "name": "Premier Inn",
- "tourism": "hotel"
- },
- "name": "Premier Inn",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Première Classe": {
- "tags": {
- "name": "Première Classe",
- "tourism": "hotel"
- },
- "name": "Première Classe",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Quality Inn": {
- "tags": {
- "name": "Quality Inn",
- "tourism": "hotel"
- },
- "name": "Quality Inn",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Quality Inn & Suites": {
- "tags": {
- "name": "Quality Inn & Suites",
- "tourism": "hotel"
- },
- "name": "Quality Inn & Suites",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Ramada": {
- "tags": {
- "name": "Ramada",
- "tourism": "hotel"
- },
- "name": "Ramada",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Residence Inn": {
- "tags": {
- "name": "Residence Inn",
- "tourism": "hotel"
- },
- "name": "Residence Inn",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Royal Hotel": {
- "tags": {
- "name": "Royal Hotel",
- "tourism": "hotel"
- },
- "name": "Royal Hotel",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Sheraton": {
- "tags": {
- "name": "Sheraton",
- "tourism": "hotel"
- },
- "name": "Sheraton",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Sleep Inn": {
- "tags": {
- "name": "Sleep Inn",
- "tourism": "hotel"
- },
- "name": "Sleep Inn",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Staybridge Suites": {
- "tags": {
- "name": "Staybridge Suites",
- "tourism": "hotel"
- },
- "name": "Staybridge Suites",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Super 8": {
- "tags": {
- "name": "Super 8",
- "tourism": "hotel"
- },
- "name": "Super 8",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Travelodge": {
- "tags": {
- "name": "Travelodge",
- "tourism": "hotel"
- },
- "name": "Travelodge",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/Гостиница": {
- "tags": {
- "name": "Гостиница",
- "tourism": "hotel"
- },
- "name": "Гостиница",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/hotel/東横イン": {
- "tags": {
- "name": "東横イン",
- "tourism": "hotel"
- },
- "name": "東横イン",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "building_area",
- "smoking",
- "stars",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/motel/Budget Inn": {
- "tags": {
- "name": "Budget Inn",
- "tourism": "motel"
- },
- "name": "Budget Inn",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "smoking",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/motel/Econo Lodge": {
- "tags": {
- "name": "Econo Lodge",
- "tourism": "motel"
- },
- "name": "Econo Lodge",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "smoking",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/motel/Motel 6": {
- "tags": {
- "name": "Motel 6",
- "tourism": "motel"
- },
- "name": "Motel 6",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "smoking",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/motel/Rodeway Inn": {
- "tags": {
- "name": "Rodeway Inn",
- "tourism": "motel"
- },
- "name": "Rodeway Inn",
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "smoking",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "suggestion": true
- },
- "tourism/museum/Heimatmuseum": {
- "tags": {
- "name": "Heimatmuseum",
- "tourism": "museum"
- },
- "name": "Heimatmuseum",
- "icon": "maki-museum",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "tourism/museum/Stadtmuseum": {
- "tags": {
- "name": "Stadtmuseum",
- "tourism": "museum"
- },
- "name": "Stadtmuseum",
- "icon": "maki-museum",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "tourism/museum/Tájház": {
- "tags": {
- "name": "Tájház",
- "tourism": "museum"
- },
- "name": "Tájház",
- "icon": "maki-museum",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "tourism/museum/Краеведческий музей": {
- "tags": {
- "name": "Краеведческий музей",
- "tourism": "museum"
- },
- "name": "Краеведческий музей",
- "icon": "maki-museum",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- },
- "tourism/museum/Музей": {
- "tags": {
- "name": "Музей",
- "tourism": "museum"
- },
- "name": "Музей",
- "icon": "maki-museum",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours"
- ],
- "suggestion": true
- }
- }
+ "presets": {
+ "aerialway": {"fields": ["aerialway"], "geometry": ["point", "vertex", "line"], "tags": {"aerialway": "*"}, "terms": ["ski lift", "funifor", "funitel"], "searchable": false, "name": "Aerialway"},
+ "aeroway": {"icon": "maki-airport", "fields": ["aeroway"], "geometry": ["point", "vertex", "line", "area"], "tags": {"aeroway": "*"}, "searchable": false, "name": "Aeroway"},
+ "amenity": {"fields": ["amenity"], "geometry": ["point", "vertex", "area"], "tags": {"amenity": "*"}, "searchable": false, "name": "Amenity"},
+ "circular": {"geometry": ["vertex", "line"], "fields": ["name"], "tags": {"junction": "circular"}, "name": "Traffic Circle", "searchable": false},
+ "highway": {"fields": ["name", "highway"], "geometry": ["point", "vertex", "line", "area"], "tags": {"highway": "*"}, "searchable": false, "name": "Highway"},
+ "place": {"fields": ["name", "place"], "geometry": ["point", "vertex", "area"], "tags": {"place": "*"}, "searchable": false, "name": "Place"},
+ "power": {"geometry": ["point", "vertex", "line", "area"], "tags": {"power": "*"}, "fields": ["power"], "searchable": false, "name": "Power"},
+ "railway": {"fields": ["railway"], "geometry": ["point", "vertex", "line", "area"], "tags": {"railway": "*"}, "searchable": false, "name": "Railway"},
+ "roundabout": {"geometry": ["vertex", "line"], "fields": ["name"], "tags": {"junction": "roundabout"}, "name": "Roundabout", "searchable": false},
+ "waterway": {"fields": ["name", "waterway"], "geometry": ["point", "vertex", "line", "area"], "tags": {"waterway": "*"}, "searchable": false, "name": "Waterway"},
+ "address": {"fields": ["address"], "geometry": ["point", "vertex", "area"], "tags": {"addr:*": "*"}, "addTags": {}, "removeTags": {}, "reference": {"key": "addr"}, "name": "Address", "matchScore": 0.15},
+ "advertising/billboard": {"fields": ["direction", "lit"], "geometry": ["point", "vertex", "line"], "tags": {"advertising": "billboard"}, "name": "Billboard"},
+ "advertising/column": {"fields": ["direction", "lit"], "geometry": ["point", "area"], "tags": {"advertising": "column"}, "name": "Advertising Column"},
+ "aerialway/station": {"icon": "maki-aerialway", "geometry": ["point", "vertex", "area"], "fields": ["aerialway/access", "aerialway/summer/access", "elevation", "building_area"], "tags": {"aerialway": "station"}, "name": "Aerialway Station", "searchable": false},
+ "aerialway/cable_car": {"geometry": ["line"], "terms": ["tramway", "ropeway"], "fields": ["name", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/heating"], "tags": {"aerialway": "cable_car"}, "name": "Cable Car"},
+ "aerialway/chair_lift": {"geometry": ["line"], "fields": ["name", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/bubble", "aerialway/heating"], "tags": {"aerialway": "chair_lift"}, "name": "Chair Lift"},
+ "aerialway/drag_lift": {"geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "drag_lift"}, "name": "Drag Lift"},
+ "aerialway/gondola": {"geometry": ["line"], "fields": ["name", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/bubble", "aerialway/heating"], "tags": {"aerialway": "gondola"}, "name": "Gondola"},
+ "aerialway/goods": {"geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "goods"}, "name": "Goods Aerialway"},
+ "aerialway/magic_carpet": {"geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration", "aerialway/heating"], "tags": {"aerialway": "magic_carpet"}, "name": "Magic Carpet Lift"},
+ "aerialway/mixed_lift": {"geometry": ["line"], "fields": ["name", "aerialway/occupancy", "aerialway/capacity", "aerialway/duration", "aerialway/bubble", "aerialway/heating"], "tags": {"aerialway": "mixed_lift"}, "name": "Mixed Lift"},
+ "aerialway/platter": {"geometry": ["line"], "terms": ["button lift", "poma lift"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "platter"}, "name": "Platter Lift"},
+ "aerialway/pylon": {"geometry": ["point", "vertex"], "fields": ["ref"], "tags": {"aerialway": "pylon"}, "name": "Aerialway Pylon"},
+ "aerialway/rope_tow": {"geometry": ["line"], "terms": ["handle tow", "bugel lift"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "tags": {"aerialway": "rope_tow"}, "name": "Rope Tow Lift"},
+ "aerialway/t-bar": {"geometry": ["line"], "fields": ["name", "aerialway/capacity", "aerialway/duration"], "terms": ["tbar"], "tags": {"aerialway": "t-bar"}, "name": "T-bar Lift"},
+ "aeroway/aerodrome": {"icon": "maki-airport", "geometry": ["point", "area"], "fields": ["name", "iata", "icao", "operator", "internet_access", "internet_access/fee", "internet_access/ssid"], "terms": ["airplane", "airport", "aerodrome"], "tags": {"aeroway": "aerodrome"}, "name": "Airport"},
+ "aeroway/apron": {"icon": "maki-airport", "geometry": ["area"], "terms": ["ramp"], "fields": ["ref", "surface"], "tags": {"aeroway": "apron"}, "name": "Apron"},
+ "aeroway/gate": {"icon": "maki-airport", "geometry": ["point"], "fields": ["ref_aeroway_gate"], "tags": {"aeroway": "gate"}, "name": "Airport Gate"},
+ "aeroway/hangar": {"geometry": ["area"], "fields": ["name", "building_area"], "tags": {"aeroway": "hangar"}, "name": "Hangar"},
+ "aeroway/helipad": {"icon": "maki-heliport", "geometry": ["point", "area"], "fields": ["ref"], "terms": ["helicopter", "helipad", "heliport"], "tags": {"aeroway": "helipad"}, "name": "Helipad"},
+ "aeroway/runway": {"geometry": ["line", "area"], "terms": ["landing strip"], "fields": ["ref_runway", "surface", "length", "width"], "tags": {"aeroway": "runway"}, "name": "Runway"},
+ "aeroway/taxiway": {"geometry": ["line"], "fields": ["ref_taxiway", "surface"], "tags": {"aeroway": "taxiway"}, "name": "Taxiway"},
+ "aeroway/terminal": {"icon": "maki-airport", "geometry": ["point", "area"], "terms": ["airport", "aerodrome"], "fields": ["name", "operator", "building_area"], "tags": {"aeroway": "terminal"}, "name": "Airport Terminal"},
+ "allotments/plot": {"geometry": ["area"], "fields": ["name", "ref"], "tags": {"allotments": "plot"}, "reference": {"key": "allotments", "value": "plot"}, "name": "Community Garden Plot"},
+ "amenity/bus_station": {"icon": "maki-bus", "fields": ["name", "building_area", "operator", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"amenity": "bus_station"}, "name": "Bus Station / Terminal", "searchable": false},
+ "amenity/coworking_space": {"icon": "maki-commercial", "fields": ["name", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"amenity": "coworking_space"}, "name": "Coworking Space", "searchable": false},
+ "amenity/ferry_terminal": {"icon": "maki-ferry", "fields": ["name", "network", "operator", "address", "building_area"], "geometry": ["point", "vertex", "area"], "terms": [], "tags": {"amenity": "ferry_terminal"}, "name": "Ferry Station / Terminal", "searchable": false},
+ "amenity/nursing_home": {"icon": "maki-wheelchair", "fields": ["name", "operator", "address", "building_area", "social_facility", "social_facility_for", "opening_hours", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "nursing_home"}, "reference": {"key": "social_facility", "value": "nursing_home"}, "name": "Nursing Home", "searchable": false},
+ "amenity/register_office": {"icon": "maki-town-hall", "fields": ["name", "address", "building_area", "opening_hours", "operator"], "geometry": ["point", "area"], "tags": {"amenity": "register_office"}, "reference": {"key": "government", "value": "register_office"}, "name": "Register Office", "searchable": false},
+ "amenity/scrapyard": {"icon": "maki-car", "fields": ["name", "operator", "address", "opening_hours"], "geometry": ["point", "area"], "tags": {"amenity": "scrapyard"}, "reference": {"key": "industrial", "value": "scrap_yard"}, "name": "Scrap Yard", "searchable": false},
+ "amenity/swimming_pool": {"icon": "maki-swimming", "geometry": ["point", "vertex", "area"], "tags": {"amenity": "swimming_pool"}, "reference": {"key": "leisure", "value": "swimming_pool"}, "name": "Swimming Pool", "searchable": false},
+ "amenity/animal_boarding": {"icon": "maki-veterinary", "fields": ["name", "operator", "address", "building_area", "opening_hours", "animal_boarding"], "geometry": ["point", "area"], "terms": ["boarding", "cat", "cattery", "dog", "horse", "kennel", "kitten", "pet", "pet boarding", "pet care", "pet hotel", "puppy", "reptile"], "tags": {"amenity": "animal_boarding"}, "name": "Animal Boarding Facility"},
+ "amenity/animal_breeding": {"icon": "maki-veterinary", "fields": ["name", "operator", "address", "building_area", "opening_hours", "animal_breeding"], "geometry": ["point", "area"], "terms": ["breeding", "bull", "cat", "cow", "dog", "horse", "husbandry", "kitten", "livestock", "pet breeding", "puppy", "reptile"], "tags": {"amenity": "animal_breeding"}, "name": "Animal Breeding Facility"},
+ "amenity/animal_shelter": {"icon": "maki-veterinary", "fields": ["name", "operator", "address", "building_area", "opening_hours", "animal_shelter"], "geometry": ["point", "area"], "terms": ["adoption", "aspca", "cat", "dog", "horse", "kitten", "pet care", "pet rescue", "puppy", "raptor", "reptile", "rescue", "spca"], "tags": {"amenity": "animal_shelter"}, "name": "Animal Shelter"},
+ "amenity/arts_centre": {"icon": "maki-theatre", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": [], "tags": {"amenity": "arts_centre"}, "name": "Arts Center"},
+ "amenity/atm": {"icon": "maki-bank", "fields": ["operator", "currency_multi", "drive_through"], "geometry": ["point", "vertex"], "terms": ["money", "cash", "machine"], "tags": {"amenity": "atm"}, "name": "ATM"},
+ "amenity/bank": {"icon": "maki-bank", "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "geometry": ["point", "area"], "terms": ["credit union", "check", "deposit", "fund", "investment", "repository", "reserve", "safe", "savings", "stock", "treasury", "trust", "vault"], "tags": {"amenity": "bank"}, "name": "Bank"},
+ "amenity/bar": {"icon": "maki-bar", "fields": ["name", "operator", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "geometry": ["point", "area"], "terms": ["dive", "beer", "bier", "booze"], "tags": {"amenity": "bar"}, "name": "Bar"},
+ "amenity/bbq": {"icon": "maki-bbq", "fields": ["covered", "fuel"], "geometry": ["point"], "terms": ["bbq", "grill"], "tags": {"amenity": "bbq"}, "name": "Barbecue/Grill"},
+ "amenity/bench": {"icon": "temaki-bench", "fields": ["backrest"], "geometry": ["point", "vertex", "line"], "terms": ["seat"], "tags": {"amenity": "bench"}, "name": "Bench"},
+ "amenity/bicycle_parking": {"icon": "maki-bicycle", "fields": ["bicycle_parking", "capacity", "operator", "covered", "access_simple"], "geometry": ["point", "vertex", "area"], "terms": ["bike"], "tags": {"amenity": "bicycle_parking"}, "name": "Bicycle Parking"},
+ "amenity/bicycle_rental": {"icon": "maki-bicycle", "fields": ["capacity", "network", "operator", "payment_multi"], "geometry": ["point", "vertex", "area"], "terms": ["bike"], "tags": {"amenity": "bicycle_rental"}, "name": "Bicycle Rental"},
+ "amenity/bicycle_repair_station": {"icon": "maki-bicycle", "fields": ["operator", "brand", "opening_hours", "fee", "service/bicycle"], "geometry": ["point", "vertex"], "terms": ["bike", "repair", "chain", "pump"], "tags": {"amenity": "bicycle_repair_station"}, "name": "Bicycle Repair Tool Stand"},
+ "amenity/biergarten": {"icon": "maki-beer", "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "geometry": ["point", "area"], "tags": {"amenity": "biergarten"}, "terms": ["beer", "bier", "booze"], "name": "Beer Garden"},
+ "amenity/boat_rental": {"fields": ["name", "operator", "payment_multi"], "geometry": ["point", "area"], "tags": {"amenity": "boat_rental"}, "name": "Boat Rental"},
+ "amenity/bureau_de_change": {"icon": "maki-bank", "fields": ["name", "currency_multi", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["bureau de change", "money changer"], "tags": {"amenity": "bureau_de_change"}, "name": "Currency Exchange"},
+ "amenity/cafe": {"icon": "maki-cafe", "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "geometry": ["point", "area"], "terms": ["bistro", "coffee", "tea"], "tags": {"amenity": "cafe"}, "name": "Cafe"},
+ "amenity/car_pooling": {"icon": "maki-car", "fields": ["name", "operator", "capacity"], "geometry": ["point", "area"], "tags": {"amenity": "car_pooling"}, "name": "Car Pooling"},
+ "amenity/car_rental": {"icon": "maki-car", "fields": ["name", "operator", "payment_multi"], "geometry": ["point", "area"], "tags": {"amenity": "car_rental"}, "name": "Car Rental"},
+ "amenity/car_sharing": {"icon": "maki-car", "fields": ["name", "operator", "capacity", "payment_multi"], "geometry": ["point", "area"], "tags": {"amenity": "car_sharing"}, "name": "Car Sharing"},
+ "amenity/car_wash": {"icon": "maki-car", "fields": ["address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"amenity": "car_wash"}, "name": "Car Wash"},
+ "amenity/casino": {"icon": "temaki-dice", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "smoking"], "geometry": ["point", "area"], "terms": ["gambling", "roulette", "craps", "poker", "blackjack"], "tags": {"amenity": "casino"}, "name": "Casino"},
+ "amenity/charging_station": {"icon": "maki-car", "fields": ["operator", "capacity"], "geometry": ["point"], "tags": {"amenity": "charging_station"}, "terms": ["EV", "Electric Vehicle", "Supercharger"], "name": "Charging Station"},
+ "amenity/childcare": {"icon": "maki-school", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["daycare", "orphanage", "playgroup"], "tags": {"amenity": "childcare"}, "name": "Nursery/Childcare"},
+ "amenity/cinema": {"icon": "maki-cinema", "fields": ["name", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["drive-in", "film", "flick", "movie", "theater", "picture", "show", "screen"], "tags": {"amenity": "cinema"}, "name": "Cinema"},
+ "amenity/clinic": {"icon": "maki-doctor", "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["medical", "urgentcare"], "tags": {"amenity": "clinic"}, "addTags": {"amenity": "clinic", "healthcare": "clinic"}, "removeTags": {"amenity": "clinic", "healthcare": "clinic"}, "reference": {"key": "amenity", "value": "clinic"}, "name": "Clinic"},
+ "amenity/clinic/abortion": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": [], "tags": {"amenity": "clinic", "healthcare": "clinic", "healthcare:speciality": "abortion"}, "reference": {"key": "amenity", "value": "clinic"}, "name": "Abortion Clinic"},
+ "amenity/clinic/fertility": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["egg", "fertility", "reproductive", "sperm", "ovulation"], "tags": {"amenity": "clinic", "healthcare": "clinic", "healthcare:speciality": "fertility"}, "reference": {"key": "amenity", "value": "clinic"}, "name": "Fertility Clinic"},
+ "amenity/clock": {"icon": "temaki-clock", "fields": ["name", "support", "display", "visibility", "date", "faces"], "geometry": ["point", "vertex"], "tags": {"amenity": "clock"}, "name": "Clock"},
+ "amenity/college": {"icon": "maki-college", "fields": ["name", "operator", "address", "internet_access", "internet_access/ssid"], "geometry": ["point", "area"], "terms": ["university"], "tags": {"amenity": "college"}, "name": "College Grounds"},
+ "amenity/community_centre": {"icon": "maki-town-hall", "fields": ["name", "operator", "address", "building_area"], "geometry": ["point", "area"], "terms": ["event", "hall"], "tags": {"amenity": "community_centre"}, "name": "Community Center"},
+ "amenity/compressed_air": {"icon": "maki-car", "geometry": ["point", "area"], "tags": {"amenity": "compressed_air"}, "name": "Compressed Air"},
+ "amenity/courthouse": {"icon": "maki-town-hall", "fields": ["name", "operator", "address", "building_area"], "geometry": ["point", "area"], "tags": {"amenity": "courthouse"}, "name": "Courthouse"},
+ "amenity/crematorium": {"icon": "maki-cemetery", "fields": ["name", "website", "phone", "opening_hours", "wheelchair"], "geometry": ["area", "point"], "tags": {"amenity": "crematorium"}, "terms": ["cemetery", "funeral"], "name": "Crematorium"},
+ "amenity/dentist": {"icon": "maki-dentist", "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["tooth", "teeth"], "tags": {"amenity": "dentist"}, "addTags": {"amenity": "dentist", "healthcare": "dentist"}, "removeTags": {"amenity": "dentist", "healthcare": "dentist"}, "reference": {"key": "amenity", "value": "dentist"}, "name": "Dentist"},
+ "amenity/doctors": {"icon": "maki-doctor", "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["medic*", "physician"], "tags": {"amenity": "doctors"}, "addTags": {"amenity": "doctors", "healthcare": "doctor"}, "removeTags": {"amenity": "doctors", "healthcare": "doctor"}, "reference": {"key": "amenity", "value": "doctors"}, "name": "Doctor"},
+ "amenity/dojo": {"icon": "maki-pitch", "fields": ["name", "sport", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["martial arts", "dojang"], "tags": {"amenity": "dojo"}, "name": "Dojo / Martial Arts Academy"},
+ "amenity/drinking_water": {"icon": "maki-drinking-water", "geometry": ["point"], "tags": {"amenity": "drinking_water"}, "terms": ["fountain", "potable"], "name": "Drinking Water"},
+ "amenity/driving_school": {"icon": "maki-car", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"amenity": "driving_school"}, "name": "Driving School"},
+ "amenity/embassy": {"icon": "maki-embassy", "fields": ["name", "country", "address", "building_area"], "geometry": ["point", "area"], "tags": {"amenity": "embassy"}, "name": "Embassy"},
+ "amenity/fast_food": {"icon": "maki-fast-food", "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "geometry": ["point", "area"], "tags": {"amenity": "fast_food"}, "terms": ["restaurant", "takeaway"], "name": "Fast Food"},
+ "amenity/fire_station": {"icon": "maki-fire-station", "fields": ["name", "operator", "address", "building_area"], "geometry": ["point", "area"], "terms": [], "tags": {"amenity": "fire_station"}, "name": "Fire Station"},
+ "amenity/food_court": {"icon": "maki-restaurant", "fields": ["name", "operator", "address", "building_area", "opening_hours", "smoking", "outdoor_seating"], "geometry": ["point", "area"], "terms": ["fast food", "restaurant", "food"], "tags": {"amenity": "food_court"}, "name": "Food Court"},
+ "amenity/fountain": {"icon": "temaki-fountain", "fields": ["name"], "geometry": ["point", "area"], "tags": {"amenity": "fountain"}, "name": "Fountain"},
+ "amenity/fuel": {"icon": "maki-fuel", "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["petrol", "fuel", "gasoline", "propane", "diesel", "lng", "cng", "biodiesel"], "tags": {"amenity": "fuel"}, "name": "Gas Station"},
+ "amenity/grave_yard": {"icon": "maki-cemetery", "fields": ["religion", "denomination"], "geometry": ["point", "area"], "tags": {"amenity": "grave_yard"}, "name": "Graveyard"},
+ "amenity/grit_bin": {"fields": ["access_simple"], "geometry": ["point", "vertex"], "tags": {"amenity": "grit_bin"}, "terms": ["salt", "sand"], "name": "Grit Bin"},
+ "amenity/hospital": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "address", "emergency"], "geometry": ["point", "area"], "terms": ["clinic", "doctor", "emergency room", "health", "infirmary", "institution", "sanatorium", "sanitarium", "sick", "surgery", "ward"], "tags": {"amenity": "hospital"}, "addTags": {"amenity": "hospital", "healthcare": "hospital"}, "removeTags": {"amenity": "hospital", "healthcare": "hospital"}, "reference": {"key": "amenity", "value": "hospital"}, "name": "Hospital Grounds"},
+ "amenity/hunting_stand": {"icon": "temaki-binoculars", "geometry": ["point", "vertex", "area"], "terms": ["game", "gun", "lookout", "rifle", "shoot*", "wild", "watch"], "tags": {"amenity": "hunting_stand"}, "name": "Hunting Stand"},
+ "amenity/ice_cream": {"icon": "maki-ice-cream", "fields": ["name", "address", "building_area", "opening_hours", "takeaway", "delivery", "outdoor_seating"], "geometry": ["point", "area"], "terms": ["gelato", "sorbet", "sherbet", "frozen", "yogurt"], "tags": {"amenity": "ice_cream"}, "name": "Ice Cream Shop"},
+ "amenity/internet_cafe": {"icon": "temaki-antenna", "fields": ["name", "operator", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "geometry": ["point", "area"], "terms": ["cybercafe", "taxiphone", "teleboutique", "coffee", "cafe", "net", "lanhouse"], "tags": {"amenity": "internet_cafe"}, "name": "Internet Cafe"},
+ "amenity/kindergarten": {"icon": "maki-school", "fields": ["name", "operator", "address"], "geometry": ["point", "area"], "terms": ["kindergarden", "pre-school"], "tags": {"amenity": "kindergarten"}, "name": "Preschool/Kindergarten Grounds"},
+ "amenity/library": {"icon": "maki-library", "fields": ["name", "operator", "building_area", "address", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "ref/isil"], "geometry": ["point", "area"], "terms": ["book"], "tags": {"amenity": "library"}, "name": "Library"},
+ "amenity/love_hotel": {"icon": "maki-heart", "fields": ["name", "operator", "address", "building_area", "smoking", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"amenity": "love_hotel"}, "name": "Love Hotel"},
+ "amenity/marketplace": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building", "opening_hours"], "geometry": ["point", "area"], "tags": {"amenity": "marketplace"}, "name": "Marketplace"},
+ "amenity/monastery": {"icon": "maki-place-of-worship", "fields": ["name", "religion", "denomination", "address", "building_area"], "geometry": ["point", "area"], "terms": ["abbey", "basilica", "bethel", "cathedral", "chancel", "chantry", "chapel", "church", "fold", "house of God", "house of prayer", "house of worship", "minster", "mission", "monastery", "mosque", "oratory", "parish", "sacellum", "sanctuary", "shrine", "synagogue", "tabernacle", "temple"], "tags": {"amenity": "monastery"}, "name": "Monastery Grounds"},
+ "amenity/motorcycle_parking": {"icon": "fas-motorcycle", "fields": ["capacity", "operator", "covered", "access_simple"], "geometry": ["point", "vertex", "area"], "tags": {"amenity": "motorcycle_parking"}, "name": "Motorcycle Parking"},
+ "amenity/music_school": {"icon": "maki-school", "fields": ["name", "operator", "address"], "geometry": ["point", "area"], "terms": ["school of music"], "tags": {"amenity": "music_school"}, "name": "Music School"},
+ "amenity/nightclub": {"icon": "maki-bar", "fields": ["name", "operator", "address", "building_area", "opening_hours", "smoking"], "geometry": ["point", "area"], "tags": {"amenity": "nightclub"}, "terms": ["disco*", "night club", "dancing", "dance club"], "name": "Nightclub"},
+ "amenity/parking_entrance": {"icon": "maki-entrance-alt1", "fields": ["access_simple", "ref"], "geometry": ["vertex"], "tags": {"amenity": "parking_entrance"}, "name": "Parking Garage Entrance/Exit"},
+ "amenity/parking_space": {"fields": ["capacity"], "geometry": ["point", "vertex", "area"], "terms": [], "tags": {"amenity": "parking_space"}, "matchScore": 0.95, "name": "Parking Space"},
+ "amenity/parking": {"icon": "maki-parking", "fields": ["name", "operator", "parking", "capacity", "fee", "access_simple", "supervised", "park_ride", "surface", "maxstay"], "geometry": ["point", "vertex", "area"], "tags": {"amenity": "parking"}, "terms": [], "name": "Car Parking"},
+ "amenity/pavilion": {"icon": "maki-shelter", "fields": ["bin", "bench"], "geometry": ["point", "vertex", "area"], "tags": {"amenity": "shelter", "shelter_type": "pavilion"}, "name": "Pavilion"},
+ "amenity/pharmacy": {"icon": "maki-pharmacy", "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "geometry": ["point", "area"], "tags": {"amenity": "pharmacy"}, "addTags": {"amenity": "pharmacy", "healthcare": "pharmacy"}, "removeTags": {"amenity": "pharmacy", "healthcare": "pharmacy"}, "reference": {"key": "amenity", "value": "pharmacy"}, "terms": ["drug*", "med*", "prescription"], "name": "Pharmacy"},
+ "amenity/place_of_worship": {"icon": "maki-place-of-worship", "fields": ["name", "religion", "denomination", "address", "building_area", "service_times"], "geometry": ["point", "area"], "terms": ["abbey", "basilica", "bethel", "cathedral", "chancel", "chantry", "chapel", "church", "fold", "house of God", "house of prayer", "house of worship", "minster", "mission", "mosque", "oratory", "parish", "sacellum", "sanctuary", "shrine", "synagogue", "tabernacle", "temple"], "tags": {"amenity": "place_of_worship"}, "name": "Place of Worship"},
+ "amenity/place_of_worship/buddhist": {"icon": "maki-buddhism", "fields": ["name", "denomination", "building_area", "address", "service_times"], "geometry": ["point", "area"], "terms": ["stupa", "vihara", "monastery", "temple", "pagoda", "zendo", "dojo"], "tags": {"amenity": "place_of_worship", "religion": "buddhist"}, "reference": {"key": "amenity", "value": "place_of_worship"}, "name": "Buddhist Temple"},
+ "amenity/place_of_worship/christian": {"icon": "maki-religious-christian", "fields": ["name", "denomination", "building_area", "address", "service_times"], "geometry": ["point", "area"], "terms": ["christian", "abbey", "basilica", "bethel", "cathedral", "chancel", "chantry", "chapel", "fold", "house of God", "house of prayer", "house of worship", "minster", "mission", "oratory", "parish", "sacellum", "sanctuary", "shrine", "tabernacle", "temple"], "tags": {"amenity": "place_of_worship", "religion": "christian"}, "reference": {"key": "amenity", "value": "place_of_worship"}, "name": "Church"},
+ "amenity/place_of_worship/hindu": {"icon": "temaki-hinduism", "fields": ["name", "denomination", "building_area", "address", "service_times"], "geometry": ["point", "area"], "terms": ["kovil", "devasthana", "mandir", "kshetram", "alayam", "shrine", "temple"], "tags": {"amenity": "place_of_worship", "religion": "hindu"}, "reference": {"key": "amenity", "value": "place_of_worship"}, "name": "Hindu Temple"},
+ "amenity/place_of_worship/jewish": {"icon": "maki-religious-jewish", "fields": ["name", "denomination", "building_area", "address", "service_times"], "geometry": ["point", "area"], "terms": ["jewish"], "tags": {"amenity": "place_of_worship", "religion": "jewish"}, "reference": {"key": "amenity", "value": "place_of_worship"}, "name": "Synagogue"},
+ "amenity/place_of_worship/muslim": {"icon": "maki-religious-muslim", "fields": ["name", "denomination", "building_area", "address", "service_times"], "geometry": ["point", "area"], "terms": ["muslim"], "tags": {"amenity": "place_of_worship", "religion": "muslim"}, "reference": {"key": "amenity", "value": "place_of_worship"}, "name": "Mosque"},
+ "amenity/place_of_worship/shinto": {"icon": "temaki-shinto", "fields": ["name", "denomination", "building_area", "address", "service_times"], "geometry": ["point", "area"], "terms": ["kami", "torii"], "tags": {"amenity": "place_of_worship", "religion": "shinto"}, "reference": {"key": "amenity", "value": "place_of_worship"}, "name": "Shinto Shrine"},
+ "amenity/place_of_worship/sikh": {"icon": "temaki-sikhism", "fields": ["name", "denomination", "building_area", "address", "service_times"], "geometry": ["point", "area"], "terms": ["gurudwara", "temple"], "tags": {"amenity": "place_of_worship", "religion": "sikh"}, "reference": {"key": "amenity", "value": "place_of_worship"}, "name": "Sikh Temple"},
+ "amenity/place_of_worship/taoist": {"icon": "temaki-taoism", "fields": ["name", "denomination", "building_area", "address", "service_times"], "geometry": ["point", "area"], "terms": ["daoist", "monastery", "temple"], "tags": {"amenity": "place_of_worship", "religion": "taoist"}, "reference": {"key": "amenity", "value": "place_of_worship"}, "name": "Taoist Temple"},
+ "amenity/planetarium": {"icon": "maki-museum", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["museum", "astronomy", "observatory"], "tags": {"amenity": "planetarium"}, "name": "Planetarium"},
+ "amenity/police": {"icon": "maki-police", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["badge", "constable", "constabulary", "cop", "detective", "fed", "law", "enforcement", "officer", "patrol"], "tags": {"amenity": "police"}, "name": "Police"},
+ "amenity/post_box": {"icon": "maki-post", "fields": ["operator", "collection_times", "drive_through", "ref"], "geometry": ["point", "vertex"], "tags": {"amenity": "post_box"}, "terms": ["letter", "post"], "name": "Mailbox"},
+ "amenity/post_office": {"icon": "maki-post", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["letter", "mail"], "tags": {"amenity": "post_office"}, "name": "Post Office"},
+ "amenity/prison": {"icon": "maki-prison", "fields": ["name", "operator", "address"], "geometry": ["point", "area"], "terms": ["cell", "jail"], "tags": {"amenity": "prison"}, "name": "Prison Grounds"},
+ "amenity/pub": {"icon": "maki-beer", "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "geometry": ["point", "area"], "tags": {"amenity": "pub"}, "terms": ["alcohol", "drink", "dive", "beer", "bier", "booze"], "name": "Pub"},
+ "amenity/public_bath": {"icon": "maki-water", "fields": ["name", "bath/type", "bath/open_air", "bath/sand_bath", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"amenity": "public_bath"}, "terms": ["onsen", "foot bath", "hot springs"], "name": "Public Bath"},
+ "amenity/public_bookcase": {"icon": "maki-library", "fields": ["name", "operator", "capacity", "website"], "geometry": ["point", "area"], "terms": ["library", "bookcrossing"], "tags": {"amenity": "public_bookcase"}, "name": "Public Bookcase"},
+ "amenity/ranger_station": {"icon": "maki-ranger-station", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["visitor center", "visitor centre", "permit center", "permit centre", "backcountry office", "warden office", "warden center"], "tags": {"amenity": "ranger_station"}, "name": "Ranger Station"},
+ "amenity/recycling_centre": {"icon": "maki-recycling", "fields": ["name", "operator", "address", "building", "opening_hours", "recycling_accepts"], "geometry": ["point", "area"], "terms": ["bottle", "can", "dump", "glass", "garbage", "rubbish", "scrap", "trash"], "tags": {"amenity": "recycling", "recycling_type": "centre"}, "reference": {"key": "recycling_type", "value": "*"}, "name": "Recycling Center"},
+ "amenity/recycling": {"icon": "maki-recycling", "fields": ["recycling_accepts", "collection_times"], "geometry": ["point", "area"], "terms": ["bin", "can", "bottle", "glass", "garbage", "rubbish", "scrap", "trash"], "tags": {"amenity": "recycling"}, "addTags": {"amenity": "recycling", "recycling_type": "container"}, "removeTags": {"amenity": "recycling", "recycling_type": "container"}, "reference": {"key": "amenity", "value": "recycling"}, "name": "Recycling Container"},
+ "amenity/restaurant": {"icon": "maki-restaurant", "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "coffee", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "restaurant"}, "name": "Restaurant"},
+ "amenity/sanitary_dump_station": {"icon": "temaki-storage_tank", "fields": ["operator", "access_simple", "fee", "water_point"], "geometry": ["point", "vertex", "area"], "terms": ["Motor Home", "Camper", "Sanitary", "Dump Station", "Elsan", "CDP", "CTDP", "Chemical Toilet"], "tags": {"amenity": "sanitary_dump_station"}, "name": "RV Toilet Disposal"},
+ "amenity/school": {"icon": "maki-school", "fields": ["name", "operator", "address", "religion", "denomination"], "geometry": ["point", "area"], "terms": ["academy", "elementary school", "middle school", "high school"], "tags": {"amenity": "school"}, "name": "School Grounds"},
+ "amenity/shelter": {"icon": "maki-shelter", "fields": ["name", "shelter_type", "bin"], "geometry": ["point", "vertex", "area"], "terms": ["lean-to", "gazebo", "picnic"], "tags": {"amenity": "shelter"}, "name": "Shelter"},
+ "amenity/shower": {"icon": "temaki-shower", "fields": ["operator", "opening_hours", "fee", "supervised", "building_area"], "geometry": ["point", "vertex", "area"], "terms": ["rain closet"], "tags": {"amenity": "shower"}, "name": "Shower"},
+ "amenity/smoking_area": {"icon": "fas-smoking", "fields": ["name", "shelter", "bin", "bench", "opening_hours"], "geometry": ["point", "vertex", "area"], "terms": [], "tags": {"amenity": "smoking_area"}, "name": "Smoking Area"},
+ "amenity/social_facility": {"icon": "temaki-social_facility", "fields": ["name", "operator", "address", "building_area", "social_facility", "social_facility_for", "opening_hours", "wheelchair"], "geometry": ["point", "area"], "terms": [], "tags": {"amenity": "social_facility"}, "name": "Social Facility"},
+ "amenity/social_facility/food_bank": {"icon": "temaki-social_facility", "fields": ["name", "operator", "address", "building_area", "social_facility", "social_facility_for", "opening_hours"], "geometry": ["point", "area"], "terms": [], "tags": {"amenity": "social_facility", "social_facility": "food_bank"}, "reference": {"key": "social_facility", "value": "food_bank"}, "name": "Food Bank"},
+ "amenity/social_facility/group_home": {"icon": "maki-wheelchair", "fields": ["name", "operator", "address", "building_area", "social_facility", "social_facility_for", "opening_hours", "wheelchair"], "geometry": ["point", "area"], "terms": ["old", "senior", "living", "care home", "assisted living"], "tags": {"amenity": "social_facility", "social_facility": "group_home", "social_facility:for": "senior"}, "reference": {"key": "social_facility", "value": "group_home"}, "name": "Elderly Group Home"},
+ "amenity/social_facility/homeless_shelter": {"icon": "temaki-social_facility", "fields": ["name", "operator", "address", "building_area", "social_facility", "social_facility_for", "opening_hours", "wheelchair", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "terms": ["houseless", "unhoused", "displaced"], "tags": {"amenity": "social_facility", "social_facility": "shelter", "social_facility:for": "homeless"}, "reference": {"key": "social_facility", "value": "shelter"}, "name": "Homeless Shelter"},
+ "amenity/social_facility/nursing_home": {"icon": "maki-wheelchair", "fields": ["name", "operator", "address", "building_area", "social_facility", "social_facility_for", "opening_hours", "wheelchair"], "geometry": ["point", "area"], "terms": ["elderly", "living", "nursing", "old", "senior", "assisted living"], "tags": {"amenity": "social_facility", "social_facility": "nursing_home", "social_facility:for": "senior"}, "reference": {"key": "social_facility", "value": "nursing_home"}, "name": "Nursing Home"},
+ "amenity/studio": {"icon": "maki-karaoke", "fields": ["name", "studio", "address", "building_area"], "geometry": ["point", "area"], "terms": ["recording", "radio", "television"], "tags": {"amenity": "studio"}, "name": "Studio"},
+ "amenity/taxi": {"icon": "fas-taxi", "fields": ["name", "operator", "capacity"], "geometry": ["point", "vertex", "area"], "terms": ["cab"], "tags": {"amenity": "taxi"}, "name": "Taxi Stand"},
+ "amenity/telephone": {"icon": "maki-telephone", "fields": ["operator", "phone", "fee", "payment_multi", "covered", "indoor"], "geometry": ["point", "vertex"], "tags": {"amenity": "telephone"}, "terms": ["phone"], "name": "Telephone"},
+ "amenity/theatre": {"icon": "maki-theatre", "fields": ["name", "operator", "address", "building_area"], "geometry": ["point", "area"], "terms": ["theatre", "performance", "play", "musical"], "tags": {"amenity": "theatre"}, "name": "Theater"},
+ "amenity/toilets": {"icon": "maki-toilet", "fields": ["toilets/disposal", "operator", "building_area", "access_simple", "gender", "fee", "diaper"], "geometry": ["point", "vertex", "area"], "terms": ["bathroom", "restroom", "outhouse", "privy", "head", "lavatory", "latrine", "water closet", "WC", "W.C."], "tags": {"amenity": "toilets"}, "name": "Toilets"},
+ "amenity/townhall": {"icon": "maki-town-hall", "fields": ["name", "operator", "address", "building_area"], "geometry": ["point", "area"], "terms": ["village", "city", "government", "courthouse", "municipal"], "tags": {"amenity": "townhall"}, "name": "Town Hall"},
+ "amenity/university": {"icon": "maki-college", "fields": ["name", "operator", "address", "internet_access", "internet_access/ssid"], "geometry": ["point", "area"], "terms": ["college"], "tags": {"amenity": "university"}, "name": "University Grounds"},
+ "amenity/vending_machine": {"icon": "temaki-vending_machine", "fields": ["vending", "operator", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": [], "tags": {"amenity": "vending_machine"}, "name": "Vending Machine"},
+ "amenity/vending_machine/news_papers": {"icon": "temaki-vending_machine", "fields": ["vending", "operator", "fee", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": ["newspaper"], "tags": {"amenity": "vending_machine", "vending": "news_papers"}, "reference": {"key": "vending", "value": "newspapers"}, "name": "Newspaper Vending Machine", "searchable": false},
+ "amenity/vending_machine/cigarettes": {"icon": "temaki-vending_machine", "fields": ["vending", "operator", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": ["cigarette"], "tags": {"amenity": "vending_machine", "vending": "cigarettes"}, "reference": {"key": "vending", "value": "cigarettes"}, "name": "Cigarette Vending Machine"},
+ "amenity/vending_machine/coffee": {"icon": "temaki-vending_machine", "fields": ["vending", "operator", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": ["coffee"], "tags": {"amenity": "vending_machine", "vending": "coffee"}, "reference": {"key": "vending", "value": "coffee"}, "name": "Coffee Vending Machine"},
+ "amenity/vending_machine/condoms": {"icon": "temaki-vending_machine", "fields": ["vending", "operator", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": ["condom"], "tags": {"amenity": "vending_machine", "vending": "condoms"}, "reference": {"key": "vending", "value": "condoms"}, "name": "Condom Vending Machine"},
+ "amenity/vending_machine/drinks": {"icon": "temaki-vending_machine", "fields": ["vending", "operator", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": ["drink", "soda", "beverage", "juice", "pop"], "tags": {"amenity": "vending_machine", "vending": "drinks"}, "reference": {"key": "vending", "value": "drinks"}, "name": "Drink Vending Machine"},
+ "amenity/vending_machine/electronics": {"icon": "temaki-vending_machine", "fields": ["vending", "operator", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": ["cable", "charger", "earbud", "headphone", "phone", "tablet"], "tags": {"amenity": "vending_machine", "vending": "electronics"}, "reference": {"key": "vending", "value": "electronics"}, "name": "Electronics Vending Machine"},
+ "amenity/vending_machine/elongated_coin": {"icon": "temaki-vending_machine", "fields": ["vending", "operator", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": ["coin", "crush", "elongated", "flatten", "penny", "souvenir"], "tags": {"amenity": "vending_machine", "vending": "elongated_coin"}, "reference": {"key": "vending", "value": "elongated_coin"}, "name": "Flat Coin Vending Machine"},
+ "amenity/vending_machine/excrement_bags": {"icon": "temaki-vending_machine", "fields": ["vending", "operator", "fee", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": ["excrement bags", "poop", "dog", "animal"], "tags": {"amenity": "vending_machine", "vending": "excrement_bags"}, "reference": {"key": "vending", "value": "excrement_bags"}, "name": "Excrement Bag Vending Machine"},
+ "amenity/vending_machine/feminine_hygiene": {"icon": "temaki-vending_machine", "fields": ["vending", "operator", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": ["condom", "tampon", "pad", "woman", "women", "menstrual hygiene products", "personal care"], "tags": {"amenity": "vending_machine", "vending": "feminine_hygiene"}, "reference": {"key": "vending", "value": "feminine_hygiene"}, "name": "Feminine Hygiene Vending Machine"},
+ "amenity/vending_machine/food": {"icon": "temaki-vending_machine", "fields": ["vending", "operator", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": ["food"], "tags": {"amenity": "vending_machine", "vending": "food"}, "reference": {"key": "vending", "value": "food"}, "name": "Food Vending Machine"},
+ "amenity/vending_machine/fuel": {"icon": "maki-fuel", "fields": ["vending", "operator", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": ["petrol", "fuel", "gasoline", "propane", "diesel", "lng", "cng", "biodiesel"], "tags": {"amenity": "vending_machine", "vending": "fuel"}, "reference": {"key": "vending", "value": "fuel"}, "name": "Gas Pump"},
+ "amenity/vending_machine/ice_cream": {"icon": "temaki-vending_machine", "fields": ["vending", "operator", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": ["chocolate", "ice cream", "frozen", "popsicle", "vanilla"], "tags": {"amenity": "vending_machine", "vending": "ice_cream"}, "reference": {"key": "vending", "value": "ice_cream"}, "name": "Ice Cream Vending Machine"},
+ "amenity/vending_machine/newspapers": {"icon": "temaki-vending_machine", "fields": ["vending", "operator", "fee", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": ["newspaper"], "tags": {"amenity": "vending_machine", "vending": "newspapers"}, "reference": {"key": "vending", "value": "newspapers"}, "name": "Newspaper Vending Machine"},
+ "amenity/vending_machine/parcel_pickup_dropoff": {"icon": "temaki-vending_machine", "fields": ["vending", "operator", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": ["parcel", "mail", "pickup"], "tags": {"amenity": "vending_machine", "vending": "parcel_pickup;parcel_mail_in"}, "reference": {"key": "vending", "value": "parcel_pickup;parcel_mail_in"}, "name": "Parcel Pickup/Dropoff Vending Machine"},
+ "amenity/vending_machine/parking_tickets": {"icon": "temaki-vending_machine", "fields": ["vending", "operator", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": ["parking", "ticket"], "tags": {"amenity": "vending_machine", "vending": "parking_tickets"}, "reference": {"key": "vending", "value": "parking_tickets"}, "matchScore": 0.94, "name": "Parking Ticket Vending Machine"},
+ "amenity/vending_machine/public_transport_tickets": {"icon": "temaki-vending_machine", "fields": ["vending", "operator", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": ["bus", "train", "ferry", "rail", "ticket", "transportation"], "tags": {"amenity": "vending_machine", "vending": "public_transport_tickets"}, "reference": {"key": "vending", "value": "public_transport_tickets"}, "name": "Transit Ticket Vending Machine"},
+ "amenity/vending_machine/stamps": {"icon": "temaki-vending_machine", "fields": ["vending", "operator", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": ["mail", "postage", "stamp"], "tags": {"amenity": "vending_machine", "vending": "stamps"}, "reference": {"key": "vending", "value": "stamps"}, "name": "Postage Vending Machine"},
+ "amenity/vending_machine/sweets": {"icon": "temaki-vending_machine", "fields": ["vending", "operator", "payment_multi", "currency_multi"], "geometry": ["point"], "terms": ["candy", "gum", "chip", "pretzel", "cookie", "cracker"], "tags": {"amenity": "vending_machine", "vending": "sweets"}, "reference": {"key": "vending", "value": "sweets"}, "name": "Snack Vending Machine"},
+ "amenity/veterinary": {"icon": "maki-veterinary", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["pet clinic", "veterinarian", "animal hospital", "pet doctor"], "tags": {"amenity": "veterinary"}, "name": "Veterinary"},
+ "amenity/waste_basket": {"icon": "maki-waste-basket", "fields": ["collection_times"], "geometry": ["point", "vertex"], "tags": {"amenity": "waste_basket"}, "terms": ["bin", "garbage", "rubbish", "litter", "trash"], "name": "Waste Basket"},
+ "amenity/waste_disposal": {"icon": "maki-waste-basket", "fields": ["collection_times"], "geometry": ["point", "vertex", "area"], "tags": {"amenity": "waste_disposal"}, "terms": ["garbage", "rubbish", "litter", "trash"], "name": "Garbage Dumpster"},
+ "amenity/waste_transfer_station": {"icon": "maki-waste-basket", "fields": ["name", "operator", "address", "opening_hours"], "geometry": ["point", "area"], "terms": ["dump", "garbage", "recycling", "rubbish", "scrap", "trash"], "tags": {"amenity": "waste_transfer_station"}, "name": "Waste Transfer Station"},
+ "amenity/waste/dog_excrement": {"icon": "maki-waste-basket", "fields": ["collection_times"], "geometry": ["point", "vertex", "area"], "tags": {"amenity": "waste_basket", "waste": "dog_excrement"}, "reference": {"key": "waste", "value": "dog_excrement"}, "terms": ["bin", "garbage", "rubbish", "litter", "trash", "poo", "dog"], "name": "Dog Excrement Bin"},
+ "amenity/water_point": {"icon": "maki-drinking-water", "geometry": ["area", "vertex", "point"], "tags": {"amenity": "water_point"}, "name": "RV Drinking Water"},
+ "amenity/watering_place": {"icon": "maki-drinking-water", "geometry": ["area", "vertex", "point"], "tags": {"amenity": "watering_place"}, "name": "Animal Watering Place"},
+ "area": {"fields": ["name"], "geometry": ["area"], "tags": {"area": "yes"}, "name": "Area", "matchScore": 0.1},
+ "area/highway": {"fields": ["name", "area/highway"], "geometry": ["area"], "tags": {"area:highway": "*"}, "name": "Road Surface"},
+ "attraction/amusement_ride": {"icon": "maki-amusement-park", "fields": ["name", "operator", "opening_hours"], "geometry": ["point", "area"], "terms": ["theme park", "carnival ride"], "tags": {"attraction": "amusement_ride"}, "name": "Amusement Ride"},
+ "attraction/animal": {"icon": "maki-zoo", "fields": ["name", "operator"], "geometry": ["point", "area"], "terms": ["zoo", "theme park", "animal park", "lion", "tiger", "bear"], "tags": {"attraction": "animal"}, "name": "Animal"},
+ "attraction/big_wheel": {"icon": "maki-amusement-park", "fields": ["name", "operator", "height", "opening_hours"], "geometry": ["point"], "terms": ["ferris wheel", "theme park", "amusement ride"], "tags": {"attraction": "big_wheel"}, "name": "Big Wheel"},
+ "attraction/bumper_car": {"icon": "maki-car", "fields": ["name", "operator", "opening_hours"], "geometry": ["point", "area"], "terms": ["theme park", "dodgem cars", "autoscooter"], "tags": {"attraction": "bumper_car"}, "name": "Bumper Car"},
+ "attraction/bungee_jumping": {"icon": "maki-pitch", "fields": ["name", "operator", "height", "opening_hours"], "geometry": ["point", "area"], "terms": ["theme park", "bungy jumping", "jumping platform"], "tags": {"attraction": "bungee_jumping"}, "name": "Bungee Jumping"},
+ "attraction/carousel": {"icon": "maki-horse-riding", "fields": ["name", "operator", "opening_hours"], "geometry": ["point", "area"], "terms": ["theme park", "roundabout", "merry-go-round", "galloper", "jumper", "horseabout", "flying horses"], "tags": {"attraction": "carousel"}, "name": "Carousel"},
+ "attraction/dark_ride": {"icon": "maki-rail-metro", "fields": ["name", "operator", "opening_hours"], "geometry": ["point", "line", "area"], "terms": ["theme park", "ghost train"], "tags": {"attraction": "dark_ride"}, "name": "Dark Ride"},
+ "attraction/drop_tower": {"icon": "temaki-tower", "fields": ["name", "operator", "height", "opening_hours"], "geometry": ["point", "area"], "terms": ["theme park", "amusement ride", "gondola", "tower", "big drop"], "tags": {"attraction": "drop_tower"}, "name": "Drop Tower"},
+ "attraction/maze": {"icon": "maki-amusement-park", "fields": ["name", "operator"], "geometry": ["point", "area"], "terms": ["theme park", "amusement ride", "labyrinth"], "tags": {"attraction": "maze"}, "name": "Maze"},
+ "attraction/pirate_ship": {"icon": "maki-danger", "fields": ["name", "operator", "opening_hours"], "geometry": ["point"], "terms": ["theme park", "carnival ride", "amusement ride"], "tags": {"attraction": "pirate_ship"}, "name": "Pirate Ship"},
+ "attraction/river_rafting": {"icon": "maki-ferry", "fields": ["name", "operator", "opening_hours"], "geometry": ["point", "line"], "terms": ["theme park", "aquatic park", "water park", "rafting simulator", "river rafting ride", "river rapids ride"], "tags": {"attraction": "river_rafting"}, "name": "River Rafting"},
+ "attraction/roller_coaster": {"icon": "maki-amusement-park", "fields": ["name", "operator", "opening_hours"], "geometry": ["point", "area"], "terms": ["theme park", "amusement ride"], "tags": {"attraction": "roller_coaster"}, "name": "Roller Coaster"},
+ "attraction/train": {"icon": "maki-rail", "fields": ["name", "operator", "fee", "opening_hours"], "geometry": ["point", "line"], "terms": ["theme park", "rackless train", "road train", "Tschu-Tschu train", "dotto train", "park train"], "tags": {"attraction": "train"}, "name": "Tourist Train"},
+ "attraction/water_slide": {"icon": "maki-swimming", "fields": ["name", "operator", "opening_hours"], "geometry": ["line", "area"], "terms": ["theme park", "aquatic park", "water park", "flumes", "water chutes", "hydroslides"], "tags": {"attraction": "water_slide"}, "name": "Water Slide"},
+ "barrier": {"icon": "maki-roadblock", "geometry": ["point", "vertex", "line", "area"], "tags": {"barrier": "*"}, "fields": ["barrier"], "name": "Barrier", "matchScore": 0.4},
+ "barrier/entrance": {"icon": "maki-entrance-alt1", "geometry": ["vertex"], "tags": {"barrier": "entrance"}, "name": "Entrance", "searchable": false},
+ "barrier/block": {"icon": "maki-roadblock", "fields": ["access"], "geometry": ["point", "vertex"], "tags": {"barrier": "block"}, "name": "Block"},
+ "barrier/bollard": {"icon": "maki-roadblock", "fields": ["access"], "geometry": ["point", "vertex", "line"], "tags": {"barrier": "bollard"}, "name": "Bollard"},
+ "barrier/border_control": {"icon": "maki-roadblock", "fields": ["access", "building_area"], "geometry": ["vertex", "area"], "tags": {"barrier": "border_control"}, "name": "Border Control"},
+ "barrier/cattle_grid": {"icon": "maki-barrier", "geometry": ["vertex"], "tags": {"barrier": "cattle_grid"}, "name": "Cattle Grid"},
+ "barrier/city_wall": {"icon": "maki-barrier", "fields": ["height"], "geometry": ["line", "area"], "tags": {"barrier": "city_wall"}, "name": "City Wall"},
+ "barrier/cycle_barrier": {"icon": "maki-roadblock", "fields": ["access"], "geometry": ["vertex"], "tags": {"barrier": "cycle_barrier"}, "name": "Cycle Barrier"},
+ "barrier/ditch": {"icon": "maki-roadblock", "geometry": ["line", "area"], "tags": {"barrier": "ditch"}, "name": "Trench", "matchScore": 0.25},
+ "barrier/fence": {"icon": "maki-fence", "fields": ["fence_type", "height"], "geometry": ["line"], "tags": {"barrier": "fence"}, "name": "Fence", "matchScore": 0.25},
+ "barrier/gate": {"icon": "maki-barrier", "fields": ["access"], "geometry": ["vertex", "line"], "tags": {"barrier": "gate"}, "name": "Gate"},
+ "barrier/hedge": {"fields": ["height"], "geometry": ["line", "area"], "tags": {"barrier": "hedge"}, "name": "Hedge", "matchScore": 0.25},
+ "barrier/kerb": {"icon": "maki-wheelchair", "fields": ["kerb", "tactile_paving"], "geometry": ["vertex", "line"], "tags": {"barrier": "kerb"}, "name": "Kerb"},
+ "barrier/kissing_gate": {"icon": "maki-barrier", "fields": ["access"], "geometry": ["vertex"], "tags": {"barrier": "kissing_gate"}, "name": "Kissing Gate"},
+ "barrier/lift_gate": {"icon": "maki-roadblock", "fields": ["access"], "geometry": ["vertex", "line"], "tags": {"barrier": "lift_gate"}, "name": "Lift Gate"},
+ "barrier/retaining_wall": {"geometry": ["line", "area"], "tags": {"barrier": "retaining_wall"}, "name": "Retaining Wall"},
+ "barrier/stile": {"icon": "maki-roadblock", "fields": ["access"], "geometry": ["vertex"], "tags": {"barrier": "stile"}, "name": "Stile"},
+ "barrier/toll_booth": {"icon": "maki-roadblock", "fields": ["access", "building_area"], "geometry": ["vertex", "area"], "tags": {"barrier": "toll_booth"}, "name": "Toll Booth"},
+ "barrier/wall": {"icon": "maki-barrier", "fields": ["wall", "height"], "geometry": ["line", "area"], "tags": {"barrier": "wall"}, "name": "Wall", "matchScore": 0.25},
+ "boundary/administrative": {"name": "Administrative Boundary", "geometry": ["line"], "tags": {"boundary": "administrative"}, "fields": ["name", "admin_level"]},
+ "building": {"icon": "maki-home", "fields": ["name", "building", "levels", "height", "address"], "geometry": ["point", "area"], "tags": {"building": "*"}, "matchScore": 0.6, "terms": [], "name": "Building"},
+ "building/bunker": {"fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "bunker"}, "matchScore": 0.5, "name": "Bunker", "searchable": false},
+ "building/entrance": {"icon": "maki-entrance-alt1", "geometry": ["vertex"], "tags": {"building": "entrance"}, "name": "Entrance/Exit", "searchable": false},
+ "building/train_station": {"icon": "maki-building", "fields": ["name", "address", "levels", "height"], "geometry": ["point", "vertex", "area"], "tags": {"building": "train_station"}, "matchScore": 0.5, "name": "Train Station", "searchable": false},
+ "building/apartments": {"icon": "maki-building", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "apartments"}, "matchScore": 0.5, "name": "Apartments"},
+ "building/barn": {"icon": "maki-farm", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "barn"}, "matchScore": 0.5, "name": "Barn"},
+ "building/boathouse": {"icon": "maki-harbor", "fields": ["name", "levels", "height", "address"], "geometry": ["area"], "tags": {"building": "boathouse"}, "matchScore": 0.5, "terms": [], "name": "Boathouse"},
+ "building/bungalow": {"icon": "maki-home", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "bungalow"}, "terms": ["home", "detached"], "matchScore": 0.5, "name": "Bungalow"},
+ "building/cabin": {"icon": "maki-home", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "cabin"}, "matchScore": 0.5, "name": "Cabin"},
+ "building/cathedral": {"icon": "maki-place-of-worship", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "cathedral"}, "matchScore": 0.5, "name": "Cathedral Building"},
+ "building/chapel": {"icon": "maki-place-of-worship", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "chapel"}, "matchScore": 0.5, "name": "Chapel Building"},
+ "building/church": {"icon": "maki-place-of-worship", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "church"}, "matchScore": 0.5, "name": "Church Building"},
+ "building/civic": {"icon": "maki-building", "fields": ["name", "address", "levels", "height", "smoking"], "geometry": ["area"], "tags": {"building": "civic"}, "matchScore": 0.5, "name": "Civic Building"},
+ "building/college": {"icon": "maki-building", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "terms": ["university"], "tags": {"building": "college"}, "matchScore": 0.5, "name": "College Building"},
+ "building/commercial": {"icon": "maki-suitcase", "fields": ["name", "address", "levels", "height", "smoking"], "geometry": ["area"], "tags": {"building": "commercial"}, "matchScore": 0.5, "name": "Commercial Building"},
+ "building/construction": {"icon": "maki-building", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "construction"}, "matchScore": 0.5, "name": "Building Under Construction"},
+ "building/detached": {"icon": "maki-home", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "detached"}, "terms": ["home", "single", "family", "residence", "dwelling"], "matchScore": 0.5, "name": "Detached House"},
+ "building/dormitory": {"icon": "maki-building", "fields": ["name", "address", "levels", "height", "smoking"], "geometry": ["area"], "tags": {"building": "dormitory"}, "matchScore": 0.5, "name": "Dormitory"},
+ "building/farm_auxiliary": {"icon": "maki-farm", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "farm_auxiliary"}, "matchScore": 0.5, "name": "Farm Building"},
+ "building/farm": {"icon": "maki-farm", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "farm"}, "matchScore": 0.5, "name": "Farm House"},
+ "building/garage": {"icon": "fas-warehouse", "fields": ["name", "capacity"], "geometry": ["area"], "tags": {"building": "garage"}, "matchScore": 0.5, "name": "Garage"},
+ "building/garages": {"icon": "fas-warehouse", "fields": ["name", "capacity"], "geometry": ["area"], "tags": {"building": "garages"}, "matchScore": 0.5, "name": "Garages"},
+ "building/grandstand": {"icon": "maki-building", "fields": ["name", "height"], "geometry": ["area"], "tags": {"building": "grandstand"}, "terms": ["tribune", "stand", "stands", "bleachers"], "matchScore": 0.5, "name": "Grandstand"},
+ "building/greenhouse": {"icon": "maki-garden-center", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "greenhouse"}, "matchScore": 0.5, "name": "Greenhouse"},
+ "building/hospital": {"icon": "maki-building", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "hospital"}, "matchScore": 0.5, "name": "Hospital Building"},
+ "building/hotel": {"icon": "maki-building", "fields": ["name", "address", "levels", "height", "smoking"], "geometry": ["area"], "tags": {"building": "hotel"}, "matchScore": 0.5, "name": "Hotel Building"},
+ "building/house": {"icon": "maki-home", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "house"}, "terms": ["home", "family", "residence", "dwelling"], "matchScore": 0.5, "name": "House"},
+ "building/hut": {"geometry": ["area"], "fields": ["name"], "tags": {"building": "hut"}, "matchScore": 0.5, "name": "Hut"},
+ "building/industrial": {"icon": "maki-industry", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "industrial"}, "matchScore": 0.5, "name": "Industrial Building"},
+ "building/kindergarten": {"icon": "maki-building", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "terms": ["kindergarden", "pre-school"], "tags": {"building": "kindergarten"}, "matchScore": 0.5, "name": "Preschool/Kindergarten Building"},
+ "building/mosque": {"icon": "maki-place-of-worship", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "mosque"}, "matchScore": 0.5, "name": "Mosque Building"},
+ "building/public": {"icon": "maki-building", "fields": ["name", "address", "levels", "height", "smoking"], "geometry": ["area"], "tags": {"building": "public"}, "matchScore": 0.5, "name": "Public Building"},
+ "building/residential": {"icon": "maki-residential-community", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "residential"}, "matchScore": 0.5, "name": "Residential Building"},
+ "building/retail": {"icon": "maki-commercial", "fields": ["name", "address", "levels", "height", "smoking"], "geometry": ["area"], "tags": {"building": "retail"}, "matchScore": 0.5, "name": "Retail Building"},
+ "building/roof": {"icon": "maki-shelter", "fields": ["name", "address"], "geometry": ["area"], "tags": {"building": "roof"}, "matchScore": 0.5, "name": "Roof"},
+ "building/ruins": {"icon": "temaki-ruins", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "ruins"}, "matchScore": 0.5, "name": "Building Ruins"},
+ "building/school": {"icon": "maki-building", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "terms": ["academy", "elementary school", "middle school", "high school"], "tags": {"building": "school"}, "matchScore": 0.5, "name": "School Building"},
+ "building/semidetached_house": {"icon": "maki-home", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "semidetached_house"}, "terms": ["home", "double", "duplex", "twin", "family", "residence", "dwelling"], "matchScore": 0.5, "name": "Semi-Detached House"},
+ "building/service": {"icon": "maki-home", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "service"}, "matchScore": 0.5, "name": "Service Building"},
+ "building/shed": {"icon": "maki-home", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "shed"}, "matchScore": 0.5, "name": "Shed"},
+ "building/stable": {"icon": "maki-horse-riding", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "stable"}, "matchScore": 0.5, "name": "Stable"},
+ "building/stadium": {"icon": "maki-stadium", "fields": ["name", "address", "levels", "height", "smoking"], "geometry": ["area"], "tags": {"building": "stadium"}, "matchScore": 0.5, "name": "Stadium Building"},
+ "building/static_caravan": {"icon": "maki-home", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "static_caravan"}, "matchScore": 0.5, "name": "Static Mobile Home"},
+ "building/temple": {"icon": "maki-place-of-worship", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "temple"}, "matchScore": 0.5, "name": "Temple Building"},
+ "building/terrace": {"icon": "maki-building", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "terrace"}, "terms": ["home", "terrace", "brownstone", "family", "residence", "dwelling"], "matchScore": 0.5, "name": "Row Houses"},
+ "building/transportation": {"icon": "maki-building", "fields": ["name", "address", "levels", "height", "smoking"], "geometry": ["area"], "tags": {"building": "transportation"}, "matchScore": 0.5, "name": "Transportation Building"},
+ "building/university": {"icon": "maki-building", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "terms": ["college"], "tags": {"building": "university"}, "matchScore": 0.5, "name": "University Building"},
+ "building/warehouse": {"icon": "maki-warehouse", "fields": ["name", "address", "levels", "height"], "geometry": ["area"], "tags": {"building": "warehouse"}, "matchScore": 0.5, "name": "Warehouse"},
+ "camp_site/camp_pitch": {"icon": "maki-campsite", "fields": ["name", "ref"], "geometry": ["point", "area"], "terms": ["tent", "rv"], "tags": {"camp_site": "camp_pitch"}, "name": "Camp Pitch"},
+ "club": {"icon": "maki-heart", "fields": ["name", "club", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"club": "*"}, "terms": ["social"], "name": "Club"},
+ "craft": {"icon": "temaki-tools", "fields": ["name", "craft", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "*"}, "terms": [], "name": "Craft"},
+ "craft/jeweler": {"icon": "maki-marker-stroked", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "jeweler"}, "reference": {"key": "shop", "value": "jewelry"}, "name": "Jeweler", "searchable": false},
+ "craft/locksmith": {"icon": "maki-marker-stroked", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "locksmith"}, "reference": {"key": "shop", "value": "locksmith"}, "name": "Locksmith", "searchable": false},
+ "craft/optician": {"icon": "maki-marker-stroked", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "optician"}, "reference": {"key": "shop", "value": "optician"}, "name": "Optician", "searchable": false},
+ "craft/tailor": {"icon": "maki-clothing-store", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["clothes", "suit"], "tags": {"craft": "tailor"}, "reference": {"key": "shop", "value": "tailor"}, "name": "Tailor", "searchable": false},
+ "craft/basket_maker": {"icon": "maki-art-gallery", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "basket_maker"}, "name": "Basket Maker"},
+ "craft/beekeeper": {"icon": "maki-farm", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "beekeeper"}, "name": "Beekeeper"},
+ "craft/blacksmith": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "blacksmith"}, "name": "Blacksmith"},
+ "craft/boatbuilder": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "boatbuilder"}, "matchScore": 0.4, "name": "Boat Builder"},
+ "craft/bookbinder": {"icon": "maki-library", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["book repair"], "tags": {"craft": "bookbinder"}, "name": "Bookbinder"},
+ "craft/brewery": {"icon": "temaki-storage_tank", "fields": ["name", "operator", "address", "building_area", "opening_hours", "product"], "geometry": ["point", "area"], "terms": ["alcohol", "beer", "beverage", "bier", "booze", "cider"], "tags": {"craft": "brewery"}, "name": "Brewery"},
+ "craft/carpenter": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["woodworker"], "tags": {"craft": "carpenter"}, "name": "Carpenter"},
+ "craft/carpet_layer": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "carpet_layer"}, "name": "Carpet Layer"},
+ "craft/caterer": {"icon": "maki-restaurant", "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "caterer"}, "name": "Caterer"},
+ "craft/chimney_sweeper": {"icon": "temaki-chimney", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "chimney_sweeper"}, "name": "Chimney Sweeper"},
+ "craft/clockmaker": {"icon": "temaki-clock", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "clockmaker"}, "name": "Clockmaker"},
+ "craft/confectionery": {"icon": "maki-bakery", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["sweet", "candy"], "tags": {"craft": "confectionery"}, "name": "Candy Maker"},
+ "craft/distillery": {"icon": "temaki-storage_tank", "fields": ["name", "operator", "address", "building_area", "opening_hours", "product"], "geometry": ["point", "area"], "terms": ["alcohol", "beverage", "bourbon", "booze", "brandy", "gin", "hooch", "liquor", "mezcal", "moonshine", "rum", "scotch", "spirits", "still", "tequila", "vodka", "whiskey", "whisky"], "tags": {"craft": "distillery"}, "name": "Distillery"},
+ "craft/dressmaker": {"icon": "maki-clothing-store", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["seamstress"], "tags": {"craft": "dressmaker"}, "name": "Dressmaker"},
+ "craft/electrician": {"icon": "temaki-power", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["power", "wire"], "tags": {"craft": "electrician"}, "name": "Electrician"},
+ "craft/electronics_repair": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "electronics_repair"}, "name": "Electronics Repair Shop"},
+ "craft/gardener": {"icon": "maki-garden-center", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["landscaper", "grounds keeper"], "tags": {"craft": "gardener"}, "name": "Gardener"},
+ "craft/glaziery": {"icon": "temaki-window", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["glass", "stained-glass", "window"], "tags": {"craft": "glaziery"}, "name": "Glaziery"},
+ "craft/handicraft": {"icon": "maki-art-gallery", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "handicraft"}, "name": "Handicraft"},
+ "craft/hvac": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["heat*", "vent*", "air conditioning"], "tags": {"craft": "hvac"}, "name": "HVAC"},
+ "craft/insulator": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "insulation"}, "name": "Insulator"},
+ "craft/key_cutter": {"icon": "fas-key", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "key_cutter"}, "name": "Key Cutter"},
+ "craft/metal_construction": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "metal_construction"}, "name": "Metal Construction"},
+ "craft/painter": {"icon": "maki-art-gallery", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "painter"}, "name": "Painter"},
+ "craft/photographer": {"icon": "maki-attraction", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "photographer"}, "name": "Photographer"},
+ "craft/photographic_laboratory": {"icon": "maki-attraction", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["film"], "tags": {"craft": "photographic_laboratory"}, "name": "Photographic Laboratory"},
+ "craft/plasterer": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "plasterer"}, "name": "Plasterer"},
+ "craft/plumber": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["pipe"], "tags": {"craft": "plumber"}, "name": "Plumber"},
+ "craft/pottery": {"icon": "maki-art-gallery", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["ceramic"], "tags": {"craft": "pottery"}, "name": "Pottery"},
+ "craft/rigger": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "rigger"}, "name": "Rigger"},
+ "craft/roofer": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "roofer"}, "name": "Roofer"},
+ "craft/saddler": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "saddler"}, "name": "Saddler"},
+ "craft/sailmaker": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "sailmaker"}, "name": "Sailmaker"},
+ "craft/sawmill": {"icon": "maki-logging", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["lumber"], "tags": {"craft": "sawmill"}, "name": "Sawmill"},
+ "craft/scaffolder": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "scaffolder"}, "name": "Scaffolder"},
+ "craft/sculptor": {"icon": "maki-art-gallery", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "sculptor"}, "name": "Sculptor"},
+ "craft/shoemaker": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["cobbler"], "tags": {"craft": "shoemaker"}, "name": "Shoemaker"},
+ "craft/stonemason": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["masonry"], "tags": {"craft": "stonemason"}, "name": "Stonemason"},
+ "craft/tiler": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "tiler"}, "name": "Tiler"},
+ "craft/tinsmith": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "tinsmith"}, "name": "Tinsmith"},
+ "craft/upholsterer": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "upholsterer"}, "name": "Upholsterer"},
+ "craft/watchmaker": {"icon": "temaki-clock", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "watchmaker"}, "name": "Watchmaker"},
+ "craft/window_construction": {"icon": "temaki-window", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["glass"], "tags": {"craft": "window_construction"}, "name": "Window Construction"},
+ "craft/winery": {"icon": "maki-alcohol-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"craft": "winery"}, "name": "Winery"},
+ "embankment": {"geometry": ["line"], "tags": {"embankment": "yes"}, "name": "Embankment", "matchScore": 0.2},
+ "emergency/designated": {"fields": [], "geometry": ["line"], "tags": {"emergency": "designated"}, "terms": [], "name": "Emergency Access Designated", "searchable": false, "matchScore": 0.01},
+ "emergency/destination": {"fields": [], "geometry": ["line"], "tags": {"emergency": "destination"}, "terms": [], "name": "Emergency Access Destination", "searchable": false, "matchScore": 0.01},
+ "emergency/no": {"fields": [], "geometry": ["line"], "tags": {"emergency": "no"}, "terms": [], "name": "Emergency Access No", "searchable": false, "matchScore": 0.01},
+ "emergency/official": {"fields": [], "geometry": ["line"], "tags": {"emergency": "official"}, "terms": [], "name": "Emergency Access Official", "searchable": false, "matchScore": 0.01},
+ "emergency/private": {"fields": [], "geometry": ["line"], "tags": {"emergency": "private"}, "terms": [], "name": "Emergency Access Private", "searchable": false, "matchScore": 0.01},
+ "emergency/yes": {"fields": [], "geometry": ["line"], "tags": {"emergency": "yes"}, "terms": [], "name": "Emergency Access Yes", "searchable": false, "matchScore": 0.01},
+ "emergency/ambulance_station": {"icon": "fas-ambulance", "fields": ["name", "operator", "building_area", "address"], "geometry": ["point", "area"], "terms": ["EMS", "EMT", "rescue"], "tags": {"emergency": "ambulance_station"}, "name": "Ambulance Station"},
+ "emergency/defibrillator": {"icon": "maki-defibrillator", "fields": ["indoor", "ref", "operator"], "geometry": ["point", "vertex"], "terms": ["AED"], "tags": {"emergency": "defibrillator"}, "name": "Defibrillator"},
+ "emergency/fire_extinguisher": {"icon": "fas-fire-extinguisher", "fields": ["indoor", "ref", "operator"], "geometry": ["point", "vertex"], "tags": {"emergency": "fire_extinguisher"}, "name": "Fire Extinguisher"},
+ "emergency/fire_hydrant": {"icon": "temaki-fire_hydrant", "fields": ["fire_hydrant/type", "fire_hydrant/position", "ref", "operator"], "geometry": ["point", "vertex"], "terms": ["fire plug"], "tags": {"emergency": "fire_hydrant"}, "name": "Fire Hydrant"},
+ "emergency/life_ring": {"icon": "fas-life-ring", "fields": ["ref", "operator"], "geometry": ["point", "vertex"], "terms": ["life buoy", "kisby ring", "kisbie ring", "perry buoy"], "tags": {"emergency": "life_ring"}, "name": "Life Ring"},
+ "emergency/phone": {"icon": "maki-emergency-phone", "fields": ["operator"], "geometry": ["point", "vertex"], "tags": {"emergency": "phone"}, "name": "Emergency Phone"},
+ "emergency/water_tank": {"icon": "maki-water", "fields": ["name", "ref", "operator"], "geometry": ["point", "vertex"], "terms": ["water tank", "cistern", "reservoir"], "tags": {"emergency": "water_tank"}, "name": "Emergency Water Tank"},
+ "entrance": {"icon": "maki-entrance-alt1", "geometry": ["vertex"], "tags": {"entrance": "*"}, "fields": ["entrance", "access_simple", "address"], "name": "Entrance/Exit"},
+ "footway/crossing-raised": {"fields": ["crossing", "access", "surface", "kerb", "tactile_paving"], "geometry": ["line"], "tags": {"highway": "footway", "footway": "crossing", "traffic_calming": "table"}, "reference": {"key": "traffic_calming", "value": "table"}, "terms": ["flat top", "hump", "speed", "slow"], "name": "Raised Street Crossing"},
+ "footway/crossing": {"fields": ["crossing", "access", "surface", "kerb", "tactile_paving"], "geometry": ["line"], "tags": {"highway": "footway", "footway": "crossing"}, "reference": {"key": "footway", "value": "crossing"}, "terms": [], "name": "Street Crossing"},
+ "footway/crosswalk-raised": {"icon": "iD-highway-footway", "fields": ["crossing", "access", "surface", "kerb", "tactile_paving"], "geometry": ["line"], "tags": {"highway": "footway", "footway": "crossing", "crossing": "zebra", "traffic_calming": "table"}, "reference": {"key": "traffic_calming", "value": "table"}, "terms": ["zebra crossing", "flat top", "hump", "speed", "slow"], "name": "Raised Pedestrian Crosswalk"},
+ "footway/crosswalk": {"icon": "iD-highway-footway", "fields": ["crossing", "access", "surface", "kerb", "tactile_paving"], "geometry": ["line"], "tags": {"highway": "footway", "footway": "crossing", "crossing": "zebra"}, "reference": {"key": "footway", "value": "crossing"}, "terms": ["zebra crossing"], "name": "Pedestrian Crosswalk"},
+ "footway/sidewalk": {"icon": "iD-highway-footway", "fields": ["surface", "lit", "width", "structure", "access"], "geometry": ["line"], "tags": {"highway": "footway", "footway": "sidewalk"}, "reference": {"key": "footway", "value": "sidewalk"}, "terms": [], "name": "Sidewalk"},
+ "ford": {"geometry": ["vertex"], "tags": {"ford": "yes"}, "name": "Ford"},
+ "golf/bunker": {"icon": "maki-golf", "fields": ["name"], "geometry": ["area"], "tags": {"golf": "bunker", "natural": "sand"}, "terms": ["hazard", "bunker"], "reference": {"key": "golf", "value": "bunker"}, "name": "Sand Trap"},
+ "golf/fairway": {"icon": "maki-golf", "fields": ["name"], "geometry": ["area"], "tags": {"golf": "fairway", "landuse": "grass"}, "reference": {"key": "golf", "value": "fairway"}, "name": "Fairway"},
+ "golf/green": {"icon": "maki-golf", "fields": ["name"], "geometry": ["area"], "tags": {"golf": "green", "landuse": "grass", "leisure": "pitch", "sport": "golf"}, "reference": {"key": "golf", "value": "green"}, "name": "Putting Green"},
+ "golf/hole": {"icon": "maki-golf", "fields": ["name", "ref_golf_hole", "par", "handicap"], "geometry": ["line"], "tags": {"golf": "hole"}, "name": "Golf Hole"},
+ "golf/lateral_water_hazard_area": {"icon": "maki-golf", "fields": ["name"], "geometry": ["area"], "tags": {"golf": "lateral_water_hazard", "natural": "water"}, "reference": {"key": "golf", "value": "lateral_water_hazard"}, "name": "Lateral Water Hazard"},
+ "golf/lateral_water_hazard_line": {"icon": "maki-golf", "fields": ["name"], "geometry": ["line"], "tags": {"golf": "lateral_water_hazard"}, "name": "Lateral Water Hazard"},
+ "golf/rough": {"icon": "maki-golf", "fields": ["name"], "geometry": ["area"], "tags": {"golf": "rough", "landuse": "grass"}, "reference": {"key": "golf", "value": "rough"}, "name": "Rough"},
+ "golf/tee": {"icon": "maki-golf", "fields": ["name"], "geometry": ["area"], "tags": {"golf": "tee", "landuse": "grass"}, "terms": ["teeing ground"], "reference": {"key": "golf", "value": "tee"}, "name": "Tee Box"},
+ "golf/water_hazard_area": {"icon": "maki-golf", "fields": ["name"], "geometry": ["area"], "tags": {"golf": "water_hazard", "natural": "water"}, "reference": {"key": "golf", "value": "water_hazard"}, "name": "Water Hazard"},
+ "golf/water_hazard_line": {"icon": "maki-golf", "fields": ["name"], "geometry": ["line"], "tags": {"golf": "water_hazard"}, "name": "Water Hazard"},
+ "healthcare": {"icon": "maki-hospital", "fields": ["name", "healthcare", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"healthcare": "*"}, "terms": ["clinic", "doctor", "disease", "health", "institution", "sick", "surgery", "wellness"], "name": "Healthcare Facility"},
+ "healthcare/alternative": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "building_area", "address", "opening_hours"], "geometry": ["point", "area"], "terms": ["acupuncture", "anthroposophical", "applied kinesiology", "aromatherapy", "ayurveda", "herbalism", "homeopathy", "hydrotherapy", "hypnosis", "naturopathy", "osteopathy", "reflexology", "reiki", "shiatsu", "traditional", "tuina", "unani"], "tags": {"healthcare": "alternative"}, "name": "Alternative Medicine"},
+ "healthcare/alternative/chiropractic": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "building_area", "address", "opening_hours"], "geometry": ["point", "area"], "terms": ["back", "pain", "spine"], "tags": {"healthcare": "alternative", "healthcare:speciality": "chiropractic"}, "name": "Chiropractor"},
+ "healthcare/audiologist": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "building_area", "address", "opening_hours"], "geometry": ["point", "area"], "terms": ["ear", "hearing", "sound"], "tags": {"healthcare": "audiologist"}, "name": "Audiologist"},
+ "healthcare/birthing_center": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "building_area", "address", "opening_hours"], "geometry": ["point", "area"], "terms": ["baby", "childbirth", "delivery", "labour", "labor", "pregnancy"], "tags": {"healthcare": "birthing_center"}, "name": "Birthing Center"},
+ "healthcare/blood_donation": {"icon": "maki-blood-bank", "fields": ["name", "operator", "healthcare/speciality", "blood_components", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["blood bank", "blood donation", "blood transfusion", "apheresis", "plasmapheresis", "plateletpheresis", "stem cell donation"], "tags": {"healthcare": "blood_donation"}, "name": "Blood Donor Center"},
+ "healthcare/hospice": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "building_area", "address", "opening_hours"], "geometry": ["point", "area"], "terms": ["terminal", "illness"], "tags": {"healthcare": "hospice"}, "name": "Hospice"},
+ "healthcare/laboratory": {"icon": "maki-hospital", "fields": ["name", "operator", "website", "ref", "address", "opening_hours"], "geometry": ["point", "area"], "terms": ["medical_laboratory", "medical_lab", "blood_check"], "tags": {"healthcare": "laboratory"}, "name": "Medical Laboratory"},
+ "healthcare/midwife": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "building_area", "address", "opening_hours"], "geometry": ["point", "area"], "terms": ["baby", "childbirth", "delivery", "labour", "labor", "pregnancy"], "tags": {"healthcare": "midwife"}, "name": "Midwife"},
+ "healthcare/occupational_therapist": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "building_area", "address", "opening_hours"], "geometry": ["point", "area"], "terms": ["therapist", "therapy"], "tags": {"healthcare": "occupational_therapist"}, "name": "Occupational Therapist"},
+ "healthcare/optometrist": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "building_area", "address", "opening_hours"], "geometry": ["point", "area"], "terms": ["eye", "glasses", "lasik", "lenses", "vision"], "tags": {"healthcare": "optometrist"}, "name": "Optometrist"},
+ "healthcare/physiotherapist": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "building_area", "address", "opening_hours"], "geometry": ["point", "area"], "terms": ["physical", "therapist", "therapy"], "tags": {"healthcare": "physiotherapist"}, "name": "Physiotherapist"},
+ "healthcare/podiatrist": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "building_area", "address", "opening_hours"], "geometry": ["point", "area"], "terms": ["foot", "feet", "nails"], "tags": {"healthcare": "podiatrist"}, "name": "Podiatrist"},
+ "healthcare/psychotherapist": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "building_area", "address", "opening_hours"], "geometry": ["point", "area"], "terms": ["anxiety", "counselor", "depression", "mental health", "mind", "suicide", "therapist", "therapy"], "tags": {"healthcare": "psychotherapist"}, "name": "Psychotherapist"},
+ "healthcare/rehabilitation": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "building_area", "address", "opening_hours"], "geometry": ["point", "area"], "terms": ["rehab", "therapist", "therapy"], "tags": {"healthcare": "rehabilitation"}, "name": "Rehabilitation Facility"},
+ "healthcare/speech_therapist": {"icon": "maki-hospital", "fields": ["name", "operator", "healthcare/speciality", "building_area", "address", "opening_hours"], "geometry": ["point", "area"], "terms": ["speech", "therapist", "therapy", "voice"], "tags": {"healthcare": "speech_therapist"}, "name": "Speech Therapist"},
+ "highway/bus_stop": {"icon": "maki-bus", "fields": ["name", "network", "operator", "bench", "shelter"], "geometry": ["point", "vertex"], "tags": {"highway": "bus_stop"}, "name": "Bus Stop / Platform", "searchable": false},
+ "highway/bridleway": {"fields": ["name", "surface", "width", "structure", "access"], "icon": "iD-highway-bridleway", "geometry": ["line"], "tags": {"highway": "bridleway"}, "terms": ["bridleway", "equestrian", "horse"], "name": "Bridle Path"},
+ "highway/bus_guideway": {"icon": "iD-highway-bus-guideway", "fields": ["name", "operator", "oneway"], "geometry": ["line"], "tags": {"highway": "bus_guideway"}, "addTags": {"highway": "bus_guideway", "access": "no", "bus": "designated"}, "removeTags": {"highway": "bus_guideway", "access": "no", "bus": "designated"}, "terms": [], "name": "Bus Guideway"},
+ "highway/corridor": {"icon": "iD-highway-footway", "fields": ["name", "width", "level", "access_simple"], "geometry": ["line"], "tags": {"highway": "corridor"}, "terms": ["gallery", "hall", "hallway", "indoor", "passage", "passageway"], "name": "Indoor Corridor"},
+ "highway/crossing-raised": {"fields": ["crossing", "kerb", "tactile_paving"], "geometry": ["vertex"], "tags": {"highway": "crossing", "traffic_calming": "table"}, "reference": {"key": "traffic_calming", "value": "table"}, "terms": ["flat top", "hump", "speed", "slow"], "name": "Raised Street Crossing"},
+ "highway/crossing": {"fields": ["crossing", "kerb", "tactile_paving"], "geometry": ["vertex"], "tags": {"highway": "crossing"}, "reference": {"key": "highway", "value": "crossing"}, "terms": [], "name": "Street Crossing"},
+ "highway/crosswalk-raised": {"icon": "temaki-pedestrian", "fields": ["crossing", "kerb", "tactile_paving"], "geometry": ["vertex"], "tags": {"highway": "crossing", "crossing": "zebra", "traffic_calming": "table"}, "reference": {"key": "traffic_calming", "value": "table"}, "terms": ["zebra crossing", "flat top", "hump", "speed", "slow"], "name": "Raised Pedestrian Crosswalk"},
+ "highway/crosswalk": {"icon": "temaki-pedestrian", "fields": ["crossing", "kerb", "tactile_paving"], "geometry": ["vertex"], "tags": {"highway": "crossing", "crossing": "zebra"}, "reference": {"key": "highway", "value": "crossing"}, "terms": ["zebra crossing"], "name": "Pedestrian Crosswalk"},
+ "highway/cycleway": {"icon": "iD-highway-cycleway", "fields": ["name", "oneway", "surface", "lit", "width", "structure", "access"], "geometry": ["line"], "tags": {"highway": "cycleway"}, "terms": ["bike"], "name": "Cycle Path"},
+ "highway/elevator": {"icon": "temaki-elevator", "fields": ["access_simple", "opening_hours", "maxweight", "ref"], "geometry": ["vertex"], "tags": {"highway": "elevator"}, "terms": ["lift"], "name": "Elevator"},
+ "highway/footway": {"icon": "iD-highway-footway", "fields": ["name", "surface", "lit", "width", "structure", "access"], "geometry": ["line"], "terms": ["hike", "hiking", "trackway", "trail", "walk"], "tags": {"highway": "footway"}, "name": "Foot Path"},
+ "highway/give_way": {"icon": "temaki-yield", "fields": ["direction_vertex"], "geometry": ["vertex"], "tags": {"highway": "give_way"}, "terms": ["give way", "yield", "sign"], "name": "Yield Sign"},
+ "highway/living_street": {"icon": "iD-highway-living-street", "fields": ["name", "oneway", "maxspeed", "lanes", "surface", "structure", "maxheight", "access", "cycleway"], "geometry": ["line"], "tags": {"highway": "living_street"}, "name": "Living Street"},
+ "highway/mini_roundabout": {"icon": "maki-circle-stroked", "geometry": ["vertex"], "tags": {"highway": "mini_roundabout"}, "fields": ["direction_clock"], "name": "Mini-Roundabout"},
+ "highway/motorway_junction": {"icon": "temaki-junction", "geometry": ["vertex"], "tags": {"highway": "motorway_junction"}, "fields": ["ref_highway_junction"], "name": "Motorway Junction / Exit"},
+ "highway/motorway_link": {"icon": "iD-highway-motorway-link", "fields": ["name", "ref_road_number", "oneway", "maxspeed", "maxspeed/advisory", "lanes", "surface", "structure", "maxheight", "access"], "geometry": ["line"], "tags": {"highway": "motorway_link"}, "addTags": {"highway": "motorway_link", "oneway": "yes"}, "removeTags": {"highway": "motorway_link", "oneway": "yes"}, "terms": ["ramp", "on ramp", "off ramp"], "name": "Motorway Link"},
+ "highway/motorway": {"icon": "iD-highway-motorway", "fields": ["name", "ref_road_number", "oneway_yes", "maxspeed", "lanes", "surface", "structure", "maxheight", "toll", "access"], "geometry": ["line"], "tags": {"highway": "motorway"}, "terms": ["autobahn", "expressway", "freeway", "highway", "interstate", "parkway", "thruway", "turnpike"], "name": "Motorway"},
+ "highway/passing_place": {"icon": "maki-circle-stroked", "geometry": ["vertex"], "tags": {"highway": "passing_place"}, "terms": ["turnout, pullout"], "name": "Passing Place"},
+ "highway/path": {"icon": "iD-highway-path", "fields": ["name", "surface", "width", "structure", "access", "incline", "sac_scale", "trail_visibility", "mtb/scale", "mtb/scale/uphill", "mtb/scale/imba", "horse_scale", "ref"], "geometry": ["line"], "terms": ["hike", "hiking", "trackway", "trail", "walk"], "tags": {"highway": "path"}, "name": "Path"},
+ "highway/pedestrian_area": {"icon": "temaki-pedestrian", "fields": ["name", "surface", "lit", "width", "structure", "access"], "geometry": ["area"], "tags": {"highway": "pedestrian", "area": "yes"}, "terms": ["center", "centre", "plaza", "quad", "square", "walkway"], "name": "Pedestrian Area"},
+ "highway/pedestrian_line": {"icon": "iD-highway-footway", "fields": ["name", "surface", "lit", "width", "oneway", "structure", "access"], "geometry": ["line"], "tags": {"highway": "pedestrian"}, "terms": ["center", "centre", "plaza", "quad", "square", "walkway"], "name": "Pedestrian Street"},
+ "highway/primary_link": {"icon": "iD-highway-primary-link", "fields": ["name", "oneway", "maxspeed", "maxspeed/advisory", "lanes", "surface", "maxheight", "ref_road_number", "cycleway", "structure", "access"], "geometry": ["line"], "tags": {"highway": "primary_link"}, "terms": ["ramp", "on ramp", "off ramp"], "name": "Primary Link"},
+ "highway/primary": {"icon": "iD-highway-primary", "fields": ["name", "oneway", "maxspeed", "lanes", "surface", "structure", "maxheight", "ref_road_number", "cycleway", "access"], "geometry": ["line"], "tags": {"highway": "primary"}, "terms": [], "name": "Primary Road"},
+ "highway/raceway": {"icon": "iD-highway-unclassified", "fields": ["name", "oneway", "surface", "sport_racing_motor", "lit", "width", "lanes", "structure"], "geometry": ["point", "line", "area"], "tags": {"highway": "raceway"}, "addTags": {"highway": "raceway", "sport": "motor"}, "terms": ["auto*", "formula one", "kart", "motocross", "nascar", "race*", "track"], "name": "Racetrack (Motorsport)"},
+ "highway/residential": {"icon": "iD-highway-residential", "fields": ["name", "oneway", "maxspeed", "lanes", "surface", "structure", "maxheight", "cycleway", "access"], "geometry": ["line"], "tags": {"highway": "residential"}, "terms": [], "name": "Residential Road"},
+ "highway/rest_area": {"icon": "maki-car", "fields": ["name"], "geometry": ["point", "vertex", "area"], "tags": {"highway": "rest_area"}, "terms": ["rest stop"], "name": "Rest Area"},
+ "highway/road": {"icon": "iD-highway-road", "fields": ["name", "oneway", "maxspeed", "lanes", "surface", "structure", "maxheight", "access"], "geometry": ["line"], "tags": {"highway": "road"}, "terms": [], "name": "Unknown Road"},
+ "highway/secondary_link": {"icon": "iD-highway-secondary-link", "fields": ["name", "oneway", "maxspeed", "maxspeed/advisory", "lanes", "surface", "structure", "maxheight", "ref_road_number", "cycleway", "access"], "geometry": ["line"], "tags": {"highway": "secondary_link"}, "terms": ["ramp", "on ramp", "off ramp"], "name": "Secondary Link"},
+ "highway/secondary": {"icon": "iD-highway-secondary", "fields": ["name", "oneway", "maxspeed", "lanes", "surface", "structure", "maxheight", "ref_road_number", "cycleway", "access"], "geometry": ["line"], "tags": {"highway": "secondary"}, "terms": [], "name": "Secondary Road"},
+ "highway/service": {"icon": "iD-highway-service", "fields": ["name", "service", "oneway", "maxspeed", "surface", "structure", "maxheight", "access"], "geometry": ["line"], "tags": {"highway": "service"}, "terms": [], "name": "Service Road"},
+ "highway/service/alley": {"icon": "iD-highway-service", "fields": ["name", "oneway", "maxspeed", "structure", "access", "surface", "maxheight"], "geometry": ["line"], "tags": {"highway": "service", "service": "alley"}, "reference": {"key": "service", "value": "alley"}, "name": "Alley"},
+ "highway/service/drive-through": {"icon": "iD-highway-service", "fields": ["name", "oneway", "covered", "maxheight", "maxspeed", "structure", "access", "surface"], "geometry": ["line"], "tags": {"highway": "service", "service": "drive-through"}, "reference": {"key": "service", "value": "drive-through"}, "name": "Drive-Through"},
+ "highway/service/driveway": {"icon": "iD-highway-service", "fields": ["name", "oneway", "maxspeed", "structure", "access", "surface", "maxheight"], "geometry": ["line"], "tags": {"highway": "service", "service": "driveway"}, "reference": {"key": "service", "value": "driveway"}, "name": "Driveway"},
+ "highway/service/emergency_access": {"icon": "iD-highway-service", "fields": ["name", "oneway", "maxspeed", "structure", "access", "surface", "maxheight"], "geometry": ["line"], "tags": {"highway": "service", "service": "emergency_access"}, "reference": {"key": "service", "value": "emergency_access"}, "name": "Emergency Access"},
+ "highway/service/parking_aisle": {"icon": "iD-highway-service", "fields": ["name", "oneway", "maxspeed", "structure", "access", "surface", "maxheight"], "geometry": ["line"], "tags": {"highway": "service", "service": "parking_aisle"}, "reference": {"key": "service", "value": "parking_aisle"}, "name": "Parking Aisle"},
+ "highway/services": {"icon": "maki-car", "fields": ["name"], "geometry": ["point", "vertex", "area"], "tags": {"highway": "services"}, "terms": ["services", "travel plaza", "service station"], "name": "Service Area"},
+ "highway/speed_camera": {"icon": "maki-attraction", "geometry": ["point", "vertex"], "fields": ["direction", "ref"], "tags": {"highway": "speed_camera"}, "terms": [], "name": "Speed Camera"},
+ "highway/steps": {"icon": "iD-highway-steps", "fields": ["surface", "lit", "width", "incline_steps", "handrail", "step_count"], "geometry": ["line"], "tags": {"highway": "steps"}, "terms": ["stairs", "staircase"], "name": "Steps"},
+ "highway/stop": {"icon": "temaki-stop", "fields": ["stop", "direction_vertex"], "geometry": ["vertex"], "tags": {"highway": "stop"}, "terms": ["stop", "halt", "sign"], "name": "Stop Sign"},
+ "highway/street_lamp": {"icon": "temaki-bulb", "geometry": ["point", "vertex"], "tags": {"highway": "street_lamp"}, "fields": ["lamp_type", "direction", "ref"], "terms": ["streetlight", "street light", "lamp", "light", "gaslight"], "name": "Street Lamp"},
+ "highway/tertiary_link": {"icon": "iD-highway-tertiary-link", "fields": ["name", "oneway", "maxspeed", "maxspeed/advisory", "lanes", "surface", "structure", "maxheight", "ref_road_number", "cycleway", "access"], "geometry": ["line"], "tags": {"highway": "tertiary_link"}, "terms": ["ramp", "on ramp", "off ramp"], "name": "Tertiary Link"},
+ "highway/tertiary": {"icon": "iD-highway-tertiary", "fields": ["name", "oneway", "maxspeed", "lanes", "surface", "structure", "maxheight", "ref_road_number", "cycleway", "access"], "geometry": ["line"], "tags": {"highway": "tertiary"}, "terms": [], "name": "Tertiary Road"},
+ "highway/track": {"icon": "iD-highway-track", "fields": ["name", "tracktype", "surface", "width", "structure", "access", "incline", "smoothness", "mtb/scale", "mtb/scale/uphill", "mtb/scale/imba", "horse_scale"], "geometry": ["line"], "tags": {"highway": "track"}, "terms": ["woods road", "forest road", "logging road", "fire road", "farm road", "agricultural road", "ranch road", "carriage road", "primitive", "unmaintained", "rut", "offroad", "4wd", "4x4", "four wheel drive", "atv", "quad", "jeep", "double track", "two track"], "name": "Unmaintained Track Road"},
+ "highway/traffic_mirror": {"geometry": ["point", "vertex"], "fields": ["direction"], "tags": {"highway": "traffic_mirror"}, "terms": ["blind spot", "convex", "corner", "curved", "roadside", "round", "safety", "sphere", "visibility"], "name": "Traffic Mirror"},
+ "highway/traffic_signals": {"icon": "temaki-traffic_signals", "geometry": ["vertex"], "tags": {"highway": "traffic_signals"}, "fields": ["traffic_signals", "traffic_signals/direction"], "terms": ["light", "stoplight", "traffic light"], "name": "Traffic Signals"},
+ "highway/trunk_link": {"icon": "iD-highway-trunk-link", "fields": ["name", "ref_road_number", "oneway", "maxspeed", "maxspeed/advisory", "lanes", "surface", "structure", "maxheight", "access"], "geometry": ["line"], "tags": {"highway": "trunk_link"}, "terms": ["ramp", "on ramp", "off ramp"], "name": "Trunk Link"},
+ "highway/trunk": {"icon": "iD-highway-trunk", "fields": ["name", "ref_road_number", "oneway", "maxspeed", "lanes", "surface", "structure", "maxheight", "toll", "access"], "geometry": ["line"], "tags": {"highway": "trunk"}, "terms": [], "name": "Trunk Road"},
+ "highway/turning_circle": {"icon": "maki-circle-stroked", "geometry": ["vertex"], "tags": {"highway": "turning_circle"}, "terms": ["cul-de-sac"], "name": "Turning Circle"},
+ "highway/turning_loop": {"icon": "maki-circle", "geometry": ["vertex"], "tags": {"highway": "turning_loop"}, "terms": ["cul-de-sac"], "name": "Turning Loop (Island)"},
+ "highway/unclassified": {"icon": "iD-highway-unclassified", "fields": ["name", "oneway", "maxspeed", "lanes", "surface", "structure", "maxheight", "cycleway", "access"], "geometry": ["line"], "tags": {"highway": "unclassified"}, "terms": [], "name": "Minor/Unclassified Road"},
+ "historic": {"icon": "temaki-ruins", "fields": ["historic", "inscription"], "geometry": ["point", "vertex", "area"], "tags": {"historic": "*"}, "name": "Historic Site"},
+ "historic/archaeological_site": {"icon": "temaki-ruins", "fields": ["name", "historic/civilization", "inscription"], "geometry": ["point", "vertex", "area"], "tags": {"historic": "archaeological_site"}, "name": "Archaeological Site"},
+ "historic/boundary_stone": {"icon": "temaki-milestone", "fields": ["name", "inscription"], "geometry": ["point", "vertex"], "tags": {"historic": "boundary_stone"}, "name": "Boundary Stone"},
+ "historic/castle": {"icon": "maki-castle", "fields": ["name", "castle_type", "building_area", "historic/civilization"], "geometry": ["point", "area"], "tags": {"historic": "castle"}, "name": "Castle"},
+ "historic/memorial": {"icon": "maki-monument", "fields": ["name", "memorial", "inscription"], "geometry": ["point", "vertex", "area"], "terms": ["dedicatory", "epitaph", "remember", "remembrance", "memory", "monument", "stolperstein"], "tags": {"historic": "memorial"}, "name": "Memorial"},
+ "historic/monument": {"icon": "maki-monument", "fields": ["name", "inscription"], "geometry": ["point", "vertex", "area"], "tags": {"historic": "monument"}, "name": "Monument"},
+ "historic/ruins": {"icon": "temaki-ruins", "fields": ["name", "historic/civilization", "inscription"], "geometry": ["point", "vertex", "area"], "tags": {"historic": "ruins"}, "name": "Ruins"},
+ "historic/tomb": {"icon": "maki-cemetery", "fields": ["name", "tomb", "building_area", "inscription"], "geometry": ["point", "area"], "tags": {"historic": "tomb"}, "name": "Tomb"},
+ "historic/wayside_cross": {"icon": "maki-religious-christian", "fields": ["name", "inscription"], "geometry": ["point", "vertex", "area"], "tags": {"historic": "wayside_cross"}, "name": "Wayside Cross"},
+ "historic/wayside_shrine": {"icon": "maki-landmark", "fields": ["name", "religion", "denomination", "inscription"], "geometry": ["point", "vertex", "area"], "tags": {"historic": "wayside_shrine"}, "name": "Wayside Shrine"},
+ "junction": {"icon": "temaki-junction", "fields": ["name"], "geometry": ["vertex", "area"], "tags": {"junction": "yes"}, "name": "Junction"},
+ "landuse": {"fields": ["name", "landuse"], "geometry": ["area"], "tags": {"landuse": "*"}, "matchScore": 0.9, "name": "Land Use"},
+ "landuse/farm": {"icon": "maki-farm", "fields": ["name", "operator", "crop"], "geometry": ["point", "area"], "tags": {"landuse": "farm"}, "terms": [], "name": "Farmland", "searchable": false},
+ "landuse/allotments": {"icon": "maki-garden-center", "geometry": ["area"], "fields": ["name"], "tags": {"landuse": "allotments"}, "terms": ["allotment", "garden"], "name": "Community Garden"},
+ "landuse/aquaculture": {"icon": "maki-aquarium", "fields": ["name", "operator", "produce"], "geometry": ["area"], "tags": {"landuse": "aquaculture"}, "terms": ["fish farm", "crustacean", "algae", "aquafarming", "shrimp farm", "oyster farm", "mariculture", "algaculture"], "name": "Aquaculture"},
+ "landuse/basin": {"icon": "maki-water", "fields": ["name"], "geometry": ["area"], "tags": {"landuse": "basin"}, "terms": [], "name": "Basin"},
+ "landuse/brownfield": {"geometry": ["area"], "fields": ["name"], "tags": {"landuse": "brownfield"}, "terms": [], "matchScore": 0.9, "name": "Brownfield"},
+ "landuse/cemetery": {"icon": "maki-cemetery", "fields": ["name", "religion", "denomination"], "geometry": ["area"], "tags": {"landuse": "cemetery"}, "terms": [], "name": "Cemetery"},
+ "landuse/churchyard": {"icon": "maki-religious-christian", "fields": ["name", "religion", "denomination"], "geometry": ["area"], "tags": {"landuse": "churchyard"}, "terms": [], "name": "Churchyard"},
+ "landuse/commercial": {"icon": "maki-suitcase", "fields": ["name"], "geometry": ["area"], "tags": {"landuse": "commercial"}, "terms": [], "matchScore": 0.9, "name": "Commercial Area"},
+ "landuse/construction": {"icon": "temaki-tools", "fields": ["name", "construction", "operator"], "geometry": ["area"], "tags": {"landuse": "construction"}, "terms": [], "name": "Construction"},
+ "landuse/farmland": {"icon": "maki-farm", "fields": ["name", "operator", "crop", "produce"], "geometry": ["area"], "tags": {"landuse": "farmland"}, "terms": ["crop", "grow", "plant"], "name": "Farmland"},
+ "landuse/farmyard": {"icon": "maki-farm", "fields": ["name", "operator", "crop"], "geometry": ["area"], "tags": {"landuse": "farmyard"}, "terms": ["crop", "grow", "plant"], "name": "Farmyard"},
+ "landuse/forest": {"icon": "maki-park-alt1", "fields": ["name", "leaf_type", "leaf_cycle", "produce"], "geometry": ["area"], "tags": {"landuse": "forest"}, "terms": ["cut", "forest", "lumber", "tree"], "name": "Forest"},
+ "landuse/garages": {"icon": "fas-warehouse", "geometry": ["area"], "fields": ["name"], "tags": {"landuse": "garages"}, "terms": [], "name": "Garage Landuse"},
+ "landuse/grass": {"geometry": ["area"], "tags": {"landuse": "grass"}, "terms": [], "name": "Grass"},
+ "landuse/greenfield": {"geometry": ["area"], "fields": ["name"], "tags": {"landuse": "greenfield"}, "terms": [], "matchScore": 0.9, "name": "Greenfield"},
+ "landuse/greenhouse_horticulture": {"icon": "maki-garden", "fields": ["name", "operator"], "geometry": ["area"], "terms": ["flower", "greenhouse", "horticulture", "grow", "vivero"], "tags": {"landuse": "greenhouse_horticulture"}, "matchScore": 0.9, "name": "Greenhouse Horticulture"},
+ "landuse/harbour": {"icon": "maki-harbor", "fields": ["name", "operator"], "geometry": ["area"], "terms": ["boat"], "tags": {"landuse": "harbour"}, "name": "Harbor"},
+ "landuse/industrial": {"icon": "maki-industry", "fields": ["name", "industrial"], "geometry": ["area"], "tags": {"landuse": "industrial"}, "terms": [], "matchScore": 0.9, "name": "Industrial Area"},
+ "landuse/industrial/scrap_yard": {"icon": "maki-car", "fields": ["name", "operator", "address", "opening_hours"], "geometry": ["point", "area"], "tags": {"industrial": "scrap_yard"}, "addTags": {"landuse": "industrial", "industrial": "scrap_yard"}, "removeTags": {"landuse": "industrial", "industrial": "scrap_yard"}, "reference": {"key": "industrial", "value": "scrap_yard"}, "terms": ["car", "junk", "metal", "salvage", "scrap", "u-pull-it", "vehicle", "wreck", "yard"], "name": "Scrap Yard"},
+ "landuse/industrial/slaughterhouse": {"icon": "maki-slaughterhouse", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"industrial": "slaughterhouse"}, "addTags": {"landuse": "industrial", "industrial": "slaughterhouse"}, "removeTags": {"landuse": "industrial", "industrial": "slaughterhouse"}, "reference": {"key": "industrial", "value": "slaughterhouse"}, "terms": ["abattoir", "beef", "butchery", "calf", "chicken", "cow", "killing house", "meat", "pig", "pork", "poultry", "shambles", "stockyard"], "name": "Slaughterhouse"},
+ "landuse/landfill": {"geometry": ["area"], "fields": ["name"], "tags": {"landuse": "landfill"}, "terms": ["dump"], "name": "Landfill"},
+ "landuse/meadow": {"icon": "maki-garden", "geometry": ["area"], "fields": ["name"], "tags": {"landuse": "meadow"}, "terms": [], "name": "Meadow"},
+ "landuse/military": {"icon": "temaki-military", "fields": ["name"], "geometry": ["area"], "tags": {"landuse": "military"}, "terms": [], "matchScore": 0.9, "name": "Military Area"},
+ "landuse/military/airfield": {"icon": "maki-airfield", "fields": ["name", "iata", "icao"], "geometry": ["point", "area"], "tags": {"military": "airfield"}, "addTags": {"landuse": "military", "military": "airfield"}, "removeTags": {"landuse": "military", "military": "airfield"}, "terms": ["air force", "army", "base", "bomb", "fight", "force", "guard", "heli*", "jet", "marine", "navy", "plane", "troop", "war"], "name": "Military Airfield"},
+ "landuse/military/barracks": {"icon": "temaki-military", "fields": ["name", "building_area"], "geometry": ["point", "area"], "tags": {"military": "barracks"}, "addTags": {"landuse": "military", "military": "barracks"}, "removeTags": {"landuse": "military", "military": "barracks"}, "terms": ["air force", "army", "base", "fight", "force", "guard", "marine", "navy", "troop", "war"], "name": "Barracks"},
+ "landuse/military/bunker": {"icon": "temaki-military", "fields": ["name", "bunker_type", "building_area"], "geometry": ["point", "area"], "tags": {"military": "bunker"}, "addTags": {"building": "bunker", "landuse": "military", "military": "bunker"}, "removeTags": {"building": "bunker", "landuse": "military", "military": "bunker"}, "terms": ["air force", "army", "base", "fight", "force", "guard", "marine", "navy", "troop", "war"], "name": "Military Bunker"},
+ "landuse/military/checkpoint": {"icon": "maki-barrier", "fields": ["name"], "geometry": ["point", "vertex", "area"], "tags": {"military": "checkpoint"}, "addTags": {"landuse": "military", "military": "checkpoint"}, "removeTags": {"landuse": "military", "military": "checkpoint"}, "terms": ["air force", "army", "base", "force", "guard", "marine", "navy", "troop", "war"], "name": "Checkpoint"},
+ "landuse/military/danger_area": {"icon": "maki-danger", "fields": ["name"], "geometry": ["point", "vertex", "area"], "tags": {"military": "danger_area"}, "addTags": {"landuse": "military", "military": "danger_area"}, "removeTags": {"landuse": "military", "military": "danger_area"}, "terms": ["air force", "army", "base", "blast", "bomb", "explo*", "force", "guard", "mine", "marine", "navy", "troop", "war"], "name": "Danger Area"},
+ "landuse/military/naval_base": {"icon": "temaki-military", "fields": ["name"], "geometry": ["point", "area"], "tags": {"military": "naval_base"}, "addTags": {"landuse": "military", "military": "naval_base"}, "removeTags": {"landuse": "military", "military": "naval_base"}, "terms": ["base", "fight", "force", "guard", "marine", "navy", "ship", "sub", "troop", "war"], "name": "Naval Base"},
+ "landuse/military/nuclear_explosion_site": {"icon": "maki-danger", "fields": ["name"], "geometry": ["point", "vertex", "area"], "tags": {"military": "nuclear_explosion_site"}, "addTags": {"landuse": "military", "military": "nuclear_explosion_site"}, "removeTags": {"landuse": "military", "military": "nuclear_explosion_site"}, "terms": ["atom", "blast", "bomb", "detonat*", "nuke", "site", "test"], "name": "Nuclear Explosion Site"},
+ "landuse/military/obstacle_course": {"icon": "temaki-military", "geometry": ["point", "area"], "tags": {"military": "obstacle_course"}, "addTags": {"landuse": "military", "military": "obstacle_course"}, "removeTags": {"landuse": "military", "military": "obstacle_course"}, "terms": ["army", "base", "force", "guard", "marine", "navy", "troop", "war"], "name": "Obstacle Course"},
+ "landuse/military/office": {"icon": "temaki-military", "fields": ["name", "building_area"], "geometry": ["point", "area"], "tags": {"military": "office"}, "addTags": {"landuse": "military", "military": "office"}, "removeTags": {"landuse": "military", "military": "office"}, "terms": ["air force", "army", "base", "enlist", "fight", "force", "guard", "marine", "navy", "recruit", "troop", "war"], "name": "Military Office"},
+ "landuse/military/range": {"icon": "temaki-military", "fields": ["name"], "geometry": ["point", "area"], "tags": {"military": "range"}, "addTags": {"landuse": "military", "military": "range"}, "removeTags": {"landuse": "military", "military": "range"}, "terms": ["air force", "army", "base", "fight", "fire", "force", "guard", "gun", "marine", "navy", "rifle", "shoot*", "snip*", "train", "troop", "war"], "name": "Military Range"},
+ "landuse/military/training_area": {"icon": "temaki-military", "fields": ["name"], "geometry": ["point", "area"], "tags": {"military": "training_area"}, "addTags": {"landuse": "military", "military": "training_area"}, "removeTags": {"landuse": "military", "military": "training_area"}, "terms": ["air force", "army", "base", "fight", "fire", "force", "guard", "gun", "marine", "navy", "rifle", "shoot*", "snip*", "train", "troop", "war"], "name": "Training Area"},
+ "landuse/orchard": {"icon": "maki-park-alt1", "fields": ["name", "operator", "trees"], "geometry": ["area"], "tags": {"landuse": "orchard"}, "terms": ["fruit"], "name": "Orchard"},
+ "landuse/plant_nursery": {"icon": "maki-garden", "fields": ["name", "operator", "plant"], "geometry": ["area"], "tags": {"landuse": "plant_nursery"}, "terms": ["flower", "garden", "grow", "vivero"], "name": "Plant Nursery"},
+ "landuse/quarry": {"geometry": ["area"], "fields": ["name"], "tags": {"landuse": "quarry"}, "terms": [], "name": "Quarry"},
+ "landuse/railway": {"icon": "maki-rail", "fields": ["operator"], "geometry": ["area"], "tags": {"landuse": "railway"}, "terms": ["rail", "train", "track"], "name": "Railway Corridor"},
+ "landuse/recreation_ground": {"icon": "maki-pitch", "geometry": ["area"], "fields": ["name"], "tags": {"landuse": "recreation_ground"}, "terms": ["playing fields"], "name": "Recreation Ground"},
+ "landuse/religious": {"icon": "maki-place-of-worship", "geometry": ["area"], "fields": ["name", "religion", "denomination"], "tags": {"landuse": "religious"}, "terms": [], "name": "Religious Area"},
+ "landuse/residential": {"icon": "maki-building", "geometry": ["area"], "tags": {"landuse": "residential"}, "terms": [], "matchScore": 0.9, "name": "Residential Area"},
+ "landuse/retail": {"icon": "maki-commercial", "geometry": ["area"], "fields": ["name"], "tags": {"landuse": "retail"}, "matchScore": 0.9, "name": "Retail Area"},
+ "landuse/vineyard": {"fields": ["name", "operator", "grape_variety"], "geometry": ["area"], "tags": {"landuse": "vineyard"}, "addTags": {"landuse": "vineyard", "crop": "grape"}, "removeTags": {"landuse": "vineyard", "crop": "grape", "grape_variety": "*"}, "terms": ["grape", "wine"], "name": "Vineyard"},
+ "leisure": {"icon": "maki-pitch", "fields": ["name", "leisure"], "geometry": ["point", "vertex", "area"], "tags": {"leisure": "*"}, "name": "Leisure"},
+ "leisure/adult_gaming_centre": {"icon": "temaki-dice", "fields": ["name", "operator", "address", "building_area", "opening_hours", "smoking"], "geometry": ["point", "area"], "terms": ["gambling", "slot machine"], "tags": {"leisure": "adult_gaming_centre"}, "name": "Adult Gaming Center"},
+ "leisure/amusement_arcade": {"icon": "maki-gaming", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["pay-to-play games", "video games", "driving simulators", "pinball machines"], "tags": {"leisure": "amusement_arcade"}, "name": "Amusement Arcade"},
+ "leisure/beach_resort": {"icon": "temaki-beach", "fields": ["name", "address", "fee"], "geometry": ["point", "area"], "tags": {"leisure": "beach_resort"}, "name": "Beach Resort"},
+ "leisure/bird_hide": {"icon": "temaki-binoculars", "fields": ["building_area"], "geometry": ["point", "area"], "tags": {"leisure": "bird_hide"}, "terms": ["machan", "ornithology"], "name": "Bird Hide"},
+ "leisure/bleachers": {"geometry": ["point", "area"], "tags": {"leisure": "bleachers"}, "terms": ["crowd", "bench", "sports", "stand", "stands", "seat", "seating"], "name": "Bleachers"},
+ "leisure/bowling_alley": {"icon": "temaki-bowling", "fields": ["name", "operator", "address", "building_area", "opening_hours", "smoking"], "geometry": ["point", "area"], "terms": ["bowling center"], "tags": {"leisure": "bowling_alley"}, "name": "Bowling Alley"},
+ "leisure/common": {"icon": "temaki-pedestrian", "geometry": ["point", "area"], "fields": ["name"], "terms": ["open space"], "tags": {"leisure": "common"}, "name": "Common"},
+ "leisure/dance": {"icon": "maki-music", "fields": ["name", "operator", "address", "building_area", "dance/style", "opening_hours"], "geometry": ["point", "area"], "terms": ["ballroom", "jive", "swing", "tango", "waltz"], "tags": {"leisure": "dance"}, "name": "Dance Hall"},
+ "leisure/dancing_school": {"icon": "maki-music", "fields": ["name", "operator", "address", "opening_hours", "dance/style"], "geometry": ["point", "area"], "terms": ["jive", "swing", "tango", "waltz", "dance teaching"], "tags": {"leisure": "dance", "dance:teaching": "yes"}, "reference": {"key": "leisure", "value": "dance"}, "name": "Dance School"},
+ "leisure/dog_park": {"icon": "maki-dog-park", "geometry": ["point", "area"], "fields": ["name"], "terms": [], "tags": {"leisure": "dog_park"}, "name": "Dog Park"},
+ "leisure/firepit": {"icon": "maki-fire-station", "geometry": ["point", "area"], "tags": {"leisure": "firepit"}, "terms": ["fireplace", "campfire"], "name": "Firepit"},
+ "leisure/fitness_centre": {"icon": "maki-pitch", "fields": ["name", "sport", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"leisure": "fitness_centre"}, "terms": ["health", "gym", "leisure", "studio"], "name": "Gym / Fitness Center"},
+ "leisure/fitness_centre/yoga": {"icon": "maki-pitch", "fields": ["name", "sport", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["studio"], "tags": {"leisure": "fitness_centre", "sport": "yoga"}, "reference": {"key": "sport", "value": "yoga"}, "name": "Yoga Studio"},
+ "leisure/fitness_station": {"icon": "maki-pitch", "fields": ["fitness_station", "ref", "opening_hours"], "geometry": ["point", "area"], "tags": {"leisure": "fitness_station"}, "addTags": {"leisure": "fitness_station", "sport": "fitness"}, "removeTags": {"leisure": "fitness_station", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["exercise", "fitness", "gym", "trim trail"], "name": "Outdoor Fitness Station"},
+ "leisure/fitness_station/balance_beam": {"icon": "maki-pitch", "fields": ["ref", "opening_hours"], "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "balance_beam"}, "addTags": {"leisure": "fitness_station", "fitness_station": "balance_beam", "sport": "fitness"}, "removeTags": {"leisure": "fitness_station", "fitness_station": "balance_beam", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["balance", "exercise", "fitness", "gym", "trim trail"], "name": "Exercise Balance Beam"},
+ "leisure/fitness_station/box": {"icon": "maki-pitch", "fields": ["ref", "opening_hours"], "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "box"}, "addTags": {"leisure": "fitness_station", "fitness_station": "box", "sport": "fitness"}, "removeTags": {"leisure": "fitness_station", "fitness_station": "box", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["box", "exercise", "fitness", "gym", "jump", "trim trail"], "name": "Exercise Box"},
+ "leisure/fitness_station/horizontal_bar": {"icon": "maki-pitch", "fields": ["ref", "opening_hours"], "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "horizontal_bar"}, "addTags": {"leisure": "fitness_station", "fitness_station": "horizontal_bar", "sport": "fitness"}, "removeTags": {"leisure": "fitness_station", "fitness_station": "horizontal_bar", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["bar", "chinup", "chin up", "exercise", "fitness", "gym", "pullup", "pull up", "trim trail"], "name": "Exercise Horizontal Bar"},
+ "leisure/fitness_station/horizontal_ladder": {"icon": "maki-pitch", "fields": ["ref", "opening_hours"], "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "horizontal_ladder"}, "addTags": {"leisure": "fitness_station", "fitness_station": "horizontal_ladder", "sport": "fitness"}, "removeTags": {"leisure": "fitness_station", "fitness_station": "horizontal_ladder", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["bar", "chinup", "chin up", "exercise", "fitness", "gym", "ladder", "monkey bars", "pullup", "pull up", "trim trail"], "name": "Exercise Monkey Bars"},
+ "leisure/fitness_station/hyperextension": {"icon": "maki-pitch", "fields": ["ref", "opening_hours"], "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "hyperextension"}, "addTags": {"leisure": "fitness_station", "fitness_station": "hyperextension", "sport": "fitness"}, "removeTags": {"leisure": "fitness_station", "fitness_station": "hyperextension", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["back", "exercise", "extension", "fitness", "gym", "roman chair", "trim trail"], "name": "Hyperextension Station"},
+ "leisure/fitness_station/parallel_bars": {"icon": "maki-pitch", "fields": ["ref", "opening_hours"], "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "parallel_bars"}, "addTags": {"leisure": "fitness_station", "fitness_station": "parallel_bars", "sport": "fitness"}, "removeTags": {"leisure": "fitness_station", "fitness_station": "parallel_bars", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["bar", "dip", "exercise", "fitness", "gym", "trim trail"], "name": "Parallel Bars"},
+ "leisure/fitness_station/push-up": {"icon": "maki-pitch", "fields": ["ref", "opening_hours"], "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "push-up"}, "addTags": {"leisure": "fitness_station", "fitness_station": "push-up", "sport": "fitness"}, "removeTags": {"leisure": "fitness_station", "fitness_station": "push-up", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["bar", "exercise", "fitness", "gym", "pushup", "push up", "trim trail"], "name": "Push-Up Station"},
+ "leisure/fitness_station/rings": {"icon": "maki-pitch", "fields": ["ref", "opening_hours"], "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "rings"}, "addTags": {"leisure": "fitness_station", "fitness_station": "rings", "sport": "fitness"}, "removeTags": {"leisure": "fitness_station", "fitness_station": "rings", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["exercise", "fitness", "gym", "muscle up", "pullup", "pull up", "trim trail"], "name": "Exercise Rings"},
+ "leisure/fitness_station/sign": {"icon": "maki-pitch", "fields": ["ref", "opening_hours"], "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "sign"}, "addTags": {"leisure": "fitness_station", "fitness_station": "sign", "sport": "fitness"}, "removeTags": {"leisure": "fitness_station", "fitness_station": "sign", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["exercise", "fitness", "gym", "trim trail"], "name": "Exercise Instruction Sign"},
+ "leisure/fitness_station/sit-up": {"icon": "maki-pitch", "fields": ["ref", "opening_hours"], "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "sit-up"}, "addTags": {"leisure": "fitness_station", "fitness_station": "sit-up", "sport": "fitness"}, "removeTags": {"leisure": "fitness_station", "fitness_station": "sit-up", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["crunch", "exercise", "fitness", "gym", "situp", "sit up", "trim trail"], "name": "Sit-Up Station"},
+ "leisure/fitness_station/stairs": {"icon": "maki-pitch", "fields": ["ref", "opening_hours"], "geometry": ["point", "area"], "tags": {"leisure": "fitness_station", "fitness_station": "stairs"}, "addTags": {"leisure": "fitness_station", "fitness_station": "stairs", "sport": "fitness"}, "removeTags": {"leisure": "fitness_station", "fitness_station": "stairs", "sport": "fitness"}, "reference": {"key": "leisure", "value": "fitness_station"}, "terms": ["exercise", "fitness", "gym", "steps", "trim trail"], "name": "Exercise Stairs"},
+ "leisure/garden": {"icon": "maki-garden", "fields": ["name", "access_simple"], "geometry": ["point", "vertex", "area"], "tags": {"leisure": "garden"}, "name": "Garden"},
+ "leisure/golf_course": {"icon": "maki-golf", "fields": ["name", "operator", "address", "opening_hours"], "geometry": ["point", "area"], "terms": ["links"], "tags": {"leisure": "golf_course"}, "name": "Golf Course"},
+ "leisure/hackerspace": {"icon": "maki-commercial", "fields": ["name", "address", "building_area", "opening_hours", "website"], "geometry": ["point", "area"], "terms": ["makerspace", "hackspace", "hacklab"], "tags": {"leisure": "hackerspace"}, "name": "Hackerspace"},
+ "leisure/horse_riding": {"icon": "maki-horse-riding", "fields": ["name", "access_simple", "operator", "address", "building"], "geometry": ["point", "area"], "terms": ["equestrian", "stable"], "tags": {"leisure": "horse_riding"}, "name": "Horseback Riding Facility"},
+ "leisure/ice_rink": {"icon": "maki-pitch", "fields": ["name", "seasonal", "sport_ice", "operator", "address", "building", "opening_hours"], "geometry": ["point", "area"], "terms": ["hockey", "skating", "curling"], "tags": {"leisure": "ice_rink"}, "name": "Ice Rink"},
+ "leisure/marina": {"icon": "maki-harbor", "fields": ["name", "operator", "address", "capacity", "fee", "sanitary_dump_station", "power_supply", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "vertex", "area"], "terms": ["boat"], "tags": {"leisure": "marina"}, "name": "Marina"},
+ "leisure/miniature_golf": {"icon": "maki-golf", "fields": ["name", "operator", "address", "opening_hours"], "geometry": ["point", "area"], "terms": ["crazy golf", "mini golf", "putt-putt"], "tags": {"leisure": "miniature_golf"}, "name": "Miniature Golf"},
+ "leisure/nature_reserve": {"icon": "maki-park", "geometry": ["point", "area"], "fields": ["name"], "tags": {"leisure": "nature_reserve"}, "terms": ["protected", "wildlife"], "name": "Nature Reserve"},
+ "leisure/outdoor_seating": {"icon": "maki-picnic-site", "geometry": ["point", "area"], "fields": ["name", "operator"], "terms": ["al fresco", "beer garden", "dining", "cafe", "restaurant", "pub", "bar", "patio"], "tags": {"leisure": "outdoor_seating"}, "name": "Outdoor Seating Area"},
+ "leisure/park": {"icon": "maki-park", "geometry": ["point", "area"], "fields": ["name"], "terms": ["esplanade", "estate", "forest", "garden", "grass", "green", "grounds", "lawn", "lot", "meadow", "parkland", "place", "playground", "plaza", "pleasure garden", "recreation area", "square", "tract", "village green", "woodland"], "tags": {"leisure": "park"}, "name": "Park"},
+ "leisure/picnic_table": {"icon": "maki-picnic-site", "geometry": ["point"], "tags": {"leisure": "picnic_table"}, "terms": ["bench"], "name": "Picnic Table"},
+ "leisure/pitch": {"icon": "maki-pitch", "fields": ["name", "sport", "surface", "lit"], "geometry": ["point", "area"], "tags": {"leisure": "pitch"}, "terms": ["field"], "name": "Sport Pitch"},
+ "leisure/pitch/american_football": {"icon": "maki-america-football", "fields": ["name", "surface", "lit"], "geometry": ["point", "area"], "tags": {"leisure": "pitch", "sport": "american_football"}, "reference": {"key": "sport", "value": "american_football"}, "terms": [], "name": "American Football Field"},
+ "leisure/pitch/baseball": {"icon": "maki-baseball", "fields": ["name", "lit"], "geometry": ["point", "area"], "tags": {"leisure": "pitch", "sport": "baseball"}, "reference": {"key": "sport", "value": "baseball"}, "terms": [], "name": "Baseball Diamond"},
+ "leisure/pitch/basketball": {"icon": "maki-basketball", "fields": ["name", "surface", "hoops", "lit", "access_simple"], "geometry": ["point", "area"], "tags": {"leisure": "pitch", "sport": "basketball"}, "reference": {"key": "sport", "value": "basketball"}, "terms": [], "name": "Basketball Court"},
+ "leisure/pitch/beachvolleyball": {"icon": "maki-basketball", "fields": ["name", "surface", "lit"], "geometry": ["point", "area"], "tags": {"leisure": "pitch", "sport": "beachvolleyball"}, "addTags": {"leisure": "pitch", "sport": "beachvolleyball", "surface": "sand"}, "removeTags": {"leisure": "pitch", "sport": "beachvolleyball", "surface": "sand"}, "reference": {"key": "sport", "value": "beachvolleyball"}, "terms": ["volleyball"], "name": "Beach Volleyball Court"},
+ "leisure/pitch/boules": {"icon": "maki-pitch", "fields": ["name", "boules", "surface", "lit"], "geometry": ["point", "area"], "tags": {"leisure": "pitch", "sport": "boules"}, "reference": {"key": "sport", "value": "boules"}, "terms": ["bocce", "lyonnaise", "pétanque"], "name": "Boules/Bocce Court"},
+ "leisure/pitch/bowls": {"icon": "maki-pitch", "fields": ["name", "surface", "lit"], "geometry": ["point", "area"], "tags": {"leisure": "pitch", "sport": "bowls"}, "reference": {"key": "sport", "value": "bowls"}, "terms": [], "name": "Bowling Green"},
+ "leisure/pitch/cricket": {"icon": "maki-cricket", "fields": ["name", "surface", "lit"], "geometry": ["point", "area"], "tags": {"leisure": "pitch", "sport": "cricket"}, "reference": {"key": "sport", "value": "cricket"}, "terms": [], "name": "Cricket Field"},
+ "leisure/pitch/equestrian": {"icon": "maki-horse-riding", "fields": ["name", "surface", "lit", "building"], "geometry": ["point", "area"], "tags": {"leisure": "pitch", "sport": "equestrian"}, "reference": {"key": "sport", "value": "equestrian"}, "terms": ["dressage", "equestrian", "horse", "horseback", "riding"], "name": "Riding Arena"},
+ "leisure/pitch/rugby_league": {"icon": "maki-america-football", "fields": ["name", "surface", "lit"], "geometry": ["point", "area"], "tags": {"leisure": "pitch", "sport": "rugby_league"}, "reference": {"key": "sport", "value": "rugby_league"}, "terms": [], "name": "Rugby League Field"},
+ "leisure/pitch/rugby_union": {"icon": "maki-america-football", "fields": ["name", "surface", "lit"], "geometry": ["point", "area"], "tags": {"leisure": "pitch", "sport": "rugby_union"}, "reference": {"key": "sport", "value": "rugby_union"}, "terms": [], "name": "Rugby Union Field"},
+ "leisure/pitch/skateboard": {"icon": "maki-pitch", "fields": ["name", "surface", "lit"], "geometry": ["point", "area"], "tags": {"leisure": "pitch", "sport": "skateboard"}, "reference": {"key": "sport", "value": "skateboard"}, "terms": [], "name": "Skate Park"},
+ "leisure/pitch/soccer": {"icon": "maki-soccer", "fields": ["name", "surface", "lit"], "geometry": ["point", "area"], "tags": {"leisure": "pitch", "sport": "soccer"}, "reference": {"key": "sport", "value": "soccer"}, "terms": ["football"], "name": "Soccer Field"},
+ "leisure/pitch/table_tennis": {"icon": "maki-tennis", "fields": ["name", "lit", "access_simple"], "geometry": ["point", "area"], "tags": {"leisure": "pitch", "sport": "table_tennis"}, "reference": {"key": "sport", "value": "table_tennis"}, "terms": ["table tennis", "ping pong"], "name": "Ping Pong Table"},
+ "leisure/pitch/tennis": {"icon": "maki-tennis", "fields": ["name", "surface", "lit", "access_simple"], "geometry": ["point", "area"], "tags": {"leisure": "pitch", "sport": "tennis"}, "reference": {"key": "sport", "value": "tennis"}, "terms": [], "name": "Tennis Court"},
+ "leisure/pitch/volleyball": {"icon": "maki-basketball", "fields": ["name", "surface", "lit"], "geometry": ["point", "area"], "tags": {"leisure": "pitch", "sport": "volleyball"}, "reference": {"key": "sport", "value": "volleyball"}, "terms": [], "name": "Volleyball Court"},
+ "leisure/playground": {"icon": "maki-playground", "fields": ["name", "operator", "surface", "playground/max_age", "playground/min_age", "access_simple"], "geometry": ["point", "area"], "terms": ["jungle gym", "play area"], "tags": {"leisure": "playground"}, "name": "Playground"},
+ "leisure/resort": {"icon": "maki-lodging", "fields": ["name", "operator", "address", "opening_hours"], "geometry": ["point", "area"], "tags": {"leisure": "resort"}, "name": "Resort"},
+ "leisure/running_track": {"icon": "maki-pitch", "fields": ["surface", "sport_racing_nonmotor", "lit", "width", "lanes"], "geometry": ["point", "line", "area"], "tags": {"leisure": "track", "sport": "running"}, "terms": ["race*", "running", "sprint", "track"], "name": "Racetrack (Running)"},
+ "leisure/sauna": {"icon": "fas-thermometer-three-quarters", "fields": ["name", "operator", "address", "opening_hours", "access_simple", "fee"], "geometry": ["point", "area"], "tags": {"leisure": "sauna"}, "name": "Sauna"},
+ "leisure/slipway": {"icon": "temaki-beach", "geometry": ["point", "line"], "terms": ["boat launch", "boat ramp"], "tags": {"leisure": "slipway"}, "name": "Slipway"},
+ "leisure/sports_centre": {"icon": "maki-pitch", "fields": ["name", "sport", "building", "address", "opening_hours"], "geometry": ["point", "area"], "tags": {"leisure": "sports_centre"}, "terms": [], "name": "Sports Center / Complex"},
+ "leisure/sports_centre/swimming": {"icon": "maki-swimming", "fields": ["name", "access_simple", "operator", "address", "building"], "geometry": ["point", "area"], "terms": ["dive", "water"], "tags": {"leisure": "sports_centre", "sport": "swimming"}, "reference": {"key": "sport", "value": "swimming"}, "name": "Swimming Pool Facility"},
+ "leisure/stadium": {"icon": "maki-pitch", "fields": ["name", "sport", "address"], "geometry": ["point", "area"], "tags": {"leisure": "stadium"}, "name": "Stadium"},
+ "leisure/swimming_pool": {"icon": "maki-swimming", "fields": ["name", "access_simple", "operator", "address"], "geometry": ["point", "area"], "terms": ["dive", "water"], "tags": {"leisure": "swimming_pool"}, "name": "Swimming Pool"},
+ "leisure/track": {"icon": "iD-highway-road", "fields": ["surface", "sport_racing_nonmotor", "lit", "width", "lanes"], "geometry": ["point", "line", "area"], "tags": {"leisure": "track"}, "terms": ["cycle", "dog", "greyhound", "horse", "race*", "track"], "name": "Racetrack (Non-Motorsport)"},
+ "leisure/water_park": {"icon": "maki-swimming", "fields": ["name", "operator", "address"], "geometry": ["point", "area"], "terms": ["swim", "pool", "dive"], "tags": {"leisure": "water_park"}, "name": "Water Park"},
+ "line": {"fields": ["name"], "geometry": ["line"], "tags": {}, "name": "Line", "matchScore": 0.1},
+ "man_made": {"icon": "temaki-storage_tank", "fields": ["name", "man_made"], "geometry": ["point", "vertex", "line", "area"], "tags": {"man_made": "*"}, "name": "Man Made"},
+ "man_made/embankment": {"geometry": ["line"], "tags": {"man_made": "embankment"}, "name": "Embankment", "searchable": false},
+ "man_made/adit": {"icon": "maki-triangle", "geometry": ["point", "area"], "fields": ["operator", "direction"], "terms": ["entrance", "underground", "mine", "cave"], "tags": {"man_made": "adit"}, "name": "Adit"},
+ "man_made/antenna": {"icon": "temaki-antenna", "fields": ["height", "communication_multi"], "geometry": ["point"], "terms": ["broadcast", "cell phone", "cell", "communication", "mobile phone", "radio", "television", "transmission", "tv"], "tags": {"man_made": "antenna"}, "name": "Antenna"},
+ "man_made/breakwater": {"geometry": ["line", "area"], "tags": {"man_made": "breakwater"}, "name": "Breakwater"},
+ "man_made/bridge": {"geometry": ["area"], "tags": {"man_made": "bridge"}, "name": "Bridge"},
+ "man_made/chimney": {"icon": "temaki-chimney", "geometry": ["point", "area"], "tags": {"man_made": "chimney"}, "name": "Chimney"},
+ "man_made/clearcut": {"icon": "maki-logging", "geometry": ["area"], "tags": {"man_made": "clearcut"}, "terms": ["cut", "forest", "lumber", "tree", "wood"], "name": "Clearcut Forest"},
+ "man_made/crane": {"icon": "temaki-crane", "fields": ["operator", "height", "crane/type"], "geometry": ["point", "line", "vertex", "area"], "tags": {"man_made": "crane"}, "name": "Crane"},
+ "man_made/cutline": {"icon": "maki-logging", "geometry": ["line"], "tags": {"man_made": "cutline"}, "name": "Cut line"},
+ "man_made/flagpole": {"icon": "maki-embassy", "geometry": ["point"], "tags": {"man_made": "flagpole"}, "name": "Flagpole"},
+ "man_made/gasometer": {"icon": "temaki-storage_tank", "geometry": ["point", "area"], "terms": ["gas holder"], "tags": {"man_made": "gasometer"}, "name": "Gasometer"},
+ "man_made/groyne": {"geometry": ["line", "area"], "tags": {"man_made": "groyne"}, "name": "Groyne"},
+ "man_made/lighthouse": {"icon": "maki-lighthouse", "fields": ["building_area"], "geometry": ["point", "area"], "tags": {"man_made": "lighthouse"}, "name": "Lighthouse"},
+ "man_made/mast": {"icon": "temaki-antenna", "fields": ["tower/type", "tower/construction", "height", "communication_multi"], "geometry": ["point"], "terms": ["antenna", "broadcast tower", "cell phone tower", "cell tower", "communication mast", "communication tower", "guyed tower", "mobile phone tower", "radio mast", "radio tower", "television tower", "transmission mast", "transmission tower", "tv tower"], "tags": {"man_made": "mast"}, "name": "Mast"},
+ "man_made/monitoring_station": {"icon": "temaki-antenna", "geometry": ["point", "area"], "fields": ["monitoring_multi", "operator"], "terms": ["weather", "earthquake", "seismology", "air", "gps"], "tags": {"man_made": "monitoring_station"}, "name": "Monitoring Station"},
+ "man_made/observation": {"icon": "temaki-tower", "geometry": ["point", "area"], "terms": ["lookout tower", "fire tower"], "tags": {"man_made": "tower", "tower:type": "observation"}, "name": "Observation Tower"},
+ "man_made/observatory": {"geometry": ["point", "area"], "terms": ["astronomical", "meteorological"], "tags": {"man_made": "observatory"}, "name": "Observatory"},
+ "man_made/petroleum_well": {"icon": "temaki-storage_tank", "geometry": ["point"], "terms": ["drilling rig", "oil derrick", "oil drill", "oil horse", "oil rig", "oil pump", "petroleum well", "pumpjack"], "tags": {"man_made": "petroleum_well"}, "name": "Oil Well"},
+ "man_made/pier": {"icon": "iD-highway-footway", "fields": ["name", "surface", "lit", "width", "access"], "geometry": ["line", "area"], "terms": ["dock", "jetty"], "tags": {"man_made": "pier"}, "name": "Pier"},
+ "man_made/pipeline": {"icon": "iD-pipeline-line", "fields": ["location", "operator", "substance"], "geometry": ["line"], "tags": {"man_made": "pipeline"}, "name": "Pipeline"},
+ "man_made/pumping_station": {"icon": "maki-water", "geometry": ["point", "area"], "tags": {"man_made": "pumping_station"}, "name": "Pumping Station"},
+ "man_made/silo": {"icon": "temaki-silo", "fields": ["building_area", "crop"], "geometry": ["point", "area"], "terms": ["grain", "corn", "wheat"], "tags": {"man_made": "silo"}, "name": "Silo"},
+ "man_made/storage_tank": {"icon": "temaki-storage_tank", "fields": ["building_area", "content"], "geometry": ["point", "area"], "terms": ["water", "oil", "gas", "petrol"], "tags": {"man_made": "storage_tank"}, "name": "Storage Tank"},
+ "man_made/surveillance_camera": {"icon": "maki-attraction", "geometry": ["point", "vertex"], "fields": ["surveillance", "surveillance/type", "camera/type", "camera/mount", "camera/direction", "surveillance/zone", "contact/webcam"], "terms": ["anpr", "alpr", "camera", "car plate recognition", "cctv", "guard", "license plate recognition", "monitoring", "number plate recognition", "security", "video", "webcam"], "tags": {"man_made": "surveillance", "surveillance:type": "camera"}, "name": "Surveillance Camera"},
+ "man_made/surveillance": {"icon": "maki-attraction", "geometry": ["point", "vertex"], "fields": ["surveillance", "surveillance/type", "surveillance/zone", "direction"], "terms": ["anpr", "alpr", "camera", "car plate recognition", "cctv", "guard", "license plate recognition", "monitoring", "number plate recognition", "security", "video", "webcam"], "tags": {"man_made": "surveillance"}, "name": "Surveillance"},
+ "man_made/survey_point": {"icon": "maki-monument", "fields": ["ref"], "geometry": ["point", "vertex"], "terms": ["trig point", "triangulation pillar", "trigonometrical station"], "tags": {"man_made": "survey_point"}, "name": "Survey Point"},
+ "man_made/tower": {"icon": "temaki-tower", "fields": ["tower/type", "tower/construction", "height"], "geometry": ["point", "area"], "tags": {"man_made": "tower"}, "name": "Tower"},
+ "man_made/wastewater_plant": {"icon": "maki-water", "fields": ["name", "operator", "address"], "geometry": ["point", "area"], "terms": ["sewage*", "water treatment plant", "reclamation plant"], "tags": {"man_made": "wastewater_plant"}, "name": "Wastewater Plant"},
+ "man_made/water_tower": {"icon": "maki-water", "fields": ["operator"], "geometry": ["point", "area"], "tags": {"man_made": "water_tower"}, "name": "Water Tower"},
+ "man_made/water_well": {"icon": "maki-water", "fields": ["operator"], "geometry": ["point", "area"], "tags": {"man_made": "water_well"}, "name": "Water Well"},
+ "man_made/water_works": {"icon": "maki-water", "fields": ["name", "operator", "address"], "geometry": ["point", "area"], "tags": {"man_made": "water_works"}, "name": "Water Works"},
+ "man_made/watermill": {"icon": "maki-buddhism", "fields": ["building_area"], "geometry": ["point", "area"], "terms": ["water", "wheel", "mill"], "tags": {"man_made": "watermill"}, "name": "Watermill"},
+ "man_made/windmill": {"icon": "temaki-windmill", "fields": ["building_area"], "geometry": ["point", "area"], "terms": ["wind", "wheel", "mill"], "tags": {"man_made": "windmill"}, "name": "Windmill"},
+ "man_made/works": {"icon": "maki-industry", "fields": ["name", "operator", "address", "building_area", "product"], "geometry": ["point", "area"], "terms": ["assembly", "build", "brewery", "car", "plant", "plastic", "processing", "manufacture", "refinery"], "tags": {"man_made": "works"}, "name": "Factory"},
+ "manhole": {"icon": "maki-circle-stroked", "fields": ["manhole", "operator", "label", "ref"], "geometry": ["point", "vertex"], "tags": {"manhole": "*"}, "terms": ["cover", "hole", "sewer", "sewage", "telecom"], "name": "Manhole"},
+ "manhole/drain": {"icon": "maki-water", "fields": ["operator", "ref"], "geometry": ["point", "vertex"], "tags": {"manhole": "drain"}, "terms": ["cover", "drain", "hole", "rain", "sewer", "sewage", "storm"], "name": "Storm Drain"},
+ "manhole/telecom": {"icon": "maki-circle-stroked", "fields": ["operator", "ref"], "geometry": ["point", "vertex"], "tags": {"manhole": "telecom"}, "terms": ["cover", "phone", "hole", "telecom", "telephone", "bt"], "name": "Telecom Manhole"},
+ "natural": {"icon": "maki-natural", "fields": ["name", "natural"], "geometry": ["point", "vertex", "area"], "tags": {"natural": "*"}, "name": "Natural"},
+ "natural/bare_rock": {"geometry": ["area"], "tags": {"natural": "bare_rock"}, "terms": ["rock"], "name": "Bare Rock"},
+ "natural/bay": {"icon": "temaki-beach", "geometry": ["point", "area"], "fields": ["name"], "tags": {"natural": "bay"}, "terms": [], "name": "Bay"},
+ "natural/beach": {"icon": "temaki-beach", "fields": ["surface"], "geometry": ["point", "area"], "tags": {"natural": "beach"}, "terms": ["shore"], "name": "Beach"},
+ "natural/cave_entrance": {"icon": "maki-triangle", "geometry": ["point", "area"], "fields": ["fee", "access_simple", "direction"], "tags": {"natural": "cave_entrance"}, "terms": ["cavern", "hollow", "grotto", "shelter", "cavity"], "name": "Cave Entrance"},
+ "natural/cliff": {"icon": "maki-triangle", "geometry": ["point", "vertex", "line", "area"], "tags": {"natural": "cliff"}, "terms": ["escarpment"], "name": "Cliff"},
+ "natural/coastline": {"geometry": ["line"], "tags": {"natural": "coastline"}, "terms": ["shore"], "name": "Coastline"},
+ "natural/fell": {"geometry": ["area"], "tags": {"natural": "fell"}, "terms": [], "name": "Fell"},
+ "natural/glacier": {"geometry": ["area"], "tags": {"natural": "glacier"}, "terms": [], "name": "Glacier"},
+ "natural/grassland": {"geometry": ["area"], "tags": {"natural": "grassland"}, "terms": ["prairie", "savanna"], "name": "Grassland"},
+ "natural/heath": {"geometry": ["area"], "tags": {"natural": "heath"}, "terms": [], "name": "Heath"},
+ "natural/mud": {"geometry": ["area"], "tags": {"natural": "mud"}, "terms": ["wetland"], "name": "Mud"},
+ "natural/peak": {"icon": "maki-mountain", "fields": ["name", "elevation"], "geometry": ["point", "vertex"], "tags": {"natural": "peak"}, "terms": ["acme", "aiguille", "alp", "climax", "crest", "crown", "hill", "mount", "mountain", "pinnacle", "summit", "tip", "top"], "name": "Peak"},
+ "natural/reef": {"icon": "temaki-beach", "geometry": ["point", "area"], "tags": {"natural": "reef"}, "terms": ["barrier", "coral", "ocean", "sand", "shoal"], "name": "Reef"},
+ "natural/ridge": {"geometry": ["line"], "tags": {"natural": "ridge"}, "terms": ["crest"], "name": "Ridge"},
+ "natural/saddle": {"icon": "maki-triangle-stroked", "fields": ["elevation"], "geometry": ["point", "vertex"], "tags": {"natural": "saddle"}, "terms": ["pass", "mountain pass", "top"], "name": "Saddle"},
+ "natural/sand": {"geometry": ["area"], "tags": {"natural": "sand"}, "terms": ["desert"], "name": "Sand"},
+ "natural/scree": {"geometry": ["area"], "tags": {"natural": "scree"}, "terms": ["loose rocks"], "name": "Scree"},
+ "natural/scrub": {"geometry": ["area"], "tags": {"natural": "scrub"}, "terms": ["bush", "shrubs"], "name": "Scrub"},
+ "natural/spring": {"icon": "maki-water", "fields": ["name", "intermittent"], "geometry": ["point", "vertex"], "tags": {"natural": "spring"}, "terms": [], "name": "Spring"},
+ "natural/tree_row": {"icon": "maki-park", "fields": ["leaf_type", "leaf_cycle", "denotation"], "geometry": ["line"], "tags": {"natural": "tree_row"}, "terms": [], "name": "Tree row"},
+ "natural/tree": {"icon": "maki-park", "fields": ["leaf_type_singular", "leaf_cycle_singular", "denotation"], "geometry": ["point", "vertex"], "tags": {"natural": "tree"}, "terms": [], "name": "Tree"},
+ "natural/volcano": {"icon": "maki-volcano", "fields": ["name", "elevation", "volcano/status", "volcano/type"], "geometry": ["point", "vertex"], "tags": {"natural": "volcano"}, "terms": ["mountain", "crater"], "name": "Volcano"},
+ "natural/water": {"icon": "maki-water", "fields": ["water"], "geometry": ["area"], "tags": {"natural": "water"}, "name": "Water"},
+ "natural/water/lake": {"icon": "maki-water", "fields": ["name", "intermittent"], "geometry": ["area"], "tags": {"natural": "water", "water": "lake"}, "reference": {"key": "natural", "value": "water"}, "terms": ["lakelet", "loch", "mere"], "name": "Lake"},
+ "natural/water/pond": {"icon": "maki-water", "fields": ["name", "intermittent"], "geometry": ["area"], "tags": {"natural": "water", "water": "pond"}, "reference": {"key": "natural", "value": "water"}, "terms": ["lakelet", "millpond", "tarn", "pool", "mere"], "name": "Pond"},
+ "natural/water/reservoir": {"icon": "maki-water", "fields": ["name", "intermittent"], "geometry": ["area"], "tags": {"natural": "water", "water": "reservoir"}, "reference": {"key": "natural", "value": "water"}, "name": "Reservoir"},
+ "natural/wetland": {"icon": "maki-wetland", "fields": ["wetland"], "geometry": ["point", "area"], "tags": {"natural": "wetland"}, "terms": ["bog", "marsh", "reedbed", "swamp", "tidalflat"], "name": "Wetland"},
+ "natural/wood": {"icon": "maki-park-alt1", "fields": ["name", "leaf_type", "leaf_cycle"], "geometry": ["point", "area"], "tags": {"natural": "wood"}, "terms": ["tree"], "name": "Wood"},
+ "noexit/yes": {"icon": "maki-barrier", "geometry": ["vertex"], "terms": ["no exit", "road end", "dead end"], "tags": {"noexit": "yes"}, "reference": {"key": "noexit", "value": "*"}, "name": "No Exit"},
+ "office": {"icon": "maki-suitcase", "fields": ["name", "office", "address", "building_area", "opening_hours", "smoking"], "geometry": ["point", "vertex", "area"], "tags": {"office": "*"}, "terms": [], "name": "Office"},
+ "office/administrative": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "administrative"}, "terms": [], "searchable": false, "name": "Administrative Office"},
+ "office/physician": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "physician"}, "searchable": false, "name": "Physician"},
+ "office/travel_agent": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "travel_agent"}, "reference": {"key": "shop", "value": "travel_agency"}, "terms": [], "name": "Travel Agency", "searchable": false},
+ "office/accountant": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "accountant"}, "terms": [], "name": "Accountant Office"},
+ "office/adoption_agency": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "adoption_agency"}, "terms": [], "name": "Adoption Agency"},
+ "office/advertising_agency": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "advertising_agency"}, "terms": ["ad", "ad agency", "advert agency", "advertising", "marketing"], "name": "Advertising Agency"},
+ "office/architect": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "architect"}, "terms": [], "name": "Architect Office"},
+ "office/association": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "association"}, "terms": ["association", "non-profit", "nonprofit", "organization", "society"], "name": "Nonprofit Organization Office"},
+ "office/charity": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "charity"}, "terms": ["charitable organization"], "name": "Charity Office"},
+ "office/company": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours", "smoking"], "geometry": ["point", "area"], "tags": {"office": "company"}, "terms": [], "name": "Corporate Office"},
+ "office/coworking": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "terms": ["coworking", "office"], "tags": {"office": "coworking"}, "reference": {"key": "amenity", "value": "coworking_space"}, "name": "Coworking Space"},
+ "office/educational_institution": {"icon": "maki-school", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "educational_institution"}, "terms": [], "name": "Educational Institution"},
+ "office/employment_agency": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "employment_agency"}, "terms": ["job"], "name": "Employment Agency"},
+ "office/energy_supplier": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "energy_supplier"}, "terms": ["electricity", "energy company", "energy utility", "gas utility"], "name": "Energy Supplier Office"},
+ "office/estate_agent": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "estate_agent"}, "terms": [], "name": "Real Estate Office"},
+ "office/financial": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "financial"}, "terms": [], "name": "Financial Office"},
+ "office/forestry": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "forestry"}, "terms": ["forest", "ranger"], "name": "Forestry Office"},
+ "office/foundation": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "foundation"}, "terms": [], "name": "Foundation Office"},
+ "office/government": {"icon": "maki-town-hall", "fields": ["name", "government", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "government"}, "terms": [], "name": "Government Office"},
+ "office/government/register_office": {"icon": "maki-town-hall", "fields": ["name", "address", "building_area", "opening_hours", "operator"], "geometry": ["point", "area"], "terms": ["clerk", "marriage", "death", "birth", "certificate"], "tags": {"office": "government", "government": "register_office"}, "reference": {"key": "government", "value": "register_office"}, "name": "Register Office"},
+ "office/government/tax": {"icon": "maki-town-hall", "fields": ["name", "address", "building_area", "opening_hours", "operator"], "geometry": ["point", "area"], "terms": ["fiscal authorities", "revenue office", "tax office"], "tags": {"office": "government", "government": "tax"}, "reference": {"key": "government", "value": "tax"}, "name": "Tax and Revenue Office"},
+ "office/guide": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "guide"}, "terms": ["dive guide", "mountain guide", "tour guide"], "name": "Tour Guide Office"},
+ "office/insurance": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "insurance"}, "terms": [], "name": "Insurance Office"},
+ "office/it": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "it"}, "terms": ["computer", "information", "software", "technology"], "name": "Information Technology Office"},
+ "office/lawyer": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "lawyer"}, "terms": [], "name": "Law Office"},
+ "office/lawyer/notary": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "lawyer", "lawyer": "notary"}, "reference": {"key": "office", "value": "notary"}, "searchable": false, "name": "Notary Office"},
+ "office/moving_company": {"icon": "maki-warehouse", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "moving_company"}, "terms": ["relocation"], "name": "Moving Company Office"},
+ "office/newspaper": {"icon": "maki-library", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "newspaper"}, "terms": [], "name": "Newspaper Office"},
+ "office/ngo": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours", "smoking"], "geometry": ["point", "area"], "tags": {"office": "ngo"}, "terms": ["ngo", "non government", "non-government", "organization", "organisation"], "name": "NGO Office"},
+ "office/notary": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "notary"}, "terms": ["clerk", "deeds", "estate", "signature", "wills"], "name": "Notary Office"},
+ "office/political_party": {"icon": "maki-town-hall", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "political_party"}, "terms": [], "name": "Political Party"},
+ "office/private_investigator": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "private_investigator"}, "terms": ["PI", "private eye", "private detective"], "name": "Private Investigator Office"},
+ "office/quango": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "quango"}, "terms": ["ngo", "non government", "non-government", "organization", "organisation", "quasi autonomous", "quasi-autonomous"], "name": "Quasi-NGO Office"},
+ "office/research": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "research"}, "terms": [], "name": "Research Office"},
+ "office/surveyor": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "surveyor"}, "terms": [], "name": "Surveyor Office"},
+ "office/tax_advisor": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "tax_advisor"}, "terms": ["tax", "tax consultant"], "name": "Tax Advisor Office"},
+ "office/telecommunication": {"icon": "maki-telephone", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "telecommunication"}, "terms": ["communication", "internet", "phone", "voice"], "name": "Telecom Office"},
+ "office/therapist": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "tags": {"office": "therapist"}, "terms": ["therapy"], "name": "Therapist Office"},
+ "office/water_utility": {"icon": "maki-suitcase", "fields": ["name", "address", "building_area", "opening_hours", "operator"], "geometry": ["point", "area"], "tags": {"office": "water_utility"}, "terms": ["water board", "utility"], "name": "Water Utility Office"},
+ "piste": {"icon": "maki-skiing", "fields": ["name", "piste/type", "piste/difficulty", "piste/grooming", "oneway", "lit"], "geometry": ["point", "line", "area"], "terms": ["ski", "sled", "sleigh", "snowboard", "nordic", "downhill", "snowmobile"], "tags": {"piste:type": "*"}, "name": "Piste/Ski Trail"},
+ "place/farm": {"icon": "maki-farm", "geometry": ["point", "area"], "fields": ["name"], "tags": {"place": "farm"}, "name": "Farm", "searchable": false},
+ "place/city": {"icon": "maki-city", "fields": ["name", "population"], "geometry": ["point", "area"], "tags": {"place": "city"}, "name": "City"},
+ "place/hamlet": {"icon": "maki-triangle-stroked", "fields": ["name", "population"], "geometry": ["point", "area"], "tags": {"place": "hamlet"}, "name": "Hamlet"},
+ "place/island": {"icon": "maki-mountain", "geometry": ["point", "area"], "fields": ["name"], "terms": ["archipelago", "atoll", "bar", "cay", "isle", "islet", "key", "reef"], "tags": {"place": "island"}, "name": "Island"},
+ "place/islet": {"icon": "maki-mountain", "geometry": ["point", "area"], "fields": ["name"], "terms": ["archipelago", "atoll", "bar", "cay", "isle", "islet", "key", "reef"], "tags": {"place": "islet"}, "name": "Islet"},
+ "place/isolated_dwelling": {"icon": "maki-home", "geometry": ["point", "area"], "fields": ["name"], "tags": {"place": "isolated_dwelling"}, "name": "Isolated Dwelling"},
+ "place/locality": {"icon": "maki-triangle-stroked", "geometry": ["point", "area"], "fields": ["name"], "tags": {"place": "locality"}, "name": "Locality"},
+ "place/neighbourhood": {"icon": "maki-triangle-stroked", "fields": ["name", "population"], "geometry": ["point", "area"], "tags": {"place": "neighbourhood"}, "terms": ["neighbourhood"], "name": "Neighborhood"},
+ "place/plot": {"icon": "maki-triangle-stroked", "fields": ["name"], "geometry": ["point", "area"], "tags": {"place": "plot"}, "terms": ["tract", "land", "lot", "parcel"], "name": "Plot"},
+ "place/quarter": {"icon": "maki-triangle-stroked", "fields": ["name", "population"], "geometry": ["point", "area"], "tags": {"place": "quarter"}, "terms": ["boro", "borough", "quarter"], "name": "Sub-Borough / Quarter"},
+ "place/square": {"geometry": ["point", "area"], "fields": ["name"], "tags": {"place": "square"}, "name": "Square"},
+ "place/suburb": {"icon": "maki-triangle-stroked", "fields": ["name", "population"], "geometry": ["point", "area"], "tags": {"place": "suburb"}, "terms": ["boro", "borough", "quarter"], "name": "Borough / Suburb"},
+ "place/town": {"icon": "maki-town", "fields": ["name", "population"], "geometry": ["point", "area"], "tags": {"place": "town"}, "name": "Town"},
+ "place/village": {"icon": "maki-village", "fields": ["name", "population"], "geometry": ["point", "area"], "tags": {"place": "village"}, "name": "Village"},
+ "playground/balance_beam": {"icon": "maki-playground", "geometry": ["point", "line"], "tags": {"playground": "balancebeam"}, "name": "Play Balance Beam"},
+ "playground/basket_spinner": {"icon": "maki-playground", "geometry": ["point"], "terms": ["basket rotator"], "tags": {"playground": "basketrotator"}, "name": "Basket Spinner"},
+ "playground/basket_swing": {"icon": "maki-playground", "geometry": ["point"], "tags": {"playground": "basketswing"}, "name": "Basket Swing"},
+ "playground/climbing_frame": {"icon": "maki-playground", "geometry": ["point", "area"], "tags": {"playground": "climbingframe"}, "name": "Climbing Frame"},
+ "playground/cushion": {"icon": "maki-playground", "geometry": ["point", "area"], "tags": {"playground": "cushion"}, "name": "Bouncy Cushion"},
+ "playground/horizontal_bar": {"icon": "maki-pitch", "fields": ["height"], "geometry": ["point"], "terms": ["high bar"], "tags": {"playground": "horizontal_bar"}, "name": "Play Horizontal Bar"},
+ "playground/rocker": {"icon": "maki-playground", "geometry": ["point"], "tags": {"playground": "springy"}, "name": "Spring Rider", "terms": ["spring rocker", "springy rocker"]},
+ "playground/roundabout": {"icon": "maki-stadium", "fields": ["bench"], "geometry": ["point", "area"], "tags": {"playground": "roundabout"}, "name": "Play Roundabout", "terms": ["merry-go-round"]},
+ "playground/sandpit": {"icon": "maki-playground", "geometry": ["point", "area"], "tags": {"playground": "sandpit"}, "name": "Sandpit"},
+ "playground/seesaw": {"icon": "maki-playground", "geometry": ["point"], "tags": {"playground": "seesaw"}, "name": "Seesaw"},
+ "playground/slide": {"icon": "maki-playground", "geometry": ["point", "line"], "tags": {"playground": "slide"}, "name": "Slide"},
+ "playground/structure": {"icon": "maki-pitch", "geometry": ["point", "area"], "tags": {"playground": "structure"}, "name": "Play Structure"},
+ "playground/swing": {"icon": "maki-playground", "fields": ["playground/baby", "wheelchair"], "geometry": ["point"], "tags": {"playground": "swing"}, "name": "Swing"},
+ "playground/zipwire": {"icon": "maki-playground", "geometry": ["point", "line"], "tags": {"playground": "zipwire"}, "name": "Zip Wire"},
+ "point": {"fields": ["name"], "geometry": ["point"], "tags": {}, "name": "Point", "matchScore": 0.1},
+ "power/sub_station": {"icon": "temaki-power", "fields": ["substation", "operator", "building", "ref"], "geometry": ["point", "area"], "tags": {"power": "sub_station"}, "reference": {"key": "power", "value": "substation"}, "name": "Substation", "searchable": false},
+ "power/generator": {"icon": "temaki-power", "fields": ["operator", "generator/source", "generator/method", "generator/type", "generator/output/electricity", "ref"], "geometry": ["point", "vertex", "area"], "terms": ["hydro", "solar", "turbine", "wind"], "tags": {"power": "generator"}, "name": "Power Generator"},
+ "power/generator/source_nuclear": {"icon": "temaki-radiation", "fields": ["operator", "generator/source", "generator/method", "generator/type", "generator/output/electricity", "ref"], "geometry": ["point", "vertex", "area"], "terms": ["fission", "generator", "nuclear", "nuke", "reactor"], "tags": {"power": "generator", "generator:source": "nuclear", "generator:method": "fission"}, "reference": {"key": "generator:source", "value": "nuclear"}, "name": "Nuclear Reactor"},
+ "power/generator/source_wind": {"icon": "temaki-wind_turbine", "fields": ["operator", "generator/source", "generator/method", "generator/type", "generator/output/electricity", "height", "ref"], "geometry": ["point", "vertex", "area"], "terms": ["generator", "turbine", "windmill", "wind"], "tags": {"power": "generator", "generator:source": "wind", "generator:method": "wind_turbine"}, "reference": {"key": "generator:source", "value": "wind"}, "name": "Wind Turbine"},
+ "power/line": {"icon": "iD-power-line", "fields": ["name", "operator", "voltage", "ref"], "geometry": ["line"], "tags": {"power": "line"}, "name": "Power Line"},
+ "power/minor_line": {"icon": "iD-power-line", "fields": ["name", "operator", "voltage", "ref"], "geometry": ["line"], "tags": {"power": "minor_line"}, "name": "Minor Power Line"},
+ "power/plant": {"icon": "maki-industry", "fields": ["name", "operator", "address", "plant/output/electricity", "start_date"], "geometry": ["area"], "tags": {"power": "plant"}, "addTags": {"power": "plant", "landuse": "industrial"}, "removeTags": {"power": "plant", "landuse": "industrial"}, "terms": ["coal", "gas", "generat*", "hydro", "nuclear", "power", "station"], "name": "Power Station Grounds"},
+ "power/pole": {"fields": ["ref"], "geometry": ["point", "vertex"], "tags": {"power": "pole"}, "name": "Power Pole"},
+ "power/substation": {"icon": "temaki-power", "fields": ["substation", "operator", "building", "ref"], "geometry": ["point", "area"], "tags": {"power": "substation"}, "name": "Substation"},
+ "power/switch": {"icon": "temaki-power", "fields": ["switch", "operator", "location", "cables", "voltage", "ref"], "geometry": ["point", "vertex", "area"], "tags": {"power": "switch"}, "name": "Power Switch"},
+ "power/tower": {"fields": ["ref"], "geometry": ["vertex"], "tags": {"power": "tower"}, "name": "High-Voltage Tower"},
+ "power/transformer": {"icon": "temaki-power", "fields": ["transformer", "operator", "location", "rating", "devices", "phases", "frequency", "voltage/primary", "voltage/secondary", "voltage/tertiary", "windings", "windings/configuration", "ref"], "geometry": ["point", "vertex", "area"], "tags": {"power": "transformer"}, "name": "Transformer"},
+ "public_transport/linear_platform_aerialway": {"icon": "iD-highway-footway", "fields": ["name", "ref_platform", "network", "operator", "surface", "lit", "bench", "shelter"], "geometry": ["line"], "tags": {"public_transport": "platform", "aerialway": "yes"}, "reference": {"key": "public_transport", "value": "platform"}, "terms": ["aerialway", "cable car", "platform", "public transit", "public transportation", "transit", "transportation"], "name": "Aerialway Stop / Platform"},
+ "public_transport/linear_platform_bus": {"icon": "iD-highway-footway", "fields": ["name", "ref_platform", "network", "operator", "surface", "lit", "bench", "shelter"], "geometry": ["line"], "tags": {"public_transport": "platform", "bus": "yes"}, "addTags": {"public_transport": "platform", "bus": "yes", "highway": "bus_stop"}, "removeTags": {"public_transport": "platform", "bus": "yes", "highway": "bus_stop"}, "reference": {"key": "public_transport", "value": "platform"}, "terms": ["bus", "platform", "public transit", "public transportation", "transit", "transportation"], "name": "Bus Stop / Platform"},
+ "public_transport/linear_platform_ferry": {"icon": "iD-highway-footway", "fields": ["name", "ref_platform", "network", "operator", "surface", "lit", "bench", "shelter"], "geometry": ["line"], "tags": {"public_transport": "platform", "ferry": "yes"}, "reference": {"key": "public_transport", "value": "platform"}, "terms": ["boat", "dock", "ferry", "pier", "platform", "public transit", "public transportation", "transit", "transportation"], "name": "Ferry Stop / Platform"},
+ "public_transport/linear_platform_light_rail": {"icon": "iD-highway-footway", "fields": ["name", "ref_platform", "network", "operator", "surface", "lit", "bench", "shelter"], "geometry": ["line"], "tags": {"public_transport": "platform", "light_rail": "yes"}, "addTags": {"public_transport": "platform", "light_rail": "yes", "railway": "platform"}, "removeTags": {"public_transport": "platform", "light_rail": "yes", "railway": "platform"}, "reference": {"key": "railway", "value": "platform"}, "terms": ["electric", "light rail", "platform", "public transit", "public transportation", "rail", "track", "tram", "trolley", "transit", "transportation"], "name": "Light Rail Stop / Platform"},
+ "public_transport/linear_platform_monorail": {"icon": "iD-highway-footway", "fields": ["name", "ref_platform", "network", "operator", "surface", "lit", "bench", "shelter"], "geometry": ["line"], "tags": {"public_transport": "platform", "monorail": "yes"}, "addTags": {"public_transport": "platform", "monorail": "yes", "railway": "platform"}, "removeTags": {"public_transport": "platform", "monorail": "yes", "railway": "platform"}, "reference": {"key": "railway", "value": "platform"}, "terms": ["monorail", "platform", "public transit", "public transportation", "rail", "transit", "transportation"], "name": "Monorail Stop / Platform"},
+ "public_transport/linear_platform_subway": {"icon": "iD-highway-footway", "fields": ["name", "ref_platform", "network", "operator", "surface", "lit", "bench", "shelter"], "geometry": ["line"], "tags": {"public_transport": "platform", "subway": "yes"}, "addTags": {"public_transport": "platform", "subway": "yes", "railway": "platform"}, "removeTags": {"public_transport": "platform", "subway": "yes", "railway": "platform"}, "reference": {"key": "railway", "value": "platform"}, "terms": ["metro", "platform", "public transit", "public transportation", "rail", "subway", "track", "transit", "transportation", "underground"], "name": "Subway Stop / Platform"},
+ "public_transport/linear_platform_train": {"icon": "iD-highway-footway", "fields": ["name", "ref_platform", "network", "operator", "surface", "lit", "bench", "shelter"], "geometry": ["line"], "tags": {"public_transport": "platform", "train": "yes"}, "addTags": {"public_transport": "platform", "train": "yes", "railway": "platform"}, "removeTags": {"public_transport": "platform", "train": "yes", "railway": "platform"}, "reference": {"key": "railway", "value": "platform"}, "terms": ["platform", "public transit", "public transportation", "rail", "track", "train", "transit", "transportation"], "name": "Train Stop / Platform"},
+ "public_transport/linear_platform_tram": {"icon": "iD-highway-footway", "fields": ["name", "ref_platform", "network", "operator", "surface", "lit", "bench", "shelter"], "geometry": ["line"], "tags": {"public_transport": "platform", "tram": "yes"}, "addTags": {"public_transport": "platform", "tram": "yes", "railway": "platform"}, "removeTags": {"public_transport": "platform", "tram": "yes", "railway": "platform"}, "reference": {"key": "public_transport", "value": "platform"}, "terms": ["electric", "light rail", "platform", "public transit", "public transportation", "rail", "streetcar", "track", "tram", "trolley", "transit", "transportation"], "name": "Tram Stop / Platform"},
+ "public_transport/linear_platform_trolleybus": {"icon": "iD-highway-footway", "fields": ["name", "ref_platform", "network", "operator", "surface", "lit", "bench", "shelter"], "geometry": ["line"], "tags": {"public_transport": "platform", "trolleybus": "yes"}, "addTags": {"public_transport": "platform", "trolleybus": "yes", "highway": "bus_stop"}, "removeTags": {"public_transport": "platform", "trolleybus": "yes", "highway": "bus_stop"}, "reference": {"key": "public_transport", "value": "platform"}, "terms": ["bus", "electric", "platform", "public transit", "public transportation", "streetcar", "trackless", "tram", "trolley", "transit", "transportation"], "name": "Trolleybus Stop / Platform"},
+ "public_transport/linear_platform": {"icon": "iD-highway-footway", "fields": ["name", "ref_platform", "network", "operator", "surface", "lit", "bench", "shelter"], "geometry": ["line"], "tags": {"public_transport": "platform"}, "terms": ["platform", "public transit", "public transportation", "transit", "transportation"], "name": "Transit Stop / Platform", "matchScore": 0.2},
+ "public_transport/platform_aerialway": {"icon": "maki-aerialway", "fields": ["name", "ref_platform", "network", "operator", "surface", "lit", "bench", "shelter"], "geometry": ["point", "area"], "tags": {"public_transport": "platform", "aerialway": "yes"}, "reference": {"key": "public_transport", "value": "platform"}, "terms": ["aerialway", "cable car", "platform", "public transit", "public transportation", "transit", "transportation"], "name": "Aerialway Stop / Platform"},
+ "public_transport/platform_bus": {"icon": "maki-bus", "fields": ["name", "ref_platform", "network", "operator", "surface", "lit", "bench", "shelter"], "geometry": ["point", "area"], "tags": {"public_transport": "platform", "bus": "yes"}, "addTags": {"public_transport": "platform", "bus": "yes", "highway": "bus_stop"}, "removeTags": {"public_transport": "platform", "bus": "yes", "highway": "bus_stop"}, "reference": {"key": "public_transport", "value": "platform"}, "terms": ["bus", "platform", "public transit", "public transportation", "transit", "transportation"], "name": "Bus Stop / Platform"},
+ "public_transport/platform_ferry": {"icon": "maki-ferry", "fields": ["name", "ref_platform", "network", "operator", "surface", "lit", "bench", "shelter"], "geometry": ["point", "area"], "tags": {"public_transport": "platform", "ferry": "yes"}, "reference": {"key": "public_transport", "value": "platform"}, "terms": ["boat", "dock", "ferry", "pier", "platform", "public transit", "public transportation", "transit", "transportation"], "name": "Ferry Stop / Platform"},
+ "public_transport/platform_light_rail": {"icon": "temaki-light_rail", "fields": ["name", "ref_platform", "network", "operator", "surface", "lit", "bench", "shelter"], "geometry": ["point", "area"], "tags": {"public_transport": "platform", "light_rail": "yes"}, "addTags": {"public_transport": "platform", "light_rail": "yes", "railway": "platform"}, "removeTags": {"public_transport": "platform", "light_rail": "yes", "railway": "platform"}, "reference": {"key": "railway", "value": "platform"}, "terms": ["electric", "light rail", "platform", "public transit", "public transportation", "rail", "track", "tram", "trolley", "transit", "transportation"], "name": "Light Rail Stop / Platform"},
+ "public_transport/platform_monorail": {"icon": "temaki-monorail", "fields": ["name", "ref_platform", "network", "operator", "surface", "lit", "bench", "shelter"], "geometry": ["point", "area"], "tags": {"public_transport": "platform", "monorail": "yes"}, "addTags": {"public_transport": "platform", "monorail": "yes", "railway": "platform"}, "removeTags": {"public_transport": "platform", "monorail": "yes", "railway": "platform"}, "reference": {"key": "railway", "value": "platform"}, "terms": ["monorail", "platform", "public transit", "public transportation", "rail", "transit", "transportation"], "name": "Monorail Stop / Platform"},
+ "public_transport/platform_subway": {"icon": "temaki-subway", "fields": ["name", "ref_platform", "network", "operator", "surface", "lit", "bench", "shelter"], "geometry": ["point", "area"], "tags": {"public_transport": "platform", "subway": "yes"}, "addTags": {"public_transport": "platform", "subway": "yes", "railway": "platform"}, "removeTags": {"public_transport": "platform", "subway": "yes", "railway": "platform"}, "reference": {"key": "railway", "value": "platform"}, "terms": ["metro", "platform", "public transit", "public transportation", "rail", "subway", "track", "transit", "transportation", "underground"], "name": "Subway Stop / Platform"},
+ "public_transport/platform_train": {"icon": "maki-rail", "fields": ["name", "ref_platform", "network", "operator", "surface", "lit", "bench", "shelter"], "geometry": ["point", "area"], "tags": {"public_transport": "platform", "train": "yes"}, "addTags": {"public_transport": "platform", "train": "yes", "railway": "platform"}, "removeTags": {"public_transport": "platform", "train": "yes", "railway": "platform"}, "reference": {"key": "railway", "value": "platform"}, "terms": ["platform", "public transit", "public transportation", "rail", "track", "train", "transit", "transportation"], "name": "Train Stop / Platform"},
+ "public_transport/platform_tram": {"icon": "temaki-tram", "fields": ["name", "ref_platform", "network", "operator", "surface", "lit", "bench", "shelter"], "geometry": ["point", "area"], "tags": {"public_transport": "platform", "tram": "yes"}, "addTags": {"public_transport": "platform", "tram": "yes", "railway": "platform"}, "removeTags": {"public_transport": "platform", "tram": "yes", "railway": "platform"}, "reference": {"key": "public_transport", "value": "platform"}, "terms": ["electric", "light rail", "platform", "public transit", "public transportation", "rail", "streetcar", "track", "tram", "trolley", "transit", "transportation"], "name": "Tram Stop / Platform"},
+ "public_transport/platform_trolleybus": {"icon": "temaki-trolleybus", "fields": ["name", "ref_platform", "network", "operator", "surface", "lit", "bench", "shelter"], "geometry": ["point", "area"], "tags": {"public_transport": "platform", "trolleybus": "yes"}, "addTags": {"public_transport": "platform", "trolleybus": "yes", "highway": "bus_stop"}, "removeTags": {"public_transport": "platform", "trolleybus": "yes", "highway": "bus_stop"}, "reference": {"key": "public_transport", "value": "platform"}, "terms": ["bus", "electric", "platform", "public transit", "public transportation", "streetcar", "trackless", "tram", "trolley", "transit", "transportation"], "name": "Trolleybus Stop / Platform"},
+ "public_transport/platform": {"icon": "maki-bus", "fields": ["name", "ref_platform", "network", "operator", "surface", "lit", "bench", "shelter"], "geometry": ["point", "area"], "tags": {"public_transport": "platform"}, "terms": ["platform", "public transit", "public transportation", "transit", "transportation"], "name": "Transit Stop / Platform", "matchScore": 0.2},
+ "public_transport/station_aerialway": {"icon": "maki-aerialway", "fields": ["name", "network", "operator", "aerialway/access", "aerialway/summer/access", "elevation", "building_area", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"public_transport": "station", "aerialway": "yes"}, "reference": {"key": "aerialway", "value": "station"}, "terms": ["aerialway", "cable car", "public transit", "public transportation", "station", "terminal", "transit", "transportation"], "name": "Aerialway Station"},
+ "public_transport/station_bus": {"icon": "maki-bus", "fields": ["name", "network", "operator", "address", "building_area", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"public_transport": "station", "bus": "yes"}, "addTags": {"public_transport": "station", "bus": "yes", "amenity": "bus_station"}, "removeTags": {"public_transport": "station", "bus": "yes", "amenity": "bus_station"}, "reference": {"key": "amenity", "value": "bus_station"}, "terms": ["bus", "public transit", "public transportation", "station", "terminal", "transit", "transportation"], "name": "Bus Station / Terminal"},
+ "public_transport/station_ferry": {"icon": "maki-ferry", "fields": ["name", "network", "operator", "address", "building_area", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"public_transport": "station", "ferry": "yes"}, "addTags": {"public_transport": "station", "ferry": "yes", "amenity": "ferry_terminal"}, "removeTags": {"public_transport": "station", "ferry": "yes", "amenity": "ferry_terminal"}, "reference": {"key": "amenity", "value": "ferry_terminal"}, "terms": ["boat", "dock", "ferry", "pier", "public transit", "public transportation", "station", "terminal", "transit", "transportation"], "name": "Ferry Station / Terminal"},
+ "public_transport/station_light_rail": {"icon": "temaki-light_rail", "fields": ["name", "network", "operator", "address", "building_area", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"public_transport": "station", "light_rail": "yes"}, "addTags": {"public_transport": "station", "light_rail": "yes", "railway": "station", "station": "light_rail"}, "removeTags": {"public_transport": "station", "light_rail": "yes", "railway": "station", "station": "light_rail"}, "reference": {"key": "station", "value": "light_rail"}, "terms": ["electric", "light rail", "public transit", "public transportation", "rail", "station", "terminal", "track", "tram", "trolley", "transit", "transportation"], "name": "Light Rail Station"},
+ "public_transport/station_monorail": {"icon": "temaki-monorail", "fields": ["name", "network", "operator", "address", "building_area", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"public_transport": "station", "monorail": "yes"}, "addTags": {"public_transport": "station", "monorail": "yes", "railway": "station"}, "removeTags": {"public_transport": "station", "monorail": "yes", "railway": "station"}, "reference": {"key": "railway", "value": "station"}, "terms": ["monorail", "public transit", "public transportation", "rail", "station", "terminal", "transit", "transportation"], "name": "Monorail Station"},
+ "public_transport/station_subway": {"icon": "temaki-subway", "fields": ["name", "network", "operator", "address", "building_area", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"public_transport": "station", "subway": "yes"}, "addTags": {"public_transport": "station", "subway": "yes", "railway": "station", "station": "subway"}, "removeTags": {"public_transport": "station", "subway": "yes", "railway": "station", "station": "subway"}, "reference": {"key": "station", "value": "subway"}, "terms": ["metro", "public transit", "public transportation", "rail", "station", "subway", "terminal", "track", "transit", "transportation", "underground"], "name": "Subway Station"},
+ "public_transport/station_train_halt": {"icon": "maki-rail", "fields": ["name", "network", "operator", "address", "building_area", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"public_transport": "station", "train": "yes", "railway": "halt"}, "reference": {"key": "railway", "value": "halt"}, "terms": ["halt", "public transit", "public transportation", "rail", "station", "track", "train", "transit", "transportation", "whistle stop"], "name": "Train Station (Halt / Request)"},
+ "public_transport/station_train": {"icon": "maki-rail", "fields": ["name", "network", "operator", "address", "building_area", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"public_transport": "station", "train": "yes"}, "addTags": {"public_transport": "station", "train": "yes", "railway": "station"}, "removeTags": {"public_transport": "station", "train": "yes", "railway": "station"}, "reference": {"key": "railway", "value": "station"}, "terms": ["public transit", "public transportation", "rail", "station", "terminal", "track", "train", "transit", "transportation"], "name": "Train Station"},
+ "public_transport/station_tram": {"icon": "temaki-tram", "fields": ["name", "network", "operator", "address", "building_area", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"public_transport": "station", "tram": "yes"}, "reference": {"key": "public_transport", "value": "station"}, "terms": ["electric", "light rail", "public transit", "public transportation", "rail", "station", "streetcar", "terminal", "track", "tram", "trolley", "transit", "transportation"], "name": "Tram Station"},
+ "public_transport/station_trolleybus": {"icon": "temaki-trolleybus", "fields": ["name", "network", "operator", "address", "building_area", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"public_transport": "station", "trolleybus": "yes"}, "addTags": {"public_transport": "station", "trolleybus": "yes", "amenity": "bus_station"}, "removeTags": {"public_transport": "station", "trolleybus": "yes", "amenity": "bus_station"}, "reference": {"key": "amenity", "value": "bus_station"}, "terms": ["bus", "electric", "public transit", "public transportation", "station", "streetcar", "terminal", "trackless", "tram", "trolley", "transit", "transportation"], "name": "Trolleybus Station / Terminal"},
+ "public_transport/station": {"icon": "maki-rail", "fields": ["name", "network", "operator", "address", "building_area", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"public_transport": "station"}, "terms": ["public transit", "public transportation", "station", "terminal", "transit", "transportation"], "name": "Transit Station", "matchScore": 0.2},
+ "public_transport/stop_area": {"icon": "maki-bus", "fields": ["name", "ref", "network", "operator"], "geometry": ["relation"], "tags": {"type": "public_transport", "public_transport": "stop_area"}, "addTags": {"type": "public_transport", "public_transport": "stop_area", "public_transport:version": "2"}, "removeTags": {"type": "public_transport", "public_transport": "stop_area", "public_transport:version": "2"}, "reference": {"key": "public_transport", "value": "stop_area"}, "name": "Transit Stop Area"},
+ "public_transport/stop_position_aerialway": {"icon": "maki-aerialway", "fields": ["name", "ref_stop_position", "network", "operator"], "geometry": ["vertex"], "tags": {"public_transport": "stop_position", "aerialway": "yes"}, "reference": {"key": "public_transport", "value": "stop_position"}, "terms": ["aerialway", "cable car", "public transit", "public transportation", "transit", "transportation"], "name": "Aerialway Stopping Location"},
+ "public_transport/stop_position_bus": {"icon": "maki-bus", "fields": ["name", "ref_stop_position", "network", "operator"], "geometry": ["vertex"], "tags": {"public_transport": "stop_position", "bus": "yes"}, "reference": {"key": "public_transport", "value": "stop_position"}, "terms": ["bus", "public transit", "public transportation", "transit", "transportation"], "name": "Bus Stopping Location"},
+ "public_transport/stop_position_ferry": {"icon": "maki-ferry", "fields": ["name", "ref_stop_position", "network", "operator"], "geometry": ["vertex"], "tags": {"public_transport": "stop_position", "ferry": "yes"}, "reference": {"key": "public_transport", "value": "stop_position"}, "terms": ["boat", "dock", "ferry", "pier", "public transit", "public transportation", "transit", "transportation"], "name": "Ferry Stopping Location"},
+ "public_transport/stop_position_light_rail": {"icon": "temaki-light_rail", "fields": ["name", "ref_stop_position", "network", "operator"], "geometry": ["vertex"], "tags": {"public_transport": "stop_position", "light_rail": "yes"}, "addTags": {"public_transport": "stop_position", "light_rail": "yes", "railway": "stop"}, "removeTags": {"public_transport": "stop_position", "light_rail": "yes", "railway": "stop"}, "reference": {"key": "railway", "value": "stop"}, "terms": ["electric", "light rail", "public transit", "public transportation", "rail", "track", "tram", "trolley", "transit", "transportation"], "name": "Light Rail Stopping Location"},
+ "public_transport/stop_position_monorail": {"icon": "temaki-monorail", "fields": ["name", "ref_stop_position", "network", "operator"], "geometry": ["vertex"], "tags": {"public_transport": "stop_position", "monorail": "yes"}, "addTags": {"public_transport": "stop_position", "monorail": "yes", "railway": "stop"}, "removeTags": {"public_transport": "stop_position", "monorail": "yes", "railway": "stop"}, "reference": {"key": "railway", "value": "stop"}, "terms": ["monorail", "public transit", "public transportation", "rail", "transit", "transportation"], "name": "Monorail Stopping Location"},
+ "public_transport/stop_position_subway": {"icon": "temaki-subway", "fields": ["name", "ref_stop_position", "network", "operator"], "geometry": ["vertex"], "tags": {"public_transport": "stop_position", "subway": "yes"}, "addTags": {"public_transport": "stop_position", "subway": "yes", "railway": "stop"}, "removeTags": {"public_transport": "stop_position", "subway": "yes", "railway": "stop"}, "reference": {"key": "railway", "value": "stop"}, "terms": ["metro", "public transit", "public transportation", "rail", "subway", "track", "transit", "transportation", "underground"], "name": "Subway Stopping Location"},
+ "public_transport/stop_position_train": {"icon": "maki-rail", "fields": ["name", "ref_stop_position", "network", "operator"], "geometry": ["vertex"], "tags": {"public_transport": "stop_position", "train": "yes"}, "addTags": {"public_transport": "stop_position", "train": "yes", "railway": "stop"}, "removeTags": {"public_transport": "stop_position", "train": "yes", "railway": "stop"}, "reference": {"key": "railway", "value": "stop"}, "terms": ["public transit", "public transportation", "rail", "track", "train", "transit", "transportation"], "name": "Train Stopping Location"},
+ "public_transport/stop_position_tram": {"icon": "temaki-tram", "fields": ["name", "ref_stop_position", "network", "operator"], "geometry": ["vertex"], "tags": {"public_transport": "stop_position", "tram": "yes"}, "addTags": {"public_transport": "stop_position", "tram": "yes", "railway": "tram_stop"}, "removeTags": {"public_transport": "stop_position", "tram": "yes", "railway": "tram_stop"}, "reference": {"key": "public_transport", "value": "stop_position"}, "terms": ["electric", "light rail", "public transit", "public transportation", "rail", "streetcar", "track", "tram", "trolley", "transit", "transportation"], "name": "Tram Stopping Location"},
+ "public_transport/stop_position_trolleybus": {"icon": "temaki-trolleybus", "fields": ["name", "ref_stop_position", "network", "operator"], "geometry": ["vertex"], "tags": {"public_transport": "stop_position", "trolleybus": "yes"}, "reference": {"key": "public_transport", "value": "stop_position"}, "terms": ["bus", "electric", "public transit", "public transportation", "streetcar", "trackless", "tram", "trolley", "transit", "transportation"], "name": "Trolleybus Stopping Location"},
+ "public_transport/stop_position": {"icon": "maki-bus", "fields": ["name", "ref_stop_position", "network", "operator"], "geometry": ["vertex"], "tags": {"public_transport": "stop_position"}, "terms": ["public transit", "public transportation", "transit", "transportation"], "name": "Transit Stopping Location", "matchScore": 0.2},
+ "railway/halt": {"icon": "maki-rail", "geometry": ["point", "vertex"], "tags": {"railway": "halt"}, "terms": ["break", "interrupt", "rest", "wait", "interruption"], "name": "Train Station (Halt / Request)", "searchable": false},
+ "railway/platform": {"icon": "iD-highway-footway", "fields": ["name", "ref_platform", "surface", "lit", "shelter"], "geometry": ["line", "area"], "tags": {"railway": "platform"}, "name": "Train Stop / Platform", "searchable": false},
+ "railway/station": {"icon": "maki-rail", "fields": ["name", "network", "operator", "address", "building_area", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "vertex", "area"], "tags": {"railway": "station"}, "terms": ["train station", "station"], "name": "Train Station", "searchable": false},
+ "railway/tram_stop": {"icon": "temaki-tram", "fields": ["name", "network", "operator"], "geometry": ["vertex"], "tags": {"railway": "tram_stop"}, "terms": ["light rail", "streetcar", "tram", "trolley"], "name": "Tram Stopping Position", "searchable": false},
+ "railway/abandoned": {"icon": "iD-railway-abandoned", "fields": ["name", "structure", "service_rail", "usage_rail"], "geometry": ["line"], "tags": {"railway": "abandoned"}, "terms": [], "name": "Abandoned Railway"},
+ "railway/buffer_stop": {"icon": "temaki-buffer_stop", "geometry": ["vertex"], "tags": {"railway": "buffer_stop"}, "terms": ["stop", "halt", "buffer"], "name": "Buffer Stop"},
+ "railway/crossing": {"icon": "maki-cross", "geometry": ["vertex"], "tags": {"railway": "crossing"}, "terms": ["crossing", "pedestrian crossing", "railroad crossing", "level crossing", "grade crossing", "path through railroad", "train crossing"], "name": "Railway Crossing (Path)"},
+ "railway/derail": {"icon": "maki-roadblock", "geometry": ["vertex"], "tags": {"railway": "derail"}, "terms": ["derailer"], "name": "Railway Derailer"},
+ "railway/disused": {"icon": "iD-railway-disused", "fields": ["structure", "service_rail", "usage_rail"], "geometry": ["line"], "tags": {"railway": "disused"}, "terms": [], "name": "Disused Railway"},
+ "railway/funicular": {"icon": "iD-railway-rail", "geometry": ["line"], "terms": ["venicular", "cliff railway", "cable car", "cable railway", "funicular railway"], "fields": ["structure", "gauge", "service_rail"], "tags": {"railway": "funicular"}, "name": "Funicular"},
+ "railway/level_crossing": {"icon": "maki-cross", "geometry": ["vertex"], "tags": {"railway": "level_crossing"}, "terms": ["crossing", "railroad crossing", "level crossing", "grade crossing", "road through railroad", "train crossing"], "name": "Railway Crossing (Road)"},
+ "railway/light_rail": {"icon": "iD-railway-light-rail", "fields": ["name", "structure", "gauge", "electrified", "service_rail", "usage_rail", "voltage", "frequency"], "geometry": ["line"], "tags": {"railway": "light_rail"}, "terms": ["light rail", "streetcar", "trolley"], "name": "Light Rail"},
+ "railway/milestone": {"icon": "temaki-milestone", "geometry": ["point", "vertex"], "fields": ["railway/position"], "tags": {"railway": "milestone"}, "terms": ["milestone", "marker"], "name": "Railway Milestone"},
+ "railway/miniature": {"icon": "iD-railway-rail", "geometry": ["line"], "tags": {"railway": "miniature"}, "fields": ["name", "structure", "gauge", "electrified", "service_rail"], "terms": ["rideable miniature railway", "narrow gauge railway", "minimum gauge railway"], "name": "Miniature Railway"},
+ "railway/monorail": {"icon": "iD-railway-monorail", "fields": ["name", "structure", "electrified", "service_rail", "usage_rail", "voltage", "frequency"], "geometry": ["line"], "tags": {"railway": "monorail"}, "terms": [], "name": "Monorail"},
+ "railway/narrow_gauge": {"icon": "iD-railway-rail", "fields": ["name", "structure", "gauge", "electrified", "service_rail", "usage_rail", "voltage", "frequency"], "geometry": ["line"], "tags": {"railway": "narrow_gauge"}, "terms": ["narrow gauge railway", "narrow gauge railroad"], "name": "Narrow Gauge Rail"},
+ "railway/rail": {"icon": "iD-railway-rail", "fields": ["name", "structure", "gauge", "electrified", "maxspeed", "service_rail", "usage_rail", "voltage", "frequency"], "geometry": ["line"], "tags": {"railway": "rail"}, "terms": [], "name": "Rail"},
+ "railway/signal": {"icon": "temaki-railway_signals", "geometry": ["point", "vertex"], "fields": ["railway/position", "railway/signal/direction", "ref"], "tags": {"railway": "signal"}, "terms": ["signal", "lights"], "name": "Railway Signal"},
+ "railway/subway_entrance": {"icon": "maki-entrance", "geometry": ["point", "vertex"], "fields": ["name"], "tags": {"railway": "subway_entrance"}, "terms": ["metro", "transit"], "name": "Subway Entrance"},
+ "railway/subway": {"icon": "iD-railway-subway", "fields": ["name", "structure", "gauge", "electrified", "service_rail", "usage_rail", "voltage", "frequency"], "geometry": ["line"], "tags": {"railway": "subway"}, "terms": ["metro", "transit"], "name": "Subway"},
+ "railway/switch": {"icon": "temaki-junction", "geometry": ["vertex"], "tags": {"railway": "switch"}, "terms": ["switch", "points"], "name": "Railway Switch"},
+ "railway/train_wash": {"icon": "maki-rail", "geometry": ["point", "vertex", "area"], "fields": ["operator", "building_area"], "tags": {"railway": "wash"}, "terms": ["wash", "clean"], "name": "Train Wash"},
+ "railway/tram": {"icon": "iD-railway-light-rail", "fields": ["name", "structure", "gauge", "electrified", "service_rail", "usage_rail", "voltage", "frequency"], "geometry": ["line"], "tags": {"railway": "tram"}, "terms": ["light rail", "streetcar", "tram", "trolley"], "name": "Tram"},
+ "relation": {"icon": "iD-relation", "fields": ["name", "relation"], "geometry": ["relation"], "tags": {}, "name": "Relation"},
+ "route/ferry": {"icon": "iD-ferry-line", "geometry": ["line"], "fields": ["name", "operator", "duration", "access"], "tags": {"route": "ferry"}, "name": "Ferry Route"},
+ "shop": {"icon": "maki-shop", "fields": ["name", "shop", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "*"}, "terms": [], "name": "Shop"},
+ "shop/fishmonger": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "fishmonger"}, "reference": {"key": "shop", "value": "seafood"}, "name": "Fishmonger", "searchable": false},
+ "shop/furnace": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["oven", "stove"], "tags": {"shop": "furnace"}, "name": "Furnace Store", "searchable": false},
+ "shop/vacant": {"icon": "maki-shop", "fields": ["name", "address", "building_area"], "geometry": ["point", "area"], "tags": {"shop": "vacant"}, "name": "Vacant Shop", "searchable": false},
+ "shop/agrarian": {"icon": "maki-shop", "fields": ["name", "operator", "agrarian", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["agricultural inputs", "agricultural machines", "seeds", "pesticides", "fertilizer", "agricultural tools"], "tags": {"shop": "agrarian"}, "name": "Farm Supply Shop"},
+ "shop/alcohol": {"icon": "maki-alcohol-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "geometry": ["point", "area"], "terms": ["alcohol", "beer", "booze", "wine"], "tags": {"shop": "alcohol"}, "name": "Liquor Store"},
+ "shop/anime": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "anime"}, "terms": ["manga", "japan", "cosplay", "figurine", "dakimakura"], "name": "Anime Shop"},
+ "shop/antiques": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "antiques"}, "name": "Antiques Shop"},
+ "shop/appliance": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["air conditioner", "appliance", "dishwasher", "dryer", "freezer", "fridge", "grill", "kitchen", "oven", "refrigerator", "stove", "washer", "washing machine"], "tags": {"shop": "appliance"}, "name": "Appliance Store"},
+ "shop/art": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["art*", "exhibit*", "gallery"], "tags": {"shop": "art"}, "name": "Art Store"},
+ "shop/baby_goods": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "baby_goods"}, "name": "Baby Goods Store"},
+ "shop/bag": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["handbag", "purse"], "tags": {"shop": "bag"}, "name": "Bag/Luggage Store"},
+ "shop/bakery": {"icon": "maki-bakery", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "bakery"}, "name": "Bakery"},
+ "shop/bathroom_furnishing": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "bathroom_furnishing"}, "name": "Bathroom Furnishing Store"},
+ "shop/beauty": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "beauty", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["spa", "salon", "tanning"], "tags": {"shop": "beauty"}, "name": "Beauty Shop"},
+ "shop/beauty/nails": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["manicure", "pedicure"], "tags": {"shop": "beauty", "beauty": "nails"}, "reference": {"key": "shop", "value": "beauty"}, "name": "Nail Salon"},
+ "shop/beauty/tanning": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "beauty", "beauty": "tanning"}, "reference": {"key": "leisure", "value": "tanning_salon"}, "name": "Tanning Salon"},
+ "shop/bed": {"icon": "maki-lodging", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "bed"}, "name": "Bedding/Mattress Store"},
+ "shop/beverages": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "beverages"}, "name": "Beverage Store"},
+ "shop/bicycle": {"icon": "maki-bicycle", "fields": ["name", "operator", "address", "building_area", "service/bicycle", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["bike", "repair"], "tags": {"shop": "bicycle"}, "name": "Bicycle Shop"},
+ "shop/bookmaker": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["betting"], "tags": {"shop": "bookmaker"}, "name": "Bookmaker"},
+ "shop/books": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"shop": "books"}, "name": "Book Store"},
+ "shop/boutique": {"icon": "maki-shop", "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "boutique"}, "name": "Boutique"},
+ "shop/butcher": {"icon": "maki-slaughterhouse", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["meat"], "tags": {"shop": "butcher"}, "name": "Butcher"},
+ "shop/candles": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "candles"}, "name": "Candle Shop"},
+ "shop/car_parts": {"icon": "maki-car", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["auto"], "tags": {"shop": "car_parts"}, "name": "Car Parts Store"},
+ "shop/car_repair": {"icon": "maki-car", "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["auto", "garage", "service"], "tags": {"shop": "car_repair"}, "name": "Car Repair Shop"},
+ "shop/car": {"icon": "maki-car", "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["auto"], "tags": {"shop": "car"}, "name": "Car Dealership"},
+ "shop/carpet": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["rug"], "tags": {"shop": "carpet"}, "name": "Carpet Store"},
+ "shop/charity": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "second_hand", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["thrift", "op shop", "nonprofit"], "tags": {"shop": "charity"}, "name": "Charity Store"},
+ "shop/cheese": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "cheese"}, "name": "Cheese Store"},
+ "shop/chemist": {"icon": "maki-grocery", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "chemist"}, "terms": ["med*", "drug*", "gift"], "name": "Drugstore"},
+ "shop/chocolate": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "chocolate"}, "name": "Chocolate Store"},
+ "shop/clothes": {"icon": "maki-clothing-store", "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "clothes"}, "name": "Clothing Store"},
+ "shop/coffee": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "coffee"}, "name": "Coffee Store"},
+ "shop/computer": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "computer"}, "name": "Computer Store"},
+ "shop/confectionery": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["sweet"], "tags": {"shop": "confectionery"}, "name": "Candy Store"},
+ "shop/convenience": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "convenience"}, "name": "Convenience Store"},
+ "shop/copyshop": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "copyshop"}, "name": "Copy Store"},
+ "shop/cosmetics": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "cosmetics"}, "name": "Cosmetics Store"},
+ "shop/craft": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "craft"}, "terms": ["art*", "paint*", "frame"], "name": "Arts and Crafts Store"},
+ "shop/curtain": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["drape*", "window"], "tags": {"shop": "curtain"}, "name": "Curtain Store"},
+ "shop/dairy": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["milk", "egg", "cheese"], "tags": {"shop": "dairy"}, "name": "Dairy Store"},
+ "shop/deli": {"icon": "maki-restaurant", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["lunch", "meat", "sandwich"], "tags": {"shop": "deli"}, "name": "Deli"},
+ "shop/department_store": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "department_store"}, "name": "Department Store"},
+ "shop/doityourself": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "doityourself"}, "name": "DIY Store"},
+ "shop/dry_cleaning": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "dry_cleaning"}, "name": "Dry Cleaner"},
+ "shop/e-cigarette": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "e-cigarette"}, "terms": ["electronic", "vapor"], "name": "E-Cigarette Shop"},
+ "shop/electronics": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["appliance", "audio", "blueray", "camera", "computer", "dvd", "home theater", "radio", "speaker", "tv", "video"], "tags": {"shop": "electronics"}, "name": "Electronics Store"},
+ "shop/erotic": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["sex", "porn"], "tags": {"shop": "erotic"}, "name": "Erotic Store"},
+ "shop/fabric": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["sew"], "tags": {"shop": "fabric"}, "name": "Fabric Store"},
+ "shop/farm": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["farm shop", "farm stand"], "tags": {"shop": "farm"}, "name": "Produce Stand"},
+ "shop/fashion": {"icon": "maki-shop", "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "fashion"}, "name": "Fashion Store"},
+ "shop/florist": {"icon": "maki-florist", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["flower"], "tags": {"shop": "florist"}, "name": "Florist"},
+ "shop/frame": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "frame"}, "terms": ["art*", "paint*", "photo*", "frame"], "name": "Framing Shop"},
+ "shop/funeral_directors": {"icon": "maki-cemetery", "fields": ["name", "operator", "address", "building_area", "religion", "denomination"], "geometry": ["point", "area"], "terms": ["undertaker", "memorial home"], "tags": {"shop": "funeral_directors"}, "name": "Funeral Home"},
+ "shop/furniture": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["chair", "sofa", "table"], "tags": {"shop": "furniture"}, "name": "Furniture Store"},
+ "shop/garden_centre": {"icon": "maki-garden-center", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["landscape", "mulch", "shrub", "tree"], "tags": {"shop": "garden_centre"}, "name": "Garden Center"},
+ "shop/gas": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["cng", "lpg", "natural gas", "propane", "refill", "tank"], "tags": {"shop": "gas"}, "name": "Bottled Gas Shop"},
+ "shop/gift": {"icon": "maki-gift", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["souvenir"], "tags": {"shop": "gift"}, "name": "Gift Shop"},
+ "shop/greengrocer": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["fruit", "vegetable"], "tags": {"shop": "greengrocer"}, "name": "Greengrocer"},
+ "shop/hairdresser": {"icon": "maki-hairdresser", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["barber"], "tags": {"shop": "hairdresser"}, "name": "Hairdresser"},
+ "shop/hardware": {"icon": "temaki-tools", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "hardware"}, "name": "Hardware Store"},
+ "shop/health_food": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["wholefood", "vitamins", "vegetarian", "vegan"], "tags": {"shop": "health_food"}, "name": "Health Food Shop"},
+ "shop/hearing_aids": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "hearing_aids"}, "name": "Hearing Aids Store"},
+ "shop/herbalist": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "herbalist"}, "name": "Herbalist"},
+ "shop/hifi": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["stereo", "video"], "tags": {"shop": "hifi"}, "name": "Hifi Store"},
+ "shop/houseware": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["home", "household"], "tags": {"shop": "houseware"}, "name": "Houseware Store"},
+ "shop/interior_decoration": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "interior_decoration"}, "name": "Interior Decoration Store"},
+ "shop/jewelry": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["diamond", "gem", "ring"], "tags": {"shop": "jewelry"}, "name": "Jeweler"},
+ "shop/kiosk": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "kiosk"}, "name": "Kiosk"},
+ "shop/kitchen": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "kitchen"}, "name": "Kitchen Design Store"},
+ "shop/laundry": {"icon": "maki-laundry", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "laundry"}, "name": "Laundry"},
+ "shop/leather": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "leather"}, "name": "Leather Store"},
+ "shop/locksmith": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["key", "lockpick"], "tags": {"shop": "locksmith"}, "name": "Locksmith"},
+ "shop/lottery": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "lottery"}, "name": "Lottery Shop"},
+ "shop/mall": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["shopping"], "tags": {"shop": "mall"}, "name": "Mall"},
+ "shop/massage": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "massage"}, "name": "Massage Shop"},
+ "shop/medical_supply": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "medical_supply"}, "name": "Medical Supply Store"},
+ "shop/mobile_phone": {"icon": "maki-mobile-phone", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "mobile_phone"}, "name": "Mobile Phone Store"},
+ "shop/money_lender": {"icon": "maki-bank", "fields": ["name", "operator", "address", "building_area", "opening_hours", "currency_multi"], "geometry": ["point", "area"], "tags": {"shop": "money_lender"}, "name": "Money Lender"},
+ "shop/motorcycle_repair": {"icon": "fas-motorcycle", "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["auto", "bike", "garage", "motorcycle", "repair", "service"], "tags": {"shop": "motorcycle_repair"}, "name": "Motorcycle Repair Shop"},
+ "shop/motorcycle": {"icon": "fas-motorcycle", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["bike"], "tags": {"shop": "motorcycle"}, "name": "Motorcycle Dealership"},
+ "shop/music": {"icon": "maki-music", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["CD", "vinyl"], "tags": {"shop": "music"}, "name": "Music Store"},
+ "shop/musical_instrument": {"icon": "maki-music", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["guitar"], "tags": {"shop": "musical_instrument"}, "name": "Musical Instrument Store"},
+ "shop/newsagent": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "newsagent"}, "name": "Newspaper/Magazine Shop"},
+ "shop/nutrition_supplements": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "nutrition_supplements"}, "name": "Nutrition Supplements Store"},
+ "shop/optician": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["eye", "glasses"], "tags": {"shop": "optician"}, "name": "Optician"},
+ "shop/organic": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "supermarket", "organic": "only"}, "name": "Organic Goods Store"},
+ "shop/outdoor": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["camping", "climbing", "hiking"], "tags": {"shop": "outdoor"}, "name": "Outdoors Store"},
+ "shop/paint": {"icon": "maki-water", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "paint"}, "name": "Paint Store"},
+ "shop/pastry": {"icon": "maki-bakery", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "pastry"}, "terms": ["patisserie", "cake shop", "cakery"], "name": "Pastry Shop"},
+ "shop/pawnbroker": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "pawnbroker"}, "name": "Pawn Shop"},
+ "shop/perfumery": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "perfumery"}, "name": "Perfume Store"},
+ "shop/pet_grooming": {"icon": "maki-dog-park", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["dog"], "tags": {"shop": "pet_grooming"}, "name": "Pet Grooming Store"},
+ "shop/pet": {"icon": "maki-dog-park", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["animal", "cat", "dog", "fish", "kitten", "puppy", "reptile"], "tags": {"shop": "pet"}, "name": "Pet Store"},
+ "shop/photo": {"icon": "maki-attraction", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["camera", "film"], "tags": {"shop": "photo"}, "name": "Photography Store"},
+ "shop/pyrotechnics": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "pyrotechnics"}, "name": "Fireworks Store"},
+ "shop/radiotechnics": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "radiotechnics"}, "name": "Radio/Electronic Component Store"},
+ "shop/religion": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "religion", "denomination", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "religion"}, "name": "Religious Store"},
+ "shop/scuba_diving": {"icon": "maki-swimming", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "scuba_diving"}, "name": "Scuba Diving Shop"},
+ "shop/seafood": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["fishmonger"], "tags": {"shop": "seafood"}, "name": "Seafood Shop"},
+ "shop/second_hand": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "second_hand", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["secondhand", "second hand", "resale", "thrift", "used"], "tags": {"shop": "second_hand"}, "name": "Consignment/Thrift Store"},
+ "shop/shoes": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "shoes"}, "name": "Shoe Store"},
+ "shop/sports": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "sports"}, "name": "Sporting Goods Store"},
+ "shop/stationery": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["card", "paper"], "tags": {"shop": "stationery"}, "name": "Stationery Store"},
+ "shop/storage_rental": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "storage_rental"}, "name": "Storage Rental"},
+ "shop/supermarket": {"icon": "maki-grocery", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["grocery", "store", "shop"], "tags": {"shop": "supermarket"}, "name": "Supermarket"},
+ "shop/tailor": {"icon": "maki-clothing-store", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["clothes", "suit"], "tags": {"shop": "tailor"}, "name": "Tailor"},
+ "shop/tattoo": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "tattoo"}, "name": "Tattoo Parlor"},
+ "shop/tea": {"icon": "maki-teahouse", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "tea"}, "name": "Tea Store"},
+ "shop/ticket": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "ticket"}, "name": "Ticket Seller"},
+ "shop/tiles": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "tiles"}, "name": "Tile Shop"},
+ "shop/tobacco": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "tobacco"}, "name": "Tobacco Shop"},
+ "shop/toys": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "toys"}, "name": "Toy Store"},
+ "shop/trade": {"icon": "maki-shop", "fields": ["name", "trade", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "trade"}, "name": "Trade Shop"},
+ "shop/travel_agency": {"icon": "maki-suitcase", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "travel_agency"}, "name": "Travel Agency"},
+ "shop/tyres": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "tyres"}, "name": "Tire Store"},
+ "shop/vacuum_cleaner": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "vacuum_cleaner"}, "name": "Vacuum Cleaner Store"},
+ "shop/variety_store": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "variety_store"}, "name": "Variety Store"},
+ "shop/video_games": {"icon": "maki-gaming", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "video_games"}, "name": "Video Game Store"},
+ "shop/video": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["DVD"], "tags": {"shop": "video"}, "name": "Video Store"},
+ "shop/watches": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "watches"}, "name": "Watches Shop"},
+ "shop/water_sports": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "water_sports"}, "name": "Watersport/Swim Shop"},
+ "shop/weapons": {"icon": "maki-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["ammo", "gun", "knife", "knives"], "tags": {"shop": "weapons"}, "name": "Weapon Shop"},
+ "shop/wholesale": {"icon": "maki-warehouse", "fields": ["name", "operator", "wholesale", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "terms": ["warehouse club", "cash and carry"], "tags": {"shop": "wholesale"}, "name": "Wholesale Store"},
+ "shop/window_blind": {"icon": "temaki-window", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "window_blind"}, "name": "Window Blind Store"},
+ "shop/wine": {"icon": "maki-alcohol-shop", "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "geometry": ["point", "area"], "tags": {"shop": "wine"}, "name": "Wine Shop"},
+ "tourism": {"icon": "maki-attraction", "fields": ["name", "tourism"], "geometry": ["point", "vertex", "area"], "tags": {"tourism": "*"}, "name": "Tourism"},
+ "tourism/alpine_hut": {"icon": "maki-lodging", "fields": ["name", "operator", "address", "building_area", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "terms": ["climbing hut"], "tags": {"tourism": "alpine_hut"}, "name": "Alpine Hut"},
+ "tourism/apartment": {"icon": "maki-lodging", "fields": ["name", "operator", "address", "building_area", "smoking", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"tourism": "apartment"}, "name": "Guest Apartment / Condo"},
+ "tourism/aquarium": {"icon": "maki-aquarium", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["fish", "sea", "water"], "tags": {"tourism": "aquarium"}, "name": "Aquarium"},
+ "tourism/artwork": {"icon": "maki-art-gallery", "fields": ["name", "artwork_type", "artist"], "geometry": ["point", "vertex", "area"], "tags": {"tourism": "artwork"}, "terms": ["mural", "sculpture", "statue"], "name": "Artwork"},
+ "tourism/attraction": {"icon": "maki-star", "fields": ["name", "operator", "address"], "geometry": ["point", "vertex", "area"], "tags": {"tourism": "attraction"}, "name": "Tourist Attraction"},
+ "tourism/camp_site": {"icon": "maki-campsite", "fields": ["name", "operator", "address", "capacity", "fee", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "vertex", "area"], "terms": ["tent", "rv"], "tags": {"tourism": "camp_site"}, "name": "Campground"},
+ "tourism/caravan_site": {"icon": "maki-bus", "fields": ["name", "operator", "address", "capacity", "fee", "sanitary_dump_station", "power_supply", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "vertex", "area"], "terms": ["Motor Home", "Camper"], "tags": {"tourism": "caravan_site"}, "name": "RV Park"},
+ "tourism/chalet": {"icon": "maki-lodging", "fields": ["name", "operator", "address", "building_area", "smoking", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "terms": ["holiday", "holiday cottage", "holiday home", "vacation", "vacation home"], "tags": {"tourism": "chalet"}, "name": "Holiday Cottage"},
+ "tourism/gallery": {"icon": "maki-art-gallery", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["art*", "exhibit*", "paint*", "photo*", "sculpt*"], "tags": {"tourism": "gallery"}, "name": "Art Gallery"},
+ "tourism/guest_house": {"icon": "maki-lodging", "fields": ["name", "operator", "address", "building_area", "smoking", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"tourism": "guest_house"}, "terms": ["B&B", "Bed and Breakfast"], "name": "Guest House"},
+ "tourism/hostel": {"icon": "maki-lodging", "fields": ["name", "operator", "address", "building_area", "smoking", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"tourism": "hostel"}, "name": "Hostel"},
+ "tourism/hotel": {"icon": "maki-lodging", "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"tourism": "hotel"}, "name": "Hotel"},
+ "tourism/information": {"icon": "maki-information", "fields": ["information", "operator", "address", "building_area"], "geometry": ["point", "vertex", "area"], "tags": {"tourism": "information"}, "name": "Information"},
+ "tourism/information/board": {"icon": "maki-information", "fields": ["name", "operator", "board_type", "direction"], "geometry": ["point", "vertex"], "tags": {"tourism": "information", "information": "board"}, "reference": {"key": "information", "value": "board"}, "name": "Information Board"},
+ "tourism/information/guidepost": {"icon": "maki-information", "fields": ["name", "elevation", "operator", "ref"], "geometry": ["point", "vertex"], "terms": ["signpost"], "tags": {"tourism": "information", "information": "guidepost"}, "reference": {"key": "information", "value": "guidepost"}, "name": "Guidepost"},
+ "tourism/information/map": {"icon": "maki-information", "fields": ["operator", "map_type", "map_size", "direction"], "geometry": ["point", "vertex"], "tags": {"tourism": "information", "information": "map"}, "reference": {"key": "information", "value": "map"}, "name": "Map"},
+ "tourism/information/office": {"icon": "maki-information", "fields": ["name", "operator", "address", "building_area"], "geometry": ["point", "vertex", "area"], "tags": {"tourism": "information", "information": "office"}, "reference": {"key": "information", "value": "office"}, "name": "Tourist Information Office"},
+ "tourism/motel": {"icon": "maki-lodging", "fields": ["name", "operator", "address", "building_area", "smoking", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "geometry": ["point", "area"], "tags": {"tourism": "motel"}, "name": "Motel"},
+ "tourism/museum": {"icon": "maki-museum", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "geometry": ["point", "area"], "terms": ["art*", "exhibit*", "gallery", "foundation", "hall", "institution", "paint*", "photo*", "sculpt*"], "tags": {"tourism": "museum"}, "name": "Museum"},
+ "tourism/picnic_site": {"icon": "maki-picnic-site", "fields": ["name", "operator", "address", "smoking"], "geometry": ["point", "vertex", "area"], "terms": ["camp"], "tags": {"tourism": "picnic_site"}, "name": "Picnic Site"},
+ "tourism/theme_park": {"icon": "maki-amusement-park", "fields": ["name", "operator", "address", "opening_hours"], "geometry": ["point", "area"], "tags": {"tourism": "theme_park"}, "name": "Theme Park"},
+ "tourism/trail_riding_station": {"icon": "maki-horse-riding", "fields": ["name", "horse_stables", "horse_riding", "horse_dressage", "address", "phone", "website", "description"], "geometry": ["point", "area"], "tags": {"tourism": "trail_riding_station"}, "name": "Trail Riding Station", "matchScore": 2},
+ "tourism/viewpoint": {"icon": "temaki-binoculars", "geometry": ["point", "vertex"], "fields": ["direction"], "tags": {"tourism": "viewpoint"}, "name": "Viewpoint"},
+ "tourism/wilderness_hut": {"icon": "maki-lodging", "fields": ["name", "operator", "address", "building_area"], "geometry": ["point", "area"], "terms": ["wilderness hut", "backcountry hut", "bothy"], "tags": {"tourism": "wilderness_hut"}, "name": "Wilderness Hut"},
+ "tourism/zoo": {"icon": "maki-zoo", "fields": ["name", "operator", "address", "opening_hours"], "geometry": ["point", "area"], "terms": ["animal"], "tags": {"tourism": "zoo"}, "name": "Zoo"},
+ "traffic_calming": {"icon": "temaki-diamond", "fields": ["traffic_calming", "direction_vertex"], "geometry": ["vertex", "line"], "tags": {"traffic_calming": "*"}, "terms": ["bump", "hump", "slow", "speed"], "name": "Traffic Calming"},
+ "traffic_calming/bump": {"icon": "temaki-diamond", "fields": ["surface", "direction_vertex"], "geometry": ["vertex", "line"], "terms": ["hump", "speed", "slow"], "tags": {"traffic_calming": "bump"}, "name": "Speed Bump"},
+ "traffic_calming/chicane": {"icon": "temaki-diamond", "fields": ["direction_vertex"], "geometry": ["vertex", "line"], "terms": ["driveway link", "speed", "slow"], "tags": {"traffic_calming": "chicane"}, "name": "Traffic Chicane"},
+ "traffic_calming/choker": {"icon": "temaki-diamond", "fields": ["direction_vertex"], "geometry": ["vertex", "line"], "terms": ["speed", "slow"], "tags": {"traffic_calming": "choker"}, "name": "Traffic Choker"},
+ "traffic_calming/cushion": {"icon": "temaki-diamond", "fields": ["surface", "direction_vertex"], "geometry": ["vertex", "line"], "terms": ["bump", "hump", "speed", "slow"], "tags": {"traffic_calming": "cushion"}, "name": "Speed Cushion"},
+ "traffic_calming/dip": {"icon": "temaki-diamond", "fields": ["surface", "direction_vertex"], "geometry": ["vertex", "line"], "terms": ["speed", "slow"], "tags": {"traffic_calming": "dip"}, "name": "Dip"},
+ "traffic_calming/hump": {"icon": "temaki-diamond", "fields": ["surface", "direction_vertex"], "geometry": ["vertex", "line"], "terms": ["bump", "speed", "slow"], "tags": {"traffic_calming": "hump"}, "name": "Speed Hump"},
+ "traffic_calming/island": {"icon": "temaki-diamond", "geometry": ["vertex"], "terms": ["circle", "roundabout", "slow"], "tags": {"traffic_calming": "island"}, "name": "Traffic Island"},
+ "traffic_calming/rumble_strip": {"icon": "temaki-diamond", "fields": ["direction_vertex"], "geometry": ["vertex", "line"], "terms": ["audible lines", "sleeper lines", "growlers"], "tags": {"traffic_calming": "rumble_strip"}, "name": "Rumble Strip"},
+ "traffic_calming/table": {"icon": "temaki-diamond", "fields": ["surface"], "geometry": ["vertex"], "tags": {"traffic_calming": "table"}, "terms": ["flat top", "hump", "speed", "slow"], "name": "Speed Table"},
+ "type/multipolygon": {"icon": "iD-multipolygon", "geometry": ["area", "relation"], "tags": {"type": "multipolygon"}, "removeTags": {}, "name": "Multipolygon", "searchable": false, "matchScore": 0.1},
+ "type/boundary": {"icon": "iD-boundary", "fields": ["name", "boundary"], "geometry": ["relation"], "tags": {"type": "boundary"}, "name": "Boundary"},
+ "type/boundary/administrative": {"icon": "iD-boundary", "fields": ["name", "admin_level"], "geometry": ["relation"], "tags": {"type": "boundary", "boundary": "administrative"}, "reference": {"key": "boundary", "value": "administrative"}, "name": "Administrative Boundary"},
+ "type/restriction": {"icon": "iD-restriction", "fields": ["name", "restriction", "except"], "geometry": ["relation"], "tags": {"type": "restriction"}, "name": "Restriction"},
+ "type/restriction/no_left_turn": {"icon": "iD-restriction-no-left-turn", "fields": ["except"], "geometry": ["relation"], "tags": {"type": "restriction", "restriction": "no_left_turn"}, "name": "No Left Turn"},
+ "type/restriction/no_right_turn": {"icon": "iD-restriction-no-right-turn", "fields": ["except"], "geometry": ["relation"], "tags": {"type": "restriction", "restriction": "no_right_turn"}, "name": "No Right Turn"},
+ "type/restriction/no_straight_on": {"icon": "iD-restriction-no-straight-on", "fields": ["except"], "geometry": ["relation"], "tags": {"type": "restriction", "restriction": "no_straight_on"}, "name": "No Straight On"},
+ "type/restriction/no_u_turn": {"icon": "iD-restriction-no-u-turn", "fields": ["except"], "geometry": ["relation"], "tags": {"type": "restriction", "restriction": "no_u_turn"}, "name": "No U-turn"},
+ "type/restriction/only_left_turn": {"icon": "iD-restriction-only-left-turn", "fields": ["except"], "geometry": ["relation"], "tags": {"type": "restriction", "restriction": "only_left_turn"}, "name": "Only Left Turn"},
+ "type/restriction/only_right_turn": {"icon": "iD-restriction-only-right-turn", "fields": ["except"], "geometry": ["relation"], "tags": {"type": "restriction", "restriction": "only_right_turn"}, "name": "Only Right Turn"},
+ "type/restriction/only_straight_on": {"icon": "iD-restriction-only-straight-on", "fields": ["except"], "geometry": ["relation"], "tags": {"type": "restriction", "restriction": "only_straight_on"}, "name": "Only Straight On"},
+ "type/restriction/only_u_turn": {"icon": "iD-restriction-only-u-turn", "fields": ["except"], "geometry": ["relation"], "tags": {"type": "restriction", "restriction": "only_u_turn"}, "name": "Only U-turn"},
+ "type/route_master": {"icon": "iD-route-master", "fields": ["name", "route_master", "ref", "operator", "network"], "geometry": ["relation"], "tags": {"type": "route_master"}, "name": "Route Master"},
+ "type/route": {"icon": "iD-route", "fields": ["name", "route", "ref_route", "operator", "network"], "geometry": ["relation"], "tags": {"type": "route"}, "name": "Route"},
+ "type/route/bicycle": {"icon": "iD-route-bicycle", "fields": ["name", "ref_route", "network_bicycle", "cycle_network"], "geometry": ["relation"], "tags": {"type": "route", "route": "bicycle"}, "name": "Cycle Route"},
+ "type/route/bus": {"icon": "iD-route-bus", "fields": ["name", "ref_route", "operator", "network"], "geometry": ["relation"], "tags": {"type": "route", "route": "bus"}, "name": "Bus Route"},
+ "type/route/detour": {"icon": "iD-route-detour", "fields": ["name", "ref_route"], "geometry": ["relation"], "tags": {"type": "route", "route": "detour"}, "name": "Detour Route"},
+ "type/route/ferry": {"icon": "iD-route-ferry", "fields": ["name", "ref_route", "operator", "network"], "geometry": ["relation"], "tags": {"type": "route", "route": "ferry"}, "name": "Ferry Route"},
+ "type/route/foot": {"icon": "iD-route-foot", "fields": ["name", "ref_route", "operator", "network_foot"], "geometry": ["relation"], "tags": {"type": "route", "route": "foot"}, "name": "Foot Route"},
+ "type/route/hiking": {"icon": "iD-route-foot", "fields": ["name", "ref_route", "operator", "network_foot", "description", "distance"], "geometry": ["relation"], "tags": {"type": "route", "route": "hiking"}, "name": "Hiking Route"},
+ "type/route/horse": {"icon": "iD-route-horse", "fields": ["name", "ref_route", "operator", "network_horse", "description", "distance"], "geometry": ["relation"], "tags": {"type": "route", "route": "horse"}, "name": "Riding Route"},
+ "type/route/light_rail": {"icon": "iD-route-light-rail", "fields": ["name", "ref_route", "operator", "network"], "geometry": ["relation"], "tags": {"type": "route", "route": "light_rail"}, "name": "Light Rail Route"},
+ "type/route/pipeline": {"icon": "iD-route-pipeline", "fields": ["name", "ref_route", "operator"], "geometry": ["relation"], "tags": {"type": "route", "route": "pipeline"}, "name": "Pipeline Route"},
+ "type/route/piste": {"icon": "iD-route-piste", "fields": ["name", "ref_route", "operator", "network"], "geometry": ["relation"], "tags": {"type": "route", "route": "piste"}, "name": "Piste/Ski Route"},
+ "type/route/power": {"icon": "iD-route-power", "fields": ["name", "ref_route", "operator"], "geometry": ["relation"], "tags": {"type": "route", "route": "power"}, "name": "Power Route"},
+ "type/route/road": {"icon": "iD-route-road", "fields": ["name", "ref_route", "network_road"], "geometry": ["relation"], "tags": {"type": "route", "route": "road"}, "name": "Road Route"},
+ "type/route/subway": {"icon": "iD-route-subway", "fields": ["name", "ref_route", "operator", "network"], "geometry": ["relation"], "tags": {"type": "route", "route": "subway"}, "name": "Subway Route"},
+ "type/route/train": {"icon": "iD-route-train", "fields": ["name", "ref_route", "operator", "network"], "geometry": ["relation"], "tags": {"type": "route", "route": "train"}, "name": "Train Route"},
+ "type/route/tram": {"icon": "iD-route-tram", "fields": ["name", "ref_route", "operator", "network"], "geometry": ["relation"], "tags": {"type": "route", "route": "tram"}, "name": "Tram Route"},
+ "type/site": {"icon": "iD-relation", "fields": ["name", "site"], "geometry": ["relation"], "tags": {"type": "site"}, "name": "Site"},
+ "type/waterway": {"icon": "iD-route-water", "fields": ["name", "waterway", "ref"], "geometry": ["relation"], "tags": {"type": "waterway"}, "name": "Waterway"},
+ "vertex": {"fields": ["name"], "geometry": ["vertex"], "tags": {}, "name": "Other", "matchScore": 0.1},
+ "waterway/boatyard": {"icon": "maki-harbor", "fields": ["name", "operator"], "geometry": ["area", "vertex", "point"], "tags": {"waterway": "boatyard"}, "name": "Boatyard"},
+ "waterway/canal": {"icon": "iD-waterway-canal", "fields": ["name", "width", "intermittent"], "geometry": ["line"], "tags": {"waterway": "canal"}, "name": "Canal"},
+ "waterway/dam": {"icon": "maki-dam", "geometry": ["point", "vertex", "line", "area"], "fields": ["name"], "tags": {"waterway": "dam"}, "name": "Dam"},
+ "waterway/ditch": {"icon": "iD-waterway-ditch", "fields": ["structure_waterway", "intermittent"], "geometry": ["line"], "tags": {"waterway": "ditch"}, "name": "Ditch"},
+ "waterway/dock": {"icon": "maki-harbor", "fields": ["name", "dock", "operator"], "geometry": ["area", "vertex", "point"], "terms": ["boat", "ship", "vessel", "marine"], "tags": {"waterway": "dock"}, "name": "Wet Dock / Dry Dock"},
+ "waterway/drain": {"icon": "iD-waterway-ditch", "fields": ["structure_waterway", "intermittent"], "geometry": ["line"], "tags": {"waterway": "drain"}, "name": "Drain"},
+ "waterway/fuel": {"icon": "maki-fuel", "fields": ["name", "operator", "address", "opening_hours", "fuel_multi"], "geometry": ["point", "area"], "terms": ["petrol", "gas", "diesel", "boat"], "tags": {"waterway": "fuel"}, "name": "Marine Fuel Station"},
+ "waterway/river": {"icon": "iD-waterway-river", "fields": ["name", "structure_waterway", "width", "intermittent"], "geometry": ["line"], "terms": ["beck", "branch", "brook", "course", "creek", "estuary", "rill", "rivulet", "run", "runnel", "stream", "tributary", "watercourse"], "tags": {"waterway": "river"}, "name": "River"},
+ "waterway/riverbank": {"icon": "maki-water", "geometry": ["area"], "tags": {"waterway": "riverbank"}, "name": "Riverbank"},
+ "waterway/sanitary_dump_station": {"icon": "temaki-storage_tank", "fields": ["name", "operator", "access_simple", "fee", "water_point"], "geometry": ["point", "vertex", "area"], "terms": ["Boat", "Watercraft", "Sanitary", "Dump Station", "Pumpout", "Pump out", "Elsan", "CDP", "CTDP", "Chemical Toilet"], "tags": {"waterway": "sanitary_dump_station"}, "name": "Marine Toilet Disposal"},
+ "waterway/stream_intermittent": {"icon": "iD-waterway-stream", "fields": ["name", "structure_waterway", "width", "intermittent"], "geometry": ["line"], "terms": ["arroyo", "beck", "branch", "brook", "burn", "course", "creek", "drift", "flood", "flow", "gully", "run", "runnel", "rush", "spate", "spritz", "tributary", "wadi", "wash", "watercourse"], "tags": {"waterway": "stream", "intermittent": "yes"}, "reference": {"key": "waterway", "value": "stream"}, "name": "Intermittent Stream"},
+ "waterway/stream": {"icon": "iD-waterway-stream", "fields": ["name", "structure_waterway", "width", "intermittent"], "geometry": ["line"], "terms": ["beck", "branch", "brook", "burn", "course", "creek", "current", "drift", "flood", "flow", "freshet", "race", "rill", "rindle", "rivulet", "run", "runnel", "rush", "spate", "spritz", "surge", "tide", "torrent", "tributary", "watercourse"], "tags": {"waterway": "stream"}, "name": "Stream"},
+ "waterway/water_point": {"icon": "maki-drinking-water", "geometry": ["area", "vertex", "point"], "tags": {"waterway": "water_point"}, "name": "Marine Drinking Water"},
+ "waterway/waterfall": {"icon": "maki-water", "fields": ["name", "height", "width", "intermittent"], "geometry": ["vertex"], "terms": ["fall"], "tags": {"waterway": "waterfall"}, "name": "Waterfall"},
+ "waterway/weir": {"icon": "maki-dam", "geometry": ["vertex", "line"], "tags": {"waterway": "weir"}, "name": "Weir"},
+ "amenity/arts_centre/Świetlica wiejska": {"tags": {"name": "Świetlica wiejska", "amenity": "arts_centre"}, "name": "Świetlica wiejska", "icon": "maki-theatre", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours"], "suggestion": true},
+ "amenity/arts_centre/Дом культуры": {"tags": {"name": "Дом культуры", "amenity": "arts_centre"}, "name": "Дом культуры", "icon": "maki-theatre", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours"], "suggestion": true},
+ "amenity/bank/ABANCA": {"tags": {"name": "ABANCA", "amenity": "bank"}, "name": "ABANCA", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/ABN AMRO": {"tags": {"name": "ABN AMRO", "amenity": "bank"}, "name": "ABN AMRO", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/ABSA": {"tags": {"name": "ABSA", "amenity": "bank"}, "name": "ABSA", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/AIB": {"tags": {"name": "AIB", "amenity": "bank"}, "name": "AIB", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/ANZ": {"tags": {"name": "ANZ", "amenity": "bank"}, "name": "ANZ", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/ASB Bank": {"tags": {"name": "ASB Bank", "amenity": "bank"}, "name": "ASB Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/ATB Financial": {"tags": {"name": "ATB Financial", "amenity": "bank"}, "name": "ATB Financial", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/AXA": {"tags": {"name": "AXA", "amenity": "bank"}, "name": "AXA", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Agribank": {"tags": {"name": "Agribank", "amenity": "bank"}, "name": "Agribank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Akbank": {"tags": {"name": "Akbank", "amenity": "bank"}, "name": "Akbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Alior Bank": {"tags": {"name": "Alior Bank", "amenity": "bank"}, "name": "Alior Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Allahabad Bank": {"tags": {"name": "Allahabad Bank", "amenity": "bank"}, "name": "Allahabad Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Allied Bank": {"tags": {"name": "Allied Bank", "amenity": "bank"}, "name": "Allied Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Alpha Bank": {"tags": {"name": "Alpha Bank", "amenity": "bank"}, "name": "Alpha Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Andhra Bank": {"tags": {"name": "Andhra Bank", "amenity": "bank"}, "name": "Andhra Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Antonveneta": {"tags": {"name": "Antonveneta", "amenity": "bank"}, "name": "Antonveneta", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Argenta": {"tags": {"name": "Argenta", "amenity": "bank"}, "name": "Argenta", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Asia United Bank": {"tags": {"name": "Asia United Bank", "amenity": "bank"}, "name": "Asia United Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Askari Bank": {"tags": {"name": "Askari Bank", "amenity": "bank"}, "name": "Askari Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Associated Bank": {"tags": {"name": "Associated Bank", "amenity": "bank"}, "name": "Associated Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Axis Bank": {"tags": {"name": "Axis Bank", "amenity": "bank"}, "name": "Axis Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BAC": {"tags": {"name": "BAC", "amenity": "bank"}, "name": "BAC", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BAWAG PSK": {"tags": {"name": "BAWAG PSK", "amenity": "bank"}, "name": "BAWAG PSK", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BB&T": {"tags": {"name": "BB&T", "amenity": "bank"}, "name": "BB&T", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BBBank": {"tags": {"name": "BBBank", "amenity": "bank"}, "name": "BBBank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BBK": {"tags": {"name": "BBK", "amenity": "bank"}, "name": "BBK", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BBVA": {"tags": {"name": "BBVA", "amenity": "bank"}, "name": "BBVA", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BBVA Bancomer": {"tags": {"name": "BBVA Bancomer", "amenity": "bank"}, "name": "BBVA Bancomer", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BBVA Compass": {"tags": {"name": "BBVA Compass", "amenity": "bank"}, "name": "BBVA Compass", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BBVA Continental": {"tags": {"name": "BBVA Continental", "amenity": "bank"}, "name": "BBVA Continental", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BBVA Francés": {"tags": {"name": "BBVA Francés", "amenity": "bank"}, "name": "BBVA Francés", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BCA": {"tags": {"name": "BCA", "amenity": "bank"}, "name": "BCA", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BCI": {"tags": {"name": "BCI", "amenity": "bank"}, "name": "BCI", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BCP": {"tags": {"name": "BCP", "amenity": "bank"}, "name": "BCP", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BCR": {"tags": {"name": "BCR", "amenity": "bank"}, "name": "BCR", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BDO": {"tags": {"name": "BDO", "amenity": "bank"}, "name": "BDO", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BGŻ BNP Paribas": {"tags": {"name": "BGŻ BNP Paribas", "amenity": "bank"}, "name": "BGŻ BNP Paribas", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BMCE": {"tags": {"name": "BMCE", "amenity": "bank"}, "name": "BMCE", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BMN": {"tags": {"name": "BMN", "amenity": "bank"}, "name": "BMN", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BMO": {"tags": {"name": "BMO", "amenity": "bank"}, "name": "BMO", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BMO Harris Bank": {"tags": {"name": "BMO Harris Bank", "amenity": "bank"}, "name": "BMO Harris Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BNA": {"tags": {"name": "BNA", "amenity": "bank"}, "name": "BNA", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BNI": {"tags": {"name": "BNI", "amenity": "bank"}, "name": "BNI", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BNL": {"tags": {"name": "BNL", "amenity": "bank"}, "name": "BNL", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BNP Paribas": {"tags": {"name": "BNP Paribas", "amenity": "bank"}, "name": "BNP Paribas", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BNP Paribas Fortis": {"tags": {"name": "BNP Paribas Fortis", "amenity": "bank"}, "name": "BNP Paribas Fortis", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BOC": {"tags": {"name": "BOC", "amenity": "bank"}, "name": "BOC", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BPH": {"tags": {"name": "BPH", "amenity": "bank"}, "name": "BPH", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BPI": {"tags": {"name": "BPI", "amenity": "bank"}, "name": "BPI", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BPI Family Savings Bank": {"tags": {"name": "BPI Family Savings Bank", "amenity": "bank"}, "name": "BPI Family Savings Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BRD": {"tags": {"name": "BRD", "amenity": "bank"}, "name": "BRD", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BRED": {"tags": {"name": "BRED", "amenity": "bank"}, "name": "BRED", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BRI": {"tags": {"name": "BRI", "amenity": "bank"}, "name": "BRI", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BW-Bank": {"tags": {"name": "BW-Bank", "amenity": "bank"}, "name": "BW-Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BZ WBK": {"tags": {"name": "BZ WBK", "amenity": "bank"}, "name": "BZ WBK", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banamex": {"tags": {"name": "Banamex", "amenity": "bank"}, "name": "Banamex", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banc Sabadell": {"tags": {"name": "Banc Sabadell", "amenity": "bank"}, "name": "Banc Sabadell", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banca Intesa": {"tags": {"name": "Banca Intesa", "amenity": "bank"}, "name": "Banca Intesa", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banca March": {"tags": {"name": "Banca March", "amenity": "bank"}, "name": "Banca March", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banca Popolare di Milano": {"tags": {"name": "Banca Popolare di Milano", "amenity": "bank"}, "name": "Banca Popolare di Milano", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banca Popolare di Novara": {"tags": {"name": "Banca Popolare di Novara", "amenity": "bank"}, "name": "Banca Popolare di Novara", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banca Popolare di Sondrio": {"tags": {"name": "Banca Popolare di Sondrio", "amenity": "bank"}, "name": "Banca Popolare di Sondrio", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banca Popolare di Verona": {"tags": {"name": "Banca Popolare di Verona", "amenity": "bank"}, "name": "Banca Popolare di Verona", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banca Popolare di Vicenza": {"tags": {"name": "Banca Popolare di Vicenza", "amenity": "bank"}, "name": "Banca Popolare di Vicenza", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banca Românească": {"tags": {"name": "Banca Românească", "amenity": "bank"}, "name": "Banca Românească", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banca Sella": {"tags": {"name": "Banca Sella", "amenity": "bank"}, "name": "Banca Sella", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banca Transilvania": {"tags": {"name": "Banca Transilvania", "amenity": "bank"}, "name": "Banca Transilvania", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco Agrario": {"tags": {"name": "Banco Agrario", "amenity": "bank"}, "name": "Banco Agrario", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco Azteca": {"tags": {"name": "Banco Azteca", "amenity": "bank"}, "name": "Banco Azteca", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco BCI": {"tags": {"name": "Banco BCI", "amenity": "bank"}, "name": "Banco BCI", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco Continental": {"tags": {"name": "Banco Continental", "amenity": "bank"}, "name": "Banco Continental", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco Estado": {"tags": {"name": "Banco Estado", "amenity": "bank"}, "name": "Banco Estado", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco Fassil": {"tags": {"name": "Banco Fassil", "amenity": "bank"}, "name": "Banco Fassil", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco G&T Continental": {"tags": {"name": "Banco G&T Continental", "amenity": "bank"}, "name": "Banco G&T Continental", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco General": {"tags": {"name": "Banco General", "amenity": "bank"}, "name": "Banco General", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco Industrial": {"tags": {"name": "Banco Industrial", "amenity": "bank"}, "name": "Banco Industrial", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco Internacional": {"tags": {"name": "Banco Internacional", "amenity": "bank"}, "name": "Banco Internacional", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco Nacional": {"tags": {"name": "Banco Nacional", "amenity": "bank"}, "name": "Banco Nacional", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco Nación": {"tags": {"name": "Banco Nación", "amenity": "bank"}, "name": "Banco Nación", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco Pastor": {"tags": {"name": "Banco Pastor", "amenity": "bank"}, "name": "Banco Pastor", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco Pichincha": {"tags": {"name": "Banco Pichincha", "amenity": "bank"}, "name": "Banco Pichincha", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco Popular": {"tags": {"name": "Banco Popular", "amenity": "bank"}, "name": "Banco Popular", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco Provincia": {"tags": {"name": "Banco Provincia", "amenity": "bank"}, "name": "Banco Provincia", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco Sabadell": {"tags": {"name": "Banco Sabadell", "amenity": "bank"}, "name": "Banco Sabadell", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco Santander": {"tags": {"name": "Banco Santander", "amenity": "bank"}, "name": "Banco Santander", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco Sol": {"tags": {"name": "Banco Sol", "amenity": "bank"}, "name": "Banco Sol", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco de Bogotá": {"tags": {"name": "Banco de Bogotá", "amenity": "bank"}, "name": "Banco de Bogotá", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco de Chile": {"tags": {"name": "Banco de Chile", "amenity": "bank"}, "name": "Banco de Chile", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco de Costa Rica": {"tags": {"name": "Banco de Costa Rica", "amenity": "bank"}, "name": "Banco de Costa Rica", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco de Desarrollo Banrural": {"tags": {"name": "Banco de Desarrollo Banrural", "amenity": "bank"}, "name": "Banco de Desarrollo Banrural", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco de Occidente": {"tags": {"name": "Banco de Occidente", "amenity": "bank"}, "name": "Banco de Occidente", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco de Venezuela": {"tags": {"name": "Banco de Venezuela", "amenity": "bank"}, "name": "Banco de Venezuela", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco de la Nación": {"tags": {"name": "Banco de la Nación", "amenity": "bank"}, "name": "Banco de la Nación", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco de la Nación Argentina": {"tags": {"name": "Banco de la Nación Argentina", "amenity": "bank"}, "name": "Banco de la Nación Argentina", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco di Napoli": {"tags": {"name": "Banco di Napoli", "amenity": "bank"}, "name": "Banco di Napoli", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco di Sardegna": {"tags": {"name": "Banco di Sardegna", "amenity": "bank"}, "name": "Banco di Sardegna", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco do Brasil": {"tags": {"name": "Banco do Brasil", "amenity": "bank"}, "name": "Banco do Brasil", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banco do Nordeste": {"tags": {"name": "Banco do Nordeste", "amenity": "bank"}, "name": "Banco do Nordeste", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/BancoEstado": {"tags": {"name": "BancoEstado", "amenity": "bank"}, "name": "BancoEstado", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bancolombia": {"tags": {"name": "Bancolombia", "amenity": "bank"}, "name": "Bancolombia", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bancomer": {"tags": {"name": "Bancomer", "amenity": "bank"}, "name": "Bancomer", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bancpost": {"tags": {"name": "Bancpost", "amenity": "bank"}, "name": "Bancpost", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banesco": {"tags": {"name": "Banesco", "amenity": "bank"}, "name": "Banesco", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bangkok Bank": {"tags": {"name": "Bangkok Bank", "amenity": "bank"}, "name": "Bangkok Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank Al Habib": {"tags": {"name": "Bank Al Habib", "amenity": "bank"}, "name": "Bank Al Habib", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank Alfalah": {"tags": {"name": "Bank Alfalah", "amenity": "bank"}, "name": "Bank Alfalah", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank Austria": {"tags": {"name": "Bank Austria", "amenity": "bank"}, "name": "Bank Austria", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank BCA": {"tags": {"name": "Bank BCA", "amenity": "bank"}, "name": "Bank BCA", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank BNI": {"tags": {"name": "Bank BNI", "amenity": "bank"}, "name": "Bank BNI", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank BPH": {"tags": {"name": "Bank BPH", "amenity": "bank"}, "name": "Bank BPH", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank BRI": {"tags": {"name": "Bank BRI", "amenity": "bank"}, "name": "Bank BRI", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank Danamon": {"tags": {"name": "Bank Danamon", "amenity": "bank"}, "name": "Bank Danamon", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank Mandiri": {"tags": {"name": "Bank Mandiri", "amenity": "bank"}, "name": "Bank Mandiri", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank Mega": {"tags": {"name": "Bank Mega", "amenity": "bank"}, "name": "Bank Mega", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank Spółdzielczy": {"tags": {"name": "Bank Spółdzielczy", "amenity": "bank"}, "name": "Bank Spółdzielczy", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank Zachodni WBK": {"tags": {"name": "Bank Zachodni WBK", "amenity": "bank"}, "name": "Bank Zachodni WBK", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank of Africa": {"tags": {"name": "Bank of Africa", "amenity": "bank"}, "name": "Bank of Africa", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank of America": {"tags": {"name": "Bank of America", "amenity": "bank"}, "name": "Bank of America", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank of Baroda": {"tags": {"name": "Bank of Baroda", "amenity": "bank"}, "name": "Bank of Baroda", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank of Ceylon": {"tags": {"name": "Bank of Ceylon", "amenity": "bank"}, "name": "Bank of Ceylon", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank of China": {"tags": {"name": "Bank of China", "amenity": "bank"}, "name": "Bank of China", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank of Commerce": {"tags": {"name": "Bank of Commerce", "amenity": "bank"}, "name": "Bank of Commerce", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank of India": {"tags": {"name": "Bank of India", "amenity": "bank"}, "name": "Bank of India", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank of Ireland": {"tags": {"name": "Bank of Ireland", "amenity": "bank"}, "name": "Bank of Ireland", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank of Montreal": {"tags": {"name": "Bank of Montreal", "amenity": "bank"}, "name": "Bank of Montreal", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank of New Zealand": {"tags": {"name": "Bank of New Zealand", "amenity": "bank"}, "name": "Bank of New Zealand", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank of Scotland": {"tags": {"name": "Bank of Scotland", "amenity": "bank"}, "name": "Bank of Scotland", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bank of the West": {"tags": {"name": "Bank of the West", "amenity": "bank"}, "name": "Bank of the West", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bankia": {"tags": {"name": "Bankia", "amenity": "bank"}, "name": "Bankia", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bankinter": {"tags": {"name": "Bankinter", "amenity": "bank"}, "name": "Bankinter", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banner Bank": {"tags": {"name": "Banner Bank", "amenity": "bank"}, "name": "Banner Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banorte": {"tags": {"name": "Banorte", "amenity": "bank"}, "name": "Banorte", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banque Atlantique": {"tags": {"name": "Banque Atlantique", "amenity": "bank"}, "name": "Banque Atlantique", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banque Nationale": {"tags": {"name": "Banque Nationale", "amenity": "bank"}, "name": "Banque Nationale", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banque Populaire": {"tags": {"name": "Banque Populaire", "amenity": "bank"}, "name": "Banque Populaire", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banrisul": {"tags": {"name": "Banrisul", "amenity": "bank"}, "name": "Banrisul", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Banrural": {"tags": {"name": "Banrural", "amenity": "bank"}, "name": "Banrural", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Barclays": {"tags": {"name": "Barclays", "amenity": "bank"}, "name": "Barclays", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bcc": {"tags": {"name": "Bcc", "amenity": "bank"}, "name": "Bcc", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Belfius": {"tags": {"name": "Belfius", "amenity": "bank"}, "name": "Belfius", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bendigo Bank": {"tags": {"name": "Bendigo Bank", "amenity": "bank"}, "name": "Bendigo Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Berliner Volksbank": {"tags": {"name": "Berliner Volksbank", "amenity": "bank"}, "name": "Berliner Volksbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bicentenario": {"tags": {"name": "Bicentenario", "amenity": "bank"}, "name": "Bicentenario", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Bradesco": {"tags": {"name": "Bradesco", "amenity": "bank"}, "name": "Bradesco", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Budapest Bank": {"tags": {"name": "Budapest Bank", "amenity": "bank"}, "name": "Budapest Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/CBAO": {"tags": {"name": "CBAO", "amenity": "bank"}, "name": "CBAO", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/CEC Bank": {"tags": {"name": "CEC Bank", "amenity": "bank"}, "name": "CEC Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/CGD": {"tags": {"name": "CGD", "amenity": "bank"}, "name": "CGD", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/CIB Bank": {"tags": {"name": "CIB Bank", "amenity": "bank"}, "name": "CIB Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/CIBC": {"tags": {"name": "CIBC", "amenity": "bank"}, "name": "CIBC", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/CIC": {"tags": {"name": "CIC", "amenity": "bank"}, "name": "CIC", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/CIMB Bank": {"tags": {"name": "CIMB Bank", "amenity": "bank"}, "name": "CIMB Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/CNEP": {"tags": {"name": "CNEP", "amenity": "bank"}, "name": "CNEP", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Caisse Desjardins": {"tags": {"name": "Caisse Desjardins", "amenity": "bank"}, "name": "Caisse Desjardins", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Caisse d'Épargne": {"tags": {"name": "Caisse d'Épargne", "amenity": "bank"}, "name": "Caisse d'Épargne", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Caixa": {"tags": {"name": "Caixa", "amenity": "bank"}, "name": "Caixa", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Caixa Econômica Federal": {"tags": {"name": "Caixa Econômica Federal", "amenity": "bank"}, "name": "Caixa Econômica Federal", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Caixa Geral de Depósitos": {"tags": {"name": "Caixa Geral de Depósitos", "amenity": "bank"}, "name": "Caixa Geral de Depósitos", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/CaixaBank": {"tags": {"name": "CaixaBank", "amenity": "bank"}, "name": "CaixaBank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Caja Círculo": {"tags": {"name": "Caja Círculo", "amenity": "bank"}, "name": "Caja Círculo", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Caja Duero": {"tags": {"name": "Caja Duero", "amenity": "bank"}, "name": "Caja Duero", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Caja España": {"tags": {"name": "Caja España", "amenity": "bank"}, "name": "Caja España", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Caja Rural": {"tags": {"name": "Caja Rural", "amenity": "bank"}, "name": "Caja Rural", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Caja Rural de Jaén": {"tags": {"name": "Caja Rural de Jaén", "amenity": "bank"}, "name": "Caja Rural de Jaén", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/CajaSur": {"tags": {"name": "CajaSur", "amenity": "bank"}, "name": "CajaSur", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Cajamar": {"tags": {"name": "Cajamar", "amenity": "bank"}, "name": "Cajamar", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Cajero Automatico Bancared": {"tags": {"name": "Cajero Automatico Bancared", "amenity": "bank"}, "name": "Cajero Automatico Bancared", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Canara Bank": {"tags": {"name": "Canara Bank", "amenity": "bank"}, "name": "Canara Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Capital One": {"tags": {"name": "Capital One", "amenity": "bank"}, "name": "Capital One", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Carige": {"tags": {"name": "Carige", "amenity": "bank"}, "name": "Carige", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Cariparma": {"tags": {"name": "Cariparma", "amenity": "bank"}, "name": "Cariparma", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Cassa di Risparmio del Veneto": {"tags": {"name": "Cassa di Risparmio del Veneto", "amenity": "bank"}, "name": "Cassa di Risparmio del Veneto", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/CatalunyaCaixa": {"tags": {"name": "CatalunyaCaixa", "amenity": "bank"}, "name": "CatalunyaCaixa", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Central Bank of India": {"tags": {"name": "Central Bank of India", "amenity": "bank"}, "name": "Central Bank of India", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Chase": {"tags": {"name": "Chase", "amenity": "bank"}, "name": "Chase", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/China Bank": {"tags": {"name": "China Bank", "amenity": "bank"}, "name": "China Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/China Bank Savings": {"tags": {"name": "China Bank Savings", "amenity": "bank"}, "name": "China Bank Savings", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/China Construction Bank": {"tags": {"name": "China Construction Bank", "amenity": "bank"}, "name": "China Construction Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Citibank": {"tags": {"name": "Citibank", "amenity": "bank"}, "name": "Citibank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Citizens Bank": {"tags": {"name": "Citizens Bank", "amenity": "bank"}, "name": "Citizens Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Clydesdale Bank": {"tags": {"name": "Clydesdale Bank", "amenity": "bank"}, "name": "Clydesdale Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Columbia Bank": {"tags": {"name": "Columbia Bank", "amenity": "bank"}, "name": "Columbia Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Comerica Bank": {"tags": {"name": "Comerica Bank", "amenity": "bank"}, "name": "Comerica Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Commerce Bank": {"tags": {"name": "Commerce Bank", "amenity": "bank"}, "name": "Commerce Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Commercial Bank": {"tags": {"name": "Commercial Bank", "amenity": "bank"}, "name": "Commercial Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Commercial Bank of Ceylon PLC": {"tags": {"name": "Commercial Bank of Ceylon PLC", "amenity": "bank"}, "name": "Commercial Bank of Ceylon PLC", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Commerzbank": {"tags": {"name": "Commerzbank", "amenity": "bank"}, "name": "Commerzbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Commonwealth Bank": {"tags": {"name": "Commonwealth Bank", "amenity": "bank"}, "name": "Commonwealth Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Corporation Bank": {"tags": {"name": "Corporation Bank", "amenity": "bank"}, "name": "Corporation Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Credem": {"tags": {"name": "Credem", "amenity": "bank"}, "name": "Credem", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Credicoop": {"tags": {"name": "Credicoop", "amenity": "bank"}, "name": "Credicoop", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Credit Agricole": {"tags": {"name": "Credit Agricole", "amenity": "bank"}, "name": "Credit Agricole", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Credit Suisse": {"tags": {"name": "Credit Suisse", "amenity": "bank"}, "name": "Credit Suisse", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Crelan": {"tags": {"name": "Crelan", "amenity": "bank"}, "name": "Crelan", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Crédit Agricole": {"tags": {"name": "Crédit Agricole", "amenity": "bank"}, "name": "Crédit Agricole", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Crédit Mutuel": {"tags": {"name": "Crédit Mutuel", "amenity": "bank"}, "name": "Crédit Mutuel", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Crédit Mutuel de Bretagne": {"tags": {"name": "Crédit Mutuel de Bretagne", "amenity": "bank"}, "name": "Crédit Mutuel de Bretagne", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Crédit du Nord": {"tags": {"name": "Crédit du Nord", "amenity": "bank"}, "name": "Crédit du Nord", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Crédito Agrícola": {"tags": {"name": "Crédito Agrícola", "amenity": "bank"}, "name": "Crédito Agrícola", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Cбербанк": {"tags": {"name": "Cбербанк", "amenity": "bank"}, "name": "Cбербанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Danske Bank": {"tags": {"name": "Danske Bank", "amenity": "bank"}, "name": "Danske Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Davivienda": {"tags": {"name": "Davivienda", "amenity": "bank"}, "name": "Davivienda", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/De Venezuela": {"tags": {"name": "De Venezuela", "amenity": "bank"}, "name": "De Venezuela", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Denizbank": {"tags": {"name": "Denizbank", "amenity": "bank"}, "name": "Denizbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Desjardins": {"tags": {"name": "Desjardins", "amenity": "bank"}, "name": "Desjardins", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Deutsche Bank": {"tags": {"name": "Deutsche Bank", "amenity": "bank"}, "name": "Deutsche Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Dubai Islamic Bank": {"tags": {"name": "Dubai Islamic Bank", "amenity": "bank"}, "name": "Dubai Islamic Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/EastWest Bank": {"tags": {"name": "EastWest Bank", "amenity": "bank"}, "name": "EastWest Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Ecobank": {"tags": {"name": "Ecobank", "amenity": "bank"}, "name": "Ecobank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Erste Bank": {"tags": {"name": "Erste Bank", "amenity": "bank"}, "name": "Erste Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Eurobank": {"tags": {"name": "Eurobank", "amenity": "bank"}, "name": "Eurobank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Express Union": {"tags": {"name": "Express Union", "amenity": "bank"}, "name": "Express Union", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/FNB": {"tags": {"name": "FNB", "amenity": "bank"}, "name": "FNB", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Federal Bank": {"tags": {"name": "Federal Bank", "amenity": "bank"}, "name": "Federal Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Fifth Third Bank": {"tags": {"name": "Fifth Third Bank", "amenity": "bank"}, "name": "Fifth Third Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Finansbank": {"tags": {"name": "Finansbank", "amenity": "bank"}, "name": "Finansbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/First Bank": {"tags": {"name": "First Bank", "amenity": "bank"}, "name": "First Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/First Citizens Bank": {"tags": {"name": "First Citizens Bank", "amenity": "bank"}, "name": "First Citizens Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/First National Bank": {"tags": {"name": "First National Bank", "amenity": "bank"}, "name": "First National Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Galicia": {"tags": {"name": "Galicia", "amenity": "bank"}, "name": "Galicia", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Garanti": {"tags": {"name": "Garanti", "amenity": "bank"}, "name": "Garanti", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Garanti Bankası": {"tags": {"name": "Garanti Bankası", "amenity": "bank"}, "name": "Garanti Bankası", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Getin Bank": {"tags": {"name": "Getin Bank", "amenity": "bank"}, "name": "Getin Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Groupama": {"tags": {"name": "Groupama", "amenity": "bank"}, "name": "Groupama", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/HDFC Bank": {"tags": {"name": "HDFC Bank", "amenity": "bank"}, "name": "HDFC Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/HNB": {"tags": {"name": "HNB", "amenity": "bank"}, "name": "HNB", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/HSBC": {"tags": {"name": "HSBC", "amenity": "bank"}, "name": "HSBC", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Halifax": {"tags": {"name": "Halifax", "amenity": "bank"}, "name": "Halifax", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Halkbank": {"tags": {"name": "Halkbank", "amenity": "bank"}, "name": "Halkbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Hamburger Sparkasse": {"tags": {"name": "Hamburger Sparkasse", "amenity": "bank"}, "name": "Hamburger Sparkasse", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Handelsbanken": {"tags": {"name": "Handelsbanken", "amenity": "bank"}, "name": "Handelsbanken", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Hong Leong Bank": {"tags": {"name": "Hong Leong Bank", "amenity": "bank"}, "name": "Hong Leong Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Hrvatska poštanska banka": {"tags": {"name": "Hrvatska poštanska banka", "amenity": "bank"}, "name": "Hrvatska poštanska banka", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Huntington Bank": {"tags": {"name": "Huntington Bank", "amenity": "bank"}, "name": "Huntington Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/HypoVereinsbank": {"tags": {"name": "HypoVereinsbank", "amenity": "bank"}, "name": "HypoVereinsbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/ICBC": {"tags": {"name": "ICBC", "amenity": "bank"}, "name": "ICBC", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/ICICI Bank": {"tags": {"name": "ICICI Bank", "amenity": "bank"}, "name": "ICICI Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/IDBI Bank": {"tags": {"name": "IDBI Bank", "amenity": "bank"}, "name": "IDBI Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/ING": {"tags": {"name": "ING", "amenity": "bank"}, "name": "ING", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/ING Bank Śląski": {"tags": {"name": "ING Bank Śląski", "amenity": "bank"}, "name": "ING Bank Śląski", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/IberCaja": {"tags": {"name": "IberCaja", "amenity": "bank"}, "name": "IberCaja", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Indian Bank": {"tags": {"name": "Indian Bank", "amenity": "bank"}, "name": "Indian Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Indian Overseas Bank": {"tags": {"name": "Indian Overseas Bank", "amenity": "bank"}, "name": "Indian Overseas Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Interbank": {"tags": {"name": "Interbank", "amenity": "bank"}, "name": "Interbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Intesa San Paolo": {"tags": {"name": "Intesa San Paolo", "amenity": "bank"}, "name": "Intesa San Paolo", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Itaú": {"tags": {"name": "Itaú", "amenity": "bank"}, "name": "Itaú", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/K&H Bank": {"tags": {"name": "K&H Bank", "amenity": "bank"}, "name": "K&H Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/KBC": {"tags": {"name": "KBC", "amenity": "bank"}, "name": "KBC", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Kasa Stefczyka": {"tags": {"name": "Kasa Stefczyka", "amenity": "bank"}, "name": "Kasa Stefczyka", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Key Bank": {"tags": {"name": "Key Bank", "amenity": "bank"}, "name": "Key Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Komerční banka": {"tags": {"name": "Komerční banka", "amenity": "bank"}, "name": "Komerční banka", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Kreissparkasse": {"tags": {"name": "Kreissparkasse", "amenity": "bank"}, "name": "Kreissparkasse", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Kreissparkasse Köln": {"tags": {"name": "Kreissparkasse Köln", "amenity": "bank"}, "name": "Kreissparkasse Köln", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Kutxabank": {"tags": {"name": "Kutxabank", "amenity": "bank"}, "name": "Kutxabank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/LCL": {"tags": {"name": "LCL", "amenity": "bank"}, "name": "LCL", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/La Banque Postale": {"tags": {"name": "La Banque Postale", "amenity": "bank"}, "name": "La Banque Postale", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/La Caixa": {"tags": {"name": "La Caixa", "amenity": "bank"}, "name": "La Caixa", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Laboral Kutxa": {"tags": {"name": "Laboral Kutxa", "amenity": "bank"}, "name": "Laboral Kutxa", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Landbank": {"tags": {"name": "Landbank", "amenity": "bank"}, "name": "Landbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Liberbank": {"tags": {"name": "Liberbank", "amenity": "bank"}, "name": "Liberbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Lloyds Bank": {"tags": {"name": "Lloyds Bank", "amenity": "bank"}, "name": "Lloyds Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/M&T Bank": {"tags": {"name": "M&T Bank", "amenity": "bank"}, "name": "M&T Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/MCB": {"tags": {"name": "MCB", "amenity": "bank"}, "name": "MCB", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/MCB Bank": {"tags": {"name": "MCB Bank", "amenity": "bank"}, "name": "MCB Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/MONETA Money Bank": {"tags": {"name": "MONETA Money Bank", "amenity": "bank"}, "name": "MONETA Money Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Macro": {"tags": {"name": "Macro", "amenity": "bank"}, "name": "Macro", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Maybank": {"tags": {"name": "Maybank", "amenity": "bank"}, "name": "Maybank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Meezan Bank": {"tags": {"name": "Meezan Bank", "amenity": "bank"}, "name": "Meezan Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Mercantil": {"tags": {"name": "Mercantil", "amenity": "bank"}, "name": "Mercantil", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Metro Bank": {"tags": {"name": "Metro Bank", "amenity": "bank"}, "name": "Metro Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Metrobank": {"tags": {"name": "Metrobank", "amenity": "bank"}, "name": "Metrobank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Millennium BCP": {"tags": {"name": "Millennium BCP", "amenity": "bank"}, "name": "Millennium BCP", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Millennium Bank": {"tags": {"name": "Millennium Bank", "amenity": "bank"}, "name": "Millennium Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Monte dei Paschi di Siena": {"tags": {"name": "Monte dei Paschi di Siena", "amenity": "bank"}, "name": "Monte dei Paschi di Siena", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Montepio": {"tags": {"name": "Montepio", "amenity": "bank"}, "name": "Montepio", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/NAB": {"tags": {"name": "NAB", "amenity": "bank"}, "name": "NAB", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/NSB": {"tags": {"name": "NSB", "amenity": "bank"}, "name": "NSB", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/NatWest": {"tags": {"name": "NatWest", "amenity": "bank"}, "name": "NatWest", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/National Bank": {"tags": {"name": "National Bank", "amenity": "bank"}, "name": "National Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Nationwide": {"tags": {"name": "Nationwide", "amenity": "bank"}, "name": "Nationwide", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Nedbank": {"tags": {"name": "Nedbank", "amenity": "bank"}, "name": "Nedbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Nordea": {"tags": {"name": "Nordea", "amenity": "bank"}, "name": "Nordea", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Novo Banco": {"tags": {"name": "Novo Banco", "amenity": "bank"}, "name": "Novo Banco", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/OLB": {"tags": {"name": "OLB", "amenity": "bank"}, "name": "OLB", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/OTP": {"tags": {"name": "OTP", "amenity": "bank"}, "name": "OTP", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Oberbank": {"tags": {"name": "Oberbank", "amenity": "bank"}, "name": "Oberbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Occidental de Descuento": {"tags": {"name": "Occidental de Descuento", "amenity": "bank"}, "name": "Occidental de Descuento", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Oldenburgische Landesbank": {"tags": {"name": "Oldenburgische Landesbank", "amenity": "bank"}, "name": "Oldenburgische Landesbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/One Network Bank": {"tags": {"name": "One Network Bank", "amenity": "bank"}, "name": "One Network Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Osuuspankki": {"tags": {"name": "Osuuspankki", "amenity": "bank"}, "name": "Osuuspankki", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/PBZ": {"tags": {"name": "PBZ", "amenity": "bank"}, "name": "PBZ", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/PKO": {"tags": {"name": "PKO", "amenity": "bank"}, "name": "PKO", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/PKO BP": {"tags": {"name": "PKO BP", "amenity": "bank"}, "name": "PKO BP", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/PNB": {"tags": {"name": "PNB", "amenity": "bank"}, "name": "PNB", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/PNC": {"tags": {"name": "PNC", "amenity": "bank"}, "name": "PNC", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/PNC Bank": {"tags": {"name": "PNC Bank", "amenity": "bank"}, "name": "PNC Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/PSBank": {"tags": {"name": "PSBank", "amenity": "bank"}, "name": "PSBank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Patagonia": {"tags": {"name": "Patagonia", "amenity": "bank"}, "name": "Patagonia", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Pekao SA": {"tags": {"name": "Pekao SA", "amenity": "bank"}, "name": "Pekao SA", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Peoples Bank": {"tags": {"name": "Peoples Bank", "amenity": "bank"}, "name": "Peoples Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Philippine National Bank": {"tags": {"name": "Philippine National Bank", "amenity": "bank"}, "name": "Philippine National Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Piraeus Bank": {"tags": {"name": "Piraeus Bank", "amenity": "bank"}, "name": "Piraeus Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Popular": {"tags": {"name": "Popular", "amenity": "bank"}, "name": "Popular", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Postbank": {"tags": {"name": "Postbank", "amenity": "bank"}, "name": "Postbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Postbank Finanzcenter": {"tags": {"name": "Postbank Finanzcenter", "amenity": "bank"}, "name": "Postbank Finanzcenter", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Provincial": {"tags": {"name": "Provincial", "amenity": "bank"}, "name": "Provincial", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Public Bank": {"tags": {"name": "Public Bank", "amenity": "bank"}, "name": "Public Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Punjab National Bank": {"tags": {"name": "Punjab National Bank", "amenity": "bank"}, "name": "Punjab National Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/RBC": {"tags": {"name": "RBC", "amenity": "bank"}, "name": "RBC", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/RBC Financial Group": {"tags": {"name": "RBC Financial Group", "amenity": "bank"}, "name": "RBC Financial Group", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/RBS": {"tags": {"name": "RBS", "amenity": "bank"}, "name": "RBS", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/RCBC": {"tags": {"name": "RCBC", "amenity": "bank"}, "name": "RCBC", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/RCBC Savings Bank": {"tags": {"name": "RCBC Savings Bank", "amenity": "bank"}, "name": "RCBC Savings Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Rabobank": {"tags": {"name": "Rabobank", "amenity": "bank"}, "name": "Rabobank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Raiffeisen Polbank": {"tags": {"name": "Raiffeisen Polbank", "amenity": "bank"}, "name": "Raiffeisen Polbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Raiffeisenbank": {"tags": {"name": "Raiffeisenbank", "amenity": "bank"}, "name": "Raiffeisenbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Regions Bank": {"tags": {"name": "Regions Bank", "amenity": "bank"}, "name": "Regions Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Republic Bank": {"tags": {"name": "Republic Bank", "amenity": "bank"}, "name": "Republic Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Royal Bank": {"tags": {"name": "Royal Bank", "amenity": "bank"}, "name": "Royal Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Royal Bank of Canada": {"tags": {"name": "Royal Bank of Canada", "amenity": "bank"}, "name": "Royal Bank of Canada", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Royal Bank of Scotland": {"tags": {"name": "Royal Bank of Scotland", "amenity": "bank"}, "name": "Royal Bank of Scotland", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/SEB": {"tags": {"name": "SEB", "amenity": "bank"}, "name": "SEB", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/SNS Bank": {"tags": {"name": "SNS Bank", "amenity": "bank"}, "name": "SNS Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Sabadell": {"tags": {"name": "Sabadell", "amenity": "bank"}, "name": "Sabadell", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Sampath Bank": {"tags": {"name": "Sampath Bank", "amenity": "bank"}, "name": "Sampath Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Santander": {"tags": {"name": "Santander", "amenity": "bank"}, "name": "Santander", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Santander Consumer Bank": {"tags": {"name": "Santander Consumer Bank", "amenity": "bank"}, "name": "Santander Consumer Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Santander Río": {"tags": {"name": "Santander Río", "amenity": "bank"}, "name": "Santander Río", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Santander Totta": {"tags": {"name": "Santander Totta", "amenity": "bank"}, "name": "Santander Totta", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Sberbank": {"tags": {"name": "Sberbank", "amenity": "bank"}, "name": "Sberbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Scotiabank": {"tags": {"name": "Scotiabank", "amenity": "bank"}, "name": "Scotiabank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Security Bank": {"tags": {"name": "Security Bank", "amenity": "bank"}, "name": "Security Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Sicredi": {"tags": {"name": "Sicredi", "amenity": "bank"}, "name": "Sicredi", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Slovenská sporiteľňa": {"tags": {"name": "Slovenská sporiteľňa", "amenity": "bank"}, "name": "Slovenská sporiteľňa", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Société Générale": {"tags": {"name": "Société Générale", "amenity": "bank"}, "name": "Société Générale", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Sparda-Bank": {"tags": {"name": "Sparda-Bank", "amenity": "bank"}, "name": "Sparda-Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Sparkasse": {"tags": {"name": "Sparkasse", "amenity": "bank"}, "name": "Sparkasse", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Sparkasse Aachen": {"tags": {"name": "Sparkasse Aachen", "amenity": "bank"}, "name": "Sparkasse Aachen", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Sparkasse KölnBonn": {"tags": {"name": "Sparkasse KölnBonn", "amenity": "bank"}, "name": "Sparkasse KölnBonn", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Stadtsparkasse": {"tags": {"name": "Stadtsparkasse", "amenity": "bank"}, "name": "Stadtsparkasse", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Stanbic Bank": {"tags": {"name": "Stanbic Bank", "amenity": "bank"}, "name": "Stanbic Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Standard Bank": {"tags": {"name": "Standard Bank", "amenity": "bank"}, "name": "Standard Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Standard Chartered": {"tags": {"name": "Standard Chartered", "amenity": "bank"}, "name": "Standard Chartered", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Standard Chartered Bank": {"tags": {"name": "Standard Chartered Bank", "amenity": "bank"}, "name": "Standard Chartered Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/State Bank of India": {"tags": {"name": "State Bank of India", "amenity": "bank"}, "name": "State Bank of India", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/SunTrust": {"tags": {"name": "SunTrust", "amenity": "bank"}, "name": "SunTrust", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Supervielle": {"tags": {"name": "Supervielle", "amenity": "bank"}, "name": "Supervielle", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Swedbank": {"tags": {"name": "Swedbank", "amenity": "bank"}, "name": "Swedbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Syndicate Bank": {"tags": {"name": "Syndicate Bank", "amenity": "bank"}, "name": "Syndicate Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/TCF Bank": {"tags": {"name": "TCF Bank", "amenity": "bank"}, "name": "TCF Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/TD Bank": {"tags": {"name": "TD Bank", "amenity": "bank"}, "name": "TD Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/TD Canada Trust": {"tags": {"name": "TD Canada Trust", "amenity": "bank"}, "name": "TD Canada Trust", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/TEB": {"tags": {"name": "TEB", "amenity": "bank"}, "name": "TEB", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/TSB": {"tags": {"name": "TSB", "amenity": "bank"}, "name": "TSB", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Takarékszövetkezet": {"tags": {"name": "Takarékszövetkezet", "amenity": "bank"}, "name": "Takarékszövetkezet", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Targobank": {"tags": {"name": "Targobank", "amenity": "bank"}, "name": "Targobank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Tatra banka": {"tags": {"name": "Tatra banka", "amenity": "bank"}, "name": "Tatra banka", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Türkiye İş Bankası": {"tags": {"name": "Türkiye İş Bankası", "amenity": "bank"}, "name": "Türkiye İş Bankası", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/UBS": {"tags": {"name": "UBS", "amenity": "bank"}, "name": "UBS", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/UCO Bank": {"tags": {"name": "UCO Bank", "amenity": "bank"}, "name": "UCO Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/UCPB": {"tags": {"name": "UCPB", "amenity": "bank"}, "name": "UCPB", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/UOB": {"tags": {"name": "UOB", "amenity": "bank"}, "name": "UOB", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/US Bank": {"tags": {"name": "US Bank", "amenity": "bank"}, "name": "US Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Ulster Bank": {"tags": {"name": "Ulster Bank", "amenity": "bank"}, "name": "Ulster Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Umpqua Bank": {"tags": {"name": "Umpqua Bank", "amenity": "bank"}, "name": "Umpqua Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/UniCredit Bank": {"tags": {"name": "UniCredit Bank", "amenity": "bank"}, "name": "UniCredit Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Unicaja Banco": {"tags": {"name": "Unicaja Banco", "amenity": "bank"}, "name": "Unicaja Banco", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Unicredit Banca": {"tags": {"name": "Unicredit Banca", "amenity": "bank"}, "name": "Unicredit Banca", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Union Bank": {"tags": {"name": "Union Bank", "amenity": "bank"}, "name": "Union Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/United Bank": {"tags": {"name": "United Bank", "amenity": "bank"}, "name": "United Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/VR-Bank": {"tags": {"name": "VR-Bank", "amenity": "bank"}, "name": "VR-Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Vakıfbank": {"tags": {"name": "Vakıfbank", "amenity": "bank"}, "name": "Vakıfbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Veneto Banca": {"tags": {"name": "Veneto Banca", "amenity": "bank"}, "name": "Veneto Banca", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Vijaya Bank": {"tags": {"name": "Vijaya Bank", "amenity": "bank"}, "name": "Vijaya Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Volks- und Raiffeisenbank": {"tags": {"name": "Volks- und Raiffeisenbank", "amenity": "bank"}, "name": "Volks- und Raiffeisenbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Volksbank": {"tags": {"name": "Volksbank", "amenity": "bank"}, "name": "Volksbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Volksbank Mittelhessen": {"tags": {"name": "Volksbank Mittelhessen", "amenity": "bank"}, "name": "Volksbank Mittelhessen", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Volksbank Raiffeisenbank": {"tags": {"name": "Volksbank Raiffeisenbank", "amenity": "bank"}, "name": "Volksbank Raiffeisenbank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/VÚB": {"tags": {"name": "VÚB", "amenity": "bank"}, "name": "VÚB", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Washington Federal": {"tags": {"name": "Washington Federal", "amenity": "bank"}, "name": "Washington Federal", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Wells Fargo": {"tags": {"name": "Wells Fargo", "amenity": "bank"}, "name": "Wells Fargo", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Western Union": {"tags": {"name": "Western Union", "amenity": "bank"}, "name": "Western Union", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Westpac": {"tags": {"name": "Westpac", "amenity": "bank"}, "name": "Westpac", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Yorkshire Bank": {"tags": {"name": "Yorkshire Bank", "amenity": "bank"}, "name": "Yorkshire Bank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Yorkshire Building Society": {"tags": {"name": "Yorkshire Building Society", "amenity": "bank"}, "name": "Yorkshire Building Society", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Zagrebačka banka": {"tags": {"name": "Zagrebačka banka", "amenity": "bank"}, "name": "Zagrebačka banka", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Ziraat Bankası": {"tags": {"name": "Ziraat Bankası", "amenity": "bank"}, "name": "Ziraat Bankası", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/mBank": {"tags": {"name": "mBank", "amenity": "bank"}, "name": "mBank", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/ČSOB": {"tags": {"name": "ČSOB", "amenity": "bank"}, "name": "ČSOB", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Česká spořitelna": {"tags": {"name": "Česká spořitelna", "amenity": "bank"}, "name": "Česká spořitelna", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/İş Bankası": {"tags": {"name": "İş Bankası", "amenity": "bank"}, "name": "İş Bankası", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Εθνική Τράπεζα": {"tags": {"name": "Εθνική Τράπεζα", "amenity": "bank"}, "name": "Εθνική Τράπεζα", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Πειραιώς": {"tags": {"name": "Πειραιώς", "amenity": "bank"}, "name": "Πειραιώς", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Τράπεζα Πειραιώς": {"tags": {"name": "Τράπεζα Πειραιώς", "amenity": "bank"}, "name": "Τράπεζα Πειραιώς", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Авангард": {"tags": {"name": "Авангард", "amenity": "bank"}, "name": "Авангард", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Альфа-Банк": {"tags": {"name": "Альфа-Банк", "amenity": "bank"}, "name": "Альфа-Банк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Банк Москвы": {"tags": {"name": "Банк Москвы", "amenity": "bank"}, "name": "Банк Москвы", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Банка ДСК": {"tags": {"name": "Банка ДСК", "amenity": "bank"}, "name": "Банка ДСК", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Белагропромбанк": {"tags": {"name": "Белагропромбанк", "amenity": "bank"}, "name": "Белагропромбанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Беларусбанк": {"tags": {"name": "Беларусбанк", "amenity": "bank"}, "name": "Беларусбанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Белинвестбанк": {"tags": {"name": "Белинвестбанк", "amenity": "bank"}, "name": "Белинвестбанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Бинбанк": {"tags": {"name": "Бинбанк", "amenity": "bank"}, "name": "Бинбанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/ВТБ": {"tags": {"name": "ВТБ", "amenity": "bank"}, "name": "ВТБ", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/ВТБ24": {"tags": {"name": "ВТБ24", "amenity": "bank"}, "name": "ВТБ24", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Возрождение": {"tags": {"name": "Возрождение", "amenity": "bank"}, "name": "Возрождение", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Газпромбанк": {"tags": {"name": "Газпромбанк", "amenity": "bank"}, "name": "Газпромбанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Генбанк": {"tags": {"name": "Генбанк", "amenity": "bank"}, "name": "Генбанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Казкоммерцбанк": {"tags": {"name": "Казкоммерцбанк", "amenity": "bank"}, "name": "Казкоммерцбанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/МДМ Банк": {"tags": {"name": "МДМ Банк", "amenity": "bank"}, "name": "МДМ Банк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Московский индустриальный банк": {"tags": {"name": "Московский индустриальный банк", "amenity": "bank"}, "name": "Московский индустриальный банк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Мособлбанк": {"tags": {"name": "Мособлбанк", "amenity": "bank"}, "name": "Мособлбанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Народный банк": {"tags": {"name": "Народный банк", "amenity": "bank"}, "name": "Народный банк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/ОТП Банк": {"tags": {"name": "ОТП Банк", "amenity": "bank"}, "name": "ОТП Банк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Открытие": {"tags": {"name": "Открытие", "amenity": "bank"}, "name": "Открытие", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Ощадбанк": {"tags": {"name": "Ощадбанк", "amenity": "bank"}, "name": "Ощадбанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/ПУМБ": {"tags": {"name": "ПУМБ", "amenity": "bank"}, "name": "ПУМБ", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Почта Банк": {"tags": {"name": "Почта Банк", "amenity": "bank"}, "name": "Почта Банк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/ПриватБанк": {"tags": {"name": "ПриватБанк", "amenity": "bank"}, "name": "ПриватБанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Приватбанк": {"tags": {"name": "Приватбанк", "amenity": "bank"}, "name": "Приватбанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Приднестровский Сбербанк": {"tags": {"name": "Приднестровский Сбербанк", "amenity": "bank"}, "name": "Приднестровский Сбербанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Приорбанк": {"tags": {"name": "Приорбанк", "amenity": "bank"}, "name": "Приорбанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Промсвязьбанк": {"tags": {"name": "Промсвязьбанк", "amenity": "bank"}, "name": "Промсвязьбанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/РНКБ": {"tags": {"name": "РНКБ", "amenity": "bank"}, "name": "РНКБ", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Райффайзен": {"tags": {"name": "Райффайзен", "amenity": "bank"}, "name": "Райффайзен", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Райффайзен Банк Аваль": {"tags": {"name": "Райффайзен Банк Аваль", "amenity": "bank"}, "name": "Райффайзен Банк Аваль", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Райффайзенбанк": {"tags": {"name": "Райффайзенбанк", "amenity": "bank"}, "name": "Райффайзенбанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Росбанк": {"tags": {"name": "Росбанк", "amenity": "bank"}, "name": "Росбанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Россельхозбанк": {"tags": {"name": "Россельхозбанк", "amenity": "bank"}, "name": "Россельхозбанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Русский стандарт": {"tags": {"name": "Русский стандарт", "amenity": "bank"}, "name": "Русский стандарт", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Сбербанк": {"tags": {"name": "Сбербанк", "amenity": "bank"}, "name": "Сбербанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Совкомбанк": {"tags": {"name": "Совкомбанк", "amenity": "bank"}, "name": "Совкомбанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/УкрСиббанк": {"tags": {"name": "УкрСиббанк", "amenity": "bank"}, "name": "УкрСиббанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Укрсоцбанк": {"tags": {"name": "Укрсоцбанк", "amenity": "bank"}, "name": "Укрсоцбанк", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Уралсиб": {"tags": {"name": "Уралсиб", "amenity": "bank"}, "name": "Уралсиб", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/Хоум Кредит": {"tags": {"name": "Хоум Кредит", "amenity": "bank"}, "name": "Хоум Кредит", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/בנק הפועלים": {"tags": {"name": "בנק הפועלים", "amenity": "bank"}, "name": "בנק הפועלים", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/בנק לאומי": {"tags": {"name": "בנק לאומי", "amenity": "bank"}, "name": "בנק לאומי", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/بانک": {"tags": {"name": "بانک", "amenity": "bank"}, "name": "بانک", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/بانک آینده": {"tags": {"name": "بانک آینده", "amenity": "bank"}, "name": "بانک آینده", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/بانک اقتصاد نوین": {"tags": {"name": "بانک اقتصاد نوین", "amenity": "bank"}, "name": "بانک اقتصاد نوین", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/بانک انصار": {"tags": {"name": "بانک انصار", "amenity": "bank"}, "name": "بانک انصار", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/بانک تجارت": {"tags": {"name": "بانک تجارت", "amenity": "bank"}, "name": "بانک تجارت", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/بانک رفاه": {"tags": {"name": "بانک رفاه", "amenity": "bank"}, "name": "بانک رفاه", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/بانک رفاه کارگران": {"tags": {"name": "بانک رفاه کارگران", "amenity": "bank"}, "name": "بانک رفاه کارگران", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/بانک سپه": {"tags": {"name": "بانک سپه", "amenity": "bank"}, "name": "بانک سپه", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/بانک شهر": {"tags": {"name": "بانک شهر", "amenity": "bank"}, "name": "بانک شهر", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/بانک صادرات": {"tags": {"name": "بانک صادرات", "amenity": "bank"}, "name": "بانک صادرات", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/بانک قوامین": {"tags": {"name": "بانک قوامین", "amenity": "bank"}, "name": "بانک قوامین", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/بانک مسکن": {"tags": {"name": "بانک مسکن", "amenity": "bank"}, "name": "بانک مسکن", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/بانک ملت": {"tags": {"name": "بانک ملت", "amenity": "bank"}, "name": "بانک ملت", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/بانک ملی": {"tags": {"name": "بانک ملی", "amenity": "bank"}, "name": "بانک ملی", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/بانک ملی ایران": {"tags": {"name": "بانک ملی ایران", "amenity": "bank"}, "name": "بانک ملی ایران", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/بانک مهر اقتصاد": {"tags": {"name": "بانک مهر اقتصاد", "amenity": "bank"}, "name": "بانک مهر اقتصاد", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/بانک پارسیان": {"tags": {"name": "بانک پارسیان", "amenity": "bank"}, "name": "بانک پارسیان", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/بانک پاسارگاد": {"tags": {"name": "بانک پاسارگاد", "amenity": "bank"}, "name": "بانک پاسارگاد", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/بانک کشاورزی": {"tags": {"name": "بانک کشاورزی", "amenity": "bank"}, "name": "بانک کشاورزی", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/صادرات": {"tags": {"name": "صادرات", "amenity": "bank"}, "name": "صادرات", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/ملی": {"tags": {"name": "ملی", "amenity": "bank"}, "name": "ملی", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/پست بانک": {"tags": {"name": "پست بانک", "amenity": "bank"}, "name": "پست بانک", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/ธนาคารกรุงเทพ": {"tags": {"name": "ธนาคารกรุงเทพ", "amenity": "bank"}, "name": "ธนาคารกรุงเทพ", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/ธนาคารกรุงไทย": {"tags": {"name": "ธนาคารกรุงไทย", "amenity": "bank"}, "name": "ธนาคารกรุงไทย", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/ธนาคารกสิกรไทย": {"tags": {"name": "ธนาคารกสิกรไทย", "amenity": "bank"}, "name": "ธนาคารกสิกรไทย", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/ธนาคารออมสิน": {"tags": {"name": "ธนาคารออมสิน", "amenity": "bank"}, "name": "ธนาคารออมสิน", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/ธนาคารไทยพาณิชย์": {"tags": {"name": "ธนาคารไทยพาณิชย์", "amenity": "bank"}, "name": "ธนาคารไทยพาณิชย์", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/みずほ銀行": {"tags": {"name": "みずほ銀行", "amenity": "bank"}, "name": "みずほ銀行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/りそな銀行": {"tags": {"name": "りそな銀行", "amenity": "bank"}, "name": "りそな銀行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/三井住友銀行": {"tags": {"name": "三井住友銀行", "amenity": "bank"}, "name": "三井住友銀行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/三菱東京UFJ銀行": {"tags": {"name": "三菱東京UFJ銀行", "amenity": "bank"}, "name": "三菱東京UFJ銀行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/中国农业银行": {"tags": {"name": "中国农业银行", "amenity": "bank"}, "name": "中国农业银行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/中国工商银行": {"tags": {"name": "中国工商银行", "amenity": "bank"}, "name": "中国工商银行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/中国建设银行": {"tags": {"name": "中国建设银行", "amenity": "bank"}, "name": "中国建设银行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/中国邮政储蓄银行": {"tags": {"name": "中国邮政储蓄银行", "amenity": "bank"}, "name": "中国邮政储蓄银行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/中国银行": {"tags": {"name": "中国银行", "amenity": "bank"}, "name": "中国银行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/交通银行": {"tags": {"name": "交通银行", "amenity": "bank"}, "name": "交通银行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/京都中央信用金庫": {"tags": {"name": "京都中央信用金庫", "amenity": "bank"}, "name": "京都中央信用金庫", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/京都銀行": {"tags": {"name": "京都銀行", "amenity": "bank"}, "name": "京都銀行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/农业银行": {"tags": {"name": "农业银行", "amenity": "bank"}, "name": "农业银行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/北海道銀行": {"tags": {"name": "北海道銀行", "amenity": "bank"}, "name": "北海道銀行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/合作金庫銀行": {"tags": {"name": "合作金庫銀行", "amenity": "bank"}, "name": "合作金庫銀行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/土地銀行": {"tags": {"name": "土地銀行", "amenity": "bank"}, "name": "土地銀行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/工商银行": {"tags": {"name": "工商银行", "amenity": "bank"}, "name": "工商银行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/建设银行": {"tags": {"name": "建设银行", "amenity": "bank"}, "name": "建设银行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/彰化銀行": {"tags": {"name": "彰化銀行", "amenity": "bank"}, "name": "彰化銀行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/招商银行": {"tags": {"name": "招商银行", "amenity": "bank"}, "name": "招商银行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/横浜銀行": {"tags": {"name": "横浜銀行", "amenity": "bank"}, "name": "横浜銀行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/第一銀行": {"tags": {"name": "第一銀行", "amenity": "bank"}, "name": "第一銀行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/華南銀行": {"tags": {"name": "華南銀行", "amenity": "bank"}, "name": "華南銀行", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/국민은행": {"tags": {"name": "국민은행", "name:en": "Gungmin Bank", "amenity": "bank"}, "name": "국민은행", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/기업은행": {"tags": {"name": "기업은행", "amenity": "bank"}, "name": "기업은행", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/농협": {"tags": {"name": "농협", "amenity": "bank"}, "name": "농협", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/새마을금고": {"tags": {"name": "새마을금고", "amenity": "bank"}, "name": "새마을금고", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/신한은행": {"tags": {"name": "신한은행", "name:en": "Sinhan Bank", "amenity": "bank"}, "name": "신한은행", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/우리은행": {"tags": {"name": "우리은행", "name:en": "Uri Bank", "amenity": "bank"}, "name": "우리은행", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bank/하나은행": {"tags": {"name": "하나은행", "amenity": "bank"}, "name": "하나은행", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "atm", "operator", "address", "building_area", "opening_hours", "drive_through"], "suggestion": true},
+ "amenity/bar/Bar Centrale": {"tags": {"name": "Bar Centrale", "amenity": "bar"}, "name": "Bar Centrale", "icon": "maki-bar", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/bar/Bar Sport": {"tags": {"name": "Bar Sport", "amenity": "bar"}, "name": "Bar Sport", "icon": "maki-bar", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/bar/Beach Bar": {"tags": {"name": "Beach Bar", "amenity": "bar"}, "name": "Beach Bar", "icon": "maki-bar", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/bar/Pool Bar": {"tags": {"name": "Pool Bar", "amenity": "bar"}, "name": "Pool Bar", "icon": "maki-bar", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/bicycle_rental/Bicing": {"tags": {"name": "Bicing", "amenity": "bicycle_rental"}, "name": "Bicing", "icon": "maki-bicycle", "geometry": ["point", "vertex", "area"], "fields": ["capacity", "network", "operator", "payment_multi"], "suggestion": true},
+ "amenity/bicycle_rental/Call a Bike": {"tags": {"name": "Call a Bike", "amenity": "bicycle_rental"}, "name": "Call a Bike", "icon": "maki-bicycle", "geometry": ["point", "vertex", "area"], "fields": ["capacity", "network", "operator", "payment_multi"], "suggestion": true},
+ "amenity/bicycle_rental/Grid": {"tags": {"name": "Grid", "amenity": "bicycle_rental"}, "name": "Grid", "icon": "maki-bicycle", "geometry": ["point", "vertex", "area"], "fields": ["capacity", "network", "operator", "payment_multi"], "suggestion": true},
+ "amenity/bicycle_rental/Mibici": {"tags": {"name": "Mibici", "amenity": "bicycle_rental"}, "name": "Mibici", "icon": "maki-bicycle", "geometry": ["point", "vertex", "area"], "fields": ["capacity", "network", "operator", "payment_multi"], "suggestion": true},
+ "amenity/bicycle_rental/metropolradruhr": {"tags": {"name": "metropolradruhr", "amenity": "bicycle_rental"}, "name": "metropolradruhr", "icon": "maki-bicycle", "geometry": ["point", "vertex", "area"], "fields": ["capacity", "network", "operator", "payment_multi"], "suggestion": true},
+ "amenity/bureau_de_change/Abitab": {"tags": {"name": "Abitab", "amenity": "bureau_de_change"}, "name": "Abitab", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "currency_multi", "operator", "address", "building_area", "opening_hours"], "suggestion": true},
+ "amenity/bureau_de_change/Change": {"tags": {"name": "Change", "amenity": "bureau_de_change"}, "name": "Change", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "currency_multi", "operator", "address", "building_area", "opening_hours"], "suggestion": true},
+ "amenity/bureau_de_change/Travelex": {"tags": {"name": "Travelex", "amenity": "bureau_de_change"}, "name": "Travelex", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "currency_multi", "operator", "address", "building_area", "opening_hours"], "suggestion": true},
+ "amenity/cafe/85度C": {"tags": {"name": "85度C", "amenity": "cafe"}, "name": "85度C", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Bar Kafe": {"tags": {"name": "Bar Kafe", "amenity": "cafe"}, "name": "Bar Kafe", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Barista": {"tags": {"name": "Barista", "amenity": "cafe"}, "name": "Barista", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Bonafide": {"tags": {"name": "Bonafide", "amenity": "cafe"}, "name": "Bonafide", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Cafe Coffee Day": {"tags": {"name": "Cafe Coffee Day", "amenity": "cafe"}, "name": "Cafe Coffee Day", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Cafe Nero": {"tags": {"name": "Cafe Nero", "amenity": "cafe"}, "name": "Cafe Nero", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Cafeteria": {"tags": {"name": "Cafeteria", "amenity": "cafe"}, "name": "Cafeteria", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Cafetería": {"tags": {"name": "Cafetería", "amenity": "cafe"}, "name": "Cafetería", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Caffè Nero": {"tags": {"name": "Caffè Nero", "amenity": "cafe"}, "name": "Caffè Nero", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Café Amazon": {"tags": {"name": "Café Amazon", "amenity": "cafe"}, "name": "Café Amazon", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Café Central": {"tags": {"name": "Café Central", "amenity": "cafe"}, "name": "Café Central", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Café de la Place": {"tags": {"name": "Café de la Place", "amenity": "cafe"}, "name": "Café de la Place", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Café des Sports": {"tags": {"name": "Café des Sports", "amenity": "cafe"}, "name": "Café des Sports", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Caribou Coffee": {"tags": {"name": "Caribou Coffee", "amenity": "cafe"}, "name": "Caribou Coffee", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Coffee Fellows": {"tags": {"name": "Coffee Fellows", "amenity": "cafe"}, "name": "Coffee Fellows", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Coffee House": {"tags": {"name": "Coffee House", "amenity": "cafe"}, "name": "Coffee House", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Coffee Island": {"tags": {"name": "Coffee Island", "amenity": "cafe"}, "name": "Coffee Island", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Coffee Time": {"tags": {"name": "Coffee Time", "amenity": "cafe"}, "name": "Coffee Time", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Costa": {"tags": {"name": "Costa", "amenity": "cafe"}, "name": "Costa", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Country Style": {"tags": {"name": "Country Style", "amenity": "cafe"}, "name": "Country Style", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Dunkin' Donuts": {"tags": {"name": "Dunkin' Donuts", "cuisine": "donut", "amenity": "cafe"}, "name": "Dunkin' Donuts", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Eiscafe Dolomiti": {"tags": {"name": "Eiscafe Dolomiti", "amenity": "cafe"}, "name": "Eiscafe Dolomiti", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Eiscafe Venezia": {"tags": {"name": "Eiscafe Venezia", "amenity": "cafe"}, "name": "Eiscafe Venezia", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Espresso House": {"tags": {"name": "Espresso House", "amenity": "cafe"}, "name": "Espresso House", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Havanna": {"tags": {"name": "Havanna", "amenity": "cafe"}, "name": "Havanna", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Internet Cafe": {"tags": {"name": "Internet Cafe", "amenity": "cafe"}, "name": "Internet Cafe", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Kafe": {"tags": {"name": "Kafe", "amenity": "cafe"}, "name": "Kafe", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Krispy Kreme": {"tags": {"name": "Krispy Kreme", "amenity": "cafe"}, "name": "Krispy Kreme", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Le Pain Quotidien": {"tags": {"name": "Le Pain Quotidien", "amenity": "cafe"}, "name": "Le Pain Quotidien", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/McCafé": {"tags": {"name": "McCafé", "amenity": "cafe", "cuisine": "coffee_shop"}, "name": "McCafé", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Peet's Coffee & Tea": {"tags": {"name": "Peet's Coffee & Tea", "amenity": "cafe"}, "name": "Peet's Coffee & Tea", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Pret A Manger": {"tags": {"name": "Pret A Manger", "amenity": "cafe"}, "name": "Pret A Manger", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Prime": {"tags": {"name": "Prime", "amenity": "cafe"}, "name": "Prime", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Second Cup": {"tags": {"name": "Second Cup", "amenity": "cafe"}, "name": "Second Cup", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Segafredo": {"tags": {"name": "Segafredo", "amenity": "cafe"}, "name": "Segafredo", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Starbucks": {"tags": {"name": "Starbucks", "cuisine": "coffee_shop", "amenity": "cafe"}, "name": "Starbucks", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/The Coffee Bean & Tea Leaf": {"tags": {"name": "The Coffee Bean & Tea Leaf", "amenity": "cafe"}, "name": "The Coffee Bean & Tea Leaf", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/The Coffee Club": {"tags": {"name": "The Coffee Club", "amenity": "cafe"}, "name": "The Coffee Club", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Tim Hortons": {"tags": {"name": "Tim Hortons", "amenity": "cafe"}, "name": "Tim Hortons", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Traveler's Coffee": {"tags": {"name": "Traveler's Coffee", "amenity": "cafe"}, "name": "Traveler's Coffee", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Wayne's Coffee": {"tags": {"name": "Wayne's Coffee", "amenity": "cafe"}, "name": "Wayne's Coffee", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Бистро": {"tags": {"name": "Бистро", "amenity": "cafe"}, "name": "Бистро", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Буфет": {"tags": {"name": "Буфет", "amenity": "cafe"}, "name": "Буфет", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Встреча": {"tags": {"name": "Встреча", "amenity": "cafe"}, "name": "Встреча", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Даблби": {"tags": {"name": "Даблби", "amenity": "cafe"}, "name": "Даблби", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Закусочная": {"tags": {"name": "Закусочная", "amenity": "cafe"}, "name": "Закусочная", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Кофе Хауз": {"tags": {"name": "Кофе Хауз", "amenity": "cafe"}, "name": "Кофе Хауз", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Кофейня": {"tags": {"name": "Кофейня", "amenity": "cafe"}, "name": "Кофейня", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Лакомка": {"tags": {"name": "Лакомка", "amenity": "cafe"}, "name": "Лакомка", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Летнее кафе": {"tags": {"name": "Летнее кафе", "amenity": "cafe"}, "name": "Летнее кафе", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Пельменная": {"tags": {"name": "Пельменная", "amenity": "cafe"}, "name": "Пельменная", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Пиццерия": {"tags": {"name": "Пиццерия", "amenity": "cafe"}, "name": "Пиццерия", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Рандеву": {"tags": {"name": "Рандеву", "amenity": "cafe"}, "name": "Рандеву", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Сказка": {"tags": {"name": "Сказка", "amenity": "cafe"}, "name": "Сказка", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Старбакс": {"tags": {"name": "Старбакс", "amenity": "cafe"}, "name": "Старбакс", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Столовая": {"tags": {"name": "Столовая", "amenity": "cafe"}, "name": "Столовая", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Уют": {"tags": {"name": "Уют", "amenity": "cafe"}, "name": "Уют", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Хуторок": {"tags": {"name": "Хуторок", "amenity": "cafe"}, "name": "Хуторок", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Шашлычная": {"tags": {"name": "Шашлычная", "amenity": "cafe"}, "name": "Шашлычная", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Шоколад": {"tags": {"name": "Шоколад", "amenity": "cafe"}, "name": "Шоколад", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/Шоколадница": {"tags": {"name": "Шоколадница", "amenity": "cafe"}, "name": "Шоколадница", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/ארומה": {"tags": {"name": "ארומה", "amenity": "cafe"}, "name": "ארומה", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/مقهى": {"tags": {"name": "مقهى", "amenity": "cafe"}, "name": "مقهى", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/คาเฟ่ อเมซอน": {"tags": {"name": "คาเฟ่ อเมซอน", "amenity": "cafe"}, "name": "คาเฟ่ อเมซอน", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/エクセルシオール カフェ": {"tags": {"name": "エクセルシオール カフェ", "amenity": "cafe"}, "name": "エクセルシオール カフェ", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/カフェ・ド・クリエ": {"tags": {"name": "カフェ・ド・クリエ", "name:en": "Cafe de CRIE", "amenity": "cafe"}, "name": "カフェ・ド・クリエ", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/カフェ・ベローチェ": {"tags": {"name": "カフェ・ベローチェ", "amenity": "cafe"}, "name": "カフェ・ベローチェ", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/コメダ珈琲店": {"tags": {"name": "コメダ珈琲店", "amenity": "cafe"}, "name": "コメダ珈琲店", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/サンマルクカフェ": {"tags": {"name": "サンマルクカフェ", "amenity": "cafe"}, "name": "サンマルクカフェ", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/スターバックス": {"tags": {"name": "スターバックス", "name:en": "Starbucks", "amenity": "cafe"}, "name": "スターバックス", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/タリーズコーヒー": {"tags": {"name": "タリーズコーヒー", "amenity": "cafe"}, "name": "タリーズコーヒー", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/ドトールコーヒーショップ": {"tags": {"name": "ドトールコーヒーショップ", "name:en": "Doutor", "amenity": "cafe"}, "name": "ドトールコーヒーショップ", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/星巴克": {"tags": {"name": "星巴克", "amenity": "cafe"}, "name": "星巴克", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/cafe/스타벅스": {"tags": {"name": "스타벅스", "amenity": "cafe"}, "name": "스타벅스", "icon": "maki-cafe", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/car_rental/Alamo": {"tags": {"name": "Alamo", "amenity": "car_rental"}, "name": "Alamo", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "payment_multi"], "suggestion": true},
+ "amenity/car_rental/Avis": {"tags": {"name": "Avis", "amenity": "car_rental"}, "name": "Avis", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "payment_multi"], "suggestion": true},
+ "amenity/car_rental/Budget": {"tags": {"name": "Budget", "amenity": "car_rental"}, "name": "Budget", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "payment_multi"], "suggestion": true},
+ "amenity/car_rental/Enterprise": {"tags": {"name": "Enterprise", "amenity": "car_rental"}, "name": "Enterprise", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "payment_multi"], "suggestion": true},
+ "amenity/car_rental/Enterprise Rent-a-Car": {"tags": {"name": "Enterprise Rent-a-Car", "amenity": "car_rental"}, "name": "Enterprise Rent-a-Car", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "payment_multi"], "suggestion": true},
+ "amenity/car_rental/Europcar": {"tags": {"name": "Europcar", "amenity": "car_rental"}, "name": "Europcar", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "payment_multi"], "suggestion": true},
+ "amenity/car_rental/Hertz": {"tags": {"name": "Hertz", "amenity": "car_rental"}, "name": "Hertz", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "payment_multi"], "suggestion": true},
+ "amenity/car_rental/Localiza": {"tags": {"name": "Localiza", "amenity": "car_rental"}, "name": "Localiza", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "payment_multi"], "suggestion": true},
+ "amenity/car_rental/Sixt": {"tags": {"name": "Sixt", "amenity": "car_rental"}, "name": "Sixt", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "payment_multi"], "suggestion": true},
+ "amenity/car_rental/Thrifty": {"tags": {"name": "Thrifty", "amenity": "car_rental"}, "name": "Thrifty", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "payment_multi"], "suggestion": true},
+ "amenity/car_rental/U-Haul": {"tags": {"name": "U-Haul", "amenity": "car_rental"}, "name": "U-Haul", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "payment_multi"], "suggestion": true},
+ "amenity/car_rental/オリックスレンタカー": {"tags": {"name": "オリックスレンタカー", "amenity": "car_rental"}, "name": "オリックスレンタカー", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "payment_multi"], "suggestion": true},
+ "amenity/car_rental/トヨタレンタカー": {"tags": {"name": "トヨタレンタカー", "amenity": "car_rental"}, "name": "トヨタレンタカー", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "payment_multi"], "suggestion": true},
+ "amenity/car_rental/トヨタレンタリース": {"tags": {"name": "トヨタレンタリース", "amenity": "car_rental"}, "name": "トヨタレンタリース", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "payment_multi"], "suggestion": true},
+ "amenity/car_rental/ニッポンレンタカー": {"tags": {"name": "ニッポンレンタカー", "amenity": "car_rental"}, "name": "ニッポンレンタカー", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "payment_multi"], "suggestion": true},
+ "amenity/car_wash/Autolavaggio": {"tags": {"name": "Autolavaggio", "amenity": "car_wash"}, "name": "Autolavaggio", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/car_wash/H-E-B Car Wash": {"tags": {"name": "H-E-B Car Wash", "amenity": "car_wash"}, "name": "H-E-B Car Wash", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/car_wash/Lavage Auto": {"tags": {"name": "Lavage Auto", "amenity": "car_wash"}, "name": "Lavage Auto", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/car_wash/Lavazh": {"tags": {"name": "Lavazh", "amenity": "car_wash"}, "name": "Lavazh", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/car_wash/Myjnia": {"tags": {"name": "Myjnia", "amenity": "car_wash"}, "name": "Myjnia", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/car_wash/Myjnia bezdotykowa": {"tags": {"name": "Myjnia bezdotykowa", "amenity": "car_wash"}, "name": "Myjnia bezdotykowa", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/car_wash/Myjnia samochodowa": {"tags": {"name": "Myjnia samochodowa", "amenity": "car_wash"}, "name": "Myjnia samochodowa", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/car_wash/Spălătorie Auto": {"tags": {"name": "Spălătorie Auto", "amenity": "car_wash"}, "name": "Spălătorie Auto", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/car_wash/Spălătorie auto": {"tags": {"name": "Spălătorie auto", "amenity": "car_wash"}, "name": "Spălătorie auto", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/car_wash/Автомийка": {"tags": {"name": "Автомийка", "amenity": "car_wash"}, "name": "Автомийка", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/cinema/Cinema City": {"tags": {"name": "Cinema City", "amenity": "cinema"}, "name": "Cinema City", "icon": "maki-cinema", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/cinema/Cinemark": {"tags": {"name": "Cinemark", "amenity": "cinema"}, "name": "Cinemark", "icon": "maki-cinema", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/cinema/Cinemex": {"tags": {"name": "Cinemex", "amenity": "cinema"}, "name": "Cinemex", "icon": "maki-cinema", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/cinema/Cinepolis": {"tags": {"name": "Cinepolis", "amenity": "cinema"}, "name": "Cinepolis", "icon": "maki-cinema", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/cinema/Cineworld": {"tags": {"name": "Cineworld", "amenity": "cinema"}, "name": "Cineworld", "icon": "maki-cinema", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/cinema/Odeon": {"tags": {"name": "Odeon", "amenity": "cinema"}, "name": "Odeon", "icon": "maki-cinema", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/clinic/ФАП": {"tags": {"name": "ФАП", "healthcare": "clinic", "amenity": "clinic"}, "name": "ФАП", "icon": "maki-doctor", "geometry": ["point", "area"], "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "suggestion": true},
+ "amenity/dentist/Aspen Dental": {"tags": {"name": "Aspen Dental", "healthcare": "dentist", "amenity": "dentist"}, "name": "Aspen Dental", "icon": "maki-dentist", "geometry": ["point", "area"], "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "suggestion": true},
+ "amenity/dentist/Family Dentistry": {"tags": {"name": "Family Dentistry", "healthcare": "dentist", "amenity": "dentist"}, "name": "Family Dentistry", "icon": "maki-dentist", "geometry": ["point", "area"], "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "suggestion": true},
+ "amenity/dentist/Vitaldent": {"tags": {"name": "Vitaldent", "healthcare": "dentist", "amenity": "dentist"}, "name": "Vitaldent", "icon": "maki-dentist", "geometry": ["point", "area"], "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "suggestion": true},
+ "amenity/dentist/Стоматолог": {"tags": {"name": "Стоматолог", "healthcare": "dentist", "amenity": "dentist"}, "name": "Стоматолог", "icon": "maki-dentist", "geometry": ["point", "area"], "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "suggestion": true},
+ "amenity/dentist/Стоматологія": {"tags": {"name": "Стоматологія", "healthcare": "dentist", "amenity": "dentist"}, "name": "Стоматологія", "icon": "maki-dentist", "geometry": ["point", "area"], "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "suggestion": true},
+ "amenity/doctors/Háziorvosi rendelő": {"tags": {"name": "Háziorvosi rendelő", "healthcare": "doctor", "amenity": "doctors"}, "name": "Háziorvosi rendelő", "icon": "maki-doctor", "geometry": ["point", "area"], "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "suggestion": true},
+ "amenity/doctors/Инвитро": {"tags": {"name": "Инвитро", "healthcare": "doctor", "amenity": "doctors"}, "name": "Инвитро", "icon": "maki-doctor", "geometry": ["point", "area"], "fields": ["name", "operator", "healthcare/speciality", "address", "building_area", "opening_hours"], "suggestion": true},
+ "amenity/driving_school/Автодром": {"tags": {"name": "Автодром", "amenity": "driving_school"}, "name": "Автодром", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fast_food/A&W": {"tags": {"name": "A&W", "amenity": "fast_food"}, "name": "A&W", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Ali Baba": {"tags": {"name": "Ali Baba", "amenity": "fast_food"}, "name": "Ali Baba", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Angel's Burger": {"tags": {"name": "Angel's Burger", "amenity": "fast_food"}, "name": "Angel's Burger", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Antalya": {"tags": {"name": "Antalya", "amenity": "fast_food"}, "name": "Antalya", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Arby's": {"tags": {"name": "Arby's", "amenity": "fast_food"}, "name": "Arby's", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Asia Bistro": {"tags": {"name": "Asia Bistro", "amenity": "fast_food"}, "name": "Asia Bistro", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Asia Wok": {"tags": {"name": "Asia Wok", "amenity": "fast_food"}, "name": "Asia Wok", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Baskin-Robbins": {"tags": {"name": "Baskin-Robbins", "amenity": "fast_food"}, "name": "Baskin-Robbins", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Bistro": {"tags": {"name": "Bistro", "amenity": "fast_food"}, "name": "Bistro", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Bob's": {"tags": {"name": "Bob's", "amenity": "fast_food"}, "name": "Bob's", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Bojangles": {"tags": {"name": "Bojangles", "amenity": "fast_food"}, "name": "Bojangles", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Booster Juice": {"tags": {"name": "Booster Juice", "amenity": "fast_food"}, "name": "Booster Juice", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Boston Market": {"tags": {"name": "Boston Market", "amenity": "fast_food"}, "name": "Boston Market", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Braum's": {"tags": {"name": "Braum's", "amenity": "fast_food"}, "name": "Braum's", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Burger King": {"tags": {"name": "Burger King", "cuisine": "burger", "amenity": "fast_food"}, "name": "Burger King", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Burger Machine": {"tags": {"name": "Burger Machine", "amenity": "fast_food"}, "name": "Burger Machine", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Büfé": {"tags": {"name": "Büfé", "amenity": "fast_food"}, "name": "Büfé", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Captain D's": {"tags": {"name": "Captain D's", "amenity": "fast_food"}, "name": "Captain D's", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Carl's Jr.": {"tags": {"name": "Carl's Jr.", "cuisine": "burger", "amenity": "fast_food"}, "name": "Carl's Jr.", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Chick-fil-A": {"tags": {"name": "Chick-fil-A", "cuisine": "chicken", "amenity": "fast_food"}, "name": "Chick-fil-A", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Chicken Express": {"tags": {"name": "Chicken Express", "amenity": "fast_food"}, "name": "Chicken Express", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Chipotle": {"tags": {"name": "Chipotle", "cuisine": "mexican", "amenity": "fast_food"}, "name": "Chipotle", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Chowking": {"tags": {"name": "Chowking", "amenity": "fast_food"}, "name": "Chowking", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Church's Chicken": {"tags": {"name": "Church's Chicken", "amenity": "fast_food"}, "name": "Church's Chicken", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/CoCo壱番屋": {"tags": {"name": "CoCo壱番屋", "amenity": "fast_food"}, "name": "CoCo壱番屋", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Cold Stone Creamery": {"tags": {"name": "Cold Stone Creamery", "amenity": "fast_food"}, "name": "Cold Stone Creamery", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Cook Out": {"tags": {"name": "Cook Out", "amenity": "fast_food"}, "name": "Cook Out", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Culver's": {"tags": {"name": "Culver's", "amenity": "fast_food"}, "name": "Culver's", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/DQ": {"tags": {"name": "DQ", "amenity": "fast_food"}, "name": "DQ", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Dairy Queen": {"tags": {"name": "Dairy Queen", "amenity": "fast_food"}, "name": "Dairy Queen", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Del Taco": {"tags": {"name": "Del Taco", "amenity": "fast_food"}, "name": "Del Taco", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Domino's Pizza": {"tags": {"name": "Domino's Pizza", "cuisine": "pizza", "amenity": "fast_food"}, "name": "Domino's Pizza", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/El Pollo Loco": {"tags": {"name": "El Pollo Loco", "amenity": "fast_food"}, "name": "El Pollo Loco", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Everest": {"tags": {"name": "Everest", "amenity": "fast_food"}, "name": "Everest", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Extreme Pita": {"tags": {"name": "Extreme Pita", "amenity": "fast_food"}, "name": "Extreme Pita", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Fazoli's": {"tags": {"name": "Fazoli's", "amenity": "fast_food"}, "name": "Fazoli's", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Firehouse Subs": {"tags": {"name": "Firehouse Subs", "amenity": "fast_food"}, "name": "Firehouse Subs", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Fish & Chips": {"tags": {"name": "Fish & Chips", "amenity": "fast_food"}, "name": "Fish & Chips", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Fish and Chips": {"tags": {"name": "Fish and Chips", "amenity": "fast_food"}, "name": "Fish and Chips", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Five Guys": {"tags": {"name": "Five Guys", "amenity": "fast_food"}, "name": "Five Guys", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Greenwich": {"tags": {"name": "Greenwich", "amenity": "fast_food"}, "name": "Greenwich", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Habib's": {"tags": {"name": "Habib's", "amenity": "fast_food"}, "name": "Habib's", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Hallo Pizza": {"tags": {"name": "Hallo Pizza", "amenity": "fast_food"}, "name": "Hallo Pizza", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Hardee's": {"tags": {"name": "Hardee's", "cuisine": "burger", "amenity": "fast_food"}, "name": "Hardee's", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Harvey's": {"tags": {"name": "Harvey's", "amenity": "fast_food"}, "name": "Harvey's", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Hesburger": {"tags": {"name": "Hesburger", "amenity": "fast_food"}, "name": "Hesburger", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Hungry Jacks": {"tags": {"name": "Hungry Jacks", "cuisine": "burger", "amenity": "fast_food"}, "name": "Hungry Jacks", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/In-N-Out Burger": {"tags": {"name": "In-N-Out Burger", "amenity": "fast_food"}, "name": "In-N-Out Burger", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Istanbul": {"tags": {"name": "Istanbul", "amenity": "fast_food"}, "name": "Istanbul", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Istanbul Kebab": {"tags": {"name": "Istanbul Kebab", "amenity": "fast_food"}, "name": "Istanbul Kebab", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Jack in the Box": {"tags": {"name": "Jack in the Box", "cuisine": "burger", "amenity": "fast_food"}, "name": "Jack in the Box", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Jamba Juice": {"tags": {"name": "Jamba Juice", "amenity": "fast_food"}, "name": "Jamba Juice", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Jersey Mike's Subs": {"tags": {"name": "Jersey Mike's Subs", "amenity": "fast_food"}, "name": "Jersey Mike's Subs", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Jimmy John's": {"tags": {"name": "Jimmy John's", "cuisine": "sandwich", "amenity": "fast_food"}, "name": "Jimmy John's", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Jollibee": {"tags": {"name": "Jollibee", "amenity": "fast_food"}, "name": "Jollibee", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/KFC": {"tags": {"name": "KFC", "cuisine": "chicken", "amenity": "fast_food"}, "name": "KFC", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/KFC/Taco Bell": {"tags": {"name": "KFC/Taco Bell", "amenity": "fast_food"}, "name": "KFC/Taco Bell", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Kebab House": {"tags": {"name": "Kebab House", "amenity": "fast_food"}, "name": "Kebab House", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Kebabai": {"tags": {"name": "Kebabai", "amenity": "fast_food"}, "name": "Kebabai", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Kochlöffel": {"tags": {"name": "Kochlöffel", "amenity": "fast_food"}, "name": "Kochlöffel", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Kotipizza": {"tags": {"name": "Kotipizza", "amenity": "fast_food"}, "name": "Kotipizza", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Krystal": {"tags": {"name": "Krystal", "amenity": "fast_food"}, "name": "Krystal", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Little Caesars": {"tags": {"name": "Little Caesars", "amenity": "fast_food"}, "name": "Little Caesars", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Little Caesars Pizza": {"tags": {"name": "Little Caesars Pizza", "amenity": "fast_food"}, "name": "Little Caesars Pizza", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Long John Silver's": {"tags": {"name": "Long John Silver's", "amenity": "fast_food"}, "name": "Long John Silver's", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Lotteria": {"tags": {"name": "Lotteria", "amenity": "fast_food"}, "name": "Lotteria", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Max": {"tags": {"name": "Max", "amenity": "fast_food"}, "name": "Max", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/McDonald's": {"tags": {"name": "McDonald's", "cuisine": "burger", "amenity": "fast_food"}, "name": "McDonald's", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Minute Burger": {"tags": {"name": "Minute Burger", "amenity": "fast_food"}, "name": "Minute Burger", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Mr. Sub": {"tags": {"name": "Mr. Sub", "amenity": "fast_food"}, "name": "Mr. Sub", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/New York Pizza": {"tags": {"name": "New York Pizza", "amenity": "fast_food"}, "name": "New York Pizza", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Nordsee": {"tags": {"name": "Nordsee", "amenity": "fast_food"}, "name": "Nordsee", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Panda Express": {"tags": {"name": "Panda Express", "cuisine": "chinese", "amenity": "fast_food"}, "name": "Panda Express", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Papa John's": {"tags": {"name": "Papa John's", "cuisine": "pizza", "amenity": "fast_food"}, "name": "Papa John's", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Papa Murphy's": {"tags": {"name": "Papa Murphy's", "amenity": "fast_food"}, "name": "Papa Murphy's", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Pinulito": {"tags": {"name": "Pinulito", "amenity": "fast_food"}, "name": "Pinulito", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Pita Pit": {"tags": {"name": "Pita Pit", "amenity": "fast_food"}, "name": "Pita Pit", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Pizza Hut Delivery": {"tags": {"name": "Pizza Hut Delivery", "amenity": "fast_food"}, "name": "Pizza Hut Delivery", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Pizza King": {"tags": {"name": "Pizza King", "amenity": "fast_food"}, "name": "Pizza King", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Pizza Nova": {"tags": {"name": "Pizza Nova", "amenity": "fast_food"}, "name": "Pizza Nova", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Pizza Pizza": {"tags": {"name": "Pizza Pizza", "amenity": "fast_food"}, "name": "Pizza Pizza", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Pollo Campero": {"tags": {"name": "Pollo Campero", "amenity": "fast_food"}, "name": "Pollo Campero", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Pollo Granjero": {"tags": {"name": "Pollo Granjero", "amenity": "fast_food"}, "name": "Pollo Granjero", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Popeye's": {"tags": {"name": "Popeye's", "cuisine": "chicken", "amenity": "fast_food"}, "name": "Popeye's", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Popeyes Louisiana Kitchen": {"tags": {"name": "Popeyes Louisiana Kitchen", "amenity": "fast_food"}, "name": "Popeyes Louisiana Kitchen", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Qdoba": {"tags": {"name": "Qdoba", "amenity": "fast_food"}, "name": "Qdoba", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Quick": {"tags": {"name": "Quick", "amenity": "fast_food"}, "name": "Quick", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Quiznos": {"tags": {"name": "Quiznos", "amenity": "fast_food"}, "name": "Quiznos", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Rally's": {"tags": {"name": "Rally's", "amenity": "fast_food"}, "name": "Rally's", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Red Rooster": {"tags": {"name": "Red Rooster", "amenity": "fast_food"}, "name": "Red Rooster", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Sbarro": {"tags": {"name": "Sbarro", "amenity": "fast_food"}, "name": "Sbarro", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Schlotzsky's Deli": {"tags": {"name": "Schlotzsky's Deli", "amenity": "fast_food"}, "name": "Schlotzsky's Deli", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Sibylla": {"tags": {"name": "Sibylla", "amenity": "fast_food"}, "name": "Sibylla", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Sonic": {"tags": {"name": "Sonic", "cuisine": "burger", "amenity": "fast_food"}, "name": "Sonic", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Steers": {"tags": {"name": "Steers", "amenity": "fast_food"}, "name": "Steers", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Subway": {"tags": {"name": "Subway", "amenity": "fast_food"}, "name": "Subway", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Taco Bell": {"tags": {"name": "Taco Bell", "cuisine": "mexican", "amenity": "fast_food"}, "name": "Taco Bell", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Taco Bueno": {"tags": {"name": "Taco Bueno", "amenity": "fast_food"}, "name": "Taco Bueno", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Taco Cabana": {"tags": {"name": "Taco Cabana", "amenity": "fast_food"}, "name": "Taco Cabana", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Taco Del Mar": {"tags": {"name": "Taco Del Mar", "amenity": "fast_food"}, "name": "Taco Del Mar", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Taco John's": {"tags": {"name": "Taco John's", "amenity": "fast_food"}, "name": "Taco John's", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Taco Time": {"tags": {"name": "Taco Time", "amenity": "fast_food"}, "name": "Taco Time", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Telepizza": {"tags": {"name": "Telepizza", "amenity": "fast_food"}, "name": "Telepizza", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Thai Express": {"tags": {"name": "Thai Express", "amenity": "fast_food"}, "name": "Thai Express", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/The Pizza Company": {"tags": {"name": "The Pizza Company", "amenity": "fast_food"}, "name": "The Pizza Company", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Wendy's": {"tags": {"name": "Wendy's", "cuisine": "burger", "amenity": "fast_food"}, "name": "Wendy's", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Whataburger": {"tags": {"name": "Whataburger", "amenity": "fast_food"}, "name": "Whataburger", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/White Castle": {"tags": {"name": "White Castle", "amenity": "fast_food"}, "name": "White Castle", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Wienerschnitzel": {"tags": {"name": "Wienerschnitzel", "amenity": "fast_food"}, "name": "Wienerschnitzel", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Wimpy": {"tags": {"name": "Wimpy", "amenity": "fast_food"}, "name": "Wimpy", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Zaxby's": {"tags": {"name": "Zaxby's", "amenity": "fast_food"}, "name": "Zaxby's", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Γρηγόρης": {"tags": {"name": "Γρηγόρης", "amenity": "fast_food"}, "name": "Γρηγόρης", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Бургер Кинг": {"tags": {"name": "Бургер Кинг", "amenity": "fast_food"}, "name": "Бургер Кинг", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Крошка Картошка": {"tags": {"name": "Крошка Картошка", "amenity": "fast_food"}, "name": "Крошка Картошка", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Макдоналдс": {"tags": {"name": "Макдоналдс", "name:en": "McDonald's", "amenity": "fast_food"}, "name": "Макдоналдс", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Робин Сдобин": {"tags": {"name": "Робин Сдобин", "amenity": "fast_food"}, "name": "Робин Сдобин", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Русский Аппетит": {"tags": {"name": "Русский Аппетит", "amenity": "fast_food"}, "name": "Русский Аппетит", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Сабвэй": {"tags": {"name": "Сабвэй", "amenity": "fast_food"}, "name": "Сабвэй", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Стардог!s": {"tags": {"name": "Стардог!s", "amenity": "fast_food"}, "name": "Стардог!s", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Теремок": {"tags": {"name": "Теремок", "amenity": "fast_food"}, "name": "Теремок", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Шаверма": {"tags": {"name": "Шаверма", "amenity": "fast_food"}, "name": "Шаверма", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/Шаурма": {"tags": {"name": "Шаурма", "amenity": "fast_food"}, "name": "Шаурма", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/かっぱ寿司": {"tags": {"name": "かっぱ寿司", "amenity": "fast_food"}, "name": "かっぱ寿司", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/かつや": {"tags": {"name": "かつや", "amenity": "fast_food"}, "name": "かつや", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/くら寿司": {"tags": {"name": "くら寿司", "amenity": "fast_food"}, "name": "くら寿司", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/すき家": {"tags": {"name": "すき家", "name:en": "Sukiya", "amenity": "fast_food"}, "name": "すき家", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/なか卯": {"tags": {"name": "なか卯", "amenity": "fast_food"}, "name": "なか卯", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/ほっかほっか亭": {"tags": {"name": "ほっかほっか亭", "amenity": "fast_food"}, "name": "ほっかほっか亭", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/ほっともっと": {"tags": {"name": "ほっともっと", "amenity": "fast_food"}, "name": "ほっともっと", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/オリジン弁当": {"tags": {"name": "オリジン弁当", "amenity": "fast_food"}, "name": "オリジン弁当", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/ケンタッキーフライドチキン": {"tags": {"name": "ケンタッキーフライドチキン", "cuisine": "chicken", "name:en": "KFC", "amenity": "fast_food"}, "name": "ケンタッキーフライドチキン", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/サブウェイ": {"tags": {"name": "サブウェイ", "amenity": "fast_food"}, "name": "サブウェイ", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/スシロー": {"tags": {"name": "スシロー", "amenity": "fast_food"}, "name": "スシロー", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/マクドナルド": {"tags": {"name": "マクドナルド", "cuisine": "burger", "name:en": "McDonald's", "amenity": "fast_food"}, "name": "マクドナルド", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/ミスタードーナツ": {"tags": {"name": "ミスタードーナツ", "amenity": "fast_food"}, "name": "ミスタードーナツ", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/モスバーガー": {"tags": {"name": "モスバーガー", "name:en": "Mos Burger", "amenity": "fast_food"}, "name": "モスバーガー", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/ロッテリア": {"tags": {"name": "ロッテリア", "amenity": "fast_food"}, "name": "ロッテリア", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/吉野家": {"tags": {"name": "吉野家", "amenity": "fast_food"}, "name": "吉野家", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/幸楽苑": {"tags": {"name": "幸楽苑", "amenity": "fast_food"}, "name": "幸楽苑", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/摩斯漢堡": {"tags": {"name": "摩斯漢堡", "amenity": "fast_food"}, "name": "摩斯漢堡", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/松屋": {"tags": {"name": "松屋", "name:en": "Matsuya", "amenity": "fast_food"}, "name": "松屋", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/肯德基": {"tags": {"name": "肯德基", "amenity": "fast_food"}, "name": "肯德基", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/麥當勞": {"tags": {"name": "麥當勞", "amenity": "fast_food"}, "name": "麥當勞", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/麦当劳": {"tags": {"name": "麦当劳", "amenity": "fast_food"}, "name": "麦当劳", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fast_food/롯데리아": {"tags": {"name": "롯데리아", "amenity": "fast_food"}, "name": "롯데리아", "icon": "maki-fast-food", "geometry": ["point", "area"], "fields": ["name", "cuisine", "operator", "address", "building_area", "opening_hours", "takeaway", "delivery", "drive_through", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/fuel/76": {"tags": {"name": "76", "amenity": "fuel"}, "name": "76", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/1-2-3": {"tags": {"name": "1-2-3", "amenity": "fuel"}, "name": "1-2-3", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/ADNOC": {"tags": {"name": "ADNOC", "amenity": "fuel"}, "name": "ADNOC", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/ANP": {"tags": {"name": "ANP", "amenity": "fuel"}, "name": "ANP", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/ARAL": {"tags": {"name": "ARAL", "amenity": "fuel"}, "name": "ARAL", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Aegean": {"tags": {"name": "Aegean", "amenity": "fuel"}, "name": "Aegean", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Afriquia": {"tags": {"name": "Afriquia", "amenity": "fuel"}, "name": "Afriquia", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Agip": {"tags": {"name": "Agip", "amenity": "fuel"}, "name": "Agip", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Agrola": {"tags": {"name": "Agrola", "amenity": "fuel"}, "name": "Agrola", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Alon": {"tags": {"name": "Alon", "amenity": "fuel"}, "name": "Alon", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Alpet": {"tags": {"name": "Alpet", "amenity": "fuel"}, "name": "Alpet", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Api": {"tags": {"name": "Api", "amenity": "fuel"}, "name": "Api", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Aral": {"tags": {"name": "Aral", "amenity": "fuel"}, "name": "Aral", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Arco": {"tags": {"name": "Arco", "amenity": "fuel"}, "name": "Arco", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Avanti": {"tags": {"name": "Avanti", "amenity": "fuel"}, "name": "Avanti", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Avia": {"tags": {"name": "Avia", "amenity": "fuel"}, "name": "Avia", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/BEBECO": {"tags": {"name": "BEBECO", "amenity": "fuel"}, "name": "BEBECO", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/BFT": {"tags": {"name": "BFT", "amenity": "fuel"}, "name": "BFT", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/BHPetrol": {"tags": {"name": "BHPetrol", "amenity": "fuel"}, "name": "BHPetrol", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/BP": {"tags": {"name": "BP", "amenity": "fuel"}, "name": "BP", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/BR": {"tags": {"name": "BR", "amenity": "fuel"}, "name": "BR", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Bangchak": {"tags": {"name": "Bangchak", "amenity": "fuel"}, "name": "Bangchak", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Benzina": {"tags": {"name": "Benzina", "amenity": "fuel"}, "name": "Benzina", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Bharat Petroleum": {"tags": {"name": "Bharat Petroleum", "amenity": "fuel"}, "name": "Bharat Petroleum", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Bliska": {"tags": {"name": "Bliska", "amenity": "fuel"}, "name": "Bliska", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/CAMPSA": {"tags": {"name": "CAMPSA", "amenity": "fuel"}, "name": "CAMPSA", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/CARREFOUR": {"tags": {"name": "CARREFOUR", "amenity": "fuel"}, "name": "CARREFOUR", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/CEPSA": {"tags": {"name": "CEPSA", "amenity": "fuel"}, "name": "CEPSA", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/CNG": {"tags": {"name": "CNG", "amenity": "fuel"}, "name": "CNG", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Caltex": {"tags": {"name": "Caltex", "amenity": "fuel"}, "name": "Caltex", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Campsa": {"tags": {"name": "Campsa", "amenity": "fuel"}, "name": "Campsa", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Casey's General Store": {"tags": {"name": "Casey's General Store", "amenity": "fuel"}, "name": "Casey's General Store", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Cenex": {"tags": {"name": "Cenex", "amenity": "fuel"}, "name": "Cenex", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Cepsa": {"tags": {"name": "Cepsa", "amenity": "fuel"}, "name": "Cepsa", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Ceypetco": {"tags": {"name": "Ceypetco", "amenity": "fuel"}, "name": "Ceypetco", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Chevron": {"tags": {"name": "Chevron", "amenity": "fuel"}, "name": "Chevron", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Citgo": {"tags": {"name": "Citgo", "amenity": "fuel"}, "name": "Citgo", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Clark": {"tags": {"name": "Clark", "amenity": "fuel"}, "name": "Clark", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Coles Express": {"tags": {"name": "Coles Express", "amenity": "fuel"}, "name": "Coles Express", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Conoco": {"tags": {"name": "Conoco", "amenity": "fuel"}, "name": "Conoco", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Copec": {"tags": {"name": "Copec", "amenity": "fuel"}, "name": "Copec", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Copetrol": {"tags": {"name": "Copetrol", "amenity": "fuel"}, "name": "Copetrol", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Cosmo": {"tags": {"name": "Cosmo", "amenity": "fuel"}, "name": "Cosmo", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Crodux": {"tags": {"name": "Crodux", "amenity": "fuel"}, "name": "Crodux", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Delta": {"tags": {"name": "Delta", "amenity": "fuel"}, "name": "Delta", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Diamond Shamrock": {"tags": {"name": "Diamond Shamrock", "amenity": "fuel"}, "name": "Diamond Shamrock", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Drummed Fuel": {"tags": {"name": "Drummed Fuel", "amenity": "fuel"}, "name": "Drummed Fuel", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/EKO": {"tags": {"name": "EKO", "amenity": "fuel"}, "name": "EKO", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/ENEOS": {"tags": {"name": "ENEOS", "amenity": "fuel"}, "name": "ENEOS", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/ENI": {"tags": {"name": "ENI", "amenity": "fuel"}, "name": "ENI", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/ERG": {"tags": {"name": "ERG", "amenity": "fuel"}, "name": "ERG", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Elan": {"tags": {"name": "Elan", "amenity": "fuel"}, "name": "Elan", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Eneos": {"tags": {"name": "Eneos", "amenity": "fuel"}, "name": "Eneos", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Engen": {"tags": {"name": "Engen", "amenity": "fuel"}, "name": "Engen", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Eni": {"tags": {"name": "Eni", "amenity": "fuel"}, "name": "Eni", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Erg": {"tags": {"name": "Erg", "amenity": "fuel"}, "name": "Erg", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Esso": {"tags": {"name": "Esso", "amenity": "fuel"}, "name": "Esso", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Esso Express": {"tags": {"name": "Esso Express", "amenity": "fuel"}, "name": "Esso Express", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/EuroOil": {"tags": {"name": "EuroOil", "amenity": "fuel"}, "name": "EuroOil", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Exxon": {"tags": {"name": "Exxon", "amenity": "fuel"}, "name": "Exxon", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/F24": {"tags": {"name": "F24", "amenity": "fuel"}, "name": "F24", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Firezone": {"tags": {"name": "Firezone", "amenity": "fuel"}, "name": "Firezone", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Flying V": {"tags": {"name": "Flying V", "amenity": "fuel"}, "name": "Flying V", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/GALP": {"tags": {"name": "GALP", "amenity": "fuel"}, "name": "GALP", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Gazprom": {"tags": {"name": "Gazprom", "amenity": "fuel"}, "name": "Gazprom", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/GetGo": {"tags": {"name": "GetGo", "amenity": "fuel"}, "name": "GetGo", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Goil": {"tags": {"name": "Goil", "amenity": "fuel"}, "name": "Goil", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Gulf": {"tags": {"name": "Gulf", "amenity": "fuel"}, "name": "Gulf", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/H-E-B Fuel": {"tags": {"name": "H-E-B Fuel", "amenity": "fuel"}, "name": "H-E-B Fuel", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/H-E-B Gas": {"tags": {"name": "H-E-B Gas", "amenity": "fuel"}, "name": "H-E-B Gas", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/HEM": {"tags": {"name": "HEM", "amenity": "fuel"}, "name": "HEM", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/HP": {"tags": {"name": "HP", "amenity": "fuel"}, "name": "HP", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/HP Petrol Pump": {"tags": {"name": "HP Petrol Pump", "amenity": "fuel"}, "name": "HP Petrol Pump", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Helios": {"tags": {"name": "Helios", "amenity": "fuel"}, "name": "Helios", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Hess": {"tags": {"name": "Hess", "amenity": "fuel"}, "name": "Hess", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Hindustan Petroleum": {"tags": {"name": "Hindustan Petroleum", "amenity": "fuel"}, "name": "Hindustan Petroleum", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Holiday": {"tags": {"name": "Holiday", "amenity": "fuel"}, "name": "Holiday", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Husky": {"tags": {"name": "Husky", "amenity": "fuel"}, "name": "Husky", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/IES": {"tags": {"name": "IES", "amenity": "fuel"}, "name": "IES", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/IP": {"tags": {"name": "IP", "amenity": "fuel"}, "name": "IP", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Independent Fuel Station": {"tags": {"name": "Independent Fuel Station", "amenity": "fuel"}, "name": "Independent Fuel Station", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Indian Oil": {"tags": {"name": "Indian Oil", "amenity": "fuel"}, "name": "Indian Oil", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Indipend.": {"tags": {"name": "Indipend.", "amenity": "fuel"}, "name": "Indipend.", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Ingo": {"tags": {"name": "Ingo", "amenity": "fuel"}, "name": "Ingo", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Ipiranga": {"tags": {"name": "Ipiranga", "amenity": "fuel"}, "name": "Ipiranga", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Irving": {"tags": {"name": "Irving", "amenity": "fuel"}, "name": "Irving", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/JA-SS": {"tags": {"name": "JA-SS", "amenity": "fuel"}, "name": "JA-SS", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/JOMO": {"tags": {"name": "JOMO", "amenity": "fuel"}, "name": "JOMO", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Jet": {"tags": {"name": "Jet", "amenity": "fuel"}, "name": "Jet", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Jetti": {"tags": {"name": "Jetti", "amenity": "fuel"}, "name": "Jetti", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Kangaroo": {"tags": {"name": "Kangaroo", "amenity": "fuel"}, "name": "Kangaroo", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Kobil": {"tags": {"name": "Kobil", "amenity": "fuel"}, "name": "Kobil", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Kroger Fuel": {"tags": {"name": "Kroger Fuel", "amenity": "fuel"}, "name": "Kroger Fuel", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Kum & Go": {"tags": {"name": "Kum & Go", "amenity": "fuel"}, "name": "Kum & Go", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Kwik Trip": {"tags": {"name": "Kwik Trip", "amenity": "fuel"}, "name": "Kwik Trip", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/LPG": {"tags": {"name": "LPG", "amenity": "fuel"}, "name": "LPG", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/LPG Station": {"tags": {"name": "LPG Station", "amenity": "fuel"}, "name": "LPG Station", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/LUKOIL": {"tags": {"name": "LUKOIL", "amenity": "fuel"}, "name": "LUKOIL", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Liberty": {"tags": {"name": "Liberty", "amenity": "fuel"}, "name": "Liberty", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Lotos": {"tags": {"name": "Lotos", "amenity": "fuel"}, "name": "Lotos", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Lotos Optima": {"tags": {"name": "Lotos Optima", "amenity": "fuel"}, "name": "Lotos Optima", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Love's": {"tags": {"name": "Love's", "amenity": "fuel"}, "name": "Love's", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Lukoil": {"tags": {"name": "Lukoil", "amenity": "fuel"}, "name": "Lukoil", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/MEROIL": {"tags": {"name": "MEROIL", "amenity": "fuel"}, "name": "MEROIL", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/MOL": {"tags": {"name": "MOL", "amenity": "fuel"}, "name": "MOL", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/MRS": {"tags": {"name": "MRS", "amenity": "fuel"}, "name": "MRS", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Marathon": {"tags": {"name": "Marathon", "amenity": "fuel"}, "name": "Marathon", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Maverik": {"tags": {"name": "Maverik", "amenity": "fuel"}, "name": "Maverik", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Maxol": {"tags": {"name": "Maxol", "amenity": "fuel"}, "name": "Maxol", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Metano": {"tags": {"name": "Metano", "amenity": "fuel"}, "name": "Metano", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Migrol": {"tags": {"name": "Migrol", "amenity": "fuel"}, "name": "Migrol", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Minipump": {"tags": {"name": "Minipump", "amenity": "fuel"}, "name": "Minipump", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Mobil": {"tags": {"name": "Mobil", "amenity": "fuel"}, "name": "Mobil", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Mobile": {"tags": {"name": "Mobile", "amenity": "fuel"}, "name": "Mobile", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Mol": {"tags": {"name": "Mol", "amenity": "fuel"}, "name": "Mol", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Moya": {"tags": {"name": "Moya", "amenity": "fuel"}, "name": "Moya", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Murphy USA": {"tags": {"name": "Murphy USA", "amenity": "fuel"}, "name": "Murphy USA", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Neste": {"tags": {"name": "Neste", "amenity": "fuel"}, "name": "Neste", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/OIL!": {"tags": {"name": "OIL!", "amenity": "fuel"}, "name": "OIL!", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/OK": {"tags": {"name": "OK", "amenity": "fuel"}, "name": "OK", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/OKQ8": {"tags": {"name": "OKQ8", "amenity": "fuel"}, "name": "OKQ8", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/OMV": {"tags": {"name": "OMV", "amenity": "fuel"}, "name": "OMV", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Oilibya": {"tags": {"name": "Oilibya", "brand": "Oilibya", "name:ar": "أويليبيا", "amenity": "fuel"}, "name": "Oilibya", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Opet": {"tags": {"name": "Opet", "amenity": "fuel"}, "name": "Opet", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Orlen": {"tags": {"name": "Orlen", "amenity": "fuel"}, "name": "Orlen", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/PETRONOR": {"tags": {"name": "PETRONOR", "amenity": "fuel"}, "name": "PETRONOR", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/PSO": {"tags": {"name": "PSO", "amenity": "fuel"}, "name": "PSO", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/PSO Petrol Pump": {"tags": {"name": "PSO Petrol Pump", "amenity": "fuel"}, "name": "PSO Petrol Pump", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/PT": {"tags": {"name": "PT", "amenity": "fuel"}, "name": "PT", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/PTT": {"tags": {"name": "PTT", "amenity": "fuel"}, "name": "PTT", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/PV Oil": {"tags": {"name": "PV Oil", "amenity": "fuel"}, "name": "PV Oil", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Pacific Pride": {"tags": {"name": "Pacific Pride", "amenity": "fuel"}, "name": "Pacific Pride", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Pecsa": {"tags": {"name": "Pecsa", "amenity": "fuel"}, "name": "Pecsa", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Pemex": {"tags": {"name": "Pemex", "amenity": "fuel"}, "name": "Pemex", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Pertamina": {"tags": {"name": "Pertamina", "amenity": "fuel"}, "name": "Pertamina", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Petro": {"tags": {"name": "Petro", "amenity": "fuel"}, "name": "Petro", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Petro-Canada": {"tags": {"name": "Petro-Canada", "amenity": "fuel"}, "name": "Petro-Canada", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Petrochina": {"tags": {"name": "Petrochina", "amenity": "fuel"}, "name": "Petrochina", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Petroecuador": {"tags": {"name": "Petroecuador", "amenity": "fuel"}, "name": "Petroecuador", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Petrol Ofisi": {"tags": {"name": "Petrol Ofisi", "amenity": "fuel"}, "name": "Petrol Ofisi", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Petrolimex": {"tags": {"name": "Petrolimex", "amenity": "fuel"}, "name": "Petrolimex", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Petrom": {"tags": {"name": "Petrom", "amenity": "fuel"}, "name": "Petrom", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Petron": {"tags": {"name": "Petron", "amenity": "fuel"}, "name": "Petron", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Petronas": {"tags": {"name": "Petronas", "amenity": "fuel"}, "name": "Petronas", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Petroperu": {"tags": {"name": "Petroperu", "amenity": "fuel"}, "name": "Petroperu", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Phillips 66": {"tags": {"name": "Phillips 66", "amenity": "fuel"}, "name": "Phillips 66", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Phoenix": {"tags": {"name": "Phoenix", "amenity": "fuel"}, "name": "Phoenix", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Pilot": {"tags": {"name": "Pilot", "amenity": "fuel"}, "name": "Pilot", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Pioneer": {"tags": {"name": "Pioneer", "amenity": "fuel"}, "name": "Pioneer", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Posto": {"tags": {"name": "Posto", "amenity": "fuel"}, "name": "Posto", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Posto Atem": {"tags": {"name": "Posto Atem", "amenity": "fuel"}, "name": "Posto Atem", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Posto Ipiranga": {"tags": {"name": "Posto Ipiranga", "amenity": "fuel"}, "name": "Posto Ipiranga", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Posto Shell": {"tags": {"name": "Posto Shell", "amenity": "fuel"}, "name": "Posto Shell", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Primax": {"tags": {"name": "Primax", "amenity": "fuel"}, "name": "Primax", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Prio": {"tags": {"name": "Prio", "amenity": "fuel"}, "name": "Prio", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Puma": {"tags": {"name": "Puma", "amenity": "fuel"}, "name": "Puma", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Q1": {"tags": {"name": "Q1", "amenity": "fuel"}, "name": "Q1", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Q8": {"tags": {"name": "Q8", "amenity": "fuel"}, "name": "Q8", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Q8 Easy": {"tags": {"name": "Q8 Easy", "amenity": "fuel"}, "name": "Q8 Easy", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/QuikTrip": {"tags": {"name": "QuikTrip", "amenity": "fuel"}, "name": "QuikTrip", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/REPSOL": {"tags": {"name": "REPSOL", "amenity": "fuel"}, "name": "REPSOL", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/RaceTrac": {"tags": {"name": "RaceTrac", "amenity": "fuel"}, "name": "RaceTrac", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Repsol": {"tags": {"name": "Repsol", "amenity": "fuel"}, "name": "Repsol", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Rompetrol": {"tags": {"name": "Rompetrol", "amenity": "fuel"}, "name": "Rompetrol", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Rubis": {"tags": {"name": "Rubis", "amenity": "fuel"}, "name": "Rubis", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/SB Tank": {"tags": {"name": "SB Tank", "amenity": "fuel"}, "name": "SB Tank", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/SPBU": {"tags": {"name": "SPBU", "amenity": "fuel"}, "name": "SPBU", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Sasol": {"tags": {"name": "Sasol", "amenity": "fuel"}, "name": "Sasol", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Sea Oil": {"tags": {"name": "Sea Oil", "amenity": "fuel"}, "name": "Sea Oil", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Sheetz": {"tags": {"name": "Sheetz", "amenity": "fuel"}, "name": "Sheetz", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Shell": {"tags": {"name": "Shell", "amenity": "fuel"}, "name": "Shell", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Shell Express": {"tags": {"name": "Shell Express", "amenity": "fuel"}, "name": "Shell Express", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Sinclair": {"tags": {"name": "Sinclair", "amenity": "fuel"}, "name": "Sinclair", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Sinopec": {"tags": {"name": "Sinopec", "amenity": "fuel"}, "name": "Sinopec", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Sinopec Fuel": {"tags": {"name": "Sinopec Fuel", "amenity": "fuel"}, "name": "Sinopec Fuel", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Slovnaft": {"tags": {"name": "Slovnaft", "amenity": "fuel"}, "name": "Slovnaft", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Socar": {"tags": {"name": "Socar", "amenity": "fuel"}, "name": "Socar", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Sokimex": {"tags": {"name": "Sokimex", "amenity": "fuel"}, "name": "Sokimex", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Speedway": {"tags": {"name": "Speedway", "amenity": "fuel"}, "name": "Speedway", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/St1": {"tags": {"name": "St1", "amenity": "fuel"}, "name": "St1", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Star": {"tags": {"name": "Star", "amenity": "fuel"}, "name": "Star", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Star Oil": {"tags": {"name": "Star Oil", "amenity": "fuel"}, "name": "Star Oil", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Station Service E. Leclerc": {"tags": {"name": "Station Service E. Leclerc", "amenity": "fuel"}, "name": "Station Service E. Leclerc", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Statoil": {"tags": {"name": "Statoil", "amenity": "fuel"}, "name": "Statoil", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Sunoco": {"tags": {"name": "Sunoco", "amenity": "fuel"}, "name": "Sunoco", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Tamoil": {"tags": {"name": "Tamoil", "amenity": "fuel"}, "name": "Tamoil", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Tango": {"tags": {"name": "Tango", "amenity": "fuel"}, "name": "Tango", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Teboil": {"tags": {"name": "Teboil", "amenity": "fuel"}, "name": "Teboil", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Tela": {"tags": {"name": "Tela", "amenity": "fuel"}, "name": "Tela", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Terpel": {"tags": {"name": "Terpel", "amenity": "fuel"}, "name": "Terpel", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Texaco": {"tags": {"name": "Texaco", "amenity": "fuel"}, "name": "Texaco", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Tinq": {"tags": {"name": "Tinq", "amenity": "fuel"}, "name": "Tinq", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Topaz": {"tags": {"name": "Topaz", "amenity": "fuel"}, "name": "Topaz", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Total": {"tags": {"name": "Total", "amenity": "fuel"}, "name": "Total", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Total Access": {"tags": {"name": "Total Access", "amenity": "fuel"}, "name": "Total Access", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Total Erg": {"tags": {"name": "Total Erg", "amenity": "fuel"}, "name": "Total Erg", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/TotalErg": {"tags": {"name": "TotalErg", "amenity": "fuel"}, "name": "TotalErg", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Turkey Hill": {"tags": {"name": "Turkey Hill", "amenity": "fuel"}, "name": "Turkey Hill", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Turmöl": {"tags": {"name": "Turmöl", "amenity": "fuel"}, "name": "Turmöl", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Ultramar": {"tags": {"name": "Ultramar", "amenity": "fuel"}, "name": "Ultramar", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/United": {"tags": {"name": "United", "amenity": "fuel"}, "name": "United", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Uno": {"tags": {"name": "Uno", "amenity": "fuel"}, "name": "Uno", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Uno-X": {"tags": {"name": "Uno-X", "amenity": "fuel"}, "name": "Uno-X", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Valero": {"tags": {"name": "Valero", "amenity": "fuel"}, "name": "Valero", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Vito": {"tags": {"name": "Vito", "amenity": "fuel"}, "name": "Vito", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/WOG": {"tags": {"name": "WOG", "amenity": "fuel"}, "name": "WOG", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Westfalen": {"tags": {"name": "Westfalen", "amenity": "fuel"}, "name": "Westfalen", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Woolworths Petrol": {"tags": {"name": "Woolworths Petrol", "amenity": "fuel"}, "name": "Woolworths Petrol", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Z": {"tags": {"name": "Z", "amenity": "fuel"}, "name": "Z", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/bft": {"tags": {"name": "bft", "amenity": "fuel"}, "name": "bft", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/eni": {"tags": {"name": "eni", "amenity": "fuel"}, "name": "eni", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/ΕΚΟ": {"tags": {"name": "ΕΚΟ", "amenity": "fuel"}, "name": "ΕΚΟ", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/АГЗС": {"tags": {"name": "АГЗС", "amenity": "fuel"}, "name": "АГЗС", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/АЗС": {"tags": {"name": "АЗС", "amenity": "fuel"}, "name": "АЗС", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Авіас": {"tags": {"name": "Авіас", "amenity": "fuel"}, "name": "Авіас", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/БРСМ-Нафта": {"tags": {"name": "БРСМ-Нафта", "amenity": "fuel"}, "name": "БРСМ-Нафта", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Башнефть": {"tags": {"name": "Башнефть", "amenity": "fuel"}, "name": "Башнефть", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Белоруснефть": {"tags": {"name": "Белоруснефть", "amenity": "fuel"}, "name": "Белоруснефть", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Газовая заправка": {"tags": {"name": "Газовая заправка", "amenity": "fuel"}, "name": "Газовая заправка", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Газпромнефть": {"tags": {"name": "Газпромнефть", "amenity": "fuel"}, "name": "Газпромнефть", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Гелиос": {"tags": {"name": "Гелиос", "amenity": "fuel"}, "name": "Гелиос", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/ЕКА": {"tags": {"name": "ЕКА", "amenity": "fuel"}, "name": "ЕКА", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Заправка": {"tags": {"name": "Заправка", "amenity": "fuel"}, "name": "Заправка", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/КазМунайГаз": {"tags": {"name": "КазМунайГаз", "amenity": "fuel"}, "name": "КазМунайГаз", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Лукойл": {"tags": {"name": "Лукойл", "amenity": "fuel"}, "name": "Лукойл", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Макпетрол": {"tags": {"name": "Макпетрол", "amenity": "fuel"}, "name": "Макпетрол", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/НК Альянс": {"tags": {"name": "НК Альянс", "amenity": "fuel"}, "name": "НК Альянс", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Нефтьмагистраль": {"tags": {"name": "Нефтьмагистраль", "amenity": "fuel"}, "name": "Нефтьмагистраль", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/ОККО": {"tags": {"name": "ОККО", "amenity": "fuel"}, "name": "ОККО", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/ОМВ": {"tags": {"name": "ОМВ", "amenity": "fuel"}, "name": "ОМВ", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Октан": {"tags": {"name": "Октан", "amenity": "fuel"}, "name": "Октан", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/ПТК": {"tags": {"name": "ПТК", "amenity": "fuel"}, "name": "ПТК", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Петрол": {"tags": {"name": "Петрол", "amenity": "fuel"}, "name": "Петрол", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Пропан": {"tags": {"name": "Пропан", "amenity": "fuel"}, "name": "Пропан", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Роснефть": {"tags": {"name": "Роснефть", "amenity": "fuel"}, "name": "Роснефть", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Сибнефть": {"tags": {"name": "Сибнефть", "amenity": "fuel"}, "name": "Сибнефть", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Сургутнефтегаз": {"tags": {"name": "Сургутнефтегаз", "amenity": "fuel"}, "name": "Сургутнефтегаз", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/ТНК": {"tags": {"name": "ТНК", "amenity": "fuel"}, "name": "ТНК", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Татнефтепродукт": {"tags": {"name": "Татнефтепродукт", "amenity": "fuel"}, "name": "Татнефтепродукт", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Татнефть": {"tags": {"name": "Татнефть", "amenity": "fuel"}, "name": "Татнефть", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/Укрнафта": {"tags": {"name": "Укрнафта", "amenity": "fuel"}, "name": "Укрнафта", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/דור אלון": {"tags": {"name": "דור אלון", "amenity": "fuel"}, "name": "דור אלון", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/דלק": {"tags": {"name": "דלק", "amenity": "fuel"}, "name": "דלק", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/סונול": {"tags": {"name": "סונול", "amenity": "fuel"}, "name": "סונול", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/פז": {"tags": {"name": "פז", "amenity": "fuel"}, "name": "פז", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/محطة وقود": {"tags": {"name": "محطة وقود", "amenity": "fuel"}, "name": "محطة وقود", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/محطه وقود": {"tags": {"name": "محطه وقود", "amenity": "fuel"}, "name": "محطه وقود", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/پمپ بنزین": {"tags": {"name": "پمپ بنزین", "amenity": "fuel"}, "name": "پمپ بنزین", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/پمپ گاز": {"tags": {"name": "پمپ گاز", "amenity": "fuel"}, "name": "پمپ گاز", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/บางจาก": {"tags": {"name": "บางจาก", "amenity": "fuel"}, "name": "บางจาก", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/ป.ต.ท.": {"tags": {"name": "ป.ต.ท.", "amenity": "fuel"}, "name": "ป.ต.ท.", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/เชลล์": {"tags": {"name": "เชลล์", "amenity": "fuel"}, "name": "เชลล์", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/เอสโซ่": {"tags": {"name": "เอสโซ่", "amenity": "fuel"}, "name": "เอสโซ่", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/エッソ": {"tags": {"name": "エッソ", "amenity": "fuel"}, "name": "エッソ", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/エネオス": {"tags": {"name": "エネオス", "amenity": "fuel"}, "name": "エネオス", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/コスモ石油": {"tags": {"name": "コスモ石油", "amenity": "fuel"}, "name": "コスモ石油", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/ゼネラル": {"tags": {"name": "ゼネラル", "amenity": "fuel"}, "name": "ゼネラル", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/中国石化": {"tags": {"name": "中国石化", "amenity": "fuel"}, "name": "中国石化", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/中国石化 Sinopec": {"tags": {"name": "中国石化 Sinopec", "amenity": "fuel"}, "name": "中国石化 Sinopec", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/中国石油": {"tags": {"name": "中国石油", "amenity": "fuel"}, "name": "中国石油", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/中油": {"tags": {"name": "中油", "amenity": "fuel"}, "name": "中油", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/出光": {"tags": {"name": "出光", "name:en": "Idemitsu", "amenity": "fuel"}, "name": "出光", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/加油站": {"tags": {"name": "加油站", "amenity": "fuel"}, "name": "加油站", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/台灣中油": {"tags": {"name": "台灣中油", "amenity": "fuel"}, "name": "台灣中油", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/fuel/昭和シェル": {"tags": {"name": "昭和シェル", "amenity": "fuel"}, "name": "昭和シェル", "icon": "maki-fuel", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "fuel_multi", "opening_hours", "payment_multi"], "suggestion": true},
+ "amenity/hospital/Cruz Roja": {"tags": {"name": "Cruz Roja", "healthcare": "hospital", "amenity": "hospital"}, "name": "Cruz Roja", "icon": "maki-hospital", "geometry": ["point", "area"], "fields": ["name", "operator", "healthcare/speciality", "address", "emergency"], "suggestion": true},
+ "amenity/hospital/IMSS": {"tags": {"name": "IMSS", "healthcare": "hospital", "amenity": "hospital"}, "name": "IMSS", "icon": "maki-hospital", "geometry": ["point", "area"], "fields": ["name", "operator", "healthcare/speciality", "address", "emergency"], "suggestion": true},
+ "amenity/hospital/Инфекционное отделение": {"tags": {"name": "Инфекционное отделение", "healthcare": "hospital", "amenity": "hospital"}, "name": "Инфекционное отделение", "icon": "maki-hospital", "geometry": ["point", "area"], "fields": ["name", "operator", "healthcare/speciality", "address", "emergency"], "suggestion": true},
+ "amenity/hospital/Кожно-венерологический диспансер": {"tags": {"name": "Кожно-венерологический диспансер", "healthcare": "hospital", "amenity": "hospital"}, "name": "Кожно-венерологический диспансер", "icon": "maki-hospital", "geometry": ["point", "area"], "fields": ["name", "operator", "healthcare/speciality", "address", "emergency"], "suggestion": true},
+ "amenity/hospital/Районная больница": {"tags": {"name": "Районная больница", "healthcare": "hospital", "amenity": "hospital"}, "name": "Районная больница", "icon": "maki-hospital", "geometry": ["point", "area"], "fields": ["name", "operator", "healthcare/speciality", "address", "emergency"], "suggestion": true},
+ "amenity/hospital/Роддом": {"tags": {"name": "Роддом", "healthcare": "hospital", "amenity": "hospital"}, "name": "Роддом", "icon": "maki-hospital", "geometry": ["point", "area"], "fields": ["name", "operator", "healthcare/speciality", "address", "emergency"], "suggestion": true},
+ "amenity/hospital/Родильный дом": {"tags": {"name": "Родильный дом", "healthcare": "hospital", "amenity": "hospital"}, "name": "Родильный дом", "icon": "maki-hospital", "geometry": ["point", "area"], "fields": ["name", "operator", "healthcare/speciality", "address", "emergency"], "suggestion": true},
+ "amenity/hospital/Скорая помощь": {"tags": {"name": "Скорая помощь", "healthcare": "hospital", "amenity": "hospital"}, "name": "Скорая помощь", "icon": "maki-hospital", "geometry": ["point", "area"], "fields": ["name", "operator", "healthcare/speciality", "address", "emergency"], "suggestion": true},
+ "amenity/hospital/ЦРБ": {"tags": {"name": "ЦРБ", "healthcare": "hospital", "amenity": "hospital"}, "name": "ЦРБ", "icon": "maki-hospital", "geometry": ["point", "area"], "fields": ["name", "operator", "healthcare/speciality", "address", "emergency"], "suggestion": true},
+ "amenity/hospital/Центральная районная больница": {"tags": {"name": "Центральная районная больница", "healthcare": "hospital", "amenity": "hospital"}, "name": "Центральная районная больница", "icon": "maki-hospital", "geometry": ["point", "area"], "fields": ["name", "operator", "healthcare/speciality", "address", "emergency"], "suggestion": true},
+ "amenity/hospital/โรงพยาบาลส่งเสริมสุขภาพตำบล": {"tags": {"name": "โรงพยาบาลส่งเสริมสุขภาพตำบล", "healthcare": "hospital", "amenity": "hospital"}, "name": "โรงพยาบาลส่งเสริมสุขภาพตำบล", "icon": "maki-hospital", "geometry": ["point", "area"], "fields": ["name", "operator", "healthcare/speciality", "address", "emergency"], "suggestion": true},
+ "amenity/ice_cream/Grido": {"tags": {"name": "Grido", "amenity": "ice_cream"}, "name": "Grido", "icon": "maki-ice-cream", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "takeaway", "delivery", "outdoor_seating"], "suggestion": true},
+ "amenity/kindergarten/Anganwadi": {"tags": {"name": "Anganwadi", "amenity": "kindergarten"}, "name": "Anganwadi", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Arche Noah": {"tags": {"name": "Arche Noah", "amenity": "kindergarten"}, "name": "Arche Noah", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/CONAFE Preescolar": {"tags": {"name": "CONAFE Preescolar", "amenity": "kindergarten"}, "name": "CONAFE Preescolar", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Educacion Inicial de CONAFE No Escolarizado": {"tags": {"name": "Educacion Inicial de CONAFE No Escolarizado", "amenity": "kindergarten"}, "name": "Educacion Inicial de CONAFE No Escolarizado", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Estefania Casta�eda": {"tags": {"name": "Estefania Casta�eda", "amenity": "kindergarten"}, "name": "Estefania Casta�eda", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Evangelischer Kindergarten": {"tags": {"name": "Evangelischer Kindergarten", "amenity": "kindergarten"}, "name": "Evangelischer Kindergarten", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Federico Froebel": {"tags": {"name": "Federico Froebel", "amenity": "kindergarten"}, "name": "Federico Froebel", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Gabriela Mistral": {"tags": {"name": "Gabriela Mistral", "amenity": "kindergarten"}, "name": "Gabriela Mistral", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Jean Piaget": {"tags": {"name": "Jean Piaget", "amenity": "kindergarten"}, "name": "Jean Piaget", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Katholischer Kindergarten": {"tags": {"name": "Katholischer Kindergarten", "amenity": "kindergarten"}, "name": "Katholischer Kindergarten", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Kindergarten Regenbogen": {"tags": {"name": "Kindergarten Regenbogen", "amenity": "kindergarten"}, "name": "Kindergarten Regenbogen", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Kindergarten St. Josef": {"tags": {"name": "Kindergarten St. Josef", "amenity": "kindergarten"}, "name": "Kindergarten St. Josef", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Kindergarten St. Martin": {"tags": {"name": "Kindergarten St. Martin", "amenity": "kindergarten"}, "name": "Kindergarten St. Martin", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Maria Montessori": {"tags": {"name": "Maria Montessori", "amenity": "kindergarten"}, "name": "Maria Montessori", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/PAUD": {"tags": {"name": "PAUD", "amenity": "kindergarten"}, "name": "PAUD", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Pusteblume": {"tags": {"name": "Pusteblume", "amenity": "kindergarten"}, "name": "Pusteblume", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Rosaura Zapata": {"tags": {"name": "Rosaura Zapata", "amenity": "kindergarten"}, "name": "Rosaura Zapata", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Sor Juana Ines De La Cruz": {"tags": {"name": "Sor Juana Ines De La Cruz", "amenity": "kindergarten"}, "name": "Sor Juana Ines De La Cruz", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Spatzennest": {"tags": {"name": "Spatzennest", "amenity": "kindergarten"}, "name": "Spatzennest", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Städtischer Kindergarten": {"tags": {"name": "Städtischer Kindergarten", "amenity": "kindergarten"}, "name": "Städtischer Kindergarten", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Villa Kunterbunt": {"tags": {"name": "Villa Kunterbunt", "amenity": "kindergarten"}, "name": "Villa Kunterbunt", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Waldkindergarten": {"tags": {"name": "Waldkindergarten", "amenity": "kindergarten"}, "name": "Waldkindergarten", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Waldorfkindergarten": {"tags": {"name": "Waldorfkindergarten", "amenity": "kindergarten"}, "name": "Waldorfkindergarten", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Óvoda": {"tags": {"name": "Óvoda", "amenity": "kindergarten"}, "name": "Óvoda", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детсад": {"tags": {"name": "Детсад", "amenity": "kindergarten"}, "name": "Детсад", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад Солнышко": {"tags": {"name": "Детский сад Солнышко", "amenity": "kindergarten"}, "name": "Детский сад Солнышко", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад № 1": {"tags": {"name": "Детский сад № 1", "amenity": "kindergarten"}, "name": "Детский сад № 1", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №1": {"tags": {"name": "Детский сад №1", "amenity": "kindergarten"}, "name": "Детский сад №1", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №10": {"tags": {"name": "Детский сад №10", "amenity": "kindergarten"}, "name": "Детский сад №10", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №11": {"tags": {"name": "Детский сад №11", "amenity": "kindergarten"}, "name": "Детский сад №11", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №12": {"tags": {"name": "Детский сад №12", "amenity": "kindergarten"}, "name": "Детский сад №12", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №13": {"tags": {"name": "Детский сад №13", "amenity": "kindergarten"}, "name": "Детский сад №13", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №14": {"tags": {"name": "Детский сад №14", "amenity": "kindergarten"}, "name": "Детский сад №14", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №15": {"tags": {"name": "Детский сад №15", "amenity": "kindergarten"}, "name": "Детский сад №15", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №16": {"tags": {"name": "Детский сад №16", "amenity": "kindergarten"}, "name": "Детский сад №16", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №17": {"tags": {"name": "Детский сад №17", "amenity": "kindergarten"}, "name": "Детский сад №17", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №18": {"tags": {"name": "Детский сад №18", "amenity": "kindergarten"}, "name": "Детский сад №18", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №19": {"tags": {"name": "Детский сад №19", "amenity": "kindergarten"}, "name": "Детский сад №19", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №2": {"tags": {"name": "Детский сад №2", "amenity": "kindergarten"}, "name": "Детский сад №2", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №22": {"tags": {"name": "Детский сад №22", "amenity": "kindergarten"}, "name": "Детский сад №22", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №24": {"tags": {"name": "Детский сад №24", "amenity": "kindergarten"}, "name": "Детский сад №24", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №25": {"tags": {"name": "Детский сад №25", "amenity": "kindergarten"}, "name": "Детский сад №25", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №27": {"tags": {"name": "Детский сад №27", "amenity": "kindergarten"}, "name": "Детский сад №27", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №29": {"tags": {"name": "Детский сад №29", "amenity": "kindergarten"}, "name": "Детский сад №29", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №3": {"tags": {"name": "Детский сад №3", "amenity": "kindergarten"}, "name": "Детский сад №3", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №33": {"tags": {"name": "Детский сад №33", "amenity": "kindergarten"}, "name": "Детский сад №33", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №4": {"tags": {"name": "Детский сад №4", "amenity": "kindergarten"}, "name": "Детский сад №4", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №5": {"tags": {"name": "Детский сад №5", "amenity": "kindergarten"}, "name": "Детский сад №5", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №6": {"tags": {"name": "Детский сад №6", "amenity": "kindergarten"}, "name": "Детский сад №6", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №7": {"tags": {"name": "Детский сад №7", "amenity": "kindergarten"}, "name": "Детский сад №7", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №8": {"tags": {"name": "Детский сад №8", "amenity": "kindergarten"}, "name": "Детский сад №8", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Детский сад №9": {"tags": {"name": "Детский сад №9", "amenity": "kindergarten"}, "name": "Детский сад №9", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Дитячий садок": {"tags": {"name": "Дитячий садок", "amenity": "kindergarten"}, "name": "Дитячий садок", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/Солнышко": {"tags": {"name": "Солнышко", "amenity": "kindergarten"}, "name": "Солнышко", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/საბავშვო ბაღი": {"tags": {"name": "საბავშვო ბაღი", "amenity": "kindergarten"}, "name": "საბავშვო ბაღი", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/kindergarten/中央保育所": {"tags": {"name": "中央保育所", "amenity": "kindergarten"}, "name": "中央保育所", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "amenity/library/Biblioteca Comunale": {"tags": {"name": "Biblioteca Comunale", "amenity": "library"}, "name": "Biblioteca Comunale", "icon": "maki-library", "geometry": ["point", "area"], "fields": ["name", "operator", "building_area", "address", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "ref/isil"], "suggestion": true},
+ "amenity/library/Biblioteca comunale": {"tags": {"name": "Biblioteca comunale", "amenity": "library"}, "name": "Biblioteca comunale", "icon": "maki-library", "geometry": ["point", "area"], "fields": ["name", "operator", "building_area", "address", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "ref/isil"], "suggestion": true},
+ "amenity/library/Biblioteka Publiczna": {"tags": {"name": "Biblioteka Publiczna", "amenity": "library"}, "name": "Biblioteka Publiczna", "icon": "maki-library", "geometry": ["point", "area"], "fields": ["name", "operator", "building_area", "address", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "ref/isil"], "suggestion": true},
+ "amenity/library/Bibliothèque Municipale": {"tags": {"name": "Bibliothèque Municipale", "amenity": "library"}, "name": "Bibliothèque Municipale", "icon": "maki-library", "geometry": ["point", "area"], "fields": ["name", "operator", "building_area", "address", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "ref/isil"], "suggestion": true},
+ "amenity/library/Bibliothèque municipale": {"tags": {"name": "Bibliothèque municipale", "amenity": "library"}, "name": "Bibliothèque municipale", "icon": "maki-library", "geometry": ["point", "area"], "fields": ["name", "operator", "building_area", "address", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "ref/isil"], "suggestion": true},
+ "amenity/library/Bücherei": {"tags": {"name": "Bücherei", "amenity": "library"}, "name": "Bücherei", "icon": "maki-library", "geometry": ["point", "area"], "fields": ["name", "operator", "building_area", "address", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "ref/isil"], "suggestion": true},
+ "amenity/library/Central Library": {"tags": {"name": "Central Library", "amenity": "library"}, "name": "Central Library", "icon": "maki-library", "geometry": ["point", "area"], "fields": ["name", "operator", "building_area", "address", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "ref/isil"], "suggestion": true},
+ "amenity/library/Gemeindebücherei": {"tags": {"name": "Gemeindebücherei", "amenity": "library"}, "name": "Gemeindebücherei", "icon": "maki-library", "geometry": ["point", "area"], "fields": ["name", "operator", "building_area", "address", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "ref/isil"], "suggestion": true},
+ "amenity/library/Gminna Biblioteka Publiczna": {"tags": {"name": "Gminna Biblioteka Publiczna", "amenity": "library"}, "name": "Gminna Biblioteka Publiczna", "icon": "maki-library", "geometry": ["point", "area"], "fields": ["name", "operator", "building_area", "address", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "ref/isil"], "suggestion": true},
+ "amenity/library/Miejska Biblioteka Publiczna": {"tags": {"name": "Miejska Biblioteka Publiczna", "amenity": "library"}, "name": "Miejska Biblioteka Publiczna", "icon": "maki-library", "geometry": ["point", "area"], "fields": ["name", "operator", "building_area", "address", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "ref/isil"], "suggestion": true},
+ "amenity/library/Médiathèque": {"tags": {"name": "Médiathèque", "amenity": "library"}, "name": "Médiathèque", "icon": "maki-library", "geometry": ["point", "area"], "fields": ["name", "operator", "building_area", "address", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "ref/isil"], "suggestion": true},
+ "amenity/library/Městská knihovna": {"tags": {"name": "Městská knihovna", "amenity": "library"}, "name": "Městská knihovna", "icon": "maki-library", "geometry": ["point", "area"], "fields": ["name", "operator", "building_area", "address", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "ref/isil"], "suggestion": true},
+ "amenity/library/Public Library": {"tags": {"name": "Public Library", "amenity": "library"}, "name": "Public Library", "icon": "maki-library", "geometry": ["point", "area"], "fields": ["name", "operator", "building_area", "address", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "ref/isil"], "suggestion": true},
+ "amenity/library/Stadtbibliothek": {"tags": {"name": "Stadtbibliothek", "amenity": "library"}, "name": "Stadtbibliothek", "icon": "maki-library", "geometry": ["point", "area"], "fields": ["name", "operator", "building_area", "address", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "ref/isil"], "suggestion": true},
+ "amenity/library/Stadtbücherei": {"tags": {"name": "Stadtbücherei", "amenity": "library"}, "name": "Stadtbücherei", "icon": "maki-library", "geometry": ["point", "area"], "fields": ["name", "operator", "building_area", "address", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "ref/isil"], "suggestion": true},
+ "amenity/library/Городская библиотека": {"tags": {"name": "Городская библиотека", "amenity": "library"}, "name": "Городская библиотека", "icon": "maki-library", "geometry": ["point", "area"], "fields": ["name", "operator", "building_area", "address", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "ref/isil"], "suggestion": true},
+ "amenity/library/Детская библиотека": {"tags": {"name": "Детская библиотека", "amenity": "library"}, "name": "Детская библиотека", "icon": "maki-library", "geometry": ["point", "area"], "fields": ["name", "operator", "building_area", "address", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "ref/isil"], "suggestion": true},
+ "amenity/library/Центральная библиотека": {"tags": {"name": "Центральная библиотека", "amenity": "library"}, "name": "Центральная библиотека", "icon": "maki-library", "geometry": ["point", "area"], "fields": ["name", "operator", "building_area", "address", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "ref/isil"], "suggestion": true},
+ "amenity/library/Центральная городская библиотека": {"tags": {"name": "Центральная городская библиотека", "amenity": "library"}, "name": "Центральная городская библиотека", "icon": "maki-library", "geometry": ["point", "area"], "fields": ["name", "operator", "building_area", "address", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "ref/isil"], "suggestion": true},
+ "amenity/library/图书馆": {"tags": {"name": "图书馆", "amenity": "library"}, "name": "图书馆", "icon": "maki-library", "geometry": ["point", "area"], "fields": ["name", "operator", "building_area", "address", "opening_hours", "internet_access", "internet_access/fee", "internet_access/ssid", "ref/isil"], "suggestion": true},
+ "amenity/pharmacy/36.6": {"tags": {"name": "36.6", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "36.6", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Adler-Apotheke": {"tags": {"name": "Adler-Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Adler-Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Alte Apotheke": {"tags": {"name": "Alte Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Alte Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Apollo Pharmacy": {"tags": {"name": "Apollo Pharmacy", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Apollo Pharmacy", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Apotek": {"tags": {"name": "Apotek", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Apotek", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Apotek Hjärtat": {"tags": {"name": "Apotek Hjärtat", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Apotek Hjärtat", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Apotheke am Markt": {"tags": {"name": "Apotheke am Markt", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Apotheke am Markt", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Bahnhof Apotheke": {"tags": {"name": "Bahnhof Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Bahnhof Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Bahnhof-Apotheke": {"tags": {"name": "Bahnhof-Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Bahnhof-Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Bartell Drugs": {"tags": {"name": "Bartell Drugs", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Bartell Drugs", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Benavides": {"tags": {"name": "Benavides", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Benavides", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Benu": {"tags": {"name": "Benu", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Benu", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Boots": {"tags": {"name": "Boots", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Boots", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Botica": {"tags": {"name": "Botica", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Botica", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Brunnen-Apotheke": {"tags": {"name": "Brunnen-Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Brunnen-Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Burg-Apotheke": {"tags": {"name": "Burg-Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Burg-Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Bären-Apotheke": {"tags": {"name": "Bären-Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Bären-Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/CVS": {"tags": {"name": "CVS", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "CVS", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Camelia": {"tags": {"name": "Camelia", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Camelia", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Catena": {"tags": {"name": "Catena", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Catena", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Chemist Warehouse": {"tags": {"name": "Chemist Warehouse", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Chemist Warehouse", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Clicks": {"tags": {"name": "Clicks", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Clicks", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Cruz Azul": {"tags": {"name": "Cruz Azul", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Cruz Azul", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Cruz Verde": {"tags": {"name": "Cruz Verde", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Cruz Verde", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Dbam o Zdrowie": {"tags": {"name": "Dbam o Zdrowie", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Dbam o Zdrowie", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Dr. Max": {"tags": {"name": "Dr. Max", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Dr. Max", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Droga Raia": {"tags": {"name": "Droga Raia", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Droga Raia", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Drogaria São Paulo": {"tags": {"name": "Drogaria São Paulo", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Drogaria São Paulo", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Drogasil": {"tags": {"name": "Drogasil", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Drogasil", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Duane Reade": {"tags": {"name": "Duane Reade", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Duane Reade", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Eczane": {"tags": {"name": "Eczane", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Eczane", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Engel-Apotheke": {"tags": {"name": "Engel-Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Engel-Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Eurovaistinė": {"tags": {"name": "Eurovaistinė", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Eurovaistinė", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Familiprix": {"tags": {"name": "Familiprix", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Familiprix", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Farmacenter": {"tags": {"name": "Farmacenter", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Farmacenter", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Farmacia Centrale": {"tags": {"name": "Farmacia Centrale", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Farmacia Centrale", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Farmacia Comunale": {"tags": {"name": "Farmacia Comunale", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Farmacia Comunale", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Farmacia Guadalajara": {"tags": {"name": "Farmacia Guadalajara", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Farmacia Guadalajara", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Farmacia del Ahorro": {"tags": {"name": "Farmacia del Ahorro", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Farmacia del Ahorro", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Farmacias Ahumada": {"tags": {"name": "Farmacias Ahumada", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Farmacias Ahumada", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Farmacias Cruz Azul": {"tags": {"name": "Farmacias Cruz Azul", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Farmacias Cruz Azul", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Farmacias Cruz Verde": {"tags": {"name": "Farmacias Cruz Verde", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Farmacias Cruz Verde", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Farmacias Económicas": {"tags": {"name": "Farmacias Económicas", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Farmacias Económicas", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Farmacias Guadalajara": {"tags": {"name": "Farmacias Guadalajara", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Farmacias Guadalajara", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Farmacias SalcoBrand": {"tags": {"name": "Farmacias SalcoBrand", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Farmacias SalcoBrand", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Farmacias Sana Sana": {"tags": {"name": "Farmacias Sana Sana", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Farmacias Sana Sana", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Farmacias Similares": {"tags": {"name": "Farmacias Similares", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Farmacias Similares", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Farmacias del Ahorro": {"tags": {"name": "Farmacias del Ahorro", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Farmacias del Ahorro", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Farmacity": {"tags": {"name": "Farmacity", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Farmacity", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Farmahorro": {"tags": {"name": "Farmahorro", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Farmahorro", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Farmatodo": {"tags": {"name": "Farmatodo", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Farmatodo", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Felicia": {"tags": {"name": "Felicia", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Felicia", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Fybeca": {"tags": {"name": "Fybeca", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Fybeca", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Generika Drugstore": {"tags": {"name": "Generika Drugstore", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Generika Drugstore", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Gintarinė vaistinė": {"tags": {"name": "Gintarinė vaistinė", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Gintarinė vaistinė", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Guardian": {"tags": {"name": "Guardian", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Guardian", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Gyógyszertár": {"tags": {"name": "Gyógyszertár", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Gyógyszertár", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/H-E-B Pharmacy": {"tags": {"name": "H-E-B Pharmacy", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "H-E-B Pharmacy", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Hirsch-Apotheke": {"tags": {"name": "Hirsch-Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Hirsch-Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Hubertus Apotheke": {"tags": {"name": "Hubertus Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Hubertus Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Inkafarma": {"tags": {"name": "Inkafarma", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Inkafarma", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Jean Coutu": {"tags": {"name": "Jean Coutu", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Jean Coutu", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Kinney Drugs": {"tags": {"name": "Kinney Drugs", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Kinney Drugs", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Kur-Apotheke": {"tags": {"name": "Kur-Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Kur-Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Linden-Apotheke": {"tags": {"name": "Linden-Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Linden-Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Ljekarna": {"tags": {"name": "Ljekarna", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Ljekarna", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Lloyds Pharmacy": {"tags": {"name": "Lloyds Pharmacy", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Lloyds Pharmacy", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Lékárna": {"tags": {"name": "Lékárna", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Lékárna", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Löwen-Apotheke": {"tags": {"name": "Löwen-Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Löwen-Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Marien-Apotheke": {"tags": {"name": "Marien-Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Marien-Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Markt-Apotheke": {"tags": {"name": "Markt-Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Markt-Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Mercury Drug": {"tags": {"name": "Mercury Drug", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Mercury Drug", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Mifarma": {"tags": {"name": "Mifarma", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Mifarma", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Mēness aptieka": {"tags": {"name": "Mēness aptieka", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Mēness aptieka", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Neue Apotheke": {"tags": {"name": "Neue Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Neue Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Pague Menos": {"tags": {"name": "Pague Menos", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Pague Menos", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Panvel": {"tags": {"name": "Panvel", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Panvel", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Park-Apotheke": {"tags": {"name": "Park-Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Park-Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Pharmacie Centrale": {"tags": {"name": "Pharmacie Centrale", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Pharmacie Centrale", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Pharmacie Principale": {"tags": {"name": "Pharmacie Principale", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Pharmacie Principale", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Pharmacie de l'Hôtel de Ville": {"tags": {"name": "Pharmacie de l'Hôtel de Ville", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Pharmacie de l'Hôtel de Ville", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Pharmacie de la Gare": {"tags": {"name": "Pharmacie de la Gare", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Pharmacie de la Gare", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Pharmacie de la Mairie": {"tags": {"name": "Pharmacie de la Mairie", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Pharmacie de la Mairie", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Pharmacie de la Poste": {"tags": {"name": "Pharmacie de la Poste", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Pharmacie de la Poste", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Pharmacie du Centre": {"tags": {"name": "Pharmacie du Centre", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Pharmacie du Centre", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Pharmacie du Marché": {"tags": {"name": "Pharmacie du Marché", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Pharmacie du Marché", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Pharmacie du Parc": {"tags": {"name": "Pharmacie du Parc", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Pharmacie du Parc", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Pharmaprix": {"tags": {"name": "Pharmaprix", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Pharmaprix", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Pharmasave": {"tags": {"name": "Pharmasave", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Pharmasave", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Punkt Apteczny": {"tags": {"name": "Punkt Apteczny", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Punkt Apteczny", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Rathaus-Apotheke": {"tags": {"name": "Rathaus-Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Rathaus-Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Rats-Apotheke": {"tags": {"name": "Rats-Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Rats-Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Rexall": {"tags": {"name": "Rexall", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Rexall", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Rite Aid": {"tags": {"name": "Rite Aid", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Rite Aid", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Rose Pharmacy": {"tags": {"name": "Rose Pharmacy", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Rose Pharmacy", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Rosen-Apotheke": {"tags": {"name": "Rosen-Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Rosen-Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Rowlands Pharmacy": {"tags": {"name": "Rowlands Pharmacy", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Rowlands Pharmacy", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/SalcoBrand": {"tags": {"name": "SalcoBrand", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "SalcoBrand", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Sana Sana": {"tags": {"name": "Sana Sana", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Sana Sana", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Schloss-Apotheke": {"tags": {"name": "Schloss-Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Schloss-Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Sensiblu": {"tags": {"name": "Sensiblu", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Sensiblu", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Shoppers Drug Mart": {"tags": {"name": "Shoppers Drug Mart", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Shoppers Drug Mart", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Sonnen-Apotheke": {"tags": {"name": "Sonnen-Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Sonnen-Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/South Star Drug": {"tags": {"name": "South Star Drug", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "South Star Drug", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Stadt-Apotheke": {"tags": {"name": "Stadt-Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Stadt-Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Stern-Apotheke": {"tags": {"name": "Stern-Apotheke", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Stern-Apotheke", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Superdrug": {"tags": {"name": "Superdrug", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Superdrug", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/São João": {"tags": {"name": "São João", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "São João", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/The Generics Pharmacy": {"tags": {"name": "The Generics Pharmacy", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "The Generics Pharmacy", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Uniprix": {"tags": {"name": "Uniprix", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Uniprix", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Walgreens": {"tags": {"name": "Walgreens", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Walgreens", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Walgreens Pharmacy": {"tags": {"name": "Walgreens Pharmacy", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Walgreens Pharmacy", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Walmart Pharmacy": {"tags": {"name": "Walmart Pharmacy", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Walmart Pharmacy", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Well Pharmacy": {"tags": {"name": "Well Pharmacy", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Well Pharmacy", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/centro naturista": {"tags": {"name": "centro naturista", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "centro naturista", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/А5": {"tags": {"name": "А5", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "А5", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Айболит": {"tags": {"name": "Айболит", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Айболит", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Аптека 36,6": {"tags": {"name": "Аптека 36,6", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Аптека 36,6", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Аптека низких цен": {"tags": {"name": "Аптека низких цен", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Аптека низких цен", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Аптека низьких цін": {"tags": {"name": "Аптека низьких цін", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Аптека низьких цін", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Аптека от склада": {"tags": {"name": "Аптека от склада", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Аптека от склада", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Аптека №1": {"tags": {"name": "Аптека №1", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Аптека №1", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Аптечный пункт": {"tags": {"name": "Аптечный пункт", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Аптечный пункт", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Арніка": {"tags": {"name": "Арніка", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Арніка", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Бережная аптека": {"tags": {"name": "Бережная аптека", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Бережная аптека", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Будь здоров": {"tags": {"name": "Будь здоров", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Будь здоров", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Вита": {"tags": {"name": "Вита", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Вита", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Горздрав": {"tags": {"name": "Горздрав", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Горздрав", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Живика": {"tags": {"name": "Живика", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Живика", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Здоровье": {"tags": {"name": "Здоровье", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Здоровье", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Имплозия": {"tags": {"name": "Имплозия", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Имплозия", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Классика": {"tags": {"name": "Классика", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Классика", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Ладушка": {"tags": {"name": "Ладушка", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Ладушка", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Мед-сервіс": {"tags": {"name": "Мед-сервіс", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Мед-сервіс", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Мелодия здоровья": {"tags": {"name": "Мелодия здоровья", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Мелодия здоровья", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Невис": {"tags": {"name": "Невис", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Невис", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Норма": {"tags": {"name": "Норма", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Норма", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Озерки": {"tags": {"name": "Озерки", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Озерки", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Панацея": {"tags": {"name": "Панацея", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Панацея", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Первая помощь": {"tags": {"name": "Первая помощь", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Первая помощь", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Планета здоровья": {"tags": {"name": "Планета здоровья", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Планета здоровья", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Ригла": {"tags": {"name": "Ригла", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Ригла", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Семейная": {"tags": {"name": "Семейная", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Семейная", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Социальная аптека": {"tags": {"name": "Социальная аптека", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Социальная аптека", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Столички": {"tags": {"name": "Столички", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Столички", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Фармакопейка": {"tags": {"name": "Фармакопейка", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Фармакопейка", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Фармакор": {"tags": {"name": "Фармакор", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Фармакор", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Фармация": {"tags": {"name": "Фармация", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Фармация", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Фармленд": {"tags": {"name": "Фармленд", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Фармленд", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/Центральная аптека": {"tags": {"name": "Центральная аптека", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "Центральная аптека", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/סופר-פארם": {"tags": {"name": "סופר-פארם", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "סופר-פארם", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/داروخانه": {"tags": {"name": "داروخانه", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "داروخانه", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/داروخانه شبانه روزی": {"tags": {"name": "داروخانه شبانه روزی", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "داروخانه شبانه روزی", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/صيدلية": {"tags": {"name": "صيدلية", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "صيدلية", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/くすりの福太郎": {"tags": {"name": "くすりの福太郎", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "くすりの福太郎", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/さくら薬局": {"tags": {"name": "さくら薬局", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "さくら薬局", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/ウエルシア": {"tags": {"name": "ウエルシア", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "ウエルシア", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/カワチ薬品": {"tags": {"name": "カワチ薬品", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "カワチ薬品", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/クリエイト": {"tags": {"name": "クリエイト", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "クリエイト", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/サンドラッグ": {"tags": {"name": "サンドラッグ", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "サンドラッグ", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/スギ薬局": {"tags": {"name": "スギ薬局", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "スギ薬局", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/セイジョー": {"tags": {"name": "セイジョー", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "セイジョー", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/ツルハドラッグ": {"tags": {"name": "ツルハドラッグ", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "ツルハドラッグ", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/ドラッグてらしま (Drug Terashima)": {"tags": {"name": "ドラッグてらしま (Drug Terashima)", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "ドラッグてらしま (Drug Terashima)", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/マツモトキヨシ": {"tags": {"name": "マツモトキヨシ", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "マツモトキヨシ", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pharmacy/丁丁藥局": {"tags": {"name": "丁丁藥局", "healthcare": "pharmacy", "amenity": "pharmacy"}, "name": "丁丁藥局", "icon": "maki-pharmacy", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "drive_through", "opening_hours", "payment_multi", "dispensing"], "suggestion": true},
+ "amenity/pub/Black Bull": {"tags": {"name": "Black Bull", "amenity": "pub"}, "name": "Black Bull", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/Commercial Hotel": {"tags": {"name": "Commercial Hotel", "amenity": "pub"}, "name": "Commercial Hotel", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/Cross Keys": {"tags": {"name": "Cross Keys", "amenity": "pub"}, "name": "Cross Keys", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/Irish Pub": {"tags": {"name": "Irish Pub", "amenity": "pub"}, "name": "Irish Pub", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/Kings Arms": {"tags": {"name": "Kings Arms", "amenity": "pub"}, "name": "Kings Arms", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/Kings Head": {"tags": {"name": "Kings Head", "amenity": "pub"}, "name": "Kings Head", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/New Inn": {"tags": {"name": "New Inn", "amenity": "pub"}, "name": "New Inn", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/Prince of Wales": {"tags": {"name": "Prince of Wales", "amenity": "pub"}, "name": "Prince of Wales", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/Queens Head": {"tags": {"name": "Queens Head", "amenity": "pub"}, "name": "Queens Head", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/Red Lion": {"tags": {"name": "Red Lion", "amenity": "pub"}, "name": "Red Lion", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/Rose & Crown": {"tags": {"name": "Rose & Crown", "amenity": "pub"}, "name": "Rose & Crown", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/Rose and Crown": {"tags": {"name": "Rose and Crown", "amenity": "pub"}, "name": "Rose and Crown", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/Royal Oak": {"tags": {"name": "Royal Oak", "amenity": "pub"}, "name": "Royal Oak", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Albion": {"tags": {"name": "The Albion", "amenity": "pub"}, "name": "The Albion", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Anchor": {"tags": {"name": "The Anchor", "amenity": "pub"}, "name": "The Anchor", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Angel": {"tags": {"name": "The Angel", "amenity": "pub"}, "name": "The Angel", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Beehive": {"tags": {"name": "The Beehive", "amenity": "pub"}, "name": "The Beehive", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Bell": {"tags": {"name": "The Bell", "amenity": "pub"}, "name": "The Bell", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Bell Inn": {"tags": {"name": "The Bell Inn", "amenity": "pub"}, "name": "The Bell Inn", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Black Horse": {"tags": {"name": "The Black Horse", "amenity": "pub"}, "name": "The Black Horse", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Bull": {"tags": {"name": "The Bull", "amenity": "pub"}, "name": "The Bull", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Castle": {"tags": {"name": "The Castle", "amenity": "pub"}, "name": "The Castle", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Chequers": {"tags": {"name": "The Chequers", "amenity": "pub"}, "name": "The Chequers", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Cricketers": {"tags": {"name": "The Cricketers", "amenity": "pub"}, "name": "The Cricketers", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Cross Keys": {"tags": {"name": "The Cross Keys", "amenity": "pub"}, "name": "The Cross Keys", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Crown": {"tags": {"name": "The Crown", "amenity": "pub"}, "name": "The Crown", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Crown Inn": {"tags": {"name": "The Crown Inn", "amenity": "pub"}, "name": "The Crown Inn", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Fox": {"tags": {"name": "The Fox", "amenity": "pub"}, "name": "The Fox", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The George": {"tags": {"name": "The George", "amenity": "pub"}, "name": "The George", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Green Man": {"tags": {"name": "The Green Man", "amenity": "pub"}, "name": "The Green Man", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Greyhound": {"tags": {"name": "The Greyhound", "amenity": "pub"}, "name": "The Greyhound", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Kings Arms": {"tags": {"name": "The Kings Arms", "amenity": "pub"}, "name": "The Kings Arms", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Kings Head": {"tags": {"name": "The Kings Head", "amenity": "pub"}, "name": "The Kings Head", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The New Inn": {"tags": {"name": "The New Inn", "amenity": "pub"}, "name": "The New Inn", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Plough": {"tags": {"name": "The Plough", "amenity": "pub"}, "name": "The Plough", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Plough Inn": {"tags": {"name": "The Plough Inn", "amenity": "pub"}, "name": "The Plough Inn", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Queens Head": {"tags": {"name": "The Queens Head", "amenity": "pub"}, "name": "The Queens Head", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Railway": {"tags": {"name": "The Railway", "amenity": "pub"}, "name": "The Railway", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Red Lion": {"tags": {"name": "The Red Lion", "amenity": "pub"}, "name": "The Red Lion", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Rising Sun": {"tags": {"name": "The Rising Sun", "amenity": "pub"}, "name": "The Rising Sun", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Royal Oak": {"tags": {"name": "The Royal Oak", "amenity": "pub"}, "name": "The Royal Oak", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Ship": {"tags": {"name": "The Ship", "amenity": "pub"}, "name": "The Ship", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Ship Inn": {"tags": {"name": "The Ship Inn", "amenity": "pub"}, "name": "The Ship Inn", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Star": {"tags": {"name": "The Star", "amenity": "pub"}, "name": "The Star", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Star Inn": {"tags": {"name": "The Star Inn", "amenity": "pub"}, "name": "The Star Inn", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Sun Inn": {"tags": {"name": "The Sun Inn", "amenity": "pub"}, "name": "The Sun Inn", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Swan": {"tags": {"name": "The Swan", "amenity": "pub"}, "name": "The Swan", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Swan Inn": {"tags": {"name": "The Swan Inn", "amenity": "pub"}, "name": "The Swan Inn", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Victoria": {"tags": {"name": "The Victoria", "amenity": "pub"}, "name": "The Victoria", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The Wheatsheaf": {"tags": {"name": "The Wheatsheaf", "amenity": "pub"}, "name": "The Wheatsheaf", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The White Hart": {"tags": {"name": "The White Hart", "amenity": "pub"}, "name": "The White Hart", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The White Horse": {"tags": {"name": "The White Horse", "amenity": "pub"}, "name": "The White Horse", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The White Lion": {"tags": {"name": "The White Lion", "amenity": "pub"}, "name": "The White Lion", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/The White Swan": {"tags": {"name": "The White Swan", "amenity": "pub"}, "name": "The White Swan", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/魚民": {"tags": {"name": "魚民", "amenity": "pub"}, "name": "魚民", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/pub/鳥貴族": {"tags": {"name": "鳥貴族", "amenity": "pub"}, "name": "鳥貴族", "icon": "maki-beer", "geometry": ["point", "area"], "fields": ["name", "address", "building_area", "opening_hours", "smoking", "outdoor_seating", "brewery"], "suggestion": true},
+ "amenity/restaurant/Adler": {"tags": {"name": "Adler", "amenity": "restaurant"}, "name": "Adler", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Adria": {"tags": {"name": "Adria", "amenity": "restaurant"}, "name": "Adria", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Adyar Ananda Bhavan": {"tags": {"name": "Adyar Ananda Bhavan", "amenity": "restaurant"}, "name": "Adyar Ananda Bhavan", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Akropolis": {"tags": {"name": "Akropolis", "amenity": "restaurant"}, "name": "Akropolis", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Alte Post": {"tags": {"name": "Alte Post", "amenity": "restaurant"}, "name": "Alte Post", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Applebee's": {"tags": {"name": "Applebee's", "amenity": "restaurant"}, "name": "Applebee's", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Asia": {"tags": {"name": "Asia", "amenity": "restaurant"}, "name": "Asia", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Athen": {"tags": {"name": "Athen", "amenity": "restaurant"}, "name": "Athen", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Athos": {"tags": {"name": "Athos", "amenity": "restaurant"}, "name": "Athos", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Autogrill": {"tags": {"name": "Autogrill", "amenity": "restaurant"}, "name": "Autogrill", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Bahnhof": {"tags": {"name": "Bahnhof", "amenity": "restaurant"}, "name": "Bahnhof", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Bella Italia": {"tags": {"name": "Bella Italia", "amenity": "restaurant"}, "name": "Bella Italia", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Bella Napoli": {"tags": {"name": "Bella Napoli", "amenity": "restaurant"}, "name": "Bella Napoli", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Big Boy": {"tags": {"name": "Big Boy", "amenity": "restaurant"}, "name": "Big Boy", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Bob Evans": {"tags": {"name": "Bob Evans", "amenity": "restaurant"}, "name": "Bob Evans", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Bonefish Grill": {"tags": {"name": "Bonefish Grill", "amenity": "restaurant"}, "name": "Bonefish Grill", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Boston Pizza": {"tags": {"name": "Boston Pizza", "amenity": "restaurant"}, "name": "Boston Pizza", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Buffalo Grill": {"tags": {"name": "Buffalo Grill", "amenity": "restaurant"}, "name": "Buffalo Grill", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Buffalo Wild Wings": {"tags": {"name": "Buffalo Wild Wings", "amenity": "restaurant"}, "name": "Buffalo Wild Wings", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Bären": {"tags": {"name": "Bären", "amenity": "restaurant"}, "name": "Bären", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/California Pizza Kitchen": {"tags": {"name": "California Pizza Kitchen", "amenity": "restaurant"}, "name": "California Pizza Kitchen", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Canteen": {"tags": {"name": "Canteen", "amenity": "restaurant"}, "name": "Canteen", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Capri": {"tags": {"name": "Capri", "amenity": "restaurant"}, "name": "Capri", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Carluccio's": {"tags": {"name": "Carluccio's", "amenity": "restaurant"}, "name": "Carluccio's", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Carpe Diem": {"tags": {"name": "Carpe Diem", "amenity": "restaurant"}, "name": "Carpe Diem", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Carrabba's Italian Grill": {"tags": {"name": "Carrabba's Italian Grill", "amenity": "restaurant"}, "name": "Carrabba's Italian Grill", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Casa Mia": {"tags": {"name": "Casa Mia", "amenity": "restaurant"}, "name": "Casa Mia", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Casablanca": {"tags": {"name": "Casablanca", "amenity": "restaurant"}, "name": "Casablanca", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Cheesecake Factory": {"tags": {"name": "Cheesecake Factory", "amenity": "restaurant"}, "name": "Cheesecake Factory", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Chifa": {"tags": {"name": "Chifa", "amenity": "restaurant"}, "name": "Chifa", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Chili's": {"tags": {"name": "Chili's", "amenity": "restaurant"}, "name": "Chili's", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/China Buffet": {"tags": {"name": "China Buffet", "amenity": "restaurant"}, "name": "China Buffet", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/China Garden": {"tags": {"name": "China Garden", "amenity": "restaurant"}, "name": "China Garden", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/China House": {"tags": {"name": "China House", "amenity": "restaurant"}, "name": "China House", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/China Town": {"tags": {"name": "China Town", "amenity": "restaurant"}, "name": "China Town", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/China Wok": {"tags": {"name": "China Wok", "amenity": "restaurant"}, "name": "China Wok", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Chiquito": {"tags": {"name": "Chiquito", "amenity": "restaurant"}, "name": "Chiquito", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Chuck E. Cheese's": {"tags": {"name": "Chuck E. Cheese's", "amenity": "restaurant"}, "name": "Chuck E. Cheese's", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Cici's Pizza": {"tags": {"name": "Cici's Pizza", "amenity": "restaurant"}, "name": "Cici's Pizza", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Comedor": {"tags": {"name": "Comedor", "amenity": "restaurant"}, "name": "Comedor", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Comida China": {"tags": {"name": "Comida China", "amenity": "restaurant"}, "name": "Comida China", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Courtepaille": {"tags": {"name": "Courtepaille", "amenity": "restaurant"}, "name": "Courtepaille", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Cracker Barrel": {"tags": {"name": "Cracker Barrel", "amenity": "restaurant"}, "name": "Cracker Barrel", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Da Grasso": {"tags": {"name": "Da Grasso", "amenity": "restaurant"}, "name": "Da Grasso", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Da Vinci": {"tags": {"name": "Da Vinci", "amenity": "restaurant"}, "name": "Da Vinci", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Delphi": {"tags": {"name": "Delphi", "amenity": "restaurant"}, "name": "Delphi", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Denny's": {"tags": {"name": "Denny's", "amenity": "restaurant"}, "name": "Denny's", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Deutsches Haus": {"tags": {"name": "Deutsches Haus", "amenity": "restaurant"}, "name": "Deutsches Haus", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Dionysos": {"tags": {"name": "Dionysos", "amenity": "restaurant"}, "name": "Dionysos", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Dolce Vita": {"tags": {"name": "Dolce Vita", "amenity": "restaurant"}, "name": "Dolce Vita", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Dorfkrug": {"tags": {"name": "Dorfkrug", "amenity": "restaurant"}, "name": "Dorfkrug", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/East Side Mario's": {"tags": {"name": "East Side Mario's", "amenity": "restaurant"}, "name": "East Side Mario's", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/El Greco": {"tags": {"name": "El Greco", "amenity": "restaurant"}, "name": "El Greco", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/El Paso": {"tags": {"name": "El Paso", "amenity": "restaurant"}, "name": "El Paso", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/El Rancho": {"tags": {"name": "El Rancho", "amenity": "restaurant"}, "name": "El Rancho", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Europa": {"tags": {"name": "Europa", "amenity": "restaurant"}, "name": "Europa", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Famous Dave's": {"tags": {"name": "Famous Dave's", "amenity": "restaurant"}, "name": "Famous Dave's", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Flunch": {"tags": {"name": "Flunch", "amenity": "restaurant"}, "name": "Flunch", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Frankie & Benny's": {"tags": {"name": "Frankie & Benny's", "amenity": "restaurant"}, "name": "Frankie & Benny's", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Friendly's": {"tags": {"name": "Friendly's", "amenity": "restaurant"}, "name": "Friendly's", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Gasthaus Krone": {"tags": {"name": "Gasthaus Krone", "amenity": "restaurant"}, "name": "Gasthaus Krone", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Gasthaus zur Linde": {"tags": {"name": "Gasthaus zur Linde", "amenity": "restaurant"}, "name": "Gasthaus zur Linde", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Gasthof zur Post": {"tags": {"name": "Gasthof zur Post", "amenity": "restaurant"}, "name": "Gasthof zur Post", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Golden Corral": {"tags": {"name": "Golden Corral", "amenity": "restaurant"}, "name": "Golden Corral", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Golden Dragon": {"tags": {"name": "Golden Dragon", "amenity": "restaurant"}, "name": "Golden Dragon", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Great Wall": {"tags": {"name": "Great Wall", "amenity": "restaurant"}, "name": "Great Wall", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Grüner Baum": {"tags": {"name": "Grüner Baum", "amenity": "restaurant"}, "name": "Grüner Baum", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Gusto": {"tags": {"name": "Gusto", "amenity": "restaurant"}, "name": "Gusto", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Hard Rock Cafe": {"tags": {"name": "Hard Rock Cafe", "amenity": "restaurant"}, "name": "Hard Rock Cafe", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Harvester": {"tags": {"name": "Harvester", "amenity": "restaurant"}, "name": "Harvester", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Hellas": {"tags": {"name": "Hellas", "amenity": "restaurant"}, "name": "Hellas", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Hippopotamus": {"tags": {"name": "Hippopotamus", "amenity": "restaurant"}, "name": "Hippopotamus", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Hirsch": {"tags": {"name": "Hirsch", "amenity": "restaurant"}, "name": "Hirsch", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Hirschen": {"tags": {"name": "Hirschen", "amenity": "restaurant"}, "name": "Hirschen", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Hong Kong": {"tags": {"name": "Hong Kong", "amenity": "restaurant"}, "name": "Hong Kong", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Hooters": {"tags": {"name": "Hooters", "amenity": "restaurant"}, "name": "Hooters", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/IHOP": {"tags": {"name": "IHOP", "amenity": "restaurant"}, "name": "IHOP", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/IL Патио": {"tags": {"name": "IL Патио", "amenity": "restaurant"}, "name": "IL Патио", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Jason's Deli": {"tags": {"name": "Jason's Deli", "amenity": "restaurant"}, "name": "Jason's Deli", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Joe's Crab Shack": {"tags": {"name": "Joe's Crab Shack", "amenity": "restaurant"}, "name": "Joe's Crab Shack", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Jägerhof": {"tags": {"name": "Jägerhof", "amenity": "restaurant"}, "name": "Jägerhof", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Kantine": {"tags": {"name": "Kantine", "amenity": "restaurant"}, "name": "Kantine", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Kelsey's": {"tags": {"name": "Kelsey's", "amenity": "restaurant"}, "name": "Kelsey's", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Kirchenwirt": {"tags": {"name": "Kirchenwirt", "amenity": "restaurant"}, "name": "Kirchenwirt", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Kreta": {"tags": {"name": "Kreta", "amenity": "restaurant"}, "name": "Kreta", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Kreuz": {"tags": {"name": "Kreuz", "amenity": "restaurant"}, "name": "Kreuz", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Krone": {"tags": {"name": "Krone", "amenity": "restaurant"}, "name": "Krone", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Kudu": {"tags": {"name": "Kudu", "amenity": "restaurant"}, "name": "Kudu", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/L'Escale": {"tags": {"name": "L'Escale", "amenity": "restaurant"}, "name": "L'Escale", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/L'Osteria": {"tags": {"name": "L'Osteria", "amenity": "restaurant"}, "name": "L'Osteria", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Bodega": {"tags": {"name": "La Bodega", "amenity": "restaurant"}, "name": "La Bodega", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Boucherie": {"tags": {"name": "La Boucherie", "amenity": "restaurant"}, "name": "La Boucherie", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Cantina": {"tags": {"name": "La Cantina", "amenity": "restaurant"}, "name": "La Cantina", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Casa": {"tags": {"name": "La Casa", "amenity": "restaurant"}, "name": "La Casa", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Casona": {"tags": {"name": "La Casona", "amenity": "restaurant"}, "name": "La Casona", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Dolce Vita": {"tags": {"name": "La Dolce Vita", "amenity": "restaurant"}, "name": "La Dolce Vita", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Fontana": {"tags": {"name": "La Fontana", "amenity": "restaurant"}, "name": "La Fontana", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Gondola": {"tags": {"name": "La Gondola", "amenity": "restaurant"}, "name": "La Gondola", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Hacienda": {"tags": {"name": "La Hacienda", "amenity": "restaurant"}, "name": "La Hacienda", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Pataterie": {"tags": {"name": "La Pataterie", "amenity": "restaurant"}, "name": "La Pataterie", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Pergola": {"tags": {"name": "La Pergola", "amenity": "restaurant"}, "name": "La Pergola", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Perla": {"tags": {"name": "La Perla", "amenity": "restaurant"}, "name": "La Perla", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Piazza": {"tags": {"name": "La Piazza", "amenity": "restaurant"}, "name": "La Piazza", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Piazzetta": {"tags": {"name": "La Piazzetta", "amenity": "restaurant"}, "name": "La Piazzetta", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Place": {"tags": {"name": "La Place", "amenity": "restaurant"}, "name": "La Place", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Scala": {"tags": {"name": "La Scala", "amenity": "restaurant"}, "name": "La Scala", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Strada": {"tags": {"name": "La Strada", "amenity": "restaurant"}, "name": "La Strada", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Tagliatella": {"tags": {"name": "La Tagliatella", "amenity": "restaurant"}, "name": "La Tagliatella", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Tasca": {"tags": {"name": "La Tasca", "amenity": "restaurant"}, "name": "La Tasca", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Taverna": {"tags": {"name": "La Taverna", "amenity": "restaurant"}, "name": "La Taverna", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Terrasse": {"tags": {"name": "La Terrasse", "amenity": "restaurant"}, "name": "La Terrasse", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Terraza": {"tags": {"name": "La Terraza", "amenity": "restaurant"}, "name": "La Terraza", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Terrazza": {"tags": {"name": "La Terrazza", "amenity": "restaurant"}, "name": "La Terrazza", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/La Trattoria": {"tags": {"name": "La Trattoria", "amenity": "restaurant"}, "name": "La Trattoria", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Lamm": {"tags": {"name": "Lamm", "amenity": "restaurant"}, "name": "Lamm", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Linde": {"tags": {"name": "Linde", "amenity": "restaurant"}, "name": "Linde", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Lindenhof": {"tags": {"name": "Lindenhof", "amenity": "restaurant"}, "name": "Lindenhof", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Little Chef": {"tags": {"name": "Little Chef", "amenity": "restaurant"}, "name": "Little Chef", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Little Italy": {"tags": {"name": "Little Italy", "amenity": "restaurant"}, "name": "Little Italy", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Logan's Roadhouse": {"tags": {"name": "Logan's Roadhouse", "amenity": "restaurant"}, "name": "Logan's Roadhouse", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/LongHorn Steakhouse": {"tags": {"name": "LongHorn Steakhouse", "amenity": "restaurant"}, "name": "LongHorn Steakhouse", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Lotus": {"tags": {"name": "Lotus", "amenity": "restaurant"}, "name": "Lotus", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Léon de Bruxelles": {"tags": {"name": "Léon de Bruxelles", "amenity": "restaurant"}, "name": "Léon de Bruxelles", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Löwen": {"tags": {"name": "Löwen", "amenity": "restaurant"}, "name": "Löwen", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/MK Restaurants": {"tags": {"name": "MK Restaurants", "amenity": "restaurant"}, "name": "MK Restaurants", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Maharaja": {"tags": {"name": "Maharaja", "amenity": "restaurant"}, "name": "Maharaja", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Mamma Mia": {"tags": {"name": "Mamma Mia", "amenity": "restaurant"}, "name": "Mamma Mia", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Mandarin": {"tags": {"name": "Mandarin", "amenity": "restaurant"}, "name": "Mandarin", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Mang Inasal": {"tags": {"name": "Mang Inasal", "amenity": "restaurant"}, "name": "Mang Inasal", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Marco Polo": {"tags": {"name": "Marco Polo", "amenity": "restaurant"}, "name": "Marco Polo", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Marco's Pizza": {"tags": {"name": "Marco's Pizza", "amenity": "restaurant"}, "name": "Marco's Pizza", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/McAlister's Deli": {"tags": {"name": "McAlister's Deli", "amenity": "restaurant"}, "name": "McAlister's Deli", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Mediterraneo": {"tags": {"name": "Mediterraneo", "amenity": "restaurant"}, "name": "Mediterraneo", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Mellow Mushroom": {"tags": {"name": "Mellow Mushroom", "amenity": "restaurant"}, "name": "Mellow Mushroom", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Mensa": {"tags": {"name": "Mensa", "amenity": "restaurant"}, "name": "Mensa", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Milano": {"tags": {"name": "Milano", "amenity": "restaurant"}, "name": "Milano", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Mimi's Cafe": {"tags": {"name": "Mimi's Cafe", "amenity": "restaurant"}, "name": "Mimi's Cafe", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Moe's Southwest Grill": {"tags": {"name": "Moe's Southwest Grill", "amenity": "restaurant"}, "name": "Moe's Southwest Grill", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Mykonos": {"tags": {"name": "Mykonos", "amenity": "restaurant"}, "name": "Mykonos", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Mythos": {"tags": {"name": "Mythos", "amenity": "restaurant"}, "name": "Mythos", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Nando's": {"tags": {"name": "Nando's", "amenity": "restaurant"}, "name": "Nando's", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Noodles & Company": {"tags": {"name": "Noodles & Company", "amenity": "restaurant"}, "name": "Noodles & Company", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/O'Charley's": {"tags": {"name": "O'Charley's", "amenity": "restaurant"}, "name": "O'Charley's", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Oasis": {"tags": {"name": "Oasis", "amenity": "restaurant"}, "name": "Oasis", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Ocean Basket": {"tags": {"name": "Ocean Basket", "amenity": "restaurant"}, "name": "Ocean Basket", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Ochsen": {"tags": {"name": "Ochsen", "amenity": "restaurant"}, "name": "Ochsen", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Old Chicago": {"tags": {"name": "Old Chicago", "amenity": "restaurant"}, "name": "Old Chicago", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Olive Garden": {"tags": {"name": "Olive Garden", "amenity": "restaurant"}, "name": "Olive Garden", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Olympia": {"tags": {"name": "Olympia", "amenity": "restaurant"}, "name": "Olympia", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Osaka": {"tags": {"name": "Osaka", "amenity": "restaurant"}, "name": "Osaka", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Outback Steakhouse": {"tags": {"name": "Outback Steakhouse", "amenity": "restaurant"}, "name": "Outback Steakhouse", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/P.F. Chang's": {"tags": {"name": "P.F. Chang's", "amenity": "restaurant"}, "name": "P.F. Chang's", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Pancake House": {"tags": {"name": "Pancake House", "amenity": "restaurant"}, "name": "Pancake House", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Panda": {"tags": {"name": "Panda", "amenity": "restaurant"}, "name": "Panda", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Panera Bread": {"tags": {"name": "Panera Bread", "amenity": "restaurant"}, "name": "Panera Bread", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Panorama": {"tags": {"name": "Panorama", "amenity": "restaurant"}, "name": "Panorama", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Parrilla": {"tags": {"name": "Parrilla", "amenity": "restaurant"}, "name": "Parrilla", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Peking": {"tags": {"name": "Peking", "amenity": "restaurant"}, "name": "Peking", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Perkins": {"tags": {"name": "Perkins", "amenity": "restaurant"}, "name": "Perkins", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Pinocchio": {"tags": {"name": "Pinocchio", "amenity": "restaurant"}, "name": "Pinocchio", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Pizza Express": {"tags": {"name": "Pizza Express", "amenity": "restaurant"}, "name": "Pizza Express", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Pizza Factory": {"tags": {"name": "Pizza Factory", "amenity": "restaurant"}, "name": "Pizza Factory", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Pizza House": {"tags": {"name": "Pizza House", "amenity": "restaurant"}, "name": "Pizza House", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Pizza Hut": {"tags": {"name": "Pizza Hut", "cuisine": "pizza", "amenity": "restaurant"}, "name": "Pizza Hut", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Pizza Ranch": {"tags": {"name": "Pizza Ranch", "amenity": "restaurant"}, "name": "Pizza Ranch", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Pizzeria Italia": {"tags": {"name": "Pizzeria Italia", "amenity": "restaurant"}, "name": "Pizzeria Italia", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Pizzeria Milano": {"tags": {"name": "Pizzeria Milano", "amenity": "restaurant"}, "name": "Pizzeria Milano", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Pizzeria Napoli": {"tags": {"name": "Pizzeria Napoli", "amenity": "restaurant"}, "name": "Pizzeria Napoli", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Pizzeria Roma": {"tags": {"name": "Pizzeria Roma", "amenity": "restaurant"}, "name": "Pizzeria Roma", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Pizzeria Venezia": {"tags": {"name": "Pizzeria Venezia", "amenity": "restaurant"}, "name": "Pizzeria Venezia", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Poivre Rouge": {"tags": {"name": "Poivre Rouge", "amenity": "restaurant"}, "name": "Poivre Rouge", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Pomodoro": {"tags": {"name": "Pomodoro", "amenity": "restaurant"}, "name": "Pomodoro", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Portofino": {"tags": {"name": "Portofino", "amenity": "restaurant"}, "name": "Portofino", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Poseidon": {"tags": {"name": "Poseidon", "amenity": "restaurant"}, "name": "Poseidon", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Prezzo": {"tags": {"name": "Prezzo", "amenity": "restaurant"}, "name": "Prezzo", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Qdoba Mexican Grill": {"tags": {"name": "Qdoba Mexican Grill", "amenity": "restaurant"}, "name": "Qdoba Mexican Grill", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Ratskeller": {"tags": {"name": "Ratskeller", "amenity": "restaurant"}, "name": "Ratskeller", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Red Lobster": {"tags": {"name": "Red Lobster", "amenity": "restaurant"}, "name": "Red Lobster", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Red Robin": {"tags": {"name": "Red Robin", "amenity": "restaurant"}, "name": "Red Robin", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Restaurante Universitário": {"tags": {"name": "Restaurante Universitário", "amenity": "restaurant"}, "name": "Restaurante Universitário", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Rhodos": {"tags": {"name": "Rhodos", "amenity": "restaurant"}, "name": "Rhodos", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Ristorante Del Arte": {"tags": {"name": "Ristorante Del Arte", "amenity": "restaurant"}, "name": "Ristorante Del Arte", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Roma": {"tags": {"name": "Roma", "amenity": "restaurant"}, "name": "Roma", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Rose": {"tags": {"name": "Rose", "amenity": "restaurant"}, "name": "Rose", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Round Table Pizza": {"tags": {"name": "Round Table Pizza", "amenity": "restaurant"}, "name": "Round Table Pizza", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Ruby Tuesday": {"tags": {"name": "Ruby Tuesday", "amenity": "restaurant"}, "name": "Ruby Tuesday", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Rössle": {"tags": {"name": "Rössle", "amenity": "restaurant"}, "name": "Rössle", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Rössli": {"tags": {"name": "Rössli", "amenity": "restaurant"}, "name": "Rössli", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Saigon": {"tags": {"name": "Saigon", "amenity": "restaurant"}, "name": "Saigon", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Sakura": {"tags": {"name": "Sakura", "amenity": "restaurant"}, "name": "Sakura", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/San Marco": {"tags": {"name": "San Marco", "amenity": "restaurant"}, "name": "San Marco", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Santorini": {"tags": {"name": "Santorini", "amenity": "restaurant"}, "name": "Santorini", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Schwarzer Adler": {"tags": {"name": "Schwarzer Adler", "amenity": "restaurant"}, "name": "Schwarzer Adler", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Schützenhaus": {"tags": {"name": "Schützenhaus", "amenity": "restaurant"}, "name": "Schützenhaus", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Shakey's": {"tags": {"name": "Shakey's", "amenity": "restaurant"}, "name": "Shakey's", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Shalimar": {"tags": {"name": "Shalimar", "amenity": "restaurant"}, "name": "Shalimar", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Shanghai": {"tags": {"name": "Shanghai", "amenity": "restaurant"}, "name": "Shanghai", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Shari's": {"tags": {"name": "Shari's", "amenity": "restaurant"}, "name": "Shari's", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Shoney's": {"tags": {"name": "Shoney's", "amenity": "restaurant"}, "name": "Shoney's", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Sizzler": {"tags": {"name": "Sizzler", "amenity": "restaurant"}, "name": "Sizzler", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Sonne": {"tags": {"name": "Sonne", "amenity": "restaurant"}, "name": "Sonne", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Sphinx": {"tags": {"name": "Sphinx", "amenity": "restaurant"}, "name": "Sphinx", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Sportheim": {"tags": {"name": "Sportheim", "amenity": "restaurant"}, "name": "Sportheim", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Spur": {"tags": {"name": "Spur", "amenity": "restaurant"}, "name": "Spur", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Steak 'n Shake": {"tags": {"name": "Steak 'n Shake", "cuisine": "burger", "amenity": "restaurant"}, "name": "Steak 'n Shake", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Sternen": {"tags": {"name": "Sternen", "amenity": "restaurant"}, "name": "Sternen", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Sunset Grill": {"tags": {"name": "Sunset Grill", "amenity": "restaurant"}, "name": "Sunset Grill", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Sushi": {"tags": {"name": "Sushi", "amenity": "restaurant"}, "name": "Sushi", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Sushi Bar": {"tags": {"name": "Sushi Bar", "amenity": "restaurant"}, "name": "Sushi Bar", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Swiss Chalet": {"tags": {"name": "Swiss Chalet", "amenity": "restaurant"}, "name": "Swiss Chalet", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Syrtaki": {"tags": {"name": "Syrtaki", "amenity": "restaurant"}, "name": "Syrtaki", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/TGI Friday's": {"tags": {"name": "TGI Friday's", "amenity": "restaurant"}, "name": "TGI Friday's", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Taj Mahal": {"tags": {"name": "Taj Mahal", "amenity": "restaurant"}, "name": "Taj Mahal", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Taste of India": {"tags": {"name": "Taste of India", "amenity": "restaurant"}, "name": "Taste of India", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Taverna": {"tags": {"name": "Taverna", "amenity": "restaurant"}, "name": "Taverna", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Texas Roadhouse": {"tags": {"name": "Texas Roadhouse", "amenity": "restaurant"}, "name": "Texas Roadhouse", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/The Cheesecake Factory": {"tags": {"name": "The Cheesecake Factory", "amenity": "restaurant"}, "name": "The Cheesecake Factory", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Toby Carvery": {"tags": {"name": "Toby Carvery", "amenity": "restaurant"}, "name": "Toby Carvery", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Tony Roma's": {"tags": {"name": "Tony Roma's", "amenity": "restaurant"}, "name": "Tony Roma's", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Toscana": {"tags": {"name": "Toscana", "amenity": "restaurant"}, "name": "Toscana", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Trattoria": {"tags": {"name": "Trattoria", "amenity": "restaurant"}, "name": "Trattoria", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Traube": {"tags": {"name": "Traube", "amenity": "restaurant"}, "name": "Traube", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Vapiano": {"tags": {"name": "Vapiano", "amenity": "restaurant"}, "name": "Vapiano", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Venezia": {"tags": {"name": "Venezia", "amenity": "restaurant"}, "name": "Venezia", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Village Inn": {"tags": {"name": "Village Inn", "amenity": "restaurant"}, "name": "Village Inn", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Vips": {"tags": {"name": "Vips", "amenity": "restaurant"}, "name": "Vips", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Waffle House": {"tags": {"name": "Waffle House", "amenity": "restaurant"}, "name": "Waffle House", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Wagamama": {"tags": {"name": "Wagamama", "amenity": "restaurant"}, "name": "Wagamama", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Waldschänke": {"tags": {"name": "Waldschänke", "amenity": "restaurant"}, "name": "Waldschänke", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Warung": {"tags": {"name": "Warung", "amenity": "restaurant"}, "name": "Warung", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Wasabi": {"tags": {"name": "Wasabi", "amenity": "restaurant"}, "name": "Wasabi", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Zizzi": {"tags": {"name": "Zizzi", "amenity": "restaurant"}, "name": "Zizzi", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Zorbas": {"tags": {"name": "Zorbas", "amenity": "restaurant"}, "name": "Zorbas", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Zum Hirschen": {"tags": {"name": "Zum Hirschen", "amenity": "restaurant"}, "name": "Zum Hirschen", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Zum Löwen": {"tags": {"name": "Zum Löwen", "amenity": "restaurant"}, "name": "Zum Löwen", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Zur Krone": {"tags": {"name": "Zur Krone", "amenity": "restaurant"}, "name": "Zur Krone", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Zur Linde": {"tags": {"name": "Zur Linde", "amenity": "restaurant"}, "name": "Zur Linde", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Zur Post": {"tags": {"name": "Zur Post", "amenity": "restaurant"}, "name": "Zur Post", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Zur Sonne": {"tags": {"name": "Zur Sonne", "amenity": "restaurant"}, "name": "Zur Sonne", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Евразия": {"tags": {"name": "Евразия", "amenity": "restaurant"}, "name": "Евразия", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Ресторан": {"tags": {"name": "Ресторан", "amenity": "restaurant"}, "name": "Ресторан", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Тануки": {"tags": {"name": "Тануки", "amenity": "restaurant"}, "name": "Тануки", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/Якитория": {"tags": {"name": "Якитория", "amenity": "restaurant"}, "name": "Якитория", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/رستوران": {"tags": {"name": "رستوران", "amenity": "restaurant"}, "name": "رستوران", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/مطعم": {"tags": {"name": "مطعم", "amenity": "restaurant"}, "name": "مطعم", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/はま寿司": {"tags": {"name": "はま寿司", "amenity": "restaurant"}, "name": "はま寿司", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/びっくりドンキー": {"tags": {"name": "びっくりドンキー", "amenity": "restaurant"}, "name": "びっくりドンキー", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/やよい軒": {"tags": {"name": "やよい軒", "amenity": "restaurant"}, "name": "やよい軒", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/ガスト": {"tags": {"name": "ガスト", "name:en": "Gusto", "amenity": "restaurant"}, "name": "ガスト", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/ココス": {"tags": {"name": "ココス", "amenity": "restaurant"}, "name": "ココス", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/サイゼリア": {"tags": {"name": "サイゼリア", "amenity": "restaurant"}, "name": "サイゼリア", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/サイゼリヤ": {"tags": {"name": "サイゼリヤ", "amenity": "restaurant"}, "name": "サイゼリヤ", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/ジョイフル": {"tags": {"name": "ジョイフル", "amenity": "restaurant"}, "name": "ジョイフル", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/ジョナサン": {"tags": {"name": "ジョナサン", "amenity": "restaurant"}, "name": "ジョナサン", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/ジョリーパスタ": {"tags": {"name": "ジョリーパスタ", "amenity": "restaurant"}, "name": "ジョリーパスタ", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/デニーズ": {"tags": {"name": "デニーズ", "amenity": "restaurant"}, "name": "デニーズ", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/バーミヤン": {"tags": {"name": "バーミヤン", "amenity": "restaurant"}, "name": "バーミヤン", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/ロイヤルホスト": {"tags": {"name": "ロイヤルホスト", "amenity": "restaurant"}, "name": "ロイヤルホスト", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/丸亀製麺": {"tags": {"name": "丸亀製麺", "amenity": "restaurant"}, "name": "丸亀製麺", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/八方雲集": {"tags": {"name": "八方雲集", "amenity": "restaurant"}, "name": "八方雲集", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/夢庵": {"tags": {"name": "夢庵", "amenity": "restaurant"}, "name": "夢庵", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/大戸屋": {"tags": {"name": "大戸屋", "amenity": "restaurant"}, "name": "大戸屋", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/大阪王将": {"tags": {"name": "大阪王将", "amenity": "restaurant"}, "name": "大阪王将", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/天下一品": {"tags": {"name": "天下一品", "amenity": "restaurant"}, "name": "天下一品", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/安楽亭": {"tags": {"name": "安楽亭", "amenity": "restaurant"}, "name": "安楽亭", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/牛角": {"tags": {"name": "牛角", "amenity": "restaurant"}, "name": "牛角", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/食堂": {"tags": {"name": "食堂", "amenity": "restaurant"}, "name": "食堂", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/餃子の王将": {"tags": {"name": "餃子の王将", "amenity": "restaurant"}, "name": "餃子の王将", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/restaurant/바다횟집 (Bada Fish Restaurant)": {"tags": {"name": "바다횟집 (Bada Fish Restaurant)", "amenity": "restaurant"}, "name": "바다횟집 (Bada Fish Restaurant)", "icon": "maki-restaurant", "geometry": ["point", "area"], "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "capacity", "takeaway", "delivery", "smoking", "outdoor_seating"], "suggestion": true},
+ "amenity/school/Adolfo Lopez Mateos": {"tags": {"name": "Adolfo Lopez Mateos", "amenity": "school"}, "name": "Adolfo Lopez Mateos", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Agustin Ya�ez": {"tags": {"name": "Agustin Ya�ez", "amenity": "school"}, "name": "Agustin Ya�ez", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Albert-Schweitzer-Schule": {"tags": {"name": "Albert-Schweitzer-Schule", "amenity": "school"}, "name": "Albert-Schweitzer-Schule", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Amado Nervo": {"tags": {"name": "Amado Nervo", "amenity": "school"}, "name": "Amado Nervo", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Astrid-Lindgren-Schule": {"tags": {"name": "Astrid-Lindgren-Schule", "amenity": "school"}, "name": "Astrid-Lindgren-Schule", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Benito Juarez": {"tags": {"name": "Benito Juarez", "amenity": "school"}, "name": "Benito Juarez", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Brown School": {"tags": {"name": "Brown School", "amenity": "school"}, "name": "Brown School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/CEM": {"tags": {"name": "CEM", "amenity": "school"}, "name": "CEM", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Center School": {"tags": {"name": "Center School", "amenity": "school"}, "name": "Center School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Central Elementary School": {"tags": {"name": "Central Elementary School", "amenity": "school"}, "name": "Central Elementary School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Central High School": {"tags": {"name": "Central High School", "amenity": "school"}, "name": "Central High School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Central School": {"tags": {"name": "Central School", "amenity": "school"}, "name": "Central School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Colegio San José": {"tags": {"name": "Colegio San José", "amenity": "school"}, "name": "Colegio San José", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Collège Jean Moulin": {"tags": {"name": "Collège Jean Moulin", "amenity": "school"}, "name": "Collège Jean Moulin", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Collège privé Saint-Joseph": {"tags": {"name": "Collège privé Saint-Joseph", "amenity": "school"}, "name": "Collège privé Saint-Joseph", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Cuauhtemoc": {"tags": {"name": "Cuauhtemoc", "amenity": "school"}, "name": "Cuauhtemoc", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Curso Comunitario": {"tags": {"name": "Curso Comunitario", "amenity": "school"}, "name": "Curso Comunitario", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Cursos Comunitarios": {"tags": {"name": "Cursos Comunitarios", "amenity": "school"}, "name": "Cursos Comunitarios", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/EPP": {"tags": {"name": "EPP", "amenity": "school"}, "name": "EPP", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Emiliano Zapata": {"tags": {"name": "Emiliano Zapata", "amenity": "school"}, "name": "Emiliano Zapata", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Fairview Elementary School": {"tags": {"name": "Fairview Elementary School", "amenity": "school"}, "name": "Fairview Elementary School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Fairview School": {"tags": {"name": "Fairview School", "amenity": "school"}, "name": "Fairview School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Francisco I Madero": {"tags": {"name": "Francisco I Madero", "amenity": "school"}, "name": "Francisco I Madero", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Francisco I. Madero": {"tags": {"name": "Francisco I. Madero", "amenity": "school"}, "name": "Francisco I. Madero", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Francisco Villa": {"tags": {"name": "Francisco Villa", "amenity": "school"}, "name": "Francisco Villa", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Franklin Elementary School": {"tags": {"name": "Franklin Elementary School", "amenity": "school"}, "name": "Franklin Elementary School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Franklin School": {"tags": {"name": "Franklin School", "amenity": "school"}, "name": "Franklin School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Garfield Elementary School": {"tags": {"name": "Garfield Elementary School", "amenity": "school"}, "name": "Garfield Elementary School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Garfield School": {"tags": {"name": "Garfield School", "amenity": "school"}, "name": "Garfield School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Gimnazjum nr 1": {"tags": {"name": "Gimnazjum nr 1", "amenity": "school"}, "name": "Gimnazjum nr 1", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Government School": {"tags": {"name": "Government School", "amenity": "school"}, "name": "Government School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Gregorio Torres Quintero": {"tags": {"name": "Gregorio Torres Quintero", "amenity": "school"}, "name": "Gregorio Torres Quintero", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Groupe Scolaire": {"tags": {"name": "Groupe Scolaire", "amenity": "school"}, "name": "Groupe Scolaire", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Guadalupe Victoria": {"tags": {"name": "Guadalupe Victoria", "amenity": "school"}, "name": "Guadalupe Victoria", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Highland School": {"tags": {"name": "Highland School", "amenity": "school"}, "name": "Highland School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Hillcrest Elementary School": {"tags": {"name": "Hillcrest Elementary School", "amenity": "school"}, "name": "Hillcrest Elementary School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Holy Cross School": {"tags": {"name": "Holy Cross School", "amenity": "school"}, "name": "Holy Cross School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Holy Family School": {"tags": {"name": "Holy Family School", "amenity": "school"}, "name": "Holy Family School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Holy Trinity School": {"tags": {"name": "Holy Trinity School", "amenity": "school"}, "name": "Holy Trinity School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Ignacio Allende": {"tags": {"name": "Ignacio Allende", "amenity": "school"}, "name": "Ignacio Allende", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Ignacio Zaragoza": {"tags": {"name": "Ignacio Zaragoza", "amenity": "school"}, "name": "Ignacio Zaragoza", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Immaculate Conception School": {"tags": {"name": "Immaculate Conception School", "amenity": "school"}, "name": "Immaculate Conception School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Jackson Elementary School": {"tags": {"name": "Jackson Elementary School", "amenity": "school"}, "name": "Jackson Elementary School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Jackson School": {"tags": {"name": "Jackson School", "amenity": "school"}, "name": "Jackson School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Jefferson Elementary School": {"tags": {"name": "Jefferson Elementary School", "amenity": "school"}, "name": "Jefferson Elementary School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Jefferson School": {"tags": {"name": "Jefferson School", "amenity": "school"}, "name": "Jefferson School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Jose Clemente Orozco": {"tags": {"name": "Jose Clemente Orozco", "amenity": "school"}, "name": "Jose Clemente Orozco", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Jose Ma Morelos Y Pavon": {"tags": {"name": "Jose Ma Morelos Y Pavon", "amenity": "school"}, "name": "Jose Ma Morelos Y Pavon", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Jose Vasconcelos": {"tags": {"name": "Jose Vasconcelos", "amenity": "school"}, "name": "Jose Vasconcelos", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Josefa Ortiz De Dominguez": {"tags": {"name": "Josefa Ortiz De Dominguez", "amenity": "school"}, "name": "Josefa Ortiz De Dominguez", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Juan Escutia": {"tags": {"name": "Juan Escutia", "amenity": "school"}, "name": "Juan Escutia", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Justo Sierra": {"tags": {"name": "Justo Sierra", "amenity": "school"}, "name": "Justo Sierra", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Kumon": {"tags": {"name": "Kumon", "amenity": "school"}, "name": "Kumon", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Lazaro Cardenas": {"tags": {"name": "Lazaro Cardenas", "amenity": "school"}, "name": "Lazaro Cardenas", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Lazaro Cardenas Del Rio": {"tags": {"name": "Lazaro Cardenas Del Rio", "amenity": "school"}, "name": "Lazaro Cardenas Del Rio", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Leona Vicario": {"tags": {"name": "Leona Vicario", "amenity": "school"}, "name": "Leona Vicario", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Liberty Elementary School": {"tags": {"name": "Liberty Elementary School", "amenity": "school"}, "name": "Liberty Elementary School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Liberty School": {"tags": {"name": "Liberty School", "amenity": "school"}, "name": "Liberty School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Lincoln Elementary School": {"tags": {"name": "Lincoln Elementary School", "amenity": "school"}, "name": "Lincoln Elementary School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Lincoln School": {"tags": {"name": "Lincoln School", "amenity": "school"}, "name": "Lincoln School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Longfellow Elementary School": {"tags": {"name": "Longfellow Elementary School", "amenity": "school"}, "name": "Longfellow Elementary School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Longfellow School": {"tags": {"name": "Longfellow School", "amenity": "school"}, "name": "Longfellow School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Madison Elementary School": {"tags": {"name": "Madison Elementary School", "amenity": "school"}, "name": "Madison Elementary School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Manuel Lopez Cotilla": {"tags": {"name": "Manuel Lopez Cotilla", "amenity": "school"}, "name": "Manuel Lopez Cotilla", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Maple Grove School": {"tags": {"name": "Maple Grove School", "amenity": "school"}, "name": "Maple Grove School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/McKinley Elementary School": {"tags": {"name": "McKinley Elementary School", "amenity": "school"}, "name": "McKinley Elementary School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/McKinley School": {"tags": {"name": "McKinley School", "amenity": "school"}, "name": "McKinley School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Miguel Hidalgo": {"tags": {"name": "Miguel Hidalgo", "amenity": "school"}, "name": "Miguel Hidalgo", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Miguel Hidalgo Y Costilla": {"tags": {"name": "Miguel Hidalgo Y Costilla", "amenity": "school"}, "name": "Miguel Hidalgo Y Costilla", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Miller School": {"tags": {"name": "Miller School", "amenity": "school"}, "name": "Miller School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Mount Pleasant School": {"tags": {"name": "Mount Pleasant School", "amenity": "school"}, "name": "Mount Pleasant School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Mount Zion School": {"tags": {"name": "Mount Zion School", "amenity": "school"}, "name": "Mount Zion School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Mountain View Elementary School": {"tags": {"name": "Mountain View Elementary School", "amenity": "school"}, "name": "Mountain View Elementary School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/New Hope School": {"tags": {"name": "New Hope School", "amenity": "school"}, "name": "New Hope School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Nicolas Bravo": {"tags": {"name": "Nicolas Bravo", "amenity": "school"}, "name": "Nicolas Bravo", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Ni�os Heroes": {"tags": {"name": "Ni�os Heroes", "amenity": "school"}, "name": "Ni�os Heroes", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Nombre En Tramite": {"tags": {"name": "Nombre En Tramite", "amenity": "school"}, "name": "Nombre En Tramite", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/North Elementary School": {"tags": {"name": "North Elementary School", "amenity": "school"}, "name": "North Elementary School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Oak Grove School": {"tags": {"name": "Oak Grove School", "amenity": "school"}, "name": "Oak Grove School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Pedro Moreno": {"tags": {"name": "Pedro Moreno", "amenity": "school"}, "name": "Pedro Moreno", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Pestalozzischule": {"tags": {"name": "Pestalozzischule", "amenity": "school"}, "name": "Pestalozzischule", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Pine Grove School": {"tags": {"name": "Pine Grove School", "amenity": "school"}, "name": "Pine Grove School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Pleasant Hill School": {"tags": {"name": "Pleasant Hill School", "amenity": "school"}, "name": "Pleasant Hill School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Pleasant Valley School": {"tags": {"name": "Pleasant Valley School", "amenity": "school"}, "name": "Pleasant Valley School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Pleasant View School": {"tags": {"name": "Pleasant View School", "amenity": "school"}, "name": "Pleasant View School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Primaria Comunitaria": {"tags": {"name": "Primaria Comunitaria", "amenity": "school"}, "name": "Primaria Comunitaria", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Ramon Corona": {"tags": {"name": "Ramon Corona", "amenity": "school"}, "name": "Ramon Corona", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Ricardo Flores Magon": {"tags": {"name": "Ricardo Flores Magon", "amenity": "school"}, "name": "Ricardo Flores Magon", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Riverside School": {"tags": {"name": "Riverside School", "amenity": "school"}, "name": "Riverside School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Roosevelt Elementary School": {"tags": {"name": "Roosevelt Elementary School", "amenity": "school"}, "name": "Roosevelt Elementary School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Roosevelt School": {"tags": {"name": "Roosevelt School", "amenity": "school"}, "name": "Roosevelt School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/SD": {"tags": {"name": "SD", "amenity": "school"}, "name": "SD", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/SDN": {"tags": {"name": "SDN", "amenity": "school"}, "name": "SDN", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Sacred Heart School": {"tags": {"name": "Sacred Heart School", "amenity": "school"}, "name": "Sacred Heart School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Saint Francis School": {"tags": {"name": "Saint Francis School", "amenity": "school"}, "name": "Saint Francis School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Saint James School": {"tags": {"name": "Saint James School", "amenity": "school"}, "name": "Saint James School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Saint Johns School": {"tags": {"name": "Saint Johns School", "amenity": "school"}, "name": "Saint Johns School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Saint Joseph School": {"tags": {"name": "Saint Joseph School", "amenity": "school"}, "name": "Saint Joseph School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Saint Josephs School": {"tags": {"name": "Saint Josephs School", "amenity": "school"}, "name": "Saint Josephs School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Saint Kizito Primary School": {"tags": {"name": "Saint Kizito Primary School", "amenity": "school"}, "name": "Saint Kizito Primary School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Saint Mary School": {"tags": {"name": "Saint Mary School", "amenity": "school"}, "name": "Saint Mary School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Saint Marys School": {"tags": {"name": "Saint Marys School", "amenity": "school"}, "name": "Saint Marys School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Saint Patricks School": {"tags": {"name": "Saint Patricks School", "amenity": "school"}, "name": "Saint Patricks School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Saint Paul School": {"tags": {"name": "Saint Paul School", "amenity": "school"}, "name": "Saint Paul School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Saint Pauls School": {"tags": {"name": "Saint Pauls School", "amenity": "school"}, "name": "Saint Pauls School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Saint Peters School": {"tags": {"name": "Saint Peters School", "amenity": "school"}, "name": "Saint Peters School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Schillerschule": {"tags": {"name": "Schillerschule", "amenity": "school"}, "name": "Schillerschule", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/School Number 1": {"tags": {"name": "School Number 1", "amenity": "school"}, "name": "School Number 1", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/School Number 2": {"tags": {"name": "School Number 2", "amenity": "school"}, "name": "School Number 2", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/School Number 3": {"tags": {"name": "School Number 3", "amenity": "school"}, "name": "School Number 3", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/School Number 4": {"tags": {"name": "School Number 4", "amenity": "school"}, "name": "School Number 4", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Smith School": {"tags": {"name": "Smith School", "amenity": "school"}, "name": "Smith School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/South Elementary School": {"tags": {"name": "South Elementary School", "amenity": "school"}, "name": "South Elementary School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Sunnyside School": {"tags": {"name": "Sunnyside School", "amenity": "school"}, "name": "Sunnyside School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Szkoła Podstawowa nr 1": {"tags": {"name": "Szkoła Podstawowa nr 1", "amenity": "school"}, "name": "Szkoła Podstawowa nr 1", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Szkoła Podstawowa nr 2": {"tags": {"name": "Szkoła Podstawowa nr 2", "amenity": "school"}, "name": "Szkoła Podstawowa nr 2", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Szkoła Podstawowa nr 3": {"tags": {"name": "Szkoła Podstawowa nr 3", "amenity": "school"}, "name": "Szkoła Podstawowa nr 3", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Trinity School": {"tags": {"name": "Trinity School", "amenity": "school"}, "name": "Trinity School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/UNIDAD EDUCATIVA": {"tags": {"name": "UNIDAD EDUCATIVA", "amenity": "school"}, "name": "UNIDAD EDUCATIVA", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Union School": {"tags": {"name": "Union School", "amenity": "school"}, "name": "Union School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Valentin Gomez Farias": {"tags": {"name": "Valentin Gomez Farias", "amenity": "school"}, "name": "Valentin Gomez Farias", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Venustiano Carranza": {"tags": {"name": "Venustiano Carranza", "amenity": "school"}, "name": "Venustiano Carranza", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Vicente Guerrero": {"tags": {"name": "Vicente Guerrero", "amenity": "school"}, "name": "Vicente Guerrero", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Volkshochschule": {"tags": {"name": "Volkshochschule", "amenity": "school"}, "name": "Volkshochschule", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Volksschule": {"tags": {"name": "Volksschule", "amenity": "school"}, "name": "Volksschule", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Washington Elementary School": {"tags": {"name": "Washington Elementary School", "amenity": "school"}, "name": "Washington Elementary School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Washington School": {"tags": {"name": "Washington School", "amenity": "school"}, "name": "Washington School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/West Elementary School": {"tags": {"name": "West Elementary School", "amenity": "school"}, "name": "West Elementary School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/White School": {"tags": {"name": "White School", "amenity": "school"}, "name": "White School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Wilson Elementary School": {"tags": {"name": "Wilson Elementary School", "amenity": "school"}, "name": "Wilson Elementary School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Wilson School": {"tags": {"name": "Wilson School", "amenity": "school"}, "name": "Wilson School", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Általános iskola": {"tags": {"name": "Általános iskola", "amenity": "school"}, "name": "Általános iskola", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/École Jules Ferry": {"tags": {"name": "École Jules Ferry", "amenity": "school"}, "name": "École Jules Ferry", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/École Notre-Dame": {"tags": {"name": "École Notre-Dame", "amenity": "school"}, "name": "École Notre-Dame", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/École Saint-Joseph": {"tags": {"name": "École Saint-Joseph", "amenity": "school"}, "name": "École Saint-Joseph", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/École primaire Jean Jaurès": {"tags": {"name": "École primaire Jean Jaurès", "amenity": "school"}, "name": "École primaire Jean Jaurès", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/École primaire Jules Ferry": {"tags": {"name": "École primaire Jules Ferry", "amenity": "school"}, "name": "École primaire Jules Ferry", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/École primaire privée Notre-Dame": {"tags": {"name": "École primaire privée Notre-Dame", "amenity": "school"}, "name": "École primaire privée Notre-Dame", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/École primaire privée Saint-Joseph": {"tags": {"name": "École primaire privée Saint-Joseph", "amenity": "school"}, "name": "École primaire privée Saint-Joseph", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/École primaire privée Sainte-Marie": {"tags": {"name": "École primaire privée Sainte-Marie", "amenity": "school"}, "name": "École primaire privée Sainte-Marie", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/École élémentaire Jules Ferry": {"tags": {"name": "École élémentaire Jules Ferry", "amenity": "school"}, "name": "École élémentaire Jules Ferry", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Școala Generală": {"tags": {"name": "Școala Generală", "amenity": "school"}, "name": "Școala Generală", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Școală": {"tags": {"name": "Școală", "amenity": "school"}, "name": "Școală", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Вечерняя школа": {"tags": {"name": "Вечерняя школа", "amenity": "school"}, "name": "Вечерняя школа", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Гимназия №1": {"tags": {"name": "Гимназия №1", "amenity": "school"}, "name": "Гимназия №1", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Средняя школа №1": {"tags": {"name": "Средняя школа №1", "amenity": "school"}, "name": "Средняя школа №1", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Средняя школа №2": {"tags": {"name": "Средняя школа №2", "amenity": "school"}, "name": "Средняя школа №2", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Средняя школа №3": {"tags": {"name": "Средняя школа №3", "amenity": "school"}, "name": "Средняя школа №3", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа № 1": {"tags": {"name": "Школа № 1", "amenity": "school"}, "name": "Школа № 1", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа № 2": {"tags": {"name": "Школа № 2", "amenity": "school"}, "name": "Школа № 2", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа № 3": {"tags": {"name": "Школа № 3", "amenity": "school"}, "name": "Школа № 3", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа № 4": {"tags": {"name": "Школа № 4", "amenity": "school"}, "name": "Школа № 4", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа № 5": {"tags": {"name": "Школа № 5", "amenity": "school"}, "name": "Школа № 5", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №1": {"tags": {"name": "Школа №1", "amenity": "school"}, "name": "Школа №1", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №10": {"tags": {"name": "Школа №10", "amenity": "school"}, "name": "Школа №10", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №11": {"tags": {"name": "Школа №11", "amenity": "school"}, "name": "Школа №11", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №12": {"tags": {"name": "Школа №12", "amenity": "school"}, "name": "Школа №12", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №13": {"tags": {"name": "Школа №13", "amenity": "school"}, "name": "Школа №13", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №14": {"tags": {"name": "Школа №14", "amenity": "school"}, "name": "Школа №14", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №15": {"tags": {"name": "Школа №15", "amenity": "school"}, "name": "Школа №15", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №16": {"tags": {"name": "Школа №16", "amenity": "school"}, "name": "Школа №16", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №17": {"tags": {"name": "Школа №17", "amenity": "school"}, "name": "Школа №17", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №18": {"tags": {"name": "Школа №18", "amenity": "school"}, "name": "Школа №18", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №19": {"tags": {"name": "Школа №19", "amenity": "school"}, "name": "Школа №19", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №2": {"tags": {"name": "Школа №2", "amenity": "school"}, "name": "Школа №2", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №20": {"tags": {"name": "Школа №20", "amenity": "school"}, "name": "Школа №20", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №21": {"tags": {"name": "Школа №21", "amenity": "school"}, "name": "Школа №21", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №22": {"tags": {"name": "Школа №22", "amenity": "school"}, "name": "Школа №22", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №23": {"tags": {"name": "Школа №23", "amenity": "school"}, "name": "Школа №23", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №24": {"tags": {"name": "Школа №24", "amenity": "school"}, "name": "Школа №24", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №25": {"tags": {"name": "Школа №25", "amenity": "school"}, "name": "Школа №25", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №26": {"tags": {"name": "Школа №26", "amenity": "school"}, "name": "Школа №26", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №27": {"tags": {"name": "Школа №27", "amenity": "school"}, "name": "Школа №27", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №28": {"tags": {"name": "Школа №28", "amenity": "school"}, "name": "Школа №28", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №3": {"tags": {"name": "Школа №3", "amenity": "school"}, "name": "Школа №3", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №31": {"tags": {"name": "Школа №31", "amenity": "school"}, "name": "Школа №31", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №35": {"tags": {"name": "Школа №35", "amenity": "school"}, "name": "Школа №35", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №4": {"tags": {"name": "Школа №4", "amenity": "school"}, "name": "Школа №4", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №5": {"tags": {"name": "Школа №5", "amenity": "school"}, "name": "Школа №5", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №6": {"tags": {"name": "Школа №6", "amenity": "school"}, "name": "Школа №6", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №7": {"tags": {"name": "Школа №7", "amenity": "school"}, "name": "Школа №7", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №8": {"tags": {"name": "Школа №8", "amenity": "school"}, "name": "Школа №8", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/Школа №9": {"tags": {"name": "Школа №9", "amenity": "school"}, "name": "Школа №9", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/مدرسة": {"tags": {"name": "مدرسة", "amenity": "school"}, "name": "مدرسة", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/مدرسه": {"tags": {"name": "مدرسه", "amenity": "school"}, "name": "مدرسه", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/市立南中学校": {"tags": {"name": "市立南中学校", "amenity": "school"}, "name": "市立南中学校", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/市立南小学校": {"tags": {"name": "市立南小学校", "amenity": "school"}, "name": "市立南小学校", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/school/市立東中学校": {"tags": {"name": "市立東中学校", "amenity": "school"}, "name": "市立東中学校", "icon": "maki-school", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "religion", "denomination"], "suggestion": true},
+ "amenity/social_facility/Safe Haven": {"tags": {"name": "Safe Haven", "amenity": "social_facility"}, "name": "Safe Haven", "icon": "temaki-social_facility", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "social_facility", "social_facility_for", "opening_hours", "wheelchair"], "suggestion": true},
+ "amenity/social_facility/Детский дом": {"tags": {"name": "Детский дом", "amenity": "social_facility"}, "name": "Детский дом", "icon": "temaki-social_facility", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "social_facility", "social_facility_for", "opening_hours", "wheelchair"], "suggestion": true},
+ "amenity/social_facility/Социальный участковый": {"tags": {"name": "Социальный участковый", "amenity": "social_facility"}, "name": "Социальный участковый", "icon": "temaki-social_facility", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "social_facility", "social_facility_for", "opening_hours", "wheelchair"], "suggestion": true},
+ "amenity/theatre/Amfiteatr": {"tags": {"name": "Amfiteatr", "amenity": "theatre"}, "name": "Amfiteatr", "icon": "maki-theatre", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area"], "suggestion": true},
+ "amenity/theatre/Amphitheater": {"tags": {"name": "Amphitheater", "amenity": "theatre"}, "name": "Amphitheater", "icon": "maki-theatre", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area"], "suggestion": true},
+ "amenity/theatre/Amphitheatre": {"tags": {"name": "Amphitheatre", "amenity": "theatre"}, "name": "Amphitheatre", "icon": "maki-theatre", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area"], "suggestion": true},
+ "amenity/theatre/Freilichtbühne": {"tags": {"name": "Freilichtbühne", "amenity": "theatre"}, "name": "Freilichtbühne", "icon": "maki-theatre", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area"], "suggestion": true},
+ "amenity/theatre/Teatro Comunale": {"tags": {"name": "Teatro Comunale", "amenity": "theatre"}, "name": "Teatro Comunale", "icon": "maki-theatre", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area"], "suggestion": true},
+ "leisure/fitness_centre/LA Fitness": {"tags": {"name": "LA Fitness", "leisure": "fitness_centre"}, "name": "LA Fitness", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "address", "building_area", "opening_hours"], "suggestion": true},
+ "leisure/fitness_centre/Planet Fitness": {"tags": {"name": "Planet Fitness", "leisure": "fitness_centre"}, "name": "Planet Fitness", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "address", "building_area", "opening_hours"], "suggestion": true},
+ "leisure/fitness_centre/Snap Fitness": {"tags": {"name": "Snap Fitness", "leisure": "fitness_centre"}, "name": "Snap Fitness", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "address", "building_area", "opening_hours"], "suggestion": true},
+ "leisure/playground/Çocuk Parkı": {"tags": {"name": "Çocuk Parkı", "leisure": "playground"}, "name": "Çocuk Parkı", "icon": "maki-playground", "geometry": ["point", "area"], "fields": ["name", "operator", "surface", "playground/max_age", "playground/min_age", "access_simple"], "suggestion": true},
+ "leisure/playground/놀이터": {"tags": {"name": "놀이터", "leisure": "playground"}, "name": "놀이터", "icon": "maki-playground", "geometry": ["point", "area"], "fields": ["name", "operator", "surface", "playground/max_age", "playground/min_age", "access_simple"], "suggestion": true},
+ "leisure/sports_centre/Anytime Fitness": {"tags": {"name": "Anytime Fitness", "leisure": "sports_centre"}, "name": "Anytime Fitness", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "building", "address", "opening_hours"], "suggestion": true},
+ "leisure/sports_centre/Complejo Municipal de Deportes": {"tags": {"name": "Complejo Municipal de Deportes", "leisure": "sports_centre"}, "name": "Complejo Municipal de Deportes", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "building", "address", "opening_hours"], "suggestion": true},
+ "leisure/sports_centre/Complexe Sportif": {"tags": {"name": "Complexe Sportif", "leisure": "sports_centre"}, "name": "Complexe Sportif", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "building", "address", "opening_hours"], "suggestion": true},
+ "leisure/sports_centre/Curves": {"tags": {"name": "Curves", "leisure": "sports_centre"}, "name": "Curves", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "building", "address", "opening_hours"], "suggestion": true},
+ "leisure/sports_centre/Fitness First": {"tags": {"name": "Fitness First", "leisure": "sports_centre"}, "name": "Fitness First", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "building", "address", "opening_hours"], "suggestion": true},
+ "leisure/sports_centre/Gold's Gym": {"tags": {"name": "Gold's Gym", "leisure": "sports_centre"}, "name": "Gold's Gym", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "building", "address", "opening_hours"], "suggestion": true},
+ "leisure/sports_centre/Kieser Training": {"tags": {"name": "Kieser Training", "leisure": "sports_centre"}, "name": "Kieser Training", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "building", "address", "opening_hours"], "suggestion": true},
+ "leisure/sports_centre/Life Time Fitness": {"tags": {"name": "Life Time Fitness", "leisure": "sports_centre"}, "name": "Life Time Fitness", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "building", "address", "opening_hours"], "suggestion": true},
+ "leisure/sports_centre/McFit": {"tags": {"name": "McFit", "leisure": "sports_centre"}, "name": "McFit", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "building", "address", "opening_hours"], "suggestion": true},
+ "leisure/sports_centre/Mrs. Sporty": {"tags": {"name": "Mrs. Sporty", "leisure": "sports_centre"}, "name": "Mrs. Sporty", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "building", "address", "opening_hours"], "suggestion": true},
+ "leisure/sports_centre/Orlik": {"tags": {"name": "Orlik", "leisure": "sports_centre"}, "name": "Orlik", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "building", "address", "opening_hours"], "suggestion": true},
+ "leisure/sports_centre/Pabellón Municipal de Deportes": {"tags": {"name": "Pabellón Municipal de Deportes", "leisure": "sports_centre"}, "name": "Pabellón Municipal de Deportes", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "building", "address", "opening_hours"], "suggestion": true},
+ "leisure/sports_centre/Palestra Comunale": {"tags": {"name": "Palestra Comunale", "leisure": "sports_centre"}, "name": "Palestra Comunale", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "building", "address", "opening_hours"], "suggestion": true},
+ "leisure/sports_centre/Salle Omnisport": {"tags": {"name": "Salle Omnisport", "leisure": "sports_centre"}, "name": "Salle Omnisport", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "building", "address", "opening_hours"], "suggestion": true},
+ "leisure/sports_centre/Virgin Active": {"tags": {"name": "Virgin Active", "leisure": "sports_centre"}, "name": "Virgin Active", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "building", "address", "opening_hours"], "suggestion": true},
+ "leisure/sports_centre/YMCA": {"tags": {"name": "YMCA", "leisure": "sports_centre"}, "name": "YMCA", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "building", "address", "opening_hours"], "suggestion": true},
+ "leisure/sports_centre/ДЮСШ": {"tags": {"name": "ДЮСШ", "leisure": "sports_centre"}, "name": "ДЮСШ", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "building", "address", "opening_hours"], "suggestion": true},
+ "leisure/sports_centre/Ледовый дворец": {"tags": {"name": "Ледовый дворец", "leisure": "sports_centre"}, "name": "Ледовый дворец", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "building", "address", "opening_hours"], "suggestion": true},
+ "leisure/sports_centre/体育館": {"tags": {"name": "体育館", "leisure": "sports_centre"}, "name": "体育館", "icon": "maki-pitch", "geometry": ["point", "area"], "fields": ["name", "sport", "building", "address", "opening_hours"], "suggestion": true},
+ "leisure/swimming_pool/Schwimmerbecken": {"tags": {"name": "Schwimmerbecken", "leisure": "swimming_pool"}, "name": "Schwimmerbecken", "icon": "maki-swimming", "geometry": ["point", "area"], "fields": ["name", "access_simple", "operator", "address"], "suggestion": true},
+ "leisure/swimming_pool/Yüzme Havuzu": {"tags": {"name": "Yüzme Havuzu", "leisure": "swimming_pool"}, "name": "Yüzme Havuzu", "icon": "maki-swimming", "geometry": ["point", "area"], "fields": ["name", "access_simple", "operator", "address"], "suggestion": true},
+ "leisure/swimming_pool/プール": {"tags": {"name": "プール", "leisure": "swimming_pool"}, "name": "プール", "icon": "maki-swimming", "geometry": ["point", "area"], "fields": ["name", "access_simple", "operator", "address"], "suggestion": true},
+ "leisure/swimming_pool/游泳池": {"tags": {"name": "游泳池", "leisure": "swimming_pool"}, "name": "游泳池", "icon": "maki-swimming", "geometry": ["point", "area"], "fields": ["name", "access_simple", "operator", "address"], "suggestion": true},
+ "man_made/windmill/De Hoop": {"tags": {"name": "De Hoop", "man_made": "windmill"}, "name": "De Hoop", "icon": "temaki-windmill", "geometry": ["point", "area"], "fields": ["building_area"], "suggestion": true},
+ "shop/alcohol/Alko": {"tags": {"name": "Alko", "shop": "alcohol"}, "name": "Alko", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/BC Liquor Store": {"tags": {"name": "BC Liquor Store", "shop": "alcohol"}, "name": "BC Liquor Store", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/BWS": {"tags": {"name": "BWS", "shop": "alcohol"}, "name": "BWS", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Bargain Booze": {"tags": {"name": "Bargain Booze", "shop": "alcohol"}, "name": "Bargain Booze", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Beer Store": {"tags": {"name": "Beer Store", "shop": "alcohol"}, "name": "Beer Store", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Botilleria": {"tags": {"name": "Botilleria", "shop": "alcohol"}, "name": "Botilleria", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Dan Murphy's": {"tags": {"name": "Dan Murphy's", "shop": "alcohol"}, "name": "Dan Murphy's", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Gall & Gall": {"tags": {"name": "Gall & Gall", "shop": "alcohol"}, "name": "Gall & Gall", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/LCBO": {"tags": {"name": "LCBO", "shop": "alcohol"}, "name": "LCBO", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Liquor Depot": {"tags": {"name": "Liquor Depot", "shop": "alcohol"}, "name": "Liquor Depot", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Liquor Store": {"tags": {"name": "Liquor Store", "shop": "alcohol"}, "name": "Liquor Store", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Liquorland": {"tags": {"name": "Liquorland", "shop": "alcohol"}, "name": "Liquorland", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Mitra": {"tags": {"name": "Mitra", "shop": "alcohol"}, "name": "Mitra", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Nicolas": {"tags": {"name": "Nicolas", "shop": "alcohol"}, "name": "Nicolas", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/SAQ": {"tags": {"name": "SAQ", "shop": "alcohol"}, "name": "SAQ", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Systembolaget": {"tags": {"name": "Systembolaget", "shop": "alcohol"}, "name": "Systembolaget", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/The Beer Store": {"tags": {"name": "The Beer Store", "shop": "alcohol"}, "name": "The Beer Store", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Vinmonopolet": {"tags": {"name": "Vinmonopolet", "shop": "alcohol"}, "name": "Vinmonopolet", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Алкомаркет": {"tags": {"name": "Алкомаркет", "shop": "alcohol"}, "name": "Алкомаркет", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Ароматный мир": {"tags": {"name": "Ароматный мир", "shop": "alcohol"}, "name": "Ароматный мир", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Бристоль": {"tags": {"name": "Бристоль", "shop": "alcohol"}, "name": "Бристоль", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Градус": {"tags": {"name": "Градус", "shop": "alcohol"}, "name": "Градус", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Живое пиво": {"tags": {"name": "Живое пиво", "shop": "alcohol"}, "name": "Живое пиво", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Красное & Белое": {"tags": {"name": "Красное & Белое", "shop": "alcohol"}, "name": "Красное & Белое", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Норман": {"tags": {"name": "Норман", "shop": "alcohol"}, "name": "Норман", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Отдохни": {"tags": {"name": "Отдохни", "shop": "alcohol"}, "name": "Отдохни", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Пиво": {"tags": {"name": "Пиво", "shop": "alcohol"}, "name": "Пиво", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/alcohol/Разливное пиво": {"tags": {"name": "Разливное пиво", "shop": "alcohol"}, "name": "Разливное пиво", "icon": "maki-alcohol-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi", "drive_through"], "suggestion": true},
+ "shop/baby_goods/Aubert": {"tags": {"name": "Aubert", "shop": "baby_goods"}, "name": "Aubert", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/baby_goods/Babies R Us": {"tags": {"name": "Babies R Us", "shop": "baby_goods"}, "name": "Babies R Us", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/baby_goods/BabyOne": {"tags": {"name": "BabyOne", "shop": "baby_goods"}, "name": "BabyOne", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/AILI": {"tags": {"name": "AILI", "shop": "bakery"}, "name": "AILI", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Anker": {"tags": {"name": "Anker", "shop": "bakery"}, "name": "Anker", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Awiteks": {"tags": {"name": "Awiteks", "shop": "bakery"}, "name": "Awiteks", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Backshop": {"tags": {"name": "Backshop", "shop": "bakery"}, "name": "Backshop", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Backwerk": {"tags": {"name": "Backwerk", "shop": "bakery"}, "name": "Backwerk", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Baguette": {"tags": {"name": "Baguette", "shop": "bakery"}, "name": "Baguette", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Bakers Delight": {"tags": {"name": "Bakers Delight", "shop": "bakery"}, "name": "Bakers Delight", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Bakker Bart": {"tags": {"name": "Bakker Bart", "shop": "bakery"}, "name": "Bakker Bart", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Banette": {"tags": {"name": "Banette", "shop": "bakery"}, "name": "Banette", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Bäckerei Fuchs": {"tags": {"name": "Bäckerei Fuchs", "shop": "bakery"}, "name": "Bäckerei Fuchs", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Bäckerei Grimminger": {"tags": {"name": "Bäckerei Grimminger", "shop": "bakery"}, "name": "Bäckerei Grimminger", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Bäckerei Müller": {"tags": {"name": "Bäckerei Müller", "shop": "bakery"}, "name": "Bäckerei Müller", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Bäckerei Schmidt": {"tags": {"name": "Bäckerei Schmidt", "shop": "bakery"}, "name": "Bäckerei Schmidt", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Bäckerei Schneider": {"tags": {"name": "Bäckerei Schneider", "shop": "bakery"}, "name": "Bäckerei Schneider", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Cooplands": {"tags": {"name": "Cooplands", "shop": "bakery"}, "name": "Cooplands", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Dat Backhus": {"tags": {"name": "Dat Backhus", "shop": "bakery"}, "name": "Dat Backhus", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Der Beck": {"tags": {"name": "Der Beck", "shop": "bakery"}, "name": "Der Beck", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Der Mann": {"tags": {"name": "Der Mann", "shop": "bakery"}, "name": "Der Mann", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Ditsch": {"tags": {"name": "Ditsch", "shop": "bakery"}, "name": "Ditsch", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Fornetti": {"tags": {"name": "Fornetti", "shop": "bakery"}, "name": "Fornetti", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Goeken backen": {"tags": {"name": "Goeken backen", "shop": "bakery"}, "name": "Goeken backen", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Goldilocks": {"tags": {"name": "Goldilocks", "shop": "bakery"}, "name": "Goldilocks", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Greggs": {"tags": {"name": "Greggs", "shop": "bakery"}, "name": "Greggs", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Hofpfisterei": {"tags": {"name": "Hofpfisterei", "shop": "bakery"}, "name": "Hofpfisterei", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Ihle": {"tags": {"name": "Ihle", "shop": "bakery"}, "name": "Ihle", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Julie's Bakeshop": {"tags": {"name": "Julie's Bakeshop", "shop": "bakery"}, "name": "Julie's Bakeshop", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/K&U": {"tags": {"name": "K&U", "shop": "bakery"}, "name": "K&U", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/K&U Bäckerei": {"tags": {"name": "K&U Bäckerei", "shop": "bakery"}, "name": "K&U Bäckerei", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Kamps": {"tags": {"name": "Kamps", "shop": "bakery"}, "name": "Kamps", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/La Mie Câline": {"tags": {"name": "La Mie Câline", "shop": "bakery"}, "name": "La Mie Câline", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Le Crobag": {"tags": {"name": "Le Crobag", "shop": "bakery"}, "name": "Le Crobag", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Le Fournil": {"tags": {"name": "Le Fournil", "shop": "bakery"}, "name": "Le Fournil", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Lila Bäcker": {"tags": {"name": "Lila Bäcker", "shop": "bakery"}, "name": "Lila Bäcker", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Lipóti Pékség": {"tags": {"name": "Lipóti Pékség", "shop": "bakery"}, "name": "Lipóti Pékség", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Marie Blachère": {"tags": {"name": "Marie Blachère", "shop": "bakery"}, "name": "Marie Blachère", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Mlinar": {"tags": {"name": "Mlinar", "shop": "bakery"}, "name": "Mlinar", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Musmanni": {"tags": {"name": "Musmanni", "shop": "bakery"}, "name": "Musmanni", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Oebel": {"tags": {"name": "Oebel", "shop": "bakery"}, "name": "Oebel", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Paul": {"tags": {"name": "Paul", "shop": "bakery"}, "name": "Paul", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Red Ribbon": {"tags": {"name": "Red Ribbon", "shop": "bakery"}, "name": "Red Ribbon", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Schäfer's": {"tags": {"name": "Schäfer's", "shop": "bakery"}, "name": "Schäfer's", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Sehne": {"tags": {"name": "Sehne", "shop": "bakery"}, "name": "Sehne", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Stadtbäckerei": {"tags": {"name": "Stadtbäckerei", "shop": "bakery"}, "name": "Stadtbäckerei", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Steinecke": {"tags": {"name": "Steinecke", "shop": "bakery"}, "name": "Steinecke", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Sternenbäck": {"tags": {"name": "Sternenbäck", "shop": "bakery"}, "name": "Sternenbäck", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Ströck": {"tags": {"name": "Ströck", "shop": "bakery"}, "name": "Ströck", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Wiener Feinbäcker": {"tags": {"name": "Wiener Feinbäcker", "shop": "bakery"}, "name": "Wiener Feinbäcker", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/von Allwörden": {"tags": {"name": "von Allwörden", "shop": "bakery"}, "name": "von Allwörden", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Булочная": {"tags": {"name": "Булочная", "shop": "bakery"}, "name": "Булочная", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Горячий хлеб": {"tags": {"name": "Горячий хлеб", "shop": "bakery"}, "name": "Горячий хлеб", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Каравай": {"tags": {"name": "Каравай", "shop": "bakery"}, "name": "Каравай", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Кулиничи": {"tags": {"name": "Кулиничи", "shop": "bakery"}, "name": "Кулиничи", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Кулиничі": {"tags": {"name": "Кулиничі", "shop": "bakery"}, "name": "Кулиничі", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Свежий хлеб": {"tags": {"name": "Свежий хлеб", "shop": "bakery"}, "name": "Свежий хлеб", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/Хлеб": {"tags": {"name": "Хлеб", "shop": "bakery"}, "name": "Хлеб", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/مخبز": {"tags": {"name": "مخبز", "shop": "bakery"}, "name": "مخبز", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/مخبزة": {"tags": {"name": "مخبزة", "shop": "bakery"}, "name": "مخبزة", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/نان لواش": {"tags": {"name": "نان لواش", "shop": "bakery"}, "name": "نان لواش", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/نانوایی": {"tags": {"name": "نانوایی", "shop": "bakery"}, "name": "نانوایی", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/نانوایی بربری": {"tags": {"name": "نانوایی بربری", "shop": "bakery"}, "name": "نانوایی بربری", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/نانوایی سنگک": {"tags": {"name": "نانوایی سنگک", "shop": "bakery"}, "name": "نانوایی سنگک", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/نانوایی سنگکی": {"tags": {"name": "نانوایی سنگکی", "shop": "bakery"}, "name": "نانوایی سنگکی", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bakery/نانوایی لواش": {"tags": {"name": "نانوایی لواش", "shop": "bakery"}, "name": "نانوایی لواش", "icon": "maki-bakery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/beauty/Sally Beauty Supply": {"tags": {"name": "Sally Beauty Supply", "shop": "beauty"}, "name": "Sally Beauty Supply", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "beauty", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/beauty/Yves Rocher": {"tags": {"name": "Yves Rocher", "shop": "beauty"}, "name": "Yves Rocher", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "beauty", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bed/Matratzen Concord": {"tags": {"name": "Matratzen Concord", "shop": "bed"}, "name": "Matratzen Concord", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bed/Mattress Firm": {"tags": {"name": "Mattress Firm", "shop": "bed"}, "name": "Mattress Firm", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bed/Sleepy's": {"tags": {"name": "Sleepy's", "shop": "bed"}, "name": "Sleepy's", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/beverages/50嵐": {"tags": {"name": "50嵐", "shop": "beverages"}, "name": "50嵐", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/beverages/Dursty": {"tags": {"name": "Dursty", "shop": "beverages"}, "name": "Dursty", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/beverages/Edeka Getränkemarkt": {"tags": {"name": "Edeka Getränkemarkt", "shop": "beverages"}, "name": "Edeka Getränkemarkt", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/beverages/Fristo": {"tags": {"name": "Fristo", "shop": "beverages"}, "name": "Fristo", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/beverages/Getränke Hoffmann": {"tags": {"name": "Getränke Hoffmann", "shop": "beverages"}, "name": "Getränke Hoffmann", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/beverages/Getränkeland": {"tags": {"name": "Getränkeland", "shop": "beverages"}, "name": "Getränkeland", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/beverages/Getränkemarkt": {"tags": {"name": "Getränkemarkt", "shop": "beverages"}, "name": "Getränkemarkt", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/beverages/Orterer Getränkemarkt": {"tags": {"name": "Orterer Getränkemarkt", "shop": "beverages"}, "name": "Orterer Getränkemarkt", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/beverages/Rewe Getränkemarkt": {"tags": {"name": "Rewe Getränkemarkt", "shop": "beverages"}, "name": "Rewe Getränkemarkt", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/beverages/Trinkgut": {"tags": {"name": "Trinkgut", "shop": "beverages"}, "name": "Trinkgut", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/beverages/茶湯會": {"tags": {"name": "茶湯會", "shop": "beverages"}, "name": "茶湯會", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bicycle/Halfords": {"tags": {"name": "Halfords", "shop": "bicycle"}, "name": "Halfords", "icon": "maki-bicycle", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/bicycle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bicycle/Веломарка": {"tags": {"name": "Веломарка", "shop": "bicycle"}, "name": "Веломарка", "icon": "maki-bicycle", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/bicycle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bicycle/サイクルベースあさひ": {"tags": {"name": "サイクルベースあさひ", "shop": "bicycle"}, "name": "サイクルベースあさひ", "icon": "maki-bicycle", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/bicycle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bookmaker/Betfred": {"tags": {"name": "Betfred", "shop": "bookmaker"}, "name": "Betfred", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bookmaker/Coral": {"tags": {"name": "Coral", "shop": "bookmaker"}, "name": "Coral", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bookmaker/Ladbrokes": {"tags": {"name": "Ladbrokes", "shop": "bookmaker"}, "name": "Ladbrokes", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bookmaker/Paddy Power": {"tags": {"name": "Paddy Power", "shop": "bookmaker"}, "name": "Paddy Power", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bookmaker/William Hill": {"tags": {"name": "William Hill", "shop": "bookmaker"}, "name": "William Hill", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/bookmaker/ΟΠΑΠ": {"tags": {"name": "ΟΠΑΠ", "shop": "bookmaker"}, "name": "ΟΠΑΠ", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/butcher/Boucherie Charcuterie": {"tags": {"name": "Boucherie Charcuterie", "shop": "butcher"}, "name": "Boucherie Charcuterie", "icon": "maki-slaughterhouse", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/butcher/Carnicería": {"tags": {"name": "Carnicería", "shop": "butcher"}, "name": "Carnicería", "icon": "maki-slaughterhouse", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/butcher/Fleischerei Richter": {"tags": {"name": "Fleischerei Richter", "shop": "butcher"}, "name": "Fleischerei Richter", "icon": "maki-slaughterhouse", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/butcher/Húsbolt": {"tags": {"name": "Húsbolt", "shop": "butcher"}, "name": "Húsbolt", "icon": "maki-slaughterhouse", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/butcher/Macelleria": {"tags": {"name": "Macelleria", "shop": "butcher"}, "name": "Macelleria", "icon": "maki-slaughterhouse", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/butcher/Vinzenzmurr": {"tags": {"name": "Vinzenzmurr", "shop": "butcher"}, "name": "Vinzenzmurr", "icon": "maki-slaughterhouse", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/butcher/Ариант": {"tags": {"name": "Ариант", "shop": "butcher"}, "name": "Ариант", "icon": "maki-slaughterhouse", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/butcher/Великолукский мясокомбинат": {"tags": {"name": "Великолукский мясокомбинат", "shop": "butcher"}, "name": "Великолукский мясокомбинат", "icon": "maki-slaughterhouse", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/butcher/Мясная лавка": {"tags": {"name": "Мясная лавка", "shop": "butcher"}, "name": "Мясная лавка", "icon": "maki-slaughterhouse", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/butcher/Мясницкий ряд": {"tags": {"name": "Мясницкий ряд", "shop": "butcher"}, "name": "Мясницкий ряд", "icon": "maki-slaughterhouse", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/butcher/Мясной": {"tags": {"name": "Мясной", "shop": "butcher"}, "name": "Мясной", "icon": "maki-slaughterhouse", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/butcher/Мясо": {"tags": {"name": "Мясо", "shop": "butcher"}, "name": "Мясо", "icon": "maki-slaughterhouse", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/butcher/Наша Ряба": {"tags": {"name": "Наша Ряба", "shop": "butcher"}, "name": "Наша Ряба", "icon": "maki-slaughterhouse", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/butcher/Свежее мясо": {"tags": {"name": "Свежее мясо", "shop": "butcher"}, "name": "Свежее мясо", "icon": "maki-slaughterhouse", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Audi": {"tags": {"name": "Audi", "shop": "car"}, "name": "Audi", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/BMW": {"tags": {"name": "BMW", "shop": "car"}, "name": "BMW", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Chevrolet": {"tags": {"name": "Chevrolet", "shop": "car"}, "name": "Chevrolet", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Citroën": {"tags": {"name": "Citroën", "shop": "car"}, "name": "Citroën", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Dacia": {"tags": {"name": "Dacia", "shop": "car"}, "name": "Dacia", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Fiat": {"tags": {"name": "Fiat", "shop": "car"}, "name": "Fiat", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Ford": {"tags": {"name": "Ford", "shop": "car"}, "name": "Ford", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Honda": {"tags": {"name": "Honda", "shop": "car"}, "name": "Honda", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Hyundai": {"tags": {"name": "Hyundai", "shop": "car"}, "name": "Hyundai", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Isuzu": {"tags": {"name": "Isuzu", "shop": "car"}, "name": "Isuzu", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Kia": {"tags": {"name": "Kia", "shop": "car"}, "name": "Kia", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Land Rover": {"tags": {"name": "Land Rover", "shop": "car"}, "name": "Land Rover", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Lexus": {"tags": {"name": "Lexus", "shop": "car"}, "name": "Lexus", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Mazda": {"tags": {"name": "Mazda", "shop": "car"}, "name": "Mazda", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Mercedes-Benz": {"tags": {"name": "Mercedes-Benz", "shop": "car"}, "name": "Mercedes-Benz", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Mitsubishi": {"tags": {"name": "Mitsubishi", "shop": "car"}, "name": "Mitsubishi", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Mitsubishi Motors": {"tags": {"name": "Mitsubishi Motors", "shop": "car"}, "name": "Mitsubishi Motors", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/NISSAN": {"tags": {"name": "NISSAN", "shop": "car"}, "name": "NISSAN", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Nissan": {"tags": {"name": "Nissan", "shop": "car"}, "name": "Nissan", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Opel": {"tags": {"name": "Opel", "shop": "car"}, "name": "Opel", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Peugeot": {"tags": {"name": "Peugeot", "shop": "car"}, "name": "Peugeot", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Porsche": {"tags": {"name": "Porsche", "shop": "car"}, "name": "Porsche", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Renault": {"tags": {"name": "Renault", "shop": "car"}, "name": "Renault", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Seat": {"tags": {"name": "Seat", "shop": "car"}, "name": "Seat", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Skoda": {"tags": {"name": "Skoda", "shop": "car"}, "name": "Skoda", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Subaru": {"tags": {"name": "Subaru", "shop": "car"}, "name": "Subaru", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Suzuki": {"tags": {"name": "Suzuki", "shop": "car"}, "name": "Suzuki", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Toyota": {"tags": {"name": "Toyota", "shop": "car"}, "name": "Toyota", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Volkswagen": {"tags": {"name": "Volkswagen", "shop": "car"}, "name": "Volkswagen", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car/Volvo": {"tags": {"name": "Volvo", "shop": "car"}, "name": "Volvo", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "brand", "second_hand", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_parts/Advance Auto Parts": {"tags": {"name": "Advance Auto Parts", "shop": "car_parts"}, "name": "Advance Auto Parts", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_parts/AutoZone": {"tags": {"name": "AutoZone", "shop": "car_parts"}, "name": "AutoZone", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_parts/Brezan": {"tags": {"name": "Brezan", "shop": "car_parts"}, "name": "Brezan", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_parts/NAPA Auto Parts": {"tags": {"name": "NAPA Auto Parts", "shop": "car_parts"}, "name": "NAPA Auto Parts", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_parts/Napa Auto Parts": {"tags": {"name": "Napa Auto Parts", "shop": "car_parts"}, "name": "Napa Auto Parts", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_parts/O'Reilly Auto Parts": {"tags": {"name": "O'Reilly Auto Parts", "shop": "car_parts"}, "name": "O'Reilly Auto Parts", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_parts/Repco": {"tags": {"name": "Repco", "shop": "car_parts"}, "name": "Repco", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_parts/Tokić": {"tags": {"name": "Tokić", "shop": "car_parts"}, "name": "Tokić", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_parts/repuestos automotrices": {"tags": {"name": "repuestos automotrices", "shop": "car_parts"}, "name": "repuestos automotrices", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_parts/Автозапчастини": {"tags": {"name": "Автозапчастини", "shop": "car_parts"}, "name": "Автозапчастини", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_parts/Автомир": {"tags": {"name": "Автомир", "shop": "car_parts"}, "name": "Автомир", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_parts/イエローハット": {"tags": {"name": "イエローハット", "shop": "car_parts"}, "name": "イエローハット", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_parts/オートバックス": {"tags": {"name": "オートバックス", "shop": "car_parts"}, "name": "オートバックス", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_parts/タイヤ館": {"tags": {"name": "タイヤ館", "shop": "car_parts"}, "name": "タイヤ館", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/A.T.U": {"tags": {"name": "A.T.U", "shop": "car_repair"}, "name": "A.T.U", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Bosch Car Service": {"tags": {"name": "Bosch Car Service", "shop": "car_repair"}, "name": "Bosch Car Service", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Carglass": {"tags": {"name": "Carglass", "shop": "car_repair"}, "name": "Carglass", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Euromaster": {"tags": {"name": "Euromaster", "shop": "car_repair"}, "name": "Euromaster", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Feu Vert": {"tags": {"name": "Feu Vert", "shop": "car_repair"}, "name": "Feu Vert", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Firestone": {"tags": {"name": "Firestone", "shop": "car_repair"}, "name": "Firestone", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Firestone Complete Auto Care": {"tags": {"name": "Firestone Complete Auto Care", "shop": "car_repair"}, "name": "Firestone Complete Auto Care", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Garage Renault": {"tags": {"name": "Garage Renault", "shop": "car_repair"}, "name": "Garage Renault", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Gomeria": {"tags": {"name": "Gomeria", "shop": "car_repair"}, "name": "Gomeria", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Gomería": {"tags": {"name": "Gomería", "shop": "car_repair"}, "name": "Gomería", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Goodyear": {"tags": {"name": "Goodyear", "shop": "car_repair"}, "name": "Goodyear", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Grease Monkey": {"tags": {"name": "Grease Monkey", "shop": "car_repair"}, "name": "Grease Monkey", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Jiffy Lube": {"tags": {"name": "Jiffy Lube", "shop": "car_repair"}, "name": "Jiffy Lube", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Kwik Fit": {"tags": {"name": "Kwik Fit", "shop": "car_repair"}, "name": "Kwik Fit", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Lubricentro": {"tags": {"name": "Lubricentro", "shop": "car_repair"}, "name": "Lubricentro", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Meineke": {"tags": {"name": "Meineke", "shop": "car_repair"}, "name": "Meineke", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Mekonomen": {"tags": {"name": "Mekonomen", "shop": "car_repair"}, "name": "Mekonomen", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Midas": {"tags": {"name": "Midas", "shop": "car_repair"}, "name": "Midas", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Mr. Lube": {"tags": {"name": "Mr. Lube", "shop": "car_repair"}, "name": "Mr. Lube", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Norauto": {"tags": {"name": "Norauto", "shop": "car_repair"}, "name": "Norauto", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Pep Boys": {"tags": {"name": "Pep Boys", "shop": "car_repair"}, "name": "Pep Boys", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Pit Stop": {"tags": {"name": "Pit Stop", "shop": "car_repair"}, "name": "Pit Stop", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Point S": {"tags": {"name": "Point S", "shop": "car_repair"}, "name": "Point S", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Roady": {"tags": {"name": "Roady", "shop": "car_repair"}, "name": "Roady", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Sears Auto Center": {"tags": {"name": "Sears Auto Center", "shop": "car_repair"}, "name": "Sears Auto Center", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Speedy": {"tags": {"name": "Speedy", "shop": "car_repair"}, "name": "Speedy", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Stacja Kontroli Pojazdów": {"tags": {"name": "Stacja Kontroli Pojazdów", "shop": "car_repair"}, "name": "Stacja Kontroli Pojazdów", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Taller": {"tags": {"name": "Taller", "shop": "car_repair"}, "name": "Taller", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Valvoline": {"tags": {"name": "Valvoline", "shop": "car_repair"}, "name": "Valvoline", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Valvoline Instant Oil Change": {"tags": {"name": "Valvoline Instant Oil Change", "shop": "car_repair"}, "name": "Valvoline Instant Oil Change", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Wulkanizacja": {"tags": {"name": "Wulkanizacja", "shop": "car_repair"}, "name": "Wulkanizacja", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/ÖAMTC": {"tags": {"name": "ÖAMTC", "shop": "car_repair"}, "name": "ÖAMTC", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Автомастерская": {"tags": {"name": "Автомастерская", "shop": "car_repair"}, "name": "Автомастерская", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Авторемонт": {"tags": {"name": "Авторемонт", "shop": "car_repair"}, "name": "Авторемонт", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Автосервис": {"tags": {"name": "Автосервис", "shop": "car_repair"}, "name": "Автосервис", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Автосервис+шиномонтаж": {"tags": {"name": "Автосервис+шиномонтаж", "shop": "car_repair"}, "name": "Автосервис+шиномонтаж", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Замена масла": {"tags": {"name": "Замена масла", "shop": "car_repair"}, "name": "Замена масла", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/СТО": {"tags": {"name": "СТО", "shop": "car_repair"}, "name": "СТО", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/Шиномонтаж": {"tags": {"name": "Шиномонтаж", "shop": "car_repair"}, "name": "Шиномонтаж", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/car_repair/шиномонтаж": {"tags": {"name": "шиномонтаж", "shop": "car_repair"}, "name": "шиномонтаж", "icon": "maki-car", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "service/vehicle", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/carpet/Carpet Right": {"tags": {"name": "Carpet Right", "shop": "carpet"}, "name": "Carpet Right", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/carpet/Carpetright": {"tags": {"name": "Carpetright", "shop": "carpet"}, "name": "Carpetright", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/charity/Age UK": {"tags": {"name": "Age UK", "shop": "charity"}, "name": "Age UK", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "second_hand", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/charity/Barnardo's": {"tags": {"name": "Barnardo's", "shop": "charity"}, "name": "Barnardo's", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "second_hand", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/charity/British Heart Foundation": {"tags": {"name": "British Heart Foundation", "shop": "charity"}, "name": "British Heart Foundation", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "second_hand", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/charity/Cancer Research UK": {"tags": {"name": "Cancer Research UK", "shop": "charity"}, "name": "Cancer Research UK", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "second_hand", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/charity/Oxfam": {"tags": {"name": "Oxfam", "shop": "charity"}, "name": "Oxfam", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "second_hand", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/charity/Salvation Army": {"tags": {"name": "Salvation Army", "shop": "charity"}, "name": "Salvation Army", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "second_hand", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/charity/Scope": {"tags": {"name": "Scope", "shop": "charity"}, "name": "Scope", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "second_hand", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/charity/Sue Ryder": {"tags": {"name": "Sue Ryder", "shop": "charity"}, "name": "Sue Ryder", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "second_hand", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/chemist/7 Дней": {"tags": {"name": "7 Дней", "shop": "chemist"}, "name": "7 Дней", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/chemist/Bipa": {"tags": {"name": "Bipa", "shop": "chemist"}, "name": "Bipa", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/chemist/Budnikowsky": {"tags": {"name": "Budnikowsky", "shop": "chemist"}, "name": "Budnikowsky", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/chemist/Etos": {"tags": {"name": "Etos", "shop": "chemist"}, "name": "Etos", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/chemist/Kruidvat": {"tags": {"name": "Kruidvat", "shop": "chemist"}, "name": "Kruidvat", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/chemist/Matas": {"tags": {"name": "Matas", "shop": "chemist"}, "name": "Matas", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/chemist/Müller": {"tags": {"name": "Müller", "shop": "chemist"}, "name": "Müller", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/chemist/Rossmann": {"tags": {"name": "Rossmann", "shop": "chemist"}, "name": "Rossmann", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/chemist/Schlecker": {"tags": {"name": "Schlecker", "shop": "chemist"}, "name": "Schlecker", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/chemist/Teta": {"tags": {"name": "Teta", "shop": "chemist"}, "name": "Teta", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/chemist/Trekpleister": {"tags": {"name": "Trekpleister", "shop": "chemist"}, "name": "Trekpleister", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/chemist/Watsons": {"tags": {"name": "Watsons", "shop": "chemist"}, "name": "Watsons", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/chemist/dm": {"tags": {"name": "dm", "shop": "chemist"}, "name": "dm", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/chemist/Бытовая химия": {"tags": {"name": "Бытовая химия", "shop": "chemist"}, "name": "Бытовая химия", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/chemist/Магнит Косметик": {"tags": {"name": "Магнит Косметик", "shop": "chemist"}, "name": "Магнит Косметик", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/chemist/Мила": {"tags": {"name": "Мила", "shop": "chemist"}, "name": "Мила", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/chemist/Остров чистоты": {"tags": {"name": "Остров чистоты", "shop": "chemist"}, "name": "Остров чистоты", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/chemist/Рубль Бум": {"tags": {"name": "Рубль Бум", "shop": "chemist"}, "name": "Рубль Бум", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/chemist/Улыбка радуги": {"tags": {"name": "Улыбка радуги", "shop": "chemist"}, "name": "Улыбка радуги", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/chemist/屈臣氏": {"tags": {"name": "屈臣氏", "shop": "chemist"}, "name": "屈臣氏", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/chemist/康是美": {"tags": {"name": "康是美", "shop": "chemist"}, "name": "康是美", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/AOKI": {"tags": {"name": "AOKI", "shop": "clothes"}, "name": "AOKI", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/AWG": {"tags": {"name": "AWG", "shop": "clothes"}, "name": "AWG", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Ackermans": {"tags": {"name": "Ackermans", "shop": "clothes"}, "name": "Ackermans", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Adidas": {"tags": {"name": "Adidas", "shop": "clothes"}, "name": "Adidas", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/American Apparel": {"tags": {"name": "American Apparel", "shop": "clothes"}, "name": "American Apparel", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/American Eagle Outfitters": {"tags": {"name": "American Eagle Outfitters", "shop": "clothes"}, "name": "American Eagle Outfitters", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Anthropologie": {"tags": {"name": "Anthropologie", "shop": "clothes"}, "name": "Anthropologie", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Ardene": {"tags": {"name": "Ardene", "shop": "clothes"}, "name": "Ardene", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Armand Thiery": {"tags": {"name": "Armand Thiery", "shop": "clothes"}, "name": "Armand Thiery", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Banana Republic": {"tags": {"name": "Banana Republic", "shop": "clothes"}, "name": "Banana Republic", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Benetton": {"tags": {"name": "Benetton", "shop": "clothes"}, "name": "Benetton", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Bershka": {"tags": {"name": "Bershka", "shop": "clothes"}, "name": "Bershka", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Bonita": {"tags": {"name": "Bonita", "shop": "clothes"}, "name": "Bonita", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Bonobo": {"tags": {"name": "Bonobo", "shop": "clothes"}, "name": "Bonobo", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Brooks Brothers": {"tags": {"name": "Brooks Brothers", "shop": "clothes"}, "name": "Brooks Brothers", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Burberry": {"tags": {"name": "Burberry", "shop": "clothes"}, "name": "Burberry", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Burlington Coat Factory": {"tags": {"name": "Burlington Coat Factory", "shop": "clothes"}, "name": "Burlington Coat Factory", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Burton": {"tags": {"name": "Burton", "shop": "clothes"}, "name": "Burton", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/C&A": {"tags": {"name": "C&A", "shop": "clothes"}, "name": "C&A", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Cache Cache": {"tags": {"name": "Cache Cache", "shop": "clothes"}, "name": "Cache Cache", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Calvin Klein": {"tags": {"name": "Calvin Klein", "shop": "clothes"}, "name": "Calvin Klein", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Calzedonia": {"tags": {"name": "Calzedonia", "shop": "clothes"}, "name": "Calzedonia", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Camaïeu": {"tags": {"name": "Camaïeu", "shop": "clothes"}, "name": "Camaïeu", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Caroll": {"tags": {"name": "Caroll", "shop": "clothes"}, "name": "Caroll", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Carter's": {"tags": {"name": "Carter's", "shop": "clothes"}, "name": "Carter's", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Cecil": {"tags": {"name": "Cecil", "shop": "clothes"}, "name": "Cecil", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Celio": {"tags": {"name": "Celio", "shop": "clothes"}, "name": "Celio", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Charles Vögele": {"tags": {"name": "Charles Vögele", "shop": "clothes"}, "name": "Charles Vögele", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Chico's": {"tags": {"name": "Chico's", "shop": "clothes"}, "name": "Chico's", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Cropp": {"tags": {"name": "Cropp", "shop": "clothes"}, "name": "Cropp", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Cubus": {"tags": {"name": "Cubus", "shop": "clothes"}, "name": "Cubus", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Desigual": {"tags": {"name": "Desigual", "shop": "clothes"}, "name": "Desigual", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Devred": {"tags": {"name": "Devred", "shop": "clothes"}, "name": "Devred", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Didi": {"tags": {"name": "Didi", "shop": "clothes"}, "name": "Didi", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Diesel": {"tags": {"name": "Diesel", "shop": "clothes"}, "name": "Diesel", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Dorothy Perkins": {"tags": {"name": "Dorothy Perkins", "shop": "clothes"}, "name": "Dorothy Perkins", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Dress Barn": {"tags": {"name": "Dress Barn", "shop": "clothes"}, "name": "Dress Barn", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Dressmann": {"tags": {"name": "Dressmann", "shop": "clothes"}, "name": "Dressmann", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Eddie Bauer": {"tags": {"name": "Eddie Bauer", "shop": "clothes"}, "name": "Eddie Bauer", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Edgars": {"tags": {"name": "Edgars", "shop": "clothes"}, "name": "Edgars", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Engbers": {"tags": {"name": "Engbers", "shop": "clothes"}, "name": "Engbers", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Ernsting's family": {"tags": {"name": "Ernsting's family", "shop": "clothes"}, "name": "Ernsting's family", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Esprit": {"tags": {"name": "Esprit", "shop": "clothes"}, "name": "Esprit", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Etam": {"tags": {"name": "Etam", "shop": "clothes"}, "name": "Etam", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Express": {"tags": {"name": "Express", "shop": "clothes"}, "name": "Express", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Fat Face": {"tags": {"name": "Fat Face", "shop": "clothes"}, "name": "Fat Face", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Forever 21": {"tags": {"name": "Forever 21", "shop": "clothes"}, "name": "Forever 21", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Gant": {"tags": {"name": "Gant", "shop": "clothes"}, "name": "Gant", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Gap": {"tags": {"name": "Gap", "shop": "clothes"}, "name": "Gap", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Gerry Weber": {"tags": {"name": "Gerry Weber", "shop": "clothes"}, "name": "Gerry Weber", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Gina Laura": {"tags": {"name": "Gina Laura", "shop": "clothes"}, "name": "Gina Laura", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Guess": {"tags": {"name": "Guess", "shop": "clothes"}, "name": "Guess", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Gymboree": {"tags": {"name": "Gymboree", "shop": "clothes"}, "name": "Gymboree", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Gémo": {"tags": {"name": "Gémo", "shop": "clothes"}, "name": "Gémo", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/H&M": {"tags": {"name": "H&M", "shop": "clothes"}, "name": "H&M", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Hallhuber": {"tags": {"name": "Hallhuber", "shop": "clothes"}, "name": "Hallhuber", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/House": {"tags": {"name": "House", "shop": "clothes"}, "name": "House", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Hugo Boss": {"tags": {"name": "Hugo Boss", "shop": "clothes"}, "name": "Hugo Boss", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Humana": {"tags": {"name": "Humana", "shop": "clothes"}, "name": "Humana", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Hunkemöller": {"tags": {"name": "Hunkemöller", "shop": "clothes"}, "name": "Hunkemöller", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Intimissimi": {"tags": {"name": "Intimissimi", "shop": "clothes"}, "name": "Intimissimi", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/JBC": {"tags": {"name": "JBC", "shop": "clothes"}, "name": "JBC", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Jack & Jones": {"tags": {"name": "Jack & Jones", "shop": "clothes"}, "name": "Jack & Jones", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Jack Wolfskin": {"tags": {"name": "Jack Wolfskin", "shop": "clothes"}, "name": "Jack Wolfskin", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Jeans Fritz": {"tags": {"name": "Jeans Fritz", "shop": "clothes"}, "name": "Jeans Fritz", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Jennyfer": {"tags": {"name": "Jennyfer", "shop": "clothes"}, "name": "Jennyfer", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Jigsaw": {"tags": {"name": "Jigsaw", "shop": "clothes"}, "name": "Jigsaw", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Jules": {"tags": {"name": "Jules", "shop": "clothes"}, "name": "Jules", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Justice": {"tags": {"name": "Justice", "shop": "clothes"}, "name": "Justice", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/KappAhl": {"tags": {"name": "KappAhl", "shop": "clothes"}, "name": "KappAhl", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/KiK": {"tags": {"name": "KiK", "shop": "clothes"}, "name": "KiK", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Kiabi": {"tags": {"name": "Kiabi", "shop": "clothes"}, "name": "Kiabi", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/La Halle": {"tags": {"name": "La Halle", "shop": "clothes"}, "name": "La Halle", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Lacoste": {"tags": {"name": "Lacoste", "shop": "clothes"}, "name": "Lacoste", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Lane Bryant": {"tags": {"name": "Lane Bryant", "shop": "clothes"}, "name": "Lane Bryant", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Levi's": {"tags": {"name": "Levi's", "shop": "clothes"}, "name": "Levi's", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Lindex": {"tags": {"name": "Lindex", "shop": "clothes"}, "name": "Lindex", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Loft": {"tags": {"name": "Loft", "shop": "clothes"}, "name": "Loft", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Mango": {"tags": {"name": "Mango", "shop": "clothes"}, "name": "Mango", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Marc O'Polo": {"tags": {"name": "Marc O'Polo", "shop": "clothes"}, "name": "Marc O'Polo", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Mark's": {"tags": {"name": "Mark's", "shop": "clothes"}, "name": "Mark's", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Marshalls": {"tags": {"name": "Marshalls", "shop": "clothes"}, "name": "Marshalls", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Massimo Dutti": {"tags": {"name": "Massimo Dutti", "shop": "clothes"}, "name": "Massimo Dutti", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Matalan": {"tags": {"name": "Matalan", "shop": "clothes"}, "name": "Matalan", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Maurices": {"tags": {"name": "Maurices", "shop": "clothes"}, "name": "Maurices", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Max Mara": {"tags": {"name": "Max Mara", "shop": "clothes"}, "name": "Max Mara", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Men's Wearhouse": {"tags": {"name": "Men's Wearhouse", "shop": "clothes"}, "name": "Men's Wearhouse", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Mexx": {"tags": {"name": "Mexx", "shop": "clothes"}, "name": "Mexx", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Michael Kors": {"tags": {"name": "Michael Kors", "shop": "clothes"}, "name": "Michael Kors", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Mim": {"tags": {"name": "Mim", "shop": "clothes"}, "name": "Mim", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Monsoon": {"tags": {"name": "Monsoon", "shop": "clothes"}, "name": "Monsoon", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Mr Price": {"tags": {"name": "Mr Price", "shop": "clothes"}, "name": "Mr Price", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/NKD": {"tags": {"name": "NKD", "shop": "clothes"}, "name": "NKD", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/New Look": {"tags": {"name": "New Look", "shop": "clothes"}, "name": "New Look", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/New Yorker": {"tags": {"name": "New Yorker", "shop": "clothes"}, "name": "New Yorker", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/NewYorker": {"tags": {"name": "NewYorker", "shop": "clothes"}, "name": "NewYorker", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Next": {"tags": {"name": "Next", "shop": "clothes"}, "name": "Next", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Nike": {"tags": {"name": "Nike", "shop": "clothes"}, "name": "Nike", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Nordstrom Rack": {"tags": {"name": "Nordstrom Rack", "shop": "clothes"}, "name": "Nordstrom Rack", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/OVS": {"tags": {"name": "OVS", "shop": "clothes"}, "name": "OVS", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Okaïdi": {"tags": {"name": "Okaïdi", "shop": "clothes"}, "name": "Okaïdi", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Old Navy": {"tags": {"name": "Old Navy", "shop": "clothes"}, "name": "Old Navy", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Only": {"tags": {"name": "Only", "shop": "clothes"}, "name": "Only", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Orchestra": {"tags": {"name": "Orchestra", "shop": "clothes"}, "name": "Orchestra", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Original Marines": {"tags": {"name": "Original Marines", "shop": "clothes"}, "name": "Original Marines", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Orsay": {"tags": {"name": "Orsay", "shop": "clothes"}, "name": "Orsay", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Outfit": {"tags": {"name": "Outfit", "shop": "clothes"}, "name": "Outfit", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Outlet": {"tags": {"name": "Outlet", "shop": "clothes"}, "name": "Outlet", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Palmers": {"tags": {"name": "Palmers", "shop": "clothes"}, "name": "Palmers", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Peacocks": {"tags": {"name": "Peacocks", "shop": "clothes"}, "name": "Peacocks", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Peek & Cloppenburg": {"tags": {"name": "Peek & Cloppenburg", "shop": "clothes"}, "name": "Peek & Cloppenburg", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Pep": {"tags": {"name": "Pep", "shop": "clothes"}, "name": "Pep", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Pepco": {"tags": {"name": "Pepco", "shop": "clothes"}, "name": "Pepco", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Petit Bateau": {"tags": {"name": "Petit Bateau", "shop": "clothes"}, "name": "Petit Bateau", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Pimkie": {"tags": {"name": "Pimkie", "shop": "clothes"}, "name": "Pimkie", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Plato's Closet": {"tags": {"name": "Plato's Closet", "shop": "clothes"}, "name": "Plato's Closet", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Primark": {"tags": {"name": "Primark", "shop": "clothes"}, "name": "Primark", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Promod": {"tags": {"name": "Promod", "shop": "clothes"}, "name": "Promod", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Pull & Bear": {"tags": {"name": "Pull & Bear", "shop": "clothes"}, "name": "Pull & Bear", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Reitmans": {"tags": {"name": "Reitmans", "shop": "clothes"}, "name": "Reitmans", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Reserved": {"tags": {"name": "Reserved", "shop": "clothes"}, "name": "Reserved", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/River Island": {"tags": {"name": "River Island", "shop": "clothes"}, "name": "River Island", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Ross": {"tags": {"name": "Ross", "shop": "clothes"}, "name": "Ross", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Sela": {"tags": {"name": "Sela", "shop": "clothes"}, "name": "Sela", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Sergent Major": {"tags": {"name": "Sergent Major", "shop": "clothes"}, "name": "Sergent Major", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Shoeby": {"tags": {"name": "Shoeby", "shop": "clothes"}, "name": "Shoeby", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Sisley": {"tags": {"name": "Sisley", "shop": "clothes"}, "name": "Sisley", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Springfield": {"tags": {"name": "Springfield", "shop": "clothes"}, "name": "Springfield", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Stefanel": {"tags": {"name": "Stefanel", "shop": "clothes"}, "name": "Stefanel", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Steps": {"tags": {"name": "Steps", "shop": "clothes"}, "name": "Steps", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Stradivarius": {"tags": {"name": "Stradivarius", "shop": "clothes"}, "name": "Stradivarius", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Street One": {"tags": {"name": "Street One", "shop": "clothes"}, "name": "Street One", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Superdry": {"tags": {"name": "Superdry", "shop": "clothes"}, "name": "Superdry", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/TJ Maxx": {"tags": {"name": "TJ Maxx", "shop": "clothes"}, "name": "TJ Maxx", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/TK Maxx": {"tags": {"name": "TK Maxx", "shop": "clothes"}, "name": "TK Maxx", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Takko": {"tags": {"name": "Takko", "shop": "clothes"}, "name": "Takko", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Talbots": {"tags": {"name": "Talbots", "shop": "clothes"}, "name": "Talbots", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Tally Weijl": {"tags": {"name": "Tally Weijl", "shop": "clothes"}, "name": "Tally Weijl", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Tati": {"tags": {"name": "Tati", "shop": "clothes"}, "name": "Tati", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Terranova": {"tags": {"name": "Terranova", "shop": "clothes"}, "name": "Terranova", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Tesha": {"tags": {"name": "Tesha", "shop": "clothes"}, "name": "Tesha", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Tezenis": {"tags": {"name": "Tezenis", "shop": "clothes"}, "name": "Tezenis", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/The Children's Place": {"tags": {"name": "The Children's Place", "shop": "clothes"}, "name": "The Children's Place", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/The North Face": {"tags": {"name": "The North Face", "shop": "clothes"}, "name": "The North Face", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/The Sting": {"tags": {"name": "The Sting", "shop": "clothes"}, "name": "The Sting", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Timberland": {"tags": {"name": "Timberland", "shop": "clothes"}, "name": "Timberland", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Toko Pakaian": {"tags": {"name": "Toko Pakaian", "shop": "clothes"}, "name": "Toko Pakaian", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Tom Tailor": {"tags": {"name": "Tom Tailor", "shop": "clothes"}, "name": "Tom Tailor", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Tommy Hilfiger": {"tags": {"name": "Tommy Hilfiger", "shop": "clothes"}, "name": "Tommy Hilfiger", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Topshop": {"tags": {"name": "Topshop", "shop": "clothes"}, "name": "Topshop", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Triumph": {"tags": {"name": "Triumph", "shop": "clothes"}, "name": "Triumph", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Truworths": {"tags": {"name": "Truworths", "shop": "clothes"}, "name": "Truworths", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Ulla Popken": {"tags": {"name": "Ulla Popken", "shop": "clothes"}, "name": "Ulla Popken", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Uniqlo": {"tags": {"name": "Uniqlo", "shop": "clothes"}, "name": "Uniqlo", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/United Colors of Benetton": {"tags": {"name": "United Colors of Benetton", "shop": "clothes"}, "name": "United Colors of Benetton", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Urban Outfitters": {"tags": {"name": "Urban Outfitters", "shop": "clothes"}, "name": "Urban Outfitters", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Vero Moda": {"tags": {"name": "Vero Moda", "shop": "clothes"}, "name": "Vero Moda", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Victoria's Secret": {"tags": {"name": "Victoria's Secret", "shop": "clothes"}, "name": "Victoria's Secret", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Vögele": {"tags": {"name": "Vögele", "shop": "clothes"}, "name": "Vögele", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/WE": {"tags": {"name": "WE", "shop": "clothes"}, "name": "WE", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Wibra": {"tags": {"name": "Wibra", "shop": "clothes"}, "name": "Wibra", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Winners": {"tags": {"name": "Winners", "shop": "clothes"}, "name": "Winners", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Yamamay": {"tags": {"name": "Yamamay", "shop": "clothes"}, "name": "Yamamay", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Zara": {"tags": {"name": "Zara", "shop": "clothes"}, "name": "Zara", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Zeeman": {"tags": {"name": "Zeeman", "shop": "clothes"}, "name": "Zeeman", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/mister*lady": {"tags": {"name": "mister*lady", "shop": "clothes"}, "name": "mister*lady", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/s.Oliver": {"tags": {"name": "s.Oliver", "shop": "clothes"}, "name": "s.Oliver", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Детская одежда": {"tags": {"name": "Детская одежда", "shop": "clothes"}, "name": "Детская одежда", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Женская одежда": {"tags": {"name": "Женская одежда", "shop": "clothes"}, "name": "Женская одежда", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Липненски": {"tags": {"name": "Липненски", "shop": "clothes"}, "name": "Липненски", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Московская ярмарка": {"tags": {"name": "Московская ярмарка", "shop": "clothes"}, "name": "Московская ярмарка", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Одежда": {"tags": {"name": "Одежда", "shop": "clothes"}, "name": "Одежда", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Смешные цены": {"tags": {"name": "Смешные цены", "shop": "clothes"}, "name": "Смешные цены", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/Спецодежда": {"tags": {"name": "Спецодежда", "shop": "clothes"}, "name": "Спецодежда", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/しまむら": {"tags": {"name": "しまむら", "shop": "clothes"}, "name": "しまむら", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/ユニクロ": {"tags": {"name": "ユニクロ", "shop": "clothes"}, "name": "ユニクロ", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/ワークマン": {"tags": {"name": "ワークマン", "shop": "clothes"}, "name": "ワークマン", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/洋服の青山": {"tags": {"name": "洋服の青山", "shop": "clothes"}, "name": "洋服の青山", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/clothes/西松屋": {"tags": {"name": "西松屋", "shop": "clothes"}, "name": "西松屋", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "clothes", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/coffee/Nespresso": {"tags": {"name": "Nespresso", "shop": "coffee"}, "name": "Nespresso", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/coffee/Tchibo": {"tags": {"name": "Tchibo", "shop": "coffee"}, "name": "Tchibo", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/computer/Apple Store": {"tags": {"name": "Apple Store", "shop": "computer"}, "name": "Apple Store", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/computer/DNS": {"tags": {"name": "DNS", "shop": "computer"}, "name": "DNS", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/computer/PC World": {"tags": {"name": "PC World", "shop": "computer"}, "name": "PC World", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/computer/ДНС": {"tags": {"name": "ДНС", "shop": "computer"}, "name": "ДНС", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/confectionery/Fagyizó": {"tags": {"name": "Fagyizó", "shop": "confectionery"}, "name": "Fagyizó", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/confectionery/Hussel": {"tags": {"name": "Hussel", "shop": "confectionery"}, "name": "Hussel", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/confectionery/Leonidas": {"tags": {"name": "Leonidas", "shop": "confectionery"}, "name": "Leonidas", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/confectionery/T. SN": {"tags": {"name": "T. SN", "shop": "confectionery"}, "name": "T. SN", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/confectionery/Thorntons": {"tags": {"name": "Thorntons", "shop": "confectionery"}, "name": "Thorntons", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/711": {"tags": {"name": "711", "shop": "convenience"}, "name": "711", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/777": {"tags": {"name": "777", "shop": "convenience"}, "name": "777", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/24 часа": {"tags": {"name": "24 часа", "shop": "convenience"}, "name": "24 часа", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/7-Eleven": {"tags": {"name": "7-Eleven", "shop": "convenience"}, "name": "7-Eleven", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/8 à Huit": {"tags": {"name": "8 à Huit", "shop": "convenience"}, "name": "8 à Huit", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/99 Speedmart": {"tags": {"name": "99 Speedmart", "shop": "convenience"}, "name": "99 Speedmart", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/ABC": {"tags": {"name": "ABC", "shop": "convenience"}, "name": "ABC", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/AMPM": {"tags": {"name": "AMPM", "shop": "convenience"}, "name": "AMPM", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Aibė": {"tags": {"name": "Aibė", "shop": "convenience"}, "name": "Aibė", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Alepa": {"tags": {"name": "Alepa", "shop": "convenience"}, "name": "Alepa", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Alfamart": {"tags": {"name": "Alfamart", "shop": "convenience"}, "name": "Alfamart", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Alimentara": {"tags": {"name": "Alimentara", "shop": "convenience"}, "name": "Alimentara", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Almacen": {"tags": {"name": "Almacen", "shop": "convenience"}, "name": "Almacen", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Almacén": {"tags": {"name": "Almacén", "shop": "convenience"}, "name": "Almacén", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/BP Shop": {"tags": {"name": "BP Shop", "shop": "convenience"}, "name": "BP Shop", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Baqala": {"tags": {"name": "Baqala", "shop": "convenience"}, "name": "Baqala", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Best One": {"tags": {"name": "Best One", "shop": "convenience"}, "name": "Best One", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Best-One": {"tags": {"name": "Best-One", "shop": "convenience"}, "name": "Best-One", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Bodega": {"tags": {"name": "Bodega", "shop": "convenience"}, "name": "Bodega", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Bonjour": {"tags": {"name": "Bonjour", "shop": "convenience"}, "name": "Bonjour", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/CBA": {"tags": {"name": "CBA", "shop": "convenience"}, "name": "CBA", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/COOP": {"tags": {"name": "COOP", "shop": "convenience"}, "name": "COOP", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/COOP Jednota": {"tags": {"name": "COOP Jednota", "shop": "convenience"}, "name": "COOP Jednota", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/CU": {"tags": {"name": "CU", "shop": "convenience"}, "name": "CU", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Casino Shop": {"tags": {"name": "Casino Shop", "shop": "convenience"}, "name": "Casino Shop", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Centra": {"tags": {"name": "Centra", "shop": "convenience"}, "name": "Centra", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Central Convenience Store": {"tags": {"name": "Central Convenience Store", "shop": "convenience"}, "name": "Central Convenience Store", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Circle K": {"tags": {"name": "Circle K", "shop": "convenience"}, "name": "Circle K", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Coop Jednota": {"tags": {"name": "Coop Jednota", "shop": "convenience"}, "name": "Coop Jednota", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Corner Store": {"tags": {"name": "Corner Store", "shop": "convenience"}, "name": "Corner Store", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Costcutter": {"tags": {"name": "Costcutter", "shop": "convenience"}, "name": "Costcutter", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Couche-Tard": {"tags": {"name": "Couche-Tard", "shop": "convenience"}, "name": "Couche-Tard", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Cumberland Farms": {"tags": {"name": "Cumberland Farms", "shop": "convenience"}, "name": "Cumberland Farms", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Daisy Mart": {"tags": {"name": "Daisy Mart", "shop": "convenience"}, "name": "Daisy Mart", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Delikatesy": {"tags": {"name": "Delikatesy", "shop": "convenience"}, "name": "Delikatesy", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Dollar General": {"tags": {"name": "Dollar General", "shop": "convenience"}, "name": "Dollar General", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Dépanneur": {"tags": {"name": "Dépanneur", "shop": "convenience"}, "name": "Dépanneur", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/FamilyMart": {"tags": {"name": "FamilyMart", "shop": "convenience"}, "name": "FamilyMart", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Food Mart": {"tags": {"name": "Food Mart", "shop": "convenience"}, "name": "Food Mart", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Four Square": {"tags": {"name": "Four Square", "shop": "convenience"}, "name": "Four Square", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Fresh": {"tags": {"name": "Fresh", "shop": "convenience"}, "name": "Fresh", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Freshmarket": {"tags": {"name": "Freshmarket", "shop": "convenience"}, "name": "Freshmarket", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/GS25": {"tags": {"name": "GS25", "shop": "convenience"}, "name": "GS25", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Groszek": {"tags": {"name": "Groszek", "shop": "convenience"}, "name": "Groszek", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Hasty Market": {"tags": {"name": "Hasty Market", "shop": "convenience"}, "name": "Hasty Market", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Hruška": {"tags": {"name": "Hruška", "shop": "convenience"}, "name": "Hruška", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Indomaret": {"tags": {"name": "Indomaret", "shop": "convenience"}, "name": "Indomaret", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Jednota": {"tags": {"name": "Jednota", "shop": "convenience"}, "name": "Jednota", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Joker": {"tags": {"name": "Joker", "shop": "convenience"}, "name": "Joker", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/K-Market": {"tags": {"name": "K-Market", "shop": "convenience"}, "name": "K-Market", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Kangaroo Express": {"tags": {"name": "Kangaroo Express", "shop": "convenience"}, "name": "Kangaroo Express", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Kisbolt": {"tags": {"name": "Kisbolt", "shop": "convenience"}, "name": "Kisbolt", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Lawson": {"tags": {"name": "Lawson", "shop": "convenience"}, "name": "Lawson", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Lewiatan": {"tags": {"name": "Lewiatan", "shop": "convenience"}, "name": "Lewiatan", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Lifestyle Express": {"tags": {"name": "Lifestyle Express", "shop": "convenience"}, "name": "Lifestyle Express", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Londis": {"tags": {"name": "Londis", "shop": "convenience"}, "name": "Londis", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/M&S Simply Food": {"tags": {"name": "M&S Simply Food", "shop": "convenience"}, "name": "M&S Simply Food", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Mac's": {"tags": {"name": "Mac's", "shop": "convenience"}, "name": "Mac's", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Mace": {"tags": {"name": "Mace", "shop": "convenience"}, "name": "Mace", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Magazin": {"tags": {"name": "Magazin", "shop": "convenience"}, "name": "Magazin", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Magazin Mixt": {"tags": {"name": "Magazin Mixt", "shop": "convenience"}, "name": "Magazin Mixt", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Magazin Non-Stop": {"tags": {"name": "Magazin Non-Stop", "shop": "convenience"}, "name": "Magazin Non-Stop", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Magazin mixt": {"tags": {"name": "Magazin mixt", "shop": "convenience"}, "name": "Magazin mixt", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Maxikiosco": {"tags": {"name": "Maxikiosco", "shop": "convenience"}, "name": "Maxikiosco", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Małpka Express": {"tags": {"name": "Małpka Express", "shop": "convenience"}, "name": "Małpka Express", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/McColl's": {"tags": {"name": "McColl's", "shop": "convenience"}, "name": "McColl's", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Migrolino": {"tags": {"name": "Migrolino", "shop": "convenience"}, "name": "Migrolino", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Mini ABC": {"tags": {"name": "Mini ABC", "shop": "convenience"}, "name": "Mini ABC", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Mini Market": {"tags": {"name": "Mini Market", "shop": "convenience"}, "name": "Mini Market", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Mini Market Non-Stop": {"tags": {"name": "Mini Market Non-Stop", "shop": "convenience"}, "name": "Mini Market Non-Stop", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Mini Mart": {"tags": {"name": "Mini Mart", "shop": "convenience"}, "name": "Mini Mart", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Mini Stop": {"tags": {"name": "Mini Stop", "shop": "convenience"}, "name": "Mini Stop", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Minimercado": {"tags": {"name": "Minimercado", "shop": "convenience"}, "name": "Minimercado", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Mlin i pekare": {"tags": {"name": "Mlin i pekare", "shop": "convenience"}, "name": "Mlin i pekare", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Nasz Sklep": {"tags": {"name": "Nasz Sklep", "shop": "convenience"}, "name": "Nasz Sklep", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Nisa": {"tags": {"name": "Nisa", "shop": "convenience"}, "name": "Nisa", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Nisa Local": {"tags": {"name": "Nisa Local", "shop": "convenience"}, "name": "Nisa Local", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/OK-Mart": {"tags": {"name": "OK-Mart", "shop": "convenience"}, "name": "OK-Mart", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/OK便利商店": {"tags": {"name": "OK便利商店", "shop": "convenience"}, "name": "OK便利商店", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/OK便利店 Circle K": {"tags": {"name": "OK便利店 Circle K", "shop": "convenience"}, "name": "OK便利店 Circle K", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Odido": {"tags": {"name": "Odido", "shop": "convenience"}, "name": "Odido", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/On The Run": {"tags": {"name": "On The Run", "shop": "convenience"}, "name": "On The Run", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/On the Run": {"tags": {"name": "On the Run", "shop": "convenience"}, "name": "On the Run", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/One Stop": {"tags": {"name": "One Stop", "shop": "convenience"}, "name": "One Stop", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Oxxo": {"tags": {"name": "Oxxo", "shop": "convenience"}, "name": "Oxxo", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Parduotuvė": {"tags": {"name": "Parduotuvė", "shop": "convenience"}, "name": "Parduotuvė", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Petit Casino": {"tags": {"name": "Petit Casino", "shop": "convenience"}, "name": "Petit Casino", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Plaid Pantry": {"tags": {"name": "Plaid Pantry", "shop": "convenience"}, "name": "Plaid Pantry", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Potraviny": {"tags": {"name": "Potraviny", "shop": "convenience"}, "name": "Potraviny", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Prehrana": {"tags": {"name": "Prehrana", "shop": "convenience"}, "name": "Prehrana", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Premier": {"tags": {"name": "Premier", "shop": "convenience"}, "name": "Premier", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Proxi": {"tags": {"name": "Proxi", "shop": "convenience"}, "name": "Proxi", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Proxy": {"tags": {"name": "Proxy", "shop": "convenience"}, "name": "Proxy", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Pulperia": {"tags": {"name": "Pulperia", "shop": "convenience"}, "name": "Pulperia", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Royal Farms": {"tags": {"name": "Royal Farms", "shop": "convenience"}, "name": "Royal Farms", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Sale": {"tags": {"name": "Sale", "shop": "convenience"}, "name": "Sale", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Sari-sari Store": {"tags": {"name": "Sari-sari Store", "shop": "convenience"}, "name": "Sari-sari Store", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Select": {"tags": {"name": "Select", "shop": "convenience"}, "name": "Select", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Shell Select": {"tags": {"name": "Shell Select", "shop": "convenience"}, "name": "Shell Select", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Shop & Go": {"tags": {"name": "Shop & Go", "shop": "convenience"}, "name": "Shop & Go", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Siwa": {"tags": {"name": "Siwa", "shop": "convenience"}, "name": "Siwa", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Sklep spożywczy": {"tags": {"name": "Sklep spożywczy", "shop": "convenience"}, "name": "Sklep spożywczy", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Smíšené zboží": {"tags": {"name": "Smíšené zboží", "shop": "convenience"}, "name": "Smíšené zboží", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Społem": {"tags": {"name": "Społem", "shop": "convenience"}, "name": "Społem", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Spätkauf": {"tags": {"name": "Spätkauf", "shop": "convenience"}, "name": "Spätkauf", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Stewart's": {"tags": {"name": "Stewart's", "shop": "convenience"}, "name": "Stewart's", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Stores": {"tags": {"name": "Stores", "shop": "convenience"}, "name": "Stores", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Stripes": {"tags": {"name": "Stripes", "shop": "convenience"}, "name": "Stripes", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Studenac": {"tags": {"name": "Studenac", "shop": "convenience"}, "name": "Studenac", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Sunkus": {"tags": {"name": "Sunkus", "shop": "convenience"}, "name": "Sunkus", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Słoneczko": {"tags": {"name": "Słoneczko", "shop": "convenience"}, "name": "Słoneczko", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/TESCO Lotus Express": {"tags": {"name": "TESCO Lotus Express", "shop": "convenience"}, "name": "TESCO Lotus Express", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Tesco Express": {"tags": {"name": "Tesco Express", "shop": "convenience"}, "name": "Tesco Express", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Tesco Lotus Express": {"tags": {"name": "Tesco Lotus Express", "shop": "convenience"}, "name": "Tesco Lotus Express", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Tom Market 89": {"tags": {"name": "Tom Market 89", "shop": "convenience"}, "name": "Tom Market 89", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/United Dairy Farmers": {"tags": {"name": "United Dairy Farmers", "shop": "convenience"}, "name": "United Dairy Farmers", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Vegyesbolt": {"tags": {"name": "Vegyesbolt", "shop": "convenience"}, "name": "Vegyesbolt", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Večerka": {"tags": {"name": "Večerka", "shop": "convenience"}, "name": "Večerka", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Vival": {"tags": {"name": "Vival", "shop": "convenience"}, "name": "Vival", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Wawa": {"tags": {"name": "Wawa", "shop": "convenience"}, "name": "Wawa", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Weltladen": {"tags": {"name": "Weltladen", "shop": "convenience"}, "name": "Weltladen", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/abc": {"tags": {"name": "abc", "shop": "convenience"}, "name": "abc", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/ampm": {"tags": {"name": "ampm", "shop": "convenience"}, "name": "ampm", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/best-one": {"tags": {"name": "best-one", "shop": "convenience"}, "name": "best-one", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/odido": {"tags": {"name": "odido", "shop": "convenience"}, "name": "odido", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Élelmiszer": {"tags": {"name": "Élelmiszer", "shop": "convenience"}, "name": "Élelmiszer", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Élelmiszerbolt": {"tags": {"name": "Élelmiszerbolt", "shop": "convenience"}, "name": "Élelmiszerbolt", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Żabka": {"tags": {"name": "Żabka", "shop": "convenience"}, "name": "Żabka", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Žabka": {"tags": {"name": "Žabka", "shop": "convenience"}, "name": "Žabka", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Августина": {"tags": {"name": "Августина", "shop": "convenience"}, "name": "Августина", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Авоська": {"tags": {"name": "Авоська", "shop": "convenience"}, "name": "Авоська", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Агрокомплекс": {"tags": {"name": "Агрокомплекс", "shop": "convenience"}, "name": "Агрокомплекс", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Альянс": {"tags": {"name": "Альянс", "shop": "convenience"}, "name": "Альянс", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Апельсин": {"tags": {"name": "Апельсин", "shop": "convenience"}, "name": "Апельсин", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Ассорти": {"tags": {"name": "Ассорти", "shop": "convenience"}, "name": "Ассорти", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Белорусские продукты": {"tags": {"name": "Белорусские продукты", "shop": "convenience"}, "name": "Белорусские продукты", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Берёзка": {"tags": {"name": "Берёзка", "shop": "convenience"}, "name": "Берёзка", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Везунчик": {"tags": {"name": "Везунчик", "shop": "convenience"}, "name": "Везунчик", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Весна": {"tags": {"name": "Весна", "shop": "convenience"}, "name": "Весна", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Ветеран": {"tags": {"name": "Ветеран", "shop": "convenience"}, "name": "Ветеран", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Визит": {"tags": {"name": "Визит", "shop": "convenience"}, "name": "Визит", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Виктория": {"tags": {"name": "Виктория", "shop": "convenience"}, "name": "Виктория", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/ВкусВилл": {"tags": {"name": "ВкусВилл", "shop": "convenience"}, "name": "ВкусВилл", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Гастроном": {"tags": {"name": "Гастроном", "shop": "convenience"}, "name": "Гастроном", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Гермес": {"tags": {"name": "Гермес", "shop": "convenience"}, "name": "Гермес", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Гурман": {"tags": {"name": "Гурман", "shop": "convenience"}, "name": "Гурман", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Домашний": {"tags": {"name": "Домашний", "shop": "convenience"}, "name": "Домашний", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Елена": {"tags": {"name": "Елена", "shop": "convenience"}, "name": "Елена", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Ермолино": {"tags": {"name": "Ермолино", "shop": "convenience"}, "name": "Ермолино", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Калинка": {"tags": {"name": "Калинка", "shop": "convenience"}, "name": "Калинка", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Кировский": {"tags": {"name": "Кировский", "shop": "convenience"}, "name": "Кировский", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Колобок": {"tags": {"name": "Колобок", "shop": "convenience"}, "name": "Колобок", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Колосок": {"tags": {"name": "Колосок", "shop": "convenience"}, "name": "Колосок", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Копеечка": {"tags": {"name": "Копеечка", "shop": "convenience"}, "name": "Копеечка", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Копейка": {"tags": {"name": "Копейка", "shop": "convenience"}, "name": "Копейка", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Корзинка": {"tags": {"name": "Корзинка", "shop": "convenience"}, "name": "Корзинка", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Крамниця": {"tags": {"name": "Крамниця", "shop": "convenience"}, "name": "Крамниця", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Кристалл": {"tags": {"name": "Кристалл", "shop": "convenience"}, "name": "Кристалл", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Кулинария": {"tags": {"name": "Кулинария", "shop": "convenience"}, "name": "Кулинария", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Купец": {"tags": {"name": "Купец", "shop": "convenience"}, "name": "Купец", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Ласточка": {"tags": {"name": "Ласточка", "shop": "convenience"}, "name": "Ласточка", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Лидер": {"tags": {"name": "Лидер", "shop": "convenience"}, "name": "Лидер", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Любимый": {"tags": {"name": "Любимый", "shop": "convenience"}, "name": "Любимый", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Люкс": {"tags": {"name": "Люкс", "shop": "convenience"}, "name": "Люкс", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Магазин при АЗС": {"tags": {"name": "Магазин при АЗС", "shop": "convenience"}, "name": "Магазин при АЗС", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Мария-Ра": {"tags": {"name": "Мария-Ра", "shop": "convenience"}, "name": "Мария-Ра", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Маяк": {"tags": {"name": "Маяк", "shop": "convenience"}, "name": "Маяк", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Меркурий": {"tags": {"name": "Меркурий", "shop": "convenience"}, "name": "Меркурий", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Мечта": {"tags": {"name": "Мечта", "shop": "convenience"}, "name": "Мечта", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Минимаркет": {"tags": {"name": "Минимаркет", "shop": "convenience"}, "name": "Минимаркет", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Мираж": {"tags": {"name": "Мираж", "shop": "convenience"}, "name": "Мираж", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Надежда": {"tags": {"name": "Надежда", "shop": "convenience"}, "name": "Надежда", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Ника": {"tags": {"name": "Ника", "shop": "convenience"}, "name": "Ника", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Оазис": {"tags": {"name": "Оазис", "shop": "convenience"}, "name": "Оазис", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Олимп": {"tags": {"name": "Олимп", "shop": "convenience"}, "name": "Олимп", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Подсолнух": {"tags": {"name": "Подсолнух", "shop": "convenience"}, "name": "Подсолнух", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Престиж": {"tags": {"name": "Престиж", "shop": "convenience"}, "name": "Престиж", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Продукти": {"tags": {"name": "Продукти", "shop": "convenience"}, "name": "Продукти", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Продуктовый": {"tags": {"name": "Продуктовый", "shop": "convenience"}, "name": "Продуктовый", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Продуктовый магазин": {"tags": {"name": "Продуктовый магазин", "shop": "convenience"}, "name": "Продуктовый магазин", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Продукты": {"tags": {"name": "Продукты", "shop": "convenience"}, "name": "Продукты", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Продукты 24": {"tags": {"name": "Продукты 24", "shop": "convenience"}, "name": "Продукты 24", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Радуга": {"tags": {"name": "Радуга", "shop": "convenience"}, "name": "Радуга", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Родны кут": {"tags": {"name": "Родны кут", "shop": "convenience"}, "name": "Родны кут", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Ромашка": {"tags": {"name": "Ромашка", "shop": "convenience"}, "name": "Ромашка", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Русь": {"tags": {"name": "Русь", "shop": "convenience"}, "name": "Русь", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Светлана": {"tags": {"name": "Светлана", "shop": "convenience"}, "name": "Светлана", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Смак": {"tags": {"name": "Смак", "shop": "convenience"}, "name": "Смак", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Солнечный": {"tags": {"name": "Солнечный", "shop": "convenience"}, "name": "Солнечный", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Татьяна": {"tags": {"name": "Татьяна", "shop": "convenience"}, "name": "Татьяна", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Тройка": {"tags": {"name": "Тройка", "shop": "convenience"}, "name": "Тройка", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/У Палыча": {"tags": {"name": "У Палыча", "shop": "convenience"}, "name": "У Палыча", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Универсам": {"tags": {"name": "Универсам", "shop": "convenience"}, "name": "Универсам", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Фортуна": {"tags": {"name": "Фортуна", "shop": "convenience"}, "name": "Фортуна", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Хороший": {"tags": {"name": "Хороший", "shop": "convenience"}, "name": "Хороший", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Центральный": {"tags": {"name": "Центральный", "shop": "convenience"}, "name": "Центральный", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Чайка": {"tags": {"name": "Чайка", "shop": "convenience"}, "name": "Чайка", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Шанс": {"tags": {"name": "Шанс", "shop": "convenience"}, "name": "Шанс", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Эконом": {"tags": {"name": "Эконом", "shop": "convenience"}, "name": "Эконом", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Юбилейный": {"tags": {"name": "Юбилейный", "shop": "convenience"}, "name": "Юбилейный", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/Юлия": {"tags": {"name": "Юлия", "shop": "convenience"}, "name": "Юлия", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/продукты": {"tags": {"name": "продукты", "shop": "convenience"}, "name": "продукты", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/მარკეტი": {"tags": {"name": "მარკეტი", "shop": "convenience"}, "name": "მარკეტი", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/サンクス": {"tags": {"name": "サンクス", "name:en": "Sunkus", "shop": "convenience"}, "name": "サンクス", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/サークルK": {"tags": {"name": "サークルK", "name:en": "Circle K", "shop": "convenience"}, "name": "サークルK", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/スリーエフ": {"tags": {"name": "スリーエフ", "shop": "convenience"}, "name": "スリーエフ", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/セイコーマート": {"tags": {"name": "セイコーマート", "shop": "convenience"}, "name": "セイコーマート", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/セブン-イレブン": {"tags": {"name": "セブン-イレブン", "name:en": "7-Eleven", "shop": "convenience"}, "name": "セブン-イレブン", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/セブンイレブン(Seven-Eleven)": {"tags": {"name": "セブンイレブン(Seven-Eleven)", "shop": "convenience"}, "name": "セブンイレブン(Seven-Eleven)", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/セーブオン": {"tags": {"name": "セーブオン", "shop": "convenience"}, "name": "セーブオン", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/デイリーヤマザキ": {"tags": {"name": "デイリーヤマザキ", "shop": "convenience"}, "name": "デイリーヤマザキ", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/ファミリーマート": {"tags": {"name": "ファミリーマート", "name:en": "FamilyMart", "shop": "convenience"}, "name": "ファミリーマート", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/ポプラ": {"tags": {"name": "ポプラ", "shop": "convenience"}, "name": "ポプラ", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/ミニストップ": {"tags": {"name": "ミニストップ", "name:en": "MINISTOP", "shop": "convenience"}, "name": "ミニストップ", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/ヤマザキショップ": {"tags": {"name": "ヤマザキショップ", "shop": "convenience"}, "name": "ヤマザキショップ", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/ローソン": {"tags": {"name": "ローソン", "name:en": "Lawson", "shop": "convenience"}, "name": "ローソン", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/ローソンストア100": {"tags": {"name": "ローソンストア100", "shop": "convenience"}, "name": "ローソンストア100", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/全家": {"tags": {"name": "全家", "shop": "convenience"}, "name": "全家", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/全家便利商店": {"tags": {"name": "全家便利商店", "shop": "convenience"}, "name": "全家便利商店", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/萊爾富": {"tags": {"name": "萊爾富", "shop": "convenience"}, "name": "萊爾富", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/convenience/세븐일레븐": {"tags": {"name": "세븐일레븐", "shop": "convenience"}, "name": "세븐일레븐", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/copyshop/FedEx Office": {"tags": {"name": "FedEx Office", "shop": "copyshop"}, "name": "FedEx Office", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/copyshop/FedEx Office Print and Ship Center": {"tags": {"name": "FedEx Office Print and Ship Center", "shop": "copyshop"}, "name": "FedEx Office Print and Ship Center", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/cosmetics/Douglas": {"tags": {"name": "Douglas", "shop": "cosmetics"}, "name": "Douglas", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/cosmetics/Lush": {"tags": {"name": "Lush", "shop": "cosmetics"}, "name": "Lush", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/cosmetics/Marionnaud": {"tags": {"name": "Marionnaud", "shop": "cosmetics"}, "name": "Marionnaud", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/cosmetics/Sephora": {"tags": {"name": "Sephora", "shop": "cosmetics"}, "name": "Sephora", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/cosmetics/The Body Shop": {"tags": {"name": "The Body Shop", "shop": "cosmetics"}, "name": "The Body Shop", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/cosmetics/Л'Этуаль": {"tags": {"name": "Л'Этуаль", "shop": "cosmetics"}, "name": "Л'Этуаль", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/cosmetics/Магнит косметик": {"tags": {"name": "Магнит косметик", "shop": "cosmetics"}, "name": "Магнит косметик", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/cosmetics/Магнит-Косметик": {"tags": {"name": "Магнит-Косметик", "shop": "cosmetics"}, "name": "Магнит-Косметик", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/cosmetics/Подружка": {"tags": {"name": "Подружка", "shop": "cosmetics"}, "name": "Подружка", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/craft/Hobby Lobby": {"tags": {"name": "Hobby Lobby", "shop": "craft"}, "name": "Hobby Lobby", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/craft/Michaels": {"tags": {"name": "Michaels", "shop": "craft"}, "name": "Michaels", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Argos": {"tags": {"name": "Argos", "shop": "department_store"}, "name": "Argos", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Bed Bath & Beyond": {"tags": {"name": "Bed Bath & Beyond", "shop": "department_store"}, "name": "Bed Bath & Beyond", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Big Lots": {"tags": {"name": "Big Lots", "shop": "department_store"}, "name": "Big Lots", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Big W": {"tags": {"name": "Big W", "shop": "department_store"}, "name": "Big W", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Canadian Tire": {"tags": {"name": "Canadian Tire", "shop": "department_store"}, "name": "Canadian Tire", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Coppel": {"tags": {"name": "Coppel", "shop": "department_store"}, "name": "Coppel", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Debenhams": {"tags": {"name": "Debenhams", "shop": "department_store"}, "name": "Debenhams", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Dillard's": {"tags": {"name": "Dillard's", "shop": "department_store"}, "name": "Dillard's", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/El Corte Inglés": {"tags": {"name": "El Corte Inglés", "shop": "department_store"}, "name": "El Corte Inglés", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Galeria Kaufhof": {"tags": {"name": "Galeria Kaufhof", "shop": "department_store"}, "name": "Galeria Kaufhof", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/HEMA": {"tags": {"name": "HEMA", "shop": "department_store"}, "name": "HEMA", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Harvey Norman": {"tags": {"name": "Harvey Norman", "shop": "department_store"}, "name": "Harvey Norman", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/JCPenney": {"tags": {"name": "JCPenney", "shop": "department_store"}, "name": "JCPenney", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Karstadt": {"tags": {"name": "Karstadt", "shop": "department_store"}, "name": "Karstadt", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Kmart": {"tags": {"name": "Kmart", "shop": "department_store"}, "name": "Kmart", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Kohl's": {"tags": {"name": "Kohl's", "shop": "department_store"}, "name": "Kohl's", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Lojas Americanas": {"tags": {"name": "Lojas Americanas", "shop": "department_store"}, "name": "Lojas Americanas", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Macy's": {"tags": {"name": "Macy's", "shop": "department_store"}, "name": "Macy's", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Marks & Spencer": {"tags": {"name": "Marks & Spencer", "shop": "department_store"}, "name": "Marks & Spencer", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Myer": {"tags": {"name": "Myer", "shop": "department_store"}, "name": "Myer", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Nordstrom": {"tags": {"name": "Nordstrom", "shop": "department_store"}, "name": "Nordstrom", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Sears": {"tags": {"name": "Sears", "shop": "department_store"}, "name": "Sears", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Shopko": {"tags": {"name": "Shopko", "shop": "department_store"}, "name": "Shopko", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Target": {"tags": {"name": "Target", "shop": "department_store"}, "name": "Target", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/The Warehouse": {"tags": {"name": "The Warehouse", "shop": "department_store"}, "name": "The Warehouse", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Woolworth": {"tags": {"name": "Woolworth", "shop": "department_store"}, "name": "Woolworth", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/department_store/Универмаг": {"tags": {"name": "Универмаг", "shop": "department_store"}, "name": "Универмаг", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Ace Hardware": {"tags": {"name": "Ace Hardware", "shop": "doityourself"}, "name": "Ace Hardware", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/B&Q": {"tags": {"name": "B&Q", "shop": "doityourself"}, "name": "B&Q", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Bauhaus": {"tags": {"name": "Bauhaus", "shop": "doityourself"}, "name": "Bauhaus", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Biltema": {"tags": {"name": "Biltema", "shop": "doityourself"}, "name": "Biltema", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Brico": {"tags": {"name": "Brico", "shop": "doityourself"}, "name": "Brico", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Bricomarché": {"tags": {"name": "Bricomarché", "shop": "doityourself"}, "name": "Bricomarché", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Bricorama": {"tags": {"name": "Bricorama", "shop": "doityourself"}, "name": "Bricorama", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Bunnings Warehouse": {"tags": {"name": "Bunnings Warehouse", "shop": "doityourself"}, "name": "Bunnings Warehouse", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Castorama": {"tags": {"name": "Castorama", "shop": "doityourself"}, "name": "Castorama", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Easy": {"tags": {"name": "Easy", "shop": "doityourself"}, "name": "Easy", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Gamma": {"tags": {"name": "Gamma", "shop": "doityourself"}, "name": "Gamma", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Globus Baumarkt": {"tags": {"name": "Globus Baumarkt", "shop": "doityourself"}, "name": "Globus Baumarkt", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Hagebaumarkt": {"tags": {"name": "Hagebaumarkt", "shop": "doityourself"}, "name": "Hagebaumarkt", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Hellweg": {"tags": {"name": "Hellweg", "shop": "doityourself"}, "name": "Hellweg", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Home Depot": {"tags": {"name": "Home Depot", "shop": "doityourself"}, "name": "Home Depot", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Home Hardware": {"tags": {"name": "Home Hardware", "shop": "doityourself"}, "name": "Home Hardware", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Homebase": {"tags": {"name": "Homebase", "shop": "doityourself"}, "name": "Homebase", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Hornbach": {"tags": {"name": "Hornbach", "shop": "doityourself"}, "name": "Hornbach", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Hubo": {"tags": {"name": "Hubo", "shop": "doityourself"}, "name": "Hubo", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Karwei": {"tags": {"name": "Karwei", "shop": "doityourself"}, "name": "Karwei", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Lagerhaus": {"tags": {"name": "Lagerhaus", "shop": "doityourself"}, "name": "Lagerhaus", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Leroy Merlin": {"tags": {"name": "Leroy Merlin", "shop": "doityourself"}, "name": "Leroy Merlin", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Lowe's": {"tags": {"name": "Lowe's", "shop": "doityourself"}, "name": "Lowe's", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Lowes": {"tags": {"name": "Lowes", "shop": "doityourself"}, "name": "Lowes", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Menards": {"tags": {"name": "Menards", "shop": "doityourself"}, "name": "Menards", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Mr Bricolage": {"tags": {"name": "Mr Bricolage", "shop": "doityourself"}, "name": "Mr Bricolage", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Mr.Bricolage": {"tags": {"name": "Mr.Bricolage", "shop": "doityourself"}, "name": "Mr.Bricolage", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/OBI": {"tags": {"name": "OBI", "shop": "doityourself"}, "name": "OBI", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Point P": {"tags": {"name": "Point P", "shop": "doityourself"}, "name": "Point P", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Praktiker": {"tags": {"name": "Praktiker", "shop": "doityourself"}, "name": "Praktiker", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Praxis": {"tags": {"name": "Praxis", "shop": "doityourself"}, "name": "Praxis", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Rona": {"tags": {"name": "Rona", "shop": "doityourself"}, "name": "Rona", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Screwfix": {"tags": {"name": "Screwfix", "shop": "doityourself"}, "name": "Screwfix", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Sonderpreis Baumarkt": {"tags": {"name": "Sonderpreis Baumarkt", "shop": "doityourself"}, "name": "Sonderpreis Baumarkt", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Tekzen": {"tags": {"name": "Tekzen", "shop": "doityourself"}, "name": "Tekzen", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Toom Baumarkt": {"tags": {"name": "Toom Baumarkt", "shop": "doityourself"}, "name": "Toom Baumarkt", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Weldom": {"tags": {"name": "Weldom", "shop": "doityourself"}, "name": "Weldom", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Wickes": {"tags": {"name": "Wickes", "shop": "doityourself"}, "name": "Wickes", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Леруа Мерлен": {"tags": {"name": "Леруа Мерлен", "shop": "doityourself"}, "name": "Леруа Мерлен", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Мастер": {"tags": {"name": "Мастер", "shop": "doityourself"}, "name": "Мастер", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Строитель": {"tags": {"name": "Строитель", "shop": "doityourself"}, "name": "Строитель", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/Стройматериалы": {"tags": {"name": "Стройматериалы", "shop": "doityourself"}, "name": "Стройматериалы", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/カインズホーム": {"tags": {"name": "カインズホーム", "shop": "doityourself"}, "name": "カインズホーム", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/コメリ": {"tags": {"name": "コメリ", "shop": "doityourself"}, "name": "コメリ", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/doityourself/コーナン": {"tags": {"name": "コーナン", "shop": "doityourself"}, "name": "コーナン", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/dry_cleaning/Cleaners": {"tags": {"name": "Cleaners", "shop": "dry_cleaning"}, "name": "Cleaners", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/dry_cleaning/Pressing": {"tags": {"name": "Pressing", "shop": "dry_cleaning"}, "name": "Pressing", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/dry_cleaning/Диана": {"tags": {"name": "Диана", "shop": "dry_cleaning"}, "name": "Диана", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/dry_cleaning/Химчистка": {"tags": {"name": "Химчистка", "shop": "dry_cleaning"}, "name": "Химчистка", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/dry_cleaning/ホワイト急便": {"tags": {"name": "ホワイト急便", "shop": "dry_cleaning"}, "name": "ホワイト急便", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/BCC": {"tags": {"name": "BCC", "shop": "electronics"}, "name": "BCC", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Batteries Plus Bulbs": {"tags": {"name": "Batteries Plus Bulbs", "shop": "electronics"}, "name": "Batteries Plus Bulbs", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Best Buy": {"tags": {"name": "Best Buy", "shop": "electronics"}, "name": "Best Buy", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Boulanger": {"tags": {"name": "Boulanger", "shop": "electronics"}, "name": "Boulanger", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Currys": {"tags": {"name": "Currys", "shop": "electronics"}, "name": "Currys", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Currys PC World": {"tags": {"name": "Currys PC World", "shop": "electronics"}, "name": "Currys PC World", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Darty": {"tags": {"name": "Darty", "shop": "electronics"}, "name": "Darty", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Elektra": {"tags": {"name": "Elektra", "shop": "electronics"}, "name": "Elektra", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Elgiganten": {"tags": {"name": "Elgiganten", "shop": "electronics"}, "name": "Elgiganten", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Euronics": {"tags": {"name": "Euronics", "shop": "electronics"}, "name": "Euronics", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Expert": {"tags": {"name": "Expert", "shop": "electronics"}, "name": "Expert", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Hartlauer": {"tags": {"name": "Hartlauer", "shop": "electronics"}, "name": "Hartlauer", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Interdiscount": {"tags": {"name": "Interdiscount", "shop": "electronics"}, "name": "Interdiscount", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/La Curacao": {"tags": {"name": "La Curacao", "shop": "electronics"}, "name": "La Curacao", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Maplin": {"tags": {"name": "Maplin", "shop": "electronics"}, "name": "Maplin", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Media Expert": {"tags": {"name": "Media Expert", "shop": "electronics"}, "name": "Media Expert", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Media Markt": {"tags": {"name": "Media Markt", "shop": "electronics"}, "name": "Media Markt", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Musimundo": {"tags": {"name": "Musimundo", "shop": "electronics"}, "name": "Musimundo", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Neonet": {"tags": {"name": "Neonet", "shop": "electronics"}, "name": "Neonet", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/RTV Euro AGD": {"tags": {"name": "RTV Euro AGD", "shop": "electronics"}, "name": "RTV Euro AGD", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Radio Shack": {"tags": {"name": "Radio Shack", "shop": "electronics"}, "name": "Radio Shack", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Rogers": {"tags": {"name": "Rogers", "shop": "electronics"}, "name": "Rogers", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Samsung": {"tags": {"name": "Samsung", "shop": "electronics"}, "name": "Samsung", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Saturn": {"tags": {"name": "Saturn", "shop": "electronics"}, "name": "Saturn", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Sony": {"tags": {"name": "Sony", "shop": "electronics"}, "name": "Sony", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/The Source": {"tags": {"name": "The Source", "shop": "electronics"}, "name": "The Source", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Unieuro": {"tags": {"name": "Unieuro", "shop": "electronics"}, "name": "Unieuro", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/М.Видео": {"tags": {"name": "М.Видео", "shop": "electronics"}, "name": "М.Видео", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Фокстрот": {"tags": {"name": "Фокстрот", "shop": "electronics"}, "name": "Фокстрот", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Эксперт": {"tags": {"name": "Эксперт", "shop": "electronics"}, "name": "Эксперт", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/Эльдорадо": {"tags": {"name": "Эльдорадо", "shop": "electronics"}, "name": "Эльдорадо", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/エディオン": {"tags": {"name": "エディオン", "shop": "electronics"}, "name": "エディオン", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/ケーズデンキ": {"tags": {"name": "ケーズデンキ", "shop": "electronics"}, "name": "ケーズデンキ", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/コジマ": {"tags": {"name": "コジマ", "shop": "electronics"}, "name": "コジマ", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/ヤマダ電機": {"tags": {"name": "ヤマダ電機", "shop": "electronics"}, "name": "ヤマダ電機", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/全國電子": {"tags": {"name": "全國電子", "shop": "electronics"}, "name": "全國電子", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/electronics/燦坤3C": {"tags": {"name": "燦坤3C", "shop": "electronics"}, "name": "燦坤3C", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/erotic/Orion": {"tags": {"name": "Orion", "shop": "erotic"}, "name": "Orion", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/fabric/Ткани": {"tags": {"name": "Ткани", "shop": "fabric"}, "name": "Ткани", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/farm/Hofladen": {"tags": {"name": "Hofladen", "shop": "farm"}, "name": "Hofladen", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/florist/Blume 2000": {"tags": {"name": "Blume 2000", "shop": "florist"}, "name": "Blume 2000", "icon": "maki-florist", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/florist/Blumen Risse": {"tags": {"name": "Blumen Risse", "shop": "florist"}, "name": "Blumen Risse", "icon": "maki-florist", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/florist/Fleuriste": {"tags": {"name": "Fleuriste", "shop": "florist"}, "name": "Fleuriste", "icon": "maki-florist", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/florist/Interflora": {"tags": {"name": "Interflora", "shop": "florist"}, "name": "Interflora", "icon": "maki-florist", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/florist/Monceau Fleurs": {"tags": {"name": "Monceau Fleurs", "shop": "florist"}, "name": "Monceau Fleurs", "icon": "maki-florist", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/florist/Virágbolt": {"tags": {"name": "Virágbolt", "shop": "florist"}, "name": "Virágbolt", "icon": "maki-florist", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/florist/Квіти": {"tags": {"name": "Квіти", "shop": "florist"}, "name": "Квіти", "icon": "maki-florist", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/florist/Цветочный магазин": {"tags": {"name": "Цветочный магазин", "shop": "florist"}, "name": "Цветочный магазин", "icon": "maki-florist", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/florist/Цветы": {"tags": {"name": "Цветы", "shop": "florist"}, "name": "Цветы", "icon": "maki-florist", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/frame/rumah penduduk": {"tags": {"name": "rumah penduduk", "shop": "frame"}, "name": "rumah penduduk", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/funeral_directors/The Co-operative Funeralcare": {"tags": {"name": "The Co-operative Funeralcare", "shop": "funeral_directors"}, "name": "The Co-operative Funeralcare", "icon": "maki-cemetery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "religion", "denomination"], "suggestion": true},
+ "shop/funeral_directors/Ритуальные услуги": {"tags": {"name": "Ритуальные услуги", "shop": "funeral_directors"}, "name": "Ритуальные услуги", "icon": "maki-cemetery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "religion", "denomination"], "suggestion": true},
+ "shop/furniture/Aaron's": {"tags": {"name": "Aaron's", "shop": "furniture"}, "name": "Aaron's", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/furniture/Black Red White": {"tags": {"name": "Black Red White", "shop": "furniture"}, "name": "Black Red White", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/furniture/Bodzio": {"tags": {"name": "Bodzio", "shop": "furniture"}, "name": "Bodzio", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/furniture/But": {"tags": {"name": "But", "shop": "furniture"}, "name": "But", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/furniture/Conforama": {"tags": {"name": "Conforama", "shop": "furniture"}, "name": "Conforama", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/furniture/DFS": {"tags": {"name": "DFS", "shop": "furniture"}, "name": "DFS", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/furniture/Dänisches Bettenlager": {"tags": {"name": "Dänisches Bettenlager", "shop": "furniture"}, "name": "Dänisches Bettenlager", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/furniture/Fly": {"tags": {"name": "Fly", "shop": "furniture"}, "name": "Fly", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/furniture/Harveys": {"tags": {"name": "Harveys", "shop": "furniture"}, "name": "Harveys", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/furniture/IKEA": {"tags": {"name": "IKEA", "shop": "furniture"}, "name": "IKEA", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/furniture/JYSK": {"tags": {"name": "JYSK", "shop": "furniture"}, "name": "JYSK", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/furniture/Kwantum": {"tags": {"name": "Kwantum", "shop": "furniture"}, "name": "Kwantum", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/furniture/Leen Bakker": {"tags": {"name": "Leen Bakker", "shop": "furniture"}, "name": "Leen Bakker", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/furniture/Pier 1 Imports": {"tags": {"name": "Pier 1 Imports", "shop": "furniture"}, "name": "Pier 1 Imports", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/furniture/Roller": {"tags": {"name": "Roller", "shop": "furniture"}, "name": "Roller", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/furniture/The Brick": {"tags": {"name": "The Brick", "shop": "furniture"}, "name": "The Brick", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/furniture/Меблі": {"tags": {"name": "Меблі", "shop": "furniture"}, "name": "Меблі", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/furniture/ニトリ": {"tags": {"name": "ニトリ", "shop": "furniture"}, "name": "ニトリ", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/garden_centre/Dehner": {"tags": {"name": "Dehner", "shop": "garden_centre"}, "name": "Dehner", "icon": "maki-garden-center", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/garden_centre/Gamm Vert": {"tags": {"name": "Gamm Vert", "shop": "garden_centre"}, "name": "Gamm Vert", "icon": "maki-garden-center", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/garden_centre/Jardiland": {"tags": {"name": "Jardiland", "shop": "garden_centre"}, "name": "Jardiland", "icon": "maki-garden-center", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/garden_centre/Point Vert": {"tags": {"name": "Point Vert", "shop": "garden_centre"}, "name": "Point Vert", "icon": "maki-garden-center", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/garden_centre/Welkoop": {"tags": {"name": "Welkoop", "shop": "garden_centre"}, "name": "Welkoop", "icon": "maki-garden-center", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/garden_centre/Семена": {"tags": {"name": "Семена", "shop": "garden_centre"}, "name": "Семена", "icon": "maki-garden-center", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/gift/Card Factory": {"tags": {"name": "Card Factory", "shop": "gift"}, "name": "Card Factory", "icon": "maki-gift", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/gift/Hallmark": {"tags": {"name": "Hallmark", "shop": "gift"}, "name": "Hallmark", "icon": "maki-gift", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/gift/Подарки": {"tags": {"name": "Подарки", "shop": "gift"}, "name": "Подарки", "icon": "maki-gift", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/greengrocer/Frutería": {"tags": {"name": "Frutería", "shop": "greengrocer"}, "name": "Frutería", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/greengrocer/Овощи и фрукты": {"tags": {"name": "Овощи и фрукты", "shop": "greengrocer"}, "name": "Овощи и фрукты", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Berber": {"tags": {"name": "Berber", "shop": "hairdresser"}, "name": "Berber", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Cost Cutters": {"tags": {"name": "Cost Cutters", "shop": "hairdresser"}, "name": "Cost Cutters", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Fantastic Sams": {"tags": {"name": "Fantastic Sams", "shop": "hairdresser"}, "name": "Fantastic Sams", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Figaro": {"tags": {"name": "Figaro", "shop": "hairdresser"}, "name": "Figaro", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/First Choice Haircutters": {"tags": {"name": "First Choice Haircutters", "shop": "hairdresser"}, "name": "First Choice Haircutters", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Franck Provost": {"tags": {"name": "Franck Provost", "shop": "hairdresser"}, "name": "Franck Provost", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Frizerie": {"tags": {"name": "Frizerie", "shop": "hairdresser"}, "name": "Frizerie", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Great Clips": {"tags": {"name": "Great Clips", "shop": "hairdresser"}, "name": "Great Clips", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Haarmonie": {"tags": {"name": "Haarmonie", "shop": "hairdresser"}, "name": "Haarmonie", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Haarscharf": {"tags": {"name": "Haarscharf", "shop": "hairdresser"}, "name": "Haarscharf", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Hair Cuttery": {"tags": {"name": "Hair Cuttery", "shop": "hairdresser"}, "name": "Hair Cuttery", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Hairkiller": {"tags": {"name": "Hairkiller", "shop": "hairdresser"}, "name": "Hairkiller", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Jean Louis David": {"tags": {"name": "Jean Louis David", "shop": "hairdresser"}, "name": "Jean Louis David", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Jean-Louis David": {"tags": {"name": "Jean-Louis David", "shop": "hairdresser"}, "name": "Jean-Louis David", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Klier": {"tags": {"name": "Klier", "shop": "hairdresser"}, "name": "Klier", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Klipp": {"tags": {"name": "Klipp", "shop": "hairdresser"}, "name": "Klipp", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Le Salon": {"tags": {"name": "Le Salon", "shop": "hairdresser"}, "name": "Le Salon", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Marco Aldany": {"tags": {"name": "Marco Aldany", "shop": "hairdresser"}, "name": "Marco Aldany", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Peluquería": {"tags": {"name": "Peluquería", "shop": "hairdresser"}, "name": "Peluquería", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Salon fryzjerski": {"tags": {"name": "Salon fryzjerski", "shop": "hairdresser"}, "name": "Salon fryzjerski", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Sport Clips": {"tags": {"name": "Sport Clips", "shop": "hairdresser"}, "name": "Sport Clips", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Super Cuts": {"tags": {"name": "Super Cuts", "shop": "hairdresser"}, "name": "Super Cuts", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Supercuts": {"tags": {"name": "Supercuts", "shop": "hairdresser"}, "name": "Supercuts", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Tchip": {"tags": {"name": "Tchip", "shop": "hairdresser"}, "name": "Tchip", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/The Barber Shop": {"tags": {"name": "The Barber Shop", "shop": "hairdresser"}, "name": "The Barber Shop", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Toni & Guy": {"tags": {"name": "Toni & Guy", "shop": "hairdresser"}, "name": "Toni & Guy", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Top Hair": {"tags": {"name": "Top Hair", "shop": "hairdresser"}, "name": "Top Hair", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Локон": {"tags": {"name": "Локон", "shop": "hairdresser"}, "name": "Локон", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Парикмахерская": {"tags": {"name": "Парикмахерская", "shop": "hairdresser"}, "name": "Парикмахерская", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Перукарня": {"tags": {"name": "Перукарня", "shop": "hairdresser"}, "name": "Перукарня", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Салон красоты": {"tags": {"name": "Салон красоты", "shop": "hairdresser"}, "name": "Салон красоты", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Стиль": {"tags": {"name": "Стиль", "shop": "hairdresser"}, "name": "Стиль", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/Шарм": {"tags": {"name": "Шарм", "shop": "hairdresser"}, "name": "Шарм", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hairdresser/حلاق": {"tags": {"name": "حلاق", "shop": "hairdresser"}, "name": "حلاق", "icon": "maki-hairdresser", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hardware/1000 мелочей": {"tags": {"name": "1000 мелочей", "shop": "hardware"}, "name": "1000 мелочей", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hardware/Ferretería": {"tags": {"name": "Ferretería", "shop": "hardware"}, "name": "Ferretería", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hardware/Harbor Freight Tools": {"tags": {"name": "Harbor Freight Tools", "shop": "hardware"}, "name": "Harbor Freight Tools", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hardware/Quincaillerie": {"tags": {"name": "Quincaillerie", "shop": "hardware"}, "name": "Quincaillerie", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hardware/True Value": {"tags": {"name": "True Value", "shop": "hardware"}, "name": "True Value", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hardware/Würth": {"tags": {"name": "Würth", "shop": "hardware"}, "name": "Würth", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hardware/Промтовары": {"tags": {"name": "Промтовары", "shop": "hardware"}, "name": "Промтовары", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hardware/Сантехника": {"tags": {"name": "Сантехника", "shop": "hardware"}, "name": "Сантехника", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hardware/Товары для дома": {"tags": {"name": "Товары для дома", "shop": "hardware"}, "name": "Товары для дома", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hardware/Хозтовары": {"tags": {"name": "Хозтовары", "shop": "hardware"}, "name": "Хозтовары", "icon": "temaki-tools", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hearing_aids/Amplifon": {"tags": {"name": "Amplifon", "shop": "hearing_aids"}, "name": "Amplifon", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hearing_aids/Geers": {"tags": {"name": "Geers", "shop": "hearing_aids"}, "name": "Geers", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hearing_aids/Kind Hörgeräte": {"tags": {"name": "Kind Hörgeräte", "shop": "hearing_aids"}, "name": "Kind Hörgeräte", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hearing_aids/amplifon": {"tags": {"name": "amplifon", "shop": "hearing_aids"}, "name": "amplifon", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/hifi/Bang & Olufsen": {"tags": {"name": "Bang & Olufsen", "shop": "hifi"}, "name": "Bang & Olufsen", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/houseware/Blokker": {"tags": {"name": "Blokker", "shop": "houseware"}, "name": "Blokker", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/houseware/Marskramer": {"tags": {"name": "Marskramer", "shop": "houseware"}, "name": "Marskramer", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/houseware/Xenos": {"tags": {"name": "Xenos", "shop": "houseware"}, "name": "Xenos", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/interior_decoration/Casa": {"tags": {"name": "Casa", "shop": "interior_decoration"}, "name": "Casa", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/interior_decoration/Depot": {"tags": {"name": "Depot", "shop": "interior_decoration"}, "name": "Depot", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/jewelry/585": {"tags": {"name": "585", "shop": "jewelry"}, "name": "585", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/jewelry/Apart": {"tags": {"name": "Apart", "shop": "jewelry"}, "name": "Apart", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/jewelry/Bijou Brigitte": {"tags": {"name": "Bijou Brigitte", "shop": "jewelry"}, "name": "Bijou Brigitte", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/jewelry/Christ": {"tags": {"name": "Christ", "shop": "jewelry"}, "name": "Christ", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/jewelry/Claire's": {"tags": {"name": "Claire's", "shop": "jewelry"}, "name": "Claire's", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/jewelry/Ernest Jones": {"tags": {"name": "Ernest Jones", "shop": "jewelry"}, "name": "Ernest Jones", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/jewelry/H Samuel": {"tags": {"name": "H Samuel", "shop": "jewelry"}, "name": "H Samuel", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/jewelry/James Avery Jewelry": {"tags": {"name": "James Avery Jewelry", "shop": "jewelry"}, "name": "James Avery Jewelry", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/jewelry/Julien d'Orcel": {"tags": {"name": "Julien d'Orcel", "shop": "jewelry"}, "name": "Julien d'Orcel", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/jewelry/Kay Jewelers": {"tags": {"name": "Kay Jewelers", "shop": "jewelry"}, "name": "Kay Jewelers", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/jewelry/Pandora": {"tags": {"name": "Pandora", "shop": "jewelry"}, "name": "Pandora", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/jewelry/Swarovski": {"tags": {"name": "Swarovski", "shop": "jewelry"}, "name": "Swarovski", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/jewelry/Адамас": {"tags": {"name": "Адамас", "shop": "jewelry"}, "name": "Адамас", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/jewelry/Золото": {"tags": {"name": "Золото", "shop": "jewelry"}, "name": "Золото", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/kiosk/KIOS": {"tags": {"name": "KIOS", "shop": "kiosk"}, "name": "KIOS", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/kiosk/Kiosko": {"tags": {"name": "Kiosko", "shop": "kiosk"}, "name": "Kiosko", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/kiosk/Kiosque": {"tags": {"name": "Kiosque", "shop": "kiosk"}, "name": "Kiosque", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/kiosk/Kolporter": {"tags": {"name": "Kolporter", "shop": "kiosk"}, "name": "Kolporter", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/kiosk/Lietuvos spauda": {"tags": {"name": "Lietuvos spauda", "shop": "kiosk"}, "name": "Lietuvos spauda", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/kiosk/Narvesen": {"tags": {"name": "Narvesen", "shop": "kiosk"}, "name": "Narvesen", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/kiosk/Pressbyrån": {"tags": {"name": "Pressbyrån", "shop": "kiosk"}, "name": "Pressbyrån", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/kiosk/Pulpería": {"tags": {"name": "Pulpería", "shop": "kiosk"}, "name": "Pulpería", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/kiosk/R-Kioski": {"tags": {"name": "R-Kioski", "shop": "kiosk"}, "name": "R-Kioski", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/kiosk/Ruch": {"tags": {"name": "Ruch", "shop": "kiosk"}, "name": "Ruch", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/kiosk/Tabak Trafik": {"tags": {"name": "Tabak Trafik", "shop": "kiosk"}, "name": "Tabak Trafik", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/kiosk/Tisak": {"tags": {"name": "Tisak", "shop": "kiosk"}, "name": "Tisak", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/kiosk/Trafik": {"tags": {"name": "Trafik", "shop": "kiosk"}, "name": "Trafik", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/kiosk/Trafika": {"tags": {"name": "Trafika", "shop": "kiosk"}, "name": "Trafika", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/kiosk/Trinkhalle": {"tags": {"name": "Trinkhalle", "shop": "kiosk"}, "name": "Trinkhalle", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/kiosk/Белсоюзпечать": {"tags": {"name": "Белсоюзпечать", "shop": "kiosk"}, "name": "Белсоюзпечать", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/kiosk/Киоск": {"tags": {"name": "Киоск", "shop": "kiosk"}, "name": "Киоск", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/kiosk/მარკეტი (Market)": {"tags": {"name": "მარკეტი (Market)", "shop": "kiosk"}, "name": "მარკეტი (Market)", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/kitchen/Cuisinella": {"tags": {"name": "Cuisinella", "shop": "kitchen"}, "name": "Cuisinella", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/kitchen/Home Utensils": {"tags": {"name": "Home Utensils", "shop": "kitchen"}, "name": "Home Utensils", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/laundry/Launderette": {"tags": {"name": "Launderette", "shop": "laundry"}, "name": "Launderette", "icon": "maki-laundry", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/laundry/Lavandería": {"tags": {"name": "Lavandería", "shop": "laundry"}, "name": "Lavandería", "icon": "maki-laundry", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/laundry/コインランドリー": {"tags": {"name": "コインランドリー", "shop": "laundry"}, "name": "コインランドリー", "icon": "maki-laundry", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/lottery/Loteria de la Provincia": {"tags": {"name": "Loteria de la Provincia", "shop": "lottery"}, "name": "Loteria de la Provincia", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/lottery/Lotería Nacional": {"tags": {"name": "Lotería Nacional", "shop": "lottery"}, "name": "Lotería Nacional", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/lottery/Lotería de la Provincia": {"tags": {"name": "Lotería de la Provincia", "shop": "lottery"}, "name": "Lotería de la Provincia", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/lottery/Lotto": {"tags": {"name": "Lotto", "shop": "lottery"}, "name": "Lotto", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/lottery/Lottózó": {"tags": {"name": "Lottózó", "shop": "lottery"}, "name": "Lottózó", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/lottery/ONCE": {"tags": {"name": "ONCE", "shop": "lottery"}, "name": "ONCE", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mall/Торговый центр": {"tags": {"name": "Торговый центр", "shop": "mall"}, "name": "Торговый центр", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours"], "suggestion": true},
+ "shop/massage/Massage Envy": {"tags": {"name": "Massage Envy", "shop": "massage"}, "name": "Massage Envy", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/medical_supply/Pofam-Poznań": {"tags": {"name": "Pofam-Poznań", "shop": "medical_supply"}, "name": "Pofam-Poznań", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/3 Store": {"tags": {"name": "3 Store", "shop": "mobile_phone"}, "name": "3 Store", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/AT&T": {"tags": {"name": "AT&T", "shop": "mobile_phone"}, "name": "AT&T", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Bell": {"tags": {"name": "Bell", "shop": "mobile_phone"}, "name": "Bell", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Bitė": {"tags": {"name": "Bitė", "shop": "mobile_phone"}, "name": "Bitė", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Boost Mobile": {"tags": {"name": "Boost Mobile", "shop": "mobile_phone"}, "name": "Boost Mobile", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Carphone Warehouse": {"tags": {"name": "Carphone Warehouse", "shop": "mobile_phone"}, "name": "Carphone Warehouse", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Claro": {"tags": {"name": "Claro", "shop": "mobile_phone"}, "name": "Claro", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Cricket Wireless": {"tags": {"name": "Cricket Wireless", "shop": "mobile_phone"}, "name": "Cricket Wireless", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Digicel": {"tags": {"name": "Digicel", "shop": "mobile_phone"}, "name": "Digicel", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/EE": {"tags": {"name": "EE", "shop": "mobile_phone"}, "name": "EE", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/MetroPCS": {"tags": {"name": "MetroPCS", "shop": "mobile_phone"}, "name": "MetroPCS", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Movistar": {"tags": {"name": "Movistar", "shop": "mobile_phone"}, "name": "Movistar", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/O2": {"tags": {"name": "O2", "shop": "mobile_phone"}, "name": "O2", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Orange": {"tags": {"name": "Orange", "shop": "mobile_phone"}, "name": "Orange", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Personal": {"tags": {"name": "Personal", "shop": "mobile_phone"}, "name": "Personal", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Play": {"tags": {"name": "Play", "shop": "mobile_phone"}, "name": "Play", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Plus": {"tags": {"name": "Plus", "shop": "mobile_phone"}, "name": "Plus", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/SFR": {"tags": {"name": "SFR", "shop": "mobile_phone"}, "name": "SFR", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Sprint": {"tags": {"name": "Sprint", "shop": "mobile_phone"}, "name": "Sprint", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/T-Mobile": {"tags": {"name": "T-Mobile", "shop": "mobile_phone"}, "name": "T-Mobile", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/TIM": {"tags": {"name": "TIM", "shop": "mobile_phone"}, "name": "TIM", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Telcel": {"tags": {"name": "Telcel", "shop": "mobile_phone"}, "name": "Telcel", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Tele2": {"tags": {"name": "Tele2", "shop": "mobile_phone"}, "name": "Tele2", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Telekom": {"tags": {"name": "Telekom", "shop": "mobile_phone"}, "name": "Telekom", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Telekom Shop": {"tags": {"name": "Telekom Shop", "shop": "mobile_phone"}, "name": "Telekom Shop", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Telenor": {"tags": {"name": "Telenor", "shop": "mobile_phone"}, "name": "Telenor", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Telus": {"tags": {"name": "Telus", "shop": "mobile_phone"}, "name": "Telus", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/The Phone House": {"tags": {"name": "The Phone House", "shop": "mobile_phone"}, "name": "The Phone House", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Three": {"tags": {"name": "Three", "shop": "mobile_phone"}, "name": "Three", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Tim": {"tags": {"name": "Tim", "shop": "mobile_phone"}, "name": "Tim", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Télécentre": {"tags": {"name": "Télécentre", "shop": "mobile_phone"}, "name": "Télécentre", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Verizon": {"tags": {"name": "Verizon", "shop": "mobile_phone"}, "name": "Verizon", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Verizon Wireless": {"tags": {"name": "Verizon Wireless", "shop": "mobile_phone"}, "name": "Verizon Wireless", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Vodafone": {"tags": {"name": "Vodafone", "shop": "mobile_phone"}, "name": "Vodafone", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Vodafone Shop": {"tags": {"name": "Vodafone Shop", "shop": "mobile_phone"}, "name": "Vodafone Shop", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Wind": {"tags": {"name": "Wind", "shop": "mobile_phone"}, "name": "Wind", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Yoigo": {"tags": {"name": "Yoigo", "shop": "mobile_phone"}, "name": "Yoigo", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/au": {"tags": {"name": "au", "shop": "mobile_phone"}, "name": "au", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/auショップ": {"tags": {"name": "auショップ", "shop": "mobile_phone"}, "name": "auショップ", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/mobilcom debitel": {"tags": {"name": "mobilcom debitel", "shop": "mobile_phone"}, "name": "mobilcom debitel", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Алло": {"tags": {"name": "Алло", "shop": "mobile_phone"}, "name": "Алло", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Билайн": {"tags": {"name": "Билайн", "shop": "mobile_phone"}, "name": "Билайн", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Евросеть": {"tags": {"name": "Евросеть", "shop": "mobile_phone"}, "name": "Евросеть", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Київстар": {"tags": {"name": "Київстар", "shop": "mobile_phone"}, "name": "Київстар", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/МТС": {"tags": {"name": "МТС", "shop": "mobile_phone"}, "name": "МТС", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Мегафон": {"tags": {"name": "Мегафон", "shop": "mobile_phone"}, "name": "Мегафон", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Связной": {"tags": {"name": "Связной", "shop": "mobile_phone"}, "name": "Связной", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/Теле2": {"tags": {"name": "Теле2", "shop": "mobile_phone"}, "name": "Теле2", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/ソフトバンクショップ": {"tags": {"name": "ソフトバンクショップ", "shop": "mobile_phone"}, "name": "ソフトバンクショップ", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/mobile_phone/ドコモショップ": {"tags": {"name": "ドコモショップ", "shop": "mobile_phone"}, "name": "ドコモショップ", "icon": "maki-mobile-phone", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/money_lender/Money Mart": {"tags": {"name": "Money Mart", "shop": "money_lender"}, "name": "Money Mart", "icon": "maki-bank", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "currency_multi"], "suggestion": true},
+ "shop/motorcycle/Harley Davidson": {"tags": {"name": "Harley Davidson", "shop": "motorcycle"}, "name": "Harley Davidson", "icon": "fas-motorcycle", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/motorcycle/Yamaha": {"tags": {"name": "Yamaha", "shop": "motorcycle"}, "name": "Yamaha", "icon": "fas-motorcycle", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/music/HMV": {"tags": {"name": "HMV", "shop": "music"}, "name": "HMV", "icon": "maki-music", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/musical_instrument/Guitar Center": {"tags": {"name": "Guitar Center", "shop": "musical_instrument"}, "name": "Guitar Center", "icon": "maki-music", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/newsagent/Edicola": {"tags": {"name": "Edicola", "shop": "newsagent"}, "name": "Edicola", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/newsagent/Maison de la Presse": {"tags": {"name": "Maison de la Presse", "shop": "newsagent"}, "name": "Maison de la Presse", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/newsagent/Relay": {"tags": {"name": "Relay", "shop": "newsagent"}, "name": "Relay", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/newsagent/Tabac Presse": {"tags": {"name": "Tabac Presse", "shop": "newsagent"}, "name": "Tabac Presse", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/newsagent/WHSmith": {"tags": {"name": "WHSmith", "shop": "newsagent"}, "name": "WHSmith", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/newsagent/Витебскоблсоюзпечать": {"tags": {"name": "Витебскоблсоюзпечать", "shop": "newsagent"}, "name": "Витебскоблсоюзпечать", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/newsagent/Первая полоса": {"tags": {"name": "Первая полоса", "shop": "newsagent"}, "name": "Первая полоса", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/newsagent/Печать": {"tags": {"name": "Печать", "shop": "newsagent"}, "name": "Печать", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/newsagent/Роспечать": {"tags": {"name": "Роспечать", "shop": "newsagent"}, "name": "Роспечать", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/newsagent/Союзпечать": {"tags": {"name": "Союзпечать", "shop": "newsagent"}, "name": "Союзпечать", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/Alain Afflelou": {"tags": {"name": "Alain Afflelou", "shop": "optician"}, "name": "Alain Afflelou", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/Apollo": {"tags": {"name": "Apollo", "shop": "optician"}, "name": "Apollo", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/Atol": {"tags": {"name": "Atol", "shop": "optician"}, "name": "Atol", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/Boots Opticians": {"tags": {"name": "Boots Opticians", "shop": "optician"}, "name": "Boots Opticians", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/Fielmann": {"tags": {"name": "Fielmann", "shop": "optician"}, "name": "Fielmann", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/General Óptica": {"tags": {"name": "General Óptica", "shop": "optician"}, "name": "General Óptica", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/Grand Optical": {"tags": {"name": "Grand Optical", "shop": "optician"}, "name": "Grand Optical", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/Générale d'Optique": {"tags": {"name": "Générale d'Optique", "shop": "optician"}, "name": "Générale d'Optique", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/Hakim Optical": {"tags": {"name": "Hakim Optical", "shop": "optician"}, "name": "Hakim Optical", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/Hans Anders": {"tags": {"name": "Hans Anders", "shop": "optician"}, "name": "Hans Anders", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/Krys": {"tags": {"name": "Krys", "shop": "optician"}, "name": "Krys", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/Les Opticiens Mutualistes": {"tags": {"name": "Les Opticiens Mutualistes", "shop": "optician"}, "name": "Les Opticiens Mutualistes", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/Optic 2000": {"tags": {"name": "Optic 2000", "shop": "optician"}, "name": "Optic 2000", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/Optical Center": {"tags": {"name": "Optical Center", "shop": "optician"}, "name": "Optical Center", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/Pearle": {"tags": {"name": "Pearle", "shop": "optician"}, "name": "Pearle", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/Pearle Vision": {"tags": {"name": "Pearle Vision", "shop": "optician"}, "name": "Pearle Vision", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/Specsavers": {"tags": {"name": "Specsavers", "shop": "optician"}, "name": "Specsavers", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/Sunglass Hut": {"tags": {"name": "Sunglass Hut", "shop": "optician"}, "name": "Sunglass Hut", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/Synoptik": {"tags": {"name": "Synoptik", "shop": "optician"}, "name": "Synoptik", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/Vision Express": {"tags": {"name": "Vision Express", "shop": "optician"}, "name": "Vision Express", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/แว่นท็อปเจริญ": {"tags": {"name": "แว่นท็อปเจริญ", "shop": "optician"}, "name": "แว่นท็อปเจริญ", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/メガネスーパー": {"tags": {"name": "メガネスーパー", "shop": "optician"}, "name": "メガネスーパー", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/optician/眼鏡市場": {"tags": {"name": "眼鏡市場", "shop": "optician"}, "name": "眼鏡市場", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/outdoor/Mountain Warehouse": {"tags": {"name": "Mountain Warehouse", "shop": "outdoor"}, "name": "Mountain Warehouse", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/outdoor/REI": {"tags": {"name": "REI", "shop": "outdoor"}, "name": "REI", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/outdoor/Рыболов": {"tags": {"name": "Рыболов", "shop": "outdoor"}, "name": "Рыболов", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/paint/Benjamin Moore": {"tags": {"name": "Benjamin Moore", "shop": "paint"}, "name": "Benjamin Moore", "icon": "maki-water", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/paint/Comex": {"tags": {"name": "Comex", "shop": "paint"}, "name": "Comex", "icon": "maki-water", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/paint/Jotun": {"tags": {"name": "Jotun", "shop": "paint"}, "name": "Jotun", "icon": "maki-water", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/paint/National Paints": {"tags": {"name": "National Paints", "shop": "paint"}, "name": "National Paints", "icon": "maki-water", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/paint/Sherwin Williams": {"tags": {"name": "Sherwin Williams", "shop": "paint"}, "name": "Sherwin Williams", "icon": "maki-water", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/paint/Sherwin-Williams Paints": {"tags": {"name": "Sherwin-Williams Paints", "shop": "paint"}, "name": "Sherwin-Williams Paints", "icon": "maki-water", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/pawnbroker/Cash Converters": {"tags": {"name": "Cash Converters", "shop": "pawnbroker"}, "name": "Cash Converters", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/pawnbroker/Lombard": {"tags": {"name": "Lombard", "shop": "pawnbroker"}, "name": "Lombard", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/pawnbroker/Palawan Pawnshop": {"tags": {"name": "Palawan Pawnshop", "shop": "pawnbroker"}, "name": "Palawan Pawnshop", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/pet/Das Futterhaus": {"tags": {"name": "Das Futterhaus", "shop": "pet"}, "name": "Das Futterhaus", "icon": "maki-dog-park", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/pet/Fressnapf": {"tags": {"name": "Fressnapf", "shop": "pet"}, "name": "Fressnapf", "icon": "maki-dog-park", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/pet/Global Pet Foods": {"tags": {"name": "Global Pet Foods", "shop": "pet"}, "name": "Global Pet Foods", "icon": "maki-dog-park", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/pet/Maxi Zoo": {"tags": {"name": "Maxi Zoo", "shop": "pet"}, "name": "Maxi Zoo", "icon": "maki-dog-park", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/pet/Pet Valu": {"tags": {"name": "Pet Valu", "shop": "pet"}, "name": "Pet Valu", "icon": "maki-dog-park", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/pet/PetSmart": {"tags": {"name": "PetSmart", "shop": "pet"}, "name": "PetSmart", "icon": "maki-dog-park", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/pet/Petco": {"tags": {"name": "Petco", "shop": "pet"}, "name": "Petco", "icon": "maki-dog-park", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/pet/Pets at Home": {"tags": {"name": "Pets at Home", "shop": "pet"}, "name": "Pets at Home", "icon": "maki-dog-park", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/pet/Бетховен": {"tags": {"name": "Бетховен", "shop": "pet"}, "name": "Бетховен", "icon": "maki-dog-park", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/pet/Зоотовары": {"tags": {"name": "Зоотовары", "shop": "pet"}, "name": "Зоотовары", "icon": "maki-dog-park", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/pet/Четыре лапы": {"tags": {"name": "Четыре лапы", "shop": "pet"}, "name": "Четыре лапы", "icon": "maki-dog-park", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/second_hand/Goodwill": {"tags": {"name": "Goodwill", "shop": "second_hand"}, "name": "Goodwill", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "second_hand", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/second_hand/Value Village": {"tags": {"name": "Value Village", "shop": "second_hand"}, "name": "Value Village", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "second_hand", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Aldo": {"tags": {"name": "Aldo", "shop": "shoes"}, "name": "Aldo", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Bata": {"tags": {"name": "Bata", "shop": "shoes"}, "name": "Bata", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Besson Chaussures": {"tags": {"name": "Besson Chaussures", "shop": "shoes"}, "name": "Besson Chaussures", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Brantano": {"tags": {"name": "Brantano", "shop": "shoes"}, "name": "Brantano", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/CCC": {"tags": {"name": "CCC", "shop": "shoes"}, "name": "CCC", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Camper": {"tags": {"name": "Camper", "shop": "shoes"}, "name": "Camper", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Chaussea": {"tags": {"name": "Chaussea", "shop": "shoes"}, "name": "Chaussea", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Clarks": {"tags": {"name": "Clarks", "shop": "shoes"}, "name": "Clarks", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Converse": {"tags": {"name": "Converse", "shop": "shoes"}, "name": "Converse", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Crocs": {"tags": {"name": "Crocs", "shop": "shoes"}, "name": "Crocs", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/DSW": {"tags": {"name": "DSW", "shop": "shoes"}, "name": "DSW", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Deichmann": {"tags": {"name": "Deichmann", "shop": "shoes"}, "name": "Deichmann", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Dosenbach": {"tags": {"name": "Dosenbach", "shop": "shoes"}, "name": "Dosenbach", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Ecco": {"tags": {"name": "Ecco", "shop": "shoes"}, "name": "Ecco", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Famous Footwear": {"tags": {"name": "Famous Footwear", "shop": "shoes"}, "name": "Famous Footwear", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Foot Locker": {"tags": {"name": "Foot Locker", "shop": "shoes"}, "name": "Foot Locker", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Geox": {"tags": {"name": "Geox", "shop": "shoes"}, "name": "Geox", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Kari": {"tags": {"name": "Kari", "shop": "shoes"}, "name": "Kari", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/La Halle aux Chaussures": {"tags": {"name": "La Halle aux Chaussures", "shop": "shoes"}, "name": "La Halle aux Chaussures", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Mephisto": {"tags": {"name": "Mephisto", "shop": "shoes"}, "name": "Mephisto", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Minelli": {"tags": {"name": "Minelli", "shop": "shoes"}, "name": "Minelli", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/New Balance": {"tags": {"name": "New Balance", "shop": "shoes"}, "name": "New Balance", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Payless": {"tags": {"name": "Payless", "shop": "shoes"}, "name": "Payless", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Payless Shoe Source": {"tags": {"name": "Payless Shoe Source", "shop": "shoes"}, "name": "Payless Shoe Source", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Payless ShoeSource": {"tags": {"name": "Payless ShoeSource", "shop": "shoes"}, "name": "Payless ShoeSource", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Quick Schuh": {"tags": {"name": "Quick Schuh", "shop": "shoes"}, "name": "Quick Schuh", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Rack Room Shoes": {"tags": {"name": "Rack Room Shoes", "shop": "shoes"}, "name": "Rack Room Shoes", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Reno": {"tags": {"name": "Reno", "shop": "shoes"}, "name": "Reno", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Rieker": {"tags": {"name": "Rieker", "shop": "shoes"}, "name": "Rieker", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Salamander": {"tags": {"name": "Salamander", "shop": "shoes"}, "name": "Salamander", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/San Marina": {"tags": {"name": "San Marina", "shop": "shoes"}, "name": "San Marina", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Scapino": {"tags": {"name": "Scapino", "shop": "shoes"}, "name": "Scapino", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Shoe Carnival": {"tags": {"name": "Shoe Carnival", "shop": "shoes"}, "name": "Shoe Carnival", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Shoe Zone": {"tags": {"name": "Shoe Zone", "shop": "shoes"}, "name": "Shoe Zone", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Siemes Schuhcenter": {"tags": {"name": "Siemes Schuhcenter", "shop": "shoes"}, "name": "Siemes Schuhcenter", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Skechers": {"tags": {"name": "Skechers", "shop": "shoes"}, "name": "Skechers", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Tamaris": {"tags": {"name": "Tamaris", "shop": "shoes"}, "name": "Tamaris", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/vanHaren": {"tags": {"name": "vanHaren", "shop": "shoes"}, "name": "vanHaren", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Éram": {"tags": {"name": "Éram", "shop": "shoes"}, "name": "Éram", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Ремонт обуви": {"tags": {"name": "Ремонт обуви", "shop": "shoes"}, "name": "Ремонт обуви", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/ЦентрОбувь": {"tags": {"name": "ЦентрОбувь", "shop": "shoes"}, "name": "ЦентрОбувь", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/Юничел": {"tags": {"name": "Юничел", "shop": "shoes"}, "name": "Юничел", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/shoes/東京靴流通センター": {"tags": {"name": "東京靴流通センター", "shop": "shoes"}, "name": "東京靴流通センター", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/sports/Aktiesport": {"tags": {"name": "Aktiesport", "shop": "sports"}, "name": "Aktiesport", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/sports/Big 5 Sporting Goods": {"tags": {"name": "Big 5 Sporting Goods", "shop": "sports"}, "name": "Big 5 Sporting Goods", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/sports/Decathlon": {"tags": {"name": "Decathlon", "shop": "sports"}, "name": "Decathlon", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/sports/Dick's Sporting Goods": {"tags": {"name": "Dick's Sporting Goods", "shop": "sports"}, "name": "Dick's Sporting Goods", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/sports/Hervis": {"tags": {"name": "Hervis", "shop": "sports"}, "name": "Hervis", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/sports/Intersport": {"tags": {"name": "Intersport", "shop": "sports"}, "name": "Intersport", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/sports/JD Sports": {"tags": {"name": "JD Sports", "shop": "sports"}, "name": "JD Sports", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/sports/Sport 2000": {"tags": {"name": "Sport 2000", "shop": "sports"}, "name": "Sport 2000", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/sports/Sports Authority": {"tags": {"name": "Sports Authority", "shop": "sports"}, "name": "Sports Authority", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/sports/Sports Direct": {"tags": {"name": "Sports Direct", "shop": "sports"}, "name": "Sports Direct", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/sports/Спортмастер": {"tags": {"name": "Спортмастер", "shop": "sports"}, "name": "Спортмастер", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/sports/Спорттовары": {"tags": {"name": "Спорттовары", "shop": "sports"}, "name": "Спорттовары", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/stationery/Bureau Vallée": {"tags": {"name": "Bureau Vallée", "shop": "stationery"}, "name": "Bureau Vallée", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/stationery/Libro": {"tags": {"name": "Libro", "shop": "stationery"}, "name": "Libro", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/stationery/McPaper": {"tags": {"name": "McPaper", "shop": "stationery"}, "name": "McPaper", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/stationery/Office Depot": {"tags": {"name": "Office Depot", "shop": "stationery"}, "name": "Office Depot", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/stationery/Office Max": {"tags": {"name": "Office Max", "shop": "stationery"}, "name": "Office Max", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/stationery/Officeworks": {"tags": {"name": "Officeworks", "shop": "stationery"}, "name": "Officeworks", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/stationery/Pagro": {"tags": {"name": "Pagro", "shop": "stationery"}, "name": "Pagro", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/stationery/Paperchase": {"tags": {"name": "Paperchase", "shop": "stationery"}, "name": "Paperchase", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/stationery/Ryman": {"tags": {"name": "Ryman", "shop": "stationery"}, "name": "Ryman", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/stationery/Staples": {"tags": {"name": "Staples", "shop": "stationery"}, "name": "Staples", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/stationery/Канцтовары": {"tags": {"name": "Канцтовары", "shop": "stationery"}, "name": "Канцтовары", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/A&O": {"tags": {"name": "A&O", "shop": "supermarket"}, "name": "A&O", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/A101": {"tags": {"name": "A101", "shop": "supermarket"}, "name": "A101", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/AD Delhaize": {"tags": {"name": "AD Delhaize", "shop": "supermarket"}, "name": "AD Delhaize", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/ADEG": {"tags": {"name": "ADEG", "shop": "supermarket"}, "name": "ADEG", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Ahorramás": {"tags": {"name": "Ahorramás", "shop": "supermarket"}, "name": "Ahorramás", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Albert": {"tags": {"name": "Albert", "shop": "supermarket"}, "name": "Albert", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Albert Heijn": {"tags": {"name": "Albert Heijn", "shop": "supermarket"}, "name": "Albert Heijn", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Albertsons": {"tags": {"name": "Albertsons", "shop": "supermarket"}, "name": "Albertsons", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Aldi": {"tags": {"name": "Aldi", "shop": "supermarket"}, "name": "Aldi", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Aldi Nord": {"tags": {"name": "Aldi Nord", "shop": "supermarket"}, "name": "Aldi Nord", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Aldi Süd": {"tags": {"name": "Aldi Süd", "shop": "supermarket"}, "name": "Aldi Süd", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Alimerka": {"tags": {"name": "Alimerka", "shop": "supermarket"}, "name": "Alimerka", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Alnatura": {"tags": {"name": "Alnatura", "shop": "supermarket"}, "name": "Alnatura", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Asda": {"tags": {"name": "Asda", "shop": "supermarket"}, "name": "Asda", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Atac": {"tags": {"name": "Atac", "shop": "supermarket"}, "name": "Atac", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Atacadão": {"tags": {"name": "Atacadão", "shop": "supermarket"}, "name": "Atacadão", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Auchan": {"tags": {"name": "Auchan", "shop": "supermarket"}, "name": "Auchan", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/BM": {"tags": {"name": "BM", "shop": "supermarket"}, "name": "BM", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Biedronka": {"tags": {"name": "Biedronka", "shop": "supermarket"}, "name": "Biedronka", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Big C": {"tags": {"name": "Big C", "shop": "supermarket"}, "name": "Big C", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Billa": {"tags": {"name": "Billa", "shop": "supermarket"}, "name": "Billa", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Bim": {"tags": {"name": "Bim", "shop": "supermarket"}, "name": "Bim", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Biocoop": {"tags": {"name": "Biocoop", "shop": "supermarket"}, "name": "Biocoop", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Bodega Aurrera": {"tags": {"name": "Bodega Aurrera", "shop": "supermarket"}, "name": "Bodega Aurrera", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Budgens": {"tags": {"name": "Budgens", "shop": "supermarket"}, "name": "Budgens", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Bulk Barn": {"tags": {"name": "Bulk Barn", "shop": "supermarket"}, "name": "Bulk Barn", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Bunnpris": {"tags": {"name": "Bunnpris", "shop": "supermarket"}, "name": "Bunnpris", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/CONAD": {"tags": {"name": "CONAD", "shop": "supermarket"}, "name": "CONAD", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/CRAI": {"tags": {"name": "CRAI", "shop": "supermarket"}, "name": "CRAI", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Caprabo": {"tags": {"name": "Caprabo", "shop": "supermarket"}, "name": "Caprabo", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Cargills Food City": {"tags": {"name": "Cargills Food City", "shop": "supermarket"}, "name": "Cargills Food City", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Carrefour": {"tags": {"name": "Carrefour", "shop": "supermarket"}, "name": "Carrefour", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Carrefour City": {"tags": {"name": "Carrefour City", "shop": "supermarket"}, "name": "Carrefour City", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Carrefour Contact": {"tags": {"name": "Carrefour Contact", "shop": "supermarket"}, "name": "Carrefour Contact", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Carrefour Express": {"tags": {"name": "Carrefour Express", "shop": "supermarket"}, "name": "Carrefour Express", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Centre Commercial E. Leclerc": {"tags": {"name": "Centre Commercial E. Leclerc", "shop": "supermarket"}, "name": "Centre Commercial E. Leclerc", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Checkers": {"tags": {"name": "Checkers", "shop": "supermarket"}, "name": "Checkers", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Chedraui": {"tags": {"name": "Chedraui", "shop": "supermarket"}, "name": "Chedraui", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Co-Op": {"tags": {"name": "Co-Op", "shop": "supermarket"}, "name": "Co-Op", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Co-op": {"tags": {"name": "Co-op", "shop": "supermarket"}, "name": "Co-op", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Co-operative": {"tags": {"name": "Co-operative", "shop": "supermarket"}, "name": "Co-operative", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Coles": {"tags": {"name": "Coles", "shop": "supermarket"}, "name": "Coles", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Colmado": {"tags": {"name": "Colmado", "shop": "supermarket"}, "name": "Colmado", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Colruyt": {"tags": {"name": "Colruyt", "shop": "supermarket"}, "name": "Colruyt", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Combi": {"tags": {"name": "Combi", "shop": "supermarket"}, "name": "Combi", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Comercial Mexicana": {"tags": {"name": "Comercial Mexicana", "shop": "supermarket"}, "name": "Comercial Mexicana", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Conad": {"tags": {"name": "Conad", "shop": "supermarket"}, "name": "Conad", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Conad City": {"tags": {"name": "Conad City", "shop": "supermarket"}, "name": "Conad City", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Condis": {"tags": {"name": "Condis", "shop": "supermarket"}, "name": "Condis", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Consum": {"tags": {"name": "Consum", "shop": "supermarket"}, "name": "Consum", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Continente": {"tags": {"name": "Continente", "shop": "supermarket"}, "name": "Continente", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Coop": {"tags": {"name": "Coop", "shop": "supermarket"}, "name": "Coop", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Coop Extra": {"tags": {"name": "Coop Extra", "shop": "supermarket"}, "name": "Coop Extra", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Coop Konsum": {"tags": {"name": "Coop Konsum", "shop": "supermarket"}, "name": "Coop Konsum", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Costco Gasoline": {"tags": {"name": "Costco Gasoline", "shop": "supermarket"}, "name": "Costco Gasoline", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Coto": {"tags": {"name": "Coto", "shop": "supermarket"}, "name": "Coto", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Countdown": {"tags": {"name": "Countdown", "shop": "supermarket"}, "name": "Countdown", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Coviran": {"tags": {"name": "Coviran", "shop": "supermarket"}, "name": "Coviran", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Covirán": {"tags": {"name": "Covirán", "shop": "supermarket"}, "name": "Covirán", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Crai": {"tags": {"name": "Crai", "shop": "supermarket"}, "name": "Crai", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Cub Foods": {"tags": {"name": "Cub Foods", "shop": "supermarket"}, "name": "Cub Foods", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Dagli'Brugsen": {"tags": {"name": "Dagli'Brugsen", "shop": "supermarket"}, "name": "Dagli'Brugsen", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Deen": {"tags": {"name": "Deen", "shop": "supermarket"}, "name": "Deen", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Delhaize": {"tags": {"name": "Delhaize", "shop": "supermarket"}, "name": "Delhaize", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Delikatesy Centrum": {"tags": {"name": "Delikatesy Centrum", "shop": "supermarket"}, "name": "Delikatesy Centrum", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Denner": {"tags": {"name": "Denner", "shop": "supermarket"}, "name": "Denner", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Despar": {"tags": {"name": "Despar", "shop": "supermarket"}, "name": "Despar", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Despensa Familiar": {"tags": {"name": "Despensa Familiar", "shop": "supermarket"}, "name": "Despensa Familiar", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Dia": {"tags": {"name": "Dia", "shop": "supermarket"}, "name": "Dia", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Dia %": {"tags": {"name": "Dia %", "shop": "supermarket"}, "name": "Dia %", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Dia Market": {"tags": {"name": "Dia Market", "shop": "supermarket"}, "name": "Dia Market", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Dino": {"tags": {"name": "Dino", "shop": "supermarket"}, "name": "Dino", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Dirk van den Broek": {"tags": {"name": "Dirk van den Broek", "shop": "supermarket"}, "name": "Dirk van den Broek", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Disco": {"tags": {"name": "Disco", "shop": "supermarket"}, "name": "Disco", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Diska": {"tags": {"name": "Diska", "shop": "supermarket"}, "name": "Diska", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Dunnes Stores": {"tags": {"name": "Dunnes Stores", "shop": "supermarket"}, "name": "Dunnes Stores", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/E-Center": {"tags": {"name": "E-Center", "shop": "supermarket"}, "name": "E-Center", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/E. Leclerc": {"tags": {"name": "E. Leclerc", "shop": "supermarket"}, "name": "E. Leclerc", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/E. Leclerc Drive": {"tags": {"name": "E. Leclerc Drive", "shop": "supermarket"}, "name": "E. Leclerc Drive", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/EMTÉ": {"tags": {"name": "EMTÉ", "shop": "supermarket"}, "name": "EMTÉ", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Edeka": {"tags": {"name": "Edeka", "shop": "supermarket"}, "name": "Edeka", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Ekom": {"tags": {"name": "Ekom", "shop": "supermarket"}, "name": "Ekom", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Ekono": {"tags": {"name": "Ekono", "shop": "supermarket"}, "name": "Ekono", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/El Árbol": {"tags": {"name": "El Árbol", "shop": "supermarket"}, "name": "El Árbol", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Eroski": {"tags": {"name": "Eroski", "shop": "supermarket"}, "name": "Eroski", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Esselunga": {"tags": {"name": "Esselunga", "shop": "supermarket"}, "name": "Esselunga", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/EuroSpin": {"tags": {"name": "EuroSpin", "shop": "supermarket"}, "name": "EuroSpin", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Eurospar": {"tags": {"name": "Eurospar", "shop": "supermarket"}, "name": "Eurospar", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Eurospin": {"tags": {"name": "Eurospin", "shop": "supermarket"}, "name": "Eurospin", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Extra": {"tags": {"name": "Extra", "shop": "supermarket"}, "name": "Extra", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Famiglia Cooperativa": {"tags": {"name": "Famiglia Cooperativa", "shop": "supermarket"}, "name": "Famiglia Cooperativa", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Famila": {"tags": {"name": "Famila", "shop": "supermarket"}, "name": "Famila", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Fareway": {"tags": {"name": "Fareway", "shop": "supermarket"}, "name": "Fareway", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Farmfoods": {"tags": {"name": "Farmfoods", "shop": "supermarket"}, "name": "Farmfoods", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Feneberg": {"tags": {"name": "Feneberg", "shop": "supermarket"}, "name": "Feneberg", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Food Basics": {"tags": {"name": "Food Basics", "shop": "supermarket"}, "name": "Food Basics", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Food Lion": {"tags": {"name": "Food Lion", "shop": "supermarket"}, "name": "Food Lion", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Foodland": {"tags": {"name": "Foodland", "shop": "supermarket"}, "name": "Foodland", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Foodworks": {"tags": {"name": "Foodworks", "shop": "supermarket"}, "name": "Foodworks", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Franprix": {"tags": {"name": "Franprix", "shop": "supermarket"}, "name": "Franprix", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Fred Meyer": {"tags": {"name": "Fred Meyer", "shop": "supermarket"}, "name": "Fred Meyer", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Froiz": {"tags": {"name": "Froiz", "shop": "supermarket"}, "name": "Froiz", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Føtex": {"tags": {"name": "Føtex", "shop": "supermarket"}, "name": "Føtex", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/G20": {"tags": {"name": "G20", "shop": "supermarket"}, "name": "G20", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Gadis": {"tags": {"name": "Gadis", "shop": "supermarket"}, "name": "Gadis", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Giant": {"tags": {"name": "Giant", "shop": "supermarket"}, "name": "Giant", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Giant Eagle": {"tags": {"name": "Giant Eagle", "shop": "supermarket"}, "name": "Giant Eagle", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Grand Frais": {"tags": {"name": "Grand Frais", "shop": "supermarket"}, "name": "Grand Frais", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Grocery Outlet": {"tags": {"name": "Grocery Outlet", "shop": "supermarket"}, "name": "Grocery Outlet", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Géant Casino": {"tags": {"name": "Géant Casino", "shop": "supermarket"}, "name": "Géant Casino", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/H-E-B": {"tags": {"name": "H-E-B", "shop": "supermarket"}, "name": "H-E-B", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/HIT": {"tags": {"name": "HIT", "shop": "supermarket"}, "name": "HIT", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Hannaford": {"tags": {"name": "Hannaford", "shop": "supermarket"}, "name": "Hannaford", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Harris Teeter": {"tags": {"name": "Harris Teeter", "shop": "supermarket"}, "name": "Harris Teeter", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Hemköp": {"tags": {"name": "Hemköp", "shop": "supermarket"}, "name": "Hemköp", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Heron Foods": {"tags": {"name": "Heron Foods", "shop": "supermarket"}, "name": "Heron Foods", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Hofer": {"tags": {"name": "Hofer", "shop": "supermarket"}, "name": "Hofer", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Hoogvliet": {"tags": {"name": "Hoogvliet", "shop": "supermarket"}, "name": "Hoogvliet", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Hy-Vee": {"tags": {"name": "Hy-Vee", "shop": "supermarket"}, "name": "Hy-Vee", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/ICA": {"tags": {"name": "ICA", "shop": "supermarket"}, "name": "ICA", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/ICA Kvantum": {"tags": {"name": "ICA Kvantum", "shop": "supermarket"}, "name": "ICA Kvantum", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/IDEA": {"tags": {"name": "IDEA", "shop": "supermarket"}, "name": "IDEA", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/IGA": {"tags": {"name": "IGA", "shop": "supermarket"}, "name": "IGA", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Iceland": {"tags": {"name": "Iceland", "shop": "supermarket"}, "name": "Iceland", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Intermarché": {"tags": {"name": "Intermarché", "shop": "supermarket"}, "name": "Intermarché", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Intermarché Contact": {"tags": {"name": "Intermarché Contact", "shop": "supermarket"}, "name": "Intermarché Contact", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Intermarché Super": {"tags": {"name": "Intermarché Super", "shop": "supermarket"}, "name": "Intermarché Super", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Interspar": {"tags": {"name": "Interspar", "shop": "supermarket"}, "name": "Interspar", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Irma": {"tags": {"name": "Irma", "shop": "supermarket"}, "name": "Irma", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Jewel-Osco": {"tags": {"name": "Jewel-Osco", "shop": "supermarket"}, "name": "Jewel-Osco", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Jumbo": {"tags": {"name": "Jumbo", "shop": "supermarket"}, "name": "Jumbo", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/K+K": {"tags": {"name": "K+K", "shop": "supermarket"}, "name": "K+K", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Kaufland": {"tags": {"name": "Kaufland", "shop": "supermarket"}, "name": "Kaufland", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/King Soopers": {"tags": {"name": "King Soopers", "shop": "supermarket"}, "name": "King Soopers", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Kiwi": {"tags": {"name": "Kiwi", "shop": "supermarket"}, "name": "Kiwi", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Konsum": {"tags": {"name": "Konsum", "shop": "supermarket"}, "name": "Konsum", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Konzum": {"tags": {"name": "Konzum", "shop": "supermarket"}, "name": "Konzum", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Kroger": {"tags": {"name": "Kroger", "shop": "supermarket"}, "name": "Kroger", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Kvickly": {"tags": {"name": "Kvickly", "shop": "supermarket"}, "name": "Kvickly", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/La Vie Claire": {"tags": {"name": "La Vie Claire", "shop": "supermarket"}, "name": "La Vie Claire", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Landi": {"tags": {"name": "Landi", "shop": "supermarket"}, "name": "Landi", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Leader Price": {"tags": {"name": "Leader Price", "shop": "supermarket"}, "name": "Leader Price", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Leclerc Drive": {"tags": {"name": "Leclerc Drive", "shop": "supermarket"}, "name": "Leclerc Drive", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Lider": {"tags": {"name": "Lider", "shop": "supermarket"}, "name": "Lider", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Lidl": {"tags": {"name": "Lidl", "shop": "supermarket"}, "name": "Lidl", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Lupa": {"tags": {"name": "Lupa", "shop": "supermarket"}, "name": "Lupa", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/MPREIS": {"tags": {"name": "MPREIS", "shop": "supermarket"}, "name": "MPREIS", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Makro": {"tags": {"name": "Makro", "shop": "supermarket"}, "name": "Makro", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Markant": {"tags": {"name": "Markant", "shop": "supermarket"}, "name": "Markant", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Market Basket": {"tags": {"name": "Market Basket", "shop": "supermarket"}, "name": "Market Basket", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Marktkauf": {"tags": {"name": "Marktkauf", "shop": "supermarket"}, "name": "Marktkauf", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Match": {"tags": {"name": "Match", "shop": "supermarket"}, "name": "Match", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Maxi": {"tags": {"name": "Maxi", "shop": "supermarket"}, "name": "Maxi", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Maxi Dia": {"tags": {"name": "Maxi Dia", "shop": "supermarket"}, "name": "Maxi Dia", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Maxima": {"tags": {"name": "Maxima", "shop": "supermarket"}, "name": "Maxima", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Maxima X": {"tags": {"name": "Maxima X", "shop": "supermarket"}, "name": "Maxima X", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Maxima XX": {"tags": {"name": "Maxima XX", "shop": "supermarket"}, "name": "Maxima XX", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Mega Image": {"tags": {"name": "Mega Image", "shop": "supermarket"}, "name": "Mega Image", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Mego": {"tags": {"name": "Mego", "shop": "supermarket"}, "name": "Mego", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Meijer": {"tags": {"name": "Meijer", "shop": "supermarket"}, "name": "Meijer", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Meny": {"tags": {"name": "Meny", "shop": "supermarket"}, "name": "Meny", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Mercado Municipal": {"tags": {"name": "Mercado Municipal", "shop": "supermarket"}, "name": "Mercado Municipal", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Mercado de Abastos": {"tags": {"name": "Mercado de Abastos", "shop": "supermarket"}, "name": "Mercado de Abastos", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Mercadona": {"tags": {"name": "Mercadona", "shop": "supermarket"}, "name": "Mercadona", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Mercator": {"tags": {"name": "Mercator", "shop": "supermarket"}, "name": "Mercator", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Merkur": {"tags": {"name": "Merkur", "shop": "supermarket"}, "name": "Merkur", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Metro": {"tags": {"name": "Metro", "shop": "supermarket"}, "name": "Metro", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Migros": {"tags": {"name": "Migros", "shop": "supermarket"}, "name": "Migros", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Mila": {"tags": {"name": "Mila", "shop": "supermarket"}, "name": "Mila", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Minipreço": {"tags": {"name": "Minipreço", "shop": "supermarket"}, "name": "Minipreço", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Mix Markt": {"tags": {"name": "Mix Markt", "shop": "supermarket"}, "name": "Mix Markt", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Monoprix": {"tags": {"name": "Monoprix", "shop": "supermarket"}, "name": "Monoprix", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/More": {"tags": {"name": "More", "shop": "supermarket"}, "name": "More", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Morrisons": {"tags": {"name": "Morrisons", "shop": "supermarket"}, "name": "Morrisons", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/NORMA": {"tags": {"name": "NORMA", "shop": "supermarket"}, "name": "NORMA", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/NP": {"tags": {"name": "NP", "shop": "supermarket"}, "name": "NP", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Nah & Frisch": {"tags": {"name": "Nah & Frisch", "shop": "supermarket"}, "name": "Nah & Frisch", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Nahkauf": {"tags": {"name": "Nahkauf", "shop": "supermarket"}, "name": "Nahkauf", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Netto": {"tags": {"name": "Netto", "shop": "supermarket"}, "name": "Netto", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Netto Marken-Discount": {"tags": {"name": "Netto Marken-Discount", "shop": "supermarket"}, "name": "Netto Marken-Discount", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/New World": {"tags": {"name": "New World", "shop": "supermarket"}, "name": "New World", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/No Frills": {"tags": {"name": "No Frills", "shop": "supermarket"}, "name": "No Frills", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Norfa XL": {"tags": {"name": "Norfa XL", "shop": "supermarket"}, "name": "Norfa XL", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Norma": {"tags": {"name": "Norma", "shop": "supermarket"}, "name": "Norma", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/PENNY": {"tags": {"name": "PENNY", "shop": "supermarket"}, "name": "PENNY", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/PLUS": {"tags": {"name": "PLUS", "shop": "supermarket"}, "name": "PLUS", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/POLOmarket": {"tags": {"name": "POLOmarket", "shop": "supermarket"}, "name": "POLOmarket", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Palí": {"tags": {"name": "Palí", "shop": "supermarket"}, "name": "Palí", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Pam": {"tags": {"name": "Pam", "shop": "supermarket"}, "name": "Pam", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Penny": {"tags": {"name": "Penny", "shop": "supermarket"}, "name": "Penny", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Penny Markt": {"tags": {"name": "Penny Markt", "shop": "supermarket"}, "name": "Penny Markt", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Pick n Pay": {"tags": {"name": "Pick n Pay", "shop": "supermarket"}, "name": "Pick n Pay", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Piggly Wiggly": {"tags": {"name": "Piggly Wiggly", "shop": "supermarket"}, "name": "Piggly Wiggly", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Pingo Doce": {"tags": {"name": "Pingo Doce", "shop": "supermarket"}, "name": "Pingo Doce", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Piotr i Paweł": {"tags": {"name": "Piotr i Paweł", "shop": "supermarket"}, "name": "Piotr i Paweł", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Plaza Vea": {"tags": {"name": "Plaza Vea", "shop": "supermarket"}, "name": "Plaza Vea", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Plodine": {"tags": {"name": "Plodine", "shop": "supermarket"}, "name": "Plodine", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Poiesz": {"tags": {"name": "Poiesz", "shop": "supermarket"}, "name": "Poiesz", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Price Chopper": {"tags": {"name": "Price Chopper", "shop": "supermarket"}, "name": "Price Chopper", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Prix": {"tags": {"name": "Prix", "shop": "supermarket"}, "name": "Prix", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Profi": {"tags": {"name": "Profi", "shop": "supermarket"}, "name": "Profi", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Proxy Delhaize": {"tags": {"name": "Proxy Delhaize", "shop": "supermarket"}, "name": "Proxy Delhaize", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Publix": {"tags": {"name": "Publix", "shop": "supermarket"}, "name": "Publix", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Punto Simply": {"tags": {"name": "Punto Simply", "shop": "supermarket"}, "name": "Punto Simply", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Puregold": {"tags": {"name": "Puregold", "shop": "supermarket"}, "name": "Puregold", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Pão de Açúcar": {"tags": {"name": "Pão de Açúcar", "shop": "supermarket"}, "name": "Pão de Açúcar", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/QFC": {"tags": {"name": "QFC", "shop": "supermarket"}, "name": "QFC", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/REMA 1000": {"tags": {"name": "REMA 1000", "shop": "supermarket"}, "name": "REMA 1000", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Ralphs": {"tags": {"name": "Ralphs", "shop": "supermarket"}, "name": "Ralphs", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Real": {"tags": {"name": "Real", "shop": "supermarket"}, "name": "Real", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Real Canadian Superstore": {"tags": {"name": "Real Canadian Superstore", "shop": "supermarket"}, "name": "Real Canadian Superstore", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Reliance Fresh": {"tags": {"name": "Reliance Fresh", "shop": "supermarket"}, "name": "Reliance Fresh", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Rema 1000": {"tags": {"name": "Rema 1000", "shop": "supermarket"}, "name": "Rema 1000", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Rewe": {"tags": {"name": "Rewe", "shop": "supermarket"}, "name": "Rewe", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Rewe City": {"tags": {"name": "Rewe City", "shop": "supermarket"}, "name": "Rewe City", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Rimi": {"tags": {"name": "Rimi", "shop": "supermarket"}, "name": "Rimi", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/S-Market": {"tags": {"name": "S-Market", "shop": "supermarket"}, "name": "S-Market", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Safeway": {"tags": {"name": "Safeway", "shop": "supermarket"}, "name": "Safeway", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Sainsbury's": {"tags": {"name": "Sainsbury's", "shop": "supermarket"}, "name": "Sainsbury's", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Sainsbury's Local": {"tags": {"name": "Sainsbury's Local", "shop": "supermarket"}, "name": "Sainsbury's Local", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Sam's Club": {"tags": {"name": "Sam's Club", "shop": "supermarket"}, "name": "Sam's Club", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Santa Isabel": {"tags": {"name": "Santa Isabel", "shop": "supermarket"}, "name": "Santa Isabel", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Save-A-Lot": {"tags": {"name": "Save-A-Lot", "shop": "supermarket"}, "name": "Save-A-Lot", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/ShopRite": {"tags": {"name": "ShopRite", "shop": "supermarket"}, "name": "ShopRite", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Shoprite": {"tags": {"name": "Shoprite", "shop": "supermarket"}, "name": "Shoprite", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Sigma": {"tags": {"name": "Sigma", "shop": "supermarket"}, "name": "Sigma", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Simply Market": {"tags": {"name": "Simply Market", "shop": "supermarket"}, "name": "Simply Market", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Sky": {"tags": {"name": "Sky", "shop": "supermarket"}, "name": "Sky", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Smith's": {"tags": {"name": "Smith's", "shop": "supermarket"}, "name": "Smith's", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Sobeys": {"tags": {"name": "Sobeys", "shop": "supermarket"}, "name": "Sobeys", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Soriana": {"tags": {"name": "Soriana", "shop": "supermarket"}, "name": "Soriana", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Spar": {"tags": {"name": "Spar", "shop": "supermarket"}, "name": "Spar", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Sprouts Farmers Market": {"tags": {"name": "Sprouts Farmers Market", "shop": "supermarket"}, "name": "Sprouts Farmers Market", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Stokrotka": {"tags": {"name": "Stokrotka", "shop": "supermarket"}, "name": "Stokrotka", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Stop & Shop": {"tags": {"name": "Stop & Shop", "shop": "supermarket"}, "name": "Stop & Shop", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Super C": {"tags": {"name": "Super C", "shop": "supermarket"}, "name": "Super C", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Super U": {"tags": {"name": "Super U", "shop": "supermarket"}, "name": "Super U", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/SuperBrugsen": {"tags": {"name": "SuperBrugsen", "shop": "supermarket"}, "name": "SuperBrugsen", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/SuperValu": {"tags": {"name": "SuperValu", "shop": "supermarket"}, "name": "SuperValu", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Superama": {"tags": {"name": "Superama", "shop": "supermarket"}, "name": "Superama", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Supersol": {"tags": {"name": "Supersol", "shop": "supermarket"}, "name": "Supersol", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Superspar": {"tags": {"name": "Superspar", "shop": "supermarket"}, "name": "Superspar", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Tegut": {"tags": {"name": "Tegut", "shop": "supermarket"}, "name": "Tegut", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Tengelmann": {"tags": {"name": "Tengelmann", "shop": "supermarket"}, "name": "Tengelmann", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Tesco": {"tags": {"name": "Tesco", "shop": "supermarket"}, "name": "Tesco", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Tesco Extra": {"tags": {"name": "Tesco Extra", "shop": "supermarket"}, "name": "Tesco Extra", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Tesco Lotus": {"tags": {"name": "Tesco Lotus", "shop": "supermarket"}, "name": "Tesco Lotus", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Tesco Metro": {"tags": {"name": "Tesco Metro", "shop": "supermarket"}, "name": "Tesco Metro", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/The Co-operative": {"tags": {"name": "The Co-operative", "shop": "supermarket"}, "name": "The Co-operative", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/The Co-operative Food": {"tags": {"name": "The Co-operative Food", "shop": "supermarket"}, "name": "The Co-operative Food", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Tommy": {"tags": {"name": "Tommy", "shop": "supermarket"}, "name": "Tommy", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Tottus": {"tags": {"name": "Tottus", "shop": "supermarket"}, "name": "Tottus", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Trader Joe's": {"tags": {"name": "Trader Joe's", "shop": "supermarket"}, "name": "Trader Joe's", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Treff 3000": {"tags": {"name": "Treff 3000", "shop": "supermarket"}, "name": "Treff 3000", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/U Express": {"tags": {"name": "U Express", "shop": "supermarket"}, "name": "U Express", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Unimarc": {"tags": {"name": "Unimarc", "shop": "supermarket"}, "name": "Unimarc", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Unimarkt": {"tags": {"name": "Unimarkt", "shop": "supermarket"}, "name": "Unimarkt", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Utile": {"tags": {"name": "Utile", "shop": "supermarket"}, "name": "Utile", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Vea": {"tags": {"name": "Vea", "shop": "supermarket"}, "name": "Vea", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Volg": {"tags": {"name": "Volg", "shop": "supermarket"}, "name": "Volg", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Waitrose": {"tags": {"name": "Waitrose", "shop": "supermarket"}, "name": "Waitrose", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Walmart": {"tags": {"name": "Walmart", "shop": "supermarket"}, "name": "Walmart", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Walmart Neighborhood Market": {"tags": {"name": "Walmart Neighborhood Market", "shop": "supermarket"}, "name": "Walmart Neighborhood Market", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Walmart Supercenter": {"tags": {"name": "Walmart Supercenter", "shop": "supermarket"}, "name": "Walmart Supercenter", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Wasgau": {"tags": {"name": "Wasgau", "shop": "supermarket"}, "name": "Wasgau", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Wegmans": {"tags": {"name": "Wegmans", "shop": "supermarket"}, "name": "Wegmans", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Wellcome": {"tags": {"name": "Wellcome", "shop": "supermarket"}, "name": "Wellcome", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Whole Foods Market": {"tags": {"name": "Whole Foods Market", "shop": "supermarket"}, "name": "Whole Foods Market", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Willys": {"tags": {"name": "Willys", "shop": "supermarket"}, "name": "Willys", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/WinCo Foods": {"tags": {"name": "WinCo Foods", "shop": "supermarket"}, "name": "WinCo Foods", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Winn Dixie": {"tags": {"name": "Winn Dixie", "shop": "supermarket"}, "name": "Winn Dixie", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Woolworths": {"tags": {"name": "Woolworths", "shop": "supermarket"}, "name": "Woolworths", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/denn's Biomarkt": {"tags": {"name": "denn's Biomarkt", "shop": "supermarket"}, "name": "denn's Biomarkt", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/fakta": {"tags": {"name": "fakta", "shop": "supermarket"}, "name": "fakta", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/real": {"tags": {"name": "real", "shop": "supermarket"}, "name": "real", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/tegut": {"tags": {"name": "tegut", "shop": "supermarket"}, "name": "tegut", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Şok": {"tags": {"name": "Şok", "shop": "supermarket"}, "name": "Şok", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/ΑΒ Βασιλόπουλος": {"tags": {"name": "ΑΒ Βασιλόπουλος", "shop": "supermarket"}, "name": "ΑΒ Βασιλόπουλος", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Γαλαξίας": {"tags": {"name": "Γαλαξίας", "shop": "supermarket"}, "name": "Γαλαξίας", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Μασούτης": {"tags": {"name": "Μασούτης", "shop": "supermarket"}, "name": "Μασούτης", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Σκλαβενίτης": {"tags": {"name": "Σκλαβενίτης", "shop": "supermarket"}, "name": "Σκλαβενίτης", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/АТБ": {"tags": {"name": "АТБ", "shop": "supermarket"}, "name": "АТБ", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Абсолют": {"tags": {"name": "Абсолют", "shop": "supermarket"}, "name": "Абсолют", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Азбука Вкуса": {"tags": {"name": "Азбука Вкуса", "shop": "supermarket"}, "name": "Азбука Вкуса", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Атак": {"tags": {"name": "Атак", "shop": "supermarket"}, "name": "Атак", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Ашан": {"tags": {"name": "Ашан", "shop": "supermarket"}, "name": "Ашан", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Верный": {"tags": {"name": "Верный", "shop": "supermarket"}, "name": "Верный", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Вопак": {"tags": {"name": "Вопак", "shop": "supermarket"}, "name": "Вопак", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Гроздь": {"tags": {"name": "Гроздь", "shop": "supermarket"}, "name": "Гроздь", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Десяточка": {"tags": {"name": "Десяточка", "shop": "supermarket"}, "name": "Десяточка", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Дикси": {"tags": {"name": "Дикси", "shop": "supermarket"}, "name": "Дикси", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Евроопт": {"tags": {"name": "Евроопт", "shop": "supermarket"}, "name": "Евроопт", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Карусель": {"tags": {"name": "Карусель", "shop": "supermarket"}, "name": "Карусель", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Квартал": {"tags": {"name": "Квартал", "shop": "supermarket"}, "name": "Квартал", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Командор": {"tags": {"name": "Командор", "shop": "supermarket"}, "name": "Командор", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Красный Яр": {"tags": {"name": "Красный Яр", "shop": "supermarket"}, "name": "Красный Яр", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Лента": {"tags": {"name": "Лента", "shop": "supermarket"}, "name": "Лента", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Магнит": {"tags": {"name": "Магнит", "shop": "supermarket"}, "name": "Магнит", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Магнолия": {"tags": {"name": "Магнолия", "shop": "supermarket"}, "name": "Магнолия", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Монетка": {"tags": {"name": "Монетка", "shop": "supermarket"}, "name": "Монетка", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Народная 7Я семьЯ": {"tags": {"name": "Народная 7Я семьЯ", "shop": "supermarket"}, "name": "Народная 7Я семьЯ", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Перекресток": {"tags": {"name": "Перекресток", "shop": "supermarket"}, "name": "Перекресток", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Покупочка": {"tags": {"name": "Покупочка", "shop": "supermarket"}, "name": "Покупочка", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Полушка": {"tags": {"name": "Полушка", "shop": "supermarket"}, "name": "Полушка", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Пятёрочка": {"tags": {"name": "Пятёрочка", "shop": "supermarket"}, "name": "Пятёрочка", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Радеж": {"tags": {"name": "Радеж", "shop": "supermarket"}, "name": "Радеж", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Рукавичка": {"tags": {"name": "Рукавичка", "shop": "supermarket"}, "name": "Рукавичка", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Светофор": {"tags": {"name": "Светофор", "shop": "supermarket"}, "name": "Светофор", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Седьмой континент": {"tags": {"name": "Седьмой континент", "shop": "supermarket"}, "name": "Седьмой континент", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Семейный": {"tags": {"name": "Семейный", "shop": "supermarket"}, "name": "Семейный", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Семья": {"tags": {"name": "Семья", "shop": "supermarket"}, "name": "Семья", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Супермаркет": {"tags": {"name": "Супермаркет", "shop": "supermarket"}, "name": "Супермаркет", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Сільпо": {"tags": {"name": "Сільпо", "shop": "supermarket"}, "name": "Сільпо", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Таврія‑В": {"tags": {"name": "Таврія‑В", "shop": "supermarket"}, "name": "Таврія‑В", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Фора": {"tags": {"name": "Фора", "shop": "supermarket"}, "name": "Фора", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Фуршет": {"tags": {"name": "Фуршет", "shop": "supermarket"}, "name": "Фуршет", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Хүнсний дэлгүүр": {"tags": {"name": "Хүнсний дэлгүүр", "shop": "supermarket"}, "name": "Хүнсний дэлгүүр", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/Эдельвейс": {"tags": {"name": "Эдельвейс", "shop": "supermarket"}, "name": "Эдельвейс", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/хүнсний дэлгүүр": {"tags": {"name": "хүнсний дэлгүүр", "shop": "supermarket"}, "name": "хүнсний дэлгүүр", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/بقالة": {"tags": {"name": "بقالة", "shop": "supermarket"}, "name": "بقالة", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/سوپر مارکت": {"tags": {"name": "سوپر مارکت", "shop": "supermarket"}, "name": "سوپر مارکت", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/سوپرمارکت": {"tags": {"name": "سوپرمارکت", "shop": "supermarket"}, "name": "سوپرمارکت", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/いなげや": {"tags": {"name": "いなげや", "shop": "supermarket"}, "name": "いなげや", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/まいばすけっと": {"tags": {"name": "まいばすけっと", "shop": "supermarket"}, "name": "まいばすけっと", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/イオン": {"tags": {"name": "イオン", "shop": "supermarket"}, "name": "イオン", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/イトーヨーカドー": {"tags": {"name": "イトーヨーカドー", "shop": "supermarket"}, "name": "イトーヨーカドー", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/カスミ": {"tags": {"name": "カスミ", "shop": "supermarket"}, "name": "カスミ", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/マックスバリュ": {"tags": {"name": "マックスバリュ", "shop": "supermarket"}, "name": "マックスバリュ", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/マルエツ": {"tags": {"name": "マルエツ", "shop": "supermarket"}, "name": "マルエツ", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/ライフ": {"tags": {"name": "ライフ", "shop": "supermarket"}, "name": "ライフ", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/全聯": {"tags": {"name": "全聯", "shop": "supermarket"}, "name": "全聯", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/全聯福利中心": {"tags": {"name": "全聯福利中心", "shop": "supermarket"}, "name": "全聯福利中心", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/惠康 Wellcome": {"tags": {"name": "惠康 Wellcome", "shop": "supermarket"}, "name": "惠康 Wellcome", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/業務スーパー": {"tags": {"name": "業務スーパー", "shop": "supermarket"}, "name": "業務スーパー", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/美廉社": {"tags": {"name": "美廉社", "shop": "supermarket"}, "name": "美廉社", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/supermarket/西友": {"tags": {"name": "西友", "shop": "supermarket"}, "name": "西友", "icon": "maki-grocery", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/tailor/Atelier de couture": {"tags": {"name": "Atelier de couture", "shop": "tailor"}, "name": "Atelier de couture", "icon": "maki-clothing-store", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/ticket/Boutique Grandes Lignes": {"tags": {"name": "Boutique Grandes Lignes", "shop": "ticket"}, "name": "Boutique Grandes Lignes", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/ticket/Guichet Transilien": {"tags": {"name": "Guichet Transilien", "shop": "ticket"}, "name": "Guichet Transilien", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/ticket/Касса": {"tags": {"name": "Касса", "shop": "ticket"}, "name": "Касса", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/ticket/Проездные билеты": {"tags": {"name": "Проездные билеты", "shop": "ticket"}, "name": "Проездные билеты", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/tobacco/Dohánybolt": {"tags": {"name": "Dohánybolt", "shop": "tobacco"}, "name": "Dohánybolt", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/tobacco/Estanco": {"tags": {"name": "Estanco", "shop": "tobacco"}, "name": "Estanco", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/tobacco/Nemzeti Dohánybolt": {"tags": {"name": "Nemzeti Dohánybolt", "shop": "tobacco"}, "name": "Nemzeti Dohánybolt", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/tobacco/Tabacos": {"tags": {"name": "Tabacos", "shop": "tobacco"}, "name": "Tabacos", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/tobacco/Табакерка": {"tags": {"name": "Табакерка", "shop": "tobacco"}, "name": "Табакерка", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/toys/Dráčik": {"tags": {"name": "Dráčik", "shop": "toys"}, "name": "Dráčik", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/toys/Intertoys": {"tags": {"name": "Intertoys", "shop": "toys"}, "name": "Intertoys", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/toys/King Jouet": {"tags": {"name": "King Jouet", "shop": "toys"}, "name": "King Jouet", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/toys/La Grande Récré": {"tags": {"name": "La Grande Récré", "shop": "toys"}, "name": "La Grande Récré", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/toys/Maxi Toys": {"tags": {"name": "Maxi Toys", "shop": "toys"}, "name": "Maxi Toys", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/toys/Toys R Us": {"tags": {"name": "Toys R Us", "shop": "toys"}, "name": "Toys R Us", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/toys/Детский мир": {"tags": {"name": "Детский мир", "shop": "toys"}, "name": "Детский мир", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/toys/Игрушки": {"tags": {"name": "Игрушки", "shop": "toys"}, "name": "Игрушки", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/travel_agency/D-reizen": {"tags": {"name": "D-reizen", "shop": "travel_agency"}, "name": "D-reizen", "icon": "maki-suitcase", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/travel_agency/DER Reisebüro": {"tags": {"name": "DER Reisebüro", "shop": "travel_agency"}, "name": "DER Reisebüro", "icon": "maki-suitcase", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/travel_agency/First Reisebüro": {"tags": {"name": "First Reisebüro", "shop": "travel_agency"}, "name": "First Reisebüro", "icon": "maki-suitcase", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/travel_agency/Flight Centre": {"tags": {"name": "Flight Centre", "shop": "travel_agency"}, "name": "Flight Centre", "icon": "maki-suitcase", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/travel_agency/Reiseland": {"tags": {"name": "Reiseland", "shop": "travel_agency"}, "name": "Reiseland", "icon": "maki-suitcase", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/travel_agency/TUI": {"tags": {"name": "TUI", "shop": "travel_agency"}, "name": "TUI", "icon": "maki-suitcase", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/travel_agency/The Co-operative Travel": {"tags": {"name": "The Co-operative Travel", "shop": "travel_agency"}, "name": "The Co-operative Travel", "icon": "maki-suitcase", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/travel_agency/Thomas Cook": {"tags": {"name": "Thomas Cook", "shop": "travel_agency"}, "name": "Thomas Cook", "icon": "maki-suitcase", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/travel_agency/Thomson": {"tags": {"name": "Thomson", "shop": "travel_agency"}, "name": "Thomson", "icon": "maki-suitcase", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/tyres/Borracharia": {"tags": {"name": "Borracharia", "shop": "tyres"}, "name": "Borracharia", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/tyres/Bridgestone": {"tags": {"name": "Bridgestone", "shop": "tyres"}, "name": "Bridgestone", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/tyres/Discount Tire": {"tags": {"name": "Discount Tire", "shop": "tyres"}, "name": "Discount Tire", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/tyres/Les Schwab Tire Center": {"tags": {"name": "Les Schwab Tire Center", "shop": "tyres"}, "name": "Les Schwab Tire Center", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/tyres/Vianor": {"tags": {"name": "Vianor", "shop": "tyres"}, "name": "Vianor", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/tyres/Вулканизация": {"tags": {"name": "Вулканизация", "shop": "tyres"}, "name": "Вулканизация", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/variety_store/Action": {"tags": {"name": "Action", "shop": "variety_store"}, "name": "Action", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/variety_store/Bazar": {"tags": {"name": "Bazar", "shop": "variety_store"}, "name": "Bazar", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/variety_store/Big Bazar": {"tags": {"name": "Big Bazar", "shop": "variety_store"}, "name": "Big Bazar", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/variety_store/Dollar Tree": {"tags": {"name": "Dollar Tree", "shop": "variety_store"}, "name": "Dollar Tree", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/variety_store/Dollarama": {"tags": {"name": "Dollarama", "shop": "variety_store"}, "name": "Dollarama", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/variety_store/EuroShop": {"tags": {"name": "EuroShop", "shop": "variety_store"}, "name": "EuroShop", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/variety_store/Family Dollar": {"tags": {"name": "Family Dollar", "shop": "variety_store"}, "name": "Family Dollar", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/variety_store/Fix Price": {"tags": {"name": "Fix Price", "shop": "variety_store"}, "name": "Fix Price", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/variety_store/Fix price": {"tags": {"name": "Fix price", "shop": "variety_store"}, "name": "Fix price", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/variety_store/FixPrice": {"tags": {"name": "FixPrice", "shop": "variety_store"}, "name": "FixPrice", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/variety_store/GiFi": {"tags": {"name": "GiFi", "shop": "variety_store"}, "name": "GiFi", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/variety_store/Home Bargains": {"tags": {"name": "Home Bargains", "shop": "variety_store"}, "name": "Home Bargains", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/variety_store/Mäc-Geiz": {"tags": {"name": "Mäc-Geiz", "shop": "variety_store"}, "name": "Mäc-Geiz", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/variety_store/NOZ": {"tags": {"name": "NOZ", "shop": "variety_store"}, "name": "NOZ", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/variety_store/Poundland": {"tags": {"name": "Poundland", "shop": "variety_store"}, "name": "Poundland", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/variety_store/Poundworld": {"tags": {"name": "Poundworld", "shop": "variety_store"}, "name": "Poundworld", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/variety_store/Tedi": {"tags": {"name": "Tedi", "shop": "variety_store"}, "name": "Tedi", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/variety_store/ダイソー": {"tags": {"name": "ダイソー", "shop": "variety_store"}, "name": "ダイソー", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/video/Blockbuster": {"tags": {"name": "Blockbuster", "shop": "video"}, "name": "Blockbuster", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/video/Family Video": {"tags": {"name": "Family Video", "shop": "video"}, "name": "Family Video", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/video/TSUTAYA": {"tags": {"name": "TSUTAYA", "shop": "video"}, "name": "TSUTAYA", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/video/World of Video": {"tags": {"name": "World of Video", "shop": "video"}, "name": "World of Video", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/video/ゲオ": {"tags": {"name": "ゲオ", "shop": "video"}, "name": "ゲオ", "icon": "maki-shop", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/video_games/EB Games": {"tags": {"name": "EB Games", "shop": "video_games"}, "name": "EB Games", "icon": "maki-gaming", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/video_games/Game": {"tags": {"name": "Game", "shop": "video_games"}, "name": "Game", "icon": "maki-gaming", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/video_games/GameStop": {"tags": {"name": "GameStop", "shop": "video_games"}, "name": "GameStop", "icon": "maki-gaming", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "shop/video_games/Micromania": {"tags": {"name": "Micromania", "shop": "video_games"}, "name": "Micromania", "icon": "maki-gaming", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours", "payment_multi"], "suggestion": true},
+ "tourism/alpine_hut/КОШ": {"tags": {"name": "КОШ", "tourism": "alpine_hut"}, "name": "КОШ", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/apartment/Двухкомнатная квартира на сутки": {"tags": {"name": "Двухкомнатная квартира на сутки", "tourism": "apartment"}, "name": "Двухкомнатная квартира на сутки", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "smoking", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/attraction/Arch": {"tags": {"name": "Arch", "tourism": "attraction"}, "name": "Arch", "icon": "maki-star", "geometry": ["point", "vertex", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "tourism/attraction/Kursächsische Postmeilensäule": {"tags": {"name": "Kursächsische Postmeilensäule", "tourism": "attraction"}, "name": "Kursächsische Postmeilensäule", "icon": "maki-star", "geometry": ["point", "vertex", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "tourism/attraction/Maibaum": {"tags": {"name": "Maibaum", "tourism": "attraction"}, "name": "Maibaum", "icon": "maki-star", "geometry": ["point", "vertex", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "tourism/attraction/Moab trail": {"tags": {"name": "Moab trail", "tourism": "attraction"}, "name": "Moab trail", "icon": "maki-star", "geometry": ["point", "vertex", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "tourism/attraction/Moai": {"tags": {"name": "Moai", "tourism": "attraction"}, "name": "Moai", "icon": "maki-star", "geometry": ["point", "vertex", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "tourism/attraction/OWŚ": {"tags": {"name": "OWŚ", "tourism": "attraction"}, "name": "OWŚ", "icon": "maki-star", "geometry": ["point", "vertex", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "tourism/attraction/Sommerrodelbahn": {"tags": {"name": "Sommerrodelbahn", "tourism": "attraction"}, "name": "Sommerrodelbahn", "icon": "maki-star", "geometry": ["point", "vertex", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "tourism/attraction/path contiunes": {"tags": {"name": "path contiunes", "tourism": "attraction"}, "name": "path contiunes", "icon": "maki-star", "geometry": ["point", "vertex", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "tourism/attraction/white blaze": {"tags": {"name": "white blaze", "tourism": "attraction"}, "name": "white blaze", "icon": "maki-star", "geometry": ["point", "vertex", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "tourism/attraction/Кладбище еврейское": {"tags": {"name": "Кладбище еврейское", "tourism": "attraction"}, "name": "Кладбище еврейское", "icon": "maki-star", "geometry": ["point", "vertex", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "tourism/attraction/Колесо обозрения": {"tags": {"name": "Колесо обозрения", "tourism": "attraction"}, "name": "Колесо обозрения", "icon": "maki-star", "geometry": ["point", "vertex", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "tourism/attraction/Приусадебный парк": {"tags": {"name": "Приусадебный парк", "tourism": "attraction"}, "name": "Приусадебный парк", "icon": "maki-star", "geometry": ["point", "vertex", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "tourism/attraction/Усадьба": {"tags": {"name": "Усадьба", "tourism": "attraction"}, "name": "Усадьба", "icon": "maki-star", "geometry": ["point", "vertex", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "tourism/attraction/Хозяйственный двор": {"tags": {"name": "Хозяйственный двор", "tourism": "attraction"}, "name": "Хозяйственный двор", "icon": "maki-star", "geometry": ["point", "vertex", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "tourism/attraction/Часовня": {"tags": {"name": "Часовня", "tourism": "attraction"}, "name": "Часовня", "icon": "maki-star", "geometry": ["point", "vertex", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "tourism/attraction/дольмен": {"tags": {"name": "дольмен", "tourism": "attraction"}, "name": "дольмен", "icon": "maki-star", "geometry": ["point", "vertex", "area"], "fields": ["name", "operator", "address"], "suggestion": true},
+ "tourism/camp_site/Camping Municipal": {"tags": {"name": "Camping Municipal", "tourism": "camp_site"}, "name": "Camping Municipal", "icon": "maki-campsite", "geometry": ["point", "vertex", "area"], "fields": ["name", "operator", "address", "capacity", "fee", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/camp_site/Camping municipal": {"tags": {"name": "Camping municipal", "tourism": "camp_site"}, "name": "Camping municipal", "icon": "maki-campsite", "geometry": ["point", "vertex", "area"], "fields": ["name", "operator", "address", "capacity", "fee", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/guest_house/Home": {"tags": {"name": "Home", "tourism": "guest_house"}, "name": "Home", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "smoking", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/guest_house/OW Bielanka": {"tags": {"name": "OW Bielanka", "tourism": "guest_house"}, "name": "OW Bielanka", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "smoking", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hostel/Albergue de Peregrinos": {"tags": {"name": "Albergue de Peregrinos", "tourism": "hostel"}, "name": "Albergue de Peregrinos", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "smoking", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hostel/Hospedaje": {"tags": {"name": "Hospedaje", "tourism": "hostel"}, "name": "Hospedaje", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "smoking", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hostel/Hostal": {"tags": {"name": "Hostal", "tourism": "hostel"}, "name": "Hostal", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "smoking", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/B&B Hôtel": {"tags": {"name": "B&B Hôtel", "tourism": "hotel"}, "name": "B&B Hôtel", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/B&b Hôtel": {"tags": {"name": "B&b Hôtel", "tourism": "hotel"}, "name": "B&b Hôtel", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Best Western": {"tags": {"name": "Best Western", "tourism": "hotel"}, "name": "Best Western", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Campanile": {"tags": {"name": "Campanile", "tourism": "hotel"}, "name": "Campanile", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Central Hotel": {"tags": {"name": "Central Hotel", "tourism": "hotel"}, "name": "Central Hotel", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/City Hotel": {"tags": {"name": "City Hotel", "tourism": "hotel"}, "name": "City Hotel", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Comfort Inn": {"tags": {"name": "Comfort Inn", "tourism": "hotel"}, "name": "Comfort Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Comfort Inn & Suites": {"tags": {"name": "Comfort Inn & Suites", "tourism": "hotel"}, "name": "Comfort Inn & Suites", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Comfort Suites": {"tags": {"name": "Comfort Suites", "tourism": "hotel"}, "name": "Comfort Suites", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Country Inn & Suites": {"tags": {"name": "Country Inn & Suites", "tourism": "hotel"}, "name": "Country Inn & Suites", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Courtyard by Marriott": {"tags": {"name": "Courtyard by Marriott", "tourism": "hotel"}, "name": "Courtyard by Marriott", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Crowne Plaza": {"tags": {"name": "Crowne Plaza", "tourism": "hotel"}, "name": "Crowne Plaza", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Days Inn": {"tags": {"name": "Days Inn", "tourism": "hotel"}, "name": "Days Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Embassy Suites": {"tags": {"name": "Embassy Suites", "tourism": "hotel"}, "name": "Embassy Suites", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Extended Stay America": {"tags": {"name": "Extended Stay America", "tourism": "hotel"}, "name": "Extended Stay America", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Fairfield Inn": {"tags": {"name": "Fairfield Inn", "tourism": "hotel"}, "name": "Fairfield Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Fairfield Inn & Suites": {"tags": {"name": "Fairfield Inn & Suites", "tourism": "hotel"}, "name": "Fairfield Inn & Suites", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Formule 1": {"tags": {"name": "Formule 1", "tourism": "hotel"}, "name": "Formule 1", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Grand Hotel": {"tags": {"name": "Grand Hotel", "tourism": "hotel"}, "name": "Grand Hotel", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Hampton Inn": {"tags": {"name": "Hampton Inn", "tourism": "hotel"}, "name": "Hampton Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Hampton Inn & Suites": {"tags": {"name": "Hampton Inn & Suites", "tourism": "hotel"}, "name": "Hampton Inn & Suites", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Hilton Garden Inn": {"tags": {"name": "Hilton Garden Inn", "tourism": "hotel"}, "name": "Hilton Garden Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Holiday Inn": {"tags": {"name": "Holiday Inn", "tourism": "hotel"}, "name": "Holiday Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Holiday Inn Express": {"tags": {"name": "Holiday Inn Express", "tourism": "hotel"}, "name": "Holiday Inn Express", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Holiday Inn Express & Suites": {"tags": {"name": "Holiday Inn Express & Suites", "tourism": "hotel"}, "name": "Holiday Inn Express & Suites", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Homewood Suites": {"tags": {"name": "Homewood Suites", "tourism": "hotel"}, "name": "Homewood Suites", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Hotel Central": {"tags": {"name": "Hotel Central", "tourism": "hotel"}, "name": "Hotel Central", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Hotel Europa": {"tags": {"name": "Hotel Europa", "tourism": "hotel"}, "name": "Hotel Europa", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Hotel Ibis": {"tags": {"name": "Hotel Ibis", "tourism": "hotel"}, "name": "Hotel Ibis", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Hotel Krone": {"tags": {"name": "Hotel Krone", "tourism": "hotel"}, "name": "Hotel Krone", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Hotel Panorama": {"tags": {"name": "Hotel Panorama", "tourism": "hotel"}, "name": "Hotel Panorama", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Hotel Plaza": {"tags": {"name": "Hotel Plaza", "tourism": "hotel"}, "name": "Hotel Plaza", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Hotel Post": {"tags": {"name": "Hotel Post", "tourism": "hotel"}, "name": "Hotel Post", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Hotel Royal": {"tags": {"name": "Hotel Royal", "tourism": "hotel"}, "name": "Hotel Royal", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Hotel Victoria": {"tags": {"name": "Hotel Victoria", "tourism": "hotel"}, "name": "Hotel Victoria", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Hotel zur Post": {"tags": {"name": "Hotel zur Post", "tourism": "hotel"}, "name": "Hotel zur Post", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Hôtel Ibis": {"tags": {"name": "Hôtel Ibis", "tourism": "hotel"}, "name": "Hôtel Ibis", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Hôtel de France": {"tags": {"name": "Hôtel de France", "tourism": "hotel"}, "name": "Hôtel de France", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Ibis": {"tags": {"name": "Ibis", "tourism": "hotel"}, "name": "Ibis", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Ibis Budget": {"tags": {"name": "Ibis Budget", "tourism": "hotel"}, "name": "Ibis Budget", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Ibis Styles": {"tags": {"name": "Ibis Styles", "tourism": "hotel"}, "name": "Ibis Styles", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Kyriad": {"tags": {"name": "Kyriad", "tourism": "hotel"}, "name": "Kyriad", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/La Quinta": {"tags": {"name": "La Quinta", "tourism": "hotel"}, "name": "La Quinta", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Marriott": {"tags": {"name": "Marriott", "tourism": "hotel"}, "name": "Marriott", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Mercure": {"tags": {"name": "Mercure", "tourism": "hotel"}, "name": "Mercure", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Novotel": {"tags": {"name": "Novotel", "tourism": "hotel"}, "name": "Novotel", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Palace Hotel": {"tags": {"name": "Palace Hotel", "tourism": "hotel"}, "name": "Palace Hotel", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Park Hotel": {"tags": {"name": "Park Hotel", "tourism": "hotel"}, "name": "Park Hotel", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Parkhotel": {"tags": {"name": "Parkhotel", "tourism": "hotel"}, "name": "Parkhotel", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Premier Inn": {"tags": {"name": "Premier Inn", "tourism": "hotel"}, "name": "Premier Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Première Classe": {"tags": {"name": "Première Classe", "tourism": "hotel"}, "name": "Première Classe", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Quality Inn": {"tags": {"name": "Quality Inn", "tourism": "hotel"}, "name": "Quality Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Quality Inn & Suites": {"tags": {"name": "Quality Inn & Suites", "tourism": "hotel"}, "name": "Quality Inn & Suites", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Ramada": {"tags": {"name": "Ramada", "tourism": "hotel"}, "name": "Ramada", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Residence Inn": {"tags": {"name": "Residence Inn", "tourism": "hotel"}, "name": "Residence Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Royal Hotel": {"tags": {"name": "Royal Hotel", "tourism": "hotel"}, "name": "Royal Hotel", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Sheraton": {"tags": {"name": "Sheraton", "tourism": "hotel"}, "name": "Sheraton", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Sleep Inn": {"tags": {"name": "Sleep Inn", "tourism": "hotel"}, "name": "Sleep Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Staybridge Suites": {"tags": {"name": "Staybridge Suites", "tourism": "hotel"}, "name": "Staybridge Suites", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Super 8": {"tags": {"name": "Super 8", "tourism": "hotel"}, "name": "Super 8", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Travelodge": {"tags": {"name": "Travelodge", "tourism": "hotel"}, "name": "Travelodge", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/Гостиница": {"tags": {"name": "Гостиница", "tourism": "hotel"}, "name": "Гостиница", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/hotel/東横イン": {"tags": {"name": "東横イン", "tourism": "hotel"}, "name": "東横イン", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "brand", "operator", "address", "building_area", "smoking", "stars", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/motel/Budget Inn": {"tags": {"name": "Budget Inn", "tourism": "motel"}, "name": "Budget Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "smoking", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/motel/Econo Lodge": {"tags": {"name": "Econo Lodge", "tourism": "motel"}, "name": "Econo Lodge", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "smoking", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/motel/Motel 6": {"tags": {"name": "Motel 6", "tourism": "motel"}, "name": "Motel 6", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "smoking", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/motel/Rodeway Inn": {"tags": {"name": "Rodeway Inn", "tourism": "motel"}, "name": "Rodeway Inn", "icon": "maki-lodging", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "smoking", "rooms", "internet_access", "internet_access/fee", "internet_access/ssid"], "suggestion": true},
+ "tourism/museum/Heimatmuseum": {"tags": {"name": "Heimatmuseum", "tourism": "museum"}, "name": "Heimatmuseum", "icon": "maki-museum", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours"], "suggestion": true},
+ "tourism/museum/Stadtmuseum": {"tags": {"name": "Stadtmuseum", "tourism": "museum"}, "name": "Stadtmuseum", "icon": "maki-museum", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours"], "suggestion": true},
+ "tourism/museum/Tájház": {"tags": {"name": "Tájház", "tourism": "museum"}, "name": "Tájház", "icon": "maki-museum", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours"], "suggestion": true},
+ "tourism/museum/Краеведческий музей": {"tags": {"name": "Краеведческий музей", "tourism": "museum"}, "name": "Краеведческий музей", "icon": "maki-museum", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours"], "suggestion": true},
+ "tourism/museum/Музей": {"tags": {"name": "Музей", "tourism": "museum"}, "name": "Музей", "icon": "maki-museum", "geometry": ["point", "area"], "fields": ["name", "operator", "address", "building_area", "opening_hours"], "suggestion": true}
+ }
}
\ No newline at end of file
diff --git a/data/shortcuts.json b/data/shortcuts.json
index 2b562181c..ee0c9cdc9 100644
--- a/data/shortcuts.json
+++ b/data/shortcuts.json
@@ -1,258 +1,341 @@
-{ "dataShortcuts": [
+{
+ "dataShortcuts": [
{
- "tab": "browsing",
- "text": "shortcuts.browsing.title",
- "columns": [
+ "tab": "browsing",
+ "text": "shortcuts.browsing.title",
+ "columns": [
+ {
+ "rows": [
{
- "rows": [
- {
- "section": "navigation",
- "text": "shortcuts.browsing.navigation.title"
- }, {
- "shortcuts": ["↓", "↑", "←", "→"],
- "text": "shortcuts.browsing.navigation.pan",
- "separator": ","
- }, {
- "modifiers": ["⌘"],
- "shortcuts": ["↓", "↑", "←", "→"],
- "text": "shortcuts.browsing.navigation.pan_more",
- "separator": ","
- }, {
- "shortcuts": ["+", "-"],
- "text": "shortcuts.browsing.navigation.zoom",
- "separator": ","
- }, {
- "modifiers": ["⌘"],
- "shortcuts": ["+", "-"],
- "text": "shortcuts.browsing.navigation.zoom_more",
- "separator": ","
- },
-
- {
- "section": "help",
- "text": "shortcuts.browsing.help.title"
- }, {
- "shortcuts": ["help.key"],
- "text": "shortcuts.browsing.help.help"
- }, {
- "shortcuts": ["shortcuts.toggle.key"],
- "text": "shortcuts.browsing.help.keyboard"
- },
-
- {
- "section": "display_options",
- "text": "shortcuts.browsing.display_options.title"
- }, {
- "shortcuts": ["background.key"],
- "text": "shortcuts.browsing.display_options.background"
- }, {
- "modifiers": ["⌘"],
- "shortcuts": ["background.key"],
- "text": "shortcuts.browsing.display_options.background_switch"
- }, {
- "shortcuts": ["map_data.key"],
- "text": "shortcuts.browsing.display_options.map_data"
- }, {
- "modifiers": ["⌃", "⌘"],
- "shortcuts": ["F", "F11"],
- "text": "shortcuts.browsing.display_options.fullscreen"
- }, {
- "shortcuts": ["area_fill.wireframe.key"],
- "text": "shortcuts.browsing.display_options.wireframe"
- }, {
- "shortcuts": ["background.minimap.key"],
- "text": "shortcuts.browsing.display_options.minimap"
- }
- ]
- }, {
- "rows": [
- {
- "section": "selecting",
- "text": "shortcuts.browsing.selecting.title"
- }, {
- "shortcuts": ["Left-click"],
- "text": "shortcuts.browsing.selecting.select_one"
- }, {
- "modifiers": ["⇧"],
- "shortcuts": ["Left-click"],
- "text": "shortcuts.browsing.selecting.select_multi"
- }, {
- "modifiers": ["⇧"],
- "shortcuts": ["Left-click"],
- "gesture": "shortcuts.gesture.drag",
- "text": "shortcuts.browsing.selecting.lasso"
- }, {
- "modifiers": ["⌘"],
- "shortcuts": ["F"],
- "text": "shortcuts.browsing.selecting.search"
- },
-
- {
- "section": "with_selected",
- "text": "shortcuts.browsing.with_selected.title"
- }, {
- "shortcuts": ["Right-click", "shortcuts.key.space"],
- "text": "shortcuts.browsing.with_selected.edit_menu"
- }, {
- "shortcuts": [],
- "text": ""
- },
-
- {
- "section": "vertex_selected",
- "text": "shortcuts.browsing.vertex_selected.title"
- }, {
- "shortcuts": ["[", "↖"],
- "text": "shortcuts.browsing.vertex_selected.previous"
- }, {
- "shortcuts": ["]", "↘"],
- "text": "shortcuts.browsing.vertex_selected.next"
- }, {
- "shortcuts": ["{", "⇞"],
- "text": "shortcuts.browsing.vertex_selected.first"
- }, {
- "shortcuts": ["}", "⇟"],
- "text": "shortcuts.browsing.vertex_selected.last"
- }, {
- "shortcuts": ["\\", "shortcuts.key.pause"],
- "text": "shortcuts.browsing.vertex_selected.change_parent"
- }
-
- ]
- }
- ]
- }, {
- "tab": "editing",
- "text": "shortcuts.editing.title",
- "columns" : [
+ "section": "navigation",
+ "text": "shortcuts.browsing.navigation.title"
+ },
{
- "rows": [
- {
- "section": "drawing",
- "text": "shortcuts.editing.drawing.title"
- }, {
- "shortcuts": ["1"],
- "text": "shortcuts.editing.drawing.add_point"
- }, {
- "shortcuts": ["2"],
- "text": "shortcuts.editing.drawing.add_line"
- }, {
- "shortcuts": ["3"],
- "text": "shortcuts.editing.drawing.add_area"
- }, {
- "shortcuts": ["Left-click", "shortcuts.key.space"],
- "text": "shortcuts.editing.drawing.place_point"
- }, {
- "shortcuts": ["⌥"],
- "text": "shortcuts.editing.drawing.disable_snap"
- }, {
- "shortcuts": ["↵", "⎋"],
- "text": "shortcuts.editing.drawing.stop_line"
- },
-
- {
- "section": "commands",
- "text": "shortcuts.editing.commands.title"
- }, {
- "modifiers": ["⌘"],
- "shortcuts": ["C"],
- "text": "shortcuts.editing.commands.copy"
- }, {
- "modifiers": ["⌘"],
- "shortcuts": ["V"],
- "text": "shortcuts.editing.commands.paste"
- }, {
- "modifiers": ["⌘"],
- "shortcuts": ["Z"],
- "text": "shortcuts.editing.commands.undo"
- }, {
- "modifiers": ["⌘", "⇧"],
- "shortcuts": ["Z"],
- "text": "shortcuts.editing.commands.redo"
- }, {
- "modifiers": ["⌘"],
- "shortcuts": ["S"],
- "text": "shortcuts.editing.commands.save"
- }
- ]
- }, {
- "rows": [
- {
- "section": "operations",
- "text": "shortcuts.editing.operations.title"
- }, {
- "shortcuts": ["operations.continue.key"],
- "text": "shortcuts.editing.operations.continue_line"
- }, {
- "shortcuts": ["operations.merge.key"],
- "text": "shortcuts.editing.operations.merge"
- }, {
- "shortcuts": ["operations.disconnect.key"],
- "text": "shortcuts.editing.operations.disconnect"
- }, {
- "shortcuts": ["operations.split.key"],
- "text": "shortcuts.editing.operations.split"
- }, {
- "shortcuts": ["operations.reverse.key"],
- "text": "shortcuts.editing.operations.reverse"
- }, {
- "shortcuts": ["operations.move.key"],
- "text": "shortcuts.editing.operations.move"
- }, {
- "shortcuts": ["operations.rotate.key"],
- "text": "shortcuts.editing.operations.rotate"
- }, {
- "shortcuts": ["operations.orthogonalize.key"],
- "text": "shortcuts.editing.operations.orthogonalize"
- }, {
- "shortcuts": ["operations.circularize.key"],
- "text": "shortcuts.editing.operations.circularize"
- }, {
- "shortcuts": ["operations.reflect.key.long"],
- "text": "shortcuts.editing.operations.reflect_long"
- }, {
- "shortcuts": ["operations.reflect.key.short"],
- "text": "shortcuts.editing.operations.reflect_short"
- }, {
- "modifiers": ["⌘"],
- "shortcuts": ["⌫"],
- "text": "shortcuts.editing.operations.delete"
- }
- ]
- }
- ]
- }, {
- "tab": "tools",
- "text": "shortcuts.tools.title",
- "columns" : [
+ "shortcuts": ["↓", "↑", "←", "→"],
+ "text": "shortcuts.browsing.navigation.pan",
+ "separator": ","
+ },
{
- "rows": [
- {
- "section": "info",
- "text": "shortcuts.tools.info.title"
- }, {
- "modifiers": ["⌘"],
- "shortcuts": ["info_panels.key"],
- "text": "shortcuts.tools.info.all"
- }, {
- "modifiers": ["⌘", "⇧"],
- "shortcuts": ["info_panels.background.key"],
- "text": "shortcuts.tools.info.background"
- }, {
- "modifiers": ["⌘", "⇧"],
- "shortcuts": ["info_panels.history.key"],
- "text": "shortcuts.tools.info.history"
- }, {
- "modifiers": ["⌘", "⇧"],
- "shortcuts": ["info_panels.location.key"],
- "text": "shortcuts.tools.info.location"
- }, {
- "modifiers": ["⌘", "⇧"],
- "shortcuts": ["info_panels.measurement.key"],
- "text": "shortcuts.tools.info.measurement"
- }
- ]
+ "modifiers": ["⌘"],
+ "shortcuts": ["↓", "↑", "←", "→"],
+ "text": "shortcuts.browsing.navigation.pan_more",
+ "separator": ","
+ },
+ {
+ "shortcuts": ["+", "-"],
+ "text": "shortcuts.browsing.navigation.zoom",
+ "separator": ","
+ },
+ {
+ "modifiers": ["⌘"],
+ "shortcuts": ["+", "-"],
+ "text": "shortcuts.browsing.navigation.zoom_more",
+ "separator": ","
+ },
+ {
+ "section": "help",
+ "text": "shortcuts.browsing.help.title"
+ },
+ {
+ "shortcuts": ["help.key"],
+ "text": "shortcuts.browsing.help.help"
+ },
+ {
+ "shortcuts": ["shortcuts.toggle.key"],
+ "text": "shortcuts.browsing.help.keyboard"
+ },
+ {
+ "section": "display_options",
+ "text": "shortcuts.browsing.display_options.title"
+ },
+ {
+ "shortcuts": ["background.key"],
+ "text": "shortcuts.browsing.display_options.background"
+ },
+ {
+ "modifiers": ["⌘"],
+ "shortcuts": ["background.key"],
+ "text": "shortcuts.browsing.display_options.background_switch"
+ },
+ {
+ "shortcuts": ["map_data.key"],
+ "text": "shortcuts.browsing.display_options.map_data"
+ },
+ {
+ "modifiers": ["⌃","⌘"],
+ "shortcuts": ["F", "F11"],
+ "text": "shortcuts.browsing.display_options.fullscreen"
+ },
+ {
+ "shortcuts": ["area_fill.wireframe.key"],
+ "text": "shortcuts.browsing.display_options.wireframe"
+ },
+ {
+ "shortcuts": ["background.minimap.key"],
+ "text": "shortcuts.browsing.display_options.minimap"
}
- ]
+ ]
+ },
+ {
+ "rows": [
+ {
+ "section": "selecting",
+ "text": "shortcuts.browsing.selecting.title"
+ },
+ {
+ "shortcuts": ["Left-click"],
+ "text": "shortcuts.browsing.selecting.select_one"
+ },
+ {
+ "modifiers": ["⇧"],
+ "shortcuts": ["Left-click"],
+ "text": "shortcuts.browsing.selecting.select_multi"
+ },
+ {
+ "modifiers": ["⇧"],
+ "shortcuts": ["Left-click"],
+ "gesture": "shortcuts.gesture.drag",
+ "text": "shortcuts.browsing.selecting.lasso"
+ },
+ {
+ "modifiers": ["⌘"],
+ "shortcuts": ["F"],
+ "text": "shortcuts.browsing.selecting.search"
+ },
+ {
+ "section": "with_selected",
+ "text": "shortcuts.browsing.with_selected.title"
+ },
+ {
+ "shortcuts": ["Right-click", "shortcuts.key.space"],
+ "text": "shortcuts.browsing.with_selected.edit_menu"
+ },
+ {
+ "shortcuts": [],
+ "text": ""
+ },
+ {
+ "section": "vertex_selected",
+ "text": "shortcuts.browsing.vertex_selected.title"
+ },
+ {
+ "shortcuts": ["[", "↖"],
+ "text": "shortcuts.browsing.vertex_selected.previous"
+ },
+ {
+ "shortcuts": ["]","↘"
+ ],
+ "text": "shortcuts.browsing.vertex_selected.next"
+ },
+ {
+ "shortcuts": ["{","⇞"
+ ],
+ "text": "shortcuts.browsing.vertex_selected.first"
+ },
+ {
+ "shortcuts": ["}","⇟"
+ ],
+ "text": "shortcuts.browsing.vertex_selected.last"
+ },
+ {
+ "shortcuts": ["\\","shortcuts.key.pause"
+ ],
+ "text": "shortcuts.browsing.vertex_selected.change_parent"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "tab": "editing",
+ "text": "shortcuts.editing.title",
+ "columns": [
+ {
+ "rows": [
+ {
+ "section": "drawing",
+ "text": "shortcuts.editing.drawing.title"
+ },
+ {
+ "shortcuts": ["1"
+ ],
+ "text": "shortcuts.editing.drawing.add_point"
+ },
+ {
+ "shortcuts": ["2"
+ ],
+ "text": "shortcuts.editing.drawing.add_line"
+ },
+ {
+ "shortcuts": ["3"
+ ],
+ "text": "shortcuts.editing.drawing.add_area"
+ },
+ {
+ "shortcuts": ["Left-click","shortcuts.key.space"
+ ],
+ "text": "shortcuts.editing.drawing.place_point"
+ },
+ {
+ "shortcuts": ["⌥"
+ ],
+ "text": "shortcuts.editing.drawing.disable_snap"
+ },
+ {
+ "shortcuts": ["↵","⎋"
+ ],
+ "text": "shortcuts.editing.drawing.stop_line"
+ },
+ {
+ "section": "commands",
+ "text": "shortcuts.editing.commands.title"
+ },
+ {
+ "modifiers": ["⌘"],
+ "shortcuts": ["C"
+ ],
+ "text": "shortcuts.editing.commands.copy"
+ },
+ {
+ "modifiers": ["⌘"],
+ "shortcuts": ["V"
+ ],
+ "text": "shortcuts.editing.commands.paste"
+ },
+ {
+ "modifiers": ["⌘"],
+ "shortcuts": ["Z"
+ ],
+ "text": "shortcuts.editing.commands.undo"
+ },
+ {
+ "modifiers": ["⌘","⇧"],
+ "shortcuts": ["Z"
+ ],
+ "text": "shortcuts.editing.commands.redo"
+ },
+ {
+ "modifiers": ["⌘"],
+ "shortcuts": ["S"
+ ],
+ "text": "shortcuts.editing.commands.save"
+ }
+ ]
+ },
+ {
+ "rows": [
+ {
+ "section": "operations",
+ "text": "shortcuts.editing.operations.title"
+ },
+ {
+ "shortcuts": ["operations.continue.key"
+ ],
+ "text": "shortcuts.editing.operations.continue_line"
+ },
+ {
+ "shortcuts": ["operations.merge.key"
+ ],
+ "text": "shortcuts.editing.operations.merge"
+ },
+ {
+ "shortcuts": ["operations.disconnect.key"
+ ],
+ "text": "shortcuts.editing.operations.disconnect"
+ },
+ {
+ "shortcuts": ["operations.split.key"
+ ],
+ "text": "shortcuts.editing.operations.split"
+ },
+ {
+ "shortcuts": ["operations.reverse.key"
+ ],
+ "text": "shortcuts.editing.operations.reverse"
+ },
+ {
+ "shortcuts": ["operations.move.key"
+ ],
+ "text": "shortcuts.editing.operations.move"
+ },
+ {
+ "shortcuts": ["operations.rotate.key"
+ ],
+ "text": "shortcuts.editing.operations.rotate"
+ },
+ {
+ "shortcuts": ["operations.orthogonalize.key"
+ ],
+ "text": "shortcuts.editing.operations.orthogonalize"
+ },
+ {
+ "shortcuts": ["operations.circularize.key"
+ ],
+ "text": "shortcuts.editing.operations.circularize"
+ },
+ {
+ "shortcuts": ["operations.reflect.key.long"
+ ],
+ "text": "shortcuts.editing.operations.reflect_long"
+ },
+ {
+ "shortcuts": ["operations.reflect.key.short"
+ ],
+ "text": "shortcuts.editing.operations.reflect_short"
+ },
+ {
+ "modifiers": ["⌘"],
+ "shortcuts": ["⌫"
+ ],
+ "text": "shortcuts.editing.operations.delete"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "tab": "tools",
+ "text": "shortcuts.tools.title",
+ "columns": [
+ {
+ "rows": [
+ {
+ "section": "info",
+ "text": "shortcuts.tools.info.title"
+ },
+ {
+ "modifiers": ["⌘"],
+ "shortcuts": ["info_panels.key"
+ ],
+ "text": "shortcuts.tools.info.all"
+ },
+ {
+ "modifiers": ["⌘","⇧"],
+ "shortcuts": ["info_panels.background.key"
+ ],
+ "text": "shortcuts.tools.info.background"
+ },
+ {
+ "modifiers": ["⌘","⇧"],
+ "shortcuts": ["info_panels.history.key"
+ ],
+ "text": "shortcuts.tools.info.history"
+ },
+ {
+ "modifiers": ["⌘","⇧"],
+ "shortcuts": ["info_panels.location.key"
+ ],
+ "text": "shortcuts.tools.info.location"
+ },
+ {
+ "modifiers": ["⌘","⇧"],
+ "shortcuts": ["info_panels.measurement.key"
+ ],
+ "text": "shortcuts.tools.info.measurement"
+ }
+ ]
+ }
+ ]
}
-]}
+ ]
+}
diff --git a/data/taginfo.json b/data/taginfo.json
index 881305219..2f6abe472 100644
--- a/data/taginfo.json
+++ b/data/taginfo.json
@@ -1,11041 +1,7103 @@
{
- "data_format": 1,
- "data_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/data/taginfo.json",
- "project": {
- "name": "iD Editor",
- "description": "Online editor for OSM data.",
- "project_url": "https://github.com/openstreetmap/iD",
- "doc_url": "https://github.com/openstreetmap/iD/blob/master/data/presets/README.md",
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/dist/img/logo.png",
- "keywords": [
- "editor"
- ]
+ "data_format": 1,
+ "data_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/data/taginfo.json",
+ "project": {
+ "name": "iD Editor",
+ "description": "Online editor for OSM data.",
+ "project_url": "https://github.com/openstreetmap/iD",
+ "doc_url": "https://github.com/openstreetmap/iD/blob/master/data/presets/README.md",
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/dist/img/logo.png",
+ "keywords": ["editor"]
+ },
+ "tags": [
+ {
+ "key": "aerialway",
+ "description": "Aerialway, Type",
+ "object_types": ["node", "way"]
},
- "tags": [
- {
- "key": "aerialway",
- "description": "Aerialway, Type",
- "object_types": [
- "node",
- "way"
- ]
- },
- {
- "key": "aeroway",
- "description": "Aeroway, Type",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/airport-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "description": "Amenity, Type",
- "object_types": [
- "node",
- "area"
- ]
- },
- {
- "key": "junction",
- "value": "circular",
- "description": "Traffic Circle",
- "object_types": [
- "node",
- "way"
- ]
- },
- {
- "key": "highway",
- "description": "Highway, Type",
- "object_types": [
- "node",
- "way",
- "area"
- ]
- },
- {
- "key": "place",
- "description": "Place, Type",
- "object_types": [
- "node",
- "area"
- ]
- },
- {
- "key": "power",
- "description": "Power, Type",
- "object_types": [
- "node",
- "way",
- "area"
- ]
- },
- {
- "key": "railway",
- "description": "Railway, Type",
- "object_types": [
- "node",
- "way",
- "area"
- ]
- },
- {
- "key": "junction",
- "value": "roundabout",
- "description": "Roundabout",
- "object_types": [
- "node",
- "way"
- ]
- },
- {
- "key": "waterway",
- "description": "Waterway, Type",
- "object_types": [
- "node",
- "way",
- "area"
- ]
- },
- {
- "key": "addr:*",
- "description": "Address",
- "object_types": [
- "node",
- "area"
- ]
- },
- {
- "key": "advertising",
- "value": "billboard",
- "description": "Billboard",
- "object_types": [
- "node",
- "way"
- ]
- },
- {
- "key": "advertising",
- "value": "column",
- "description": "Advertising Column",
- "object_types": [
- "node",
- "area"
- ]
- },
- {
- "key": "aerialway",
- "value": "station",
- "description": "Aerialway Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/aerialway-15.svg?sanitize=true"
- },
- {
- "key": "aerialway",
- "value": "cable_car",
- "description": "Cable Car",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "aerialway",
- "value": "chair_lift",
- "description": "Chair Lift",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "aerialway",
- "value": "drag_lift",
- "description": "Drag Lift",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "aerialway",
- "value": "gondola",
- "description": "Gondola",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "aerialway",
- "value": "goods",
- "description": "Goods Aerialway",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "aerialway",
- "value": "magic_carpet",
- "description": "Magic Carpet Lift",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "aerialway",
- "value": "mixed_lift",
- "description": "Mixed Lift",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "aerialway",
- "value": "platter",
- "description": "Platter Lift",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "aerialway",
- "value": "pylon",
- "description": "Aerialway Pylon",
- "object_types": [
- "node"
- ]
- },
- {
- "key": "aerialway",
- "value": "rope_tow",
- "description": "Rope Tow Lift",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "aerialway",
- "value": "t-bar",
- "description": "T-bar Lift",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "aeroway",
- "value": "aerodrome",
- "description": "Airport",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/airport-15.svg?sanitize=true"
- },
- {
- "key": "aeroway",
- "value": "apron",
- "description": "Apron",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/airport-15.svg?sanitize=true"
- },
- {
- "key": "aeroway",
- "value": "gate",
- "description": "Airport Gate",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/airport-15.svg?sanitize=true"
- },
- {
- "key": "aeroway",
- "value": "hangar",
- "description": "Hangar",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "aeroway",
- "value": "helipad",
- "description": "Helipad",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/heliport-15.svg?sanitize=true"
- },
- {
- "key": "aeroway",
- "value": "runway",
- "description": "Runway",
- "object_types": [
- "way",
- "area"
- ]
- },
- {
- "key": "aeroway",
- "value": "taxiway",
- "description": "Taxiway",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "aeroway",
- "value": "terminal",
- "description": "Airport Terminal",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/airport-15.svg?sanitize=true"
- },
- {
- "key": "allotments",
- "value": "plot",
- "description": "Community Garden Plot",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "amenity",
- "value": "bus_station",
- "description": "Bus Station / Terminal",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bus-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "coworking_space",
- "description": "Coworking Space",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/commercial-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "ferry_terminal",
- "description": "Ferry Station / Terminal",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/ferry-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "nursing_home",
- "description": "Nursing Home",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/wheelchair-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "register_office",
- "description": "Register Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "scrapyard",
- "description": "Scrap Yard",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "swimming_pool",
- "description": "Swimming Pool",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/swimming-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "animal_boarding",
- "description": "Animal Boarding Facility",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/veterinary-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "animal_breeding",
- "description": "Animal Breeding Facility",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/veterinary-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "animal_shelter",
- "description": "Animal Shelter",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/veterinary-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "arts_centre",
- "description": "Arts Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/theatre-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "atm",
- "description": "ATM",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bank-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "bank",
- "description": "Bank",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bank-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "bar",
- "description": "Bar",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bar-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "bbq",
- "description": "Barbecue/Grill",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bbq-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "bench",
- "description": "Bench",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/bench.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "bicycle_parking",
- "description": "Bicycle Parking",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bicycle-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "bicycle_rental",
- "description": "Bicycle Rental",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bicycle-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "bicycle_repair_station",
- "description": "Bicycle Repair Tool Stand",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bicycle-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "biergarten",
- "description": "Beer Garden",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/beer-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "boat_rental",
- "description": "Boat Rental",
- "object_types": [
- "node",
- "area"
- ]
- },
- {
- "key": "amenity",
- "value": "bureau_de_change",
- "description": "Currency Exchange",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bank-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "cafe",
- "description": "Cafe",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cafe-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "car_pooling",
- "description": "Car Pooling",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "car_rental",
- "description": "Car Rental",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "car_sharing",
- "description": "Car Sharing",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "car_wash",
- "description": "Car Wash",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "casino",
- "description": "Casino",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/dice.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "charging_station",
- "description": "Charging Station",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "childcare",
- "description": "Nursery/Childcare",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/school-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "cinema",
- "description": "Cinema",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cinema-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "clinic",
- "description": "Clinic",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/doctor-15.svg?sanitize=true"
- },
- {
- "key": "healthcare:speciality",
- "value": "abortion",
- "description": "Abortion Clinic",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
- },
- {
- "key": "healthcare:speciality",
- "value": "fertility",
- "description": "Fertility Clinic",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "clock",
- "description": "Clock",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/clock.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "college",
- "description": "College Grounds",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/college-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "community_centre",
- "description": "Community Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "compressed_air",
- "description": "Compressed Air",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "courthouse",
- "description": "Courthouse",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "crematorium",
- "description": "Crematorium",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cemetery-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "dentist",
- "description": "Dentist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/dentist-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "doctors",
- "description": "Doctor",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/doctor-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "dojo",
- "description": "Dojo / Martial Arts Academy",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "drinking_water",
- "description": "Drinking Water",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/drinking-water-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "driving_school",
- "description": "Driving School",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "embassy",
- "description": "Embassy",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/embassy-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "fast_food",
- "description": "Fast Food",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fast-food-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "fire_station",
- "description": "Fire Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fire-station-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "food_court",
- "description": "Food Court",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "fountain",
- "description": "Fountain",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/fountain.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "fuel",
- "description": "Gas Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fuel-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "grave_yard",
- "description": "Graveyard",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cemetery-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "grit_bin",
- "description": "Grit Bin",
- "object_types": [
- "node"
- ]
- },
- {
- "key": "amenity",
- "value": "hospital",
- "description": "Hospital Grounds",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "hunting_stand",
- "description": "Hunting Stand",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/binoculars.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "ice_cream",
- "description": "Ice Cream Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/ice-cream-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "internet_cafe",
- "description": "Internet Cafe",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/antenna.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "kindergarten",
- "description": "Preschool/Kindergarten Grounds",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/school-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "library",
- "description": "Library",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/library-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "love_hotel",
- "description": "Love Hotel",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/heart-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "marketplace",
- "description": "Marketplace",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "monastery",
- "description": "Monastery Grounds",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/place-of-worship-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "motorcycle_parking",
- "description": "Motorcycle Parking",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-motorcycle.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "music_school",
- "description": "Music School",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/school-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "nightclub",
- "description": "Nightclub",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bar-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "parking_entrance",
- "description": "Parking Garage Entrance/Exit",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/entrance-alt1-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "parking_space",
- "description": "Parking Space",
- "object_types": [
- "node",
- "area"
- ]
- },
- {
- "key": "amenity",
- "value": "parking",
- "description": "Car Parking",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/parking-15.svg?sanitize=true"
- },
- {
- "key": "shelter_type",
- "value": "pavilion",
- "description": "Pavilion",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shelter-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "pharmacy",
- "description": "Pharmacy",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pharmacy-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "place_of_worship",
- "description": "Place of Worship",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/place-of-worship-15.svg?sanitize=true"
- },
- {
- "key": "religion",
- "value": "buddhist",
- "description": "Buddhist Temple",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/buddhism-15.svg?sanitize=true"
- },
- {
- "key": "religion",
- "value": "christian",
- "description": "Church",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/religious-christian-15.svg?sanitize=true"
- },
- {
- "key": "religion",
- "value": "hindu",
- "description": "Hindu Temple",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/hinduism.svg?sanitize=true"
- },
- {
- "key": "religion",
- "value": "jewish",
- "description": "Synagogue",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/religious-jewish-15.svg?sanitize=true"
- },
- {
- "key": "religion",
- "value": "muslim",
- "description": "Mosque",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/religious-muslim-15.svg?sanitize=true"
- },
- {
- "key": "religion",
- "value": "shinto",
- "description": "Shinto Shrine",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/shinto.svg?sanitize=true"
- },
- {
- "key": "religion",
- "value": "sikh",
- "description": "Sikh Temple",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/sikhism.svg?sanitize=true"
- },
- {
- "key": "religion",
- "value": "taoist",
- "description": "Taoist Temple",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/taoism.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "planetarium",
- "description": "Planetarium",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/museum-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "police",
- "description": "Police",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/police-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "post_box",
- "description": "Mailbox",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/post-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "post_office",
- "description": "Post Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/post-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "prison",
- "description": "Prison Grounds",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/prison-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "pub",
- "description": "Pub",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/beer-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "public_bath",
- "description": "Public Bath",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "public_bookcase",
- "description": "Public Bookcase",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/library-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "ranger_station",
- "description": "Ranger Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/ranger-station-15.svg?sanitize=true"
- },
- {
- "key": "recycling_type",
- "value": "centre",
- "description": "Recycling Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/recycling-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "recycling",
- "description": "Recycling Container",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/recycling-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "restaurant",
- "description": "Restaurant",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "sanitary_dump_station",
- "description": "RV Toilet Disposal",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/storage_tank.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "school",
- "description": "School Grounds",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/school-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "shelter",
- "description": "Shelter",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shelter-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "shower",
- "description": "Shower",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/shower.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "smoking_area",
- "description": "Smoking Area",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-smoking.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "social_facility",
- "description": "Social Facility",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/social_facility.svg?sanitize=true"
- },
- {
- "key": "social_facility",
- "value": "food_bank",
- "description": "Food Bank",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/social_facility.svg?sanitize=true"
- },
- {
- "key": "social_facility:for",
- "value": "senior",
- "description": "Elderly Group Home, Nursing Home",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/wheelchair-15.svg?sanitize=true"
- },
- {
- "key": "social_facility:for",
- "value": "homeless",
- "description": "Homeless Shelter",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/social_facility.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "studio",
- "description": "Studio",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/karaoke-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "taxi",
- "description": "Taxi Stand",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-taxi.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "telephone",
- "description": "Telephone",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/telephone-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "theatre",
- "description": "Theater",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/theatre-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "toilets",
- "description": "Toilets",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/toilet-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "townhall",
- "description": "Town Hall",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "university",
- "description": "University Grounds",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/college-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "vending_machine",
- "description": "Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
- },
- {
- "key": "vending",
- "value": "news_papers",
- "description": "Newspaper Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
- },
- {
- "key": "vending",
- "value": "cigarettes",
- "description": "Cigarette Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
- },
- {
- "key": "vending",
- "value": "coffee",
- "description": "Coffee Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
- },
- {
- "key": "vending",
- "value": "condoms",
- "description": "Condom Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
- },
- {
- "key": "vending",
- "value": "drinks",
- "description": "Drink Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
- },
- {
- "key": "vending",
- "value": "electronics",
- "description": "Electronics Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
- },
- {
- "key": "vending",
- "value": "elongated_coin",
- "description": "Flat Coin Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
- },
- {
- "key": "vending",
- "value": "excrement_bags",
- "description": "Excrement Bag Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
- },
- {
- "key": "vending",
- "value": "feminine_hygiene",
- "description": "Feminine Hygiene Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
- },
- {
- "key": "vending",
- "value": "food",
- "description": "Food Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
- },
- {
- "key": "vending",
- "value": "fuel",
- "description": "Gas Pump",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fuel-15.svg?sanitize=true"
- },
- {
- "key": "vending",
- "value": "ice_cream",
- "description": "Ice Cream Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
- },
- {
- "key": "vending",
- "value": "newspapers",
- "description": "Newspaper Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
- },
- {
- "key": "vending",
- "value": "parcel_pickup;parcel_mail_in",
- "description": "Parcel Pickup/Dropoff Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
- },
- {
- "key": "vending",
- "value": "parking_tickets",
- "description": "Parking Ticket Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
- },
- {
- "key": "vending",
- "value": "public_transport_tickets",
- "description": "Transit Ticket Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
- },
- {
- "key": "vending",
- "value": "stamps",
- "description": "Postage Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
- },
- {
- "key": "vending",
- "value": "sweets",
- "description": "Snack Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "veterinary",
- "description": "Veterinary",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/veterinary-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "waste_basket",
- "description": "Waste Basket",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/waste-basket-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "waste_disposal",
- "description": "Garbage Dumpster",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/waste-basket-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "waste_transfer_station",
- "description": "Waste Transfer Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/waste-basket-15.svg?sanitize=true"
- },
- {
- "key": "waste",
- "value": "dog_excrement",
- "description": "Dog Excrement Bin",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/waste-basket-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "water_point",
- "description": "RV Drinking Water",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/drinking-water-15.svg?sanitize=true"
- },
- {
- "key": "amenity",
- "value": "watering_place",
- "description": "Animal Watering Place",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/drinking-water-15.svg?sanitize=true"
- },
- {
- "key": "area",
- "value": "yes",
- "description": "Area, Pedestrian Area",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "area:highway",
- "description": "Road Surface, Type",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "attraction",
- "value": "amusement_ride",
- "description": "Amusement Ride",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/amusement-park-15.svg?sanitize=true"
- },
- {
- "key": "attraction",
- "value": "animal",
- "description": "Animal",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/zoo-15.svg?sanitize=true"
- },
- {
- "key": "attraction",
- "value": "big_wheel",
- "description": "Big Wheel",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/amusement-park-15.svg?sanitize=true"
- },
- {
- "key": "attraction",
- "value": "bumper_car",
- "description": "Bumper Car",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
- },
- {
- "key": "attraction",
- "value": "bungee_jumping",
- "description": "Bungee Jumping",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "attraction",
- "value": "carousel",
- "description": "Carousel",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/horse-riding-15.svg?sanitize=true"
- },
- {
- "key": "attraction",
- "value": "dark_ride",
- "description": "Dark Ride",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/rail-metro-15.svg?sanitize=true"
- },
- {
- "key": "attraction",
- "value": "drop_tower",
- "description": "Drop Tower",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tower.svg?sanitize=true"
- },
- {
- "key": "attraction",
- "value": "maze",
- "description": "Maze",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/amusement-park-15.svg?sanitize=true"
- },
- {
- "key": "attraction",
- "value": "pirate_ship",
- "description": "Pirate Ship",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/danger-15.svg?sanitize=true"
- },
- {
- "key": "attraction",
- "value": "river_rafting",
- "description": "River Rafting",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/ferry-15.svg?sanitize=true"
- },
- {
- "key": "attraction",
- "value": "roller_coaster",
- "description": "Roller Coaster",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/amusement-park-15.svg?sanitize=true"
- },
- {
- "key": "attraction",
- "value": "train",
- "description": "Tourist Train",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/rail-15.svg?sanitize=true"
- },
- {
- "key": "attraction",
- "value": "water_slide",
- "description": "Water Slide",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/swimming-15.svg?sanitize=true"
- },
- {
- "key": "barrier",
- "description": "Barrier, Type",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"
- },
- {
- "key": "barrier",
- "value": "entrance",
- "description": "Entrance",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/entrance-alt1-15.svg?sanitize=true"
- },
- {
- "key": "barrier",
- "value": "block",
- "description": "Block",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"
- },
- {
- "key": "barrier",
- "value": "bollard",
- "description": "Bollard",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"
- },
- {
- "key": "barrier",
- "value": "border_control",
- "description": "Border Control",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"
- },
- {
- "key": "barrier",
- "value": "cattle_grid",
- "description": "Cattle Grid",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/barrier-15.svg?sanitize=true"
- },
- {
- "key": "barrier",
- "value": "city_wall",
- "description": "City Wall",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/barrier-15.svg?sanitize=true"
- },
- {
- "key": "barrier",
- "value": "cycle_barrier",
- "description": "Cycle Barrier",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"
- },
- {
- "key": "barrier",
- "value": "ditch",
- "description": "Trench",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"
- },
- {
- "key": "barrier",
- "value": "fence",
- "description": "Fence",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fence-15.svg?sanitize=true"
- },
- {
- "key": "barrier",
- "value": "gate",
- "description": "Gate",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/barrier-15.svg?sanitize=true"
- },
- {
- "key": "barrier",
- "value": "hedge",
- "description": "Hedge",
- "object_types": [
- "way",
- "area"
- ]
- },
- {
- "key": "barrier",
- "value": "kerb",
- "description": "Kerb",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/wheelchair-15.svg?sanitize=true"
- },
- {
- "key": "barrier",
- "value": "kissing_gate",
- "description": "Kissing Gate",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/barrier-15.svg?sanitize=true"
- },
- {
- "key": "barrier",
- "value": "lift_gate",
- "description": "Lift Gate",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"
- },
- {
- "key": "barrier",
- "value": "retaining_wall",
- "description": "Retaining Wall",
- "object_types": [
- "way",
- "area"
- ]
- },
- {
- "key": "barrier",
- "value": "stile",
- "description": "Stile",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"
- },
- {
- "key": "barrier",
- "value": "toll_booth",
- "description": "Toll Booth",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"
- },
- {
- "key": "barrier",
- "value": "wall",
- "description": "Wall",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/barrier-15.svg?sanitize=true"
- },
- {
- "key": "boundary",
- "value": "administrative",
- "description": "Administrative Boundary",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "building",
- "description": "Building",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/home-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "bunker",
- "description": "Bunker",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "building",
- "value": "entrance",
- "description": "Entrance/Exit",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/entrance-alt1-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "train_station",
- "description": "Train Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "apartments",
- "description": "Apartments",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "barn",
- "description": "Barn",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/farm-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "boathouse",
- "description": "Boathouse",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/harbor-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "bungalow",
- "description": "Bungalow",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/home-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "cabin",
- "description": "Cabin",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/home-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "cathedral",
- "description": "Cathedral Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/place-of-worship-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "chapel",
- "description": "Chapel Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/place-of-worship-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "church",
- "description": "Church Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/place-of-worship-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "civic",
- "description": "Civic Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "college",
- "description": "College Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "commercial",
- "description": "Commercial Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "construction",
- "description": "Building Under Construction",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "detached",
- "description": "Detached House",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/home-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "dormitory",
- "description": "Dormitory",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "farm_auxiliary",
- "description": "Farm Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/farm-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "farm",
- "description": "Farm House",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/farm-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "garage",
- "description": "Garage",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-warehouse.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "garages",
- "description": "Garages",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-warehouse.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "grandstand",
- "description": "Grandstand",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "greenhouse",
- "description": "Greenhouse",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/garden-center-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "hospital",
- "description": "Hospital Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "hotel",
- "description": "Hotel Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "house",
- "description": "House",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/home-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "hut",
- "description": "Hut",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "building",
- "value": "industrial",
- "description": "Industrial Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/industry-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "kindergarten",
- "description": "Preschool/Kindergarten Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "mosque",
- "description": "Mosque Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/place-of-worship-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "public",
- "description": "Public Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "residential",
- "description": "Residential Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/residential-community-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "retail",
- "description": "Retail Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/commercial-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "roof",
- "description": "Roof",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shelter-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "ruins",
- "description": "Building Ruins",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/ruins.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "school",
- "description": "School Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "semidetached_house",
- "description": "Semi-Detached House",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/home-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "service",
- "description": "Service Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/home-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "shed",
- "description": "Shed",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/home-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "stable",
- "description": "Stable",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/horse-riding-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "stadium",
- "description": "Stadium Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/stadium-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "static_caravan",
- "description": "Static Mobile Home",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/home-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "temple",
- "description": "Temple Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/place-of-worship-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "terrace",
- "description": "Row Houses",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "transportation",
- "description": "Transportation Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "university",
- "description": "University Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
- },
- {
- "key": "building",
- "value": "warehouse",
- "description": "Warehouse",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/warehouse-15.svg?sanitize=true"
- },
- {
- "key": "camp_site",
- "value": "camp_pitch",
- "description": "Camp Pitch",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/campsite-15.svg?sanitize=true"
- },
- {
- "key": "club",
- "description": "Club, Type",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/heart-15.svg?sanitize=true"
- },
- {
- "key": "craft",
- "description": "Craft, Type",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "jeweler",
- "description": "Jeweler",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/marker-stroked-15.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "locksmith",
- "description": "Locksmith",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/marker-stroked-15.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "optician",
- "description": "Optician",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/marker-stroked-15.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "tailor",
- "description": "Tailor",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/clothing-store-15.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "basket_maker",
- "description": "Basket Maker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/art-gallery-15.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "beekeeper",
- "description": "Beekeeper",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/farm-15.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "blacksmith",
- "description": "Blacksmith",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "boatbuilder",
- "description": "Boat Builder",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "bookbinder",
- "description": "Bookbinder",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/library-15.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "brewery",
- "description": "Brewery",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/storage_tank.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "carpenter",
- "description": "Carpenter",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "carpet_layer",
- "description": "Carpet Layer",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "caterer",
- "description": "Caterer",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-15.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "chimney_sweeper",
- "description": "Chimney Sweeper",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/chimney.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "clockmaker",
- "description": "Clockmaker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/clock.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "confectionery",
- "description": "Candy Maker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bakery-15.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "distillery",
- "description": "Distillery",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/storage_tank.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "dressmaker",
- "description": "Dressmaker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/clothing-store-15.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "electrician",
- "description": "Electrician",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/power.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "electronics_repair",
- "description": "Electronics Repair Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "gardener",
- "description": "Gardener",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/garden-center-15.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "glaziery",
- "description": "Glaziery",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/window.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "handicraft",
- "description": "Handicraft",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/art-gallery-15.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "hvac",
- "description": "HVAC",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "insulation",
- "description": "Insulator",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "key_cutter",
- "description": "Key Cutter",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-key.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "metal_construction",
- "description": "Metal Construction",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "painter",
- "description": "Painter",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/art-gallery-15.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "photographer",
- "description": "Photographer",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/attraction-15.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "photographic_laboratory",
- "description": "Photographic Laboratory",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/attraction-15.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "plasterer",
- "description": "Plasterer",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "plumber",
- "description": "Plumber",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "pottery",
- "description": "Pottery",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/art-gallery-15.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "rigger",
- "description": "Rigger",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "roofer",
- "description": "Roofer",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "saddler",
- "description": "Saddler",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "sailmaker",
- "description": "Sailmaker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "sawmill",
- "description": "Sawmill",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/logging-15.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "scaffolder",
- "description": "Scaffolder",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "sculptor",
- "description": "Sculptor",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/art-gallery-15.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "shoemaker",
- "description": "Shoemaker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "stonemason",
- "description": "Stonemason",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "tiler",
- "description": "Tiler",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "tinsmith",
- "description": "Tinsmith",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "upholsterer",
- "description": "Upholsterer",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "watchmaker",
- "description": "Watchmaker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/clock.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "window_construction",
- "description": "Window Construction",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/window.svg?sanitize=true"
- },
- {
- "key": "craft",
- "value": "winery",
- "description": "Winery",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/alcohol-shop-15.svg?sanitize=true"
- },
- {
- "key": "embankment",
- "value": "yes",
- "description": "Embankment",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "emergency",
- "value": "designated",
- "description": "Emergency Access Designated",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "emergency",
- "value": "destination",
- "description": "Emergency Access Destination",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "emergency",
- "value": "no",
- "description": "Emergency Access No",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "emergency",
- "value": "official",
- "description": "Emergency Access Official",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "emergency",
- "value": "private",
- "description": "Emergency Access Private",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "emergency",
- "value": "yes",
- "description": "Emergency Access Yes",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "emergency",
- "value": "ambulance_station",
- "description": "Ambulance Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-ambulance.svg?sanitize=true"
- },
- {
- "key": "emergency",
- "value": "defibrillator",
- "description": "Defibrillator",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/defibrillator-15.svg?sanitize=true"
- },
- {
- "key": "emergency",
- "value": "fire_extinguisher",
- "description": "Fire Extinguisher",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-fire-extinguisher.svg?sanitize=true"
- },
- {
- "key": "emergency",
- "value": "fire_hydrant",
- "description": "Fire Hydrant",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/fire_hydrant.svg?sanitize=true"
- },
- {
- "key": "emergency",
- "value": "life_ring",
- "description": "Life Ring",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-life-ring.svg?sanitize=true"
- },
- {
- "key": "emergency",
- "value": "phone",
- "description": "Emergency Phone",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/emergency-phone-15.svg?sanitize=true"
- },
- {
- "key": "emergency",
- "value": "water_tank",
- "description": "Emergency Water Tank",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
- },
- {
- "key": "entrance",
- "description": "Entrance/Exit, Type",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/entrance-alt1-15.svg?sanitize=true"
- },
- {
- "key": "traffic_calming",
- "value": "table",
- "description": "Raised Street Crossing, Raised Pedestrian Crosswalk, Speed Table",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "footway",
- "value": "crossing",
- "description": "Street Crossing",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "crossing",
- "value": "zebra",
- "description": "Pedestrian Crosswalk",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
- },
- {
- "key": "footway",
- "value": "sidewalk",
- "description": "Sidewalk",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
- },
- {
- "key": "ford",
- "value": "yes",
- "description": "Ford",
- "object_types": [
- "node"
- ]
- },
- {
- "key": "natural",
- "value": "sand",
- "description": "Sand Trap, Sand",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "grass",
- "description": "Fairway, Rough, Tee Box, Grass",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"
- },
- {
- "key": "sport",
- "value": "golf",
- "description": "Putting Green",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"
- },
- {
- "key": "golf",
- "value": "hole",
- "description": "Golf Hole",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"
- },
- {
- "key": "natural",
- "value": "water",
- "description": "Lateral Water Hazard, Water Hazard, Water",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"
- },
- {
- "key": "golf",
- "value": "lateral_water_hazard",
- "description": "Lateral Water Hazard",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"
- },
- {
- "key": "golf",
- "value": "water_hazard",
- "description": "Water Hazard",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"
- },
- {
- "key": "healthcare",
- "description": "Healthcare Facility, Type",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
- },
- {
- "key": "healthcare",
- "value": "alternative",
- "description": "Alternative Medicine",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
- },
- {
- "key": "healthcare:speciality",
- "value": "chiropractic",
- "description": "Chiropractor",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
- },
- {
- "key": "healthcare",
- "value": "audiologist",
- "description": "Audiologist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
- },
- {
- "key": "healthcare",
- "value": "birthing_center",
- "description": "Birthing Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
- },
- {
- "key": "healthcare",
- "value": "blood_donation",
- "description": "Blood Donor Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/blood-bank-15.svg?sanitize=true"
- },
- {
- "key": "healthcare",
- "value": "hospice",
- "description": "Hospice",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
- },
- {
- "key": "healthcare",
- "value": "laboratory",
- "description": "Medical Laboratory",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
- },
- {
- "key": "healthcare",
- "value": "midwife",
- "description": "Midwife",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
- },
- {
- "key": "healthcare",
- "value": "occupational_therapist",
- "description": "Occupational Therapist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
- },
- {
- "key": "healthcare",
- "value": "optometrist",
- "description": "Optometrist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
- },
- {
- "key": "healthcare",
- "value": "physiotherapist",
- "description": "Physiotherapist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
- },
- {
- "key": "healthcare",
- "value": "podiatrist",
- "description": "Podiatrist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
- },
- {
- "key": "healthcare",
- "value": "psychotherapist",
- "description": "Psychotherapist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
- },
- {
- "key": "healthcare",
- "value": "rehabilitation",
- "description": "Rehabilitation Facility",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
- },
- {
- "key": "healthcare",
- "value": "speech_therapist",
- "description": "Speech Therapist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "bus_stop",
- "description": "Bus Stop / Platform",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bus-15.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "bridleway",
- "description": "Bridle Path",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-bridleway.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "bus_guideway",
- "description": "Bus Guideway",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-bus-guideway.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "corridor",
- "description": "Indoor Corridor",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "crossing",
- "description": "Street Crossing",
- "object_types": [
- "node"
- ]
- },
- {
- "key": "highway",
- "value": "cycleway",
- "description": "Cycle Path",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-cycleway.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "elevator",
- "description": "Elevator",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/elevator.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "footway",
- "description": "Foot Path",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "give_way",
- "description": "Yield Sign",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/yield.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "living_street",
- "description": "Living Street",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-living-street.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "mini_roundabout",
- "description": "Mini-Roundabout",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/circle-stroked-15.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "motorway_junction",
- "description": "Motorway Junction / Exit",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/junction.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "motorway_link",
- "description": "Motorway Link",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-motorway-link.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "motorway",
- "description": "Motorway",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-motorway.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "passing_place",
- "description": "Passing Place",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/circle-stroked-15.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "path",
- "description": "Path",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-path.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "pedestrian",
- "description": "Pedestrian Street",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "primary_link",
- "description": "Primary Link",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-primary-link.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "primary",
- "description": "Primary Road",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-primary.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "raceway",
- "description": "Racetrack (Motorsport)",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-unclassified.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "residential",
- "description": "Residential Road",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-residential.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "rest_area",
- "description": "Rest Area",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "road",
- "description": "Unknown Road",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-road.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "secondary_link",
- "description": "Secondary Link",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-secondary-link.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "secondary",
- "description": "Secondary Road",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-secondary.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "service",
- "description": "Service Road",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-service.svg?sanitize=true"
- },
- {
- "key": "service",
- "value": "alley",
- "description": "Alley",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-service.svg?sanitize=true"
- },
- {
- "key": "service",
- "value": "drive-through",
- "description": "Drive-Through",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-service.svg?sanitize=true"
- },
- {
- "key": "service",
- "value": "driveway",
- "description": "Driveway",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-service.svg?sanitize=true"
- },
- {
- "key": "service",
- "value": "emergency_access",
- "description": "Emergency Access",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-service.svg?sanitize=true"
- },
- {
- "key": "service",
- "value": "parking_aisle",
- "description": "Parking Aisle",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-service.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "services",
- "description": "Service Area",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "speed_camera",
- "description": "Speed Camera",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/attraction-15.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "steps",
- "description": "Steps",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-steps.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "stop",
- "description": "Stop Sign",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/stop.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "street_lamp",
- "description": "Street Lamp",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/bulb.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "tertiary_link",
- "description": "Tertiary Link",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-tertiary-link.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "tertiary",
- "description": "Tertiary Road",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-tertiary.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "track",
- "description": "Unmaintained Track Road",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-track.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "traffic_mirror",
- "description": "Traffic Mirror",
- "object_types": [
- "node"
- ]
- },
- {
- "key": "highway",
- "value": "traffic_signals",
- "description": "Traffic Signals",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/traffic_signals.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "trunk_link",
- "description": "Trunk Link",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-trunk-link.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "trunk",
- "description": "Trunk Road",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-trunk.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "turning_circle",
- "description": "Turning Circle",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/circle-stroked-15.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "turning_loop",
- "description": "Turning Loop (Island)",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/circle-15.svg?sanitize=true"
- },
- {
- "key": "highway",
- "value": "unclassified",
- "description": "Minor/Unclassified Road",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-unclassified.svg?sanitize=true"
- },
- {
- "key": "historic",
- "description": "Historic Site, Type",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/ruins.svg?sanitize=true"
- },
- {
- "key": "historic",
- "value": "archaeological_site",
- "description": "Archaeological Site",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/ruins.svg?sanitize=true"
- },
- {
- "key": "historic",
- "value": "boundary_stone",
- "description": "Boundary Stone",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/milestone.svg?sanitize=true"
- },
- {
- "key": "historic",
- "value": "castle",
- "description": "Castle",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/castle-15.svg?sanitize=true"
- },
- {
- "key": "historic",
- "value": "memorial",
- "description": "Memorial",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/monument-15.svg?sanitize=true"
- },
- {
- "key": "historic",
- "value": "monument",
- "description": "Monument",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/monument-15.svg?sanitize=true"
- },
- {
- "key": "historic",
- "value": "ruins",
- "description": "Ruins",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/ruins.svg?sanitize=true"
- },
- {
- "key": "historic",
- "value": "tomb",
- "description": "Tomb",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cemetery-15.svg?sanitize=true"
- },
- {
- "key": "historic",
- "value": "wayside_cross",
- "description": "Wayside Cross",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/religious-christian-15.svg?sanitize=true"
- },
- {
- "key": "historic",
- "value": "wayside_shrine",
- "description": "Wayside Shrine",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/landmark-15.svg?sanitize=true"
- },
- {
- "key": "junction",
- "value": "yes",
- "description": "Junction",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/junction.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "description": "Land Use, Type",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "landuse",
- "value": "farm",
- "description": "Farmland",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/farm-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "allotments",
- "description": "Community Garden",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/garden-center-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "aquaculture",
- "description": "Aquaculture",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/aquarium-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "basin",
- "description": "Basin",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "brownfield",
- "description": "Brownfield",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "landuse",
- "value": "cemetery",
- "description": "Cemetery",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cemetery-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "churchyard",
- "description": "Churchyard",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/religious-christian-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "commercial",
- "description": "Commercial Area",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "construction",
- "description": "Construction",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "farmland",
- "description": "Farmland",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/farm-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "farmyard",
- "description": "Farmyard",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/farm-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "forest",
- "description": "Forest",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/park-alt1-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "garages",
- "description": "Garage Landuse",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-warehouse.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "greenfield",
- "description": "Greenfield",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "landuse",
- "value": "greenhouse_horticulture",
- "description": "Greenhouse Horticulture",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/garden-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "harbour",
- "description": "Harbor",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/harbor-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "industrial",
- "description": "Industrial Area",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/industry-15.svg?sanitize=true"
- },
- {
- "key": "industrial",
- "value": "scrap_yard",
- "description": "Scrap Yard",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
- },
- {
- "key": "industrial",
- "value": "slaughterhouse",
- "description": "Slaughterhouse",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/slaughterhouse-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "landfill",
- "description": "Landfill",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "landuse",
- "value": "meadow",
- "description": "Meadow",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/garden-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "military",
- "description": "Military Area",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/military.svg?sanitize=true"
- },
- {
- "key": "military",
- "value": "airfield",
- "description": "Military Airfield",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/airfield-15.svg?sanitize=true"
- },
- {
- "key": "military",
- "value": "barracks",
- "description": "Barracks",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/military.svg?sanitize=true"
- },
- {
- "key": "military",
- "value": "bunker",
- "description": "Military Bunker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/military.svg?sanitize=true"
- },
- {
- "key": "military",
- "value": "checkpoint",
- "description": "Checkpoint",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/barrier-15.svg?sanitize=true"
- },
- {
- "key": "military",
- "value": "danger_area",
- "description": "Danger Area",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/danger-15.svg?sanitize=true"
- },
- {
- "key": "military",
- "value": "naval_base",
- "description": "Naval Base",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/military.svg?sanitize=true"
- },
- {
- "key": "military",
- "value": "nuclear_explosion_site",
- "description": "Nuclear Explosion Site",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/danger-15.svg?sanitize=true"
- },
- {
- "key": "military",
- "value": "obstacle_course",
- "description": "Obstacle Course",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/military.svg?sanitize=true"
- },
- {
- "key": "military",
- "value": "office",
- "description": "Military Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/military.svg?sanitize=true"
- },
- {
- "key": "military",
- "value": "range",
- "description": "Military Range",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/military.svg?sanitize=true"
- },
- {
- "key": "military",
- "value": "training_area",
- "description": "Training Area",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/military.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "orchard",
- "description": "Orchard",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/park-alt1-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "plant_nursery",
- "description": "Plant Nursery",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/garden-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "quarry",
- "description": "Quarry",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "landuse",
- "value": "railway",
- "description": "Railway Corridor",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/rail-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "recreation_ground",
- "description": "Recreation Ground",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "religious",
- "description": "Religious Area",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/place-of-worship-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "residential",
- "description": "Residential Area",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "retail",
- "description": "Retail Area",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/commercial-15.svg?sanitize=true"
- },
- {
- "key": "landuse",
- "value": "vineyard",
- "description": "Vineyard",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "leisure",
- "description": "Leisure, Type",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "adult_gaming_centre",
- "description": "Adult Gaming Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/dice.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "amusement_arcade",
- "description": "Amusement Arcade",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/gaming-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "beach_resort",
- "description": "Beach Resort",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/beach.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "bird_hide",
- "description": "Bird Hide",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/binoculars.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "bleachers",
- "description": "Bleachers",
- "object_types": [
- "node",
- "area"
- ]
- },
- {
- "key": "leisure",
- "value": "bowling_alley",
- "description": "Bowling Alley",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/bowling.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "common",
- "description": "Common",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/pedestrian.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "dance",
- "description": "Dance Hall",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/music-15.svg?sanitize=true"
- },
- {
- "key": "dance:teaching",
- "value": "yes",
- "description": "Dance School",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/music-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "dog_park",
- "description": "Dog Park",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/dog-park-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "firepit",
- "description": "Firepit",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fire-station-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "fitness_centre",
- "description": "Gym / Fitness Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "sport",
- "value": "yoga",
- "description": "Yoga Studio",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "fitness_station",
- "description": "Outdoor Fitness Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "fitness_station",
- "value": "balance_beam",
- "description": "Exercise Balance Beam",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "fitness_station",
- "value": "box",
- "description": "Exercise Box",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "fitness_station",
- "value": "horizontal_bar",
- "description": "Exercise Horizontal Bar",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "fitness_station",
- "value": "horizontal_ladder",
- "description": "Exercise Monkey Bars",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "fitness_station",
- "value": "hyperextension",
- "description": "Hyperextension Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "fitness_station",
- "value": "parallel_bars",
- "description": "Parallel Bars",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "fitness_station",
- "value": "push-up",
- "description": "Push-Up Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "fitness_station",
- "value": "rings",
- "description": "Exercise Rings",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "fitness_station",
- "value": "sign",
- "description": "Exercise Instruction Sign",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "fitness_station",
- "value": "sit-up",
- "description": "Sit-Up Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "fitness_station",
- "value": "stairs",
- "description": "Exercise Stairs",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "garden",
- "description": "Garden",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/garden-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "golf_course",
- "description": "Golf Course",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "hackerspace",
- "description": "Hackerspace",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/commercial-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "horse_riding",
- "description": "Horseback Riding Facility, Horseback Riding",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/horse-riding-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "ice_rink",
- "description": "Ice Rink",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "marina",
- "description": "Marina",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/harbor-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "miniature_golf",
- "description": "Miniature Golf",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "nature_reserve",
- "description": "Nature Reserve",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/park-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "outdoor_seating",
- "description": "Outdoor Seating Area",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/picnic-site-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "park",
- "description": "Park",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/park-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "picnic_table",
- "description": "Picnic Table",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/picnic-site-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "pitch",
- "description": "Sport Pitch",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "sport",
- "value": "american_football",
- "description": "American Football Field",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/america-football-15.svg?sanitize=true"
- },
- {
- "key": "sport",
- "value": "baseball",
- "description": "Baseball Diamond",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/baseball-15.svg?sanitize=true"
- },
- {
- "key": "sport",
- "value": "basketball",
- "description": "Basketball Court",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/basketball-15.svg?sanitize=true"
- },
- {
- "key": "sport",
- "value": "beachvolleyball",
- "description": "Beach Volleyball Court",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/basketball-15.svg?sanitize=true"
- },
- {
- "key": "sport",
- "value": "boules",
- "description": "Boules/Bocce Court",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "sport",
- "value": "bowls",
- "description": "Bowling Green",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "sport",
- "value": "cricket",
- "description": "Cricket Field",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cricket-15.svg?sanitize=true"
- },
- {
- "key": "sport",
- "value": "equestrian",
- "description": "Riding Arena, Dressage Riding",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/horse-riding-15.svg?sanitize=true"
- },
- {
- "key": "sport",
- "value": "rugby_league",
- "description": "Rugby League Field",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/america-football-15.svg?sanitize=true"
- },
- {
- "key": "sport",
- "value": "rugby_union",
- "description": "Rugby Union Field",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/america-football-15.svg?sanitize=true"
- },
- {
- "key": "sport",
- "value": "skateboard",
- "description": "Skate Park",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "sport",
- "value": "soccer",
- "description": "Soccer Field",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/soccer-15.svg?sanitize=true"
- },
- {
- "key": "sport",
- "value": "table_tennis",
- "description": "Ping Pong Table",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/tennis-15.svg?sanitize=true"
- },
- {
- "key": "sport",
- "value": "tennis",
- "description": "Tennis Court",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/tennis-15.svg?sanitize=true"
- },
- {
- "key": "sport",
- "value": "volleyball",
- "description": "Volleyball Court",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/basketball-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "playground",
- "description": "Playground",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "resort",
- "description": "Resort",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"
- },
- {
- "key": "sport",
- "value": "running",
- "description": "Racetrack (Running)",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "sauna",
- "description": "Sauna",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-thermometer-three-quarters.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "slipway",
- "description": "Slipway",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/beach.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "sports_centre",
- "description": "Sports Center / Complex",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "sport",
- "value": "swimming",
- "description": "Swimming Pool Facility",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/swimming-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "stadium",
- "description": "Stadium",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "swimming_pool",
- "description": "Swimming Pool",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/swimming-15.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "track",
- "description": "Racetrack (Non-Motorsport)",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-road.svg?sanitize=true"
- },
- {
- "key": "leisure",
- "value": "water_park",
- "description": "Water Park",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/swimming-15.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "description": "Man Made, Type",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/storage_tank.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "embankment",
- "description": "Embankment",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "man_made",
- "value": "adit",
- "description": "Adit",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-15.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "antenna",
- "description": "Antenna",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/antenna.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "breakwater",
- "description": "Breakwater",
- "object_types": [
- "way",
- "area"
- ]
- },
- {
- "key": "man_made",
- "value": "bridge",
- "description": "Bridge",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "man_made",
- "value": "chimney",
- "description": "Chimney",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/chimney.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "clearcut",
- "description": "Clearcut Forest",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/logging-15.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "crane",
- "description": "Crane",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/crane.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "cutline",
- "description": "Cut line",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/logging-15.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "flagpole",
- "description": "Flagpole",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/embassy-15.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "gasometer",
- "description": "Gasometer",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/storage_tank.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "groyne",
- "description": "Groyne",
- "object_types": [
- "way",
- "area"
- ]
- },
- {
- "key": "man_made",
- "value": "lighthouse",
- "description": "Lighthouse",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lighthouse-15.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "mast",
- "description": "Mast",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/antenna.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "monitoring_station",
- "description": "Monitoring Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/antenna.svg?sanitize=true"
- },
- {
- "key": "tower:type",
- "value": "observation",
- "description": "Observation Tower",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tower.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "observatory",
- "description": "Observatory",
- "object_types": [
- "node",
- "area"
- ]
- },
- {
- "key": "man_made",
- "value": "petroleum_well",
- "description": "Oil Well",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/storage_tank.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "pier",
- "description": "Pier",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "pipeline",
- "description": "Pipeline",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/pipeline-line.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "pumping_station",
- "description": "Pumping Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "silo",
- "description": "Silo",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/silo.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "storage_tank",
- "description": "Storage Tank",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/storage_tank.svg?sanitize=true"
- },
- {
- "key": "surveillance:type",
- "value": "camera",
- "description": "Surveillance Camera, Surveillance Type",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/attraction-15.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "surveillance",
- "description": "Surveillance",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/attraction-15.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "survey_point",
- "description": "Survey Point",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/monument-15.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "tower",
- "description": "Tower",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tower.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "wastewater_plant",
- "description": "Wastewater Plant",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "water_tower",
- "description": "Water Tower",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "water_well",
- "description": "Water Well",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "water_works",
- "description": "Water Works",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "watermill",
- "description": "Watermill",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/buddhism-15.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "windmill",
- "description": "Windmill",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/windmill.svg?sanitize=true"
- },
- {
- "key": "man_made",
- "value": "works",
- "description": "Factory",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/industry-15.svg?sanitize=true"
- },
- {
- "key": "manhole",
- "description": "Manhole, Type",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/circle-stroked-15.svg?sanitize=true"
- },
- {
- "key": "manhole",
- "value": "drain",
- "description": "Storm Drain",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
- },
- {
- "key": "manhole",
- "value": "telecom",
- "description": "Telecom Manhole",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/circle-stroked-15.svg?sanitize=true"
- },
- {
- "key": "natural",
- "description": "Natural",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/natural-15.svg?sanitize=true"
- },
- {
- "key": "natural",
- "value": "bare_rock",
- "description": "Bare Rock",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "natural",
- "value": "bay",
- "description": "Bay",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/beach.svg?sanitize=true"
- },
- {
- "key": "natural",
- "value": "beach",
- "description": "Beach",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/beach.svg?sanitize=true"
- },
- {
- "key": "natural",
- "value": "cave_entrance",
- "description": "Cave Entrance",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-15.svg?sanitize=true"
- },
- {
- "key": "natural",
- "value": "cliff",
- "description": "Cliff",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-15.svg?sanitize=true"
- },
- {
- "key": "natural",
- "value": "coastline",
- "description": "Coastline",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "natural",
- "value": "fell",
- "description": "Fell",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "natural",
- "value": "glacier",
- "description": "Glacier",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "natural",
- "value": "grassland",
- "description": "Grassland",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "natural",
- "value": "heath",
- "description": "Heath",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "natural",
- "value": "mud",
- "description": "Mud",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "natural",
- "value": "peak",
- "description": "Peak",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/mountain-15.svg?sanitize=true"
- },
- {
- "key": "natural",
- "value": "reef",
- "description": "Reef",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/beach.svg?sanitize=true"
- },
- {
- "key": "natural",
- "value": "ridge",
- "description": "Ridge",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "natural",
- "value": "saddle",
- "description": "Saddle",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-stroked-15.svg?sanitize=true"
- },
- {
- "key": "natural",
- "value": "scree",
- "description": "Scree",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "natural",
- "value": "scrub",
- "description": "Scrub",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "natural",
- "value": "spring",
- "description": "Spring",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
- },
- {
- "key": "natural",
- "value": "tree_row",
- "description": "Tree row",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/park-15.svg?sanitize=true"
- },
- {
- "key": "natural",
- "value": "tree",
- "description": "Tree",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/park-15.svg?sanitize=true"
- },
- {
- "key": "natural",
- "value": "volcano",
- "description": "Volcano",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/volcano-15.svg?sanitize=true"
- },
- {
- "key": "water",
- "value": "lake",
- "description": "Lake",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
- },
- {
- "key": "water",
- "value": "pond",
- "description": "Pond",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
- },
- {
- "key": "water",
- "value": "reservoir",
- "description": "Reservoir",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
- },
- {
- "key": "natural",
- "value": "wetland",
- "description": "Wetland",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/wetland-15.svg?sanitize=true"
- },
- {
- "key": "natural",
- "value": "wood",
- "description": "Wood",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/park-alt1-15.svg?sanitize=true"
- },
- {
- "key": "noexit",
- "value": "yes",
- "description": "No Exit",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/barrier-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "description": "Office, Type",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "administrative",
- "description": "Administrative Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "physician",
- "description": "Physician",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "travel_agent",
- "description": "Travel Agency",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "accountant",
- "description": "Accountant Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "adoption_agency",
- "description": "Adoption Agency",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "advertising_agency",
- "description": "Advertising Agency",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "architect",
- "description": "Architect Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "association",
- "description": "Nonprofit Organization Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "charity",
- "description": "Charity Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "company",
- "description": "Corporate Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "coworking",
- "description": "Coworking Space",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "educational_institution",
- "description": "Educational Institution",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/school-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "employment_agency",
- "description": "Employment Agency",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "energy_supplier",
- "description": "Energy Supplier Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "estate_agent",
- "description": "Real Estate Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "financial",
- "description": "Financial Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "forestry",
- "description": "Forestry Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "foundation",
- "description": "Foundation Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "government",
- "description": "Government Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"
- },
- {
- "key": "government",
- "value": "register_office",
- "description": "Register Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"
- },
- {
- "key": "government",
- "value": "tax",
- "description": "Tax and Revenue Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "guide",
- "description": "Tour Guide Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "insurance",
- "description": "Insurance Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "it",
- "description": "Information Technology Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "lawyer",
- "description": "Law Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "lawyer",
- "value": "notary",
- "description": "Notary Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "moving_company",
- "description": "Moving Company Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/warehouse-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "newspaper",
- "description": "Newspaper Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/library-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "ngo",
- "description": "NGO Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "notary",
- "description": "Notary Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "political_party",
- "description": "Political Party",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "private_investigator",
- "description": "Private Investigator Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "quango",
- "description": "Quasi-NGO Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "research",
- "description": "Research Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "surveyor",
- "description": "Surveyor Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "tax_advisor",
- "description": "Tax Advisor Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "telecommunication",
- "description": "Telecom Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/telephone-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "therapist",
- "description": "Therapist Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "office",
- "value": "water_utility",
- "description": "Water Utility Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "piste:type",
- "description": "Piste/Ski Trail",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/skiing-15.svg?sanitize=true"
- },
- {
- "key": "place",
- "value": "farm",
- "description": "Farm",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/farm-15.svg?sanitize=true"
- },
- {
- "key": "place",
- "value": "city",
- "description": "City",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/city-15.svg?sanitize=true"
- },
- {
- "key": "place",
- "value": "hamlet",
- "description": "Hamlet",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-stroked-15.svg?sanitize=true"
- },
- {
- "key": "place",
- "value": "island",
- "description": "Island",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/mountain-15.svg?sanitize=true"
- },
- {
- "key": "place",
- "value": "islet",
- "description": "Islet",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/mountain-15.svg?sanitize=true"
- },
- {
- "key": "place",
- "value": "isolated_dwelling",
- "description": "Isolated Dwelling",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/home-15.svg?sanitize=true"
- },
- {
- "key": "place",
- "value": "locality",
- "description": "Locality",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-stroked-15.svg?sanitize=true"
- },
- {
- "key": "place",
- "value": "neighbourhood",
- "description": "Neighborhood",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-stroked-15.svg?sanitize=true"
- },
- {
- "key": "place",
- "value": "plot",
- "description": "Plot",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-stroked-15.svg?sanitize=true"
- },
- {
- "key": "place",
- "value": "quarter",
- "description": "Sub-Borough / Quarter",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-stroked-15.svg?sanitize=true"
- },
- {
- "key": "place",
- "value": "square",
- "description": "Square",
- "object_types": [
- "node",
- "area"
- ]
- },
- {
- "key": "place",
- "value": "suburb",
- "description": "Borough / Suburb",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-stroked-15.svg?sanitize=true"
- },
- {
- "key": "place",
- "value": "town",
- "description": "Town",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-15.svg?sanitize=true"
- },
- {
- "key": "place",
- "value": "village",
- "description": "Village",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/village-15.svg?sanitize=true"
- },
- {
- "key": "playground",
- "value": "balancebeam",
- "description": "Play Balance Beam",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
- },
- {
- "key": "playground",
- "value": "basketrotator",
- "description": "Basket Spinner",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
- },
- {
- "key": "playground",
- "value": "basketswing",
- "description": "Basket Swing",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
- },
- {
- "key": "playground",
- "value": "climbingframe",
- "description": "Climbing Frame",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
- },
- {
- "key": "playground",
- "value": "cushion",
- "description": "Bouncy Cushion",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
- },
- {
- "key": "playground",
- "value": "horizontal_bar",
- "description": "Play Horizontal Bar",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "playground",
- "value": "springy",
- "description": "Spring Rider",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
- },
- {
- "key": "playground",
- "value": "roundabout",
- "description": "Play Roundabout",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/stadium-15.svg?sanitize=true"
- },
- {
- "key": "playground",
- "value": "sandpit",
- "description": "Sandpit",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
- },
- {
- "key": "playground",
- "value": "seesaw",
- "description": "Seesaw",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
- },
- {
- "key": "playground",
- "value": "slide",
- "description": "Slide",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
- },
- {
- "key": "playground",
- "value": "structure",
- "description": "Play Structure",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
- },
- {
- "key": "playground",
- "value": "swing",
- "description": "Swing",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
- },
- {
- "key": "playground",
- "value": "zipwire",
- "description": "Zip Wire",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
- },
- {
- "key": "power",
- "value": "sub_station",
- "description": "Substation",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/power.svg?sanitize=true"
- },
- {
- "key": "power",
- "value": "generator",
- "description": "Power Generator",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/power.svg?sanitize=true"
- },
- {
- "key": "generator:method",
- "value": "fission",
- "description": "Nuclear Reactor",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/radiation.svg?sanitize=true"
- },
- {
- "key": "generator:method",
- "value": "wind_turbine",
- "description": "Wind Turbine",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/wind_turbine.svg?sanitize=true"
- },
- {
- "key": "power",
- "value": "line",
- "description": "Power Line",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/power-line.svg?sanitize=true"
- },
- {
- "key": "power",
- "value": "minor_line",
- "description": "Minor Power Line",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/power-line.svg?sanitize=true"
- },
- {
- "key": "power",
- "value": "plant",
- "description": "Power Station Grounds",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/industry-15.svg?sanitize=true"
- },
- {
- "key": "power",
- "value": "pole",
- "description": "Power Pole",
- "object_types": [
- "node"
- ]
- },
- {
- "key": "power",
- "value": "substation",
- "description": "Substation",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/power.svg?sanitize=true"
- },
- {
- "key": "power",
- "value": "switch",
- "description": "Power Switch",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/power.svg?sanitize=true"
- },
- {
- "key": "power",
- "value": "tower",
- "description": "High-Voltage Tower",
- "object_types": [
- "node"
- ]
- },
- {
- "key": "power",
- "value": "transformer",
- "description": "Transformer",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/power.svg?sanitize=true"
- },
- {
- "key": "aerialway",
- "value": "yes",
- "description": "Aerialway Stop / Platform, Aerialway Station, Aerialway Stopping Location",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
- },
- {
- "key": "bus",
- "value": "yes",
- "description": "Bus Stop / Platform, Bus Station / Terminal, Bus Stopping Location",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
- },
- {
- "key": "ferry",
- "value": "yes",
- "description": "Ferry Stop / Platform, Ferry Station / Terminal, Ferry Stopping Location",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
- },
- {
- "key": "light_rail",
- "value": "yes",
- "description": "Light Rail Stop / Platform, Light Rail Station, Light Rail Stopping Location",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
- },
- {
- "key": "monorail",
- "value": "yes",
- "description": "Monorail Stop / Platform, Monorail Station, Monorail Stopping Location",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
- },
- {
- "key": "subway",
- "value": "yes",
- "description": "Subway Stop / Platform, Subway Station, Subway Stopping Location",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
- },
- {
- "key": "train",
- "value": "yes",
- "description": "Train Stop / Platform, Train Station, Train Stopping Location",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
- },
- {
- "key": "tram",
- "value": "yes",
- "description": "Tram Stop / Platform, Tram Station, Tram Stopping Location",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
- },
- {
- "key": "trolleybus",
- "value": "yes",
- "description": "Trolleybus Stop / Platform, Trolleybus Station / Terminal, Trolleybus Stopping Location",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
- },
- {
- "key": "public_transport",
- "value": "platform",
- "description": "Transit Stop / Platform",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "halt",
- "description": "Train Station (Halt / Request)",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/rail-15.svg?sanitize=true"
- },
- {
- "key": "public_transport",
- "value": "station",
- "description": "Transit Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/rail-15.svg?sanitize=true"
- },
- {
- "key": "public_transport",
- "value": "stop_area",
- "description": "Transit Stop Area",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bus-15.svg?sanitize=true"
- },
- {
- "key": "public_transport",
- "value": "stop_position",
- "description": "Transit Stopping Location",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bus-15.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "platform",
- "description": "Train Stop / Platform",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "station",
- "description": "Train Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/rail-15.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "tram_stop",
- "description": "Tram Stopping Position",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tram.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "abandoned",
- "description": "Abandoned Railway",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-abandoned.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "buffer_stop",
- "description": "Buffer Stop",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/buffer_stop.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "crossing",
- "description": "Railway Crossing (Path)",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cross-15.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "derail",
- "description": "Railway Derailer",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "disused",
- "description": "Disused Railway",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-disused.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "funicular",
- "description": "Funicular",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-rail.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "level_crossing",
- "description": "Railway Crossing (Road)",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cross-15.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "light_rail",
- "description": "Light Rail",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-light-rail.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "milestone",
- "description": "Railway Milestone",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/milestone.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "miniature",
- "description": "Miniature Railway",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-rail.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "monorail",
- "description": "Monorail",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-monorail.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "narrow_gauge",
- "description": "Narrow Gauge Rail",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-rail.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "rail",
- "description": "Rail",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-rail.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "signal",
- "description": "Railway Signal",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/railway_signals.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "subway_entrance",
- "description": "Subway Entrance",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/entrance-15.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "subway",
- "description": "Subway",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-subway.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "switch",
- "description": "Railway Switch",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/junction.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "wash",
- "description": "Train Wash",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/rail-15.svg?sanitize=true"
- },
- {
- "key": "railway",
- "value": "tram",
- "description": "Tram",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-light-rail.svg?sanitize=true"
- },
- {
- "key": "route",
- "value": "ferry",
- "description": "Ferry Route",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/ferry-line.svg?sanitize=true"
- },
- {
- "key": "shop",
- "description": "Shop, Type",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "fishmonger",
- "description": "Fishmonger",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "furnace",
- "description": "Furnace Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "vacant",
- "description": "Vacant Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "agrarian",
- "description": "Farm Supply Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "alcohol",
- "description": "Liquor Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/alcohol-shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "anime",
- "description": "Anime Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "antiques",
- "description": "Antiques Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "appliance",
- "description": "Appliance Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "art",
- "description": "Art Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "baby_goods",
- "description": "Baby Goods Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "bag",
- "description": "Bag/Luggage Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "bakery",
- "description": "Bakery",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bakery-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "bathroom_furnishing",
- "description": "Bathroom Furnishing Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "beauty",
- "description": "Beauty Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "beauty",
- "value": "nails",
- "description": "Nail Salon",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "beauty",
- "value": "tanning",
- "description": "Tanning Salon",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "bed",
- "description": "Bedding/Mattress Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "beverages",
- "description": "Beverage Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "bicycle",
- "description": "Bicycle Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bicycle-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "bookmaker",
- "description": "Bookmaker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "books",
- "description": "Book Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "boutique",
- "description": "Boutique",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "butcher",
- "description": "Butcher",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/slaughterhouse-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "candles",
- "description": "Candle Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "car_parts",
- "description": "Car Parts Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "car_repair",
- "description": "Car Repair Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "car",
- "description": "Car Dealership",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "carpet",
- "description": "Carpet Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "charity",
- "description": "Charity Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "cheese",
- "description": "Cheese Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "chemist",
- "description": "Drugstore",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/grocery-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "chocolate",
- "description": "Chocolate Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "clothes",
- "description": "Clothing Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/clothing-store-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "coffee",
- "description": "Coffee Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "computer",
- "description": "Computer Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "confectionery",
- "description": "Candy Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "convenience",
- "description": "Convenience Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "copyshop",
- "description": "Copy Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "cosmetics",
- "description": "Cosmetics Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "craft",
- "description": "Arts and Crafts Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "curtain",
- "description": "Curtain Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "dairy",
- "description": "Dairy Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "deli",
- "description": "Deli",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "department_store",
- "description": "Department Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "doityourself",
- "description": "DIY Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "dry_cleaning",
- "description": "Dry Cleaner",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "e-cigarette",
- "description": "E-Cigarette Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "electronics",
- "description": "Electronics Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "erotic",
- "description": "Erotic Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "fabric",
- "description": "Fabric Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "farm",
- "description": "Produce Stand",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "fashion",
- "description": "Fashion Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "florist",
- "description": "Florist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/florist-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "frame",
- "description": "Framing Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "funeral_directors",
- "description": "Funeral Home",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cemetery-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "furniture",
- "description": "Furniture Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "garden_centre",
- "description": "Garden Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/garden-center-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "gas",
- "description": "Bottled Gas Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "gift",
- "description": "Gift Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/gift-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "greengrocer",
- "description": "Greengrocer",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "hairdresser",
- "description": "Hairdresser",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hairdresser-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "hardware",
- "description": "Hardware Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "health_food",
- "description": "Health Food Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "hearing_aids",
- "description": "Hearing Aids Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "herbalist",
- "description": "Herbalist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "hifi",
- "description": "Hifi Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "houseware",
- "description": "Houseware Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "interior_decoration",
- "description": "Interior Decoration Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "jewelry",
- "description": "Jeweler",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "kiosk",
- "description": "Kiosk",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "kitchen",
- "description": "Kitchen Design Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "laundry",
- "description": "Laundry",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/laundry-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "leather",
- "description": "Leather Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "locksmith",
- "description": "Locksmith",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "lottery",
- "description": "Lottery Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "mall",
- "description": "Mall",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "massage",
- "description": "Massage Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "medical_supply",
- "description": "Medical Supply Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "mobile_phone",
- "description": "Mobile Phone Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/mobile-phone-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "money_lender",
- "description": "Money Lender",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bank-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "motorcycle_repair",
- "description": "Motorcycle Repair Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-motorcycle.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "motorcycle",
- "description": "Motorcycle Dealership",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-motorcycle.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "music",
- "description": "Music Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/music-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "musical_instrument",
- "description": "Musical Instrument Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/music-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "newsagent",
- "description": "Newspaper/Magazine Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "nutrition_supplements",
- "description": "Nutrition Supplements Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "optician",
- "description": "Optician",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "organic",
- "value": "only",
- "description": "Organic Goods Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "outdoor",
- "description": "Outdoors Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "paint",
- "description": "Paint Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "pastry",
- "description": "Pastry Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bakery-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "pawnbroker",
- "description": "Pawn Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "perfumery",
- "description": "Perfume Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "pet_grooming",
- "description": "Pet Grooming Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/dog-park-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "pet",
- "description": "Pet Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/dog-park-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "photo",
- "description": "Photography Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/attraction-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "pyrotechnics",
- "description": "Fireworks Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "radiotechnics",
- "description": "Radio/Electronic Component Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "religion",
- "description": "Religious Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "scuba_diving",
- "description": "Scuba Diving Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/swimming-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "seafood",
- "description": "Seafood Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "second_hand",
- "description": "Consignment/Thrift Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "shoes",
- "description": "Shoe Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "sports",
- "description": "Sporting Goods Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "stationery",
- "description": "Stationery Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "storage_rental",
- "description": "Storage Rental",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "supermarket",
- "description": "Supermarket",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/grocery-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "tailor",
- "description": "Tailor",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/clothing-store-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "tattoo",
- "description": "Tattoo Parlor",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "tea",
- "description": "Tea Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/teahouse-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "ticket",
- "description": "Ticket Seller",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "tiles",
- "description": "Tile Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "tobacco",
- "description": "Tobacco Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "toys",
- "description": "Toy Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "trade",
- "description": "Trade Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "travel_agency",
- "description": "Travel Agency",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "tyres",
- "description": "Tire Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "vacuum_cleaner",
- "description": "Vacuum Cleaner Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "variety_store",
- "description": "Variety Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "video_games",
- "description": "Video Game Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/gaming-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "video",
- "description": "Video Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "watches",
- "description": "Watches Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "water_sports",
- "description": "Watersport/Swim Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "weapons",
- "description": "Weapon Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "wholesale",
- "description": "Wholesale Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/warehouse-15.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "window_blind",
- "description": "Window Blind Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/window.svg?sanitize=true"
- },
- {
- "key": "shop",
- "value": "wine",
- "description": "Wine Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/alcohol-shop-15.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "description": "Tourism, Type",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/attraction-15.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "value": "alpine_hut",
- "description": "Alpine Hut",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "value": "apartment",
- "description": "Guest Apartment / Condo",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "value": "aquarium",
- "description": "Aquarium",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/aquarium-15.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "value": "artwork",
- "description": "Artwork",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/art-gallery-15.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "value": "attraction",
- "description": "Tourist Attraction",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/star-15.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "value": "camp_site",
- "description": "Campground",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/campsite-15.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "value": "caravan_site",
- "description": "RV Park",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bus-15.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "value": "chalet",
- "description": "Holiday Cottage",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "value": "gallery",
- "description": "Art Gallery",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/art-gallery-15.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "value": "guest_house",
- "description": "Guest House",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "value": "hostel",
- "description": "Hostel",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "value": "hotel",
- "description": "Hotel",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "value": "information",
- "description": "Information",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/information-15.svg?sanitize=true"
- },
- {
- "key": "information",
- "value": "board",
- "description": "Information Board",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/information-15.svg?sanitize=true"
- },
- {
- "key": "information",
- "value": "guidepost",
- "description": "Guidepost",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/information-15.svg?sanitize=true"
- },
- {
- "key": "information",
- "value": "map",
- "description": "Map",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/information-15.svg?sanitize=true"
- },
- {
- "key": "information",
- "value": "office",
- "description": "Tourist Information Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/information-15.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "value": "motel",
- "description": "Motel",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "value": "museum",
- "description": "Museum",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/museum-15.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "value": "picnic_site",
- "description": "Picnic Site",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/picnic-site-15.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "value": "theme_park",
- "description": "Theme Park",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/amusement-park-15.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "value": "trail_riding_station",
- "description": "Trail Riding Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/horse-riding-15.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "value": "viewpoint",
- "description": "Viewpoint",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/binoculars.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "value": "wilderness_hut",
- "description": "Wilderness Hut",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"
- },
- {
- "key": "tourism",
- "value": "zoo",
- "description": "Zoo",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/zoo-15.svg?sanitize=true"
- },
- {
- "key": "traffic_calming",
- "description": "Traffic Calming, Type",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"
- },
- {
- "key": "traffic_calming",
- "value": "bump",
- "description": "Speed Bump",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"
- },
- {
- "key": "traffic_calming",
- "value": "chicane",
- "description": "Traffic Chicane",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"
- },
- {
- "key": "traffic_calming",
- "value": "choker",
- "description": "Traffic Choker",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"
- },
- {
- "key": "traffic_calming",
- "value": "cushion",
- "description": "Speed Cushion",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"
- },
- {
- "key": "traffic_calming",
- "value": "dip",
- "description": "Dip",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"
- },
- {
- "key": "traffic_calming",
- "value": "hump",
- "description": "Speed Hump",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"
- },
- {
- "key": "traffic_calming",
- "value": "island",
- "description": "Traffic Island",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"
- },
- {
- "key": "traffic_calming",
- "value": "rumble_strip",
- "description": "Rumble Strip",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"
- },
- {
- "key": "type",
- "value": "multipolygon",
- "description": "Multipolygon",
- "object_types": [
- "area",
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/multipolygon.svg?sanitize=true"
- },
- {
- "key": "type",
- "value": "boundary",
- "description": "Boundary",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/boundary.svg?sanitize=true"
- },
- {
- "key": "type",
- "value": "restriction",
- "description": "Restriction",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/restriction.svg?sanitize=true"
- },
- {
- "key": "restriction",
- "value": "no_left_turn",
- "description": "No Left Turn",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/restriction-no-left-turn.svg?sanitize=true"
- },
- {
- "key": "restriction",
- "value": "no_right_turn",
- "description": "No Right Turn",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/restriction-no-right-turn.svg?sanitize=true"
- },
- {
- "key": "restriction",
- "value": "no_straight_on",
- "description": "No Straight On",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/restriction-no-straight-on.svg?sanitize=true"
- },
- {
- "key": "restriction",
- "value": "no_u_turn",
- "description": "No U-turn",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/restriction-no-u-turn.svg?sanitize=true"
- },
- {
- "key": "restriction",
- "value": "only_left_turn",
- "description": "Only Left Turn",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/restriction-only-left-turn.svg?sanitize=true"
- },
- {
- "key": "restriction",
- "value": "only_right_turn",
- "description": "Only Right Turn",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/restriction-only-right-turn.svg?sanitize=true"
- },
- {
- "key": "restriction",
- "value": "only_straight_on",
- "description": "Only Straight On",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/restriction-only-straight-on.svg?sanitize=true"
- },
- {
- "key": "restriction",
- "value": "only_u_turn",
- "description": "Only U-turn",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/restriction-only-u-turn.svg?sanitize=true"
- },
- {
- "key": "type",
- "value": "route_master",
- "description": "Route Master",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-master.svg?sanitize=true"
- },
- {
- "key": "type",
- "value": "route",
- "description": "Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route.svg?sanitize=true"
- },
- {
- "key": "route",
- "value": "bicycle",
- "description": "Cycle Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-bicycle.svg?sanitize=true"
- },
- {
- "key": "route",
- "value": "bus",
- "description": "Bus Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-bus.svg?sanitize=true"
- },
- {
- "key": "route",
- "value": "detour",
- "description": "Detour Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-detour.svg?sanitize=true"
- },
- {
- "key": "route",
- "value": "foot",
- "description": "Foot Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-foot.svg?sanitize=true"
- },
- {
- "key": "route",
- "value": "hiking",
- "description": "Hiking Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-foot.svg?sanitize=true"
- },
- {
- "key": "route",
- "value": "horse",
- "description": "Riding Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-horse.svg?sanitize=true"
- },
- {
- "key": "route",
- "value": "light_rail",
- "description": "Light Rail Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-light-rail.svg?sanitize=true"
- },
- {
- "key": "route",
- "value": "pipeline",
- "description": "Pipeline Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-pipeline.svg?sanitize=true"
- },
- {
- "key": "route",
- "value": "piste",
- "description": "Piste/Ski Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-piste.svg?sanitize=true"
- },
- {
- "key": "route",
- "value": "power",
- "description": "Power Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-power.svg?sanitize=true"
- },
- {
- "key": "route",
- "value": "road",
- "description": "Road Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-road.svg?sanitize=true"
- },
- {
- "key": "route",
- "value": "subway",
- "description": "Subway Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-subway.svg?sanitize=true"
- },
- {
- "key": "route",
- "value": "train",
- "description": "Train Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-train.svg?sanitize=true"
- },
- {
- "key": "route",
- "value": "tram",
- "description": "Tram Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-tram.svg?sanitize=true"
- },
- {
- "key": "type",
- "value": "site",
- "description": "Site",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/relation.svg?sanitize=true"
- },
- {
- "key": "type",
- "value": "waterway",
- "description": "Waterway",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-water.svg?sanitize=true"
- },
- {
- "key": "waterway",
- "value": "boatyard",
- "description": "Boatyard",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/harbor-15.svg?sanitize=true"
- },
- {
- "key": "waterway",
- "value": "canal",
- "description": "Canal",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/waterway-canal.svg?sanitize=true"
- },
- {
- "key": "waterway",
- "value": "dam",
- "description": "Dam",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/dam-15.svg?sanitize=true"
- },
- {
- "key": "waterway",
- "value": "ditch",
- "description": "Ditch",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/waterway-ditch.svg?sanitize=true"
- },
- {
- "key": "waterway",
- "value": "dock",
- "description": "Wet Dock / Dry Dock",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/harbor-15.svg?sanitize=true"
- },
- {
- "key": "waterway",
- "value": "drain",
- "description": "Drain",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/waterway-ditch.svg?sanitize=true"
- },
- {
- "key": "waterway",
- "value": "fuel",
- "description": "Marine Fuel Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fuel-15.svg?sanitize=true"
- },
- {
- "key": "waterway",
- "value": "river",
- "description": "River",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/waterway-river.svg?sanitize=true"
- },
- {
- "key": "waterway",
- "value": "riverbank",
- "description": "Riverbank",
- "object_types": [
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
- },
- {
- "key": "waterway",
- "value": "sanitary_dump_station",
- "description": "Marine Toilet Disposal",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/storage_tank.svg?sanitize=true"
- },
- {
- "key": "intermittent",
- "value": "yes",
- "description": "Intermittent Stream",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/waterway-stream.svg?sanitize=true"
- },
- {
- "key": "waterway",
- "value": "stream",
- "description": "Stream",
- "object_types": [
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/waterway-stream.svg?sanitize=true"
- },
- {
- "key": "waterway",
- "value": "water_point",
- "description": "Marine Drinking Water",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/drinking-water-15.svg?sanitize=true"
- },
- {
- "key": "waterway",
- "value": "waterfall",
- "description": "Waterfall",
- "object_types": [
- "node"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
- },
- {
- "key": "waterway",
- "value": "weir",
- "description": "Weir",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/dam-15.svg?sanitize=true"
- },
- {
- "key": "access",
- "description": "Allowed Access"
- },
- {
- "key": "access",
- "value": "yes",
- "description": "Allowed Access"
- },
- {
- "key": "access",
- "value": "no",
- "description": "Allowed Access"
- },
- {
- "key": "access",
- "value": "permissive",
- "description": "Allowed Access"
- },
- {
- "key": "access",
- "value": "private",
- "description": "Allowed Access"
- },
- {
- "key": "access",
- "value": "designated",
- "description": "Allowed Access"
- },
- {
- "key": "access",
- "value": "destination",
- "description": "Allowed Access"
- },
- {
- "key": "access",
- "value": "dismount",
- "description": "Allowed Access"
- },
- {
- "key": "foot",
- "value": "yes",
- "description": "Allowed Access"
- },
- {
- "key": "foot",
- "value": "no",
- "description": "Allowed Access"
- },
- {
- "key": "foot",
- "value": "permissive",
- "description": "Allowed Access"
- },
- {
- "key": "foot",
- "value": "private",
- "description": "Allowed Access"
- },
- {
- "key": "foot",
- "value": "designated",
- "description": "Allowed Access"
- },
- {
- "key": "foot",
- "value": "destination",
- "description": "Allowed Access"
- },
- {
- "key": "foot",
- "value": "dismount",
- "description": "Allowed Access"
- },
- {
- "key": "motor_vehicle",
- "value": "yes",
- "description": "Allowed Access"
- },
- {
- "key": "motor_vehicle",
- "value": "no",
- "description": "Allowed Access"
- },
- {
- "key": "motor_vehicle",
- "value": "permissive",
- "description": "Allowed Access"
- },
- {
- "key": "motor_vehicle",
- "value": "private",
- "description": "Allowed Access"
- },
- {
- "key": "motor_vehicle",
- "value": "designated",
- "description": "Allowed Access"
- },
- {
- "key": "motor_vehicle",
- "value": "destination",
- "description": "Allowed Access"
- },
- {
- "key": "motor_vehicle",
- "value": "dismount",
- "description": "Allowed Access"
- },
- {
- "key": "bicycle",
- "value": "yes",
- "description": "Allowed Access"
- },
- {
- "key": "bicycle",
- "value": "no",
- "description": "Allowed Access"
- },
- {
- "key": "bicycle",
- "value": "permissive",
- "description": "Allowed Access"
- },
- {
- "key": "bicycle",
- "value": "private",
- "description": "Allowed Access"
- },
- {
- "key": "bicycle",
- "value": "designated",
- "description": "Allowed Access"
- },
- {
- "key": "bicycle",
- "value": "destination",
- "description": "Allowed Access"
- },
- {
- "key": "bicycle",
- "value": "dismount",
- "description": "Allowed Access"
- },
- {
- "key": "horse",
- "value": "yes",
- "description": "Allowed Access"
- },
- {
- "key": "horse",
- "value": "no",
- "description": "Allowed Access"
- },
- {
- "key": "horse",
- "value": "permissive",
- "description": "Allowed Access"
- },
- {
- "key": "horse",
- "value": "private",
- "description": "Allowed Access"
- },
- {
- "key": "horse",
- "value": "designated",
- "description": "Allowed Access"
- },
- {
- "key": "horse",
- "value": "destination",
- "description": "Allowed Access"
- },
- {
- "key": "horse",
- "value": "dismount",
- "description": "Allowed Access"
- },
- {
- "key": "addr:block_number",
- "description": "Address"
- },
- {
- "key": "addr:city",
- "description": "Address"
- },
- {
- "key": "addr:conscriptionnumber",
- "description": "Address"
- },
- {
- "key": "addr:county",
- "description": "Address"
- },
- {
- "key": "addr:country",
- "description": "Address"
- },
- {
- "key": "addr:district",
- "description": "Address"
- },
- {
- "key": "addr:floor",
- "description": "Address"
- },
- {
- "key": "addr:hamlet",
- "description": "Address"
- },
- {
- "key": "addr:housename",
- "description": "Address"
- },
- {
- "key": "addr:housenumber",
- "description": "Address"
- },
- {
- "key": "addr:neighbourhood",
- "description": "Address"
- },
- {
- "key": "addr:place",
- "description": "Address"
- },
- {
- "key": "addr:postcode",
- "description": "Address"
- },
- {
- "key": "addr:province",
- "description": "Address"
- },
- {
- "key": "addr:quarter",
- "description": "Address"
- },
- {
- "key": "addr:state",
- "description": "Address"
- },
- {
- "key": "addr:street",
- "description": "Address"
- },
- {
- "key": "addr:subdistrict",
- "description": "Address"
- },
- {
- "key": "addr:suburb",
- "description": "Address"
- },
- {
- "key": "addr:unit",
- "description": "Address"
- },
- {
- "key": "admin_level",
- "description": "Admin Level"
- },
- {
- "key": "aerialway:access",
- "value": "entry",
- "description": "Access"
- },
- {
- "key": "aerialway:access",
- "value": "exit",
- "description": "Access"
- },
- {
- "key": "aerialway:access",
- "value": "both",
- "description": "Access"
- },
- {
- "key": "aerialway:bubble",
- "description": "Bubble"
- },
- {
- "key": "aerialway:capacity",
- "description": "Capacity (per hour)"
- },
- {
- "key": "aerialway:duration",
- "description": "Duration (minutes)"
- },
- {
- "key": "aerialway:heating",
- "description": "Heated"
- },
- {
- "key": "aerialway:occupancy",
- "description": "Occupancy"
- },
- {
- "key": "aerialway:summer:access",
- "value": "entry",
- "description": "Access (summer)"
- },
- {
- "key": "aerialway:summer:access",
- "value": "exit",
- "description": "Access (summer)"
- },
- {
- "key": "aerialway:summer:access",
- "value": "both",
- "description": "Access (summer)"
- },
- {
- "key": "agrarian",
- "description": "Products"
- },
- {
- "key": "animal_boarding",
- "description": "For Animals"
- },
- {
- "key": "animal_breeding",
- "description": "For Animals"
- },
- {
- "key": "animal_shelter",
- "description": "For Animals"
- },
- {
- "key": "artist_name",
- "description": "Artist"
- },
- {
- "key": "artwork_type",
- "description": "Type"
- },
- {
- "key": "atm",
- "description": "ATM"
- },
- {
- "key": "backrest",
- "description": "Backrest"
- },
- {
- "key": "bath:open_air",
- "description": "Open Air"
- },
- {
- "key": "bath:sand_bath",
- "description": "Sand Bath"
- },
- {
- "key": "bath:type",
- "value": "onsen",
- "description": "Specialty"
- },
- {
- "key": "bath:type",
- "value": "foot_bath",
- "description": "Specialty"
- },
- {
- "key": "bath:type",
- "value": "hot_spring",
- "description": "Specialty"
- },
- {
- "key": "beauty",
- "description": "Shop Type"
- },
- {
- "key": "bench",
- "description": "Bench"
- },
- {
- "key": "bicycle_parking",
- "description": "Type"
- },
- {
- "key": "bin",
- "description": "Waste Bin"
- },
- {
- "key": "blood:",
- "value": "whole",
- "description": "Blood Components"
- },
- {
- "key": "blood:",
- "value": "plasma",
- "description": "Blood Components"
- },
- {
- "key": "blood:",
- "value": "platelets",
- "description": "Blood Components"
- },
- {
- "key": "blood:",
- "value": "stemcells",
- "description": "Blood Components"
- },
- {
- "key": "board_type",
- "description": "Type"
- },
- {
- "key": "boules",
- "description": "Type"
- },
- {
- "key": "boundary",
- "description": "Type"
- },
- {
- "key": "brand",
- "description": "Brand"
- },
- {
- "key": "brewery",
- "description": "Draft Beers"
- },
- {
- "key": "bridge",
- "description": "Type"
- },
- {
- "key": "bunker_type",
- "description": "Type"
- },
- {
- "key": "cables",
- "description": "Cables"
- },
- {
- "key": "camera:direction",
- "description": "Direction (Degrees Clockwise)"
- },
- {
- "key": "camera:mount",
- "description": "Camera Mount"
- },
- {
- "key": "camera:type",
- "value": "fixed",
- "description": "Camera Type"
- },
- {
- "key": "camera:type",
- "value": "panning",
- "description": "Camera Type"
- },
- {
- "key": "camera:type",
- "value": "dome",
- "description": "Camera Type"
- },
- {
- "key": "capacity",
- "description": "Capacity"
- },
- {
- "key": "castle_type",
- "description": "Type"
- },
- {
- "key": "clothes",
- "description": "Clothes"
- },
- {
- "key": "collection_times",
- "description": "Collection Times"
- },
- {
- "key": "comment",
- "description": "Changeset Comment"
- },
- {
- "key": "communication:",
- "description": "Communication Types"
- },
- {
- "key": "construction",
- "description": "Type"
- },
- {
- "key": "contact:webcam",
- "description": "Webcam URL"
- },
- {
- "key": "content",
- "description": "Content"
- },
- {
- "key": "country",
- "description": "Country"
- },
- {
- "key": "covered",
- "description": "Covered"
- },
- {
- "key": "crane:type",
- "value": "portal_crane",
- "description": "Crane Type"
- },
- {
- "key": "crane:type",
- "value": "floor-mounted_crane",
- "description": "Crane Type"
- },
- {
- "key": "crane:type",
- "value": "travel_lift",
- "description": "Crane Type"
- },
- {
- "key": "crop",
- "description": "Crops"
- },
- {
- "key": "crossing",
- "description": "Type"
- },
- {
- "key": "cuisine",
- "description": "Cuisines"
- },
- {
- "key": "currency:",
- "description": "Currency Types"
- },
- {
- "key": "cutting",
- "description": "Type"
- },
- {
- "key": "cycle_network",
- "description": "Network"
- },
- {
- "key": "cycleway:left",
- "value": "none",
- "description": "Bike Lanes"
- },
- {
- "key": "cycleway:left",
- "value": "lane",
- "description": "Bike Lanes"
- },
- {
- "key": "cycleway:left",
- "value": "shared_lane",
- "description": "Bike Lanes"
- },
- {
- "key": "cycleway:left",
- "value": "track",
- "description": "Bike Lanes"
- },
- {
- "key": "cycleway:left",
- "value": "share_busway",
- "description": "Bike Lanes"
- },
- {
- "key": "cycleway:left",
- "value": "opposite_lane",
- "description": "Bike Lanes"
- },
- {
- "key": "cycleway:left",
- "value": "opposite",
- "description": "Bike Lanes"
- },
- {
- "key": "cycleway:right",
- "value": "none",
- "description": "Bike Lanes"
- },
- {
- "key": "cycleway:right",
- "value": "lane",
- "description": "Bike Lanes"
- },
- {
- "key": "cycleway:right",
- "value": "shared_lane",
- "description": "Bike Lanes"
- },
- {
- "key": "cycleway:right",
- "value": "track",
- "description": "Bike Lanes"
- },
- {
- "key": "cycleway:right",
- "value": "share_busway",
- "description": "Bike Lanes"
- },
- {
- "key": "cycleway:right",
- "value": "opposite_lane",
- "description": "Bike Lanes"
- },
- {
- "key": "cycleway:right",
- "value": "opposite",
- "description": "Bike Lanes"
- },
- {
- "key": "dance:style",
- "description": "Dance Styles"
- },
- {
- "key": "date",
- "description": "Date"
- },
- {
- "key": "delivery",
- "description": "Delivery"
- },
- {
- "key": "denomination",
- "description": "Denomination"
- },
- {
- "key": "denotation",
- "description": "Denotation"
- },
- {
- "key": "description",
- "description": "Description"
- },
- {
- "key": "devices",
- "description": "Devices"
- },
- {
- "key": "diaper",
- "description": "Diaper Changing Available"
- },
- {
- "key": "direction",
- "value": "N",
- "description": "Direction"
- },
- {
- "key": "direction",
- "value": "E",
- "description": "Direction"
- },
- {
- "key": "direction",
- "value": "S",
- "description": "Direction"
- },
- {
- "key": "direction",
- "value": "W",
- "description": "Direction"
- },
- {
- "key": "direction",
- "value": "NE",
- "description": "Direction"
- },
- {
- "key": "direction",
- "value": "SE",
- "description": "Direction"
- },
- {
- "key": "direction",
- "value": "SW",
- "description": "Direction"
- },
- {
- "key": "direction",
- "value": "NW",
- "description": "Direction"
- },
- {
- "key": "direction",
- "value": "NNE",
- "description": "Direction"
- },
- {
- "key": "direction",
- "value": "ENE",
- "description": "Direction"
- },
- {
- "key": "direction",
- "value": "ESE",
- "description": "Direction"
- },
- {
- "key": "direction",
- "value": "SSE",
- "description": "Direction"
- },
- {
- "key": "direction",
- "value": "SSW",
- "description": "Direction"
- },
- {
- "key": "direction",
- "value": "WSW",
- "description": "Direction"
- },
- {
- "key": "direction",
- "value": "WNW",
- "description": "Direction"
- },
- {
- "key": "direction",
- "value": "NNW",
- "description": "Direction"
- },
- {
- "key": "direction",
- "value": "clockwise",
- "description": "Direction"
- },
- {
- "key": "direction",
- "value": "anticlockwise",
- "description": "Direction"
- },
- {
- "key": "direction",
- "value": "forward",
- "description": "Direction"
- },
- {
- "key": "direction",
- "value": "backward",
- "description": "Direction"
- },
- {
- "key": "direction",
- "value": "both",
- "description": "Direction"
- },
- {
- "key": "direction",
- "description": "Direction (Degrees Clockwise)"
- },
- {
- "key": "dispensing",
- "description": "Dispenses Prescriptions"
- },
- {
- "key": "display",
- "description": "Display"
- },
- {
- "key": "distance",
- "description": "Total Distance"
- },
- {
- "key": "dock",
- "description": "Type"
- },
- {
- "key": "drive_through",
- "description": "Drive-Through"
- },
- {
- "key": "duration",
- "description": "Duration"
- },
- {
- "key": "electrified",
- "value": "contact_line",
- "description": "Electrification"
- },
- {
- "key": "electrified",
- "value": "rail",
- "description": "Electrification"
- },
- {
- "key": "electrified",
- "value": "yes",
- "description": "Electrification"
- },
- {
- "key": "electrified",
- "value": "no",
- "description": "Electrification"
- },
- {
- "key": "ele",
- "description": "Elevation"
- },
- {
- "key": "email",
- "description": "Email"
- },
- {
- "key": "embankment",
- "description": "Type"
- },
- {
- "key": "emergency",
- "description": "Emergency"
- },
- {
- "key": "except",
- "description": "Exceptions"
- },
- {
- "key": "faces",
- "description": "Faces"
- },
- {
- "key": "fax",
- "description": "Fax"
- },
- {
- "key": "fee",
- "description": "Fee"
- },
- {
- "key": "fence_type",
- "description": "Type"
- },
- {
- "key": "fire_hydrant:position",
- "value": "lane",
- "description": "Position"
- },
- {
- "key": "fire_hydrant:position",
- "value": "parking_lot",
- "description": "Position"
- },
- {
- "key": "fire_hydrant:position",
- "value": "sidewalk",
- "description": "Position"
- },
- {
- "key": "fire_hydrant:position",
- "value": "green",
- "description": "Position"
- },
- {
- "key": "fire_hydrant:type",
- "value": "pillar",
- "description": "Type"
- },
- {
- "key": "fire_hydrant:type",
- "value": "underground",
- "description": "Type"
- },
- {
- "key": "fire_hydrant:type",
- "value": "wall",
- "description": "Type"
- },
- {
- "key": "fire_hydrant:type",
- "value": "pond",
- "description": "Type"
- },
- {
- "key": "fitness_station",
- "description": "Equipment Type"
- },
- {
- "key": "fixme",
- "description": "Fix Me"
- },
- {
- "key": "ford",
- "description": "Type"
- },
- {
- "key": "frequency",
- "description": "Operating Frequency"
- },
- {
- "key": "fuel:",
- "description": "Fuel Types"
- },
- {
- "key": "fuel",
- "description": "Fuel"
- },
- {
- "key": "gauge",
- "description": "Gauge"
- },
- {
- "key": "male",
- "value": "male",
- "description": "Gender"
- },
- {
- "key": "male",
- "value": "female",
- "description": "Gender"
- },
- {
- "key": "male",
- "value": "unisex",
- "description": "Gender"
- },
- {
- "key": "female",
- "value": "male",
- "description": "Gender"
- },
- {
- "key": "female",
- "value": "female",
- "description": "Gender"
- },
- {
- "key": "female",
- "value": "unisex",
- "description": "Gender"
- },
- {
- "key": "unisex",
- "value": "male",
- "description": "Gender"
- },
- {
- "key": "unisex",
- "value": "female",
- "description": "Gender"
- },
- {
- "key": "unisex",
- "value": "unisex",
- "description": "Gender"
- },
- {
- "key": "generator:method",
- "description": "Method"
- },
- {
- "key": "generator:output:electricity",
- "description": "Power Output"
- },
- {
- "key": "generator:source",
- "description": "Source"
- },
- {
- "key": "generator:type",
- "description": "Type"
- },
- {
- "key": "government",
- "description": "Type"
- },
- {
- "key": "grape_variety",
- "description": "Grape Varieties"
- },
- {
- "key": "handicap",
- "description": "Handicap"
- },
- {
- "key": "handrail",
- "description": "Handrail"
- },
- {
- "key": "hashtags",
- "description": "Suggested Hashtags"
- },
- {
- "key": "healthcare:speciality",
- "description": "Specialties"
- },
- {
- "key": "height",
- "description": "Height (Meters)"
- },
- {
- "key": "historic:civilization",
- "description": "Historic Civilization"
- },
- {
- "key": "hoops",
- "description": "Hoops"
- },
- {
- "key": "horse_scale",
- "value": "common",
- "description": "Horseback Riding Difficulty"
- },
- {
- "key": "horse_scale",
- "value": "demanding",
- "description": "Horseback Riding Difficulty"
- },
- {
- "key": "horse_scale",
- "value": "difficult",
- "description": "Horseback Riding Difficulty"
- },
- {
- "key": "horse_scale",
- "value": "critical",
- "description": "Horseback Riding Difficulty"
- },
- {
- "key": "horse_scale",
- "value": "dangerous",
- "description": "Horseback Riding Difficulty"
- },
- {
- "key": "horse_scale",
- "value": "impossible",
- "description": "Horseback Riding Difficulty"
- },
- {
- "key": "amenity",
- "value": "stables",
- "description": "Riding Stable"
- },
- {
- "key": "iata",
- "description": "IATA"
- },
- {
- "key": "icao",
- "description": "ICAO"
- },
- {
- "key": "incline",
- "value": "up",
- "description": "Incline"
- },
- {
- "key": "incline",
- "value": "down",
- "description": "Incline"
- },
- {
- "key": "incline",
- "description": "Incline"
- },
- {
- "key": "indoor",
- "description": "Indoor"
- },
- {
- "key": "industrial",
- "description": "Type"
- },
- {
- "key": "information",
- "description": "Type"
- },
- {
- "key": "inscription",
- "description": "Inscription"
- },
- {
- "key": "intermittent",
- "description": "Intermittent"
- },
- {
- "key": "internet_access",
- "value": "yes",
- "description": "Internet Access"
- },
- {
- "key": "internet_access",
- "value": "no",
- "description": "Internet Access"
- },
- {
- "key": "internet_access",
- "value": "wlan",
- "description": "Internet Access"
- },
- {
- "key": "internet_access",
- "value": "wired",
- "description": "Internet Access"
- },
- {
- "key": "internet_access",
- "value": "terminal",
- "description": "Internet Access"
- },
- {
- "key": "internet_access:fee",
- "description": "Internet Access Fee"
- },
- {
- "key": "internet_access:ssid",
- "description": "SSID (Network Name)"
- },
- {
- "key": "kerb",
- "description": "Curb"
- },
- {
- "key": "label",
- "description": "Label"
- },
- {
- "key": "lamp_type",
- "description": "Type"
- },
- {
- "key": "lanes",
- "description": "Lanes"
- },
- {
- "key": "layer",
- "description": "Layer"
- },
- {
- "key": "leaf_cycle",
- "value": "evergreen",
- "description": "Leaf Cycle"
- },
- {
- "key": "leaf_cycle",
- "value": "deciduous",
- "description": "Leaf Cycle"
- },
- {
- "key": "leaf_cycle",
- "value": "semi_evergreen",
- "description": "Leaf Cycle"
- },
- {
- "key": "leaf_cycle",
- "value": "semi_deciduous",
- "description": "Leaf Cycle"
- },
- {
- "key": "leaf_cycle",
- "value": "mixed",
- "description": "Leaf Cycle"
- },
- {
- "key": "leaf_type",
- "value": "broadleaved",
- "description": "Leaf Type"
- },
- {
- "key": "leaf_type",
- "value": "needleleaved",
- "description": "Leaf Type"
- },
- {
- "key": "leaf_type",
- "value": "leafless",
- "description": "Leaf Type"
- },
- {
- "key": "leaf_type",
- "value": "mixed",
- "description": "Leaf Type"
- },
- {
- "key": "length",
- "description": "Length (Meters)"
- },
- {
- "key": "level",
- "description": "Level"
- },
- {
- "key": "building:levels",
- "description": "Levels"
- },
- {
- "key": "lit",
- "description": "Lit"
- },
- {
- "key": "location",
- "description": "Location"
- },
- {
- "key": "map_size",
- "description": "Coverage"
- },
- {
- "key": "map_type",
- "description": "Type"
- },
- {
- "key": "maxheight",
- "description": "Max Height"
- },
- {
- "key": "maxspeed",
- "description": "Speed Limit"
- },
- {
- "key": "maxspeed:advisory",
- "description": "Advisory Speed Limit"
- },
- {
- "key": "maxstay",
- "description": "Max Stay"
- },
- {
- "key": "maxweight",
- "description": "Max Weight"
- },
- {
- "key": "memorial",
- "description": "Type"
- },
- {
- "key": "monitoring:",
- "description": "Monitoring"
- },
- {
- "key": "mtb:scale",
- "value": "0",
- "description": "Mountain Biking Difficulty"
- },
- {
- "key": "mtb:scale",
- "value": "1",
- "description": "Mountain Biking Difficulty"
- },
- {
- "key": "mtb:scale",
- "value": "2",
- "description": "Mountain Biking Difficulty"
- },
- {
- "key": "mtb:scale",
- "value": "3",
- "description": "Mountain Biking Difficulty"
- },
- {
- "key": "mtb:scale",
- "value": "4",
- "description": "Mountain Biking Difficulty"
- },
- {
- "key": "mtb:scale",
- "value": "5",
- "description": "Mountain Biking Difficulty"
- },
- {
- "key": "mtb:scale",
- "value": "6",
- "description": "Mountain Biking Difficulty"
- },
- {
- "key": "mtb:scale:imba",
- "value": "0",
- "description": "IMBA Trail Difficulty"
- },
- {
- "key": "mtb:scale:imba",
- "value": "1",
- "description": "IMBA Trail Difficulty"
- },
- {
- "key": "mtb:scale:imba",
- "value": "2",
- "description": "IMBA Trail Difficulty"
- },
- {
- "key": "mtb:scale:imba",
- "value": "3",
- "description": "IMBA Trail Difficulty"
- },
- {
- "key": "mtb:scale:imba",
- "value": "4",
- "description": "IMBA Trail Difficulty"
- },
- {
- "key": "mtb:scale:uphill",
- "value": "0",
- "description": "Mountain Biking Uphill Difficulty"
- },
- {
- "key": "mtb:scale:uphill",
- "value": "1",
- "description": "Mountain Biking Uphill Difficulty"
- },
- {
- "key": "mtb:scale:uphill",
- "value": "2",
- "description": "Mountain Biking Uphill Difficulty"
- },
- {
- "key": "mtb:scale:uphill",
- "value": "3",
- "description": "Mountain Biking Uphill Difficulty"
- },
- {
- "key": "mtb:scale:uphill",
- "value": "4",
- "description": "Mountain Biking Uphill Difficulty"
- },
- {
- "key": "mtb:scale:uphill",
- "value": "5",
- "description": "Mountain Biking Uphill Difficulty"
- },
- {
- "key": "name",
- "description": "Name"
- },
- {
- "key": "network",
- "value": "lcn",
- "description": "Network Type"
- },
- {
- "key": "network",
- "value": "rcn",
- "description": "Network Type"
- },
- {
- "key": "network",
- "value": "ncn",
- "description": "Network Type"
- },
- {
- "key": "network",
- "value": "icn",
- "description": "Network Type"
- },
- {
- "key": "network",
- "value": "lwn",
- "description": "Network Type"
- },
- {
- "key": "network",
- "value": "rwn",
- "description": "Network Type"
- },
- {
- "key": "network",
- "value": "nwn",
- "description": "Network Type"
- },
- {
- "key": "network",
- "value": "iwn",
- "description": "Network Type"
- },
- {
- "key": "network",
- "value": "lhn",
- "description": "Network Type"
- },
- {
- "key": "network",
- "value": "rhn",
- "description": "Network Type"
- },
- {
- "key": "network",
- "value": "nhn",
- "description": "Network Type"
- },
- {
- "key": "network",
- "value": "ihn",
- "description": "Network Type"
- },
- {
- "key": "network",
- "description": "Network"
- },
- {
- "key": "note",
- "description": "Note"
- },
- {
- "key": "oneway",
- "value": "yes",
- "description": "One Way"
- },
- {
- "key": "oneway",
- "value": "no",
- "description": "One Way"
- },
- {
- "key": "oneway",
- "value": "reversible",
- "description": "One Way"
- },
- {
- "key": "oneway",
- "value": "alternating",
- "description": "One Way"
- },
- {
- "key": "opening_hours",
- "description": "Hours"
- },
- {
- "key": "operator",
- "description": "Operator"
- },
- {
- "key": "outdoor_seating",
- "description": "Outdoor Seating"
- },
- {
- "key": "par",
- "description": "Par"
- },
- {
- "key": "park_ride",
- "description": "Park and Ride"
- },
- {
- "key": "parking",
- "value": "surface",
- "description": "Type"
- },
- {
- "key": "parking",
- "value": "multi-storey",
- "description": "Type"
- },
- {
- "key": "parking",
- "value": "underground",
- "description": "Type"
- },
- {
- "key": "parking",
- "value": "sheds",
- "description": "Type"
- },
- {
- "key": "parking",
- "value": "carports",
- "description": "Type"
- },
- {
- "key": "parking",
- "value": "garage_boxes",
- "description": "Type"
- },
- {
- "key": "parking",
- "value": "lane",
- "description": "Type"
- },
- {
- "key": "payment:",
- "description": "Payment Types"
- },
- {
- "key": "phases",
- "description": "Phases"
- },
- {
- "key": "phone",
- "description": "Telephone"
- },
- {
- "key": "piste:difficulty",
- "value": "novice",
- "description": "Difficulty"
- },
- {
- "key": "piste:difficulty",
- "value": "easy",
- "description": "Difficulty"
- },
- {
- "key": "piste:difficulty",
- "value": "intermediate",
- "description": "Difficulty"
- },
- {
- "key": "piste:difficulty",
- "value": "advanced",
- "description": "Difficulty"
- },
- {
- "key": "piste:difficulty",
- "value": "expert",
- "description": "Difficulty"
- },
- {
- "key": "piste:difficulty",
- "value": "freeride",
- "description": "Difficulty"
- },
- {
- "key": "piste:difficulty",
- "value": "extreme",
- "description": "Difficulty"
- },
- {
- "key": "piste:grooming",
- "value": "classic",
- "description": "Grooming"
- },
- {
- "key": "piste:grooming",
- "value": "mogul",
- "description": "Grooming"
- },
- {
- "key": "piste:grooming",
- "value": "backcountry",
- "description": "Grooming"
- },
- {
- "key": "piste:grooming",
- "value": "classic+skating",
- "description": "Grooming"
- },
- {
- "key": "piste:grooming",
- "value": "scooter",
- "description": "Grooming"
- },
- {
- "key": "piste:grooming",
- "value": "skating",
- "description": "Grooming"
- },
- {
- "key": "piste:type",
- "value": "downhill",
- "description": "Type"
- },
- {
- "key": "piste:type",
- "value": "nordic",
- "description": "Type"
- },
- {
- "key": "piste:type",
- "value": "skitour",
- "description": "Type"
- },
- {
- "key": "piste:type",
- "value": "sled",
- "description": "Type"
- },
- {
- "key": "piste:type",
- "value": "hike",
- "description": "Type"
- },
- {
- "key": "piste:type",
- "value": "sleigh",
- "description": "Type"
- },
- {
- "key": "piste:type",
- "value": "ice_skate",
- "description": "Type"
- },
- {
- "key": "piste:type",
- "value": "snow_park",
- "description": "Type"
- },
- {
- "key": "piste:type",
- "value": "playground",
- "description": "Type"
- },
- {
- "key": "plant",
- "description": "Plant"
- },
- {
- "key": "plant:output:electricity",
- "description": "Power Output"
- },
- {
- "key": "baby",
- "description": "Baby Seat"
- },
- {
- "key": "max_age",
- "description": "Maximum Age"
- },
- {
- "key": "min_age",
- "description": "Minimum Age"
- },
- {
- "key": "population",
- "description": "Population"
- },
- {
- "key": "power_supply",
- "description": "Power Supply"
- },
- {
- "key": "produce",
- "description": "Produce"
- },
- {
- "key": "product",
- "description": "Products"
- },
- {
- "key": "railway:position",
- "description": "Milestone Position"
- },
- {
- "key": "railway:signal:direction",
- "value": "forward",
- "description": "Direction"
- },
- {
- "key": "railway:signal:direction",
- "value": "backward",
- "description": "Direction"
- },
- {
- "key": "railway:signal:direction",
- "value": "both",
- "description": "Direction"
- },
- {
- "key": "rating",
- "description": "Power Rating"
- },
- {
- "key": "recycling:",
- "description": "Accepts"
- },
- {
- "key": "ref",
- "description": "Gate Number, Hole Number, Junction Number, Platform Number, Road Number, Route Number, Runway Number, Stop Number, Taxiway Name, Reference Code"
- },
- {
- "key": "ref:isil",
- "description": "ISIL Code"
- },
- {
- "key": "type",
- "description": "Type"
- },
- {
- "key": "religion",
- "description": "Religion"
- },
- {
- "key": "restriction",
- "description": "Type"
- },
- {
- "key": "rooms",
- "description": "Rooms"
- },
- {
- "key": "route_master",
- "description": "Type"
- },
- {
- "key": "route",
- "description": "Type"
- },
- {
- "key": "sac_scale",
- "value": "hiking",
- "description": "Hiking Difficulty"
- },
- {
- "key": "sac_scale",
- "value": "mountain_hiking",
- "description": "Hiking Difficulty"
- },
- {
- "key": "sac_scale",
- "value": "demanding_mountain_hiking",
- "description": "Hiking Difficulty"
- },
- {
- "key": "sac_scale",
- "value": "alpine_hiking",
- "description": "Hiking Difficulty"
- },
- {
- "key": "sac_scale",
- "value": "demanding_alpine_hiking",
- "description": "Hiking Difficulty"
- },
- {
- "key": "sac_scale",
- "value": "difficult_alpine_hiking",
- "description": "Hiking Difficulty"
- },
- {
- "key": "sanitary_dump_station",
- "description": "Toilet Disposal"
- },
- {
- "key": "seasonal",
- "description": "Seasonal"
- },
- {
- "key": "second_hand",
- "value": "yes",
- "description": "Sells Used"
- },
- {
- "key": "second_hand",
- "value": "no",
- "description": "Sells Used"
- },
- {
- "key": "second_hand",
- "value": "only",
- "description": "Sells Used"
- },
- {
- "key": "service",
- "value": "spur",
- "description": "Service Type"
- },
- {
- "key": "service",
- "value": "yard",
- "description": "Service Type"
- },
- {
- "key": "service",
- "value": "siding",
- "description": "Service Type"
- },
- {
- "key": "service",
- "value": "crossover",
- "description": "Service Type"
- },
- {
- "key": "service_times",
- "description": "Service Times"
- },
- {
- "key": "service",
- "description": "Type"
- },
- {
- "key": "service:bicycle:",
- "description": "Services"
- },
- {
- "key": "service:vehicle:",
- "description": "Services"
- },
- {
- "key": "shelter_type",
- "description": "Type"
- },
- {
- "key": "shelter",
- "description": "Shelter"
- },
- {
- "key": "site",
- "description": "Type"
- },
- {
- "key": "smoking",
- "value": "no",
- "description": "Smoking"
- },
- {
- "key": "smoking",
- "value": "separated",
- "description": "Smoking"
- },
- {
- "key": "smoking",
- "value": "isolated",
- "description": "Smoking"
- },
- {
- "key": "smoking",
- "value": "outside",
- "description": "Smoking"
- },
- {
- "key": "smoking",
- "value": "yes",
- "description": "Smoking"
- },
- {
- "key": "smoking",
- "value": "dedicated",
- "description": "Smoking"
- },
- {
- "key": "smoothness",
- "value": "excellent",
- "description": "Smoothness"
- },
- {
- "key": "smoothness",
- "value": "good",
- "description": "Smoothness"
- },
- {
- "key": "smoothness",
- "value": "intermediate",
- "description": "Smoothness"
- },
- {
- "key": "smoothness",
- "value": "bad",
- "description": "Smoothness"
- },
- {
- "key": "smoothness",
- "value": "very_bad",
- "description": "Smoothness"
- },
- {
- "key": "smoothness",
- "value": "horrible",
- "description": "Smoothness"
- },
- {
- "key": "smoothness",
- "value": "very_horrible",
- "description": "Smoothness"
- },
- {
- "key": "smoothness",
- "value": "impassable",
- "description": "Smoothness"
- },
- {
- "key": "social_facility:for",
- "description": "People Served"
- },
- {
- "key": "social_facility",
- "description": "Type"
- },
- {
- "key": "source",
- "description": "Sources"
- },
- {
- "key": "sport",
- "description": "Sports"
- },
- {
- "key": "stars",
- "description": "Stars"
- },
- {
- "key": "start_date",
- "description": "Start Date"
- },
- {
- "key": "step_count",
- "description": "Number of Steps"
- },
- {
- "key": "stop",
- "value": "all",
- "description": "Stop Type"
- },
- {
- "key": "stop",
- "value": "minor",
- "description": "Stop Type"
- },
- {
- "key": "tunnel",
- "value": "tunnel",
- "description": "Structure"
- },
- {
- "key": "bridge",
- "value": "bridge",
- "description": "Structure"
- },
- {
- "key": "bridge",
- "value": "tunnel",
- "description": "Structure"
- },
- {
- "key": "bridge",
- "value": "embankment",
- "description": "Structure"
- },
- {
- "key": "bridge",
- "value": "cutting",
- "description": "Structure"
- },
- {
- "key": "bridge",
- "value": "ford",
- "description": "Structure"
- },
- {
- "key": "tunnel",
- "value": "bridge",
- "description": "Structure"
- },
- {
- "key": "tunnel",
- "value": "embankment",
- "description": "Structure"
- },
- {
- "key": "tunnel",
- "value": "cutting",
- "description": "Structure"
- },
- {
- "key": "tunnel",
- "value": "ford",
- "description": "Structure"
- },
- {
- "key": "embankment",
- "value": "bridge",
- "description": "Structure"
- },
- {
- "key": "embankment",
- "value": "tunnel",
- "description": "Structure"
- },
- {
- "key": "embankment",
- "value": "embankment",
- "description": "Structure"
- },
- {
- "key": "embankment",
- "value": "cutting",
- "description": "Structure"
- },
- {
- "key": "embankment",
- "value": "ford",
- "description": "Structure"
- },
- {
- "key": "cutting",
- "value": "bridge",
- "description": "Structure"
- },
- {
- "key": "cutting",
- "value": "tunnel",
- "description": "Structure"
- },
- {
- "key": "cutting",
- "value": "embankment",
- "description": "Structure"
- },
- {
- "key": "cutting",
- "value": "cutting",
- "description": "Structure"
- },
- {
- "key": "cutting",
- "value": "ford",
- "description": "Structure"
- },
- {
- "key": "ford",
- "value": "bridge",
- "description": "Structure"
- },
- {
- "key": "ford",
- "value": "tunnel",
- "description": "Structure"
- },
- {
- "key": "ford",
- "value": "embankment",
- "description": "Structure"
- },
- {
- "key": "ford",
- "value": "cutting",
- "description": "Structure"
- },
- {
- "key": "ford",
- "value": "ford",
- "description": "Structure"
- },
- {
- "key": "studio",
- "description": "Type"
- },
- {
- "key": "substance",
- "description": "Substance"
- },
- {
- "key": "substation",
- "description": "Type"
- },
- {
- "key": "supervised",
- "description": "Supervised"
- },
- {
- "key": "support",
- "description": "Support"
- },
- {
- "key": "surface",
- "description": "Surface"
- },
- {
- "key": "surveillance",
- "description": "Surveillance Kind"
- },
- {
- "key": "surveillance:type",
- "value": "guard",
- "description": "Surveillance Type"
- },
- {
- "key": "surveillance:type",
- "value": "ALPR",
- "description": "Surveillance Type"
- },
- {
- "key": "surveillance:zone",
- "description": "Surveillance Zone"
- },
- {
- "key": "switch",
- "value": "mechanical",
- "description": "Type"
- },
- {
- "key": "switch",
- "value": "circuit_breaker",
- "description": "Type"
- },
- {
- "key": "switch",
- "value": "disconnector",
- "description": "Type"
- },
- {
- "key": "switch",
- "value": "earthing",
- "description": "Type"
- },
- {
- "key": "tactile_paving",
- "description": "Tactile Paving"
- },
- {
- "key": "takeaway",
- "value": "yes",
- "description": "Takeaway"
- },
- {
- "key": "takeaway",
- "value": "no",
- "description": "Takeaway"
- },
- {
- "key": "takeaway",
- "value": "only",
- "description": "Takeaway"
- },
- {
- "key": "toilets:disposal",
- "value": "flush",
- "description": "Disposal"
- },
- {
- "key": "toilets:disposal",
- "value": "pitlatrine",
- "description": "Disposal"
- },
- {
- "key": "toilets:disposal",
- "value": "chemical",
- "description": "Disposal"
- },
- {
- "key": "toilets:disposal",
- "value": "bucket",
- "description": "Disposal"
- },
- {
- "key": "toll",
- "description": "Toll"
- },
- {
- "key": "tomb",
- "description": "Type"
- },
- {
- "key": "tower:construction",
- "description": "Construction"
- },
- {
- "key": "tower:type",
- "description": "Type"
- },
- {
- "key": "tracktype",
- "value": "grade1",
- "description": "Track Type"
- },
- {
- "key": "tracktype",
- "value": "grade2",
- "description": "Track Type"
- },
- {
- "key": "tracktype",
- "value": "grade3",
- "description": "Track Type"
- },
- {
- "key": "tracktype",
- "value": "grade4",
- "description": "Track Type"
- },
- {
- "key": "tracktype",
- "value": "grade5",
- "description": "Track Type"
- },
- {
- "key": "trade",
- "description": "Type"
- },
- {
- "key": "traffic_signals",
- "description": "Type"
- },
- {
- "key": "traffic_signals:direction",
- "value": "forward",
- "description": "Direction"
- },
- {
- "key": "traffic_signals:direction",
- "value": "backward",
- "description": "Direction"
- },
- {
- "key": "traffic_signals:direction",
- "value": "both",
- "description": "Direction"
- },
- {
- "key": "trail_visibility",
- "value": "excellent",
- "description": "Trail Visibility"
- },
- {
- "key": "trail_visibility",
- "value": "good",
- "description": "Trail Visibility"
- },
- {
- "key": "trail_visibility",
- "value": "intermediate",
- "description": "Trail Visibility"
- },
- {
- "key": "trail_visibility",
- "value": "bad",
- "description": "Trail Visibility"
- },
- {
- "key": "trail_visibility",
- "value": "horrible",
- "description": "Trail Visibility"
- },
- {
- "key": "trail_visibility",
- "value": "no",
- "description": "Trail Visibility"
- },
- {
- "key": "transformer",
- "value": "distribution",
- "description": "Type"
- },
- {
- "key": "transformer",
- "value": "generator",
- "description": "Type"
- },
- {
- "key": "transformer",
- "value": "converter",
- "description": "Type"
- },
- {
- "key": "transformer",
- "value": "traction",
- "description": "Type"
- },
- {
- "key": "transformer",
- "value": "auto",
- "description": "Type"
- },
- {
- "key": "transformer",
- "value": "phase_angle_regulator",
- "description": "Type"
- },
- {
- "key": "transformer",
- "value": "auxiliary",
- "description": "Type"
- },
- {
- "key": "transformer",
- "value": "yes",
- "description": "Type"
- },
- {
- "key": "trees",
- "description": "Trees"
- },
- {
- "key": "tunnel",
- "description": "Type"
- },
- {
- "key": "usage",
- "value": "main",
- "description": "Usage Type"
- },
- {
- "key": "usage",
- "value": "branch",
- "description": "Usage Type"
- },
- {
- "key": "usage",
- "value": "industrial",
- "description": "Usage Type"
- },
- {
- "key": "usage",
- "value": "military",
- "description": "Usage Type"
- },
- {
- "key": "usage",
- "value": "test",
- "description": "Usage Type"
- },
- {
- "key": "usage",
- "value": "tourism",
- "description": "Usage Type"
- },
- {
- "key": "vending",
- "description": "Types of Goods"
- },
- {
- "key": "visibility",
- "value": "house",
- "description": "Visibility"
- },
- {
- "key": "visibility",
- "value": "street",
- "description": "Visibility"
- },
- {
- "key": "visibility",
- "value": "area",
- "description": "Visibility"
- },
- {
- "key": "volcano:status",
- "value": "active",
- "description": "Volcano Status"
- },
- {
- "key": "volcano:status",
- "value": "dormant",
- "description": "Volcano Status"
- },
- {
- "key": "volcano:status",
- "value": "extinct",
- "description": "Volcano Status"
- },
- {
- "key": "volcano:type",
- "value": "stratovolcano",
- "description": "Volcano Type"
- },
- {
- "key": "volcano:type",
- "value": "shield",
- "description": "Volcano Type"
- },
- {
- "key": "volcano:type",
- "value": "scoria",
- "description": "Volcano Type"
- },
- {
- "key": "voltage",
- "description": "Voltage"
- },
- {
- "key": "voltage:primary",
- "description": "Primary Voltage"
- },
- {
- "key": "voltage:secondary",
- "description": "Secondary Voltage"
- },
- {
- "key": "voltage:tertiary",
- "description": "Tertiary Voltage"
- },
- {
- "key": "wall",
- "description": "Type"
- },
- {
- "key": "water_point",
- "description": "Water Point"
- },
- {
- "key": "water",
- "description": "Type"
- },
- {
- "key": "website",
- "description": "Website"
- },
- {
- "key": "wetland",
- "description": "Type"
- },
- {
- "key": "wheelchair",
- "description": "Wheelchair Access"
- },
- {
- "key": "wholesale",
- "description": "Wholesale"
- },
- {
- "key": "width",
- "description": "Width (Meters)"
- },
- {
- "key": "wikipedia",
- "description": "Wikipedia"
- },
- {
- "key": "wikidata",
- "description": "Wikipedia"
- },
- {
- "key": "windings",
- "description": "Windings"
- },
- {
- "key": "windings:configuration",
- "value": "star",
- "description": "Windings Configuration"
- },
- {
- "key": "windings:configuration",
- "value": "delta",
- "description": "Windings Configuration"
- },
- {
- "key": "windings:configuration",
- "value": "open-delta",
- "description": "Windings Configuration"
- },
- {
- "key": "windings:configuration",
- "value": "zigzag",
- "description": "Windings Configuration"
- },
- {
- "key": "windings:configuration",
- "value": "open",
- "description": "Windings Configuration"
- },
- {
- "key": "windings:configuration",
- "value": "scott",
- "description": "Windings Configuration"
- },
- {
- "key": "windings:configuration",
- "value": "leblanc",
- "description": "Windings Configuration"
- }
- ]
+ {
+ "key": "aeroway",
+ "description": "Aeroway, Type",
+ "object_types": ["node", "way", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/airport-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "description": "Amenity, Type",
+ "object_types": ["node", "area"]
+ },
+ {
+ "key": "junction",
+ "value": "circular",
+ "description": "Traffic Circle",
+ "object_types": ["node", "way"]
+ },
+ {
+ "key": "highway",
+ "description": "Highway, Type",
+ "object_types": ["node", "way", "area"]
+ },
+ {
+ "key": "place",
+ "description": "Place, Type",
+ "object_types": ["node", "area"]
+ },
+ {
+ "key": "power",
+ "description": "Power, Type",
+ "object_types": ["node", "way", "area"]
+ },
+ {
+ "key": "railway",
+ "description": "Railway, Type",
+ "object_types": ["node", "way", "area"]
+ },
+ {
+ "key": "junction",
+ "value": "roundabout",
+ "description": "Roundabout",
+ "object_types": ["node", "way"]
+ },
+ {
+ "key": "waterway",
+ "description": "Waterway, Type",
+ "object_types": ["node", "way", "area"]
+ },
+ {
+ "key": "addr:*",
+ "description": "Address",
+ "object_types": ["node", "area"]
+ },
+ {
+ "key": "advertising",
+ "value": "billboard",
+ "description": "Billboard",
+ "object_types": ["node", "way"]
+ },
+ {
+ "key": "advertising",
+ "value": "column",
+ "description": "Advertising Column",
+ "object_types": ["node", "area"]
+ },
+ {
+ "key": "aerialway",
+ "value": "station",
+ "description": "Aerialway Station",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/aerialway-15.svg?sanitize=true"
+ },
+ {
+ "key": "aerialway",
+ "value": "cable_car",
+ "description": "Cable Car",
+ "object_types": ["way"]
+ },
+ {
+ "key": "aerialway",
+ "value": "chair_lift",
+ "description": "Chair Lift",
+ "object_types": ["way"]
+ },
+ {
+ "key": "aerialway",
+ "value": "drag_lift",
+ "description": "Drag Lift",
+ "object_types": ["way"]
+ },
+ {
+ "key": "aerialway",
+ "value": "gondola",
+ "description": "Gondola",
+ "object_types": ["way"]
+ },
+ {
+ "key": "aerialway",
+ "value": "goods",
+ "description": "Goods Aerialway",
+ "object_types": ["way"]
+ },
+ {
+ "key": "aerialway",
+ "value": "magic_carpet",
+ "description": "Magic Carpet Lift",
+ "object_types": ["way"]
+ },
+ {
+ "key": "aerialway",
+ "value": "mixed_lift",
+ "description": "Mixed Lift",
+ "object_types": ["way"]
+ },
+ {
+ "key": "aerialway",
+ "value": "platter",
+ "description": "Platter Lift",
+ "object_types": ["way"]
+ },
+ {
+ "key": "aerialway",
+ "value": "pylon",
+ "description": "Aerialway Pylon",
+ "object_types": ["node"]
+ },
+ {
+ "key": "aerialway",
+ "value": "rope_tow",
+ "description": "Rope Tow Lift",
+ "object_types": ["way"]
+ },
+ {
+ "key": "aerialway",
+ "value": "t-bar",
+ "description": "T-bar Lift",
+ "object_types": ["way"]
+ },
+ {
+ "key": "aeroway",
+ "value": "aerodrome",
+ "description": "Airport",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/airport-15.svg?sanitize=true"
+ },
+ {
+ "key": "aeroway",
+ "value": "apron",
+ "description": "Apron",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/airport-15.svg?sanitize=true"
+ },
+ {
+ "key": "aeroway",
+ "value": "gate",
+ "description": "Airport Gate",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/airport-15.svg?sanitize=true"
+ },
+ {
+ "key": "aeroway",
+ "value": "hangar",
+ "description": "Hangar",
+ "object_types": ["area"]
+ },
+ {
+ "key": "aeroway",
+ "value": "helipad",
+ "description": "Helipad",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/heliport-15.svg?sanitize=true"
+ },
+ {
+ "key": "aeroway",
+ "value": "runway",
+ "description": "Runway",
+ "object_types": ["way", "area"]
+ },
+ {
+ "key": "aeroway",
+ "value": "taxiway",
+ "description": "Taxiway",
+ "object_types": ["way"]
+ },
+ {
+ "key": "aeroway",
+ "value": "terminal",
+ "description": "Airport Terminal",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/airport-15.svg?sanitize=true"
+ },
+ {
+ "key": "allotments",
+ "value": "plot",
+ "description": "Community Garden Plot",
+ "object_types": ["area"]
+ },
+ {
+ "key": "amenity",
+ "value": "bus_station",
+ "description": "Bus Station / Terminal",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bus-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "coworking_space",
+ "description": "Coworking Space",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/commercial-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "ferry_terminal",
+ "description": "Ferry Station / Terminal",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/ferry-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "nursing_home",
+ "description": "Nursing Home",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/wheelchair-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "register_office",
+ "description": "Register Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "scrapyard",
+ "description": "Scrap Yard",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "swimming_pool",
+ "description": "Swimming Pool",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/swimming-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "animal_boarding",
+ "description": "Animal Boarding Facility",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/veterinary-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "animal_breeding",
+ "description": "Animal Breeding Facility",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/veterinary-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "animal_shelter",
+ "description": "Animal Shelter",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/veterinary-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "arts_centre",
+ "description": "Arts Center",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/theatre-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "atm",
+ "description": "ATM",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bank-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "bank",
+ "description": "Bank",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bank-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "bar",
+ "description": "Bar",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bar-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "bbq",
+ "description": "Barbecue/Grill",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bbq-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "bench",
+ "description": "Bench",
+ "object_types": ["node", "way"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/bench.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "bicycle_parking",
+ "description": "Bicycle Parking",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bicycle-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "bicycle_rental",
+ "description": "Bicycle Rental",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bicycle-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "bicycle_repair_station",
+ "description": "Bicycle Repair Tool Stand",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bicycle-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "biergarten",
+ "description": "Beer Garden",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/beer-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "boat_rental",
+ "description": "Boat Rental",
+ "object_types": ["node", "area"]
+ },
+ {
+ "key": "amenity",
+ "value": "bureau_de_change",
+ "description": "Currency Exchange",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bank-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "cafe",
+ "description": "Cafe",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cafe-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "car_pooling",
+ "description": "Car Pooling",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "car_rental",
+ "description": "Car Rental",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "car_sharing",
+ "description": "Car Sharing",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "car_wash",
+ "description": "Car Wash",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "casino",
+ "description": "Casino",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/dice.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "charging_station",
+ "description": "Charging Station",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "childcare",
+ "description": "Nursery/Childcare",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/school-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "cinema",
+ "description": "Cinema",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cinema-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "clinic",
+ "description": "Clinic",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/doctor-15.svg?sanitize=true"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "abortion",
+ "description": "Abortion Clinic",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "fertility",
+ "description": "Fertility Clinic",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "clock",
+ "description": "Clock",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/clock.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "college",
+ "description": "College Grounds",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/college-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "community_centre",
+ "description": "Community Center",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "compressed_air",
+ "description": "Compressed Air",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "courthouse",
+ "description": "Courthouse",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "crematorium",
+ "description": "Crematorium",
+ "object_types": ["area", "node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cemetery-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "dentist",
+ "description": "Dentist",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/dentist-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "doctors",
+ "description": "Doctor",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/doctor-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "dojo",
+ "description": "Dojo / Martial Arts Academy",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "drinking_water",
+ "description": "Drinking Water",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/drinking-water-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "driving_school",
+ "description": "Driving School",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "embassy",
+ "description": "Embassy",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/embassy-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "fast_food",
+ "description": "Fast Food",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fast-food-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "fire_station",
+ "description": "Fire Station",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fire-station-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "food_court",
+ "description": "Food Court",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "fountain",
+ "description": "Fountain",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/fountain.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "fuel",
+ "description": "Gas Station",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fuel-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "grave_yard",
+ "description": "Graveyard",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cemetery-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "grit_bin",
+ "description": "Grit Bin",
+ "object_types": ["node"]
+ },
+ {
+ "key": "amenity",
+ "value": "hospital",
+ "description": "Hospital Grounds",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "hunting_stand",
+ "description": "Hunting Stand",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/binoculars.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "ice_cream",
+ "description": "Ice Cream Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/ice-cream-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "internet_cafe",
+ "description": "Internet Cafe",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/antenna.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "kindergarten",
+ "description": "Preschool/Kindergarten Grounds",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/school-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "library",
+ "description": "Library",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/library-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "love_hotel",
+ "description": "Love Hotel",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/heart-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "marketplace",
+ "description": "Marketplace",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "monastery",
+ "description": "Monastery Grounds",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/place-of-worship-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "motorcycle_parking",
+ "description": "Motorcycle Parking",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-motorcycle.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "music_school",
+ "description": "Music School",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/school-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "nightclub",
+ "description": "Nightclub",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bar-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "parking_entrance",
+ "description": "Parking Garage Entrance/Exit",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/entrance-alt1-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "parking_space",
+ "description": "Parking Space",
+ "object_types": ["node", "area"]
+ },
+ {
+ "key": "amenity",
+ "value": "parking",
+ "description": "Car Parking",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/parking-15.svg?sanitize=true"
+ },
+ {
+ "key": "shelter_type",
+ "value": "pavilion",
+ "description": "Pavilion",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shelter-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "pharmacy",
+ "description": "Pharmacy",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pharmacy-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "place_of_worship",
+ "description": "Place of Worship",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/place-of-worship-15.svg?sanitize=true"
+ },
+ {
+ "key": "religion",
+ "value": "buddhist",
+ "description": "Buddhist Temple",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/buddhism-15.svg?sanitize=true"
+ },
+ {
+ "key": "religion",
+ "value": "christian",
+ "description": "Church",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/religious-christian-15.svg?sanitize=true"
+ },
+ {
+ "key": "religion",
+ "value": "hindu",
+ "description": "Hindu Temple",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/hinduism.svg?sanitize=true"
+ },
+ {
+ "key": "religion",
+ "value": "jewish",
+ "description": "Synagogue",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/religious-jewish-15.svg?sanitize=true"
+ },
+ {
+ "key": "religion",
+ "value": "muslim",
+ "description": "Mosque",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/religious-muslim-15.svg?sanitize=true"
+ },
+ {
+ "key": "religion",
+ "value": "shinto",
+ "description": "Shinto Shrine",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/shinto.svg?sanitize=true"
+ },
+ {
+ "key": "religion",
+ "value": "sikh",
+ "description": "Sikh Temple",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/sikhism.svg?sanitize=true"
+ },
+ {
+ "key": "religion",
+ "value": "taoist",
+ "description": "Taoist Temple",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/taoism.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "planetarium",
+ "description": "Planetarium",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/museum-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "police",
+ "description": "Police",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/police-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "post_box",
+ "description": "Mailbox",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/post-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "post_office",
+ "description": "Post Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/post-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "prison",
+ "description": "Prison Grounds",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/prison-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "pub",
+ "description": "Pub",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/beer-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "public_bath",
+ "description": "Public Bath",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "public_bookcase",
+ "description": "Public Bookcase",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/library-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "ranger_station",
+ "description": "Ranger Station",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/ranger-station-15.svg?sanitize=true"
+ },
+ {
+ "key": "recycling_type",
+ "value": "centre",
+ "description": "Recycling Center",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/recycling-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "recycling",
+ "description": "Recycling Container",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/recycling-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "restaurant",
+ "description": "Restaurant",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "sanitary_dump_station",
+ "description": "RV Toilet Disposal",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/storage_tank.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "school",
+ "description": "School Grounds",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/school-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "shelter",
+ "description": "Shelter",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shelter-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "shower",
+ "description": "Shower",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/shower.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "smoking_area",
+ "description": "Smoking Area",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-smoking.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "social_facility",
+ "description": "Social Facility",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/social_facility.svg?sanitize=true"
+ },
+ {
+ "key": "social_facility",
+ "value": "food_bank",
+ "description": "Food Bank",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/social_facility.svg?sanitize=true"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "senior",
+ "description": "Elderly Group Home, Nursing Home",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/wheelchair-15.svg?sanitize=true"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "homeless",
+ "description": "Homeless Shelter",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/social_facility.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "studio",
+ "description": "Studio",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/karaoke-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "taxi",
+ "description": "Taxi Stand",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-taxi.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "telephone",
+ "description": "Telephone",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/telephone-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "theatre",
+ "description": "Theater",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/theatre-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "toilets",
+ "description": "Toilets",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/toilet-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "townhall",
+ "description": "Town Hall",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "university",
+ "description": "University Grounds",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/college-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "vending_machine",
+ "description": "Vending Machine",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
+ },
+ {
+ "key": "vending",
+ "value": "news_papers",
+ "description": "Newspaper Vending Machine",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
+ },
+ {
+ "key": "vending",
+ "value": "cigarettes",
+ "description": "Cigarette Vending Machine",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
+ },
+ {
+ "key": "vending",
+ "value": "coffee",
+ "description": "Coffee Vending Machine",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
+ },
+ {
+ "key": "vending",
+ "value": "condoms",
+ "description": "Condom Vending Machine",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
+ },
+ {
+ "key": "vending",
+ "value": "drinks",
+ "description": "Drink Vending Machine",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
+ },
+ {
+ "key": "vending",
+ "value": "electronics",
+ "description": "Electronics Vending Machine",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
+ },
+ {
+ "key": "vending",
+ "value": "elongated_coin",
+ "description": "Flat Coin Vending Machine",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
+ },
+ {
+ "key": "vending",
+ "value": "excrement_bags",
+ "description": "Excrement Bag Vending Machine",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
+ },
+ {
+ "key": "vending",
+ "value": "feminine_hygiene",
+ "description": "Feminine Hygiene Vending Machine",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
+ },
+ {
+ "key": "vending",
+ "value": "food",
+ "description": "Food Vending Machine",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
+ },
+ {
+ "key": "vending",
+ "value": "fuel",
+ "description": "Gas Pump",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fuel-15.svg?sanitize=true"
+ },
+ {
+ "key": "vending",
+ "value": "ice_cream",
+ "description": "Ice Cream Vending Machine",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
+ },
+ {
+ "key": "vending",
+ "value": "newspapers",
+ "description": "Newspaper Vending Machine",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
+ },
+ {
+ "key": "vending",
+ "value": "parcel_pickup;parcel_mail_in",
+ "description": "Parcel Pickup/Dropoff Vending Machine",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
+ },
+ {
+ "key": "vending",
+ "value": "parking_tickets",
+ "description": "Parking Ticket Vending Machine",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
+ },
+ {
+ "key": "vending",
+ "value": "public_transport_tickets",
+ "description": "Transit Ticket Vending Machine",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
+ },
+ {
+ "key": "vending",
+ "value": "stamps",
+ "description": "Postage Vending Machine",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
+ },
+ {
+ "key": "vending",
+ "value": "sweets",
+ "description": "Snack Vending Machine",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/vending_machine.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "veterinary",
+ "description": "Veterinary",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/veterinary-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "waste_basket",
+ "description": "Waste Basket",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/waste-basket-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "waste_disposal",
+ "description": "Garbage Dumpster",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/waste-basket-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "waste_transfer_station",
+ "description": "Waste Transfer Station",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/waste-basket-15.svg?sanitize=true"
+ },
+ {
+ "key": "waste",
+ "value": "dog_excrement",
+ "description": "Dog Excrement Bin",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/waste-basket-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "water_point",
+ "description": "RV Drinking Water",
+ "object_types": ["area", "node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/drinking-water-15.svg?sanitize=true"
+ },
+ {
+ "key": "amenity",
+ "value": "watering_place",
+ "description": "Animal Watering Place",
+ "object_types": ["area", "node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/drinking-water-15.svg?sanitize=true"
+ },
+ {
+ "key": "area",
+ "value": "yes",
+ "description": "Area, Pedestrian Area",
+ "object_types": ["area"]
+ },
+ {
+ "key": "area:highway",
+ "description": "Road Surface, Type",
+ "object_types": ["area"]
+ },
+ {
+ "key": "attraction",
+ "value": "amusement_ride",
+ "description": "Amusement Ride",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/amusement-park-15.svg?sanitize=true"
+ },
+ {
+ "key": "attraction",
+ "value": "animal",
+ "description": "Animal",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/zoo-15.svg?sanitize=true"
+ },
+ {
+ "key": "attraction",
+ "value": "big_wheel",
+ "description": "Big Wheel",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/amusement-park-15.svg?sanitize=true"
+ },
+ {
+ "key": "attraction",
+ "value": "bumper_car",
+ "description": "Bumper Car",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
+ },
+ {
+ "key": "attraction",
+ "value": "bungee_jumping",
+ "description": "Bungee Jumping",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "attraction",
+ "value": "carousel",
+ "description": "Carousel",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/horse-riding-15.svg?sanitize=true"
+ },
+ {
+ "key": "attraction",
+ "value": "dark_ride",
+ "description": "Dark Ride",
+ "object_types": ["node", "way", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/rail-metro-15.svg?sanitize=true"
+ },
+ {
+ "key": "attraction",
+ "value": "drop_tower",
+ "description": "Drop Tower",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tower.svg?sanitize=true"
+ },
+ {
+ "key": "attraction",
+ "value": "maze",
+ "description": "Maze",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/amusement-park-15.svg?sanitize=true"
+ },
+ {
+ "key": "attraction",
+ "value": "pirate_ship",
+ "description": "Pirate Ship",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/danger-15.svg?sanitize=true"
+ },
+ {
+ "key": "attraction",
+ "value": "river_rafting",
+ "description": "River Rafting",
+ "object_types": ["node", "way"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/ferry-15.svg?sanitize=true"
+ },
+ {
+ "key": "attraction",
+ "value": "roller_coaster",
+ "description": "Roller Coaster",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/amusement-park-15.svg?sanitize=true"
+ },
+ {
+ "key": "attraction",
+ "value": "train",
+ "description": "Tourist Train",
+ "object_types": ["node", "way"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/rail-15.svg?sanitize=true"
+ },
+ {
+ "key": "attraction",
+ "value": "water_slide",
+ "description": "Water Slide",
+ "object_types": ["way", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/swimming-15.svg?sanitize=true"
+ },
+ {
+ "key": "barrier",
+ "description": "Barrier, Type",
+ "object_types": ["node", "way", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"
+ },
+ {
+ "key": "barrier",
+ "value": "entrance",
+ "description": "Entrance",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/entrance-alt1-15.svg?sanitize=true"
+ },
+ {
+ "key": "barrier",
+ "value": "block",
+ "description": "Block",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"
+ },
+ {
+ "key": "barrier",
+ "value": "bollard",
+ "description": "Bollard",
+ "object_types": ["node", "way"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"
+ },
+ {
+ "key": "barrier",
+ "value": "border_control",
+ "description": "Border Control",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"
+ },
+ {
+ "key": "barrier",
+ "value": "cattle_grid",
+ "description": "Cattle Grid",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/barrier-15.svg?sanitize=true"
+ },
+ {
+ "key": "barrier",
+ "value": "city_wall",
+ "description": "City Wall",
+ "object_types": ["way", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/barrier-15.svg?sanitize=true"
+ },
+ {
+ "key": "barrier",
+ "value": "cycle_barrier",
+ "description": "Cycle Barrier",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"
+ },
+ {
+ "key": "barrier",
+ "value": "ditch",
+ "description": "Trench",
+ "object_types": ["way", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"
+ },
+ {
+ "key": "barrier",
+ "value": "fence",
+ "description": "Fence",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fence-15.svg?sanitize=true"
+ },
+ {
+ "key": "barrier",
+ "value": "gate",
+ "description": "Gate",
+ "object_types": ["node", "way"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/barrier-15.svg?sanitize=true"
+ },
+ {
+ "key": "barrier",
+ "value": "hedge",
+ "description": "Hedge",
+ "object_types": ["way", "area"]
+ },
+ {
+ "key": "barrier",
+ "value": "kerb",
+ "description": "Kerb",
+ "object_types": ["node", "way"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/wheelchair-15.svg?sanitize=true"
+ },
+ {
+ "key": "barrier",
+ "value": "kissing_gate",
+ "description": "Kissing Gate",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/barrier-15.svg?sanitize=true"
+ },
+ {
+ "key": "barrier",
+ "value": "lift_gate",
+ "description": "Lift Gate",
+ "object_types": ["node", "way"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"
+ },
+ {
+ "key": "barrier",
+ "value": "retaining_wall",
+ "description": "Retaining Wall",
+ "object_types": ["way", "area"]
+ },
+ {
+ "key": "barrier",
+ "value": "stile",
+ "description": "Stile",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"
+ },
+ {
+ "key": "barrier",
+ "value": "toll_booth",
+ "description": "Toll Booth",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"
+ },
+ {
+ "key": "barrier",
+ "value": "wall",
+ "description": "Wall",
+ "object_types": ["way", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/barrier-15.svg?sanitize=true"
+ },
+ {
+ "key": "boundary",
+ "value": "administrative",
+ "description": "Administrative Boundary",
+ "object_types": ["way"]
+ },
+ {
+ "key": "building",
+ "description": "Building",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/home-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "bunker",
+ "description": "Bunker",
+ "object_types": ["area"]
+ },
+ {
+ "key": "building",
+ "value": "entrance",
+ "description": "Entrance/Exit",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/entrance-alt1-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "train_station",
+ "description": "Train Station",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "apartments",
+ "description": "Apartments",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "barn",
+ "description": "Barn",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/farm-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "boathouse",
+ "description": "Boathouse",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/harbor-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "bungalow",
+ "description": "Bungalow",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/home-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "cabin",
+ "description": "Cabin",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/home-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "cathedral",
+ "description": "Cathedral Building",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/place-of-worship-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "chapel",
+ "description": "Chapel Building",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/place-of-worship-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "church",
+ "description": "Church Building",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/place-of-worship-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "civic",
+ "description": "Civic Building",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "college",
+ "description": "College Building",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "commercial",
+ "description": "Commercial Building",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "construction",
+ "description": "Building Under Construction",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "detached",
+ "description": "Detached House",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/home-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "dormitory",
+ "description": "Dormitory",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "farm_auxiliary",
+ "description": "Farm Building",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/farm-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "farm",
+ "description": "Farm House",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/farm-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "garage",
+ "description": "Garage",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-warehouse.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "garages",
+ "description": "Garages",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-warehouse.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "grandstand",
+ "description": "Grandstand",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "greenhouse",
+ "description": "Greenhouse",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/garden-center-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "hospital",
+ "description": "Hospital Building",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "hotel",
+ "description": "Hotel Building",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "house",
+ "description": "House",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/home-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "hut",
+ "description": "Hut",
+ "object_types": ["area"]
+ },
+ {
+ "key": "building",
+ "value": "industrial",
+ "description": "Industrial Building",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/industry-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "kindergarten",
+ "description": "Preschool/Kindergarten Building",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "mosque",
+ "description": "Mosque Building",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/place-of-worship-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "public",
+ "description": "Public Building",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "residential",
+ "description": "Residential Building",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/residential-community-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "retail",
+ "description": "Retail Building",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/commercial-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "roof",
+ "description": "Roof",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shelter-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "ruins",
+ "description": "Building Ruins",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/ruins.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "school",
+ "description": "School Building",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "semidetached_house",
+ "description": "Semi-Detached House",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/home-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "service",
+ "description": "Service Building",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/home-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "shed",
+ "description": "Shed",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/home-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "stable",
+ "description": "Stable",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/horse-riding-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "stadium",
+ "description": "Stadium Building",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/stadium-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "static_caravan",
+ "description": "Static Mobile Home",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/home-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "temple",
+ "description": "Temple Building",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/place-of-worship-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "terrace",
+ "description": "Row Houses",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "transportation",
+ "description": "Transportation Building",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "university",
+ "description": "University Building",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
+ },
+ {
+ "key": "building",
+ "value": "warehouse",
+ "description": "Warehouse",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/warehouse-15.svg?sanitize=true"
+ },
+ {
+ "key": "camp_site",
+ "value": "camp_pitch",
+ "description": "Camp Pitch",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/campsite-15.svg?sanitize=true"
+ },
+ {
+ "key": "club",
+ "description": "Club, Type",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/heart-15.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "description": "Craft, Type",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "jeweler",
+ "description": "Jeweler",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/marker-stroked-15.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "locksmith",
+ "description": "Locksmith",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/marker-stroked-15.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "optician",
+ "description": "Optician",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/marker-stroked-15.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "tailor",
+ "description": "Tailor",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/clothing-store-15.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "basket_maker",
+ "description": "Basket Maker",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/art-gallery-15.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "beekeeper",
+ "description": "Beekeeper",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/farm-15.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "blacksmith",
+ "description": "Blacksmith",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "boatbuilder",
+ "description": "Boat Builder",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "bookbinder",
+ "description": "Bookbinder",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/library-15.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "brewery",
+ "description": "Brewery",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/storage_tank.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "carpenter",
+ "description": "Carpenter",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "carpet_layer",
+ "description": "Carpet Layer",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "caterer",
+ "description": "Caterer",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-15.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "chimney_sweeper",
+ "description": "Chimney Sweeper",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/chimney.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "clockmaker",
+ "description": "Clockmaker",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/clock.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "confectionery",
+ "description": "Candy Maker",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bakery-15.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "distillery",
+ "description": "Distillery",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/storage_tank.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "dressmaker",
+ "description": "Dressmaker",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/clothing-store-15.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "electrician",
+ "description": "Electrician",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/power.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "electronics_repair",
+ "description": "Electronics Repair Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "gardener",
+ "description": "Gardener",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/garden-center-15.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "glaziery",
+ "description": "Glaziery",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/window.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "handicraft",
+ "description": "Handicraft",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/art-gallery-15.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "hvac",
+ "description": "HVAC",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "insulation",
+ "description": "Insulator",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "key_cutter",
+ "description": "Key Cutter",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-key.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "metal_construction",
+ "description": "Metal Construction",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "painter",
+ "description": "Painter",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/art-gallery-15.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "photographer",
+ "description": "Photographer",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/attraction-15.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "photographic_laboratory",
+ "description": "Photographic Laboratory",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/attraction-15.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "plasterer",
+ "description": "Plasterer",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "plumber",
+ "description": "Plumber",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "pottery",
+ "description": "Pottery",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/art-gallery-15.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "rigger",
+ "description": "Rigger",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "roofer",
+ "description": "Roofer",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "saddler",
+ "description": "Saddler",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "sailmaker",
+ "description": "Sailmaker",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "sawmill",
+ "description": "Sawmill",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/logging-15.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "scaffolder",
+ "description": "Scaffolder",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "sculptor",
+ "description": "Sculptor",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/art-gallery-15.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "shoemaker",
+ "description": "Shoemaker",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "stonemason",
+ "description": "Stonemason",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "tiler",
+ "description": "Tiler",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "tinsmith",
+ "description": "Tinsmith",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "upholsterer",
+ "description": "Upholsterer",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "watchmaker",
+ "description": "Watchmaker",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/clock.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "window_construction",
+ "description": "Window Construction",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/window.svg?sanitize=true"
+ },
+ {
+ "key": "craft",
+ "value": "winery",
+ "description": "Winery",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/alcohol-shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "embankment",
+ "value": "yes",
+ "description": "Embankment",
+ "object_types": ["way"]
+ },
+ {
+ "key": "emergency",
+ "value": "designated",
+ "description": "Emergency Access Designated",
+ "object_types": ["way"]
+ },
+ {
+ "key": "emergency",
+ "value": "destination",
+ "description": "Emergency Access Destination",
+ "object_types": ["way"]
+ },
+ {
+ "key": "emergency",
+ "value": "no",
+ "description": "Emergency Access No",
+ "object_types": ["way"]
+ },
+ {
+ "key": "emergency",
+ "value": "official",
+ "description": "Emergency Access Official",
+ "object_types": ["way"]
+ },
+ {
+ "key": "emergency",
+ "value": "private",
+ "description": "Emergency Access Private",
+ "object_types": ["way"]
+ },
+ {
+ "key": "emergency",
+ "value": "yes",
+ "description": "Emergency Access Yes",
+ "object_types": ["way"]
+ },
+ {
+ "key": "emergency",
+ "value": "ambulance_station",
+ "description": "Ambulance Station",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-ambulance.svg?sanitize=true"
+ },
+ {
+ "key": "emergency",
+ "value": "defibrillator",
+ "description": "Defibrillator",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/defibrillator-15.svg?sanitize=true"
+ },
+ {
+ "key": "emergency",
+ "value": "fire_extinguisher",
+ "description": "Fire Extinguisher",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-fire-extinguisher.svg?sanitize=true"
+ },
+ {
+ "key": "emergency",
+ "value": "fire_hydrant",
+ "description": "Fire Hydrant",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/fire_hydrant.svg?sanitize=true"
+ },
+ {
+ "key": "emergency",
+ "value": "life_ring",
+ "description": "Life Ring",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-life-ring.svg?sanitize=true"
+ },
+ {
+ "key": "emergency",
+ "value": "phone",
+ "description": "Emergency Phone",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/emergency-phone-15.svg?sanitize=true"
+ },
+ {
+ "key": "emergency",
+ "value": "water_tank",
+ "description": "Emergency Water Tank",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
+ },
+ {
+ "key": "entrance",
+ "description": "Entrance/Exit, Type",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/entrance-alt1-15.svg?sanitize=true"
+ },
+ {
+ "key": "traffic_calming",
+ "value": "table",
+ "description": "Raised Street Crossing, Raised Pedestrian Crosswalk, Speed Table",
+ "object_types": ["way"]
+ },
+ {
+ "key": "footway",
+ "value": "crossing",
+ "description": "Street Crossing",
+ "object_types": ["way"]
+ },
+ {
+ "key": "crossing",
+ "value": "zebra",
+ "description": "Pedestrian Crosswalk",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
+ },
+ {
+ "key": "footway",
+ "value": "sidewalk",
+ "description": "Sidewalk",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
+ },
+ {
+ "key": "ford",
+ "value": "yes",
+ "description": "Ford",
+ "object_types": ["node"]
+ },
+ {
+ "key": "natural",
+ "value": "sand",
+ "description": "Sand Trap, Sand",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "grass",
+ "description": "Fairway, Rough, Tee Box, Grass",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"
+ },
+ {
+ "key": "sport",
+ "value": "golf",
+ "description": "Putting Green",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"
+ },
+ {
+ "key": "golf",
+ "value": "hole",
+ "description": "Golf Hole",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"
+ },
+ {
+ "key": "natural",
+ "value": "water",
+ "description": "Lateral Water Hazard, Water Hazard, Water",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"
+ },
+ {
+ "key": "golf",
+ "value": "lateral_water_hazard",
+ "description": "Lateral Water Hazard",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"
+ },
+ {
+ "key": "golf",
+ "value": "water_hazard",
+ "description": "Water Hazard",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"
+ },
+ {
+ "key": "healthcare",
+ "description": "Healthcare Facility, Type",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
+ },
+ {
+ "key": "healthcare",
+ "value": "alternative",
+ "description": "Alternative Medicine",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "chiropractic",
+ "description": "Chiropractor",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
+ },
+ {
+ "key": "healthcare",
+ "value": "audiologist",
+ "description": "Audiologist",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
+ },
+ {
+ "key": "healthcare",
+ "value": "birthing_center",
+ "description": "Birthing Center",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
+ },
+ {
+ "key": "healthcare",
+ "value": "blood_donation",
+ "description": "Blood Donor Center",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/blood-bank-15.svg?sanitize=true"
+ },
+ {
+ "key": "healthcare",
+ "value": "hospice",
+ "description": "Hospice",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
+ },
+ {
+ "key": "healthcare",
+ "value": "laboratory",
+ "description": "Medical Laboratory",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
+ },
+ {
+ "key": "healthcare",
+ "value": "midwife",
+ "description": "Midwife",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
+ },
+ {
+ "key": "healthcare",
+ "value": "occupational_therapist",
+ "description": "Occupational Therapist",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
+ },
+ {
+ "key": "healthcare",
+ "value": "optometrist",
+ "description": "Optometrist",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
+ },
+ {
+ "key": "healthcare",
+ "value": "physiotherapist",
+ "description": "Physiotherapist",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
+ },
+ {
+ "key": "healthcare",
+ "value": "podiatrist",
+ "description": "Podiatrist",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
+ },
+ {
+ "key": "healthcare",
+ "value": "psychotherapist",
+ "description": "Psychotherapist",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
+ },
+ {
+ "key": "healthcare",
+ "value": "rehabilitation",
+ "description": "Rehabilitation Facility",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
+ },
+ {
+ "key": "healthcare",
+ "value": "speech_therapist",
+ "description": "Speech Therapist",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hospital-15.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "bus_stop",
+ "description": "Bus Stop / Platform",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bus-15.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "bridleway",
+ "description": "Bridle Path",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-bridleway.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "bus_guideway",
+ "description": "Bus Guideway",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-bus-guideway.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "corridor",
+ "description": "Indoor Corridor",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "crossing",
+ "description": "Street Crossing",
+ "object_types": ["node"]
+ },
+ {
+ "key": "highway",
+ "value": "cycleway",
+ "description": "Cycle Path",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-cycleway.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "elevator",
+ "description": "Elevator",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/elevator.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "footway",
+ "description": "Foot Path",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "give_way",
+ "description": "Yield Sign",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/yield.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "living_street",
+ "description": "Living Street",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-living-street.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "mini_roundabout",
+ "description": "Mini-Roundabout",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/circle-stroked-15.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "motorway_junction",
+ "description": "Motorway Junction / Exit",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/junction.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "motorway_link",
+ "description": "Motorway Link",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-motorway-link.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "motorway",
+ "description": "Motorway",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-motorway.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "passing_place",
+ "description": "Passing Place",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/circle-stroked-15.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "path",
+ "description": "Path",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-path.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "pedestrian",
+ "description": "Pedestrian Street",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "primary_link",
+ "description": "Primary Link",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-primary-link.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "primary",
+ "description": "Primary Road",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-primary.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "raceway",
+ "description": "Racetrack (Motorsport)",
+ "object_types": ["node", "way", "area"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-unclassified.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "residential",
+ "description": "Residential Road",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-residential.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "rest_area",
+ "description": "Rest Area",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "road",
+ "description": "Unknown Road",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-road.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "secondary_link",
+ "description": "Secondary Link",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-secondary-link.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "secondary",
+ "description": "Secondary Road",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-secondary.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "service",
+ "description": "Service Road",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-service.svg?sanitize=true"
+ },
+ {
+ "key": "service",
+ "value": "alley",
+ "description": "Alley",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-service.svg?sanitize=true"
+ },
+ {
+ "key": "service",
+ "value": "drive-through",
+ "description": "Drive-Through",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-service.svg?sanitize=true"
+ },
+ {
+ "key": "service",
+ "value": "driveway",
+ "description": "Driveway",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-service.svg?sanitize=true"
+ },
+ {
+ "key": "service",
+ "value": "emergency_access",
+ "description": "Emergency Access",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-service.svg?sanitize=true"
+ },
+ {
+ "key": "service",
+ "value": "parking_aisle",
+ "description": "Parking Aisle",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-service.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "services",
+ "description": "Service Area",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "speed_camera",
+ "description": "Speed Camera",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/attraction-15.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "steps",
+ "description": "Steps",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-steps.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "stop",
+ "description": "Stop Sign",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/stop.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "street_lamp",
+ "description": "Street Lamp",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/bulb.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "tertiary_link",
+ "description": "Tertiary Link",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-tertiary-link.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "tertiary",
+ "description": "Tertiary Road",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-tertiary.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "track",
+ "description": "Unmaintained Track Road",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-track.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "traffic_mirror",
+ "description": "Traffic Mirror",
+ "object_types": ["node"]
+ },
+ {
+ "key": "highway",
+ "value": "traffic_signals",
+ "description": "Traffic Signals",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/traffic_signals.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "trunk_link",
+ "description": "Trunk Link",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-trunk-link.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "trunk",
+ "description": "Trunk Road",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-trunk.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "turning_circle",
+ "description": "Turning Circle",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/circle-stroked-15.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "turning_loop",
+ "description": "Turning Loop (Island)",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/circle-15.svg?sanitize=true"
+ },
+ {
+ "key": "highway",
+ "value": "unclassified",
+ "description": "Minor/Unclassified Road",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-unclassified.svg?sanitize=true"
+ },
+ {
+ "key": "historic",
+ "description": "Historic Site, Type",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/ruins.svg?sanitize=true"
+ },
+ {
+ "key": "historic",
+ "value": "archaeological_site",
+ "description": "Archaeological Site",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/ruins.svg?sanitize=true"
+ },
+ {
+ "key": "historic",
+ "value": "boundary_stone",
+ "description": "Boundary Stone",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/milestone.svg?sanitize=true"
+ },
+ {
+ "key": "historic",
+ "value": "castle",
+ "description": "Castle",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/castle-15.svg?sanitize=true"
+ },
+ {
+ "key": "historic",
+ "value": "memorial",
+ "description": "Memorial",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/monument-15.svg?sanitize=true"
+ },
+ {
+ "key": "historic",
+ "value": "monument",
+ "description": "Monument",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/monument-15.svg?sanitize=true"
+ },
+ {
+ "key": "historic",
+ "value": "ruins",
+ "description": "Ruins",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/ruins.svg?sanitize=true"
+ },
+ {
+ "key": "historic",
+ "value": "tomb",
+ "description": "Tomb",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cemetery-15.svg?sanitize=true"
+ },
+ {
+ "key": "historic",
+ "value": "wayside_cross",
+ "description": "Wayside Cross",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/religious-christian-15.svg?sanitize=true"
+ },
+ {
+ "key": "historic",
+ "value": "wayside_shrine",
+ "description": "Wayside Shrine",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/landmark-15.svg?sanitize=true"
+ },
+ {
+ "key": "junction",
+ "value": "yes",
+ "description": "Junction",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/junction.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "description": "Land Use, Type",
+ "object_types": ["area"]
+ },
+ {
+ "key": "landuse",
+ "value": "farm",
+ "description": "Farmland",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/farm-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "allotments",
+ "description": "Community Garden",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/garden-center-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "aquaculture",
+ "description": "Aquaculture",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/aquarium-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "basin",
+ "description": "Basin",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "brownfield",
+ "description": "Brownfield",
+ "object_types": ["area"]
+ },
+ {
+ "key": "landuse",
+ "value": "cemetery",
+ "description": "Cemetery",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cemetery-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "churchyard",
+ "description": "Churchyard",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/religious-christian-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "commercial",
+ "description": "Commercial Area",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "construction",
+ "description": "Construction",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "farmland",
+ "description": "Farmland",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/farm-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "farmyard",
+ "description": "Farmyard",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/farm-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "forest",
+ "description": "Forest",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/park-alt1-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "garages",
+ "description": "Garage Landuse",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-warehouse.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "greenfield",
+ "description": "Greenfield",
+ "object_types": ["area"]
+ },
+ {
+ "key": "landuse",
+ "value": "greenhouse_horticulture",
+ "description": "Greenhouse Horticulture",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/garden-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "harbour",
+ "description": "Harbor",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/harbor-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "industrial",
+ "description": "Industrial Area",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/industry-15.svg?sanitize=true"
+ },
+ {
+ "key": "industrial",
+ "value": "scrap_yard",
+ "description": "Scrap Yard",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
+ },
+ {
+ "key": "industrial",
+ "value": "slaughterhouse",
+ "description": "Slaughterhouse",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/slaughterhouse-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "landfill",
+ "description": "Landfill",
+ "object_types": ["area"]
+ },
+ {
+ "key": "landuse",
+ "value": "meadow",
+ "description": "Meadow",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/garden-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "military",
+ "description": "Military Area",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/military.svg?sanitize=true"
+ },
+ {
+ "key": "military",
+ "value": "airfield",
+ "description": "Military Airfield",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/airfield-15.svg?sanitize=true"
+ },
+ {
+ "key": "military",
+ "value": "barracks",
+ "description": "Barracks",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/military.svg?sanitize=true"
+ },
+ {
+ "key": "military",
+ "value": "bunker",
+ "description": "Military Bunker",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/military.svg?sanitize=true"
+ },
+ {
+ "key": "military",
+ "value": "checkpoint",
+ "description": "Checkpoint",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/barrier-15.svg?sanitize=true"
+ },
+ {
+ "key": "military",
+ "value": "danger_area",
+ "description": "Danger Area",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/danger-15.svg?sanitize=true"
+ },
+ {
+ "key": "military",
+ "value": "naval_base",
+ "description": "Naval Base",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/military.svg?sanitize=true"
+ },
+ {
+ "key": "military",
+ "value": "nuclear_explosion_site",
+ "description": "Nuclear Explosion Site",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/danger-15.svg?sanitize=true"
+ },
+ {
+ "key": "military",
+ "value": "obstacle_course",
+ "description": "Obstacle Course",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/military.svg?sanitize=true"
+ },
+ {
+ "key": "military",
+ "value": "office",
+ "description": "Military Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/military.svg?sanitize=true"
+ },
+ {
+ "key": "military",
+ "value": "range",
+ "description": "Military Range",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/military.svg?sanitize=true"
+ },
+ {
+ "key": "military",
+ "value": "training_area",
+ "description": "Training Area",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/military.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "orchard",
+ "description": "Orchard",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/park-alt1-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "plant_nursery",
+ "description": "Plant Nursery",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/garden-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "quarry",
+ "description": "Quarry",
+ "object_types": ["area"]
+ },
+ {
+ "key": "landuse",
+ "value": "railway",
+ "description": "Railway Corridor",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/rail-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "recreation_ground",
+ "description": "Recreation Ground",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "religious",
+ "description": "Religious Area",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/place-of-worship-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "residential",
+ "description": "Residential Area",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/building-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "retail",
+ "description": "Retail Area",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/commercial-15.svg?sanitize=true"
+ },
+ {
+ "key": "landuse",
+ "value": "vineyard",
+ "description": "Vineyard",
+ "object_types": ["area"]
+ },
+ {
+ "key": "leisure",
+ "description": "Leisure, Type",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "adult_gaming_centre",
+ "description": "Adult Gaming Center",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/dice.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "amusement_arcade",
+ "description": "Amusement Arcade",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/gaming-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "beach_resort",
+ "description": "Beach Resort",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/beach.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "bird_hide",
+ "description": "Bird Hide",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/binoculars.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "bleachers",
+ "description": "Bleachers",
+ "object_types": ["node", "area"]
+ },
+ {
+ "key": "leisure",
+ "value": "bowling_alley",
+ "description": "Bowling Alley",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/bowling.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "common",
+ "description": "Common",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/pedestrian.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "dance",
+ "description": "Dance Hall",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/music-15.svg?sanitize=true"
+ },
+ {
+ "key": "dance:teaching",
+ "value": "yes",
+ "description": "Dance School",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/music-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "dog_park",
+ "description": "Dog Park",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/dog-park-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "firepit",
+ "description": "Firepit",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fire-station-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "fitness_centre",
+ "description": "Gym / Fitness Center",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "sport",
+ "value": "yoga",
+ "description": "Yoga Studio",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "fitness_station",
+ "description": "Outdoor Fitness Station",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "fitness_station",
+ "value": "balance_beam",
+ "description": "Exercise Balance Beam",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "fitness_station",
+ "value": "box",
+ "description": "Exercise Box",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "fitness_station",
+ "value": "horizontal_bar",
+ "description": "Exercise Horizontal Bar",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "fitness_station",
+ "value": "horizontal_ladder",
+ "description": "Exercise Monkey Bars",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "fitness_station",
+ "value": "hyperextension",
+ "description": "Hyperextension Station",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "fitness_station",
+ "value": "parallel_bars",
+ "description": "Parallel Bars",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "fitness_station",
+ "value": "push-up",
+ "description": "Push-Up Station",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "fitness_station",
+ "value": "rings",
+ "description": "Exercise Rings",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "fitness_station",
+ "value": "sign",
+ "description": "Exercise Instruction Sign",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "fitness_station",
+ "value": "sit-up",
+ "description": "Sit-Up Station",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "fitness_station",
+ "value": "stairs",
+ "description": "Exercise Stairs",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "garden",
+ "description": "Garden",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/garden-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "golf_course",
+ "description": "Golf Course",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "hackerspace",
+ "description": "Hackerspace",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/commercial-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "horse_riding",
+ "description": "Horseback Riding Facility, Horseback Riding",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/horse-riding-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "ice_rink",
+ "description": "Ice Rink",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "marina",
+ "description": "Marina",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/harbor-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "miniature_golf",
+ "description": "Miniature Golf",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/golf-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "nature_reserve",
+ "description": "Nature Reserve",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/park-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "outdoor_seating",
+ "description": "Outdoor Seating Area",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/picnic-site-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "park",
+ "description": "Park",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/park-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "picnic_table",
+ "description": "Picnic Table",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/picnic-site-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "pitch",
+ "description": "Sport Pitch",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "sport",
+ "value": "american_football",
+ "description": "American Football Field",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/america-football-15.svg?sanitize=true"
+ },
+ {
+ "key": "sport",
+ "value": "baseball",
+ "description": "Baseball Diamond",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/baseball-15.svg?sanitize=true"
+ },
+ {
+ "key": "sport",
+ "value": "basketball",
+ "description": "Basketball Court",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/basketball-15.svg?sanitize=true"
+ },
+ {
+ "key": "sport",
+ "value": "beachvolleyball",
+ "description": "Beach Volleyball Court",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/basketball-15.svg?sanitize=true"
+ },
+ {
+ "key": "sport",
+ "value": "boules",
+ "description": "Boules/Bocce Court",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "sport",
+ "value": "bowls",
+ "description": "Bowling Green",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "sport",
+ "value": "cricket",
+ "description": "Cricket Field",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cricket-15.svg?sanitize=true"
+ },
+ {
+ "key": "sport",
+ "value": "equestrian",
+ "description": "Riding Arena, Dressage Riding",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/horse-riding-15.svg?sanitize=true"
+ },
+ {
+ "key": "sport",
+ "value": "rugby_league",
+ "description": "Rugby League Field",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/america-football-15.svg?sanitize=true"
+ },
+ {
+ "key": "sport",
+ "value": "rugby_union",
+ "description": "Rugby Union Field",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/america-football-15.svg?sanitize=true"
+ },
+ {
+ "key": "sport",
+ "value": "skateboard",
+ "description": "Skate Park",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "sport",
+ "value": "soccer",
+ "description": "Soccer Field",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/soccer-15.svg?sanitize=true"
+ },
+ {
+ "key": "sport",
+ "value": "table_tennis",
+ "description": "Ping Pong Table",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/tennis-15.svg?sanitize=true"
+ },
+ {
+ "key": "sport",
+ "value": "tennis",
+ "description": "Tennis Court",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/tennis-15.svg?sanitize=true"
+ },
+ {
+ "key": "sport",
+ "value": "volleyball",
+ "description": "Volleyball Court",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/basketball-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "playground",
+ "description": "Playground",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "resort",
+ "description": "Resort",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"
+ },
+ {
+ "key": "sport",
+ "value": "running",
+ "description": "Racetrack (Running)",
+ "object_types": ["node", "way", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "sauna",
+ "description": "Sauna",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-thermometer-three-quarters.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "slipway",
+ "description": "Slipway",
+ "object_types": ["node", "way"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/beach.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "sports_centre",
+ "description": "Sports Center / Complex",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "sport",
+ "value": "swimming",
+ "description": "Swimming Pool Facility",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/swimming-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "stadium",
+ "description": "Stadium",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "swimming_pool",
+ "description": "Swimming Pool",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/swimming-15.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "track",
+ "description": "Racetrack (Non-Motorsport)",
+ "object_types": ["node", "way", "area"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-road.svg?sanitize=true"
+ },
+ {
+ "key": "leisure",
+ "value": "water_park",
+ "description": "Water Park",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/swimming-15.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "description": "Man Made, Type",
+ "object_types": ["node", "way", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/storage_tank.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "embankment",
+ "description": "Embankment",
+ "object_types": ["way"]
+ },
+ {
+ "key": "man_made",
+ "value": "adit",
+ "description": "Adit",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-15.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "antenna",
+ "description": "Antenna",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/antenna.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "breakwater",
+ "description": "Breakwater",
+ "object_types": ["way", "area"]
+ },
+ {
+ "key": "man_made",
+ "value": "bridge",
+ "description": "Bridge",
+ "object_types": ["area"]
+ },
+ {
+ "key": "man_made",
+ "value": "chimney",
+ "description": "Chimney",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/chimney.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "clearcut",
+ "description": "Clearcut Forest",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/logging-15.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "crane",
+ "description": "Crane",
+ "object_types": ["node", "way", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/crane.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "cutline",
+ "description": "Cut line",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/logging-15.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "flagpole",
+ "description": "Flagpole",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/embassy-15.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "gasometer",
+ "description": "Gasometer",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/storage_tank.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "groyne",
+ "description": "Groyne",
+ "object_types": ["way", "area"]
+ },
+ {
+ "key": "man_made",
+ "value": "lighthouse",
+ "description": "Lighthouse",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lighthouse-15.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "mast",
+ "description": "Mast",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/antenna.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "monitoring_station",
+ "description": "Monitoring Station",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/antenna.svg?sanitize=true"
+ },
+ {
+ "key": "tower:type",
+ "value": "observation",
+ "description": "Observation Tower",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tower.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "observatory",
+ "description": "Observatory",
+ "object_types": ["node", "area"]
+ },
+ {
+ "key": "man_made",
+ "value": "petroleum_well",
+ "description": "Oil Well",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/storage_tank.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "pier",
+ "description": "Pier",
+ "object_types": ["way", "area"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "pipeline",
+ "description": "Pipeline",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/pipeline-line.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "pumping_station",
+ "description": "Pumping Station",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "silo",
+ "description": "Silo",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/silo.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "storage_tank",
+ "description": "Storage Tank",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/storage_tank.svg?sanitize=true"
+ },
+ {
+ "key": "surveillance:type",
+ "value": "camera",
+ "description": "Surveillance Camera, Surveillance Type",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/attraction-15.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "surveillance",
+ "description": "Surveillance",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/attraction-15.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "survey_point",
+ "description": "Survey Point",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/monument-15.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "tower",
+ "description": "Tower",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tower.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "wastewater_plant",
+ "description": "Wastewater Plant",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "water_tower",
+ "description": "Water Tower",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "water_well",
+ "description": "Water Well",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "water_works",
+ "description": "Water Works",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "watermill",
+ "description": "Watermill",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/buddhism-15.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "windmill",
+ "description": "Windmill",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/windmill.svg?sanitize=true"
+ },
+ {
+ "key": "man_made",
+ "value": "works",
+ "description": "Factory",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/industry-15.svg?sanitize=true"
+ },
+ {
+ "key": "manhole",
+ "description": "Manhole, Type",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/circle-stroked-15.svg?sanitize=true"
+ },
+ {
+ "key": "manhole",
+ "value": "drain",
+ "description": "Storm Drain",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
+ },
+ {
+ "key": "manhole",
+ "value": "telecom",
+ "description": "Telecom Manhole",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/circle-stroked-15.svg?sanitize=true"
+ },
+ {
+ "key": "natural",
+ "description": "Natural",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/natural-15.svg?sanitize=true"
+ },
+ {
+ "key": "natural",
+ "value": "bare_rock",
+ "description": "Bare Rock",
+ "object_types": ["area"]
+ },
+ {
+ "key": "natural",
+ "value": "bay",
+ "description": "Bay",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/beach.svg?sanitize=true"
+ },
+ {
+ "key": "natural",
+ "value": "beach",
+ "description": "Beach",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/beach.svg?sanitize=true"
+ },
+ {
+ "key": "natural",
+ "value": "cave_entrance",
+ "description": "Cave Entrance",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-15.svg?sanitize=true"
+ },
+ {
+ "key": "natural",
+ "value": "cliff",
+ "description": "Cliff",
+ "object_types": ["node", "way", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-15.svg?sanitize=true"
+ },
+ {
+ "key": "natural",
+ "value": "coastline",
+ "description": "Coastline",
+ "object_types": ["way"]
+ },
+ {
+ "key": "natural",
+ "value": "fell",
+ "description": "Fell",
+ "object_types": ["area"]
+ },
+ {
+ "key": "natural",
+ "value": "glacier",
+ "description": "Glacier",
+ "object_types": ["area"]
+ },
+ {
+ "key": "natural",
+ "value": "grassland",
+ "description": "Grassland",
+ "object_types": ["area"]
+ },
+ {
+ "key": "natural",
+ "value": "heath",
+ "description": "Heath",
+ "object_types": ["area"]
+ },
+ {
+ "key": "natural",
+ "value": "mud",
+ "description": "Mud",
+ "object_types": ["area"]
+ },
+ {
+ "key": "natural",
+ "value": "peak",
+ "description": "Peak",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/mountain-15.svg?sanitize=true"
+ },
+ {
+ "key": "natural",
+ "value": "reef",
+ "description": "Reef",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/beach.svg?sanitize=true"
+ },
+ {
+ "key": "natural",
+ "value": "ridge",
+ "description": "Ridge",
+ "object_types": ["way"]
+ },
+ {
+ "key": "natural",
+ "value": "saddle",
+ "description": "Saddle",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-stroked-15.svg?sanitize=true"
+ },
+ {
+ "key": "natural",
+ "value": "scree",
+ "description": "Scree",
+ "object_types": ["area"]
+ },
+ {
+ "key": "natural",
+ "value": "scrub",
+ "description": "Scrub",
+ "object_types": ["area"]
+ },
+ {
+ "key": "natural",
+ "value": "spring",
+ "description": "Spring",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
+ },
+ {
+ "key": "natural",
+ "value": "tree_row",
+ "description": "Tree row",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/park-15.svg?sanitize=true"
+ },
+ {
+ "key": "natural",
+ "value": "tree",
+ "description": "Tree",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/park-15.svg?sanitize=true"
+ },
+ {
+ "key": "natural",
+ "value": "volcano",
+ "description": "Volcano",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/volcano-15.svg?sanitize=true"
+ },
+ {
+ "key": "water",
+ "value": "lake",
+ "description": "Lake",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
+ },
+ {
+ "key": "water",
+ "value": "pond",
+ "description": "Pond",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
+ },
+ {
+ "key": "water",
+ "value": "reservoir",
+ "description": "Reservoir",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
+ },
+ {
+ "key": "natural",
+ "value": "wetland",
+ "description": "Wetland",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/wetland-15.svg?sanitize=true"
+ },
+ {
+ "key": "natural",
+ "value": "wood",
+ "description": "Wood",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/park-alt1-15.svg?sanitize=true"
+ },
+ {
+ "key": "noexit",
+ "value": "yes",
+ "description": "No Exit",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/barrier-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "description": "Office, Type",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "administrative",
+ "description": "Administrative Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "physician",
+ "description": "Physician",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "travel_agent",
+ "description": "Travel Agency",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "accountant",
+ "description": "Accountant Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "adoption_agency",
+ "description": "Adoption Agency",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "advertising_agency",
+ "description": "Advertising Agency",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "architect",
+ "description": "Architect Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "association",
+ "description": "Nonprofit Organization Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "charity",
+ "description": "Charity Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "company",
+ "description": "Corporate Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "coworking",
+ "description": "Coworking Space",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "educational_institution",
+ "description": "Educational Institution",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/school-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "employment_agency",
+ "description": "Employment Agency",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "energy_supplier",
+ "description": "Energy Supplier Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "estate_agent",
+ "description": "Real Estate Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "financial",
+ "description": "Financial Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "forestry",
+ "description": "Forestry Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "foundation",
+ "description": "Foundation Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "government",
+ "description": "Government Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"
+ },
+ {
+ "key": "government",
+ "value": "register_office",
+ "description": "Register Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"
+ },
+ {
+ "key": "government",
+ "value": "tax",
+ "description": "Tax and Revenue Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "guide",
+ "description": "Tour Guide Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "insurance",
+ "description": "Insurance Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "it",
+ "description": "Information Technology Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "lawyer",
+ "description": "Law Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "lawyer",
+ "value": "notary",
+ "description": "Notary Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "moving_company",
+ "description": "Moving Company Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/warehouse-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "newspaper",
+ "description": "Newspaper Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/library-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "ngo",
+ "description": "NGO Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "notary",
+ "description": "Notary Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "political_party",
+ "description": "Political Party",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-hall-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "private_investigator",
+ "description": "Private Investigator Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "quango",
+ "description": "Quasi-NGO Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "research",
+ "description": "Research Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "surveyor",
+ "description": "Surveyor Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "tax_advisor",
+ "description": "Tax Advisor Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "telecommunication",
+ "description": "Telecom Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/telephone-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "therapist",
+ "description": "Therapist Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "office",
+ "value": "water_utility",
+ "description": "Water Utility Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "piste:type",
+ "description": "Piste/Ski Trail",
+ "object_types": ["node", "way", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/skiing-15.svg?sanitize=true"
+ },
+ {
+ "key": "place",
+ "value": "farm",
+ "description": "Farm",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/farm-15.svg?sanitize=true"
+ },
+ {
+ "key": "place",
+ "value": "city",
+ "description": "City",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/city-15.svg?sanitize=true"
+ },
+ {
+ "key": "place",
+ "value": "hamlet",
+ "description": "Hamlet",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-stroked-15.svg?sanitize=true"
+ },
+ {
+ "key": "place",
+ "value": "island",
+ "description": "Island",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/mountain-15.svg?sanitize=true"
+ },
+ {
+ "key": "place",
+ "value": "islet",
+ "description": "Islet",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/mountain-15.svg?sanitize=true"
+ },
+ {
+ "key": "place",
+ "value": "isolated_dwelling",
+ "description": "Isolated Dwelling",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/home-15.svg?sanitize=true"
+ },
+ {
+ "key": "place",
+ "value": "locality",
+ "description": "Locality",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-stroked-15.svg?sanitize=true"
+ },
+ {
+ "key": "place",
+ "value": "neighbourhood",
+ "description": "Neighborhood",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-stroked-15.svg?sanitize=true"
+ },
+ {
+ "key": "place",
+ "value": "plot",
+ "description": "Plot",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-stroked-15.svg?sanitize=true"
+ },
+ {
+ "key": "place",
+ "value": "quarter",
+ "description": "Sub-Borough / Quarter",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-stroked-15.svg?sanitize=true"
+ },
+ {
+ "key": "place",
+ "value": "square",
+ "description": "Square",
+ "object_types": ["node", "area"]
+ },
+ {
+ "key": "place",
+ "value": "suburb",
+ "description": "Borough / Suburb",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/triangle-stroked-15.svg?sanitize=true"
+ },
+ {
+ "key": "place",
+ "value": "town",
+ "description": "Town",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/town-15.svg?sanitize=true"
+ },
+ {
+ "key": "place",
+ "value": "village",
+ "description": "Village",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/village-15.svg?sanitize=true"
+ },
+ {
+ "key": "playground",
+ "value": "balancebeam",
+ "description": "Play Balance Beam",
+ "object_types": ["node", "way"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
+ },
+ {
+ "key": "playground",
+ "value": "basketrotator",
+ "description": "Basket Spinner",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
+ },
+ {
+ "key": "playground",
+ "value": "basketswing",
+ "description": "Basket Swing",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
+ },
+ {
+ "key": "playground",
+ "value": "climbingframe",
+ "description": "Climbing Frame",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
+ },
+ {
+ "key": "playground",
+ "value": "cushion",
+ "description": "Bouncy Cushion",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
+ },
+ {
+ "key": "playground",
+ "value": "horizontal_bar",
+ "description": "Play Horizontal Bar",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "playground",
+ "value": "springy",
+ "description": "Spring Rider",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
+ },
+ {
+ "key": "playground",
+ "value": "roundabout",
+ "description": "Play Roundabout",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/stadium-15.svg?sanitize=true"
+ },
+ {
+ "key": "playground",
+ "value": "sandpit",
+ "description": "Sandpit",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
+ },
+ {
+ "key": "playground",
+ "value": "seesaw",
+ "description": "Seesaw",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
+ },
+ {
+ "key": "playground",
+ "value": "slide",
+ "description": "Slide",
+ "object_types": ["node", "way"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
+ },
+ {
+ "key": "playground",
+ "value": "structure",
+ "description": "Play Structure",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/pitch-15.svg?sanitize=true"
+ },
+ {
+ "key": "playground",
+ "value": "swing",
+ "description": "Swing",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
+ },
+ {
+ "key": "playground",
+ "value": "zipwire",
+ "description": "Zip Wire",
+ "object_types": ["node", "way"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/playground-15.svg?sanitize=true"
+ },
+ {
+ "key": "power",
+ "value": "sub_station",
+ "description": "Substation",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/power.svg?sanitize=true"
+ },
+ {
+ "key": "power",
+ "value": "generator",
+ "description": "Power Generator",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/power.svg?sanitize=true"
+ },
+ {
+ "key": "generator:method",
+ "value": "fission",
+ "description": "Nuclear Reactor",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/radiation.svg?sanitize=true"
+ },
+ {
+ "key": "generator:method",
+ "value": "wind_turbine",
+ "description": "Wind Turbine",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/wind_turbine.svg?sanitize=true"
+ },
+ {
+ "key": "power",
+ "value": "line",
+ "description": "Power Line",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/power-line.svg?sanitize=true"
+ },
+ {
+ "key": "power",
+ "value": "minor_line",
+ "description": "Minor Power Line",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/power-line.svg?sanitize=true"
+ },
+ {
+ "key": "power",
+ "value": "plant",
+ "description": "Power Station Grounds",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/industry-15.svg?sanitize=true"
+ },
+ {
+ "key": "power",
+ "value": "pole",
+ "description": "Power Pole",
+ "object_types": ["node"]
+ },
+ {
+ "key": "power",
+ "value": "substation",
+ "description": "Substation",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/power.svg?sanitize=true"
+ },
+ {
+ "key": "power",
+ "value": "switch",
+ "description": "Power Switch",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/power.svg?sanitize=true"
+ },
+ {
+ "key": "power",
+ "value": "tower",
+ "description": "High-Voltage Tower",
+ "object_types": ["node"]
+ },
+ {
+ "key": "power",
+ "value": "transformer",
+ "description": "Transformer",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/power.svg?sanitize=true"
+ },
+ {
+ "key": "aerialway",
+ "value": "yes",
+ "description": "Aerialway Stop / Platform, Aerialway Station, Aerialway Stopping Location",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
+ },
+ {
+ "key": "bus",
+ "value": "yes",
+ "description": "Bus Stop / Platform, Bus Station / Terminal, Bus Stopping Location",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
+ },
+ {
+ "key": "ferry",
+ "value": "yes",
+ "description": "Ferry Stop / Platform, Ferry Station / Terminal, Ferry Stopping Location",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
+ },
+ {
+ "key": "light_rail",
+ "value": "yes",
+ "description": "Light Rail Stop / Platform, Light Rail Station, Light Rail Stopping Location",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
+ },
+ {
+ "key": "monorail",
+ "value": "yes",
+ "description": "Monorail Stop / Platform, Monorail Station, Monorail Stopping Location",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
+ },
+ {
+ "key": "subway",
+ "value": "yes",
+ "description": "Subway Stop / Platform, Subway Station, Subway Stopping Location",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
+ },
+ {
+ "key": "train",
+ "value": "yes",
+ "description": "Train Stop / Platform, Train Station, Train Stopping Location",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
+ },
+ {
+ "key": "tram",
+ "value": "yes",
+ "description": "Tram Stop / Platform, Tram Station, Tram Stopping Location",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
+ },
+ {
+ "key": "trolleybus",
+ "value": "yes",
+ "description": "Trolleybus Stop / Platform, Trolleybus Station / Terminal, Trolleybus Stopping Location",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
+ },
+ {
+ "key": "public_transport",
+ "value": "platform",
+ "description": "Transit Stop / Platform",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "halt",
+ "description": "Train Station (Halt / Request)",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/rail-15.svg?sanitize=true"
+ },
+ {
+ "key": "public_transport",
+ "value": "station",
+ "description": "Transit Station",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/rail-15.svg?sanitize=true"
+ },
+ {
+ "key": "public_transport",
+ "value": "stop_area",
+ "description": "Transit Stop Area",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bus-15.svg?sanitize=true"
+ },
+ {
+ "key": "public_transport",
+ "value": "stop_position",
+ "description": "Transit Stopping Location",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bus-15.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "platform",
+ "description": "Train Stop / Platform",
+ "object_types": ["way", "area"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/highway-footway.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "station",
+ "description": "Train Station",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/rail-15.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "tram_stop",
+ "description": "Tram Stopping Position",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tram.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "abandoned",
+ "description": "Abandoned Railway",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-abandoned.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "buffer_stop",
+ "description": "Buffer Stop",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/buffer_stop.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "crossing",
+ "description": "Railway Crossing (Path)",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cross-15.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "derail",
+ "description": "Railway Derailer",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/roadblock-15.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "disused",
+ "description": "Disused Railway",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-disused.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "funicular",
+ "description": "Funicular",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-rail.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "level_crossing",
+ "description": "Railway Crossing (Road)",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cross-15.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "light_rail",
+ "description": "Light Rail",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-light-rail.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "milestone",
+ "description": "Railway Milestone",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/milestone.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "miniature",
+ "description": "Miniature Railway",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-rail.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "monorail",
+ "description": "Monorail",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-monorail.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "narrow_gauge",
+ "description": "Narrow Gauge Rail",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-rail.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "rail",
+ "description": "Rail",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-rail.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "signal",
+ "description": "Railway Signal",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/railway_signals.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "subway_entrance",
+ "description": "Subway Entrance",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/entrance-15.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "subway",
+ "description": "Subway",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-subway.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "switch",
+ "description": "Railway Switch",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/junction.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "wash",
+ "description": "Train Wash",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/rail-15.svg?sanitize=true"
+ },
+ {
+ "key": "railway",
+ "value": "tram",
+ "description": "Tram",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/railway-light-rail.svg?sanitize=true"
+ },
+ {
+ "key": "route",
+ "value": "ferry",
+ "description": "Ferry Route",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/ferry-line.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "description": "Shop, Type",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "fishmonger",
+ "description": "Fishmonger",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "furnace",
+ "description": "Furnace Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "vacant",
+ "description": "Vacant Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "agrarian",
+ "description": "Farm Supply Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "alcohol",
+ "description": "Liquor Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/alcohol-shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "anime",
+ "description": "Anime Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "antiques",
+ "description": "Antiques Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "appliance",
+ "description": "Appliance Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "art",
+ "description": "Art Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "baby_goods",
+ "description": "Baby Goods Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "bag",
+ "description": "Bag/Luggage Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "bakery",
+ "description": "Bakery",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bakery-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "bathroom_furnishing",
+ "description": "Bathroom Furnishing Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "beauty",
+ "description": "Beauty Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "beauty",
+ "value": "nails",
+ "description": "Nail Salon",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "beauty",
+ "value": "tanning",
+ "description": "Tanning Salon",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "bed",
+ "description": "Bedding/Mattress Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "beverages",
+ "description": "Beverage Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "bicycle",
+ "description": "Bicycle Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bicycle-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "bookmaker",
+ "description": "Bookmaker",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "books",
+ "description": "Book Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "boutique",
+ "description": "Boutique",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "butcher",
+ "description": "Butcher",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/slaughterhouse-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "candles",
+ "description": "Candle Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "car_parts",
+ "description": "Car Parts Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "car_repair",
+ "description": "Car Repair Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "car",
+ "description": "Car Dealership",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/car-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "carpet",
+ "description": "Carpet Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "charity",
+ "description": "Charity Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "cheese",
+ "description": "Cheese Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "chemist",
+ "description": "Drugstore",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/grocery-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "chocolate",
+ "description": "Chocolate Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "clothes",
+ "description": "Clothing Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/clothing-store-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "coffee",
+ "description": "Coffee Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "computer",
+ "description": "Computer Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "confectionery",
+ "description": "Candy Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "convenience",
+ "description": "Convenience Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "copyshop",
+ "description": "Copy Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "cosmetics",
+ "description": "Cosmetics Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "craft",
+ "description": "Arts and Crafts Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "curtain",
+ "description": "Curtain Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "dairy",
+ "description": "Dairy Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "deli",
+ "description": "Deli",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/restaurant-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "department_store",
+ "description": "Department Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "doityourself",
+ "description": "DIY Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "dry_cleaning",
+ "description": "Dry Cleaner",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "e-cigarette",
+ "description": "E-Cigarette Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "electronics",
+ "description": "Electronics Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "erotic",
+ "description": "Erotic Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "fabric",
+ "description": "Fabric Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "farm",
+ "description": "Produce Stand",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "fashion",
+ "description": "Fashion Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "florist",
+ "description": "Florist",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/florist-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "frame",
+ "description": "Framing Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "funeral_directors",
+ "description": "Funeral Home",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/cemetery-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "furniture",
+ "description": "Furniture Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "garden_centre",
+ "description": "Garden Center",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/garden-center-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "gas",
+ "description": "Bottled Gas Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "gift",
+ "description": "Gift Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/gift-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "greengrocer",
+ "description": "Greengrocer",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "hairdresser",
+ "description": "Hairdresser",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/hairdresser-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "hardware",
+ "description": "Hardware Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/tools.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "health_food",
+ "description": "Health Food Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "hearing_aids",
+ "description": "Hearing Aids Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "herbalist",
+ "description": "Herbalist",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "hifi",
+ "description": "Hifi Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "houseware",
+ "description": "Houseware Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "interior_decoration",
+ "description": "Interior Decoration Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "jewelry",
+ "description": "Jeweler",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "kiosk",
+ "description": "Kiosk",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "kitchen",
+ "description": "Kitchen Design Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "laundry",
+ "description": "Laundry",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/laundry-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "leather",
+ "description": "Leather Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "locksmith",
+ "description": "Locksmith",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "lottery",
+ "description": "Lottery Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "mall",
+ "description": "Mall",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "massage",
+ "description": "Massage Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "medical_supply",
+ "description": "Medical Supply Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "mobile_phone",
+ "description": "Mobile Phone Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/mobile-phone-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "money_lender",
+ "description": "Money Lender",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bank-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "motorcycle_repair",
+ "description": "Motorcycle Repair Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-motorcycle.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "motorcycle",
+ "description": "Motorcycle Dealership",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/fontawesome/fas-motorcycle.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "music",
+ "description": "Music Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/music-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "musical_instrument",
+ "description": "Musical Instrument Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/music-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "newsagent",
+ "description": "Newspaper/Magazine Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "nutrition_supplements",
+ "description": "Nutrition Supplements Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "optician",
+ "description": "Optician",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "organic",
+ "value": "only",
+ "description": "Organic Goods Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "outdoor",
+ "description": "Outdoors Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "paint",
+ "description": "Paint Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "pastry",
+ "description": "Pastry Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bakery-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "pawnbroker",
+ "description": "Pawn Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "perfumery",
+ "description": "Perfume Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "pet_grooming",
+ "description": "Pet Grooming Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/dog-park-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "pet",
+ "description": "Pet Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/dog-park-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "photo",
+ "description": "Photography Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/attraction-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "pyrotechnics",
+ "description": "Fireworks Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "radiotechnics",
+ "description": "Radio/Electronic Component Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "religion",
+ "description": "Religious Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "scuba_diving",
+ "description": "Scuba Diving Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/swimming-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "seafood",
+ "description": "Seafood Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "second_hand",
+ "description": "Consignment/Thrift Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "shoes",
+ "description": "Shoe Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "sports",
+ "description": "Sporting Goods Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "stationery",
+ "description": "Stationery Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "storage_rental",
+ "description": "Storage Rental",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "supermarket",
+ "description": "Supermarket",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/grocery-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "tailor",
+ "description": "Tailor",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/clothing-store-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "tattoo",
+ "description": "Tattoo Parlor",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "tea",
+ "description": "Tea Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/teahouse-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "ticket",
+ "description": "Ticket Seller",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "tiles",
+ "description": "Tile Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "tobacco",
+ "description": "Tobacco Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "toys",
+ "description": "Toy Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "trade",
+ "description": "Trade Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "travel_agency",
+ "description": "Travel Agency",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/suitcase-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "tyres",
+ "description": "Tire Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "vacuum_cleaner",
+ "description": "Vacuum Cleaner Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "variety_store",
+ "description": "Variety Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "video_games",
+ "description": "Video Game Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/gaming-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "video",
+ "description": "Video Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "watches",
+ "description": "Watches Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "water_sports",
+ "description": "Watersport/Swim Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "weapons",
+ "description": "Weapon Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "wholesale",
+ "description": "Wholesale Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/warehouse-15.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "window_blind",
+ "description": "Window Blind Store",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/window.svg?sanitize=true"
+ },
+ {
+ "key": "shop",
+ "value": "wine",
+ "description": "Wine Shop",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/alcohol-shop-15.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "description": "Tourism, Type",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/attraction-15.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "value": "alpine_hut",
+ "description": "Alpine Hut",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "value": "apartment",
+ "description": "Guest Apartment / Condo",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "value": "aquarium",
+ "description": "Aquarium",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/aquarium-15.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "value": "artwork",
+ "description": "Artwork",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/art-gallery-15.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "value": "attraction",
+ "description": "Tourist Attraction",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/star-15.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "value": "camp_site",
+ "description": "Campground",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/campsite-15.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "value": "caravan_site",
+ "description": "RV Park",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/bus-15.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "value": "chalet",
+ "description": "Holiday Cottage",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "value": "gallery",
+ "description": "Art Gallery",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/art-gallery-15.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "value": "guest_house",
+ "description": "Guest House",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "value": "hostel",
+ "description": "Hostel",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "value": "hotel",
+ "description": "Hotel",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "value": "information",
+ "description": "Information",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/information-15.svg?sanitize=true"
+ },
+ {
+ "key": "information",
+ "value": "board",
+ "description": "Information Board",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/information-15.svg?sanitize=true"
+ },
+ {
+ "key": "information",
+ "value": "guidepost",
+ "description": "Guidepost",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/information-15.svg?sanitize=true"
+ },
+ {
+ "key": "information",
+ "value": "map",
+ "description": "Map",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/information-15.svg?sanitize=true"
+ },
+ {
+ "key": "information",
+ "value": "office",
+ "description": "Tourist Information Office",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/information-15.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "value": "motel",
+ "description": "Motel",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "value": "museum",
+ "description": "Museum",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/museum-15.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "value": "picnic_site",
+ "description": "Picnic Site",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/picnic-site-15.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "value": "theme_park",
+ "description": "Theme Park",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/amusement-park-15.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "value": "trail_riding_station",
+ "description": "Trail Riding Station",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/horse-riding-15.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "value": "viewpoint",
+ "description": "Viewpoint",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/binoculars.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "value": "wilderness_hut",
+ "description": "Wilderness Hut",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/lodging-15.svg?sanitize=true"
+ },
+ {
+ "key": "tourism",
+ "value": "zoo",
+ "description": "Zoo",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/zoo-15.svg?sanitize=true"
+ },
+ {
+ "key": "traffic_calming",
+ "description": "Traffic Calming, Type",
+ "object_types": ["node", "way"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"
+ },
+ {
+ "key": "traffic_calming",
+ "value": "bump",
+ "description": "Speed Bump",
+ "object_types": ["node", "way"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"
+ },
+ {
+ "key": "traffic_calming",
+ "value": "chicane",
+ "description": "Traffic Chicane",
+ "object_types": ["node", "way"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"
+ },
+ {
+ "key": "traffic_calming",
+ "value": "choker",
+ "description": "Traffic Choker",
+ "object_types": ["node", "way"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"
+ },
+ {
+ "key": "traffic_calming",
+ "value": "cushion",
+ "description": "Speed Cushion",
+ "object_types": ["node", "way"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"
+ },
+ {
+ "key": "traffic_calming",
+ "value": "dip",
+ "description": "Dip",
+ "object_types": ["node", "way"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"
+ },
+ {
+ "key": "traffic_calming",
+ "value": "hump",
+ "description": "Speed Hump",
+ "object_types": ["node", "way"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"
+ },
+ {
+ "key": "traffic_calming",
+ "value": "island",
+ "description": "Traffic Island",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"
+ },
+ {
+ "key": "traffic_calming",
+ "value": "rumble_strip",
+ "description": "Rumble Strip",
+ "object_types": ["node", "way"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/diamond.svg?sanitize=true"
+ },
+ {
+ "key": "type",
+ "value": "multipolygon",
+ "description": "Multipolygon",
+ "object_types": ["area", "relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/multipolygon.svg?sanitize=true"
+ },
+ {
+ "key": "type",
+ "value": "boundary",
+ "description": "Boundary",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/boundary.svg?sanitize=true"
+ },
+ {
+ "key": "type",
+ "value": "restriction",
+ "description": "Restriction",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/restriction.svg?sanitize=true"
+ },
+ {
+ "key": "restriction",
+ "value": "no_left_turn",
+ "description": "No Left Turn",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/restriction-no-left-turn.svg?sanitize=true"
+ },
+ {
+ "key": "restriction",
+ "value": "no_right_turn",
+ "description": "No Right Turn",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/restriction-no-right-turn.svg?sanitize=true"
+ },
+ {
+ "key": "restriction",
+ "value": "no_straight_on",
+ "description": "No Straight On",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/restriction-no-straight-on.svg?sanitize=true"
+ },
+ {
+ "key": "restriction",
+ "value": "no_u_turn",
+ "description": "No U-turn",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/restriction-no-u-turn.svg?sanitize=true"
+ },
+ {
+ "key": "restriction",
+ "value": "only_left_turn",
+ "description": "Only Left Turn",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/restriction-only-left-turn.svg?sanitize=true"
+ },
+ {
+ "key": "restriction",
+ "value": "only_right_turn",
+ "description": "Only Right Turn",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/restriction-only-right-turn.svg?sanitize=true"
+ },
+ {
+ "key": "restriction",
+ "value": "only_straight_on",
+ "description": "Only Straight On",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/restriction-only-straight-on.svg?sanitize=true"
+ },
+ {
+ "key": "restriction",
+ "value": "only_u_turn",
+ "description": "Only U-turn",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/restriction-only-u-turn.svg?sanitize=true"
+ },
+ {
+ "key": "type",
+ "value": "route_master",
+ "description": "Route Master",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-master.svg?sanitize=true"
+ },
+ {
+ "key": "type",
+ "value": "route",
+ "description": "Route",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route.svg?sanitize=true"
+ },
+ {
+ "key": "route",
+ "value": "bicycle",
+ "description": "Cycle Route",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-bicycle.svg?sanitize=true"
+ },
+ {
+ "key": "route",
+ "value": "bus",
+ "description": "Bus Route",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-bus.svg?sanitize=true"
+ },
+ {
+ "key": "route",
+ "value": "detour",
+ "description": "Detour Route",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-detour.svg?sanitize=true"
+ },
+ {
+ "key": "route",
+ "value": "foot",
+ "description": "Foot Route",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-foot.svg?sanitize=true"
+ },
+ {
+ "key": "route",
+ "value": "hiking",
+ "description": "Hiking Route",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-foot.svg?sanitize=true"
+ },
+ {
+ "key": "route",
+ "value": "horse",
+ "description": "Riding Route",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-horse.svg?sanitize=true"
+ },
+ {
+ "key": "route",
+ "value": "light_rail",
+ "description": "Light Rail Route",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-light-rail.svg?sanitize=true"
+ },
+ {
+ "key": "route",
+ "value": "pipeline",
+ "description": "Pipeline Route",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-pipeline.svg?sanitize=true"
+ },
+ {
+ "key": "route",
+ "value": "piste",
+ "description": "Piste/Ski Route",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-piste.svg?sanitize=true"
+ },
+ {
+ "key": "route",
+ "value": "power",
+ "description": "Power Route",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-power.svg?sanitize=true"
+ },
+ {
+ "key": "route",
+ "value": "road",
+ "description": "Road Route",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-road.svg?sanitize=true"
+ },
+ {
+ "key": "route",
+ "value": "subway",
+ "description": "Subway Route",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-subway.svg?sanitize=true"
+ },
+ {
+ "key": "route",
+ "value": "train",
+ "description": "Train Route",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-train.svg?sanitize=true"
+ },
+ {
+ "key": "route",
+ "value": "tram",
+ "description": "Tram Route",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-tram.svg?sanitize=true"
+ },
+ {
+ "key": "type",
+ "value": "site",
+ "description": "Site",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/relation.svg?sanitize=true"
+ },
+ {
+ "key": "type",
+ "value": "waterway",
+ "description": "Waterway",
+ "object_types": ["relation"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/route-water.svg?sanitize=true"
+ },
+ {
+ "key": "waterway",
+ "value": "boatyard",
+ "description": "Boatyard",
+ "object_types": ["area", "node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/harbor-15.svg?sanitize=true"
+ },
+ {
+ "key": "waterway",
+ "value": "canal",
+ "description": "Canal",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/waterway-canal.svg?sanitize=true"
+ },
+ {
+ "key": "waterway",
+ "value": "dam",
+ "description": "Dam",
+ "object_types": ["node", "way", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/dam-15.svg?sanitize=true"
+ },
+ {
+ "key": "waterway",
+ "value": "ditch",
+ "description": "Ditch",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/waterway-ditch.svg?sanitize=true"
+ },
+ {
+ "key": "waterway",
+ "value": "dock",
+ "description": "Wet Dock / Dry Dock",
+ "object_types": ["area", "node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/harbor-15.svg?sanitize=true"
+ },
+ {
+ "key": "waterway",
+ "value": "drain",
+ "description": "Drain",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/waterway-ditch.svg?sanitize=true"
+ },
+ {
+ "key": "waterway",
+ "value": "fuel",
+ "description": "Marine Fuel Station",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/fuel-15.svg?sanitize=true"
+ },
+ {
+ "key": "waterway",
+ "value": "river",
+ "description": "River",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/waterway-river.svg?sanitize=true"
+ },
+ {
+ "key": "waterway",
+ "value": "riverbank",
+ "description": "Riverbank",
+ "object_types": ["area"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
+ },
+ {
+ "key": "waterway",
+ "value": "sanitary_dump_station",
+ "description": "Marine Toilet Disposal",
+ "object_types": ["node", "area"],
+ "icon_url": "https://raw.githubusercontent.com/bhousel/temaki/master/icons/storage_tank.svg?sanitize=true"
+ },
+ {
+ "key": "intermittent",
+ "value": "yes",
+ "description": "Intermittent Stream",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/waterway-stream.svg?sanitize=true"
+ },
+ {
+ "key": "waterway",
+ "value": "stream",
+ "description": "Stream",
+ "object_types": ["way"],
+ "icon_url": "https://raw.githubusercontent.com/openstreetmap/iD/master/svg/iD-sprite/presets/waterway-stream.svg?sanitize=true"
+ },
+ {
+ "key": "waterway",
+ "value": "water_point",
+ "description": "Marine Drinking Water",
+ "object_types": ["area", "node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/drinking-water-15.svg?sanitize=true"
+ },
+ {
+ "key": "waterway",
+ "value": "waterfall",
+ "description": "Waterfall",
+ "object_types": ["node"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/water-15.svg?sanitize=true"
+ },
+ {
+ "key": "waterway",
+ "value": "weir",
+ "description": "Weir",
+ "object_types": ["node", "way"],
+ "icon_url": "https://raw.githubusercontent.com/mapbox/maki/master/icons/dam-15.svg?sanitize=true"
+ },
+ {"key": "access", "description": "Allowed Access"},
+ {"key": "access", "value": "yes", "description": "Allowed Access"},
+ {"key": "access", "value": "no", "description": "Allowed Access"},
+ {"key": "access", "value": "permissive", "description": "Allowed Access"},
+ {"key": "access", "value": "private", "description": "Allowed Access"},
+ {"key": "access", "value": "designated", "description": "Allowed Access"},
+ {"key": "access", "value": "destination", "description": "Allowed Access"},
+ {"key": "access", "value": "dismount", "description": "Allowed Access"},
+ {"key": "foot", "value": "yes", "description": "Allowed Access"},
+ {"key": "foot", "value": "no", "description": "Allowed Access"},
+ {"key": "foot", "value": "permissive", "description": "Allowed Access"},
+ {"key": "foot", "value": "private", "description": "Allowed Access"},
+ {"key": "foot", "value": "designated", "description": "Allowed Access"},
+ {"key": "foot", "value": "destination", "description": "Allowed Access"},
+ {"key": "foot", "value": "dismount", "description": "Allowed Access"},
+ {"key": "motor_vehicle", "value": "yes", "description": "Allowed Access"},
+ {"key": "motor_vehicle", "value": "no", "description": "Allowed Access"},
+ {
+ "key": "motor_vehicle",
+ "value": "permissive",
+ "description": "Allowed Access"
+ },
+ {
+ "key": "motor_vehicle",
+ "value": "private",
+ "description": "Allowed Access"
+ },
+ {
+ "key": "motor_vehicle",
+ "value": "designated",
+ "description": "Allowed Access"
+ },
+ {
+ "key": "motor_vehicle",
+ "value": "destination",
+ "description": "Allowed Access"
+ },
+ {
+ "key": "motor_vehicle",
+ "value": "dismount",
+ "description": "Allowed Access"
+ },
+ {"key": "bicycle", "value": "yes", "description": "Allowed Access"},
+ {"key": "bicycle", "value": "no", "description": "Allowed Access"},
+ {"key": "bicycle", "value": "permissive", "description": "Allowed Access"},
+ {"key": "bicycle", "value": "private", "description": "Allowed Access"},
+ {"key": "bicycle", "value": "designated", "description": "Allowed Access"},
+ {"key": "bicycle", "value": "destination", "description": "Allowed Access"},
+ {"key": "bicycle", "value": "dismount", "description": "Allowed Access"},
+ {"key": "horse", "value": "yes", "description": "Allowed Access"},
+ {"key": "horse", "value": "no", "description": "Allowed Access"},
+ {"key": "horse", "value": "permissive", "description": "Allowed Access"},
+ {"key": "horse", "value": "private", "description": "Allowed Access"},
+ {"key": "horse", "value": "designated", "description": "Allowed Access"},
+ {"key": "horse", "value": "destination", "description": "Allowed Access"},
+ {"key": "horse", "value": "dismount", "description": "Allowed Access"},
+ {"key": "addr:block_number", "description": "Address"},
+ {"key": "addr:city", "description": "Address"},
+ {"key": "addr:conscriptionnumber", "description": "Address"},
+ {"key": "addr:county", "description": "Address"},
+ {"key": "addr:country", "description": "Address"},
+ {"key": "addr:district", "description": "Address"},
+ {"key": "addr:floor", "description": "Address"},
+ {"key": "addr:hamlet", "description": "Address"},
+ {"key": "addr:housename", "description": "Address"},
+ {"key": "addr:housenumber", "description": "Address"},
+ {"key": "addr:neighbourhood", "description": "Address"},
+ {"key": "addr:place", "description": "Address"},
+ {"key": "addr:postcode", "description": "Address"},
+ {"key": "addr:province", "description": "Address"},
+ {"key": "addr:quarter", "description": "Address"},
+ {"key": "addr:state", "description": "Address"},
+ {"key": "addr:street", "description": "Address"},
+ {"key": "addr:subdistrict", "description": "Address"},
+ {"key": "addr:suburb", "description": "Address"},
+ {"key": "addr:unit", "description": "Address"},
+ {"key": "admin_level", "description": "Admin Level"},
+ {"key": "aerialway:access", "value": "entry", "description": "Access"},
+ {"key": "aerialway:access", "value": "exit", "description": "Access"},
+ {"key": "aerialway:access", "value": "both", "description": "Access"},
+ {"key": "aerialway:bubble", "description": "Bubble"},
+ {"key": "aerialway:capacity", "description": "Capacity (per hour)"},
+ {"key": "aerialway:duration", "description": "Duration (minutes)"},
+ {"key": "aerialway:heating", "description": "Heated"},
+ {"key": "aerialway:occupancy", "description": "Occupancy"},
+ {
+ "key": "aerialway:summer:access",
+ "value": "entry",
+ "description": "Access (summer)"
+ },
+ {
+ "key": "aerialway:summer:access",
+ "value": "exit",
+ "description": "Access (summer)"
+ },
+ {
+ "key": "aerialway:summer:access",
+ "value": "both",
+ "description": "Access (summer)"
+ },
+ {"key": "agrarian", "description": "Products"},
+ {"key": "animal_boarding", "description": "For Animals"},
+ {"key": "animal_breeding", "description": "For Animals"},
+ {"key": "animal_shelter", "description": "For Animals"},
+ {"key": "artist_name", "description": "Artist"},
+ {"key": "artwork_type", "description": "Type"},
+ {"key": "atm", "description": "ATM"},
+ {"key": "backrest", "description": "Backrest"},
+ {"key": "bath:open_air", "description": "Open Air"},
+ {"key": "bath:sand_bath", "description": "Sand Bath"},
+ {"key": "bath:type", "value": "onsen", "description": "Specialty"},
+ {"key": "bath:type", "value": "foot_bath", "description": "Specialty"},
+ {"key": "bath:type", "value": "hot_spring", "description": "Specialty"},
+ {"key": "beauty", "description": "Shop Type"},
+ {"key": "bench", "description": "Bench"},
+ {"key": "bicycle_parking", "description": "Type"},
+ {"key": "bin", "description": "Waste Bin"},
+ {"key": "blood:", "value": "whole", "description": "Blood Components"},
+ {"key": "blood:", "value": "plasma", "description": "Blood Components"},
+ {"key": "blood:", "value": "platelets", "description": "Blood Components"},
+ {"key": "blood:", "value": "stemcells", "description": "Blood Components"},
+ {"key": "board_type", "description": "Type"},
+ {"key": "boules", "description": "Type"},
+ {"key": "boundary", "description": "Type"},
+ {"key": "brand", "description": "Brand"},
+ {"key": "brewery", "description": "Draft Beers"},
+ {"key": "bridge", "description": "Type"},
+ {"key": "bunker_type", "description": "Type"},
+ {"key": "cables", "description": "Cables"},
+ {"key": "camera:direction", "description": "Direction (Degrees Clockwise)"},
+ {"key": "camera:mount", "description": "Camera Mount"},
+ {"key": "camera:type", "value": "fixed", "description": "Camera Type"},
+ {"key": "camera:type", "value": "panning", "description": "Camera Type"},
+ {"key": "camera:type", "value": "dome", "description": "Camera Type"},
+ {"key": "capacity", "description": "Capacity"},
+ {"key": "castle_type", "description": "Type"},
+ {"key": "clothes", "description": "Clothes"},
+ {"key": "collection_times", "description": "Collection Times"},
+ {"key": "comment", "description": "Changeset Comment"},
+ {"key": "communication:", "description": "Communication Types"},
+ {"key": "construction", "description": "Type"},
+ {"key": "contact:webcam", "description": "Webcam URL"},
+ {"key": "content", "description": "Content"},
+ {"key": "country", "description": "Country"},
+ {"key": "covered", "description": "Covered"},
+ {"key": "crane:type", "value": "portal_crane", "description": "Crane Type"},
+ {
+ "key": "crane:type",
+ "value": "floor-mounted_crane",
+ "description": "Crane Type"
+ },
+ {"key": "crane:type", "value": "travel_lift", "description": "Crane Type"},
+ {"key": "crop", "description": "Crops"},
+ {"key": "crossing", "description": "Type"},
+ {"key": "cuisine", "description": "Cuisines"},
+ {"key": "currency:", "description": "Currency Types"},
+ {"key": "cutting", "description": "Type"},
+ {"key": "cycle_network", "description": "Network"},
+ {"key": "cycleway:left", "value": "none", "description": "Bike Lanes"},
+ {"key": "cycleway:left", "value": "lane", "description": "Bike Lanes"},
+ {
+ "key": "cycleway:left",
+ "value": "shared_lane",
+ "description": "Bike Lanes"
+ },
+ {"key": "cycleway:left", "value": "track", "description": "Bike Lanes"},
+ {
+ "key": "cycleway:left",
+ "value": "share_busway",
+ "description": "Bike Lanes"
+ },
+ {
+ "key": "cycleway:left",
+ "value": "opposite_lane",
+ "description": "Bike Lanes"
+ },
+ {"key": "cycleway:left", "value": "opposite", "description": "Bike Lanes"},
+ {"key": "cycleway:right", "value": "none", "description": "Bike Lanes"},
+ {"key": "cycleway:right", "value": "lane", "description": "Bike Lanes"},
+ {
+ "key": "cycleway:right",
+ "value": "shared_lane",
+ "description": "Bike Lanes"
+ },
+ {"key": "cycleway:right", "value": "track", "description": "Bike Lanes"},
+ {
+ "key": "cycleway:right",
+ "value": "share_busway",
+ "description": "Bike Lanes"
+ },
+ {
+ "key": "cycleway:right",
+ "value": "opposite_lane",
+ "description": "Bike Lanes"
+ },
+ {"key": "cycleway:right", "value": "opposite", "description": "Bike Lanes"},
+ {"key": "dance:style", "description": "Dance Styles"},
+ {"key": "date", "description": "Date"},
+ {"key": "delivery", "description": "Delivery"},
+ {"key": "denomination", "description": "Denomination"},
+ {"key": "denotation", "description": "Denotation"},
+ {"key": "description", "description": "Description"},
+ {"key": "devices", "description": "Devices"},
+ {"key": "diaper", "description": "Diaper Changing Available"},
+ {"key": "direction", "value": "N", "description": "Direction"},
+ {"key": "direction", "value": "E", "description": "Direction"},
+ {"key": "direction", "value": "S", "description": "Direction"},
+ {"key": "direction", "value": "W", "description": "Direction"},
+ {"key": "direction", "value": "NE", "description": "Direction"},
+ {"key": "direction", "value": "SE", "description": "Direction"},
+ {"key": "direction", "value": "SW", "description": "Direction"},
+ {"key": "direction", "value": "NW", "description": "Direction"},
+ {"key": "direction", "value": "NNE", "description": "Direction"},
+ {"key": "direction", "value": "ENE", "description": "Direction"},
+ {"key": "direction", "value": "ESE", "description": "Direction"},
+ {"key": "direction", "value": "SSE", "description": "Direction"},
+ {"key": "direction", "value": "SSW", "description": "Direction"},
+ {"key": "direction", "value": "WSW", "description": "Direction"},
+ {"key": "direction", "value": "WNW", "description": "Direction"},
+ {"key": "direction", "value": "NNW", "description": "Direction"},
+ {"key": "direction", "value": "clockwise", "description": "Direction"},
+ {"key": "direction", "value": "anticlockwise", "description": "Direction"},
+ {"key": "direction", "value": "forward", "description": "Direction"},
+ {"key": "direction", "value": "backward", "description": "Direction"},
+ {"key": "direction", "value": "both", "description": "Direction"},
+ {"key": "direction", "description": "Direction (Degrees Clockwise)"},
+ {"key": "dispensing", "description": "Dispenses Prescriptions"},
+ {"key": "display", "description": "Display"},
+ {"key": "distance", "description": "Total Distance"},
+ {"key": "dock", "description": "Type"},
+ {"key": "drive_through", "description": "Drive-Through"},
+ {"key": "duration", "description": "Duration"},
+ {
+ "key": "electrified",
+ "value": "contact_line",
+ "description": "Electrification"
+ },
+ {"key": "electrified", "value": "rail", "description": "Electrification"},
+ {"key": "electrified", "value": "yes", "description": "Electrification"},
+ {"key": "electrified", "value": "no", "description": "Electrification"},
+ {"key": "ele", "description": "Elevation"},
+ {"key": "email", "description": "Email"},
+ {"key": "embankment", "description": "Type"},
+ {"key": "emergency", "description": "Emergency"},
+ {"key": "except", "description": "Exceptions"},
+ {"key": "faces", "description": "Faces"},
+ {"key": "fax", "description": "Fax"},
+ {"key": "fee", "description": "Fee"},
+ {"key": "fence_type", "description": "Type"},
+ {
+ "key": "fire_hydrant:position",
+ "value": "lane",
+ "description": "Position"
+ },
+ {
+ "key": "fire_hydrant:position",
+ "value": "parking_lot",
+ "description": "Position"
+ },
+ {
+ "key": "fire_hydrant:position",
+ "value": "sidewalk",
+ "description": "Position"
+ },
+ {
+ "key": "fire_hydrant:position",
+ "value": "green",
+ "description": "Position"
+ },
+ {"key": "fire_hydrant:type", "value": "pillar", "description": "Type"},
+ {"key": "fire_hydrant:type", "value": "underground", "description": "Type"},
+ {"key": "fire_hydrant:type", "value": "wall", "description": "Type"},
+ {"key": "fire_hydrant:type", "value": "pond", "description": "Type"},
+ {"key": "fitness_station", "description": "Equipment Type"},
+ {"key": "fixme", "description": "Fix Me"},
+ {"key": "ford", "description": "Type"},
+ {"key": "frequency", "description": "Operating Frequency"},
+ {"key": "fuel:", "description": "Fuel Types"},
+ {"key": "fuel", "description": "Fuel"},
+ {"key": "gauge", "description": "Gauge"},
+ {"key": "male", "value": "male", "description": "Gender"},
+ {"key": "male", "value": "female", "description": "Gender"},
+ {"key": "male", "value": "unisex", "description": "Gender"},
+ {"key": "female", "value": "male", "description": "Gender"},
+ {"key": "female", "value": "female", "description": "Gender"},
+ {"key": "female", "value": "unisex", "description": "Gender"},
+ {"key": "unisex", "value": "male", "description": "Gender"},
+ {"key": "unisex", "value": "female", "description": "Gender"},
+ {"key": "unisex", "value": "unisex", "description": "Gender"},
+ {"key": "generator:method", "description": "Method"},
+ {"key": "generator:output:electricity", "description": "Power Output"},
+ {"key": "generator:source", "description": "Source"},
+ {"key": "generator:type", "description": "Type"},
+ {"key": "government", "description": "Type"},
+ {"key": "grape_variety", "description": "Grape Varieties"},
+ {"key": "handicap", "description": "Handicap"},
+ {"key": "handrail", "description": "Handrail"},
+ {"key": "hashtags", "description": "Suggested Hashtags"},
+ {"key": "healthcare:speciality", "description": "Specialties"},
+ {"key": "height", "description": "Height (Meters)"},
+ {"key": "historic:civilization", "description": "Historic Civilization"},
+ {"key": "hoops", "description": "Hoops"},
+ {
+ "key": "horse_scale",
+ "value": "common",
+ "description": "Horseback Riding Difficulty"
+ },
+ {
+ "key": "horse_scale",
+ "value": "demanding",
+ "description": "Horseback Riding Difficulty"
+ },
+ {
+ "key": "horse_scale",
+ "value": "difficult",
+ "description": "Horseback Riding Difficulty"
+ },
+ {
+ "key": "horse_scale",
+ "value": "critical",
+ "description": "Horseback Riding Difficulty"
+ },
+ {
+ "key": "horse_scale",
+ "value": "dangerous",
+ "description": "Horseback Riding Difficulty"
+ },
+ {
+ "key": "horse_scale",
+ "value": "impossible",
+ "description": "Horseback Riding Difficulty"
+ },
+ {"key": "amenity", "value": "stables", "description": "Riding Stable"},
+ {"key": "iata", "description": "IATA"},
+ {"key": "icao", "description": "ICAO"},
+ {"key": "incline", "value": "up", "description": "Incline"},
+ {"key": "incline", "value": "down", "description": "Incline"},
+ {"key": "incline", "description": "Incline"},
+ {"key": "indoor", "description": "Indoor"},
+ {"key": "industrial", "description": "Type"},
+ {"key": "information", "description": "Type"},
+ {"key": "inscription", "description": "Inscription"},
+ {"key": "intermittent", "description": "Intermittent"},
+ {
+ "key": "internet_access",
+ "value": "yes",
+ "description": "Internet Access"
+ },
+ {"key": "internet_access", "value": "no", "description": "Internet Access"},
+ {
+ "key": "internet_access",
+ "value": "wlan",
+ "description": "Internet Access"
+ },
+ {
+ "key": "internet_access",
+ "value": "wired",
+ "description": "Internet Access"
+ },
+ {
+ "key": "internet_access",
+ "value": "terminal",
+ "description": "Internet Access"
+ },
+ {"key": "internet_access:fee", "description": "Internet Access Fee"},
+ {"key": "internet_access:ssid", "description": "SSID (Network Name)"},
+ {"key": "kerb", "description": "Curb"},
+ {"key": "label", "description": "Label"},
+ {"key": "lamp_type", "description": "Type"},
+ {"key": "lanes", "description": "Lanes"},
+ {"key": "layer", "description": "Layer"},
+ {"key": "leaf_cycle", "value": "evergreen", "description": "Leaf Cycle"},
+ {"key": "leaf_cycle", "value": "deciduous", "description": "Leaf Cycle"},
+ {
+ "key": "leaf_cycle",
+ "value": "semi_evergreen",
+ "description": "Leaf Cycle"
+ },
+ {
+ "key": "leaf_cycle",
+ "value": "semi_deciduous",
+ "description": "Leaf Cycle"
+ },
+ {"key": "leaf_cycle", "value": "mixed", "description": "Leaf Cycle"},
+ {"key": "leaf_type", "value": "broadleaved", "description": "Leaf Type"},
+ {"key": "leaf_type", "value": "needleleaved", "description": "Leaf Type"},
+ {"key": "leaf_type", "value": "leafless", "description": "Leaf Type"},
+ {"key": "leaf_type", "value": "mixed", "description": "Leaf Type"},
+ {"key": "length", "description": "Length (Meters)"},
+ {"key": "level", "description": "Level"},
+ {"key": "building:levels", "description": "Levels"},
+ {"key": "lit", "description": "Lit"},
+ {"key": "location", "description": "Location"},
+ {"key": "map_size", "description": "Coverage"},
+ {"key": "map_type", "description": "Type"},
+ {"key": "maxheight", "description": "Max Height"},
+ {"key": "maxspeed", "description": "Speed Limit"},
+ {"key": "maxspeed:advisory", "description": "Advisory Speed Limit"},
+ {"key": "maxstay", "description": "Max Stay"},
+ {"key": "maxweight", "description": "Max Weight"},
+ {"key": "memorial", "description": "Type"},
+ {"key": "monitoring:", "description": "Monitoring"},
+ {
+ "key": "mtb:scale",
+ "value": "0",
+ "description": "Mountain Biking Difficulty"
+ },
+ {
+ "key": "mtb:scale",
+ "value": "1",
+ "description": "Mountain Biking Difficulty"
+ },
+ {
+ "key": "mtb:scale",
+ "value": "2",
+ "description": "Mountain Biking Difficulty"
+ },
+ {
+ "key": "mtb:scale",
+ "value": "3",
+ "description": "Mountain Biking Difficulty"
+ },
+ {
+ "key": "mtb:scale",
+ "value": "4",
+ "description": "Mountain Biking Difficulty"
+ },
+ {
+ "key": "mtb:scale",
+ "value": "5",
+ "description": "Mountain Biking Difficulty"
+ },
+ {
+ "key": "mtb:scale",
+ "value": "6",
+ "description": "Mountain Biking Difficulty"
+ },
+ {
+ "key": "mtb:scale:imba",
+ "value": "0",
+ "description": "IMBA Trail Difficulty"
+ },
+ {
+ "key": "mtb:scale:imba",
+ "value": "1",
+ "description": "IMBA Trail Difficulty"
+ },
+ {
+ "key": "mtb:scale:imba",
+ "value": "2",
+ "description": "IMBA Trail Difficulty"
+ },
+ {
+ "key": "mtb:scale:imba",
+ "value": "3",
+ "description": "IMBA Trail Difficulty"
+ },
+ {
+ "key": "mtb:scale:imba",
+ "value": "4",
+ "description": "IMBA Trail Difficulty"
+ },
+ {
+ "key": "mtb:scale:uphill",
+ "value": "0",
+ "description": "Mountain Biking Uphill Difficulty"
+ },
+ {
+ "key": "mtb:scale:uphill",
+ "value": "1",
+ "description": "Mountain Biking Uphill Difficulty"
+ },
+ {
+ "key": "mtb:scale:uphill",
+ "value": "2",
+ "description": "Mountain Biking Uphill Difficulty"
+ },
+ {
+ "key": "mtb:scale:uphill",
+ "value": "3",
+ "description": "Mountain Biking Uphill Difficulty"
+ },
+ {
+ "key": "mtb:scale:uphill",
+ "value": "4",
+ "description": "Mountain Biking Uphill Difficulty"
+ },
+ {
+ "key": "mtb:scale:uphill",
+ "value": "5",
+ "description": "Mountain Biking Uphill Difficulty"
+ },
+ {"key": "name", "description": "Name"},
+ {"key": "network", "value": "lcn", "description": "Network Type"},
+ {"key": "network", "value": "rcn", "description": "Network Type"},
+ {"key": "network", "value": "ncn", "description": "Network Type"},
+ {"key": "network", "value": "icn", "description": "Network Type"},
+ {"key": "network", "value": "lwn", "description": "Network Type"},
+ {"key": "network", "value": "rwn", "description": "Network Type"},
+ {"key": "network", "value": "nwn", "description": "Network Type"},
+ {"key": "network", "value": "iwn", "description": "Network Type"},
+ {"key": "network", "value": "lhn", "description": "Network Type"},
+ {"key": "network", "value": "rhn", "description": "Network Type"},
+ {"key": "network", "value": "nhn", "description": "Network Type"},
+ {"key": "network", "value": "ihn", "description": "Network Type"},
+ {"key": "network", "description": "Network"},
+ {"key": "note", "description": "Note"},
+ {"key": "oneway", "value": "yes", "description": "One Way"},
+ {"key": "oneway", "value": "no", "description": "One Way"},
+ {"key": "oneway", "value": "reversible", "description": "One Way"},
+ {"key": "oneway", "value": "alternating", "description": "One Way"},
+ {"key": "opening_hours", "description": "Hours"},
+ {"key": "operator", "description": "Operator"},
+ {"key": "outdoor_seating", "description": "Outdoor Seating"},
+ {"key": "par", "description": "Par"},
+ {"key": "park_ride", "description": "Park and Ride"},
+ {"key": "parking", "value": "surface", "description": "Type"},
+ {"key": "parking", "value": "multi-storey", "description": "Type"},
+ {"key": "parking", "value": "underground", "description": "Type"},
+ {"key": "parking", "value": "sheds", "description": "Type"},
+ {"key": "parking", "value": "carports", "description": "Type"},
+ {"key": "parking", "value": "garage_boxes", "description": "Type"},
+ {"key": "parking", "value": "lane", "description": "Type"},
+ {"key": "payment:", "description": "Payment Types"},
+ {"key": "phases", "description": "Phases"},
+ {"key": "phone", "description": "Telephone"},
+ {"key": "piste:difficulty", "value": "novice", "description": "Difficulty"},
+ {"key": "piste:difficulty", "value": "easy", "description": "Difficulty"},
+ {
+ "key": "piste:difficulty",
+ "value": "intermediate",
+ "description": "Difficulty"
+ },
+ {
+ "key": "piste:difficulty",
+ "value": "advanced",
+ "description": "Difficulty"
+ },
+ {"key": "piste:difficulty", "value": "expert", "description": "Difficulty"},
+ {
+ "key": "piste:difficulty",
+ "value": "freeride",
+ "description": "Difficulty"
+ },
+ {
+ "key": "piste:difficulty",
+ "value": "extreme",
+ "description": "Difficulty"
+ },
+ {"key": "piste:grooming", "value": "classic", "description": "Grooming"},
+ {"key": "piste:grooming", "value": "mogul", "description": "Grooming"},
+ {
+ "key": "piste:grooming",
+ "value": "backcountry",
+ "description": "Grooming"
+ },
+ {
+ "key": "piste:grooming",
+ "value": "classic+skating",
+ "description": "Grooming"
+ },
+ {"key": "piste:grooming", "value": "scooter", "description": "Grooming"},
+ {"key": "piste:grooming", "value": "skating", "description": "Grooming"},
+ {"key": "piste:type", "value": "downhill", "description": "Type"},
+ {"key": "piste:type", "value": "nordic", "description": "Type"},
+ {"key": "piste:type", "value": "skitour", "description": "Type"},
+ {"key": "piste:type", "value": "sled", "description": "Type"},
+ {"key": "piste:type", "value": "hike", "description": "Type"},
+ {"key": "piste:type", "value": "sleigh", "description": "Type"},
+ {"key": "piste:type", "value": "ice_skate", "description": "Type"},
+ {"key": "piste:type", "value": "snow_park", "description": "Type"},
+ {"key": "piste:type", "value": "playground", "description": "Type"},
+ {"key": "plant", "description": "Plant"},
+ {"key": "plant:output:electricity", "description": "Power Output"},
+ {"key": "baby", "description": "Baby Seat"},
+ {"key": "max_age", "description": "Maximum Age"},
+ {"key": "min_age", "description": "Minimum Age"},
+ {"key": "population", "description": "Population"},
+ {"key": "power_supply", "description": "Power Supply"},
+ {"key": "produce", "description": "Produce"},
+ {"key": "product", "description": "Products"},
+ {"key": "railway:position", "description": "Milestone Position"},
+ {
+ "key": "railway:signal:direction",
+ "value": "forward",
+ "description": "Direction"
+ },
+ {
+ "key": "railway:signal:direction",
+ "value": "backward",
+ "description": "Direction"
+ },
+ {
+ "key": "railway:signal:direction",
+ "value": "both",
+ "description": "Direction"
+ },
+ {"key": "rating", "description": "Power Rating"},
+ {"key": "recycling:", "description": "Accepts"},
+ {
+ "key": "ref",
+ "description": "Gate Number, Hole Number, Junction Number, Platform Number, Road Number, Route Number, Runway Number, Stop Number, Taxiway Name, Reference Code"
+ },
+ {"key": "ref:isil", "description": "ISIL Code"},
+ {"key": "type", "description": "Type"},
+ {"key": "religion", "description": "Religion"},
+ {"key": "restriction", "description": "Type"},
+ {"key": "rooms", "description": "Rooms"},
+ {"key": "route_master", "description": "Type"},
+ {"key": "route", "description": "Type"},
+ {"key": "sac_scale", "value": "hiking", "description": "Hiking Difficulty"},
+ {
+ "key": "sac_scale",
+ "value": "mountain_hiking",
+ "description": "Hiking Difficulty"
+ },
+ {
+ "key": "sac_scale",
+ "value": "demanding_mountain_hiking",
+ "description": "Hiking Difficulty"
+ },
+ {
+ "key": "sac_scale",
+ "value": "alpine_hiking",
+ "description": "Hiking Difficulty"
+ },
+ {
+ "key": "sac_scale",
+ "value": "demanding_alpine_hiking",
+ "description": "Hiking Difficulty"
+ },
+ {
+ "key": "sac_scale",
+ "value": "difficult_alpine_hiking",
+ "description": "Hiking Difficulty"
+ },
+ {"key": "sanitary_dump_station", "description": "Toilet Disposal"},
+ {"key": "seasonal", "description": "Seasonal"},
+ {"key": "second_hand", "value": "yes", "description": "Sells Used"},
+ {"key": "second_hand", "value": "no", "description": "Sells Used"},
+ {"key": "second_hand", "value": "only", "description": "Sells Used"},
+ {"key": "service", "value": "spur", "description": "Service Type"},
+ {"key": "service", "value": "yard", "description": "Service Type"},
+ {"key": "service", "value": "siding", "description": "Service Type"},
+ {"key": "service", "value": "crossover", "description": "Service Type"},
+ {"key": "service_times", "description": "Service Times"},
+ {"key": "service", "description": "Type"},
+ {"key": "service:bicycle:", "description": "Services"},
+ {"key": "service:vehicle:", "description": "Services"},
+ {"key": "shelter_type", "description": "Type"},
+ {"key": "shelter", "description": "Shelter"},
+ {"key": "site", "description": "Type"},
+ {"key": "smoking", "value": "no", "description": "Smoking"},
+ {"key": "smoking", "value": "separated", "description": "Smoking"},
+ {"key": "smoking", "value": "isolated", "description": "Smoking"},
+ {"key": "smoking", "value": "outside", "description": "Smoking"},
+ {"key": "smoking", "value": "yes", "description": "Smoking"},
+ {"key": "smoking", "value": "dedicated", "description": "Smoking"},
+ {"key": "smoothness", "value": "excellent", "description": "Smoothness"},
+ {"key": "smoothness", "value": "good", "description": "Smoothness"},
+ {"key": "smoothness", "value": "intermediate", "description": "Smoothness"},
+ {"key": "smoothness", "value": "bad", "description": "Smoothness"},
+ {"key": "smoothness", "value": "very_bad", "description": "Smoothness"},
+ {"key": "smoothness", "value": "horrible", "description": "Smoothness"},
+ {
+ "key": "smoothness",
+ "value": "very_horrible",
+ "description": "Smoothness"
+ },
+ {"key": "smoothness", "value": "impassable", "description": "Smoothness"},
+ {"key": "social_facility:for", "description": "People Served"},
+ {"key": "social_facility", "description": "Type"},
+ {"key": "source", "description": "Sources"},
+ {"key": "sport", "description": "Sports"},
+ {"key": "stars", "description": "Stars"},
+ {"key": "start_date", "description": "Start Date"},
+ {"key": "step_count", "description": "Number of Steps"},
+ {"key": "stop", "value": "all", "description": "Stop Type"},
+ {"key": "stop", "value": "minor", "description": "Stop Type"},
+ {"key": "tunnel", "value": "tunnel", "description": "Structure"},
+ {"key": "bridge", "value": "bridge", "description": "Structure"},
+ {"key": "bridge", "value": "tunnel", "description": "Structure"},
+ {"key": "bridge", "value": "embankment", "description": "Structure"},
+ {"key": "bridge", "value": "cutting", "description": "Structure"},
+ {"key": "bridge", "value": "ford", "description": "Structure"},
+ {"key": "tunnel", "value": "bridge", "description": "Structure"},
+ {"key": "tunnel", "value": "embankment", "description": "Structure"},
+ {"key": "tunnel", "value": "cutting", "description": "Structure"},
+ {"key": "tunnel", "value": "ford", "description": "Structure"},
+ {"key": "embankment", "value": "bridge", "description": "Structure"},
+ {"key": "embankment", "value": "tunnel", "description": "Structure"},
+ {"key": "embankment", "value": "embankment", "description": "Structure"},
+ {"key": "embankment", "value": "cutting", "description": "Structure"},
+ {"key": "embankment", "value": "ford", "description": "Structure"},
+ {"key": "cutting", "value": "bridge", "description": "Structure"},
+ {"key": "cutting", "value": "tunnel", "description": "Structure"},
+ {"key": "cutting", "value": "embankment", "description": "Structure"},
+ {"key": "cutting", "value": "cutting", "description": "Structure"},
+ {"key": "cutting", "value": "ford", "description": "Structure"},
+ {"key": "ford", "value": "bridge", "description": "Structure"},
+ {"key": "ford", "value": "tunnel", "description": "Structure"},
+ {"key": "ford", "value": "embankment", "description": "Structure"},
+ {"key": "ford", "value": "cutting", "description": "Structure"},
+ {"key": "ford", "value": "ford", "description": "Structure"},
+ {"key": "studio", "description": "Type"},
+ {"key": "substance", "description": "Substance"},
+ {"key": "substation", "description": "Type"},
+ {"key": "supervised", "description": "Supervised"},
+ {"key": "support", "description": "Support"},
+ {"key": "surface", "description": "Surface"},
+ {"key": "surveillance", "description": "Surveillance Kind"},
+ {
+ "key": "surveillance:type",
+ "value": "guard",
+ "description": "Surveillance Type"
+ },
+ {
+ "key": "surveillance:type",
+ "value": "ALPR",
+ "description": "Surveillance Type"
+ },
+ {"key": "surveillance:zone", "description": "Surveillance Zone"},
+ {"key": "switch", "value": "mechanical", "description": "Type"},
+ {"key": "switch", "value": "circuit_breaker", "description": "Type"},
+ {"key": "switch", "value": "disconnector", "description": "Type"},
+ {"key": "switch", "value": "earthing", "description": "Type"},
+ {"key": "tactile_paving", "description": "Tactile Paving"},
+ {"key": "takeaway", "value": "yes", "description": "Takeaway"},
+ {"key": "takeaway", "value": "no", "description": "Takeaway"},
+ {"key": "takeaway", "value": "only", "description": "Takeaway"},
+ {"key": "toilets:disposal", "value": "flush", "description": "Disposal"},
+ {
+ "key": "toilets:disposal",
+ "value": "pitlatrine",
+ "description": "Disposal"
+ },
+ {"key": "toilets:disposal", "value": "chemical", "description": "Disposal"},
+ {"key": "toilets:disposal", "value": "bucket", "description": "Disposal"},
+ {"key": "toll", "description": "Toll"},
+ {"key": "tomb", "description": "Type"},
+ {"key": "tower:construction", "description": "Construction"},
+ {"key": "tower:type", "description": "Type"},
+ {"key": "tracktype", "value": "grade1", "description": "Track Type"},
+ {"key": "tracktype", "value": "grade2", "description": "Track Type"},
+ {"key": "tracktype", "value": "grade3", "description": "Track Type"},
+ {"key": "tracktype", "value": "grade4", "description": "Track Type"},
+ {"key": "tracktype", "value": "grade5", "description": "Track Type"},
+ {"key": "trade", "description": "Type"},
+ {"key": "traffic_signals", "description": "Type"},
+ {
+ "key": "traffic_signals:direction",
+ "value": "forward",
+ "description": "Direction"
+ },
+ {
+ "key": "traffic_signals:direction",
+ "value": "backward",
+ "description": "Direction"
+ },
+ {
+ "key": "traffic_signals:direction",
+ "value": "both",
+ "description": "Direction"
+ },
+ {
+ "key": "trail_visibility",
+ "value": "excellent",
+ "description": "Trail Visibility"
+ },
+ {
+ "key": "trail_visibility",
+ "value": "good",
+ "description": "Trail Visibility"
+ },
+ {
+ "key": "trail_visibility",
+ "value": "intermediate",
+ "description": "Trail Visibility"
+ },
+ {
+ "key": "trail_visibility",
+ "value": "bad",
+ "description": "Trail Visibility"
+ },
+ {
+ "key": "trail_visibility",
+ "value": "horrible",
+ "description": "Trail Visibility"
+ },
+ {
+ "key": "trail_visibility",
+ "value": "no",
+ "description": "Trail Visibility"
+ },
+ {"key": "transformer", "value": "distribution", "description": "Type"},
+ {"key": "transformer", "value": "generator", "description": "Type"},
+ {"key": "transformer", "value": "converter", "description": "Type"},
+ {"key": "transformer", "value": "traction", "description": "Type"},
+ {"key": "transformer", "value": "auto", "description": "Type"},
+ {
+ "key": "transformer",
+ "value": "phase_angle_regulator",
+ "description": "Type"
+ },
+ {"key": "transformer", "value": "auxiliary", "description": "Type"},
+ {"key": "transformer", "value": "yes", "description": "Type"},
+ {"key": "trees", "description": "Trees"},
+ {"key": "tunnel", "description": "Type"},
+ {"key": "usage", "value": "main", "description": "Usage Type"},
+ {"key": "usage", "value": "branch", "description": "Usage Type"},
+ {"key": "usage", "value": "industrial", "description": "Usage Type"},
+ {"key": "usage", "value": "military", "description": "Usage Type"},
+ {"key": "usage", "value": "test", "description": "Usage Type"},
+ {"key": "usage", "value": "tourism", "description": "Usage Type"},
+ {"key": "vending", "description": "Types of Goods"},
+ {"key": "visibility", "value": "house", "description": "Visibility"},
+ {"key": "visibility", "value": "street", "description": "Visibility"},
+ {"key": "visibility", "value": "area", "description": "Visibility"},
+ {
+ "key": "volcano:status",
+ "value": "active",
+ "description": "Volcano Status"
+ },
+ {
+ "key": "volcano:status",
+ "value": "dormant",
+ "description": "Volcano Status"
+ },
+ {
+ "key": "volcano:status",
+ "value": "extinct",
+ "description": "Volcano Status"
+ },
+ {
+ "key": "volcano:type",
+ "value": "stratovolcano",
+ "description": "Volcano Type"
+ },
+ {"key": "volcano:type", "value": "shield", "description": "Volcano Type"},
+ {"key": "volcano:type", "value": "scoria", "description": "Volcano Type"},
+ {"key": "voltage", "description": "Voltage"},
+ {"key": "voltage:primary", "description": "Primary Voltage"},
+ {"key": "voltage:secondary", "description": "Secondary Voltage"},
+ {"key": "voltage:tertiary", "description": "Tertiary Voltage"},
+ {"key": "wall", "description": "Type"},
+ {"key": "water_point", "description": "Water Point"},
+ {"key": "water", "description": "Type"},
+ {"key": "website", "description": "Website"},
+ {"key": "wetland", "description": "Type"},
+ {"key": "wheelchair", "description": "Wheelchair Access"},
+ {"key": "wholesale", "description": "Wholesale"},
+ {"key": "width", "description": "Width (Meters)"},
+ {"key": "wikipedia", "description": "Wikipedia"},
+ {"key": "wikidata", "description": "Wikipedia"},
+ {"key": "windings", "description": "Windings"},
+ {
+ "key": "windings:configuration",
+ "value": "star",
+ "description": "Windings Configuration"
+ },
+ {
+ "key": "windings:configuration",
+ "value": "delta",
+ "description": "Windings Configuration"
+ },
+ {
+ "key": "windings:configuration",
+ "value": "open-delta",
+ "description": "Windings Configuration"
+ },
+ {
+ "key": "windings:configuration",
+ "value": "zigzag",
+ "description": "Windings Configuration"
+ },
+ {
+ "key": "windings:configuration",
+ "value": "open",
+ "description": "Windings Configuration"
+ },
+ {
+ "key": "windings:configuration",
+ "value": "scott",
+ "description": "Windings Configuration"
+ },
+ {
+ "key": "windings:configuration",
+ "value": "leblanc",
+ "description": "Windings Configuration"
+ }
+ ]
}
\ No newline at end of file
diff --git a/data/update_imagery.js b/data/update_imagery.js
index 8210f0c0c..702a525ad 100644
--- a/data/update_imagery.js
+++ b/data/update_imagery.js
@@ -1,12 +1,13 @@
-var fs = require('fs');
-var sources = require('editor-layer-index/imagery.json');
+const fs = require('fs');
+const sources = require('editor-layer-index/imagery.json');
+const prettyStringify = require('json-stringify-pretty-compact');
var imagery = [];
// ignore imagery more than 20 years old..
var cutoffDate = new Date();
cutoffDate.setFullYear(cutoffDate.getFullYear() - 20);
-var blacklist = {
+const blacklist = {
'hike_n_bike': true, // 'Hike & Bike'
'osmfr': true, // 'OpenStreetMap (French Style)'
'osm-mapnik-german_style': true, // 'OpenStreetMap (German Style)'
@@ -35,7 +36,8 @@ var blacklist = {
'OSM_Inspector-Routing': true,
'OSM_Inspector-Tagging': true
};
-var supportedWMSProjections = [
+
+const supportedWMSProjections = [
'EPSG:3857',
'EPSG:4326',
'EPSG:900913', // EPSG:3857 alternatives codes
@@ -47,7 +49,7 @@ var supportedWMSProjections = [
'EPSG:3785'
];
-var whitelist = [
+const whitelist = [
// Add custom sources here if needed.
];
@@ -144,4 +146,4 @@ imagery.sort(function(a, b) {
return a.name.localeCompare(b.name);
});
-fs.writeFileSync('data/imagery.json', JSON.stringify({ dataImagery: imagery }, null, 4));
+fs.writeFileSync('data/imagery.json', prettyStringify({ dataImagery: imagery }));
diff --git a/data/update_locales.js b/data/update_locales.js
index 668680c46..0122699e0 100644
--- a/data/update_locales.js
+++ b/data/update_locales.js
@@ -4,15 +4,15 @@ const requireESM = require('esm')(module);
const _isEmpty = requireESM('lodash-es/isEmpty').default;
const _merge = requireESM('lodash-es/merge').default;
-var request = require('request').defaults({ maxSockets: 1 });
-var YAML = require('js-yaml');
-var fs = require('fs');
-var stringify = require('json-stable-stringify');
+const fs = require('fs');
+const prettyStringify = require('json-stringify-pretty-compact');
+const request = require('request').defaults({ maxSockets: 1 });
+const YAML = require('js-yaml');
-var resources = ['core', 'presets', 'imagery', 'community'];
-var outdir = './dist/locales/';
-var api = 'https://www.transifex.com/api/2/';
-var projectURL = api + 'project/id-editor/';
+const resources = ['core', 'presets', 'imagery', 'community'];
+const outdir = './dist/locales/';
+const api = 'https://www.transifex.com/api/2/';
+const projectURL = api + 'project/id-editor/';
/*
@@ -25,12 +25,12 @@ var projectURL = api + 'project/id-editor/';
* }
* */
-var auth = JSON.parse(fs.readFileSync('./transifex.auth', 'utf8'));
+const auth = JSON.parse(fs.readFileSync('./transifex.auth', 'utf8'));
-var sourceCore = YAML.load(fs.readFileSync('./data/core.yaml', 'utf8'));
-var sourcePresets = YAML.load(fs.readFileSync('./data/presets.yaml', 'utf8'));
-var sourceImagery = YAML.load(fs.readFileSync('./node_modules/editor-layer-index/i18n/en.yaml', 'utf8'));
-var sourceCommunity = YAML.load(fs.readFileSync('./node_modules/osm-community-index/i18n/en.yaml', 'utf8'));
+const sourceCore = YAML.load(fs.readFileSync('./data/core.yaml', 'utf8'));
+const sourcePresets = YAML.load(fs.readFileSync('./data/presets.yaml', 'utf8'));
+const sourceImagery = YAML.load(fs.readFileSync('./node_modules/editor-layer-index/i18n/en.yaml', 'utf8'));
+const sourceCommunity = YAML.load(fs.readFileSync('./node_modules/osm-community-index/i18n/en.yaml', 'utf8'));
asyncMap(resources, getResource, function(err, results) {
@@ -71,7 +71,10 @@ asyncMap(resources, getResource, function(err, results) {
}
}, function(err) {
if (!err) {
- fs.writeFileSync('data/locales.json', stringify({ dataLocales: dataLocales }, { space: 4 }));
+ const keys = Object.keys(dataLocales).sort();
+ var sorted = {};
+ keys.forEach(function (k) { sorted[k] = dataLocales[k]; });
+ fs.writeFileSync('data/locales.json', prettyStringify({ dataLocales: sorted }));
}
}
);
diff --git a/package.json b/package.json
index 959f857c9..d01a852c5 100644
--- a/package.json
+++ b/package.json
@@ -61,7 +61,7 @@
"glob": "^7.1.0",
"happen": "^0.3.1",
"js-yaml": "^3.9.0",
- "json-stable-stringify": "^1.0.1",
+ "json-stringify-pretty-compact": "^1.1.0",
"jsonschema": "^1.1.0",
"mapillary-js": "2.12.1",
"mapillary_sprite_source": "^1.4.0",