Browse Source

first commit

uf0 4 years ago
commit
057142dbda

+ 14 - 0
.babelrc

@@ -0,0 +1,14 @@
+{
+  "presets": [
+    [
+      "env",
+      {
+        "targets": {
+          "browsers": "last 2 Firefox versions, last 2 Chrome versions, last 2 Edge versions, last 2 Safari versions"
+        },
+        "exclude": ["/mapbox-gl"]
+      }
+    ]
+  ],
+  "plugins": ["@babel/plugin-proposal-class-properties"]
+}

+ 4 - 0
.gitignore

@@ -0,0 +1,4 @@
+node_modules
+.DS_Store
+.cache
+dist

+ 33 - 0
index.html

@@ -0,0 +1,33 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="utf-8" />
+
+    <title>Daspo free zone</title>
+    <link
+      href="https://api.mapbox.com/mapbox-gl-js/v1.0.0/mapbox-gl.css"
+      rel="stylesheet"
+    />
+  </head>
+
+  <body>
+    <div id="container">
+      <nav id="menu"></nav>
+      <div id="map"></div>
+      <!-- <div class="map-overlay top">
+        <div class="map-overlay-inner">
+          <label>Layer opacity: <span id="slider-value">100%</span></label>
+          <input
+            id="slider"
+            type="range"
+            min="0"
+            max="100"
+            step="0"
+            value="100"
+          />
+        </div>
+      </div> -->
+    </div>
+    <script src="./index.js"></script>
+  </body>
+</html>

+ 452 - 0
index.js

@@ -0,0 +1,452 @@
+import * as mapboxgl from "mapbox-gl";
+import Bbox from "@turf/bbox";
+import BboxPolygon from "@turf/bbox-polygon";
+import Center from "@turf/center";
+import BooleanContains from "@turf/boolean-contains";
+import BooleanOverlap from "@turf/boolean-overlap";
+import Buffer from "@turf/buffer";
+import confini from "./layers/confini.json";
+import confiniHole from "./layers/confini_hole.json";
+import aree_omogenee from "./layers/aree_omogenee.json";
+import scuole_buffer from "./layers/scuole_buffer.json";
+import luoghi_monumentali_buffer from "./layers/luoghi_monumentali_buffer.json";
+import mercati_buffer from "./layers/mercati_buffer.json";
+import musei_buffer from "./layers/musei_buffer.json";
+import ospedali_cliniche_buffer from "./layers/ospedali_cliniche_buffer.json";
+import stazioni_ferrovie_buffer from "./layers/stazioni_ferrovie_buffer.json";
+import stazioni_metro_buffer from "./layers/stazioni_metro_buffer.json";
+import parchi_buffer from "./layers/parchi_buffer.json";
+import "./style.css";
+
+mapboxgl.accessToken =
+  "pk.eyJ1IjoidGVvIiwiYSI6IllvZUo1LUkifQ.dirqtn275pAKdnqtLM2HSw";
+
+const bounds = Bbox(confini);
+const maxBounds = Bbox(Buffer(confini, 10));
+const map = new mapboxgl.Map({
+  container: "map",
+  zoom: 11,
+  center: Center(confini).geometry.coordinates,
+  style: "mapbox://styles/teo/cjyxhh5n92wy51ck4a4uiymtu/draft",
+  maxBounds: [[maxBounds[0], maxBounds[1]], [maxBounds[2], maxBounds[3]]],
+  maxZoom: 16
+});
+
+const nav = new mapboxgl.NavigationControl();
+map.addControl(nav, "top-left");
+
+map.fitBounds([[bounds[0], bounds[1]], [bounds[2], bounds[3]]], {
+  padding: 20
+});
+
+// const slider = document.getElementById("slider");
+// const sliderValue = document.getElementById("slider-value");
+
+map.on("load", function() {
+  map.setLayoutProperty("building", "visibility", "none");
+  map.setLayoutProperty("building-outline", "visibility", "none");
+
+  map.addSource("aree_omogeneeSource", {
+    type: "geojson",
+    data: aree_omogenee
+  });
+
+  map.addSource("scuoleBufferSource", {
+    type: "geojson",
+    data: scuole_buffer
+  });
+
+  map.addSource("luoghiMonumentaliBufferSource", {
+    type: "geojson",
+    data: luoghi_monumentali_buffer
+  });
+
+  map.addSource("mercatiBufferSource", {
+    type: "geojson",
+    data: mercati_buffer
+  });
+
+  map.addSource("museiBufferSource", {
+    type: "geojson",
+    data: musei_buffer
+  });
+
+  map.addSource("ospedaliClinicheBufferSource", {
+    type: "geojson",
+    data: ospedali_cliniche_buffer
+  });
+
+  map.addSource("stazioniFerrovieBufferSource", {
+    type: "geojson",
+    data: stazioni_ferrovie_buffer
+  });
+
+  map.addSource("stazioniMetroBufferSource", {
+    type: "geojson",
+    data: stazioni_metro_buffer
+  });
+
+  map.addSource("parchiBufferSource", {
+    type: "geojson",
+    data: parchi_buffer
+  });
+
+  map.addSource("confiniHoleSource", {
+    type: "geojson",
+    data: confiniHole
+  });
+
+  map.addSource("confiniSource", {
+    type: "geojson",
+    data: confini
+  });
+
+  map.addSource("osmbuildings", {
+    type: "vector",
+    url: "https://data.osmbuildings.org/0.2/rkc8ywdl/tile.json"
+  });
+
+  const layers = map.getStyle().layers;
+  //console.log(layers);
+  let labelLayerId = "";
+  for (let i = 0; i < layers.length; i++) {
+    if (layers[i].type === "symbol" && layers[i].layout["text-field"]) {
+      labelLayerId = layers[i].id;
+      break;
+    }
+  }
+
+  map.addLayer(
+    {
+      id: "aree_omogenee",
+      type: "fill",
+      source: "aree_omogeneeSource",
+      paint: {
+        "fill-color": "#f5553d",
+        "fill-opacity": 1
+      }
+    },
+    "building-outline"
+  );
+
+  map.addLayer(
+    {
+      id: "parchi_buffer",
+      type: "fill",
+      source: "parchiBufferSource",
+      paint: {
+        "fill-color": "#f5553d",
+        "fill-opacity": 1
+      }
+    },
+    "building-outline"
+  );
+
+  map.addLayer(
+    {
+      id: "mercati_buffer",
+      type: "fill",
+      source: "mercatiBufferSource",
+      paint: {
+        "fill-color": "#f5553d",
+        "fill-opacity": 1
+      }
+    },
+    "building-outline"
+  );
+
+  map.addLayer(
+    {
+      id: "scuole_buffer",
+      type: "fill",
+      source: "scuoleBufferSource",
+      paint: {
+        "fill-color": "#f5553d",
+        "fill-opacity": 1
+      }
+    },
+    "building-outline"
+  );
+
+  map.addLayer(
+    {
+      id: "musei_buffer",
+      type: "fill",
+      source: "museiBufferSource",
+      paint: {
+        "fill-color": "#f5553d",
+        "fill-opacity": 1
+      }
+    },
+    "building-outline"
+  );
+
+  map.addLayer(
+    {
+      id: "ospedali_cliniche_buffer",
+      type: "fill",
+      source: "ospedaliClinicheBufferSource",
+      paint: {
+        "fill-color": "#f5553d",
+        "fill-opacity": 1
+      }
+    },
+    "building-outline"
+  );
+
+  map.addLayer(
+    {
+      id: "stazioni_ferrovie_buffer",
+      type: "fill",
+      source: "stazioniFerrovieBufferSource",
+      paint: {
+        "fill-color": "#f5553d",
+        "fill-opacity": 1
+      }
+    },
+    "building-outline"
+  );
+
+  map.addLayer(
+    {
+      id: "stazioni_metro_buffer",
+      type: "fill",
+      source: "stazioniMetroBufferSource",
+      paint: {
+        "fill-color": "#f5553d",
+        "fill-opacity": 1
+      }
+    },
+    "building-outline"
+  );
+
+  map.addLayer(
+    {
+      id: "luoghi_monumentali_buffer",
+      type: "fill",
+      source: "luoghiMonumentaliBufferSource",
+      paint: {
+        "fill-color": "#f5553d",
+        "fill-opacity": 1
+      }
+    },
+    "building-outline"
+  );
+
+  map.addLayer(
+    {
+      id: "buildings-base",
+      type: "fill",
+      source: "osmbuildings",
+      "source-layer": "building",
+      // filter: ["all", ["==", "minHeight", 0]],
+      // layout: {},
+      paint: {
+        "fill-color": "#fff",
+        "fill-opacity": { stops: [[16, 0], [17.5, 1]] }
+      }
+    },
+    labelLayerId
+  );
+
+  map.addLayer(
+    {
+      id: "buildings-3d",
+      type: "fill-extrusion",
+      source: "osmbuildings",
+      "source-layer": "building",
+      paint: {
+        "fill-extrusion-color": "#f5553d",
+        "fill-extrusion-height": [
+          "interpolate",
+          ["linear"],
+          ["zoom"],
+          15,
+          0,
+          15.05,
+          [
+            "number",
+            ["get", "height"],
+            ["*", ["number", ["get", "levels"], 3], 3]
+          ]
+        ],
+        "fill-extrusion-base": [
+          "interpolate",
+          ["linear"],
+          ["zoom"],
+          15,
+          0,
+          15.05,
+          [
+            "number",
+            ["get", "minHeight"],
+            ["*", ["number", ["get", "minLevel"], 0], 3]
+          ]
+        ],
+
+        "fill-extrusion-opacity": {
+          stops: [[15, 0], [15.5, 1], [16, 1], [17.5, 0.6]]
+        }
+      },
+      //filter: ["!=", ["string", ["get", "shape"], ""], "none"]
+      filter: ["match", ["get", "id"], "", true, false]
+    },
+    labelLayerId
+  );
+
+  map.addLayer(
+    {
+      id: "confiniHole",
+      source: "confiniHoleSource",
+      type: "fill",
+      paint: {
+        "fill-color": "#fff"
+      }
+    },
+    "settlement-subdivision-label"
+  );
+
+  map.addLayer(
+    {
+      id: "confini",
+      source: "confiniSource",
+      type: "line",
+      paint: {
+        "line-color": "#000"
+      }
+    },
+    "settlement-subdivision-label"
+  );
+});
+
+map.on("moveend", function() {
+  if (map.getZoom() >= 15) {
+    const aulenti = aree_omogenee.features.filter(
+      f => f.properties.area === "C.so Garibladi, C.so Como, Gae Aulenti"
+    )[0];
+
+    let buildings = map.queryRenderedFeatures({
+      layers: ["buildings-base"],
+      filter: ["!=", ["string", ["get", "shape"], ""], "none"]
+    });
+
+    let features = map.queryRenderedFeatures({
+      layers: [
+        "aree_omogenee",
+        "parchi_buffer",
+        "luoghi_monumentali_buffer",
+        "mercati_buffer",
+        "musei_buffer",
+        "ospedali_cliniche_buffer",
+        "scuole_buffer",
+        "stazioni_ferrovie_buffer",
+        "stazioni_metro_buffer"
+      ]
+    });
+
+    const filtered = buildings
+      .filter(b => {
+        let inside = false;
+        for (let feature of features) {
+          //console.log(b, feature);
+          if (BooleanContains(feature, b)) {
+            inside = true;
+            break;
+          } else {
+            inside = false;
+          }
+        }
+        return inside;
+      })
+      .map(b => b.properties.id);
+
+    const ids = [...new Set(filtered)].filter(i => i);
+
+    const filter = ["match", ["get", "id"], ids, true, false];
+
+    if (ids.length) {
+      map.setFilter("buildings-3d", filter);
+    }
+  }
+});
+
+map.on("zoomend", function() {
+  if (map.getZoom() >= 15) {
+    const aulenti = aree_omogenee.features.filter(
+      f => f.properties.area === "C.so Garibladi, C.so Como, Gae Aulenti"
+    )[0];
+
+    let buildings = map.queryRenderedFeatures({
+      layers: ["buildings-base"],
+      filter: ["!=", ["string", ["get", "shape"], ""], "none"]
+    });
+
+    let features = map.queryRenderedFeatures({
+      layers: [
+        "aree_omogenee",
+        "parchi_buffer",
+        "luoghi_monumentali_buffer",
+        "mercati_buffer",
+        "musei_buffer",
+        "ospedali_cliniche_buffer",
+        "scuole_buffer",
+        "stazioni_ferrovie_buffer",
+        "stazioni_metro_buffer"
+      ]
+    });
+
+    const filtered = buildings
+      .filter(b => {
+        let inside = false;
+        for (let feature of features) {
+          //console.log(b, feature);
+          if (BooleanContains(feature, b)) {
+            inside = true;
+            break;
+          } else {
+            inside = false;
+          }
+        }
+        return inside;
+      })
+      .map(b => b.properties.id);
+
+    const ids = [...new Set(filtered)].filter(i => i);
+
+    const filter = ["match", ["get", "id"], ids, true, false];
+
+    if (ids.length) {
+      map.setFilter("buildings-3d", filter);
+    }
+  }
+});
+
+// var toggleableLayerIds = ["wbbuilding", "aereal"];
+//
+// for (var i = 0; i < toggleableLayerIds.length; i++) {
+//   var id = toggleableLayerIds[i];
+//
+//   var link = document.createElement("a");
+//   link.href = "#";
+//   link.className = "active";
+//   link.textContent = id;
+//
+//   link.onclick = function(e) {
+//     var clickedLayer = this.textContent;
+//     e.preventDefault();
+//     e.stopPropagation();
+//
+//     var visibility = map.getLayoutProperty(clickedLayer, "visibility");
+//
+//     if (visibility === "visible") {
+//       map.setLayoutProperty(clickedLayer, "visibility", "none");
+//       this.className = "";
+//     } else {
+//       this.className = "active";
+//       map.setLayoutProperty(clickedLayer, "visibility", "visible");
+//     }
+//   };
+//
+//   var layers = document.getElementById("menu");
+//   layers.appendChild(link);
+// }

File diff suppressed because it is too large
+ 0 - 0
layers/aree_omogenee.json


File diff suppressed because it is too large
+ 5 - 0
layers/aree_omogenee_multi.json


File diff suppressed because it is too large
+ 0 - 0
layers/confini.json


File diff suppressed because it is too large
+ 0 - 0
layers/confini_hole.json


File diff suppressed because it is too large
+ 9 - 0
layers/luoghi_monumentali_buffer.json


File diff suppressed because it is too large
+ 8 - 0
layers/mercati_buffer.json


File diff suppressed because it is too large
+ 8 - 0
layers/musei_buffer.json


File diff suppressed because it is too large
+ 13 - 0
layers/ospedali_cliniche_buffer.json


File diff suppressed because it is too large
+ 5 - 0
layers/parchi_buffer.json


File diff suppressed because it is too large
+ 5 - 0
layers/scuole_buffer.json


File diff suppressed because it is too large
+ 5 - 0
layers/stazioni_ferrovie_buffer.json


+ 93 - 0
layers/stazioni_metro_buffer.json

@@ -0,0 +1,93 @@
+{
+"type": "FeatureCollection",
+"name": "stazioni_metro",
+"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
+"features": [
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.257512240271762, 45.429203530010305 ], [ 9.257448411406903, 45.428925525070689 ], [ 9.257265700190434, 45.428675014679591 ], [ 9.256981992703857, 45.428476520031943 ], [ 9.256625060195697, 45.428349470545193 ], [ 9.256229840644757, 45.428306302210018 ], [ 9.255835019192922, 45.428351240459236 ], [ 9.255479242023807, 45.428479886623442 ], [ 9.255197334050871, 45.428679648427284 ], [ 9.255016890407491, 45.428930972415209 ], [ 9.254955575236613, 45.429209257742571 ], [ 9.255019392195829, 45.429487264087236 ], [ 9.255202096127661, 45.429737778051674 ], [ 9.255485803733091, 45.429936277076081 ], [ 9.25584274371819, 45.430063330071185 ], [ 9.256237975248228, 45.430106499706277 ], [ 9.256632808605701, 45.430061560052025 ], [ 9.256988593059457, 45.42993291031447 ], [ 9.25727050091354, 45.429733144133877 ], [ 9.257450937079984, 45.429481816637583 ], [ 9.257512240271762, 45.429203530010305 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.178601164798723, 45.429992913114077 ], [ 9.178537722283746, 45.429714863532602 ], [ 9.178355357194095, 45.429464226428045 ], [ 9.178071921734244, 45.42926553540029 ], [ 9.177715160530054, 45.429138239089866 ], [ 9.177319994796036, 45.42909479764679 ], [ 9.176925104407607, 45.429139463235245 ], [ 9.176569142294662, 45.429267863873505 ], [ 9.176286951469979, 45.429467431318592 ], [ 9.176106154749224, 45.429718631140211 ], [ 9.176044450832885, 45.429996874649383 ], [ 9.176107881430156, 45.430274925619791 ], [ 9.17629023920507, 45.430525566287869 ], [ 9.176573674747141, 45.430724261692582 ], [ 9.176930443399096, 45.430851561521585 ], [ 9.177325621101634, 45.430895004280877 ], [ 9.177720523407768, 45.43085033730349 ], [ 9.178076492835446, 45.430721933101708 ], [ 9.17835868357791, 45.430522361279635 ], [ 9.178539472850899, 45.430271157939451 ], [ 9.178601164798723, 45.429992913114077 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.239367540911282, 45.433583532876717 ], [ 9.23930379605966, 45.433305517840196 ], [ 9.239121150780944, 45.433054978483263 ], [ 9.238837484703396, 45.432856438836488 ], [ 9.238480565023341, 45.432729332722019 ], [ 9.238085328464578, 45.432686101673255 ], [ 9.237690461833823, 45.432730977261308 ], [ 9.237334615736337, 45.432859566949979 ], [ 9.23705262183157, 45.433059283991895 ], [ 9.236872083663295, 45.433310579313215 ], [ 9.236810674626511, 45.433588854875744 ], [ 9.236874407567086, 45.433866871313832 ], [ 9.237057045552625, 45.434117414242358 ], [ 9.237340711740623, 45.434315958266609 ], [ 9.237697638892561, 45.434443067892317 ], [ 9.238092887430634, 45.434486300244906 ], [ 9.23848776597244, 45.434441423255301 ], [ 9.238843619363095, 45.434312829995029 ], [ 9.239125613157416, 45.434113108575673 ], [ 9.239306143853806, 45.433861809743121 ], [ 9.239367540911282, 45.433583532876717 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.224748096356429, 45.440408396210813 ], [ 9.22468441544933, 45.44013037322636 ], [ 9.224501812639772, 45.439879810711794 ], [ 9.224218163399993, 45.439681234964624 ], [ 9.22386123327909, 45.439554083340674 ], [ 9.223465960023274, 45.439510801827709 ], [ 9.223071034031104, 45.439555626936148 ], [ 9.222715111717648, 45.439684171070731 ], [ 9.222433032201737, 45.439883851943044 ], [ 9.222252407406405, 45.440135124020003 ], [ 9.222190919205923, 45.440413391539096 ], [ 9.22225458819555, 45.440691415922444 ], [ 9.2224371837038, 45.440941982007629 ], [ 9.222720833047264, 45.441140562133299 ], [ 9.223077770637266, 45.441267717271195 ], [ 9.223473055874633, 45.441311000091346 ], [ 9.223867993784273, 45.441266173584033 ], [ 9.224223923399046, 45.441137625878831 ], [ 9.224506002811262, 45.440937940627983 ], [ 9.224686620137497, 45.440686665037092 ], [ 9.224748096356429, 45.440408396210813 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.219760050996623, 45.442808251944967 ], [ 9.219696391833573, 45.442530226256061 ], [ 9.219513803291061, 45.442279655846335 ], [ 9.219230159445171, 45.442081067786212 ], [ 9.218873225317317, 45.441953900636669 ], [ 9.218477939046091, 45.441910601905143 ], [ 9.218082992303955, 45.44195540978729 ], [ 9.217727043536824, 45.442083938374005 ], [ 9.217444934452597, 45.442283606898798 ], [ 9.217264279868331, 45.442534871037211 ], [ 9.217202764574116, 45.442813135804016 ], [ 9.217266411817462, 45.443091162890887 ], [ 9.217448993055855, 45.443341736870913 ], [ 9.217732637003134, 45.443540329309954 ], [ 9.218089578599155, 45.443667499974367 ], [ 9.218484876852751, 45.443710800014252 ], [ 9.218879835514588, 45.44366599073409 ], [ 9.219235791585842, 45.44353745857709 ], [ 9.219517900568681, 45.443337785673407 ], [ 9.219698547684766, 45.443086518020067 ], [ 9.219760050996623, 45.442808251944967 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.168955475700836, 45.443731420625504 ], [ 9.168892064949127, 45.443453366311871 ], [ 9.16870969808123, 45.443202714414831 ], [ 9.168426227476958, 45.443003999982267 ], [ 9.168069401202981, 45.442876673945342 ], [ 9.167674146843044, 45.442833199363534 ], [ 9.167279152946852, 45.442877831644502 ], [ 9.166923082574941, 45.443006202066734 ], [ 9.166640789335963, 45.443205745345033 ], [ 9.16645990606998, 45.443456929415035 ], [ 9.166398139949374, 45.443735167130058 ], [ 9.166461538773369, 45.444013222831295 ], [ 9.166643898317604, 45.444263878292375 ], [ 9.166927368999668, 45.444462597104057 ], [ 9.167284202723168, 45.444589926662466 ], [ 9.167679469058898, 45.444633402563106 ], [ 9.168074474882806, 45.444588768894505 ], [ 9.168430552578378, 45.444460394908276 ], [ 9.168712845739561, 45.444260847250867 ], [ 9.168893721556023, 45.444009659659358 ], [ 9.168955475700836, 45.443731420625504 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.169291121225182, 45.436893117087486 ], [ 9.169227716582526, 45.43661506261742 ], [ 9.16904537034616, 45.436364410925542 ], [ 9.168761932875933, 45.436165697039719 ], [ 9.168405148995109, 45.436038371837803 ], [ 9.168009942138063, 45.435994898297615 ], [ 9.16761499620519, 45.436039531724944 ], [ 9.167258969562646, 45.436167903285963 ], [ 9.166976711538958, 45.436367447583976 ], [ 9.16679585152707, 45.436618632454589 ], [ 9.166734094422742, 45.436896870672641 ], [ 9.166797487142016, 45.437174926530069 ], [ 9.16697982605748, 45.437425581785149 ], [ 9.167263263605626, 45.437624300049045 ], [ 9.167620054933426, 45.437751628771565 ], [ 9.168015273762014, 45.437795103630179 ], [ 9.168410231618273, 45.43775046881553 ], [ 9.168766265581713, 45.437622093691267 ], [ 9.169048523527486, 45.43742254501521 ], [ 9.169229376092392, 45.437171356623963 ], [ 9.169291121225182, 45.436893117087486 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.231589621600795, 45.437125319773791 ], [ 9.231525910867019, 45.436847300502194 ], [ 9.231343288468004, 45.436596748818957 ], [ 9.231059631793, 45.436398189961274 ], [ 9.230702707118464, 45.436271059631807 ], [ 9.230307451657302, 45.436227801734013 ], [ 9.22991255406636, 45.436272650466947 ], [ 9.229556667981029, 45.436401215922942 ], [ 9.229274628974432, 45.436600913726657 ], [ 9.229094045004718, 45.436852196687461 ], [ 9.229032593950031, 45.437130467977347 ], [ 9.229096292769398, 45.437408488649083 ], [ 9.229278907870942, 45.437659043903416 ], [ 9.229562564652801, 45.43785760713908 ], [ 9.229919496797702, 45.437984740981221 ], [ 9.230314764239315, 45.438028000184623 ], [ 9.230709673744666, 45.4379831500516 ], [ 9.231065567127466, 45.437854581024517 ], [ 9.231347606027203, 45.437654878842793 ], [ 9.231528182526555, 45.4374035923693 ], [ 9.231589621600795, 45.437125319773791 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.212095140946985, 45.446761237587417 ], [ 9.21203151490241, 45.446483207759911 ], [ 9.211848947431594, 45.446232625233741 ], [ 9.211565310548586, 45.446034018265387 ], [ 9.211208368593748, 45.445906827266661 ], [ 9.210813060472008, 45.445863502079305 ], [ 9.210418079994517, 45.445908283488393 ], [ 9.21006208890892, 45.446036788176016 ], [ 9.209779933064924, 45.446236437714994 ], [ 9.209599231856256, 45.446487689639447 ], [ 9.209537674636728, 45.446765950159914 ], [ 9.209601288757996, 45.447043981384013 ], [ 9.209783848920283, 45.447294567480007 ], [ 9.210067485901137, 45.447493178827884 ], [ 9.210424435322828, 45.447620373342971 ], [ 9.210819755428341, 45.447663699840419 ], [ 9.211214747829134, 45.44761891703471 ], [ 9.211570746223266, 45.447490408777263 ], [ 9.211852901969415, 45.447290754858784 ], [ 9.212033595711233, 45.447039499417976 ], [ 9.212095140946985, 45.446761237587417 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.204679047090467, 45.451431820428034 ], [ 9.204615452134089, 45.451153786643474 ], [ 9.204432902318405, 45.450903192438844 ], [ 9.204149267929932, 45.450704567213904 ], [ 9.203792313065316, 45.450577353167425 ], [ 9.203396977893329, 45.450534002396999 ], [ 9.203001958872711, 45.450578758191746 ], [ 9.202645921523414, 45.450707239740801 ], [ 9.202363716223097, 45.450906870881973 ], [ 9.202182967206136, 45.451158110950331 ], [ 9.202121368506022, 45.451436367317235 ], [ 9.202184951535083, 45.451714402497124 ], [ 9.202367494037636, 45.451965000271237 ], [ 9.202651128520527, 45.452163629876409 ], [ 9.203008090851052, 45.452290847440779 ], [ 9.203403438008717, 45.452334199523044 ], [ 9.203798468956647, 45.452289442332997 ], [ 9.204154513619077, 45.452160957214453 ], [ 9.204436718824967, 45.451961321693048 ], [ 9.204617460376021, 45.451710078106785 ], [ 9.204679047090467, 45.451431820428034 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.170618563119724, 45.452030801740236 ], [ 9.17055513478053, 45.45175274878067 ], [ 9.170372733701802, 45.451502099953771 ], [ 9.170089215612508, 45.451303390006714 ], [ 9.169732333227367, 45.451176069431398 ], [ 9.169337019622132, 45.451132600752608 ], [ 9.168941969145068, 45.45117723880017 ], [ 9.168585850394544, 45.45130561428811 ], [ 9.168303521714481, 45.451505161435641 ], [ 9.16812261941427, 45.451756347799773 ], [ 9.168060852530052, 45.452034586009404 ], [ 9.168124268936573, 45.452312640357334 ], [ 9.168306662689069, 45.452563292749488 ], [ 9.16859018085696, 45.452762007076913 ], [ 9.168947070695493, 45.452889331174553 ], [ 9.16934239628198, 45.45293280117221 ], [ 9.169737458691714, 45.452888161736325 ], [ 9.170093584768464, 45.452759782683088 ], [ 9.170375913369936, 45.452560231155211 ], [ 9.170556808216757, 45.452309041268748 ], [ 9.170618563119724, 45.452030801740236 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.114204441932554, 45.455379133272523 ], [ 9.114141286972195, 45.455101048886931 ], [ 9.11395912479505, 45.454850309893523 ], [ 9.11367578774793, 45.454651459866504 ], [ 9.113319010827617, 45.454523963009798 ], [ 9.112923716789041, 45.45448029910262 ], [ 9.112528598065994, 45.454524742083514 ], [ 9.112172329935762, 45.454652941759406 ], [ 9.111889785361384, 45.454852349558195 ], [ 9.111708621781775, 45.455103446677455 ], [ 9.111646573806105, 45.45538165448302 ], [ 9.111709716823468, 45.455659740245551 ], [ 9.111891871651814, 45.455910482797528 ], [ 9.112175208751315, 45.456109337205476 ], [ 9.112531993105184, 45.456236837592137 ], [ 9.112927299119129, 45.456280502829927 ], [ 9.113322429785166, 45.456236058472093 ], [ 9.113678705264205, 45.456107855237647 ], [ 9.113961249786202, 45.455908443057915 ], [ 9.114142405932252, 45.45565734240872 ], [ 9.114204441932554, 45.455379133272523 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.123541890836965, 45.457561628674767 ], [ 9.123478687533694, 45.457283549609237 ], [ 9.123296476959331, 45.457032825653556 ], [ 9.123013096197763, 45.456833998909751 ], [ 9.122656284524238, 45.456706531302522 ], [ 9.122260968094949, 45.456662899748125 ], [ 9.12186584153506, 45.456707375018446 ], [ 9.121509580888981, 45.456835603759927 ], [ 9.121227058387536, 45.457035034555588 ], [ 9.1210459293096, 45.457286146351919 ], [ 9.120983924887703, 45.457564359077971 ], [ 9.121047116247968, 45.457842439522459 ], [ 9.121229319476207, 45.458093167038157 ], [ 9.121512700294495, 45.458291998163226 ], [ 9.121869519405939, 45.458419469299471 ], [ 9.122264847813289, 45.45846310218267 ], [ 9.122659986316187, 45.458418625533412 ], [ 9.123016254308389, 45.458290393231906 ], [ 9.123298776753106, 45.458090958054989 ], [ 9.123479898393128, 45.457839842729634 ], [ 9.123541890836965, 45.457561628674767 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.130538732327414, 45.45941215028602 ], [ 9.130475492552799, 45.45913407522287 ], [ 9.130293245016301, 45.458883362550758 ], [ 9.130009830419652, 45.458684553267076 ], [ 9.129652991349644, 45.458557107587346 ], [ 9.12925765664375, 45.458513500281519 ], [ 9.128862522715879, 45.458557999748017 ], [ 9.128506266331643, 45.458686250265067 ], [ 9.128223759304966, 45.45888569828427 ], [ 9.128042655400403, 45.459136821066188 ], [ 9.127980683386815, 45.459415037464453 ], [ 9.128043911218283, 45.459693113908102 ], [ 9.128226151410582, 45.459943830141327 ], [ 9.128509566067212, 45.460142643806549 ], [ 9.128866412578484, 45.460270093014643 ], [ 9.129261759264599, 45.460313701647927 ], [ 9.129656905135615, 45.460269200800937 ], [ 9.13001316886405, 45.46014094672276 ], [ 9.130295675830743, 45.459941494322024 ], [ 9.130476772294045, 45.459690368011749 ], [ 9.130538732327414, 45.45941215028602 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.196546761671339, 45.456473011286953 ], [ 9.196483200910501, 45.45619497316369 ], [ 9.196300670727233, 45.455944366151506 ], [ 9.196017039486989, 45.455745720903899 ], [ 9.195660070978798, 45.455618481579478 ], [ 9.195264706707093, 45.455575102749961 ], [ 9.194869645978827, 45.455619830450829 ], [ 9.194513558395951, 45.455748286621059 ], [ 9.194231299252648, 45.455947897582647 ], [ 9.19405049805327, 45.456199124646112 ], [ 9.193988853939134, 45.456477376456036 ], [ 9.194052402768303, 45.456755415973163 ], [ 9.194234925633435, 45.457006026554438 ], [ 9.194518556964338, 45.457204676183082 ], [ 9.194875532937369, 45.457331919027055 ], [ 9.19527090919677, 45.457375299170316 ], [ 9.195665981856703, 45.457330570075563 ], [ 9.196022076757718, 45.45720211033624 ], [ 9.196304335810362, 45.457002494993652 ], [ 9.196485129544902, 45.456751264410599 ], [ 9.196546761671339, 45.456473011286953 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.174195774423469, 45.461388661381648 ], [ 9.174132317879936, 45.461110610907234 ], [ 9.173949870674955, 45.460859968272722 ], [ 9.173666293052962, 45.460661267618924 ], [ 9.173309343555928, 45.46053395852789 ], [ 9.172913961828259, 45.460490502400049 ], [ 9.172518848885627, 45.460535152836776 ], [ 9.172162679440191, 45.460663539339514 ], [ 9.17188031679793, 45.460863095049469 ], [ 9.171699400592935, 45.461114286685749 ], [ 9.171637641223153, 45.461392526361209 ], [ 9.171701085828664, 45.461670578225174 ], [ 9.171883525705169, 45.461921224426575 ], [ 9.17216710340745, 45.462119929462183 ], [ 9.172524060362878, 45.462247242076238 ], [ 9.17291945407819, 45.462290699522626 ], [ 9.173314578958843, 45.462246047696389 ], [ 9.173670755732759, 45.462117657626777 ], [ 9.173953118294724, 45.461918097534991 ], [ 9.174134027041331, 45.461666902375718 ], [ 9.174195774423469, 45.461388661381648 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.137763579212796, 45.461502469332999 ], [ 9.137700301571599, 45.461224398416256 ], [ 9.137518015286247, 45.460973697408654 ], [ 9.137234564851205, 45.460774906165639 ], [ 9.136877696360903, 45.460647483136746 ], [ 9.136482341532179, 45.460603900874766 ], [ 9.136087198748365, 45.460648425326887 ], [ 9.135730945641919, 45.460776698325752 ], [ 9.135448453706193, 45.460976164122485 ], [ 9.135267375229004, 45.461227298237525 ], [ 9.135205436490699, 45.461505518414953 ], [ 9.135268702188489, 45.461783590713793 ], [ 9.135450981131559, 45.462034295283665 ], [ 9.135734431629952, 45.462233090908548 ], [ 9.136091307565044, 45.462360517465157 ], [ 9.136486674376327, 45.462404101053203 ], [ 9.136881829103547, 45.462359575219011 ], [ 9.137238089552273, 45.462231298657855 ], [ 9.137520581424653, 45.462031828479233 ], [ 9.137701652457059, 45.461780690836534 ], [ 9.137763579212796, 45.461502469332999 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.144307155564132, 45.464894695967665 ], [ 9.144243841926999, 45.464616628885679 ], [ 9.144061515696102, 45.464365938518817 ], [ 9.14377802527588, 45.464167163680663 ], [ 9.143421120674365, 45.464039761214892 ], [ 9.14302573714267, 45.463996201661523 ], [ 9.142630575873342, 45.464040748744964 ], [ 9.142274316308168, 45.464169042082844 ], [ 9.141991830572872, 45.464368523935484 ], [ 9.141810770348783, 45.464619668251729 ], [ 9.14174886013004, 45.464897891777092 ], [ 9.141812161822587, 45.465175960242654 ], [ 9.141994480712368, 45.465426654173051 ], [ 9.14227797119899, 45.465625433393576 ], [ 9.142634883249071, 45.465752839386639 ], [ 9.143030278766387, 45.4657964002649 ], [ 9.143425451980303, 45.465751851797876 ], [ 9.143781718886597, 45.465623554896446 ], [ 9.144064204555486, 45.465424068661441 ], [ 9.144245257331013, 45.465172920817906 ], [ 9.144307155564132, 45.464894695967665 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.198807788658321, 45.466519185592553 ], [ 9.198744205330566, 45.466241149255971 ], [ 9.198561632571451, 45.465990546370747 ], [ 9.198277942914505, 45.46579190718613 ], [ 9.197920905866805, 45.465664675267057 ], [ 9.197525469641251, 45.465621304460214 ], [ 9.197130340587186, 45.46566604001579 ], [ 9.196774194993926, 45.465794503103972 ], [ 9.196491893833675, 45.465994119369824 ], [ 9.19631107072386, 45.466245349604897 ], [ 9.19624942695123, 45.466523602143383 ], [ 9.196312998341346, 45.466801639874767 ], [ 9.196495563779303, 45.467052246330624 ], [ 9.196779253528014, 45.467250889897791 ], [ 9.197136298045328, 45.467378125337369 ], [ 9.197531746265229, 45.467421497457948 ], [ 9.197926887256932, 45.46737676050757 ], [ 9.198283040171347, 45.467248293848741 ], [ 9.198565341239838, 45.467048673200338 ], [ 9.198746156880031, 45.466797439444768 ], [ 9.198807788658321, 45.466519185592553 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.15719362387307, 45.467948351570243 ], [ 9.157130243439214, 45.467670291869425 ], [ 9.156947850264482, 45.467419622295388 ], [ 9.156664299305724, 45.467220879626083 ], [ 9.156307346496041, 45.467093517556201 ], [ 9.155911931804653, 45.467050002671755 ], [ 9.15551675947369, 45.467094594324934 ], [ 9.15516051002774, 45.467222927771026 ], [ 9.154878054602506, 45.467422441344539 ], [ 9.154697041913199, 45.46767360588931 ], [ 9.154635191801788, 45.467951836170592 ], [ 9.154698560291024, 45.468229897257771 ], [ 9.154880946128324, 45.468480570397347 ], [ 9.155164497159491, 45.468679317449492 ], [ 9.155521457423765, 45.468806683045372 ], [ 9.155916884104522, 45.468850199252216 ], [ 9.156312068380098, 45.468805606212648 ], [ 9.156668325163484, 45.468677269201024 ], [ 9.156950780516313, 45.468477751244684 ], [ 9.157131785751028, 45.468226583173902 ], [ 9.15719362387307, 45.467948351570243 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.167884013007278, 45.467497931864195 ], [ 9.167820580540839, 45.46721987814739 ], [ 9.167638141490908, 45.466969225688864 ], [ 9.167354555304321, 45.466770509591001 ], [ 9.166997581361816, 45.466643180947521 ], [ 9.166602161700698, 45.466599703072625 ], [ 9.166207001049402, 45.466644331696109 ], [ 9.165850778789473, 45.466772698454562 ], [ 9.165568363396067, 45.466972238421896 ], [ 9.165387399666507, 45.467223419858342 ], [ 9.165325602650785, 45.467501655875438 ], [ 9.165389023174445, 45.467779710980786 ], [ 9.165571454891159, 45.468030367006158 ], [ 9.165855041155121, 45.468229087486755 ], [ 9.166212022556048, 45.468356419654789 ], [ 9.166607454207764, 45.468399898849874 ], [ 9.167002626801835, 45.468355268837861 ], [ 9.167358856394985, 45.468226898512555 ], [ 9.167641271711011, 45.468027354162473 ], [ 9.167822227982148, 45.467776169201436 ], [ 9.167884013007278, 45.467497931864195 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.178381627118194, 45.468153114281549 ], [ 9.178318142312738, 45.467875066505634 ], [ 9.178135654666379, 45.467624430915919 ], [ 9.177852028382384, 45.467425740963343 ], [ 9.177495026765811, 45.467298445182308 ], [ 9.177099594562293, 45.46725500367036 ], [ 9.176704437727743, 45.467299668598194 ], [ 9.176648308112767, 45.467319901619199 ], [ 9.176423505319056, 45.467295203643957 ], [ 9.176028347662712, 45.46733986623385 ], [ 9.175672143410996, 45.467468263578084 ], [ 9.175389759276799, 45.467667827756834 ], [ 9.175208836998216, 45.467919024660354 ], [ 9.175147087568289, 45.468197265885983 ], [ 9.1752105571548, 45.468475315431206 ], [ 9.175393034608659, 45.468725955671772 ], [ 9.175676658806504, 45.468924651687828 ], [ 9.176033666624162, 45.469051953106295 ], [ 9.176429110589051, 45.469095398276941 ], [ 9.176824280187175, 45.469050734296474 ], [ 9.176880411454944, 45.469030501192641 ], [ 9.177105221345771, 45.469055198250494 ], [ 9.177500390121972, 45.469010531931936 ], [ 9.177856599908965, 45.468882128912924 ], [ 9.178138981369852, 45.468682558682403 ], [ 9.178319893051528, 45.468431357187626 ], [ 9.178381627118194, 45.468153114281549 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.189645653158019, 45.463687062036364 ], [ 9.189587873615842, 45.463607727239413 ], [ 9.189304227380715, 45.463409065614862 ], [ 9.18894722548699, 45.463281805536994 ], [ 9.188551812707045, 45.463238403608777 ], [ 9.188156693095593, 45.463283108126504 ], [ 9.187800542017669, 45.463411543298321 ], [ 9.187518220982016, 45.463611137501708 ], [ 9.187337365550992, 45.463862353687766 ], [ 9.187275680174562, 45.464140601566086 ], [ 9.187339204750378, 45.464418644482535 ], [ 9.187521722746007, 45.464669265461417 ], [ 9.187805369068702, 45.464867931468149 ], [ 9.188162378427759, 45.464995195067374 ], [ 9.188557803199286, 45.465038598311097 ], [ 9.188578645506444, 45.465036240210026 ], [ 9.18863642510048, 45.465115575497492 ], [ 9.188920077572934, 45.465314238710775 ], [ 9.189277092249283, 45.465441498807486 ], [ 9.189672520985065, 45.465484898182524 ], [ 9.190067654757069, 45.465440188415819 ], [ 9.190423813422932, 45.465311746208741 ], [ 9.190706132650716, 45.465112144886454 ], [ 9.190886977079954, 45.464860923439574 ], [ 9.190948645458459, 45.46458267367386 ], [ 9.190885102959061, 45.464304632801834 ], [ 9.190702571259886, 45.464054017203338 ], [ 9.190418918875521, 45.463855358372321 ], [ 9.190061911665092, 45.463728101796875 ], [ 9.189666494921331, 45.463684703737123 ], [ 9.189645653158019, 45.463687062036364 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.187497767138122, 45.465530012283914 ], [ 9.187434240517304, 45.465251969513147 ], [ 9.187251721020184, 45.465001348422525 ], [ 9.186968075967165, 45.464802681043594 ], [ 9.186611070499948, 45.464675413701165 ], [ 9.18621564974077, 45.46463200370922 ], [ 9.185820518525327, 45.464676700153341 ], [ 9.185464353354362, 45.46480512803187 ], [ 9.185182017115929, 45.465004716436233 ], [ 9.185001146860401, 45.465255928885206 ], [ 9.184939448488816, 45.465534175454223 ], [ 9.185002963170962, 45.465812219617462 ], [ 9.185185475343035, 45.466062844277161 ], [ 9.185469120482546, 45.466261516038507 ], [ 9.185826133414755, 45.466388786902762 ], [ 9.186221566166065, 45.466432198210747 ], [ 9.186616709320178, 45.466387500374182 ], [ 9.186972881816191, 45.466259068926554 ], [ 9.187255217968135, 45.466059476139762 ], [ 9.187436080758662, 45.46580826016897 ], [ 9.187497767138122, 45.465530012283914 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.150844989887108, 45.466428922711216 ], [ 9.150781642379625, 45.466150859371403 ], [ 9.150599282234525, 45.465900179551006 ], [ 9.150315761175756, 45.465701421031156 ], [ 9.149958832210023, 45.465574039058076 ], [ 9.149563432972943, 45.465530502165976 ], [ 9.149168266194158, 45.465575071861181 ], [ 9.148812011854742, 45.465703385548117 ], [ 9.148529541569165, 45.465902883495325 ], [ 9.148348505506856, 45.466154038076262 ], [ 9.148286625797265, 45.466432265031571 ], [ 9.148349961360156, 45.466710329756374 ], [ 9.148532314166012, 45.466961013141322 ], [ 9.148815835294224, 45.467159776043808 ], [ 9.149172771711577, 45.467287161543467 ], [ 9.149568182936168, 45.467330699759209 ], [ 9.149963361659552, 45.467286128679007 ], [ 9.150319623338209, 45.467157811427526 ], [ 9.150602093554337, 45.466958309097699 ], [ 9.150783122165031, 45.466707150990139 ], [ 9.150844989887108, 45.466428922711216 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.171093411992192, 45.458618196210494 ], [ 9.171029973839833, 45.458340143850542 ], [ 9.170847549336548, 45.458089496105927 ], [ 9.170563996504598, 45.457890787617686 ], [ 9.170207071459512, 45.457763468734839 ], [ 9.169811711452516, 45.457720001816348 ], [ 9.169416615373404, 45.457764641519674 ], [ 9.169060456283807, 45.457893018396909 ], [ 9.168778096475984, 45.45809256653132 ], [ 9.168597175306363, 45.458343753383502 ], [ 9.16853540365855, 45.458621991534685 ], [ 9.168598829874171, 45.458900045283372 ], [ 9.168781247048873, 45.459150696594136 ], [ 9.169064799959667, 45.459349409463755 ], [ 9.169421732460894, 45.459476731869685 ], [ 9.169817104453353, 45.459520200107249 ], [ 9.170212212469199, 45.459475559015154 ], [ 9.170568378887383, 45.459347178571804 ], [ 9.170850738616368, 45.459147626055994 ], [ 9.171031652329841, 45.458896435680735 ], [ 9.171093411992192, 45.458618196210494 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.190833937899011, 45.459825675130382 ], [ 9.190770401383341, 45.459547633952589 ], [ 9.190587885610325, 45.459297017935647 ], [ 9.19030425753536, 45.459098358614582 ], [ 9.189947280637984, 45.458971101525528 ], [ 9.189551897243961, 45.458927702978947 ], [ 9.189156808531868, 45.458972410940206 ], [ 9.188800686842502, 45.459100849280361 ], [ 9.188518390808129, 45.459300446066699 ], [ 9.188337553543883, 45.459551663997416 ], [ 9.188275877721248, 45.459829912611184 ], [ 9.18833940230231, 45.46010795518184 ], [ 9.188521910753728, 45.460358574767554 ], [ 9.188805538916718, 45.460557238470173 ], [ 9.189162523278103, 45.460684499079925 ], [ 9.189557918661135, 45.46072789894157 ], [ 9.189953019307834, 45.460683189587442 ], [ 9.190309148318793, 45.460554747678501 ], [ 9.190591444265147, 45.460355146510629 ], [ 9.190772274065381, 45.460103925059215 ], [ 9.190833937899011, 45.459825675130382 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.202756589786876, 45.471003541199273 ], [ 9.202692981934002, 45.470725507321937 ], [ 9.20251037715194, 45.470474911000622 ], [ 9.202226651108868, 45.470276281841919 ], [ 9.201869576873348, 45.470149062429279 ], [ 9.201474106298006, 45.470105705385166 ], [ 9.201078949094105, 45.470150454612622 ], [ 9.200722784306148, 45.470278929943746 ], [ 9.20044047478522, 45.470478555825281 ], [ 9.200259654967402, 45.470729792107583 ], [ 9.20019802581767, 45.471008046533015 ], [ 9.200261621730672, 45.471286081806213 ], [ 9.200444219191345, 45.471536681699206 ], [ 9.200727945328024, 45.471735315241133 ], [ 9.201085027036406, 45.471862538174342 ], [ 9.201480509609475, 45.471905896531624 ], [ 9.201875678753245, 45.471861145908299 ], [ 9.202231850862592, 45.471732667005504 ], [ 9.202514160289905, 45.471533036740716 ], [ 9.202694972634859, 45.471281796937824 ], [ 9.202756589786876, 45.471003541199273 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.183545409738452, 45.471821456325294 ], [ 9.183481895377454, 45.471543411644532 ], [ 9.18329937298183, 45.471292784519974 ], [ 9.183015710156274, 45.471094107573776 ], [ 9.182658673782427, 45.470966828067141 ], [ 9.182263212007744, 45.470923404504568 ], [ 9.181868033682335, 45.470968087299909 ], [ 9.181511819917736, 45.471096502787454 ], [ 9.181229438358139, 45.471296081271539 ], [ 9.181048530490006, 45.471547287242196 ], [ 9.180986805896294, 45.471825531409159 ], [ 9.181050308314086, 45.472103577481896 ], [ 9.181232823380743, 45.472354208175837 ], [ 9.181516486290986, 45.472552889505401 ], [ 9.18187353013081, 45.472680172535142 ], [ 9.182269003901025, 45.472723597414848 ], [ 9.182664194169631, 45.472678913227568 ], [ 9.183020415263201, 45.47255049417069 ], [ 9.183302796738122, 45.472350911303209 ], [ 9.183483697140273, 45.47209970180942 ], [ 9.183545409738452, 45.471821456325294 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.152248653774665, 45.473677206783357 ], [ 9.152185291154071, 45.473399144595554 ], [ 9.152002901333598, 45.473148467373534 ], [ 9.151719338942341, 45.472949712643931 ], [ 9.151362361032819, 45.472822335281784 ], [ 9.150966910031139, 45.472778803369863 ], [ 9.150571693733335, 45.472823377926979 ], [ 9.150215396967143, 45.472951695881733 ], [ 9.149932895499727, 45.473151197085059 ], [ 9.149751842552918, 45.473402353591858 ], [ 9.149689961909408, 45.473680580954309 ], [ 9.149753312581064, 45.473958644527734 ], [ 9.149935695060023, 45.474209325315371 ], [ 9.150219257521409, 45.47440808442871 ], [ 9.150576242885906, 45.474535465318205 ], [ 9.150971705879865, 45.474578998553788 ], [ 9.151366934126607, 45.474534422611043 ], [ 9.151723238234313, 45.474406101090658 ], [ 9.152005739631598, 45.474206595503588 ], [ 9.152186785123432, 45.47395543546947 ], [ 9.152248653774665, 45.473677206783357 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.196003681566802, 45.475036816678262 ], [ 9.195940102302131, 45.474758779189848 ], [ 9.195757514325903, 45.474508172222798 ], [ 9.19547379166181, 45.47430952642587 ], [ 9.195116707048085, 45.474182286011001 ], [ 9.1947212133534, 45.474138905656361 ], [ 9.194326022551865, 45.474183631546587 ], [ 9.193969816976258, 45.47431208579799 ], [ 9.193687463469653, 45.474511694920672 ], [ 9.19350660077332, 45.474762920405624 ], [ 9.193444934049337, 45.475041171052233 ], [ 9.193508501370612, 45.475319209935314 ], [ 9.193691082021346, 45.475569820473687 ], [ 9.193974804775934, 45.475768470654508 ], [ 9.194331896861563, 45.475895714591289 ], [ 9.194727402555563, 45.475939096260653 ], [ 9.195122605300488, 45.475894368975759 ], [ 9.195478818201597, 45.475765911153026 ], [ 9.195761171617713, 45.475566297646473 ], [ 9.195942026842129, 45.475315068639588 ], [ 9.196003681566802, 45.475036816678262 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.20716888717565, 45.475323491614475 ], [ 9.207105252700281, 45.475045460451845 ], [ 9.20692261436928, 45.474794871433105 ], [ 9.206638851134825, 45.474596253449846 ], [ 9.206281739705741, 45.474469047991484 ], [ 9.20588623557493, 45.474425706314527 ], [ 9.205491051737846, 45.474470470817899 ], [ 9.20513486984572, 45.474598959838566 ], [ 9.204852554423921, 45.474798596483325 ], [ 9.20467174048645, 45.475049839549158 ], [ 9.204610128423123, 45.475328096114303 ], [ 9.204673750956561, 45.475606128673888 ], [ 9.204856381966176, 45.475856721265387 ], [ 9.205140145296314, 45.476055343632559 ], [ 9.205497264201611, 45.476182552611462 ], [ 9.205892780333485, 45.476225895600841 ], [ 9.206287976112508, 45.476181129700493 ], [ 9.206644165326015, 45.476052637107074 ], [ 9.206926480652131, 45.475852996078402 ], [ 9.207107287113397, 45.475601749492057 ], [ 9.20716888717565, 45.475323491614475 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.130314010646366, 45.476137152390322 ], [ 9.130250753087761, 45.47585907803952 ], [ 9.130068452477307, 45.475608365804206 ], [ 9.129784954712921, 45.475409556638674 ], [ 9.129428010522428, 45.475282110746527 ], [ 9.129032559032325, 45.475238502918273 ], [ 9.12863730808667, 45.475283001603259 ], [ 9.128280945904102, 45.475411251156338 ], [ 9.127998354653892, 45.47561069812383 ], [ 9.127817196344969, 45.47586181986955 ], [ 9.127755205072589, 45.476140035348841 ], [ 9.127818450677513, 45.476418111080889 ], [ 9.128000743937218, 45.476668826879397 ], [ 9.128284241761536, 45.47686764042902 ], [ 9.128641193399737, 45.47699508985162 ], [ 9.129036656880558, 45.47703869900819 ], [ 9.129431919779895, 45.476994198941966 ], [ 9.129788289313209, 45.476865945825672 ], [ 9.13007088050349, 45.476666494474102 ], [ 9.130252031364702, 45.476415369197916 ], [ 9.130314010646366, 45.476137152390322 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.119633113790089, 45.476253072018594 ], [ 9.119569908620971, 45.475974991705414 ], [ 9.119387654963539, 45.475724262381732 ], [ 9.119104194120201, 45.475525426674707 ], [ 9.118747273205399, 45.475397947386057 ], [ 9.118351829067802, 45.475354302575091 ], [ 9.117956568831966, 45.475398764311059 ], [ 9.117600181625681, 45.475526980565313 ], [ 9.117317552067133, 45.475726401143454 ], [ 9.117136345914442, 45.475977505992525 ], [ 9.117074301945571, 45.476255715722026 ], [ 9.117137495159382, 45.476533797414255 ], [ 9.117319741461989, 45.476784530299788 ], [ 9.117603202360288, 45.476983370390947 ], [ 9.117960130718835, 45.477110853211428 ], [ 9.118355586845706, 45.477154499352878 ], [ 9.118750859036849, 45.47711003623786 ], [ 9.119107253597958, 45.47698181642177 ], [ 9.119389883101542, 45.47678239145948 ], [ 9.119571081810491, 45.476531283078593 ], [ 9.119633113790089, 45.476253072018594 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.13917211434922, 45.476321353170697 ], [ 9.139108813026709, 45.47604328378614 ], [ 9.138926472574234, 45.475792585742916 ], [ 9.138642942789257, 45.475593798605928 ], [ 9.138285977533426, 45.47546638042251 ], [ 9.137890517994775, 45.475422803270945 ], [ 9.137495272805024, 45.475467332598065 ], [ 9.13713892961953, 45.475595609759466 ], [ 9.136856368748475, 45.475795078599127 ], [ 9.136675249227654, 45.47604621433991 ], [ 9.136613301355949, 45.476324434567047 ], [ 9.136676590725962, 45.476602505334689 ], [ 9.136858923830962, 45.476853206942252 ], [ 9.137142453679992, 45.477051998463345 ], [ 9.13749942638692, 45.4771794201761 ], [ 9.137894897917663, 45.477222998654156 ], [ 9.138290155059931, 45.477178467943979 ], [ 9.138646505592893, 45.477050187218254 ], [ 9.138929066399896, 45.476850713994466 ], [ 9.139110178469611, 45.476599574724347 ], [ 9.13917211434922, 45.476321353170697 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.14518027540813, 45.479034085801928 ], [ 9.14511694147189, 45.478756019919601 ], [ 9.144934565621842, 45.478505331630139 ], [ 9.144651001120229, 45.478306559543483 ], [ 9.144294005226604, 45.478179160233694 ], [ 9.14389852212757, 45.478135603931626 ], [ 9.143503262760731, 45.478180154043372 ], [ 9.143146916169098, 45.478308449890193 ], [ 9.142864362996431, 45.478507933487158 ], [ 9.142683261525351, 45.478759078612612 ], [ 9.142621340288375, 45.479037301933118 ], [ 9.142664222838354, 45.479225613358174 ], [ 9.142634451577624, 45.47924663148342 ], [ 9.142453346725837, 45.479497776215872 ], [ 9.142391423556766, 45.479775999378006 ], [ 9.142454745245375, 45.480054066736479 ], [ 9.142637115121561, 45.480304758924262 ], [ 9.142920682594809, 45.480503535936862 ], [ 9.143277690095699, 45.480630939472547 ], [ 9.143673190183762, 45.480674497884259 ], [ 9.144068466850898, 45.480629947182884 ], [ 9.144424825964856, 45.480501648498134 ], [ 9.144707383569147, 45.480302161105676 ], [ 9.144888480966308, 45.480051012844164 ], [ 9.144950392140291, 45.479772788356613 ], [ 9.144907501557395, 45.479584477817802 ], [ 9.144937272149145, 45.479563459102188 ], [ 9.145118366165807, 45.479312310447824 ], [ 9.14518027540813, 45.479034085801928 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.212262200368446, 45.480343534366156 ], [ 9.212198535114368, 45.480065506341468 ], [ 9.212015857938145, 45.479814925757218 ], [ 9.211732051594398, 45.479616320679149 ], [ 9.211374897011449, 45.479489131333409 ], [ 9.210979353905861, 45.47944580739923 ], [ 9.210584139087645, 45.479490589538912 ], [ 9.210227937240353, 45.479619094363159 ], [ 9.209945614842695, 45.479818743432098 ], [ 9.20976480759186, 45.480069994326541 ], [ 9.20970321522368, 45.480348253358471 ], [ 9.209766868533427, 45.480626282781415 ], [ 9.209949538388258, 45.480876866939731 ], [ 9.21023334483008, 45.481075476402424 ], [ 9.210590506893118, 45.481202669268704 ], [ 9.210986062003654, 45.481245994514488 ], [ 9.211381288766203, 45.48120121097655 ], [ 9.211737497934889, 45.481072702578246 ], [ 9.212019820234474, 45.480873049124661 ], [ 9.212200620005223, 45.480621794709712 ], [ 9.212262200368446, 45.480343534366156 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.227196317171686, 45.481142467051747 ], [ 9.227132577583852, 45.480864447533172 ], [ 9.226949831706134, 45.480613890999734 ], [ 9.226665969017388, 45.480415323162724 ], [ 9.226308775960373, 45.480288180602727 ], [ 9.225913216016938, 45.480244908419607 ], [ 9.225518007644917, 45.480289742210346 ], [ 9.225161834897108, 45.480418293530086 ], [ 9.224879561404524, 45.480617979387944 ], [ 9.224698818078162, 45.480869253763593 ], [ 9.224637298397342, 45.481147520670255 ], [ 9.224701026042535, 45.48142554159017 ], [ 9.224883764604201, 45.48167610169962 ], [ 9.225167627397981, 45.481874673921403 ], [ 9.225524827940983, 45.482001820000065 ], [ 9.225920399891974, 45.48204509349177 ], [ 9.226315620206639, 45.482000258299671 ], [ 9.226671800270495, 45.481871703403918 ], [ 9.226954073658051, 45.481672013161315 ], [ 9.227134809498418, 45.481420735266994 ], [ 9.227196317171686, 45.481142467051747 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.199425179690204, 45.479384378192556 ], [ 9.199361578642923, 45.479106342857669 ], [ 9.199178961411928, 45.478855741600526 ], [ 9.198895204884614, 45.478657104510759 ], [ 9.198538085113766, 45.478529874947974 ], [ 9.198142558409049, 45.478486506527993 ], [ 9.19774733997537, 45.47853124426728 ], [ 9.197391114850015, 45.478659709122418 ], [ 9.197108751789671, 45.478859326565683 ], [ 9.196927890471018, 45.479110557273685 ], [ 9.196866235921707, 45.479388809534548 ], [ 9.196929825023373, 45.479666846265012 ], [ 9.197112434928494, 45.479917451094458 ], [ 9.197396191547904, 45.480116092568757 ], [ 9.19775331879365, 45.480243325653561 ], [ 9.198148857500906, 45.480286695387782 ], [ 9.198544087880205, 45.480241956252897 ], [ 9.198900320331436, 45.480113487825456 ], [ 9.199182683299687, 45.479913865997666 ], [ 9.199363537143435, 45.47966263176766 ], [ 9.199425179690204, 45.479384378192556 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.152003028176177, 45.481382909312778 ], [ 9.151939658027633, 45.481104847374795 ], [ 9.151757244345253, 45.480854170130641 ], [ 9.151473644094329, 45.48065541510892 ], [ 9.151116618033354, 45.480528037213169 ], [ 9.150721113301433, 45.480484504578179 ], [ 9.150325842953398, 45.480529078293543 ], [ 9.149969497107103, 45.480657395370244 ], [ 9.149686956333591, 45.480856895745355 ], [ 9.149505877702216, 45.481108051554969 ], [ 9.149443987510285, 45.481386278419713 ], [ 9.149507345705015, 45.481664341743603 ], [ 9.149689752042821, 45.481915022554332 ], [ 9.149973352363777, 45.48211378196094 ], [ 9.150330385882654, 45.482241163385034 ], [ 9.15072590261167, 45.482284697344092 ], [ 9.151121184913523, 45.482240122242807 ], [ 9.151477538104395, 45.482111801599522 ], [ 9.151760078807875, 45.481912296839511 ], [ 9.151941149981347, 45.481661137501568 ], [ 9.152003028176177, 45.481382909312778 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.163118529681299, 45.481479584800191 ], [ 9.163055104762671, 45.481201529109399 ], [ 9.162872641524674, 45.480950869688634 ], [ 9.162589001782866, 45.480752142321656 ], [ 9.162231950160649, 45.480624799204982 ], [ 9.161836436298639, 45.480581305069151 ], [ 9.161441174145157, 45.48062591723555 ], [ 9.161084853016131, 45.480754268951607 ], [ 9.160802351063706, 45.480953796763885 ], [ 9.160621321557892, 45.48120497012269 ], [ 9.160559485987838, 45.481483202930626 ], [ 9.160622898954216, 45.481761260009677 ], [ 9.160805354851799, 45.482011922998417 ], [ 9.161088994668818, 45.482210654750304 ], [ 9.161446053753137, 45.482338001393892 ], [ 9.161841579613883, 45.482381496851517 ], [ 9.162236853719618, 45.482336883296895 ], [ 9.162593182189054, 45.482208528012841 ], [ 9.162875684066272, 45.482008995815676 ], [ 9.163056706109979, 45.481757818929921 ], [ 9.163118529681299, 45.481479584800191 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.185621028768141, 45.477088532894022 ], [ 9.185557498204446, 45.47681048965007 ], [ 9.185374949541345, 45.476559866115267 ], [ 9.185091252954937, 45.476361194560241 ], [ 9.184734178631496, 45.476233921718354 ], [ 9.184338678432828, 45.476190505441679 ], [ 9.183943464969738, 45.476235195430796 ], [ 9.183587222792864, 45.476363617316039 ], [ 9.183304822327404, 45.476563200775601 ], [ 9.1831239069106, 45.476814409812555 ], [ 9.18306218686474, 45.477092654836561 ], [ 9.18312570548223, 45.477370699473148 ], [ 9.18330824681512, 45.477621326578237 ], [ 9.18359194348719, 45.47782000251744 ], [ 9.183949025279455, 45.477947278882851 ], [ 9.184344537477267, 45.477990696476489 ], [ 9.184739762886556, 45.477946005094701 ], [ 9.185096012393645, 45.477817579639172 ], [ 9.185378412773444, 45.477617991795455 ], [ 9.185559320721421, 45.477366779234991 ], [ 9.185621028768141, 45.477088532894022 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.157980953849114, 45.478114942449096 ], [ 9.157917558012414, 45.477836883702352 ], [ 9.157735128431998, 45.477586215881864 ], [ 9.157451523628882, 45.477387475593787 ], [ 9.157094504806764, 45.477260116299462 ], [ 9.156699018396015, 45.47721660431305 ], [ 9.156303775658237, 45.477261198703054 ], [ 9.155947464009026, 45.47738953445689 ], [ 9.155664960672462, 45.477589049683409 ], [ 9.155483919053713, 45.477840215064866 ], [ 9.155422061827171, 45.47811844528475 ], [ 9.15548544571298, 45.478396505418516 ], [ 9.155667867952335, 45.478647176805893 ], [ 9.155951472828262, 45.478845921478367 ], [ 9.156308499109246, 45.478973284299848 ], [ 9.15670399751588, 45.479016797608971 ], [ 9.15709925220454, 45.478972201831937 ], [ 9.157455571194818, 45.478843862511191 ], [ 9.157738074458571, 45.478644342900282 ], [ 9.157919108618454, 45.478393173991677 ], [ 9.157980953849114, 45.478114942449096 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.162379031119425, 45.468282993489218 ], [ 9.162315624818808, 45.468004936717641 ], [ 9.162133207600283, 45.467754275471286 ], [ 9.161849636774024, 45.467555545712862 ], [ 9.161492670217546, 45.467428199873211 ], [ 9.161097249245413, 45.46738470294973 ], [ 9.160702078714435, 45.467429312536645 ], [ 9.160345838973058, 45.467557662133842 ], [ 9.16006340020731, 45.467757188494986 ], [ 9.159882409501996, 45.468008361212206 ], [ 9.159820584547431, 45.468286594250664 ], [ 9.159883978903975, 45.468564652409697 ], [ 9.160066388786895, 45.468815317222273 ], [ 9.160349959687977, 45.469014051363565 ], [ 9.160706933701114, 45.469141400728596 ], [ 9.16110236666356, 45.469184898973417 ], [ 9.161497549138614, 45.469140287999046 ], [ 9.161853796215595, 45.469011934835606 ], [ 9.162136234906523, 45.468812404091587 ], [ 9.162317218155172, 45.468561227848987 ], [ 9.162379031119425, 45.468282993489218 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.182975839146053, 45.468699162812463 ], [ 9.182912331139484, 45.468421117652639 ], [ 9.182729821385998, 45.468170489460952 ], [ 9.182446176252645, 45.467971810964009 ], [ 9.18208916088928, 45.467844529574911 ], [ 9.181693721386912, 45.467801103982467 ], [ 9.181298564415753, 45.467845784799181 ], [ 9.180942368997327, 45.467974198553058 ], [ 9.18066000098009, 45.468173775718043 ], [ 9.180479100524863, 45.468424980913206 ], [ 9.180417376488769, 45.468703224924198 ], [ 9.180480872554012, 45.468981271475663 ], [ 9.180663374979522, 45.469231903236299 ], [ 9.180947020197276, 45.46943058611614 ], [ 9.181304043025182, 45.469557871028037 ], [ 9.181699494521041, 45.469601297937587 ], [ 9.182094663433521, 45.469556615729203 ], [ 9.182450866179934, 45.469428198406433 ], [ 9.182733234112762, 45.46922861685853 ], [ 9.182914127103443, 45.46897740814056 ], [ 9.182975839146053, 45.468699162812463 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.156571579375528, 45.470400258463798 ], [ 9.156508199218855, 45.470122198537219 ], [ 9.156325800861424, 45.469871528084781 ], [ 9.156042239767581, 45.469672783970346 ], [ 9.155685272862554, 45.469545420030094 ], [ 9.155289841495213, 45.469501903032956 ], [ 9.154894651539847, 45.469546492538022 ], [ 9.154538385245987, 45.469674824010717 ], [ 9.154255915398386, 45.469874335978851 ], [ 9.154074892123964, 45.470125499443434 ], [ 9.154013036300942, 45.470403729275475 ], [ 9.15407640451137, 45.470681790588408 ], [ 9.154258795530188, 45.470932464606641 ], [ 9.154542356696156, 45.471131213104258 ], [ 9.154899331056498, 45.471258580570925 ], [ 9.155294774414664, 45.471302098890682 ], [ 9.155689976316284, 45.471257507999276 ], [ 9.156046249948748, 45.471129172960779 ], [ 9.156328719724227, 45.470929656609435 ], [ 9.156509735543338, 45.470678489618479 ], [ 9.156571579375528, 45.470400258463798 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.194147068041191, 45.470012837657514 ], [ 9.194083503633204, 45.46973479886595 ], [ 9.193900940171455, 45.469484188669746 ], [ 9.193617249279816, 45.46928553803383 ], [ 9.19326020058654, 45.46915829164405 ], [ 9.192864743444524, 45.469114904763394 ], [ 9.192469586250343, 45.469159624215273 ], [ 9.192113408047458, 45.469288072746188 ], [ 9.191831072999685, 45.469487677426095 ], [ 9.191650218041296, 45.469738900180722 ], [ 9.191588547576536, 45.470017150076693 ], [ 9.191652100044015, 45.470295190262277 ], [ 9.191834656181499, 45.47054580402898 ], [ 9.192118347162742, 45.470744459047971 ], [ 9.192475403325261, 45.470871708959308 ], [ 9.192870872463166, 45.470915097154823 ], [ 9.193266041597855, 45.470870376308909 ], [ 9.193622227125005, 45.470741924207509 ], [ 9.193904562083175, 45.470542315144513 ], [ 9.194085409572319, 45.470291088868329 ], [ 9.194147068041191, 45.470012837657514 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.23610938659492, 45.484244867074551 ], [ 9.236045599627698, 45.4839668527759 ], [ 9.235862804213534, 45.483716310737613 ], [ 9.235578894679925, 45.483517765251811 ], [ 9.235221662054553, 45.483390650711172 ], [ 9.234826073691842, 45.48334740947297 ], [ 9.234430850831046, 45.483392274105221 ], [ 9.23407467894314, 45.483520853144476 ], [ 9.233792421575261, 45.483720560886603 ], [ 9.233611708060621, 45.483971849169215 ], [ 9.233550228960988, 45.484250120644084 ], [ 9.233614003984929, 45.484528136346043 ], [ 9.233796792085226, 45.48477868196187 ], [ 9.234080701728031, 45.4849772318329 ], [ 9.23443794184395, 45.485104349891436 ], [ 9.234833542217427, 45.485147592436533 ], [ 9.235228777021501, 45.485102726400967 ], [ 9.235584956223272, 45.484974143784207 ], [ 9.235867213481955, 45.484774431656831 ], [ 9.236047919506044, 45.484523139856293 ], [ 9.23610938659492, 45.484244867074551 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.19254306634071, 45.487606154979517 ], [ 9.192479489748019, 45.487328116174169 ], [ 9.192296876307703, 45.487077504270118 ], [ 9.192013102536919, 45.486878850399201 ], [ 9.191655946176823, 45.486751599563512 ], [ 9.191260367118579, 45.486708207460907 ], [ 9.190865085691245, 45.486752921425861 ], [ 9.190508793097472, 45.486881364741954 ], [ 9.190226364697409, 45.487080964989929 ], [ 9.190045446563206, 45.487332184529713 ], [ 9.189983749284085, 45.487610432742976 ], [ 9.190047313924985, 45.487888472942878 ], [ 9.190229920033651, 45.488139088419402 ], [ 9.190513693893365, 45.488337746676102 ], [ 9.190870857729008, 45.488465001035721 ], [ 9.191266448794, 45.48850839445435 ], [ 9.19166174217313, 45.488463679094849 ], [ 9.192018042098553, 45.488335232206303 ], [ 9.192300470409686, 45.488135627572525 ], [ 9.192481381068346, 45.487884404508812 ], [ 9.19254306634071, 45.487606154979517 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.128673309775253, 45.489347570445695 ], [ 9.128610045357052, 45.489069495839189 ], [ 9.128427709278942, 45.488818781605964 ], [ 9.128144150911449, 45.488619968895705 ], [ 9.127787126914779, 45.48849251825871 ], [ 9.127391584226755, 45.488448904949593 ], [ 9.126996239617377, 45.48849339795418 ], [ 9.126639790472527, 45.488621642183396 ], [ 9.12635712747314, 45.488821084704831 ], [ 9.126175919651349, 45.489072203317868 ], [ 9.126113905949721, 45.489350417284733 ], [ 9.126177158405694, 45.489628493272782 ], [ 9.12635948712734, 45.489879211070615 ], [ 9.126643045554031, 45.490078028167027 ], [ 9.127000077002963, 45.49020548233635 ], [ 9.127395631689797, 45.490249096974694 ], [ 9.127790988261395, 45.490204602588562 ], [ 9.128147444762718, 45.490076354794724 ], [ 9.12843010770291, 45.489876907887165 ], [ 9.128611308072433, 45.489625785741808 ], [ 9.128673309775253, 45.489347570445695 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.138300833231755, 45.485989262676711 ], [ 9.138237525253997, 45.485711193289397 ], [ 9.138055157372948, 45.485460494313273 ], [ 9.137771582071544, 45.485261705404461 ], [ 9.137414557666952, 45.485134284783427 ], [ 9.137019031136605, 45.485090704766918 ], [ 9.136623717668986, 45.485135231082126 ], [ 9.136267311602099, 45.485263505379535 ], [ 9.135984699400803, 45.485462971783562 ], [ 9.135803545125409, 45.485714105755768 ], [ 9.135741582477305, 45.485992325054632 ], [ 9.135804878496355, 45.486270395825294 ], [ 9.135987239025869, 45.486521098366843 ], [ 9.136270814390947, 45.486719891661274 ], [ 9.136627846250096, 45.486847315812973 ], [ 9.137023384778503, 45.486890897156592 ], [ 9.137418710204834, 45.486846369458021 ], [ 9.13777512362326, 45.486718091595208 ], [ 9.138057735760878, 45.486518620805548 ], [ 9.13823888258171, 45.486267483302683 ], [ 9.138300833231755, 45.485989262676711 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.173544766712856, 45.48756266781141 ], [ 9.173481283604358, 45.48728461829257 ], [ 9.17329875446003, 45.487033975890959 ], [ 9.173015047546581, 45.4868352747241 ], [ 9.172657934061942, 45.486707964423694 ], [ 9.172262369701357, 45.48666450650807 ], [ 9.17186707335555, 45.486709154753434 ], [ 9.171510737687109, 45.486837538875854 ], [ 9.171228242271617, 45.487037092250041 ], [ 9.171047239739902, 45.487288281824299 ], [ 9.17098544894159, 45.487566519913813 ], [ 9.171048920095537, 45.48784457082332 ], [ 9.171231441901043, 45.488095216794989 ], [ 9.171515148894585, 45.488293922347694 ], [ 9.171872269847626, 45.488421236174467 ], [ 9.17226784621225, 45.488464695409974 ], [ 9.172663154512609, 45.488420045773992 ], [ 9.173019497519867, 45.488291658081479 ], [ 9.173301992855274, 45.488092100321474 ], [ 9.17348298791859, 45.487840907220864 ], [ 9.173544766712856, 45.48756266781141 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.167854598219229, 45.484520731652772 ], [ 9.167791146554888, 45.484242678778259 ], [ 9.167608652480801, 45.483992027100442 ], [ 9.167324980830891, 45.483793311644938 ], [ 9.166967899351626, 45.483665983442229 ], [ 9.166572360605821, 45.483622505763016 ], [ 9.166177080977226, 45.483667134317919 ], [ 9.165820751492186, 45.483795500750269 ], [ 9.165538251120877, 45.483995040166299 ], [ 9.165357232978849, 45.484246220880443 ], [ 9.165295417443309, 45.484524456075356 ], [ 9.165358857154182, 45.4848025103392 ], [ 9.165541343888469, 45.485053165585981 ], [ 9.165825015615805, 45.485251885426841 ], [ 9.166182104560145, 45.48537921715625 ], [ 9.16657765530727, 45.485422696156419 ], [ 9.166972946889333, 45.485378066212164 ], [ 9.167329283714171, 45.485249696210822 ], [ 9.167611784008056, 45.485050152409492 ], [ 9.167792794685013, 45.484798968168619 ], [ 9.167854598219229, 45.484520731652772 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.187299249323962, 45.482841551691685 ], [ 9.187134987386345, 45.482783014437956 ], [ 9.186739439533151, 45.482739606599289 ], [ 9.186344182223028, 45.482784304912748 ], [ 9.185987904298145, 45.48291273419391 ], [ 9.185705479682726, 45.483112323397123 ], [ 9.185524554078144, 45.483363535963406 ], [ 9.185462838804424, 45.483641781957054 ], [ 9.185526376687488, 45.48391982490859 ], [ 9.185708949894067, 45.4841704478388 ], [ 9.185992687928149, 45.484369117521808 ], [ 9.186349816521787, 45.484496386161929 ], [ 9.186745376378592, 45.484539795317339 ], [ 9.187140645638676, 45.484495095610448 ], [ 9.187232865318039, 45.484461852644891 ], [ 9.187397132241138, 45.484520389732708 ], [ 9.187792693058668, 45.484563795259682 ], [ 9.188187961646555, 45.484519091929933 ], [ 9.18854424466398, 45.48439065581487 ], [ 9.188826665605456, 45.484191059643607 ], [ 9.189007579153966, 45.483939841902945 ], [ 9.189069277292404, 45.483661594036228 ], [ 9.189005722282168, 45.483383553070269 ], [ 9.188823137027759, 45.483132935394046 ], [ 9.188539395287288, 45.482934272704576 ], [ 9.188182271666767, 45.482807010867205 ], [ 9.187786722853021, 45.48276360665681 ], [ 9.187391466214955, 45.482808308592894 ], [ 9.187299249323962, 45.482841551691685 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.204041094169847, 45.484457826293443 ], [ 9.203977464631357, 45.484179793825682 ], [ 9.203794810492749, 45.483929200235096 ], [ 9.20351101225422, 45.483730574860758 ], [ 9.20315385005123, 45.483603359915307 ], [ 9.202758284346462, 45.483560007583748 ], [ 9.202363034161881, 45.483604761307809 ], [ 9.202006787642413, 45.483733240479516 ], [ 9.201962975997917, 45.48376421416031 ], [ 9.201866688560726, 45.483798939560671 ], [ 9.201584315733809, 45.483998567903875 ], [ 9.201403457965986, 45.484249805465453 ], [ 9.201341819937838, 45.484528059862704 ], [ 9.201405436914346, 45.484806093803094 ], [ 9.201588083319782, 45.485056691189001 ], [ 9.201871881492105, 45.485255321294751 ], [ 9.20222905127557, 45.485382540198671 ], [ 9.202624629340951, 45.485425894327804 ], [ 9.203019892045578, 45.48538113969132 ], [ 9.203376146624745, 45.485252657383249 ], [ 9.203419958643849, 45.485221683167886 ], [ 9.203516247542886, 45.485186956464347 ], [ 9.203798619452114, 45.484987323388644 ], [ 9.203979468908594, 45.484736082081696 ], [ 9.204041094169847, 45.484457826293443 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.216555494844538, 45.484532986104185 ], [ 9.216491803686832, 45.484254960724464 ], [ 9.216309093895266, 45.484004387250366 ], [ 9.216025251417072, 45.483805793051509 ], [ 9.215668060717379, 45.483678617288973 ], [ 9.215272485047647, 45.483635308312415 ], [ 9.214877244405026, 45.483680105320069 ], [ 9.214521026000664, 45.483808623467411 ], [ 9.21423869793399, 45.484008283010546 ], [ 9.214057896457401, 45.484259540505114 ], [ 9.213996320741975, 45.484537801617002 ], [ 9.214016987378256, 45.484628033543331 ], [ 9.213998516809761, 45.484711501648718 ], [ 9.21406219623077, 45.484989528417664 ], [ 9.214244899275005, 45.485240105454686 ], [ 9.214528742735565, 45.485438704025697 ], [ 9.214885942022738, 45.485565883295955 ], [ 9.215281530918576, 45.48560919357228 ], [ 9.215676784719983, 45.485564395156828 ], [ 9.216033011534018, 45.485435873429424 ], [ 9.216315340358195, 45.48523620950008 ], [ 9.216496134894399, 45.484984948488218 ], [ 9.216557698776795, 45.484706686072364 ], [ 9.216537028056901, 45.484616454614446 ], [ 9.216555494844538, 45.484532986104185 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.196137004745713, 45.484897714818686 ], [ 9.196073413570911, 45.484619677905677 ], [ 9.195890793005123, 45.484369071639819 ], [ 9.195607020262651, 45.484170426601011 ], [ 9.195249872983753, 45.484043186926847 ], [ 9.19485431017063, 45.483999807222744 ], [ 9.19445905056231, 45.484044533609627 ], [ 9.194102783225979, 45.484172988155244 ], [ 9.193820381049749, 45.484372597341114 ], [ 9.193639487539029, 45.48462382265221 ], [ 9.193577810872767, 45.484902072905157 ], [ 9.193641390098001, 45.485180111213289 ], [ 9.193824003334544, 45.485430721051756 ], [ 9.194107776167609, 45.485629370475927 ], [ 9.194464930922338, 45.485756613673225 ], [ 9.194860505741014, 45.485799994692478 ], [ 9.195255777298895, 45.485755266910445 ], [ 9.195612051964476, 45.485626808792247 ], [ 9.195894454050116, 45.485427195221007 ], [ 9.196075340085006, 45.485175966386755 ], [ 9.196137004745713, 45.484897714818686 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.210689013057326, 45.485315851789267 ], [ 9.210625349849025, 45.485037823126795 ], [ 9.210442663487996, 45.484787240261753 ], [ 9.210158837628283, 45.484588631483149 ], [ 9.20980165510867, 45.484461437379217 ], [ 9.209406078380164, 45.484418108094857 ], [ 9.209010827543604, 45.484462884815997 ], [ 9.208654590807791, 45.484591384683739 ], [ 9.208372238066209, 45.48479102974342 ], [ 9.208191407986231, 45.485042277968475 ], [ 9.208129802538549, 45.485320535932232 ], [ 9.208193453799163, 45.485598565992881 ], [ 9.208376132836285, 45.48584915243238 ], [ 9.208659958793367, 45.486047765596403 ], [ 9.209017148794427, 45.486174963221679 ], [ 9.209412737530798, 45.486218293818183 ], [ 9.209808000315052, 45.486173515698894 ], [ 9.210164244374763, 45.486045012256682 ], [ 9.210446597018977, 45.485845362811567 ], [ 9.210627419617513, 45.485594111065211 ], [ 9.210689013057326, 45.485315851789267 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.18174081168789, 45.485157476077156 ], [ 9.181677291010136, 45.484879431053855 ], [ 9.181494733360456, 45.484628801687009 ], [ 9.181211009795277, 45.484430120818054 ], [ 9.180853893141993, 45.484302836091892 ], [ 9.180458339405714, 45.484259406523698 ], [ 9.180063066437215, 45.484304083114992 ], [ 9.179706764611165, 45.484432492807478 ], [ 9.179424310190964, 45.484632066472905 ], [ 9.179243351795083, 45.484883269073279 ], [ 9.179181603953134, 45.485161511648549 ], [ 9.179245112679055, 45.485439558064087 ], [ 9.179427662993946, 45.485690191001737 ], [ 9.17971138664301, 45.485888876256112 ], [ 9.180068510766828, 45.486016164507269 ], [ 9.180464076506796, 45.486059595393584 ], [ 9.180859361427125, 45.486014917410081 ], [ 9.181215670587978, 45.485886504146819 ], [ 9.181498124924284, 45.485686926095937 ], [ 9.18167907584963, 45.485435719970567 ], [ 9.18174081168789, 45.485157476077156 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.201309725690752, 45.49025685666912 ], [ 9.201246102956345, 45.489978822951315 ], [ 9.201063442082072, 45.489728225259825 ], [ 9.200779624227932, 45.489529593335035 ], [ 9.200422431449683, 45.489402370030767 ], [ 9.200026827202739, 45.489359008350014 ], [ 9.199631534281382, 45.489403752649551 ], [ 9.199275245013336, 45.489532223243913 ], [ 9.198992834433527, 45.489731845043863 ], [ 9.198811946870315, 45.489983078299709 ], [ 9.198750289921039, 45.490261331050377 ], [ 9.198813900703275, 45.490539366164647 ], [ 9.198996554248197, 45.490789967430061 ], [ 9.199280372195354, 45.490988603741023 ], [ 9.199637572453479, 45.491115830568432 ], [ 9.200033188710083, 45.49115919356354 ], [ 9.200428493583608, 45.491114447867517 ], [ 9.200784790181009, 45.490985973699239 ], [ 9.201067200667795, 45.490786347513108 ], [ 9.201248080751139, 45.490535110734115 ], [ 9.201309725690752, 45.49025685666912 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.219226424761896, 45.490280755945662 ], [ 9.219162713886085, 45.490002732372403 ], [ 9.218979973590059, 45.489752163479949 ], [ 9.218696092807221, 45.489553576189415 ], [ 9.218338859752031, 45.489426408985423 ], [ 9.217943241821546, 45.489383109379837 ], [ 9.217547963149119, 45.489427915653643 ], [ 9.217191714668067, 45.489556442055374 ], [ 9.21690936742176, 45.489756108033291 ], [ 9.216728559540213, 45.4900073695133 ], [ 9.216666990821935, 45.490285631771243 ], [ 9.216730689748191, 45.490563656744662 ], [ 9.216913422721628, 45.490814229213264 ], [ 9.217197303605834, 45.491012820889964 ], [ 9.217554544147625, 45.491139991614816 ], [ 9.217950174090307, 45.491183292531041 ], [ 9.218345464712288, 45.491138484857096 ], [ 9.218701720515924, 45.49100995487921 ], [ 9.218984067660866, 45.490810284515099 ], [ 9.219164868055813, 45.490559019514237 ], [ 9.219226424761896, 45.490280755945662 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.121543113165441, 45.493897350220635 ], [ 9.121479878686214, 45.493619271856609 ], [ 9.121297559496014, 45.493368546425081 ], [ 9.121014003312915, 45.49316971617187 ], [ 9.120656966583757, 45.493042243364442 ], [ 9.120261397492836, 45.492998605427445 ], [ 9.119866015394392, 45.493043073757157 ], [ 9.119509521343439, 45.493171295679673 ], [ 9.119226810416006, 45.493370720446094 ], [ 9.119045556335282, 45.493621827593863 ], [ 9.118983502571856, 45.493900037507743 ], [ 9.11904672508496, 45.494178117252041 ], [ 9.119229036914232, 45.494428846247878 ], [ 9.119512593153221, 45.494627680887923 ], [ 9.119869637333741, 45.494755157229122 ], [ 9.120265218425333, 45.494798796497058 ], [ 9.1206606124899, 45.494754326787074 ], [ 9.121017113901775, 45.494626101300263 ], [ 9.121299824773319, 45.494426672147 ], [ 9.12148107140268, 45.494175561465447 ], [ 9.121543113165441, 45.493897350220635 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.111121287030237, 45.497137266917136 ], [ 9.111058100177184, 45.496859182897403 ], [ 9.110875816720618, 45.496608440941081 ], [ 9.1105922808815, 45.496409584911753 ], [ 9.110235247115945, 45.496282079599951 ], [ 9.109839663318519, 45.496238405611763 ], [ 9.109444250282973, 45.496282837872172 ], [ 9.109087712092146, 45.496411027237656 ], [ 9.108804948142042, 45.49661042614607 ], [ 9.108623637345405, 45.496861516666186 ], [ 9.108561528724188, 45.497139720810551 ], [ 9.108624703607564, 45.49741780620861 ], [ 9.108806979698006, 45.497668551728282 ], [ 9.109090515588175, 45.497867412144949 ], [ 9.109447556802449, 45.497994920992276 ], [ 9.109843152601092, 45.49803859631367 ], [ 9.110238577606323, 45.497994162674985 ], [ 9.11059512316327, 45.497865969746123 ], [ 9.110877887062321, 45.497666566450334 ], [ 9.111059190410248, 45.497415472394728 ], [ 9.111121287030237, 45.497137266917136 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.220785643533455, 45.495530638257982 ], [ 9.220721918971517, 45.495252615836201 ], [ 9.220539154703493, 45.495002049713925 ], [ 9.220255242009516, 45.49480346654088 ], [ 9.219897972227644, 45.494676304398595 ], [ 9.219502316349605, 45.494633010303424 ], [ 9.219107002222836, 45.494677821996909 ], [ 9.218750724250723, 45.494806353197184 ], [ 9.218468356363237, 45.495006022882926 ], [ 9.218287538710992, 45.495257286617161 ], [ 9.218225972049297, 45.495535549455127 ], [ 9.218289684658609, 45.495813573277673 ], [ 9.218472441602627, 45.496064142976962 ], [ 9.218756354398712, 45.496262730536984 ], [ 9.219113631669835, 45.496389896200519 ], [ 9.219509299563603, 45.496433191606279 ], [ 9.219904625642993, 45.496388378512066 ], [ 9.220260910939123, 45.496259843734798 ], [ 9.220543278724493, 45.496060169662066 ], [ 9.220724088887494, 45.495808902406552 ], [ 9.220785643533455, 45.495530638257982 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.196103459422307, 45.49614341477681 ], [ 9.196039855570145, 45.495865378415196 ], [ 9.195857198639592, 45.495614772650924 ], [ 9.195573369405192, 45.495416128014625 ], [ 9.195216151037028, 45.495288888604236 ], [ 9.19482050949539, 45.495245508999176 ], [ 9.19442517122479, 45.495290235310534 ], [ 9.194068832991425, 45.495418689613594 ], [ 9.19378637462269, 45.495618298413795 ], [ 9.193605445124499, 45.495869523234099 ], [ 9.193543756199146, 45.496147772939388 ], [ 9.19360734809467, 45.496425810696699 ], [ 9.193789997691628, 45.496676420034909 ], [ 9.19407382701665, 45.496875069058333 ], [ 9.194431052865044, 45.497002311993256 ], [ 9.194826706419327, 45.497045692914028 ], [ 9.195222056646555, 45.497000965206944 ], [ 9.195578402213519, 45.496872507329911 ], [ 9.195860860491639, 45.496672894142613 ], [ 9.196041782509591, 45.496421665797754 ], [ 9.196103459422307, 45.49614341477681 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.186322395406531, 45.49769962431116 ], [ 9.186258837895837, 45.497421582506178 ], [ 9.186076219247823, 45.497170961109767 ], [ 9.185792416490321, 45.496972292182889 ], [ 9.185435210202295, 45.496845022201128 ], [ 9.185039565161983, 45.49680160873627 ], [ 9.184644208156437, 45.496846301213587 ], [ 9.184287837785408, 45.496974725019939 ], [ 9.184005337021537, 45.497174309645857 ], [ 9.183824359020036, 45.497425518980712 ], [ 9.183762620230596, 45.497703763405376 ], [ 9.183826165782248, 45.497981806604123 ], [ 9.184008777092357, 45.498232431573463 ], [ 9.18429257993593, 45.498431104887729 ], [ 9.18464979370113, 45.498558378395444 ], [ 9.185045450753682, 45.498601793178082 ], [ 9.185440819718281, 45.498557099306971 ], [ 9.185797197427208, 45.498428671927712 ], [ 9.186079698105006, 45.49822908291442 ], [ 9.186260668629332, 45.497977870053589 ], [ 9.186322395406531, 45.49769962431116 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.094246170640107, 45.505210555850319 ], [ 9.094183057750067, 45.504932462831675 ], [ 9.094000823043535, 45.504681694263915 ], [ 9.093717305970813, 45.504482796615704 ], [ 9.093360259152151, 45.504355238751266 ], [ 9.092964631760305, 45.504311506420557 ], [ 9.092569148855954, 45.504355880258885 ], [ 9.092212521360125, 45.50448401684114 ], [ 9.09192965740926, 45.504683373771776 ], [ 9.091748245703764, 45.504934437228776 ], [ 9.091686045142801, 45.50521263187435 ], [ 9.091749146055626, 45.505490726268214 ], [ 9.091931373386531, 45.505741498398187 ], [ 9.092214890502456, 45.505940400435051 ], [ 9.092571944766643, 45.50606796183812 ], [ 9.092967584162407, 45.506111695505936 ], [ 9.093363079043971, 45.50606732029236 ], [ 9.093719713915426, 45.505939180147877 ], [ 9.094002577823085, 45.50573981882863 ], [ 9.094183982083049, 45.505488751832949 ], [ 9.094246170640107, 45.505210555850319 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.102983975060127, 45.501007658016128 ], [ 9.102920823892044, 45.500729569653231 ], [ 9.102738564010401, 45.500478814861793 ], [ 9.102455037329117, 45.500279938761913 ], [ 9.102097997408418, 45.500152408108626 ], [ 9.101702392745603, 45.500108705988431 ], [ 9.101306946176676, 45.500153110079786 ], [ 9.100950365066454, 45.500281273996372 ], [ 9.100667553011542, 45.500480652667079 ], [ 9.100486193632971, 45.500731730141709 ], [ 9.100424040708024, 45.501009929710108 ], [ 9.100487179902808, 45.501288019449831 ], [ 9.100669432413758, 45.501538777804072 ], [ 9.100952959142303, 45.501737658291923 ], [ 9.101310006510177, 45.501865192482263 ], [ 9.101705623175498, 45.501908895937511 ], [ 9.102101081717722, 45.501864490469352 ], [ 9.102457670198635, 45.501736322989942 ], [ 9.102740482206285, 45.501536939931263 ], [ 9.102921834137685, 45.501285858919616 ], [ 9.102983975060127, 45.501007658016128 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.249473361159334, 45.505251616378999 ], [ 9.249409484303792, 45.504973610758107 ], [ 9.249226561349321, 45.504723091298935 ], [ 9.24894249910839, 45.504524580082816 ], [ 9.248585103555833, 45.504397508147406 ], [ 9.248189357992635, 45.504354313679301 ], [ 9.247793999043791, 45.504399224668688 ], [ 9.247437725499912, 45.504527845114779 ], [ 9.247155410858523, 45.504727585260973 ], [ 9.246974690060037, 45.504978893773313 ], [ 9.246913254381116, 45.505257171323528 ], [ 9.246977119282157, 45.505535178351494 ], [ 9.247160034919739, 45.505785701392504 ], [ 9.247444097276201, 45.505984216997042 ], [ 9.247801500332578, 45.506111292451266 ], [ 9.248197257921676, 45.506154488224475 ], [ 9.248592628825028, 45.50610957582802 ], [ 9.248948909685787, 45.505980951800076 ], [ 9.249231224211657, 45.505781207265471 ], [ 9.249411937506316, 45.505529895234289 ], [ 9.249473361159334, 45.505251616378999 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.202390410384078, 45.507240243911141 ], [ 9.202326762913446, 45.506962211666718 ], [ 9.202144042069644, 45.506711616553289 ], [ 9.201860134883782, 45.506512988058603 ], [ 9.201502832155937, 45.506385768700298 ], [ 9.201107108103164, 45.50634241109487 ], [ 9.200711697245627, 45.506387159200074 ], [ 9.200355303453961, 45.506515632958099 ], [ 9.200072811993733, 45.506715256970324 ], [ 9.199891875110508, 45.506966491270859 ], [ 9.199830205230429, 45.507244743796676 ], [ 9.199893840738374, 45.507522777438631 ], [ 9.200076554246674, 45.507773376128227 ], [ 9.200360461526138, 45.507972009011716 ], [ 9.20071777174093, 45.508099231895116 ], [ 9.20111350781424, 45.508142590815446 ], [ 9.201508930634464, 45.508097841312704 ], [ 9.201865331761631, 45.507969363978539 ], [ 9.202147823128264, 45.507769735577533 ], [ 9.202328752524535, 45.507518497751875 ], [ 9.202390410384078, 45.507240243911141 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.180883173342545, 45.505534984986831 ], [ 9.180819633659089, 45.505256940510691 ], [ 9.180637013676206, 45.505006310765516 ], [ 9.180353190553101, 45.504807628629408 ], [ 9.179995946862629, 45.504680341870845 ], [ 9.179600251044093, 45.504636909703578 ], [ 9.179204834854469, 45.504681583383395 ], [ 9.178848402686059, 45.504809990137083 ], [ 9.178565843559927, 45.505009561124446 ], [ 9.178384816343847, 45.505260761570064 ], [ 9.178323042305109, 45.505539002725193 ], [ 9.178386570023797, 45.505817048594352 ], [ 9.178569182663693, 45.506067681912761 ], [ 9.178853005870373, 45.506266368437466 ], [ 9.179210257039054, 45.506393658723653 ], [ 9.179605964874016, 45.506437092210177 ], [ 9.180001393028405, 45.506392417137334 ], [ 9.180357832539801, 45.506264006810405 ], [ 9.180640391582362, 45.506064431434481 ], [ 9.180821411320235, 45.505813227461218 ], [ 9.180883173342545, 45.505534984986831 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.22399088379394, 45.506146401895741 ], [ 9.223927131286286, 45.505868381833125 ], [ 9.223744318290935, 45.505617821398445 ], [ 9.223460340858223, 45.505419246684475 ], [ 9.223102996663043, 45.505292094944409 ], [ 9.222707263980462, 45.505248812176241 ], [ 9.222311878175066, 45.505293635012798 ], [ 9.221955540665766, 45.505422176081623 ], [ 9.221673131210023, 45.505621853395589 ], [ 9.221492294027682, 45.505873121771316 ], [ 9.221430731786542, 45.506151385809773 ], [ 9.221494472335376, 45.506429407274268 ], [ 9.221677278003829, 45.506679971287667 ], [ 9.221961255540208, 45.506878550390283 ], [ 9.222318607230005, 45.50700570565251 ], [ 9.222714351935474, 45.507048989731082 ], [ 9.22310974969969, 45.507004165492624 ], [ 9.223466094535889, 45.506875620845086 ], [ 9.223748503887968, 45.506675939142511 ], [ 9.223929333575692, 45.506424667244602 ], [ 9.22399088379394, 45.506146401895741 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.242667844617728, 45.500079892878851 ], [ 9.242604007195402, 45.499801883118998 ], [ 9.242421131221194, 45.49955135243782 ], [ 9.242137118908914, 45.499352824015453 ], [ 9.241779771346481, 45.499225730573905 ], [ 9.241384067137925, 45.499182512404893 ], [ 9.240988738860754, 45.499227399818423 ], [ 9.240632482303544, 45.499355999121342 ], [ 9.240350169300964, 45.499555722626361 ], [ 9.240169434632561, 45.499807020628431 ], [ 9.240107970932019, 45.500085294828096 ], [ 9.240171796402091, 45.500363305993424 ], [ 9.240354665058819, 45.500613840254907 ], [ 9.24063867748343, 45.500812373064925 ], [ 9.240996032545098, 45.500939470025529 ], [ 9.241391748775335, 45.500982689500809 ], [ 9.241787089004765, 45.500937800681811 ], [ 9.242143352879445, 45.50080919779861 ], [ 9.242425665769696, 45.500609469905939 ], [ 9.242606392938869, 45.5003581683848 ], [ 9.242667844617728, 45.500079892878851 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.222284654694999, 45.500443021256054 ], [ 9.222220917125858, 45.500164999934753 ], [ 9.22203813024317, 45.49991443646946 ], [ 9.221754187540949, 45.499715857249747 ], [ 9.221396883294561, 45.499588699970069 ], [ 9.221001191869011, 45.499545411170679 ], [ 9.220605844590898, 45.499590228074737 ], [ 9.220249539108295, 45.499718763890456 ], [ 9.219967152043884, 45.499918437144792 ], [ 9.21978632542557, 45.500169703051625 ], [ 9.21972476088667, 45.500447966453521 ], [ 9.219788486500326, 45.500725989176111 ], [ 9.219971266057676, 45.500976556219207 ], [ 9.220255208862728, 45.501175139826636 ], [ 9.220612520600856, 45.501302300628019 ], [ 9.221008224045454, 45.50134559073792 ], [ 9.221403583279049, 45.501300772432558 ], [ 9.221759896086999, 45.501172233039064 ], [ 9.222042283048571, 45.500972555396963 ], [ 9.222223102175146, 45.500721285968446 ], [ 9.222284654694999, 45.500443021256054 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.199199983352962, 45.501623979875966 ], [ 9.199136358003953, 45.501345945542361 ], [ 9.19895366955032, 45.501095345023863 ], [ 9.198669801852457, 45.500896708337443 ], [ 9.198312541845299, 45.500769478802738 ], [ 9.197916859564582, 45.500726110032389 ], [ 9.197521485442094, 45.500770847077021 ], [ 9.197165119753034, 45.500899310961366 ], [ 9.196882645012215, 45.501098927253125 ], [ 9.196701711828387, 45.501350156742092 ], [ 9.19664003226508, 45.501628407836129 ], [ 9.196703645654461, 45.501906443566305 ], [ 9.196886326773555, 45.502157047659864 ], [ 9.197170194563508, 45.502355688734212 ], [ 9.197527462054209, 45.502482921793735 ], [ 9.197923156351463, 45.502526291879391 ], [ 9.198318542433576, 45.502481553438152 ], [ 9.198674915457177, 45.502353085978754 ], [ 9.198957390105905, 45.502153465299052 ], [ 9.199138315806188, 45.501902232285275 ], [ 9.199199983352962, 45.501623979875966 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.261887493874514, 45.511161176973999 ], [ 9.261823549124012, 45.510883178734097 ], [ 9.26164055193072, 45.510632679578919 ], [ 9.26135641637377, 45.510434199601981 ], [ 9.260998955603856, 45.510307166782901 ], [ 9.2606031593049, 45.510264015479471 ], [ 9.260207769067481, 45.510308969456865 ], [ 9.259851486744697, 45.510437628506814 ], [ 9.259569186693746, 45.510637399094136 ], [ 9.259388502427671, 45.510888726905293 ], [ 9.259327121648059, 45.511167010722708 ], [ 9.25939105444218, 45.511445010372555 ], [ 9.259574044321015, 45.511695513111874 ], [ 9.259858179999307, 45.511893997478111 ], [ 9.260215648280028, 45.512021033815124 ], [ 9.260611456610361, 45.512064186421384 ], [ 9.261006858804166, 45.512019231034095 ], [ 9.261363148441406, 45.511890568400034 ], [ 9.261645448371015, 45.511690793423384 ], [ 9.261826125126285, 45.511439462094259 ], [ 9.261887493874514, 45.511161176973999 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.225779316940786, 45.512026981602823 ], [ 9.22571554888135, 45.51174896285508 ], [ 9.225532708823884, 45.511498405592924 ], [ 9.225248695467974, 45.511299835598457 ], [ 9.224891310004812, 45.511172689662793 ], [ 9.224495534748637, 45.511129413215684 ], [ 9.22410010923087, 45.511174242271188 ], [ 9.223743738757252, 45.511302788848212 ], [ 9.223461306311803, 45.51150247042056 ], [ 9.223280458364881, 45.511753741388176 ], [ 9.223218898638422, 45.512032006098359 ], [ 9.223282654735607, 45.512310026248684 ], [ 9.223465487464589, 45.51256058709054 ], [ 9.22374950092502, 45.512759161474527 ], [ 9.224106893885786, 45.512886310932871 ], [ 9.224502681168818, 45.512929588690298 ], [ 9.224898118648843, 45.512884758232239 ], [ 9.225254496450946, 45.51275620807553 ], [ 9.225536928791868, 45.512556522113648 ], [ 9.225717769241186, 45.512305247623345 ], [ 9.225779316940786, 45.512026981602823 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.175260155479744, 45.513552347732599 ], [ 9.175196634332387, 45.513274300492675 ], [ 9.175014013242865, 45.513023662112509 ], [ 9.174730169479455, 45.512824966315421 ], [ 9.174372887635798, 45.512697662206989 ], [ 9.173977139885741, 45.512654210699004 ], [ 9.173581663069086, 45.512698864940226 ], [ 9.173225167511884, 45.512827254060149 ], [ 9.172942548439408, 45.513026810944751 ], [ 9.172761470587011, 45.513278002199215 ], [ 9.172699660178784, 45.513556239974761 ], [ 9.172763169355502, 45.513834288606958 ], [ 9.172945783096806, 45.514084930560642 ], [ 9.1732296269412, 45.514283630747542 ], [ 9.173586916264107, 45.514410938385339 ], [ 9.173982676034848, 45.514454391214123 ], [ 9.174378164822144, 45.514409735580621 ], [ 9.174734667727559, 45.51428134288718 ], [ 9.175017286719056, 45.514081781612781 ], [ 9.175198357092205, 45.513830586828945 ], [ 9.175260155479744, 45.513552347732599 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.206650179878853, 45.514731595881628 ], [ 9.206586502868216, 45.514453566428074 ], [ 9.206403738785639, 45.514202978533675 ], [ 9.206119778894921, 45.514004360979357 ], [ 9.205762419154969, 45.513877155211617 ], [ 9.205366639362941, 45.513833812516623 ], [ 9.204971179494382, 45.513878575392653 ], [ 9.204614748216899, 45.514007062336169 ], [ 9.204332234465232, 45.514206696658036 ], [ 9.204151292667293, 45.514457937383476 ], [ 9.20408963573095, 45.514736191820489 ], [ 9.204153300774809, 45.515014222672811 ], [ 9.204336057520614, 45.515264814144835 ], [ 9.204620017506951, 45.515463436089114 ], [ 9.204977384738394, 45.515590645382318 ], [ 9.205373176556288, 45.515633989391695 ], [ 9.205768648391626, 45.515589225116912 ], [ 9.206125087005889, 45.515460734595777 ], [ 9.206407600661931, 45.515261095883929 ], [ 9.206588534968377, 45.515009851633053 ], [ 9.206650179878853, 45.514731595881628 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.227410539809259, 45.517451963087694 ], [ 9.227346757489737, 45.51717394554273 ], [ 9.227163892541478, 45.51692339117799 ], [ 9.226879846100767, 45.516724825491849 ], [ 9.226522422597238, 45.516597684853551 ], [ 9.226126608068414, 45.516554414174237 ], [ 9.225731145889464, 45.516599248903397 ], [ 9.225374744954337, 45.516727800504619 ], [ 9.225092291228632, 45.516927485960089 ], [ 9.224911433265872, 45.517178759289699 ], [ 9.224849875768802, 45.517457024609648 ], [ 9.224913646122896, 45.517735043557757 ], [ 9.225096503741197, 45.517985601503078 ], [ 9.22538055028722, 45.518184171579556 ], [ 9.2257379812911, 45.518311315741023 ], [ 9.226133807850434, 45.51835458773057 ], [ 9.226529281994816, 45.518309751598252 ], [ 9.226885690259895, 45.518181196416435 ], [ 9.227168143880293, 45.517981506570642 ], [ 9.227348994342703, 45.517730229717891 ], [ 9.227410539809259, 45.517451963087694 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.169506339985832, 45.521670911958488 ], [ 9.169442837915605, 45.521392861888081 ], [ 9.169260215975633, 45.521142214667869 ], [ 9.168976351518211, 45.520943504886517 ], [ 9.168619031163011, 45.520816183018255 ], [ 9.168223230853535, 45.520772711713072 ], [ 9.167827692573839, 45.520817346057456 ], [ 9.167471132665561, 45.52094571712837 ], [ 9.167188452652352, 45.52114525957861 ], [ 9.167007323234495, 45.521396441426504 ], [ 9.166945475683807, 45.521674675744222 ], [ 9.167008965777447, 45.52195272720612 ], [ 9.167191580363879, 45.522203378000114 ], [ 9.167475444899637, 45.522402092172534 ], [ 9.167832772735107, 45.52252941757191 ], [ 9.168228585069592, 45.522572890199456 ], [ 9.16862413532588, 45.522528254463602 ], [ 9.168980702587687, 45.522399879818856 ], [ 9.169263382522569, 45.522200332977583 ], [ 9.169444504460154, 45.521949147598583 ], [ 9.169506339985832, 45.521670911958488 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.213461052649057, 45.526781819060055 ], [ 9.213397328295333, 45.526503794076852 ], [ 9.21321449480485, 45.526253217734926 ], [ 9.212930450235845, 45.526054617683975 ], [ 9.212572998835661, 45.525927433656911 ], [ 9.212177129372755, 45.525884114811639 ], [ 9.21178159059907, 45.525928901312056 ], [ 9.211425098905057, 45.5260574093423 ], [ 9.211142549139163, 45.526257060149554 ], [ 9.210961599255075, 45.526508311145491 ], [ 9.210899962953224, 45.526786568632915 ], [ 9.210963675333584, 45.527064595016853 ], [ 9.211146501485221, 45.527315174938785 ], [ 9.211430546153077, 45.527513779381543 ], [ 9.211788005052053, 45.527640966934683 ], [ 9.212183886549406, 45.527684287093486 ], [ 9.212579437296446, 45.527639499192361 ], [ 9.212935936329306, 45.527510987582097 ], [ 9.213218485996359, 45.527311332383071 ], [ 9.213399428381649, 45.527060077861023 ], [ 9.213461052649057, 45.526781819060055 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.210754044210942, 45.521992149596812 ], [ 9.210690338678521, 45.521714122836194 ], [ 9.21050753278104, 45.52146354190171 ], [ 9.210223521875612, 45.521264934892784 ], [ 9.209866106914552, 45.521137742223551 ], [ 9.209470273099805, 45.521094413897892 ], [ 9.209074765694309, 45.521139191007599 ], [ 9.208718298018358, 45.521267690656039 ], [ 9.208435762569449, 45.521467334910639 ], [ 9.208254815899641, 45.521718581824423 ], [ 9.208193171394321, 45.52199683809976 ], [ 9.208256864956001, 45.522274866260339 ], [ 9.208439663515456, 45.522525450773863 ], [ 9.208723674518449, 45.52272406217385 ], [ 9.2090810969754, 45.522851258368931 ], [ 9.209476942821183, 45.522894588008469 ], [ 9.209872462197417, 45.522849809498794 ], [ 9.210228937211394, 45.522721306271322 ], [ 9.210511472562745, 45.522521657625667 ], [ 9.210692411736659, 45.522270407186014 ], [ 9.210754044210942, 45.521992149596812 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.165009686837166, 45.52813076216033 ], [ 9.164946199553626, 45.527852709885025 ], [ 9.164763576578549, 45.527602055761854 ], [ 9.164479695366134, 45.527403335055176 ], [ 9.164122344176462, 45.527275999308472 ], [ 9.163726501971196, 45.527232512530126 ], [ 9.163330914834953, 45.527277131320993 ], [ 9.162974303891126, 45.527405488280507 ], [ 9.162691575658478, 45.527605019442774 ], [ 9.162510405557056, 45.527856193931235 ], [ 9.162448528841187, 45.528134425538646 ], [ 9.162512004143407, 45.528412479204817 ], [ 9.162694619760748, 45.528663136902026 ], [ 9.162978501049416, 45.528861862000788 ], [ 9.16333585972021, 45.528989201279963 ], [ 9.163731713953933, 45.529032689381907 ], [ 9.164127313071493, 45.528988069200167 ], [ 9.164483931373056, 45.528859708666609 ], [ 9.164766659529448, 45.528660173112257 ], [ 9.164947822149751, 45.528408995091368 ], [ 9.165009686837166, 45.52813076216033 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.238276143918526, 45.491201742488471 ], [ 9.238212338304878, 45.490923729776902 ], [ 9.238029510670412, 45.490673191576938 ], [ 9.237745558496851, 45.490474651804895 ], [ 9.237388276985612, 45.490347544293918 ], [ 9.236992638275909, 45.490304310713107 ], [ 9.236597368534648, 45.490349182880976 ], [ 9.23624115782121, 45.490477768596499 ], [ 9.235958873482989, 45.490677481502217 ], [ 9.235778147493377, 45.490928772930424 ], [ 9.235716671635792, 45.491207045225096 ], [ 9.235780465302115, 45.491485059340796 ], [ 9.235963285620858, 45.491735601119416 ], [ 9.23624723790466, 45.491934145277781 ], [ 9.236604526909993, 45.492061256307224 ], [ 9.237000177635153, 45.492104491194802 ], [ 9.237395459323741, 45.492059617622836 ], [ 9.237751677352902, 45.491931028328636 ], [ 9.238033961580884, 45.491731311036645 ], [ 9.238214680076398, 45.491480016089902 ], [ 9.238276143918526, 45.491201742488471 ] ] ] } },
+{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.193839578688271, 45.492571540272941 ], [ 9.19377599005122, 45.492293502451396 ], [ 9.193593354748742, 45.492042892874451 ], [ 9.193309551438222, 45.491844242445993 ], [ 9.192952360752269, 45.491716995831027 ], [ 9.192556745941769, 45.49167360831423 ], [ 9.192161430834975, 45.491718326781161 ], [ 9.191805109930911, 45.49184677407483 ], [ 9.191522661360732, 45.492046377386679 ], [ 9.191453050157111, 45.492143033841685 ], [ 9.191376859950093, 45.492196876079085 ], [ 9.191195930631748, 45.492448097233556 ], [ 9.191134233516339, 45.492726345818014 ], [ 9.191197809653247, 45.493004385109295 ], [ 9.191380437465352, 45.493254998486258 ], [ 9.191664241111653, 45.493453653657866 ], [ 9.192021439901255, 45.493580904248752 ], [ 9.192417067665685, 45.493624293583828 ], [ 9.192812395896853, 45.493579574225706 ], [ 9.193168725414925, 45.493451123814921 ], [ 9.193451175162361, 45.493251516480221 ], [ 9.193520784303294, 45.49315485882974 ], [ 9.193596973751371, 45.493101015172634 ], [ 9.193777894463059, 45.492849790258063 ], [ 9.193839578688271, 45.492571540272941 ] ] ] } }
+]
+}

+ 17 - 0
package.json

@@ -0,0 +1,17 @@
+{
+  "dependencies": {
+    "@turf/bbox": "^6.0.1",
+    "@turf/bbox-polygon": "^6.0.1",
+    "@turf/boolean-contains": "^6.0.1",
+    "@turf/boolean-overlap": "^6.0.1",
+    "@turf/buffer": "^5.1.5",
+    "@turf/center": "^6.0.1",
+    "mapbox-gl": "^1.1.0",
+    "underscore": "^1.9.1"
+  },
+  "devDependencies": {
+    "@babel/core": "^7.5.4",
+    "@babel/plugin-proposal-class-properties": "^7.5.0",
+    "babel-preset-env": "^1.7.0"
+  }
+}

+ 89 - 0
style.css

@@ -0,0 +1,89 @@
+body,
+html {
+  padding: 0;
+  margin: 0;
+}
+
+#container {
+  width: 100%;
+  height: 100vh;
+  position: relative;
+}
+
+#map {
+  width: 100%;
+  height: 100%;
+}
+
+.map-overlay {
+  font: bold 12px/20px "Helvetica Neue", Arial, Helvetica, sans-serif;
+  position: absolute;
+  width: 25%;
+  bottom: 10px;
+  right: 0;
+  padding: 10px;
+}
+
+.map-overlay .map-overlay-inner {
+  background-color: #fff;
+  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
+  border-radius: 3px;
+  padding: 10px;
+  margin-bottom: 10px;
+}
+
+.map-overlay label {
+  display: block;
+  margin: 0 0 10px;
+}
+
+.map-overlay input {
+  background-color: transparent;
+  display: inline-block;
+  width: 100%;
+  position: relative;
+  margin: 0;
+  cursor: ew-resize;
+}
+
+#menu {
+  background: #fff;
+  position: absolute;
+  z-index: 1;
+  top: 10px;
+  right: 10px;
+  border-radius: 3px;
+  width: 120px;
+  border: 1px solid rgba(0, 0, 0, 0.4);
+  font-family: "Open Sans", sans-serif;
+}
+
+#menu a {
+  font-size: 13px;
+  color: #404040;
+  display: block;
+  margin: 0;
+  padding: 0;
+  padding: 10px;
+  text-decoration: none;
+  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
+  text-align: center;
+}
+
+#menu a:last-child {
+  border: none;
+}
+
+#menu a:hover {
+  background-color: #f8f8f8;
+  color: #404040;
+}
+
+#menu a.active {
+  background-color: #3887be;
+  color: #ffffff;
+}
+
+#menu a.active:hover {
+  background: #3074a4;
+}

+ 1493 - 0
yarn.lock

@@ -0,0 +1,1493 @@
+# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
+# yarn lockfile v1
+
+
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5":
+  version "7.5.5"
+  resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d"
+  integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==
+  dependencies:
+    "@babel/highlight" "^7.0.0"
+
+"@babel/core@^7.5.4":
+  version "7.5.5"
+  resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.5.5.tgz#17b2686ef0d6bc58f963dddd68ab669755582c30"
+  integrity sha512-i4qoSr2KTtce0DmkuuQBV4AuQgGPUcPXMr9L5MyYAtk06z068lQ10a4O009fe5OB/DfNV+h+qqT7ddNV8UnRjg==
+  dependencies:
+    "@babel/code-frame" "^7.5.5"
+    "@babel/generator" "^7.5.5"
+    "@babel/helpers" "^7.5.5"
+    "@babel/parser" "^7.5.5"
+    "@babel/template" "^7.4.4"
+    "@babel/traverse" "^7.5.5"
+    "@babel/types" "^7.5.5"
+    convert-source-map "^1.1.0"
+    debug "^4.1.0"
+    json5 "^2.1.0"
+    lodash "^4.17.13"
+    resolve "^1.3.2"
+    semver "^5.4.1"
+    source-map "^0.5.0"
+
+"@babel/generator@^7.5.5":
+  version "7.5.5"
+  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.5.5.tgz#873a7f936a3c89491b43536d12245b626664e3cf"
+  integrity sha512-ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ==
+  dependencies:
+    "@babel/types" "^7.5.5"
+    jsesc "^2.5.1"
+    lodash "^4.17.13"
+    source-map "^0.5.0"
+    trim-right "^1.0.1"
+
+"@babel/helper-create-class-features-plugin@^7.5.5":
+  version "7.5.5"
+  resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.5.5.tgz#401f302c8ddbc0edd36f7c6b2887d8fa1122e5a4"
+  integrity sha512-ZsxkyYiRA7Bg+ZTRpPvB6AbOFKTFFK4LrvTet8lInm0V468MWCaSYJE+I7v2z2r8KNLtYiV+K5kTCnR7dvyZjg==
+  dependencies:
+    "@babel/helper-function-name" "^7.1.0"
+    "@babel/helper-member-expression-to-functions" "^7.5.5"
+    "@babel/helper-optimise-call-expression" "^7.0.0"
+    "@babel/helper-plugin-utils" "^7.0.0"
+    "@babel/helper-replace-supers" "^7.5.5"
+    "@babel/helper-split-export-declaration" "^7.4.4"
+
+"@babel/helper-function-name@^7.1.0":
+  version "7.1.0"
+  resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53"
+  integrity sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==
+  dependencies:
+    "@babel/helper-get-function-arity" "^7.0.0"
+    "@babel/template" "^7.1.0"
+    "@babel/types" "^7.0.0"
+
+"@babel/helper-get-function-arity@^7.0.0":
+  version "7.0.0"
+  resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3"
+  integrity sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==
+  dependencies:
+    "@babel/types" "^7.0.0"
+
+"@babel/helper-member-expression-to-functions@^7.5.5":
+  version "7.5.5"
+  resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.5.5.tgz#1fb5b8ec4453a93c439ee9fe3aeea4a84b76b590"
+  integrity sha512-5qZ3D1uMclSNqYcXqiHoA0meVdv+xUEex9em2fqMnrk/scphGlGgg66zjMrPJESPwrFJ6sbfFQYUSa0Mz7FabA==
+  dependencies:
+    "@babel/types" "^7.5.5"
+
+"@babel/helper-optimise-call-expression@^7.0.0":
+  version "7.0.0"
+  resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5"
+  integrity sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g==
+  dependencies:
+    "@babel/types" "^7.0.0"
+
+"@babel/helper-plugin-utils@^7.0.0":
+  version "7.0.0"
+  resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250"
+  integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==
+
+"@babel/helper-replace-supers@^7.5.5":
+  version "7.5.5"
+  resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.5.5.tgz#f84ce43df031222d2bad068d2626cb5799c34bc2"
+  integrity sha512-XvRFWrNnlsow2u7jXDuH4jDDctkxbS7gXssrP4q2nUD606ukXHRvydj346wmNg+zAgpFx4MWf4+usfC93bElJg==
+  dependencies:
+    "@babel/helper-member-expression-to-functions" "^7.5.5"
+    "@babel/helper-optimise-call-expression" "^7.0.0"
+    "@babel/traverse" "^7.5.5"
+    "@babel/types" "^7.5.5"
+
+"@babel/helper-split-export-declaration@^7.4.4":
+  version "7.4.4"
+  resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677"
+  integrity sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q==
+  dependencies:
+    "@babel/types" "^7.4.4"
+
+"@babel/helpers@^7.5.5":
+  version "7.5.5"
+  resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.5.5.tgz#63908d2a73942229d1e6685bc2a0e730dde3b75e"
+  integrity sha512-nRq2BUhxZFnfEn/ciJuhklHvFOqjJUD5wpx+1bxUF2axL9C+v4DE/dmp5sT2dKnpOs4orZWzpAZqlCy8QqE/7g==
+  dependencies:
+    "@babel/template" "^7.4.4"
+    "@babel/traverse" "^7.5.5"
+    "@babel/types" "^7.5.5"
+
+"@babel/highlight@^7.0.0":
+  version "7.5.0"
+  resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.5.0.tgz#56d11312bd9248fa619591d02472be6e8cb32540"
+  integrity sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==
+  dependencies:
+    chalk "^2.0.0"
+    esutils "^2.0.2"
+    js-tokens "^4.0.0"
+
+"@babel/parser@^7.4.4", "@babel/parser@^7.5.5":
+  version "7.5.5"
+  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.5.5.tgz#02f077ac8817d3df4a832ef59de67565e71cca4b"
+  integrity sha512-E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g==
+
+"@babel/plugin-proposal-class-properties@^7.5.0":
+  version "7.5.5"
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.5.5.tgz#a974cfae1e37c3110e71f3c6a2e48b8e71958cd4"
+  integrity sha512-AF79FsnWFxjlaosgdi421vmYG6/jg79bVD0dpD44QdgobzHKuLZ6S3vl8la9qIeSwGi8i1fS0O1mfuDAAdo1/A==
+  dependencies:
+    "@babel/helper-create-class-features-plugin" "^7.5.5"
+    "@babel/helper-plugin-utils" "^7.0.0"
+
+"@babel/template@^7.1.0", "@babel/template@^7.4.4":
+  version "7.4.4"
+  resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.4.4.tgz#f4b88d1225689a08f5bc3a17483545be9e4ed237"
+  integrity sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw==
+  dependencies:
+    "@babel/code-frame" "^7.0.0"
+    "@babel/parser" "^7.4.4"
+    "@babel/types" "^7.4.4"
+
+"@babel/traverse@^7.5.5":
+  version "7.5.5"
+  resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.5.5.tgz#f664f8f368ed32988cd648da9f72d5ca70f165bb"
+  integrity sha512-MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ==
+  dependencies:
+    "@babel/code-frame" "^7.5.5"
+    "@babel/generator" "^7.5.5"
+    "@babel/helper-function-name" "^7.1.0"
+    "@babel/helper-split-export-declaration" "^7.4.4"
+    "@babel/parser" "^7.5.5"
+    "@babel/types" "^7.5.5"
+    debug "^4.1.0"
+    globals "^11.1.0"
+    lodash "^4.17.13"
+
+"@babel/types@^7.0.0", "@babel/types@^7.4.4", "@babel/types@^7.5.5":
+  version "7.5.5"
+  resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.5.5.tgz#97b9f728e182785909aa4ab56264f090a028d18a"
+  integrity sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==
+  dependencies:
+    esutils "^2.0.2"
+    lodash "^4.17.13"
+    to-fast-properties "^2.0.0"
+
+"@mapbox/geojson-area@0.2.2":
+  version "0.2.2"
+  resolved "https://registry.yarnpkg.com/@mapbox/geojson-area/-/geojson-area-0.2.2.tgz#18d7814aa36bf23fbbcc379f8e26a22927debf10"
+  integrity sha1-GNeBSqNr8j+7zDefjiaiKSfevxA=
+  dependencies:
+    wgs84 "0.0.0"
+
+"@mapbox/geojson-rewind@^0.4.0":
+  version "0.4.0"
+  resolved "https://registry.yarnpkg.com/@mapbox/geojson-rewind/-/geojson-rewind-0.4.0.tgz#0d3632d4c1b4a928cf10a06ade387e1c8a8c181b"
+  integrity sha512-b+1uPWBERW4Pet/969BNu61ZPDyH2ilIxBjJDFzxyS9TyszF9UrTQyYIl/G38clux3rtpAGGFSGTCSF/qR6UjA==
+  dependencies:
+    "@mapbox/geojson-area" "0.2.2"
+    concat-stream "~1.6.0"
+    minimist "1.2.0"
+    sharkdown "^0.1.0"
+
+"@mapbox/geojson-types@^1.0.2":
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/@mapbox/geojson-types/-/geojson-types-1.0.2.tgz#9aecf642cb00eab1080a57c4f949a65b4a5846d6"
+  integrity sha512-e9EBqHHv3EORHrSfbR9DqecPNn+AmuAoQxV6aL8Xu30bJMJR1o8PZLZzpk1Wq7/NfCbuhmakHTPYRhoqLsXRnw==
+
+"@mapbox/jsonlint-lines-primitives@^2.0.2":
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz#ce56e539f83552b58d10d672ea4d6fc9adc7b234"
+  integrity sha1-zlblOfg1UrWNENZy6k1vya3HsjQ=
+
+"@mapbox/mapbox-gl-supported@^1.4.0":
+  version "1.4.1"
+  resolved "https://registry.yarnpkg.com/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-1.4.1.tgz#c0a03cf75f8b0ad7b57849d6c7e91b0aec4b640f"
+  integrity sha512-yyKza9S6z3ELKuf6w5n6VNUB0Osu6Z93RXPfMHLIlNWohu3KqxewLOq4lMXseYJ92GwkRAxd207Pr/Z98cwmvw==
+
+"@mapbox/point-geometry@0.1.0", "@mapbox/point-geometry@^0.1.0", "@mapbox/point-geometry@~0.1.0":
+  version "0.1.0"
+  resolved "https://registry.yarnpkg.com/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz#8a83f9335c7860effa2eeeca254332aa0aeed8f2"
+  integrity sha1-ioP5M1x4YO/6Lu7KJUMyqgru2PI=
+
+"@mapbox/tiny-sdf@^1.1.0":
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/@mapbox/tiny-sdf/-/tiny-sdf-1.1.1.tgz#16a20c470741bfe9191deb336f46e194da4a91ff"
+  integrity sha512-Ihn1nZcGIswJ5XGbgFAvVumOgWpvIjBX9jiRlIl46uQG9vJOF51ViBYHF95rEZupuyQbEmhLaDPLQlU7fUTsBg==
+
+"@mapbox/unitbezier@^0.0.0":
+  version "0.0.0"
+  resolved "https://registry.yarnpkg.com/@mapbox/unitbezier/-/unitbezier-0.0.0.tgz#15651bd553a67b8581fb398810c98ad86a34524e"
+  integrity sha1-FWUb1VOme4WB+zmIEMmK2Go0Uk4=
+
+"@mapbox/vector-tile@^1.3.1":
+  version "1.3.1"
+  resolved "https://registry.yarnpkg.com/@mapbox/vector-tile/-/vector-tile-1.3.1.tgz#d3a74c90402d06e89ec66de49ec817ff53409666"
+  integrity sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw==
+  dependencies:
+    "@mapbox/point-geometry" "~0.1.0"
+
+"@mapbox/whoots-js@^3.1.0":
+  version "3.1.0"
+  resolved "https://registry.yarnpkg.com/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz#497c67a1cef50d1a2459ba60f315e448d2ad87fe"
+  integrity sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q==
+
+"@turf/bbox-polygon@^6.0.1":
+  version "6.0.1"
+  resolved "https://registry.yarnpkg.com/@turf/bbox-polygon/-/bbox-polygon-6.0.1.tgz#ae0fbb14558831fb34538aae089a23d3336c6379"
+  integrity sha512-f6BK6GOzUNjmJeOYHklk/5LNcQMQbo51gvAM10dTM5IqzKP01KM5bgV88uOKfSZB0HRQVpaRV1tgXk2bg5cPRg==
+  dependencies:
+    "@turf/helpers" "6.x"
+
+"@turf/bbox@*", "@turf/bbox@6.x", "@turf/bbox@^6.0.1":
+  version "6.0.1"
+  resolved "https://registry.yarnpkg.com/@turf/bbox/-/bbox-6.0.1.tgz#b966075771475940ee1c16be2a12cf389e6e923a"
+  integrity sha512-EGgaRLettBG25Iyx7VyUINsPpVj1x3nFQFiGS3ER8KCI1MximzNLsam3eXRabqQDjyAKyAE1bJ4EZEpGvspQxw==
+  dependencies:
+    "@turf/helpers" "6.x"
+    "@turf/meta" "6.x"
+
+"@turf/bbox@^5.1.5":
+  version "5.1.5"
+  resolved "https://registry.yarnpkg.com/@turf/bbox/-/bbox-5.1.5.tgz#3051df514ad4c50f4a4f9b8a2d15fd8b6840eda3"
+  integrity sha1-MFHfUUrUxQ9KT5uKLRX9i2hA7aM=
+  dependencies:
+    "@turf/helpers" "^5.1.5"
+    "@turf/meta" "^5.1.5"
+
+"@turf/bearing@6.x":
+  version "6.0.1"
+  resolved "https://registry.yarnpkg.com/@turf/bearing/-/bearing-6.0.1.tgz#8da5d17092e571f170cde7bfb2e5b0d74923c92d"
+  integrity sha512-mXY1NozqV9EFfBTbUItujwfqfQF0G/Xe2fzvnZle90ekPEUfhi4Dgf5JswJTd96J9LiT8kcd6Jonp5khnx0wIg==
+  dependencies:
+    "@turf/helpers" "6.x"
+    "@turf/invariant" "6.x"
+
+"@turf/boolean-contains@^6.0.1":
+  version "6.0.1"
+  resolved "https://registry.yarnpkg.com/@turf/boolean-contains/-/boolean-contains-6.0.1.tgz#c3c583215fc5bda47ede51cf52d735ffdc1006a5"
+  integrity sha512-usAexEdWu7dV43paowGSFEM0PljexnlOuj09HF/VDZwO3FKelwUovF2ymetYatuG7KcIYcexeNEkQ5qQnGExlw==
+  dependencies:
+    "@turf/bbox" "6.x"
+    "@turf/boolean-point-in-polygon" "6.x"
+    "@turf/boolean-point-on-line" "6.x"
+    "@turf/helpers" "6.x"
+    "@turf/invariant" "6.x"
+
+"@turf/boolean-overlap@^6.0.1":
+  version "6.0.1"
+  resolved "https://registry.yarnpkg.com/@turf/boolean-overlap/-/boolean-overlap-6.0.1.tgz#6cd8fc5ae3fbf52ffd31e4cb31d62ef574356c16"
+  integrity sha512-Ud6a75BzNYICVc5/Pf/GJ/3M5XZci6AOGlBNUPvhUrG4nT4NNYeXIpVrx1FB/tAg8EwZZXlhwSO26CTDC13XlA==
+  dependencies:
+    "@turf/helpers" "6.x"
+    "@turf/invariant" "6.x"
+    "@turf/line-intersect" "6.x"
+    "@turf/line-overlap" "6.x"
+    "@turf/meta" "6.x"
+    geojson-equality "0.1.6"
+
+"@turf/boolean-point-in-polygon@6.x":
+  version "6.0.1"
+  resolved "https://registry.yarnpkg.com/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-6.0.1.tgz#5836677afd77d2ee391af0056a0c29b660edfa32"
+  integrity sha512-FKLOZ124vkJhjzNSDcqpwp2NvfnsbYoUOt5iAE7uskt4svix5hcjIEgX9sELFTJpbLGsD1mUbKdfns8tZxcMNg==
+  dependencies:
+    "@turf/helpers" "6.x"
+    "@turf/invariant" "6.x"
+
+"@turf/boolean-point-on-line@6.x":
+  version "6.0.1"
+  resolved "https://registry.yarnpkg.com/@turf/boolean-point-on-line/-/boolean-point-on-line-6.0.1.tgz#d943c242a5fdcde03f8ad0221750fd1aacf06223"
+  integrity sha512-Vl724Tzh4CF/13kgblOAQnMcHagromCP1EfyJ9G/8SxpSoTYeY2G6FmmcpbW51GqKxC7xgM9+Pck50dun7oYkg==
+  dependencies:
+    "@turf/helpers" "6.x"
+    "@turf/invariant" "6.x"
+
+"@turf/buffer@^5.1.5":
+  version "5.1.5"
+  resolved "https://registry.yarnpkg.com/@turf/buffer/-/buffer-5.1.5.tgz#841c9627cfb974b122ac4e1a956f0466bc0231c4"
+  integrity sha1-hByWJ8+5dLEirE4alW8EZrwCMcQ=
+  dependencies:
+    "@turf/bbox" "^5.1.5"
+    "@turf/center" "^5.1.5"
+    "@turf/helpers" "^5.1.5"
+    "@turf/meta" "^5.1.5"
+    "@turf/projection" "^5.1.5"
+    d3-geo "1.7.1"
+    turf-jsts "*"
+
+"@turf/center@^5.1.5":
+  version "5.1.5"
+  resolved "https://registry.yarnpkg.com/@turf/center/-/center-5.1.5.tgz#44ab2cd954f63c0d37757f7158a99c3ef5114b80"
+  integrity sha1-RKss2VT2PA03dX9xWKmcPvURS4A=
+  dependencies:
+    "@turf/bbox" "^5.1.5"
+    "@turf/helpers" "^5.1.5"
+
+"@turf/center@^6.0.1":
+  version "6.0.1"
+  resolved "https://registry.yarnpkg.com/@turf/center/-/center-6.0.1.tgz#40a17d0a170df5bba09ad93e133b904d8eb14601"
+  integrity sha512-bh/SLBwRC2QYcbVOxMFBtiARuMzMzfh4YuVtguYAjyBEIA4HXnnEZT+yZlzfcG3oikG7XgV8vg9eegcmwQe+MQ==
+  dependencies:
+    "@turf/bbox" "6.x"
+    "@turf/helpers" "6.x"
+
+"@turf/clone@^5.1.5":
+  version "5.1.5"
+  resolved "https://registry.yarnpkg.com/@turf/clone/-/clone-5.1.5.tgz#253e8d35477181976e33adfab50a0f02a7f0e367"
+  integrity sha1-JT6NNUdxgZduM636tQoPAqfw42c=
+  dependencies:
+    "@turf/helpers" "^5.1.5"
+
+"@turf/destination@6.x":
+  version "6.0.1"
+  resolved "https://registry.yarnpkg.com/@turf/destination/-/destination-6.0.1.tgz#5275887fa96ec463f44864a2c17f0b712361794a"
+  integrity sha512-MroK4nRdp7as174miCAugp8Uvorhe6rZ7MJiC9Hb4+hZR7gNFJyVKmkdDDXIoCYs6MJQsx0buI+gsCpKwgww0Q==
+  dependencies:
+    "@turf/helpers" "6.x"
+    "@turf/invariant" "6.x"
+
+"@turf/distance@6.x":
+  version "6.0.1"
+  resolved "https://registry.yarnpkg.com/@turf/distance/-/distance-6.0.1.tgz#0761f28784286e7865a427c4e7e3593569c2dea8"
+  integrity sha512-q7t7rWIWfkg7MP1Vt4uLjSEhe5rPfCO2JjpKmk7JC+QZKEQkuvHEqy3ejW1iC7Kw5ZcZNR3qdMGGz+6HnVwqvg==
+  dependencies:
+    "@turf/helpers" "6.x"
+    "@turf/invariant" "6.x"
+
+"@turf/helpers@6.x":
+  version "6.1.4"
+  resolved "https://registry.yarnpkg.com/@turf/helpers/-/helpers-6.1.4.tgz#d6fd7ebe6782dd9c87dca5559bda5c48ae4c3836"
+  integrity sha512-vJvrdOZy1ngC7r3MDA7zIGSoIgyrkWcGnNIEaqn/APmw+bVLF2gAW7HIsdTxd12s5wQMqEpqIQrmrbRRZ0xC7g==
+
+"@turf/helpers@^5.1.5":
+  version "5.1.5"
+  resolved "https://registry.yarnpkg.com/@turf/helpers/-/helpers-5.1.5.tgz#153405227ab933d004a5bb9641a9ed999fcbe0cf"
+  integrity sha1-FTQFInq5M9AEpbuWQantmZ/L4M8=
+
+"@turf/invariant@6.x":
+  version "6.1.2"
+  resolved "https://registry.yarnpkg.com/@turf/invariant/-/invariant-6.1.2.tgz#6013ed6219f9ac2edada9b31e1dfa5918eb0a2f7"
+  integrity sha512-WU08Ph8j0J2jVGlQCKChXoCtI50BB3yEH21V++V0T4cR1T27HKCxkehV2sYMwTierfMBgjwSwDIsxnR4/2mWXg==
+  dependencies:
+    "@turf/helpers" "6.x"
+
+"@turf/line-intersect@6.x":
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/@turf/line-intersect/-/line-intersect-6.0.2.tgz#b45b7a4e7e08c39a0e4e91099580ed377ef7335f"
+  integrity sha512-pfL/lBu7ukBPdTjvSCmcNUzZ83V4R95htwqs5NqU8zeS4R+5KTwacbrOYKztjpmHBwUmPEIIpSbqkUoD0Fp7kg==
+  dependencies:
+    "@turf/helpers" "6.x"
+    "@turf/invariant" "6.x"
+    "@turf/line-segment" "6.x"
+    "@turf/meta" "6.x"
+    geojson-rbush "3.x"
+
+"@turf/line-overlap@6.x":
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/@turf/line-overlap/-/line-overlap-6.0.2.tgz#26a957ff63aac90b7d92a14ff7288dfe0653e715"
+  integrity sha512-Y7VTttNM+31R2hPa9N4a9ZaX/n1eOHvJkeBivXr/LBZClba365IzD9vtljYHMZQqD3SN7VmFJSmJyBIghO4V3Q==
+  dependencies:
+    "@turf/boolean-point-on-line" "6.x"
+    "@turf/helpers" "6.x"
+    "@turf/invariant" "6.x"
+    "@turf/line-segment" "6.x"
+    "@turf/meta" "6.x"
+    "@turf/nearest-point-on-line" "6.x"
+    deep-equal "1.x"
+    geojson-rbush "3.x"
+
+"@turf/line-segment@6.x":
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/@turf/line-segment/-/line-segment-6.0.2.tgz#e280bcde70d28b694028ec1623dc406c928e59b6"
+  integrity sha512-8AkzDHoNw3X68y115josal+lvdAi4b2P1K0YNTKGyLRBaUhPXVSuMBpMd53FRF1hYEb9UJgMbugF9ZE7m5L6zg==
+  dependencies:
+    "@turf/helpers" "6.x"
+    "@turf/invariant" "6.x"
+    "@turf/meta" "6.x"
+
+"@turf/meta@6.x":
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/@turf/meta/-/meta-6.0.2.tgz#eb92951126d24a613ac1b7b99d733fcc20fd30cf"
+  integrity sha512-VA7HJkx7qF1l3+GNGkDVn2oXy4+QoLP6LktXAaZKjuT1JI0YESat7quUkbCMy4zP9lAUuvS4YMslLyTtr919FA==
+  dependencies:
+    "@turf/helpers" "6.x"
+
+"@turf/meta@^5.1.5":
+  version "5.2.0"
+  resolved "https://registry.yarnpkg.com/@turf/meta/-/meta-5.2.0.tgz#3b1ad485ee0c3b0b1775132a32c384d53e4ba53d"
+  integrity sha1-OxrUhe4MOwsXdRMqMsOE1T5LpT0=
+  dependencies:
+    "@turf/helpers" "^5.1.5"
+
+"@turf/nearest-point-on-line@6.x":
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/@turf/nearest-point-on-line/-/nearest-point-on-line-6.0.2.tgz#4b2c1177595d9a1743af76905a9013ced03bc0dc"
+  integrity sha512-re9tSEwYyG1EMo4ObXXAKYVhkMVANPIIJQ1V/J1lKcNfHVc1pYmd3D5jkTNBh+oriI9VL4PVML3eqYE+Zcg0mg==
+  dependencies:
+    "@turf/bearing" "6.x"
+    "@turf/destination" "6.x"
+    "@turf/distance" "6.x"
+    "@turf/helpers" "6.x"
+    "@turf/invariant" "6.x"
+    "@turf/line-intersect" "6.x"
+    "@turf/meta" "6.x"
+
+"@turf/projection@^5.1.5":
+  version "5.1.5"
+  resolved "https://registry.yarnpkg.com/@turf/projection/-/projection-5.1.5.tgz#24517eeeb2f36816ba9f712e7ae6d6a368edf757"
+  integrity sha1-JFF+7rLzaBa6n3EueubWo2jt91c=
+  dependencies:
+    "@turf/clone" "^5.1.5"
+    "@turf/helpers" "^5.1.5"
+    "@turf/meta" "^5.1.5"
+
+ansi-regex@^2.0.0:
+  version "2.1.1"
+  resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
+  integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8=
+
+ansi-styles@^2.2.1:
+  version "2.2.1"
+  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
+  integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=
+
+ansi-styles@^3.2.1:
+  version "3.2.1"
+  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
+  integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
+  dependencies:
+    color-convert "^1.9.0"
+
+ansicolors@~0.2.1:
+  version "0.2.1"
+  resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.2.1.tgz#be089599097b74a5c9c4a84a0cdbcdb62bd87aef"
+  integrity sha1-vgiVmQl7dKXJxKhKDNvNtivYeu8=
+
+babel-code-frame@^6.26.0:
+  version "6.26.0"
+  resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
+  integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=
+  dependencies:
+    chalk "^1.1.3"
+    esutils "^2.0.2"
+    js-tokens "^3.0.2"
+
+babel-helper-builder-binary-assignment-operator-visitor@^6.24.1:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664"
+  integrity sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=
+  dependencies:
+    babel-helper-explode-assignable-expression "^6.24.1"
+    babel-runtime "^6.22.0"
+    babel-types "^6.24.1"
+
+babel-helper-call-delegate@^6.24.1:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
+  integrity sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=
+  dependencies:
+    babel-helper-hoist-variables "^6.24.1"
+    babel-runtime "^6.22.0"
+    babel-traverse "^6.24.1"
+    babel-types "^6.24.1"
+
+babel-helper-define-map@^6.24.1:
+  version "6.26.0"
+  resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f"
+  integrity sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8=
+  dependencies:
+    babel-helper-function-name "^6.24.1"
+    babel-runtime "^6.26.0"
+    babel-types "^6.26.0"
+    lodash "^4.17.4"
+
+babel-helper-explode-assignable-expression@^6.24.1:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa"
+  integrity sha1-8luCz33BBDPFX3BZLVdGQArCLKo=
+  dependencies:
+    babel-runtime "^6.22.0"
+    babel-traverse "^6.24.1"
+    babel-types "^6.24.1"
+
+babel-helper-function-name@^6.24.1:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
+  integrity sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=
+  dependencies:
+    babel-helper-get-function-arity "^6.24.1"
+    babel-runtime "^6.22.0"
+    babel-template "^6.24.1"
+    babel-traverse "^6.24.1"
+    babel-types "^6.24.1"
+
+babel-helper-get-function-arity@^6.24.1:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
+  integrity sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=
+  dependencies:
+    babel-runtime "^6.22.0"
+    babel-types "^6.24.1"
+
+babel-helper-hoist-variables@^6.24.1:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
+  integrity sha1-HssnaJydJVE+rbyZFKc/VAi+enY=
+  dependencies:
+    babel-runtime "^6.22.0"
+    babel-types "^6.24.1"
+
+babel-helper-optimise-call-expression@^6.24.1:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
+  integrity sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=
+  dependencies:
+    babel-runtime "^6.22.0"
+    babel-types "^6.24.1"
+
+babel-helper-regex@^6.24.1:
+  version "6.26.0"
+  resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72"
+  integrity sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=
+  dependencies:
+    babel-runtime "^6.26.0"
+    babel-types "^6.26.0"
+    lodash "^4.17.4"
+
+babel-helper-remap-async-to-generator@^6.24.1:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b"
+  integrity sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=
+  dependencies:
+    babel-helper-function-name "^6.24.1"
+    babel-runtime "^6.22.0"
+    babel-template "^6.24.1"
+    babel-traverse "^6.24.1"
+    babel-types "^6.24.1"
+
+babel-helper-replace-supers@^6.24.1:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"
+  integrity sha1-v22/5Dk40XNpohPKiov3S2qQqxo=
+  dependencies:
+    babel-helper-optimise-call-expression "^6.24.1"
+    babel-messages "^6.23.0"
+    babel-runtime "^6.22.0"
+    babel-template "^6.24.1"
+    babel-traverse "^6.24.1"
+    babel-types "^6.24.1"
+
+babel-messages@^6.23.0:
+  version "6.23.0"
+  resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
+  integrity sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=
+  dependencies:
+    babel-runtime "^6.22.0"
+
+babel-plugin-check-es2015-constants@^6.22.0:
+  version "6.22.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
+  integrity sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=
+  dependencies:
+    babel-runtime "^6.22.0"
+
+babel-plugin-syntax-async-functions@^6.8.0:
+  version "6.13.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
+  integrity sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU=
+
+babel-plugin-syntax-exponentiation-operator@^6.8.0:
+  version "6.13.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
+  integrity sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4=
+
+babel-plugin-syntax-trailing-function-commas@^6.22.0:
+  version "6.22.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
+  integrity sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM=
+
+babel-plugin-transform-async-to-generator@^6.22.0:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761"
+  integrity sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E=
+  dependencies:
+    babel-helper-remap-async-to-generator "^6.24.1"
+    babel-plugin-syntax-async-functions "^6.8.0"
+    babel-runtime "^6.22.0"
+
+babel-plugin-transform-es2015-arrow-functions@^6.22.0:
+  version "6.22.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
+  integrity sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=
+  dependencies:
+    babel-runtime "^6.22.0"
+
+babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
+  version "6.22.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
+  integrity sha1-u8UbSflk1wy42OC5ToICRs46YUE=
+  dependencies:
+    babel-runtime "^6.22.0"
+
+babel-plugin-transform-es2015-block-scoping@^6.23.0:
+  version "6.26.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
+  integrity sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8=
+  dependencies:
+    babel-runtime "^6.26.0"
+    babel-template "^6.26.0"
+    babel-traverse "^6.26.0"
+    babel-types "^6.26.0"
+    lodash "^4.17.4"
+
+babel-plugin-transform-es2015-classes@^6.23.0:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
+  integrity sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=
+  dependencies:
+    babel-helper-define-map "^6.24.1"
+    babel-helper-function-name "^6.24.1"
+    babel-helper-optimise-call-expression "^6.24.1"
+    babel-helper-replace-supers "^6.24.1"
+    babel-messages "^6.23.0"
+    babel-runtime "^6.22.0"
+    babel-template "^6.24.1"
+    babel-traverse "^6.24.1"
+    babel-types "^6.24.1"
+
+babel-plugin-transform-es2015-computed-properties@^6.22.0:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
+  integrity sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=
+  dependencies:
+    babel-runtime "^6.22.0"
+    babel-template "^6.24.1"
+
+babel-plugin-transform-es2015-destructuring@^6.23.0:
+  version "6.23.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
+  integrity sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=
+  dependencies:
+    babel-runtime "^6.22.0"
+
+babel-plugin-transform-es2015-duplicate-keys@^6.22.0:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
+  integrity sha1-c+s9MQypaePvnskcU3QabxV2Qj4=
+  dependencies:
+    babel-runtime "^6.22.0"
+    babel-types "^6.24.1"
+
+babel-plugin-transform-es2015-for-of@^6.23.0:
+  version "6.23.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
+  integrity sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=
+  dependencies:
+    babel-runtime "^6.22.0"
+
+babel-plugin-transform-es2015-function-name@^6.22.0:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
+  integrity sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=
+  dependencies:
+    babel-helper-function-name "^6.24.1"
+    babel-runtime "^6.22.0"
+    babel-types "^6.24.1"
+
+babel-plugin-transform-es2015-literals@^6.22.0:
+  version "6.22.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
+  integrity sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=
+  dependencies:
+    babel-runtime "^6.22.0"
+
+babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
+  integrity sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=
+  dependencies:
+    babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
+    babel-runtime "^6.22.0"
+    babel-template "^6.24.1"
+
+babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
+  version "6.26.2"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3"
+  integrity sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==
+  dependencies:
+    babel-plugin-transform-strict-mode "^6.24.1"
+    babel-runtime "^6.26.0"
+    babel-template "^6.26.0"
+    babel-types "^6.26.0"
+
+babel-plugin-transform-es2015-modules-systemjs@^6.23.0:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
+  integrity sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=
+  dependencies:
+    babel-helper-hoist-variables "^6.24.1"
+    babel-runtime "^6.22.0"
+    babel-template "^6.24.1"
+
+babel-plugin-transform-es2015-modules-umd@^6.23.0:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
+  integrity sha1-rJl+YoXNGO1hdq22B9YCNErThGg=
+  dependencies:
+    babel-plugin-transform-es2015-modules-amd "^6.24.1"
+    babel-runtime "^6.22.0"
+    babel-template "^6.24.1"
+
+babel-plugin-transform-es2015-object-super@^6.22.0:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
+  integrity sha1-JM72muIcuDp/hgPa0CH1cusnj40=
+  dependencies:
+    babel-helper-replace-supers "^6.24.1"
+    babel-runtime "^6.22.0"
+
+babel-plugin-transform-es2015-parameters@^6.23.0:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
+  integrity sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=
+  dependencies:
+    babel-helper-call-delegate "^6.24.1"
+    babel-helper-get-function-arity "^6.24.1"
+    babel-runtime "^6.22.0"
+    babel-template "^6.24.1"
+    babel-traverse "^6.24.1"
+    babel-types "^6.24.1"
+
+babel-plugin-transform-es2015-shorthand-properties@^6.22.0:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
+  integrity sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=
+  dependencies:
+    babel-runtime "^6.22.0"
+    babel-types "^6.24.1"
+
+babel-plugin-transform-es2015-spread@^6.22.0:
+  version "6.22.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
+  integrity sha1-1taKmfia7cRTbIGlQujdnxdG+NE=
+  dependencies:
+    babel-runtime "^6.22.0"
+
+babel-plugin-transform-es2015-sticky-regex@^6.22.0:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
+  integrity sha1-AMHNsaynERLN8M9hJsLta0V8zbw=
+  dependencies:
+    babel-helper-regex "^6.24.1"
+    babel-runtime "^6.22.0"
+    babel-types "^6.24.1"
+
+babel-plugin-transform-es2015-template-literals@^6.22.0:
+  version "6.22.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
+  integrity sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=
+  dependencies:
+    babel-runtime "^6.22.0"
+
+babel-plugin-transform-es2015-typeof-symbol@^6.23.0:
+  version "6.23.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
+  integrity sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=
+  dependencies:
+    babel-runtime "^6.22.0"
+
+babel-plugin-transform-es2015-unicode-regex@^6.22.0:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
+  integrity sha1-04sS9C6nMj9yk4fxinxa4frrNek=
+  dependencies:
+    babel-helper-regex "^6.24.1"
+    babel-runtime "^6.22.0"
+    regexpu-core "^2.0.0"
+
+babel-plugin-transform-exponentiation-operator@^6.22.0:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e"
+  integrity sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=
+  dependencies:
+    babel-helper-builder-binary-assignment-operator-visitor "^6.24.1"
+    babel-plugin-syntax-exponentiation-operator "^6.8.0"
+    babel-runtime "^6.22.0"
+
+babel-plugin-transform-regenerator@^6.22.0:
+  version "6.26.0"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"
+  integrity sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8=
+  dependencies:
+    regenerator-transform "^0.10.0"
+
+babel-plugin-transform-strict-mode@^6.24.1:
+  version "6.24.1"
+  resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
+  integrity sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=
+  dependencies:
+    babel-runtime "^6.22.0"
+    babel-types "^6.24.1"
+
+babel-preset-env@^1.7.0:
+  version "1.7.0"
+  resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.7.0.tgz#dea79fa4ebeb883cd35dab07e260c1c9c04df77a"
+  integrity sha512-9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg==
+  dependencies:
+    babel-plugin-check-es2015-constants "^6.22.0"
+    babel-plugin-syntax-trailing-function-commas "^6.22.0"
+    babel-plugin-transform-async-to-generator "^6.22.0"
+    babel-plugin-transform-es2015-arrow-functions "^6.22.0"
+    babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
+    babel-plugin-transform-es2015-block-scoping "^6.23.0"
+    babel-plugin-transform-es2015-classes "^6.23.0"
+    babel-plugin-transform-es2015-computed-properties "^6.22.0"
+    babel-plugin-transform-es2015-destructuring "^6.23.0"
+    babel-plugin-transform-es2015-duplicate-keys "^6.22.0"
+    babel-plugin-transform-es2015-for-of "^6.23.0"
+    babel-plugin-transform-es2015-function-name "^6.22.0"
+    babel-plugin-transform-es2015-literals "^6.22.0"
+    babel-plugin-transform-es2015-modules-amd "^6.22.0"
+    babel-plugin-transform-es2015-modules-commonjs "^6.23.0"
+    babel-plugin-transform-es2015-modules-systemjs "^6.23.0"
+    babel-plugin-transform-es2015-modules-umd "^6.23.0"
+    babel-plugin-transform-es2015-object-super "^6.22.0"
+    babel-plugin-transform-es2015-parameters "^6.23.0"
+    babel-plugin-transform-es2015-shorthand-properties "^6.22.0"
+    babel-plugin-transform-es2015-spread "^6.22.0"
+    babel-plugin-transform-es2015-sticky-regex "^6.22.0"
+    babel-plugin-transform-es2015-template-literals "^6.22.0"
+    babel-plugin-transform-es2015-typeof-symbol "^6.23.0"
+    babel-plugin-transform-es2015-unicode-regex "^6.22.0"
+    babel-plugin-transform-exponentiation-operator "^6.22.0"
+    babel-plugin-transform-regenerator "^6.22.0"
+    browserslist "^3.2.6"
+    invariant "^2.2.2"
+    semver "^5.3.0"
+
+babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0:
+  version "6.26.0"
+  resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
+  integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4=
+  dependencies:
+    core-js "^2.4.0"
+    regenerator-runtime "^0.11.0"
+
+babel-template@^6.24.1, babel-template@^6.26.0:
+  version "6.26.0"
+  resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
+  integrity sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=
+  dependencies:
+    babel-runtime "^6.26.0"
+    babel-traverse "^6.26.0"
+    babel-types "^6.26.0"
+    babylon "^6.18.0"
+    lodash "^4.17.4"
+
+babel-traverse@^6.24.1, babel-traverse@^6.26.0:
+  version "6.26.0"
+  resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
+  integrity sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=
+  dependencies:
+    babel-code-frame "^6.26.0"
+    babel-messages "^6.23.0"
+    babel-runtime "^6.26.0"
+    babel-types "^6.26.0"
+    babylon "^6.18.0"
+    debug "^2.6.8"
+    globals "^9.18.0"
+    invariant "^2.2.2"
+    lodash "^4.17.4"
+
+babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0:
+  version "6.26.0"
+  resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
+  integrity sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=
+  dependencies:
+    babel-runtime "^6.26.0"
+    esutils "^2.0.2"
+    lodash "^4.17.4"
+    to-fast-properties "^1.0.3"
+
+babylon@^6.18.0:
+  version "6.18.0"
+  resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
+  integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==
+
+browserslist@^3.2.6:
+  version "3.2.8"
+  resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.8.tgz#b0005361d6471f0f5952797a76fc985f1f978fc6"
+  integrity sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==
+  dependencies:
+    caniuse-lite "^1.0.30000844"
+    electron-to-chromium "^1.3.47"
+
+buffer-from@^1.0.0:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
+  integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
+
+caniuse-lite@^1.0.30000844:
+  version "1.0.30000988"
+  resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000988.tgz#742f35ec1b8b75b9628d705d7652eea1fef983db"
+  integrity sha512-lPj3T8poYrRc/bniW5SQPND3GRtSrQdUM/R4mCYTbZxyi3jQiggLvZH4+BYUuX0t4TXjU+vMM7KFDQg+rSzZUQ==
+
+cardinal@~0.4.2:
+  version "0.4.4"
+  resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-0.4.4.tgz#ca5bb68a5b511b90fe93b9acea49bdee5c32bfe2"
+  integrity sha1-ylu2iltRG5D+k7ms6km97lwyv+I=
+  dependencies:
+    ansicolors "~0.2.1"
+    redeyed "~0.4.0"
+
+chalk@^1.1.3:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
+  integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=
+  dependencies:
+    ansi-styles "^2.2.1"
+    escape-string-regexp "^1.0.2"
+    has-ansi "^2.0.0"
+    strip-ansi "^3.0.0"
+    supports-color "^2.0.0"
+
+chalk@^2.0.0:
+  version "2.4.2"
+  resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
+  integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
+  dependencies:
+    ansi-styles "^3.2.1"
+    escape-string-regexp "^1.0.5"
+    supports-color "^5.3.0"
+
+color-convert@^1.9.0:
+  version "1.9.3"
+  resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
+  integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
+  dependencies:
+    color-name "1.1.3"
+
+color-name@1.1.3:
+  version "1.1.3"
+  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
+  integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
+
+concat-stream@~1.6.0:
+  version "1.6.2"
+  resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
+  integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
+  dependencies:
+    buffer-from "^1.0.0"
+    inherits "^2.0.3"
+    readable-stream "^2.2.2"
+    typedarray "^0.0.6"
+
+convert-source-map@^1.1.0:
+  version "1.6.0"
+  resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20"
+  integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==
+  dependencies:
+    safe-buffer "~5.1.1"
+
+core-js@^2.4.0:
+  version "2.6.9"
+  resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.9.tgz#6b4b214620c834152e179323727fc19741b084f2"
+  integrity sha512-HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A==
+
+core-util-is@~1.0.0:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
+  integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
+
+csscolorparser@~1.0.2:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/csscolorparser/-/csscolorparser-1.0.3.tgz#b34f391eea4da8f3e98231e2ccd8df9c041f171b"
+  integrity sha1-s085HupNqPPpgjHizNjfnAQfFxs=
+
+d3-array@1:
+  version "1.2.4"
+  resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-1.2.4.tgz#635ce4d5eea759f6f605863dbcfc30edc737f71f"
+  integrity sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==
+
+d3-geo@1.7.1:
+  version "1.7.1"
+  resolved "https://registry.yarnpkg.com/d3-geo/-/d3-geo-1.7.1.tgz#44bbc7a218b1fd859f3d8fd7c443ca836569ce99"
+  integrity sha512-O4AempWAr+P5qbk2bC2FuN/sDW4z+dN2wDf9QV3bxQt4M5HfOEeXLgJ/UKQW0+o1Dj8BE+L5kiDbdWUMjsmQpw==
+  dependencies:
+    d3-array "1"
+
+debug@^2.6.8:
+  version "2.6.9"
+  resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
+  integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
+  dependencies:
+    ms "2.0.0"
+
+debug@^4.1.0:
+  version "4.1.1"
+  resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791"
+  integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==
+  dependencies:
+    ms "^2.1.1"
+
+deep-equal@1.x, deep-equal@^1.0.0:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5"
+  integrity sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=
+
+earcut@^2.1.5:
+  version "2.1.5"
+  resolved "https://registry.yarnpkg.com/earcut/-/earcut-2.1.5.tgz#829280a9a3a0f5fee0529f0a47c3e4eff09b21e4"
+  integrity sha512-QFWC7ywTVLtvRAJTVp8ugsuuGQ5mVqNmJ1cRYeLrSHgP3nycr2RHTJob9OtM0v8ujuoKN0NY1a93J/omeTL1PA==
+
+electron-to-chromium@^1.3.47:
+  version "1.3.211"
+  resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.211.tgz#0c39d17316bf342d1971fed68e754fa1775918f7"
+  integrity sha512-GZAiK3oHrs0K+LwH+HD+bdjZ17v40oQQdXbbd3dgrwgbENvazrGpcuIADSAREWnxzo9gADB1evuizrbXsnoU2Q==
+
+escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
+  version "1.0.5"
+  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
+  integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
+
+esm@~3.0.84:
+  version "3.0.84"
+  resolved "https://registry.yarnpkg.com/esm/-/esm-3.0.84.tgz#bb108989f4673b32d4f62406869c28eed3815a63"
+  integrity sha512-SzSGoZc17S7P+12R9cg21Bdb7eybX25RnIeRZ80xZs+VZ3kdQKzqTp2k4hZJjR7p9l0186TTXSgrxzlMDBktlw==
+
+esprima@~1.0.4:
+  version "1.0.4"
+  resolved "https://registry.yarnpkg.com/esprima/-/esprima-1.0.4.tgz#9f557e08fc3b4d26ece9dd34f8fbf476b62585ad"
+  integrity sha1-n1V+CPw7TSbs6d00+Pv0drYlha0=
+
+esutils@^2.0.2:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
+  integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
+
+geojson-equality@0.1.6:
+  version "0.1.6"
+  resolved "https://registry.yarnpkg.com/geojson-equality/-/geojson-equality-0.1.6.tgz#a171374ef043e5d4797995840bae4648e0752d72"
+  integrity sha1-oXE3TvBD5dR5eZWEC65GSOB1LXI=
+  dependencies:
+    deep-equal "^1.0.0"
+
+geojson-rbush@3.x:
+  version "3.1.2"
+  resolved "https://registry.yarnpkg.com/geojson-rbush/-/geojson-rbush-3.1.2.tgz#577d6ec70ba986d4e60b741f1df5147faeb82c97"
+  integrity sha512-grkfdg3HIeTjwTfiJe5FT8+fGU3fABCc+vRJDBwdQz9kkLF0Sbif2gs2JUzjewwgmnvLGy9fInySDeADoNuk7w==
+  dependencies:
+    "@turf/bbox" "*"
+    "@turf/helpers" "6.x"
+    "@turf/meta" "6.x"
+    rbush "^2.0.0"
+
+geojson-vt@^3.2.1:
+  version "3.2.1"
+  resolved "https://registry.yarnpkg.com/geojson-vt/-/geojson-vt-3.2.1.tgz#f8adb614d2c1d3f6ee7c4265cad4bbf3ad60c8b7"
+  integrity sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg==
+
+gl-matrix@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/gl-matrix/-/gl-matrix-3.0.0.tgz#888301ac7650e148c3865370e13ec66d08a8381f"
+  integrity sha512-PD4mVH/C/Zs64kOozeFnKY8ybhgwxXXQYGWdB4h68krAHknWJgk9uKOn6z8YElh5//vs++90pb6csrTIDWnexA==
+
+globals@^11.1.0:
+  version "11.12.0"
+  resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
+  integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
+
+globals@^9.18.0:
+  version "9.18.0"
+  resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
+  integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==
+
+grid-index@^1.1.0:
+  version "1.1.0"
+  resolved "https://registry.yarnpkg.com/grid-index/-/grid-index-1.1.0.tgz#97f8221edec1026c8377b86446a7c71e79522ea7"
+  integrity sha512-HZRwumpOGUrHyxO5bqKZL0B0GlUpwtCAzZ42sgxUPniu33R1LSFH5yrIcBCHjkctCAh3mtWKcKd9J4vDDdeVHA==
+
+has-ansi@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
+  integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=
+  dependencies:
+    ansi-regex "^2.0.0"
+
+has-flag@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
+  integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
+
+ieee754@^1.1.12:
+  version "1.1.13"
+  resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84"
+  integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==
+
+inherits@^2.0.3, inherits@~2.0.3:
+  version "2.0.4"
+  resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
+  integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
+
+invariant@^2.2.2:
+  version "2.2.4"
+  resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
+  integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
+  dependencies:
+    loose-envify "^1.0.0"
+
+isarray@~1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
+  integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
+
+"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
+  version "4.0.0"
+  resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
+  integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
+
+js-tokens@^3.0.2:
+  version "3.0.2"
+  resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
+  integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls=
+
+jsesc@^2.5.1:
+  version "2.5.2"
+  resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
+  integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
+
+jsesc@~0.5.0:
+  version "0.5.0"
+  resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
+  integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
+
+json5@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850"
+  integrity sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ==
+  dependencies:
+    minimist "^1.2.0"
+
+kdbush@^3.0.0:
+  version "3.0.0"
+  resolved "https://registry.yarnpkg.com/kdbush/-/kdbush-3.0.0.tgz#f8484794d47004cc2d85ed3a79353dbe0abc2bf0"
+  integrity sha512-hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew==
+
+lodash@^4.17.13, lodash@^4.17.4:
+  version "4.17.15"
+  resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
+  integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
+
+loose-envify@^1.0.0:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
+  integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
+  dependencies:
+    js-tokens "^3.0.0 || ^4.0.0"
+
+mapbox-gl@^1.1.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/mapbox-gl/-/mapbox-gl-1.2.0.tgz#2bb281dfe20cf8fcf66486d46fb6a8607355633a"
+  integrity sha512-RDo0kMuo9gs6HFX2Maj+tYO5bUT6WFTQkFbJoKdfe2pK8SY/RgyG3SNJRgZypdBR8loxGCG9geeOwc+JJqblHQ==
+  dependencies:
+    "@mapbox/geojson-rewind" "^0.4.0"
+    "@mapbox/geojson-types" "^1.0.2"
+    "@mapbox/jsonlint-lines-primitives" "^2.0.2"
+    "@mapbox/mapbox-gl-supported" "^1.4.0"
+    "@mapbox/point-geometry" "^0.1.0"
+    "@mapbox/tiny-sdf" "^1.1.0"
+    "@mapbox/unitbezier" "^0.0.0"
+    "@mapbox/vector-tile" "^1.3.1"
+    "@mapbox/whoots-js" "^3.1.0"
+    csscolorparser "~1.0.2"
+    earcut "^2.1.5"
+    esm "~3.0.84"
+    geojson-vt "^3.2.1"
+    gl-matrix "^3.0.0"
+    grid-index "^1.1.0"
+    minimist "0.0.8"
+    murmurhash-js "^1.0.0"
+    pbf "^3.0.5"
+    potpack "^1.0.1"
+    quickselect "^2.0.0"
+    rw "^1.3.3"
+    supercluster "^6.0.1"
+    tinyqueue "^2.0.0"
+    vt-pbf "^3.1.1"
+
+minimist@0.0.5:
+  version "0.0.5"
+  resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.5.tgz#d7aa327bcecf518f9106ac6b8f003fa3bcea8566"
+  integrity sha1-16oye87PUY+RBqxrjwA/o7zqhWY=
+
+minimist@0.0.8:
+  version "0.0.8"
+  resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
+  integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=
+
+minimist@1.2.0, minimist@^1.2.0:
+  version "1.2.0"
+  resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
+  integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=
+
+ms@2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
+  integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
+
+ms@^2.1.1:
+  version "2.1.2"
+  resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
+  integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
+
+murmurhash-js@^1.0.0:
+  version "1.0.0"
+  resolved "https://registry.yarnpkg.com/murmurhash-js/-/murmurhash-js-1.0.0.tgz#b06278e21fc6c37fa5313732b0412bcb6ae15f51"
+  integrity sha1-sGJ44h/Gw3+lMTcysEEry2rhX1E=
+
+path-parse@^1.0.6:
+  version "1.0.6"
+  resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
+  integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
+
+pbf@^3.0.5:
+  version "3.2.0"
+  resolved "https://registry.yarnpkg.com/pbf/-/pbf-3.2.0.tgz#e76f9f5114e395c25077ad6fe463b3507d6877fc"
+  integrity sha512-98Eh7rsJNJF/Im6XYMLaOW3cLnNyedlOd6hu3iWMD5I7FZGgpw8yN3vQBrmLbLodu7G784Irb9Qsv2yFrxSAGw==
+  dependencies:
+    ieee754 "^1.1.12"
+    resolve-protobuf-schema "^2.1.0"
+
+potpack@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/potpack/-/potpack-1.0.1.tgz#d1b1afd89e4c8f7762865ec30bd112ab767e2ebf"
+  integrity sha512-15vItUAbViaYrmaB/Pbw7z6qX2xENbFSTA7Ii4tgbPtasxm5v6ryKhKtL91tpWovDJzTiZqdwzhcFBCwiMVdVw==
+
+private@^0.1.6:
+  version "0.1.8"
+  resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
+  integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
+
+process-nextick-args@~2.0.0:
+  version "2.0.1"
+  resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
+  integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
+
+protocol-buffers-schema@^3.3.1:
+  version "3.3.2"
+  resolved "https://registry.yarnpkg.com/protocol-buffers-schema/-/protocol-buffers-schema-3.3.2.tgz#00434f608b4e8df54c59e070efeefc37fb4bb859"
+  integrity sha512-Xdayp8sB/mU+sUV4G7ws8xtYMGdQnxbeIfLjyO9TZZRJdztBGhlmbI5x1qcY4TG5hBkIKGnc28i7nXxaugu88w==
+
+quickselect@^1.0.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/quickselect/-/quickselect-1.1.1.tgz#852e412ce418f237ad5b660d70cffac647ae94c2"
+  integrity sha512-qN0Gqdw4c4KGPsBOQafj6yj/PA6c/L63f6CaZ/DCF/xF4Esu3jVmKLUDYxghFx8Kb/O7y9tI7x2RjTSXwdK1iQ==
+
+quickselect@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/quickselect/-/quickselect-2.0.0.tgz#f19680a486a5eefb581303e023e98faaf25dd018"
+  integrity sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==
+
+rbush@^2.0.0:
+  version "2.0.2"
+  resolved "https://registry.yarnpkg.com/rbush/-/rbush-2.0.2.tgz#bb6005c2731b7ba1d5a9a035772927d16a614605"
+  integrity sha512-XBOuALcTm+O/H8G90b6pzu6nX6v2zCKiFG4BJho8a+bY6AER6t8uQUZdi5bomQc0AprCWhEGa7ncAbbRap0bRA==
+  dependencies:
+    quickselect "^1.0.1"
+
+readable-stream@^2.2.2:
+  version "2.3.6"
+  resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
+  integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==
+  dependencies:
+    core-util-is "~1.0.0"
+    inherits "~2.0.3"
+    isarray "~1.0.0"
+    process-nextick-args "~2.0.0"
+    safe-buffer "~5.1.1"
+    string_decoder "~1.1.1"
+    util-deprecate "~1.0.1"
+
+redeyed@~0.4.0:
+  version "0.4.4"
+  resolved "https://registry.yarnpkg.com/redeyed/-/redeyed-0.4.4.tgz#37e990a6f2b21b2a11c2e6a48fd4135698cba97f"
+  integrity sha1-N+mQpvKyGyoRwuakj9QTVpjLqX8=
+  dependencies:
+    esprima "~1.0.4"
+
+regenerate@^1.2.1:
+  version "1.4.0"
+  resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
+  integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==
+
+regenerator-runtime@^0.11.0:
+  version "0.11.1"
+  resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
+  integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==
+
+regenerator-transform@^0.10.0:
+  version "0.10.1"
+  resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd"
+  integrity sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==
+  dependencies:
+    babel-runtime "^6.18.0"
+    babel-types "^6.19.0"
+    private "^0.1.6"
+
+regexpu-core@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
+  integrity sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=
+  dependencies:
+    regenerate "^1.2.1"
+    regjsgen "^0.2.0"
+    regjsparser "^0.1.4"
+
+regjsgen@^0.2.0:
+  version "0.2.0"
+  resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
+  integrity sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=
+
+regjsparser@^0.1.4:
+  version "0.1.5"
+  resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
+  integrity sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=
+  dependencies:
+    jsesc "~0.5.0"
+
+resolve-protobuf-schema@^2.1.0:
+  version "2.1.0"
+  resolved "https://registry.yarnpkg.com/resolve-protobuf-schema/-/resolve-protobuf-schema-2.1.0.tgz#9ca9a9e69cf192bbdaf1006ec1973948aa4a3758"
+  integrity sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==
+  dependencies:
+    protocol-buffers-schema "^3.3.1"
+
+resolve@^1.3.2:
+  version "1.12.0"
+  resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6"
+  integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==
+  dependencies:
+    path-parse "^1.0.6"
+
+rw@^1.3.3:
+  version "1.3.3"
+  resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4"
+  integrity sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q=
+
+safe-buffer@~5.1.0, safe-buffer@~5.1.1:
+  version "5.1.2"
+  resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
+  integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
+
+semver@^5.3.0, semver@^5.4.1:
+  version "5.7.0"
+  resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b"
+  integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==
+
+sharkdown@^0.1.0:
+  version "0.1.1"
+  resolved "https://registry.yarnpkg.com/sharkdown/-/sharkdown-0.1.1.tgz#64484bd0f08f347f8319e9ff947a670f6b48b1b2"
+  integrity sha512-exwooSpmo5s45lrexgz6Q0rFQM574wYIX3iDZ7RLLqOb7IAoQZu9nxlZODU972g19sR69OIpKP2cpHTzU+PHIg==
+  dependencies:
+    cardinal "~0.4.2"
+    minimist "0.0.5"
+    split "~0.2.10"
+
+source-map@^0.5.0:
+  version "0.5.7"
+  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
+  integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
+
+split@~0.2.10:
+  version "0.2.10"
+  resolved "https://registry.yarnpkg.com/split/-/split-0.2.10.tgz#67097c601d697ce1368f418f06cd201cf0521a57"
+  integrity sha1-Zwl8YB1pfOE2j0GPBs0gHPBSGlc=
+  dependencies:
+    through "2"
+
+string_decoder@~1.1.1:
+  version "1.1.1"
+  resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
+  integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
+  dependencies:
+    safe-buffer "~5.1.0"
+
+strip-ansi@^3.0.0:
+  version "3.0.1"
+  resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
+  integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=
+  dependencies:
+    ansi-regex "^2.0.0"
+
+supercluster@^6.0.1:
+  version "6.0.2"
+  resolved "https://registry.yarnpkg.com/supercluster/-/supercluster-6.0.2.tgz#aa2eaae185ef97872f388c683ec29f6991721ee3"
+  integrity sha512-aa0v2HURjBTOpbcknilcfxGDuArM8khklKSmZ/T8ZXL0BuRwb5aRw95lz+2bmWpFvCXDX/+FzqHxmg0TIaJErw==
+  dependencies:
+    kdbush "^3.0.0"
+
+supports-color@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
+  integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=
+
+supports-color@^5.3.0:
+  version "5.5.0"
+  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
+  integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
+  dependencies:
+    has-flag "^3.0.0"
+
+through@2:
+  version "2.3.8"
+  resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
+  integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
+
+tinyqueue@^2.0.0:
+  version "2.0.3"
+  resolved "https://registry.yarnpkg.com/tinyqueue/-/tinyqueue-2.0.3.tgz#64d8492ebf39e7801d7bd34062e29b45b2035f08"
+  integrity sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==
+
+to-fast-properties@^1.0.3:
+  version "1.0.3"
+  resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
+  integrity sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=
+
+to-fast-properties@^2.0.0:
+  version "2.0.0"
+  resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
+  integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
+
+trim-right@^1.0.1:
+  version "1.0.1"
+  resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
+  integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=
+
+turf-jsts@*:
+  version "1.2.3"
+  resolved "https://registry.yarnpkg.com/turf-jsts/-/turf-jsts-1.2.3.tgz#59757f542afbff9a577bbf411f183b8f48d38aa4"
+  integrity sha512-Ja03QIJlPuHt4IQ2FfGex4F4JAr8m3jpaHbFbQrgwr7s7L6U8ocrHiF3J1+wf9jzhGKxvDeaCAnGDot8OjGFyA==
+
+typedarray@^0.0.6:
+  version "0.0.6"
+  resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
+  integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
+
+underscore@^1.9.1:
+  version "1.9.1"
+  resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.9.1.tgz#06dce34a0e68a7babc29b365b8e74b8925203961"
+  integrity sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg==
+
+util-deprecate@~1.0.1:
+  version "1.0.2"
+  resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
+  integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
+
+vt-pbf@^3.1.1:
+  version "3.1.1"
+  resolved "https://registry.yarnpkg.com/vt-pbf/-/vt-pbf-3.1.1.tgz#b0f627e39a10ce91d943b898ed2363d21899fb82"
+  integrity sha512-pHjWdrIoxurpmTcbfBWXaPwSmtPAHS105253P1qyEfSTV2HJddqjM+kIHquaT/L6lVJIk9ltTGc0IxR/G47hYA==
+  dependencies:
+    "@mapbox/point-geometry" "0.1.0"
+    "@mapbox/vector-tile" "^1.3.1"
+    pbf "^3.0.5"
+
+wgs84@0.0.0:
+  version "0.0.0"
+  resolved "https://registry.yarnpkg.com/wgs84/-/wgs84-0.0.0.tgz#34fdc555917b6e57cf2a282ed043710c049cdc76"
+  integrity sha1-NP3FVZF7blfPKigu0ENxDASc3HY=

Some files were not shown because too many files changed in this diff